diff --git a/app/config.yaml b/app/config.yaml index b1dca19..42c6efe 100644 --- a/app/config.yaml +++ b/app/config.yaml @@ -21,7 +21,7 @@ docs: provenanceSpec: corpus: 'Nineveh Medical Encyclopedia 800 BCE: Cuneiform tablets' doi: 10.5281/zenodo.2579207 - version: 0.2 + version: 0.3 webBase: https://cdli.ucla.edu webHint: Show this document on CDLI webUrl: '{webBase}/search/search_results.php?SearchMode=Text&ObjectID=<1>' diff --git a/programs/tfFromJson.py b/programs/tfFromJson.py index 33dd057..5b15339 100644 --- a/programs/tfFromJson.py +++ b/programs/tfFromJson.py @@ -11,12 +11,20 @@ HELP = """ python3 tfFromJson.py Generate TF and if successful, load it +python3 tfFromJson.py -Pnumber + Generate TF, only this Pnumber, do not load it python3 tfFromJson.py -skipgen Load TF python3 tfFromJson.py -skipload Generate TF but do not load it """ +TEST = """ +P365742-K.2354: 63.: [x x x x {ši]m}LI GAZ KI ZI₃.KUM HI.HI ina A GAZI{sar} SILA₁₁-aš LAL IGI GIG tu-gal-lab EN TI.LA LAL₂ +P394523-K.2573: 17'.: [ina A.M]E[Š? ... UKU]Š₂.LAGAB U₂-BABBAR x [... t]e-qi₂?# +P394520-K.2570: 9'.: [DIŠ NA IGI.MIN-šu₂ GIG? ... {u₂}EME.U]R.GI₇ {u₂}IN₆.UŠ ina ZI₃.KUM HE.HE ina GEŠTIN N[A]G? +""" + GH = os.path.expanduser("~/github") ORG = "Nino-cunei" REPO = "ninmed" @@ -76,16 +84,20 @@ def readYaml(fileName): "#": "damage", } -clusterType = dict( - BrokenAway="missing", # [ ] - PerhapsBrokenAway="uncertain", # ( ) - Removal="excised", # << >> - AccidentalOmission="supplied", # < > - DocumentOrientedGloss="gloss", # {( )} - Determinative="det", # { } - LoneDeterminative="det", # { } +clusterSpecs = ( + ("BrokenAway", "missing", "[", "]", None), + ("PerhapsBrokenAway", "uncertain", "(", ")", None), + ("Removal", "excised", "<<", ">>", None), + ("AccidentalOmission", "supplied", "<", ">", None), + ("DocumentOrientedGloss", "gloss", "{(", ")}", None), + ("Determinative", "det", "{", "}", None), + ("LoneDeterminative", "det", "{", "}", None), + ("Erasure", "erasure", "°", "°", "\\"), ) +clusterType = {x[0]: x[1] for x in clusterSpecs} +clusterChar = {x[1]: {True: x[2], False: x[3], None: x[4]} for x in clusterSpecs} + commentTypes = set( """ ruling @@ -119,7 +131,7 @@ def readYaml(fileName): } otext = { - "fmt:text-orig-full": "{atf}{after}", + "fmt:text-orig-full": "{atfpre}{atf}{atfpost}{after}", "fmt:text-orig-plain": "{sym}{after}", "sectionFeatures": "pnumber,face,lnno", "sectionTypes": "document,face,line", @@ -146,6 +158,8 @@ def readYaml(fileName): featureMeta = { "after": {"description": "what comes after a sign or word (- or space)"}, "atf": {"description": "full atf of a sign"}, + "atfpre": {"description": "cluster characters that precede a sign or word"}, + "atfpost": {"description": "cluster characters that follow a sign or word"}, "col": {"description": "ATF column number"}, "collated": {"description": "whether a sign is collated (*)"}, "collection": {"description": 'collection name from metadata field "collection"'}, @@ -160,6 +174,12 @@ def readYaml(fileName): "excised": { "description": "whether a sign is excised - between << >>", }, + "erasure": { + "description": ( + "whether a sign is in an erasure - between ° \\ °: " + "1: between ° and \\; 2: between \\ and °" + ), + }, "face": {"description": "full name of a face including the enclosing object"}, "flags": {"description": "sequence of flags after a sign"}, "gloss": { @@ -220,6 +240,10 @@ def readYaml(fileName): } +def msg(m): + sys.stdout.write(f"{m}\n") + + def getJsonFiles(): filePaths = [] @@ -253,6 +277,9 @@ def getConverter(): return CV(TF) +PNUMBER = None + + def convert(): if generateTf: if os.path.exists(OUT_DIR): @@ -276,43 +303,63 @@ def convert(): def director(cv): - debug = False - curClusters = {cluster: None for cluster in clusterType.values()} + DEBUG = False + curClusters = {cluster: (None, 0) for cluster in clusterType.values()} - def info(msg): - print(f"INFO ======> {msg}") + def debug(m): + if DEBUG: + msg(f"INFO ======> {m}") + sys.stdout.flush() - def error(msg, stop=False): - print(f"ERROR ======> {msg}") + def error(m, stop=False): + msg(f"ERROR ======> {m}") + sys.stdout.flush() if stop: quit() def terminateClusters(): for tp in curClusters: - node = curClusters[tp] + (node, val) = curClusters[tp] if node: cv.terminate(node) - curClusters[tp] = None + curClusters[tp] = (None, 0) - def doCluster(data, cluster, on=None): - cv.feature(curSign, type="mark") + def doCluster(data, cluster, on=None, off=None): makeOn = data["side"] == "LEFT" if on is None else on - if makeOn: - if curClusters[cluster]: + makeOff = data["side"] == "RIGHT" if off is None else off + makeAlt = data["side"] == "CENTER" if off is None and on is None else off and on + status = True if makeOn else False if makeOff else None + if status is None and not makeAlt: + error(f"cluster {cluster} not on and not off and not alt", stop=True) + + (clusterNode, clusterVal) = curClusters[cluster] + if status is True: + if clusterNode is not None: error(f"cluster {cluster} is nesting", stop=True) clusterNode = cv.node("cluster") - curClusters[cluster] = clusterNode + curClusters[cluster] = (clusterNode, 1) cv.feature(clusterNode, type=cluster) - else: - clusterNode = curClusters[cluster] - if clusterNode: + elif status is False: + if clusterNode is None: + error(f"cluster {cluster} is spuriously closed", stop=True) + else: cv.terminate(clusterNode) - curClusters[cluster] = None + curClusters[cluster] = (None, 0) + elif status is None: + if clusterNode is None or clusterVal == 0: + error(f"cluster {cluster} is missing first part", stop=True) + elif clusterVal > 1: + error(f"cluster {cluster} has too many parts", stop=True) else: - error(f"cluster {cluster} is spuriously closed", stop=True) + curClusters[cluster] = (clusterNode, 2) + return status def getClusters(): - return {cluster: 1 for (cluster, node) in curClusters.items() if node} + return { + cluster: val + for (cluster, (node, val)) in curClusters.items() + if node is not None + } def doFlags(data, cur, extraFlag): flagList = data.get("flags", []) @@ -329,104 +376,140 @@ def doModifiers(data, cur): modifiers = "".join(m[1:] for m in modifierList) cv.feature(cur, modifiers=f"@{modifiers}") - def doSign(data, **features): + def doSign(data, wordAfter, isLast, **features): + nonlocal prevSign nonlocal curSign + nonlocal nextPre + nonlocal after + nonlocal lang - atf = data["value"] - startMissingInternal = atf != "[" and "[" in atf - endMissingInternal = atf != "]" and "]" in atf + signType = data["type"] + debug(f"A {signType=}") + + if signType in { + "AccidentalOmission", + "Erasure", + "Removal", + "BrokenAway", + "PerhapsBrokenAway", + "DocumentOrientedGloss", + }: + cluster = clusterType[signType] + status = doCluster(data, cluster) + if status is True: + nextPre += clusterChar[cluster][status] + elif status is False: + cv.feature( + curSign, + atfpost=(cv.get(curSign, "atfpost") or "") + + clusterChar[cluster][status], + ) + elif status is None: + nextPre += clusterChar[cluster][status] - extraFlag = "" - if startMissingInternal or endMissingInternal: - extraFlag = "#" - if startMissingInternal: - atf = atf.replace("[", "") + extraFlag - if endMissingInternal: - atf = atf.replace("]", "") + extraFlag + debug("skip") - if endMissingInternal and not startMissingInternal: - curSign = cv.slot() - cv.feature( - curSign, - atf="]", - sym="", - after=" ", - **getClusters(), - ) - doCluster(data, "missing", on=False) + elif signType == "LanguageShift": + lang = data["cleanValue"][1:] + nextPre += f"%{lang} " + if lang == "akk": + lang = None + debug("skip") - curSign = cv.slot() + elif signType == "Joiner": + after += data["value"] + if prevSign is not None: + cv.feature(prevSign, after=f"{cv.get(prevSign, 'after') or ''}{after}") + debug("skip") - cv.feature(curSign, atf=atf, **getClusters(), **features) - doFlags(data, curSign, extraFlag) - doModifiers(data, curSign) - signType = data["type"] + else: + atf = data["value"] + atfPre = "" + atfPost = "" + extraFlag = "" - sym = data["cleanValue"] - feats = {} + indexStart = atf.find("[") + indexEnd = atf.find("]") - if signType == "AccidentalOmission": - doCluster(data, clusterType[signType]) - tp = "mark" - sym = "" + startMissingInternal = atf != "[" and indexStart >= 0 + endMissingInternal = atf != "]" and indexEnd >= 0 - elif signType == "Removal": - doCluster(data, clusterType[signType]) - tp = "mark" - sym = "" + if startMissingInternal and endMissingInternal: + if indexStart < indexEnd: + extraFlag = "#" + atf = atf.replace("[", "").replace("]", "") + extraFlag + else: + atf = atf.replace("[", "").replace("]", "") + elif startMissingInternal: + atf = atf.replace("[", "") + atfPre = "[" + doCluster(data, "missing", on=True, off=False) - elif signType == "BrokenAway": - doCluster(data, clusterType[signType]) - tp = "mark" - sym = "" + prevSign = curSign + curSign = cv.slot() + debug("slot") - elif signType == "PerhapsBrokenAway": - doCluster(data, clusterType[signType]) - tp = "mark" - sym = "" + if endMissingInternal and not startMissingInternal: + atf = atf.replace("]", "") + atfPost = "]" + doCluster(data, "missing", on=False, off=True) - elif signType == "UnknownNumberOfSigns": - tp = "ellipsis" + thisPre = nextPre + atfPre + atfPre = dict(atfpre=thisPre) if thisPre else {} + nextPre = "" + atfPost = dict(atfpost=atfPost) if atfPost else {} - elif signType == "UnidentifiedSign": - tp = "unknown" + cv.feature( + curSign, **atfPre, **atfPost, atf=atf, **getClusters(), **features + ) + doFlags(data, curSign, extraFlag) + doModifiers(data, curSign) - elif signType == "UnclearSign": - tp = "unknown" + sym = data["cleanValue"] + feats = {} - elif signType == "Number": - tp = "numeral" - feats = dict(number=sym) + if signType == "UnknownNumberOfSigns": + tp = "ellipsis" - elif signType == "Logogram": - tp = "grapheme" - feats = dict(grapheme=sym) + elif signType == "UnidentifiedSign": + tp = "unknown" - elif signType == "Reading": - tp = "reading" - sym = data["name"] - feats = dict(reading=sym) + elif signType == "UnclearSign": + tp = "unknown" - elif signType == "Joiner": - tp = "joiner" + elif signType == "Number": + tp = "numeral" + feats = dict(number=sym) - elif signType == "Determinative" or signType == "Variant": - error(f"nested {signType} Signs", stop=True) + elif signType == "Logogram": + tp = "grapheme" + feats = dict(grapheme=sym) - else: - error(f"unrecognized sign type {signType}", stop=True) + elif signType == "Reading": + tp = "reading" + sign = data.get("sign", None) + reading = data["name"] + if sign is None: + feats = dict(reading=reading) + else: + grapheme = sign["cleanValue"] + feats = dict(reading=reading, grapheme=grapheme) - cv.feature(curSign, type=tp, sym=sym, **feats) + elif signType == "Joiner": + tp = "joiner" - if startMissingInternal and not endMissingInternal: - curSign = cv.slot() - cv.feature( - curSign, - atf="[", - after="", - **getClusters(), - ) - doCluster(data, "missing", on=True) + elif signType == "Divider": + tp = "wdiv" + + elif signType == "Determinative" or signType == "Variant": + error(f"nested {signType} Signs", stop=True) + + else: + error(f"unrecognized sign type {signType}", stop=True) + + after += wordAfter if isLast else "" + cv.feature(curSign, type=tp, after=after, sym=sym, **feats) + after = "" paths = getJsonFiles() for (i, path) in enumerate(paths): @@ -440,10 +523,14 @@ def doSign(data, **features): if len(origFields) == 1 else docData[origFields[0]][origFields[1]] ) + pNumber = metaData["pnumber"] + if PNUMBER is not None and PNUMBER != pNumber: + continue + textData = docData["text"]["allLines"] nLines = len(textData) - print(f"{i + 1:>3} {nLines:>4} lines in {fileName}") + msg(f"{i + 1:>3} {nLines:>4} lines in {fileName}") if nLines == 0: continue @@ -459,7 +546,13 @@ def doSign(data, **features): for lineData in textData: lang = None + prevSign = None + lineType = lineData["type"] + content = " ".join(c["value"] for c in lineData["content"]) + atf = f"{lineData['prefix']} {content}" + debug(atf) + isFaceLine = lineType == "SurfaceAtLine" if isFaceLine: thisFaceValue = lineData["label"]["surface"].lower() @@ -477,8 +570,6 @@ def doSign(data, **features): curFaceValue = ( lineData["label"]["surface"].lower() if isFaceLine else "obverse" ) - if debug: - info(f"@{curFaceValue}") cv.feature(curFace, face=curFaceValue) if isFaceLine: continue @@ -514,15 +605,13 @@ def doSign(data, **features): isEmptyLine = lineType == "EmptyLine" isTextLine = lineType == "TextLine" - content = " ".join(c["value"] for c in lineData["content"]) - atf = f"{lineData['prefix']} {content}" - if isEmptyLine or isTextLine: lln += 1 curLine = cv.node("line") cv.feature(curLine, lln=lln, atf=atf) if isEmptyLine: + prevSign = curSign curSlot = cv.slot() cv.feature(curSlot, type="empty") prevLine = curLine @@ -534,8 +623,6 @@ def doSign(data, **features): colno = f"{col}{colprime}" lnno = f"!{colno}:{lln}" cv.feature(curLine, lnno=lnno) - if debug: - info(f"{lln} - empty") else: numberData = lineData["lineNumber"] ln = numberData["number"] @@ -550,134 +637,123 @@ def doSign(data, **features): colprime = "'" if primecol else "" colno = f"{col}{colprime}" lnno = f"{colno}:{lnno}" - if debug: - info(f"{lln} - {lnno}") cv.feature(curLine, lnno=lnno) lineContent = lineData["content"] - erasure = "" - - lastWord = len(lineContent) - 1 - - for (w, wordData) in enumerate(lineContent): - contentType = wordData["type"] - if erasure and contentType != "Erasure": - curWord = cv.node("word") - cv.feature( - curWord, - type="mark", - atf=erasure, - sym=erasure, - after=" ", - ) - curSign = cv.slot() - cv.feature( - curSign, - type="erasure", - atf=erasure, - sym=erasure, - after=" ", - **getClusters(), - ) - cv.terminate(curWord) - - atf = wordData["value"] - sym = wordData["cleanValue"] - - if contentType == "Erasure": - erasure += wordData["value"] + lineSigns = [] + + for wordData in lineContent: + if "parts" in wordData: + lineSigns.append([True, wordData, False]) + for signData in wordData["parts"]: + hasSubs = False + for (kind, tp) in ( + ("parts", "Determinative"), + ("tokens", "Variant"), + ): + if kind in signData: + hasSubs = True + end = len(signData[kind]) + for (i, subPart) in enumerate(signData[kind]): + lineSigns.append( + [ + False, + subPart, + False, + tp, + i, + i == end - 1, + ] + ) + if not hasSubs: + lineSigns.append([False, signData, False]) else: + lineSigns.append([None, wordData, None]) + + for entry in reversed(lineSigns): + isWord = entry[0] + if isWord: + entry[2] = True + break + for entry in reversed(lineSigns): + isWord = entry[0] + atWordEnd = True + if isWord is False: + if atWordEnd: + entry[2] = True + atWordEnd = False + elif isWord is True: + atWordEnd = True + + curWord = None + curSign = None + nextPre = "" + after = "" + + for (e, entry) in enumerate(lineSigns): + isWord = entry[0] + data = entry[1] + isLast = entry[2] + where = None if len(entry) < 4 else entry[3] + contentType = data["type"] + if isWord: + if curWord: + cv.terminate(curWord) + atf = data["value"] + sym = data["cleanValue"] curWord = cv.node("word") - after = "\n" if lastWord == w else " " - textAtts = dict(atf=atf, sym=sym, after=after) - cv.feature(curWord, **textAtts) + wordAfter = "\n" if isLast else " " + cv.feature(curWord, atf=atf, sym=sym, after=wordAfter) if contentType in {"Word", "LoneDeterminative"}: - lemmaData = wordData["uniqueLemma"] + lemmaData = data["uniqueLemma"] lemma = ", ".join(lemmaData) atts = {} if lang is None else dict(lang=lang) cv.feature(curWord, type="word", **atts, lemma=lemma) - parts = wordData["parts"] - lastSign = len(parts) - 1 - - for (i, signData) in enumerate(parts): - signType = signData["type"] - isDeterminative = signType == "Determinative" - isVariant = signType == "Variant" - - if isDeterminative or isVariant: - subParts = signData[ - "tokens" if isVariant else "parts" - ] - lastSubPart = len(subParts) - 1 - - if isDeterminative: - doCluster(signData, "det", on=True) - - for (j, subPartData) in enumerate(subParts): - after = ( - " " - if lastSign == i and lastSubPart == j - else "" - ) - atts = ( - dict(variant=j + 1) if isVariant else {} - ) - doSign(subPartData, after=after, **atts) - - if isDeterminative: - doCluster(signData, "det", on=False) - - else: - after = " " if lastSign == i else "" - doSign(signData, after=after) - - elif contentType == "Divider": - cv.feature(curWord, type="wdiv") - curSign = cv.slot() - cv.feature(curSign, type="wdiv", **textAtts) - - elif contentType == "LanguageShift": - lang = wordData["cleanValue"][1:] - if lang == "akk": - lang = None - cv.feature(curWord, type="lang") - curSign = cv.slot() - cv.feature(curSign, type="lang", **textAtts) - + elif isWord is False: + if len(entry) > 3: + tp = entry[3] + where = entry[4] + atEnd = entry[5] + atts = {} + debug(f"COMPLEX {tp=} {where=} {atEnd=}") + if tp == "Determinative": + if where == 0: + doCluster(data, "det", on=True, off=False) + doSign(data, wordAfter, isLast) + if atEnd: + doCluster(data, "det", on=False, off=True) + elif tp == "Variant": + doSign(data, wordAfter, isLast, variant=where + 1) + else: + error(f"Unknown complex type: {tp}", stop=True) else: - cv.feature(curWord, type="mark") - curSign = cv.slot() - cv.feature(curSign, type="mark", **textAtts) - - if contentType in { - "BrokenAway", - "Divider", - "DocumentOrientedGloss", - }: - doCluster(wordData, clusterType[contentType]) - elif contentType == "ValueToken": - error(f"unexpected word type {contentType}") + doSign(data, wordAfter, isLast) + else: + doSign(data, " ", isLast) - else: - error(f"unrecognized word type {contentType}") - - cv.terminate(curWord) - - if erasure: - curWord = cv.node("word") - cv.feature(curWord, type="mark", atf=erasure) - curSign = cv.slot() - cv.feature( - curSign, - type="erasure", - atf=erasure, - sym=erasure, - after=after, + if nextPre != "": + error( + f"dangling pre material at last sign of line: {nextPre}", + stop=True, ) - cv.terminate(curWord) + + if after: + if prevSign is not None: + cv.feature( + prevSign, + after=f"{cv.get(prevSign, 'after') or ''}{after}", + ) + after = "" + if after != "": + error( + f"dangling after material at last sign of line: {after}", + stop=True, + ) + + cv.terminate(curWord) prevLine = curLine cv.terminate(curLine) @@ -750,30 +826,34 @@ def loadTf(): loadableFeatures = allFeatures["nodes"] + allFeatures["edges"] api = TF.load(loadableFeatures, silent=False) if api: - print(f"max node = {api.F.otype.maxNode}") - print("Frequency of readings") - print(api.F.reading.freqList()[0:20]) - print("Frequency of grapheme") - print(api.F.grapheme.freqList()[0:20]) + msg(f"max node = {api.F.otype.maxNode}") + msg("Frequency of readings") + msg(api.F.reading.freqList()[0:20]) + msg("Frequency of grapheme") + msg(api.F.grapheme.freqList()[0:20]) # MAIN command = None if len(sys.argv) <= 1 else sys.argv[1] -print(f"JSON to TF converter for {REPO}") -print(f"ATF source version = {VERSION_SRC}") -print(f"TF target version = {VERSION_TF}") +msg(f"JSON to TF converter for {REPO}") +msg(f"ATF source version = {VERSION_SRC}") +msg(f"TF target version = {VERSION_TF}") if command is None: generateTf = True good = convert() if good: loadTf() +elif command.startswith("P"): + generateTf = True + PNUMBER = command + convert() elif command == "-skipload": generateTf = True convert() elif command == "-skipgen": loadTf() else: - print(f"Wrong command {command} !\n{HELP}") + msg(f"Wrong command {command} !\n{HELP}") diff --git a/tf/0.3/after.tf b/tf/0.3/after.tf new file mode 100644 index 0000000..68adcb3 --- /dev/null +++ b/tf/0.3/after.tf @@ -0,0 +1,83586 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=what comes after a sign or word (- or space) +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=str +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +. +. +. +\n +. +. +. +. + + + +\n +. + +. +. +. +. + +. +\n +. +. +. +. + +. +. +. +. +. +. +. +. +. +. +\n +. +. +. + +- + +. +. +. +. + + +\n +- + +- +- +- +- +- + +- + +- + + + + + + + + + + + + + + + +\n +. +. +. + + + +- + +- +- +- +- + + + + + + + + + + + + + + + + + +\n + + + + + + +- + +- + + + + + + + + + + + + + + + +\n + + + + + + + +- + +- + + + + + + + + + + +\n + +. + +. + +- + +- + + + + + + + + + + +\n +. +. +. +. + + + + + +\n + +. +- +. +- +- +- +- +- +- +- +- +- +- + + + + + + + + + + + + + + + + + +\n + + +. +- +. +- + +. + +. + +. + + + + + + + + + + + + + + + + + + + + +\n + + +. +- +. +- +- +- +- +\n + + + + +. +. +. +. +\n +268 + + + + + + + + + + +- +- +- +- +- +- +-\n +-\n + + + + + + +- +\n +-\n +. + +- +\n +-\n + + + + +- + +- +\n +-\n + + + + + + + + + + +- +- +- +- +\n +-\n + + + + + + + + + + + +- +- +-\n +-\n + +- + +- +- + +- +\n +-\n + + + + + + + + + + + +- +- +-\n +-\n + + + + + + + + + + + + + + + +- +- +- +- +- +- +-\n +-\n + + + + + + + + + + + + +- +- +- +- +-\n +-\n + + + + + + +- +- +- +- +-\n +-\n + + + + + + + + + + + + + + + + + + + + +- + +- +\n +-\n + + +\n +448 - +- +- +- +- +-\n +-\n +- +- +- +- +- +-\n +-\n + + + + + + + + + + + + +- + +- +- +- +- +- +\n +-\n +. +- +. +- +- +- +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +-\n +-\n +- + +- + +- + +\n + + + + + + + + + + + + + +- + +- +- + +- +- +- +- +- +\n +-\n + + + + + + + + + + + +- +- +- +- +- +- +- +- +\n +-\n + + + + + + + + + + + + + + + + + + +. +- +. +- +- +- +- + +- + + +\n + + + + + + + + + + + + + + + +- + +- +- +- +. +- +. +- +- +- +- + +- +- +-\n +-\n + + + + + + + + + + + + +- + +- + +- +- +-\n +-\n + + + + + + +- + +- +- +- +- +- +-\n +-\n + + + + + + + + + + + +- +- +- +- + +- +\n +-\n + + + + + + +\n +- + +- +- +- +-\n +-\n +- + +- +- +- +- + +. +- +- +- +- + +- +- +\n +-\n + + + +- +- +- +- + +- +- +-\n +-\n + + + + + + + +- + +- + + + + + + + + + + + + + + +\n + + + + + + + +. +. +. +. + + + + + + + + + + + + + + +\n + + +- + +- +. + +. + +. + + + + +\n + + +- +- +- +- +- +- +. + +. + + + + + + + + +\n + +. +. +. +. + + + +. +. +. +. +. + + + + + + + +\n + + + +- + +- + +. +. +. +. + +\n +- +- +- +- +- +- +- +- +- + +. +. +. +. + + + +\n +- + +- + + +- + +- +. +. +. +. + + + + +\n + + + + + +. +. +. +- + +- + +- +- +- +- + +- +- +- +- +- + + +\n + + +. + +. + + + + + + +\n + + + + + +. +. +. +. + + + + + + +\n + + + + + + + + + +- + +. +. +. +. + +\n + + + + + + + + + + + + + + +\n + + + +- + +- +. + +. + + + + + + +\n + +. +. +. +. +. + +. + + + +\n + + + + +- + +- + + +\n + + + + + + + + + + + + + +\n +1009 + + + + + + + + + + + + + +. +\n +.\n + + + + + + + + + + + + +- +- +- +- +\n + + + + + + + + + + + + +. + +- +- +- +- +- +- +- +-\n +-\n + + + + + + + + +- +- +- +- +- +- +\n + + + + + + + + + + +- + +. + +. +. + +- +\n +-\n + + + + + + + + + + + +- + +- + +- +- +- +- +- +- +\n + + + + + + + +. +- +. +- +- + +. + +. +- +- +- +- +\n +-\n + + + + + + + + +. + +- +- +- +- +\n + + + + + + + + + + +- + +. + +. +. + +. + +. + +- +\n +-\n + + + + + + + + +- +- +- +- +- +- +- +- +\n + + + + + + + + + + + +- +- +- +- +- +- +- +- + + + +\n + + + + + + +- +- +- +- +\n + + + + + + + + +- + +- + +- + +. + +- +- +- +- +- +\n + + + + + + +- + +- + +- + +. + +- +- +- +- +- +\n + + + + + +- + +- + +- + +- +- +- +- +-\n +-\n + + + +- +. +- +- +- +- +- + + + +\n +- + +- + + + + + +\n +\n +1319 + + + +- + +- +- +- +- +- +- +- +- +- +- +- +- + + + + + +\n + +. + +. +. +. +. +. + +. +. +. +- + +- + + + + +\n + + + +- + +- +\n + + + +\n +- +- +- +- +- +- +- +. +- +. +- +\n +- +- +- +- + + + + + +. + +. +\n + + +- +- +- +- +- +- +. +- +. +- + + +\n +- +- +- +- + +- +- +- +- +- + + + + + +\n +- + +. +- +. +- + +- +- +- +- +\n + + + +- +- +- +- +\n + + +- +- +- +- + +- + +. +- +. +- + +\n +. + +. +. + +. + + + +\n + +- + +- + +. + +. + + +\n +- +- +- +- +- +- +- +\n + + + + + + +\n + +. +. +. +. +\n + +. + +. +\n + +- +- +- +- +\n + +- + +- + + +\n + +- + +\n + +- + +- + + +\n + + + +\n + +- + +\n + + + +\n + +\n +. +- +- +- +- +\n + + +- + +- +- + +- + +. + +. +- +\n +-\n +. + +. + + + + +- +\n +-\n + + + + + + + +\n +\n +. +- +- +- +- +\n + + +- + +- + +- +\n +-\n + +- + +- + +- +- +- +- +\n +-\n + + +\n +. + +. + + + + + + + +\n +. +. +. +. +. + + + + + + + + +\n + + +- + +- + + + + + +\n +- + +- + + + + +\n +. +. +. +. + + + + +\n +- +- +- +- +\n + +- +\n +-\n + +- + +- +\n +. +\n +.\n + + +\n + +\n + +- +- +- +- +- +- +- +- +- +- +- +. +. +. +. + +- + +- +. +. +. +. +- +. +- + +\n + +- + +- + +- + + +- + +- + +. + +- + +. +- +. +- +- +- +- +- + + +. +- +. +- +\n +- +. +- +- +- +- + +- + +- + +- + +- + +. +- +. +- +. + +- +- +- +. + +. +- +. +- +- +\n +-\n +- + +- +- + +. + +. +. +- +. +- + + + + + +. +- +. +- +- +- +- + +\n + +- + +- + +- +- +- +- +- + +. + +. + + + + +. + +. + +\n +\n +. +. +- +- +- +. + +- +- +- +- + +. +- +. +- +. +- +. +- + +. +. +. +. + +\n + +- + +- +- +- +. +- +. +- +- +- +- +- + +. +- +. +. + +- +\n +-\n + +. + +. + +- +- +- +- +- +- +- +. + +. + +. +. +. +.\n +.\n + + + +. + +- + +- + +- +. +- +. +. + +- +- +- +- +- +- +- +- +\n + +. +- +- +- +- +- +- +- +- +- +- +- + +- +. +\n +.\n +. + +. +. +. +. +. + +- +- +- +- + +- +. +\n +.\n + +. +- +. +. +. +. +. +- +- +- +- + +- +- +- +- + +- +- + +- + +- + +\n +. +. +- +. +- +. +. +- +- +- +- +- +- + +- + +\n + +- + +- +- +- +- + +- +- + +- + +- + + + +\n + + + +. +. +- +. +- +. +- +- +- +- +- + +- + +\n + + +. +- +. +- +- +- +- +. + +. + + + + + + + + +\n + + +. +- +. +- +- +- +- +- +. +- +. +- +- +- +- +- + +. + +. + +\n +. + +. +. +. +- +- +- +- + +. + +. + +. +- +. +- +- +- +- +- +\n + +. +- +. +- +- +- +- +- + +- +- + +- +\n + + +. +. +. +. +. + + + + + + +\n + + +- + +- +. + +. + + + + +\n + +. +- +. +- +- + +- + +- +- + +- +- + +- + +\n + +. + +. + +. + +- +- +- +- + +- + +\n + + + + + ++ + ++ + +. + +. + +- + +- +. + +. +. +- +. +- +\n + +. +- +. +- + + +. + +. + + +. + +. + +. + +. +\n +\n + +. +- +- +- +. + +- +- +- +- + +- + + +\n + +. +- +. +- +- +- +. + +- +- +- +- +- +- +- + + +\n + +- + +- +- + +- + +- +- +- +- + +- +\n + +- +- +- +- + + + + + + + +\n + +. + +. +. +. +. + +. + + + + + + +\n + + + +- +- +- +- + + +. + +. + +. + +. + +. + +\n + + + +. + +. +. +. +. +. + + +. +- +. +- +\n + +. +- +. +- + +. + +. +. + +. + +- + +. + +. +. + +. +. +. +. + +. +- +- +-\n +-\n +- + +- + + + + + +- +- +- +- +- +- + +- + +- + +. +- +. +- +- +-\n +-\n +- + +- + + + + + + + +. + +. +. +- +. +. +\n +.\n + +. +- +. +- +- +- +- +- + + +. + +. +. +. +. +. + + + +- + +. +- +. +- +\n + +. +- +- +- +- +- +- +- +. +. +. +- + +- +. +\n +.\n + +. +- +. +- + +- + +- +- +- +- +. + +. + + + +\n +- + +- + +- +- +- +- + +- + + +\n + +. +- +. +- + +. +- +. +- + + +\n + +. +- +. +- + +- + + + +. + +. +. + +. +. +- +. +- +\n +. + +. +- +- +- +- + +- + +. + +. + +. +. +. +. +\n + +. +- +. +- +- +- +- +. +. +. +- + +- +- +- +. +- +. +- + + +- +\n +-\n +- + +- +. + +- +- +- +- +. + +. +. + +. + +\n + +. +. +. +. + +- +- +- +- + +- +- +- +- +- +- +- +- +- +- +- +\n + +. + + +. + +. +- +- +- +. + +. + + +. + +. +. +- +. +- +\n + + +- +- +- +- + +- +- + +- + +- +- +- +-\n +-\n + + +. + +. +. + +. + + +- +- +- +- +- +- +- +- +- +- +- + + +- + +- +\n + + + + + + + + +. +- +. +- +\n + +. + +. +. +. +- + +- +. + +. + + + + +. + +. +. + +. +. +. +. + + +\n + + +. + +. + + +- + +- +. + +- + +- + +. + +. + +. + +. + +\n + + + + + + +. + +. +. + +. + + + + +\n +2772 +. + +. +. +. +. +. ++ + ++ + +. +- +. +- +\n + +. + +. + +. + +. + + + + + + + +. + +. + +. + +. + +. +. +. +. + +- + +- +\n +. +. +. +- + +- + +. +. +. +. +- +- +- +- +. + +. +\n + +. +- +. +- + +- + + + +. + +. + +. + +. +- +. +- +- +-\n +-\n + +- + +- + + ++ + ++ + + + + + +\n +- +- +. + +. +. +. +. +- +- +- +- +. + +. + +. +- +. +. +- +.\n +-\n + + + + + + + + +- + +. + +. + +. +\n + +. +- +. +- + +- +\n +-\n + +. + +- +- +- +- +\n + +- +- +- +- + +- +- +- +- +- +- +- +-\n +-\n + + +\n + ++ + +- + +. +. +. +. +. +. + +. + +\n + + +- +- +- +- +- ++ + ++ + +- +\n +-\n + + +. +. +. +. + + + + +. + +- + +- +\n +-\n + + +. +. +. +- +- +- +. + +- + +- +\n +-\n + + + +- +\n +-\n +- + +- + +. +- +. +- +- +-\n +-\n +- +- +- +- +- + +- +- +- +- + +- +- +\n +-\n + + + +. + +. +- +. +- +\n +-\n +. + +. + +. + +. +- +- +- +. +\n +.\n + +. + +. + + +. + +. + +\n + + +. + +- +- +- +- + +. + +. +\n +.\n +. + +. + +. + +- +- +- +- +- +- + +- +\n + +- +- +- +- +. +\n +.\n + +- + +. + +. +- +- +- +- +. +- +. +- +\n +-\n + +. + +- +- +- +- +- +- +- +- +- + +. +- +. +- +- +- +- +- +- +- +- +- +- +- + +- +\n +-\n +- +- +- +- +- +- +- +. +. +. +- + +. +- +. +- + + + +. + +. + +- + +. +- +. +. +- +. +- +\n + + +. + +. + +. +. +. +. + +. +. +.\n +.\n + +- + +- +. + +. +- +- +- +- +. +- +. +- +\n +- + +- +- +- +- +- +. + +. + +\n + +- + +- + +- +- +- +- + +- +. + +. + +\n + +. + +. + +\n + +. +- +- +- +- + + +- +- +-\n +-\n +. + +. + + + +. +- +. +- +- +-\n +-\n +- + +- + +- +\n +-\n +- +- +- +- + +. + +. +- + +. +- +.\n +-\n +- +- +- + + + +- +- +- +- +- +- +- +- +- + +- + + + +- +- +- +-\n +-\n +- +- +- +- +- + +- + + + +. +. +. +. +\n +.\n +. + +- +- +- +- + + +- +- +- +. + +. +- +- +- +- +- +- +- +- +- +-\n +-\n +- + +- + + +. + +. +. +. +. +. + +. + +- +- +- +- + +. +. +.\n +.\n +. +. +. +. +. +- +- +- +. + +. +. +. +- + +- +. + +. + + + +- +- +-\n +-\n +- +- +- +. +. +. +. + +. +. +. +. + +. +. +. +- +- +-\n +-\n + +. +- +. +. +. +. +. + + +. +. +. +. + + +. + +. + +. +- +. +- +\n + +. +- +. +. +. +. +. + + +. +. +. +. + + + + + +- +- +- +- + +\n + +. +- +. +- + +- +- +- +- +- +- + + + +- + +. +- +. +- + +\n + +. +- +. +- +- +- +- +- + +- + +. +. +. +- +- +- +- + +. + +- +\n +-\n +. + +. +. + +. + + +- + +- + + +. +- +. +- + +- +- +- +- +. +\n +.\n +. +. +. +. +. +. +. +. + +. + +- +- +- +-\n +-\n + +. +- +. +- + +- +- +- +- + + +. +- +. +- + +. +. +. +- + +. +- +. +- +- +\n +-\n +. + +- +- +- +- + +. +. +. +. +. + +. +\n +.\n +\n +. +. +. +- +- +- +- + +- + +. + +. + +. + +. +- +. +- + +- +\n + +. +- +. +- + +- +- +- +- + + +. +- +. +- + +- +- +- +- + + + + + + +. +- +. +- +\n +- + +- + + + + + + +. + +. +- +. +. +- +. +- +\n + +. +- +. +- + +- + +- +- +- +- +\n + + + +. +- +. +- +\n + + + + + + + +\n + + +\n + +. + +. +\n + +- + +- + +\n + + + +. + +. + +. +- +. +- +\n +-\n + + +\n +- + +- + + +- +- +- +-\n +-\n + +- +- +- +- + +- +- +\n +-\n +- +- +- +- +. +- +. +. +- +. +- +\n + +. +- +. +- +- + +- + +- + +- +. +\n +.\n + + + + + + + + + +- + +- +\n + +. +- +. +- +- +- +- + + + + +. + +. +. + +. + +\n + + + + +. + +. + + + + + +- +- +- +- +\n + + + + +. + +. + +. + +. + + + + + + + + + + +\n +- +- +- +- +. + +. +. +- +. +- +\n +3894 - + +- + +- + +. + +. + +\n + +. + +. + + +- + +- +. + +. + +. + +. + + + +- + +- + +. +\n +.\n +. +. +. +- +- +- +. +- +. +- +. + +. + +. +. +. +. +- + +- + +. +- +. +- +- +- +-\n +-\n + + +- +- +- +- +- +- +. +. +. +. + +- + +- + +\n + +. + +. + +. + +- +- +- +. + +. + +\n + + + + + +. + +. + +. + +. + + +. +. +. +. + +. +- +. +- +- +-\n +-\n + + + + + + +- +\n +-\n + + +. + +. + +. +\n +- +- +- +- +\n +. + +. +- +- +- +- +. + +. + +. +\n +- +- +- +- +- +- + +- + +- + +- +. +- +- +-\n +-\n +. + +- +- +- +- +. + +- +- +- +. + +. + + +. +- +. +- + +\n + + + +. + +- +- +- +. + +. + +\n +. +- +- +- +- + +. + +- +\n +-\n + +. + +- + +- + +. + +. +. + +. + +. + +\n + + +. +- +. +- +- +- +. + +. +. + +. + +\n + +. +- +. +- + +- +- +- +. + +. + +. +. +. +. + +. +- +.\n +-\n + + +. +. +. +. +. +. + + + +\n +. +. +. +. +. +- +- +- +- + +\n + + + +. + +. + + + + +\n + +. +. +. +. + +. +\n + + +\n + + +. + +. + +. +\n +. +- +- +- +- + + +- +- +-\n +-\n + + +. + +. + +\n +- +- +- +. + +. + +. + +. + +\n + + + +. +- +. +- +- +-\n +-\n + +\n +- +- +- +- +\n +- +- +-\n +-\n + + +\n + + +- +\n +-\n + + +. +- +. +- +- +-\n +-\n + +- +- +-\n +-\n + +. +. +. +. +\n +.\n +- + +- +\n + +\n + + + + +- +\n +-\n + + +- +- +- +. +- +. +- +\n +- +\n +-\n + + +- +\n +-\n + + + +- +\n +-\n + +- + +- +- +\n +-\n +- + +- +\n +-\n + + +\n + + + +\n + + +. +\n +.\n +. +- +. +- +- +\n +-\n +. +- +. +- +. +. +.\n +.\n +- +- +- +- + + +. + +. +\n + +- +- +- +- + + + + +. + +. +\n + +. + + + +. +- +. +- + +. + +. + +. + +. +\n +- + +- +- + +- + + + + + + +. + +. +\n + +. +- +. +- +- +- +- + +- + +. + +. +. +. +. +.\n +.\n +4459 +. + +\n + +. +. + +. + + +\n + +. +- +. +- + +- + +- +\n + + +- + +- + +- +\n +. +. +. +- +- +- +- +\n + + +- + +- + +- +\n +. +. +. +. +\n + +. +- +. +. + +. + +. + +\n + + + + + + +. + +. + +\n +. +. +. +. +- +- +- +. +. +. +. + +. +\n + + +. + +. +- +. +- + + +\n +- +. +- + + + +. + +. +\n + + + +- +- +- +- +- + +\n + + + +\n +- +- +- +\n + + + + +\n + +. +- +. +- + + + + +\n + + +- +- +- +- + + + + +\n + +. +- +. +. + +. + + +. + +- + +. + +. +\n +. +. +. + +. +- +. +- +\n + +. +- +- +. +- +. + + + +. + +. + + + + + +- +- +- +. + +- +- +- +- +- +- +- +-\n +-\n +- +- +- +. + +- +- +- +- + +- +- +- +-\n +-\n + +. +- +. +- + +- +- +- +- + +- + +- +- +- +- +- +- +- +-\n +-\n + +- +- + +- + +- + +. + +- +- +- +- +\n +-\n +- +- +- +- +- +- + +- + +- + +- + +- +- +- +- +- +- +- +- +- + +- + +. +- +.\n +-\n + +- +- +- +- +- +- +- +- + +. +- +. +- +\n +-\n + +- +- +- +- + +- + +- +- + +- +- +- +- +. + +- +- +- +- +- +\n +-\n +- + +- +- + +- +. + +. +- + +- + + +. +. +. +. +. + +. +\n + +- + +- + +- + +- +. +. +. +. +. +- + +- +- +- +- +\n +-\n + +- + +- + + + +- + +- +. + +- + +- +- +- +- +- +- +- +- +\n +-\n +. +. +. +. + + + + + + + + + +. + +. + +. +. +. +. +- +- +- +-\n +-\n +. +. +. +. + +. +. +. +. + +. +. +. +. + +. +- + +- +. + +. +\n +. + +. + + +- +- +- +- +- +- +- +\n + + + + +. + +. + +- + +- + +- + +- + + + + +- +- +- +- +- + +- +- + +- + +- + +- + +- +\n + + + + + +- + +- + +- + +- + +- +\n + + + +- +- +- +- +- + +- + +- + +- +\n + +- + +- + + + + + +- +- +- +- +- +- +-\n +-\n + + +- +- +- +- + +- +- + +- + +- +\n + + + + +- +- +- +- +- +- +- +- +- + +- + + + +- + +- +- +- +-\n +-\n + + +. +- +. +- +- +- +- +- + +- +- +- +- +. +- +. +- +- +- +- +- +- +-\n +-\n + +- +- +- +- +- +- +- +- +- +- +- +- +- +- + +- + +. + +. +. +- +. +- +\n +-\n + +- + +. +- +. +- + +- + +. +- +. +- + +- +- +- +- +- +\n +-\n + + + + +. + +. + + +- + +- +- + +- +- + +- +- +\n +-\n +. +. +. +. + +. + +. + + + + + + + +\n + +- + +- +- +- +- +- +- +- + + + + + + +\n + + +. +. +. +- +. +- +. + +. + + + + +\n + +- + +- + +- +- +- +- + +. +- +. +- +- +- +- +- +- +- +\n +-\n +- + +- + +. + +. +- +- +- +- +- +- + + + +- +- +- +- + +- + + + + + +\n +- +- +- + +- + +- +- + +- + +- +- +- +- +- + +- + +. +- +. +- +\n +. + +. + + +. + +. + +. + +. + +. + +. + +- +- +-\n +-\n + +- + + +. + +. + +. + +. +. + +- + +- +- + +- + +- +\n + +- + +- + + + + +- + +- +- +- +- +- +- + +. +- +. +- + +- +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- + +- + +- +- +- +- +- + +- +- +\n +-\n + + + +. +. +. +. + + + + + + + +. +. +. +. + + +- + +- + + + + + +. +\n +.\n + + +- + +- + + + + + +- + +- +. +. +. +. +. +- + +- +\n +-\n + +- + + +- + +- + +- +- + +- +- + +. + +- +- +- +- +- +\n +-\n + + + +- + +- +- +- +- +. + +. + + + +- + +- + +- +- + +- +- + +. +- +. +- +- +- +- +- +\n + + + +. +. +. +. +- + +- +- + +. + +. + +. + +. +- + +- + +- +- + +- +- + +. +- +. +- + +\n + + + +. +. +. +. +- +- +- +- +- +- +. +. +. +. + +. + + + +- + +- +- +\n +-\n + +- +- + +- +- + +- +- + +- + +- + +- +- + +- +- +- +- +- +\n + + + +. + +. + + +- + +- +- + +- +- +- +- +- +- +- +- +-\n +-\n +. + +. +- + +- + +- + +- + + + + + + + + + +\n + + +- + +- + + +- +- +- +- + + + +. + +. + + + + + + + + +- + +- + + + +\n +\n + + + + + + + + +. + +. + + + +. + +. + + +- +- +- +- +- + + + + +. + +. + + + +. +\n +.\n + + + + + + + + + +- + +. + +. + + + + + + +. +. +. +. + + + + +\n + + +. +. +. +. + + + +. + +. + + +. + +. +- + +- +- +- +. + +. + +\n +. + +. + +. + +. +- +- +- +- + +- +- + +- +- + +- + +- + +- + +- + +- +- +- +- +- +\n + +- + +- +- +- +- +- +- +- + +- +- + +- + +- + +- + + +- + +- +- +- +- +\n +-\n + + + +. + +. + +- +- +- +- +- + +- + +- + + + +- + +- +- +- +- +\n +-\n + + + +- +- +- +- +. + +. +. + +. + + + + + +- + +- + +\n + + +. + +- +- +- +- + +. +. +. +. + +. + +. +- + +- +- +- +- +\n + + +- +- +- +- +- +- +- +- +- + +- + + + + + + + + +- + +- +- + +- +- +- +- +\n + + +- +- +- +- +- +- +- +- +- + +- + +- + +- + + + + +- + +- +- + +- +- +- +- +\n + + +. + +. +- +- +- +- + +- +. + +. +- +- +- +- + +- +\n + + + + +- + +- +- + +- + + + + +- + +- + + + + + + + + +\n + + + + + + + +- + +- + +- + +- + + + + + +- + +- + +\n + + + + +\n +5997 +\n + +\n + +\n + + +\n +6007 +- + +- + +- +. + +. + + + + + + + + + + + + + +- + +- +\n + +- + +- + +- +. + +. + + + + + + +\n + +- + +- + +- +- +- +- +- +- + + + +- + +- + + +. + +. + +\n +- + +- + + + + + + +. + +. + + + + + + +. + +. + + + + + +\n + +- +- +- +- +- +- +- + + +. +. +. +. + + +. +. +. +. + +. + + + + +\n + + +. + +- + +- +- +- +- +- +- +. + +. + +- + +- +- + +- +\n +-\n + +. + +. + + + + + + + + + + + +. + +. + + + + + + + + +- + +- +\n + +- + +. +. +. +. +. +. +. +. +. + + + + + +. +. +. +. + + + +\n + + + +- + +- + + + + + + + + + + +\n + +- + +- +- +- +- + +- + +- +. + +. + +. + + +- + +- +- + +- +\n +-\n +. +. +. + +. + +. + +. + +. +\n + + + +. + +. + + + + +- + +- + +- +\n + + + +- + +- +. + +. +- + +- + +. + +. + + + +- +- +- +. +\n +.\n + +- +- +- +- + +- + +- +- + +- + +- + +- + +- + + +- + +- +\n + +- + +- +- +- +- +- +- +- +- +- + +- + +- +. + +. +. + +. +\n +\n + + +- + +- + +- + +- +- +- +- +- + +- +- + +- + +- +\n + + + + +- + +- +- +- +- + +- +- +- +- +- +- +- +- +- +- +- +. +\n +.\n +- + +- + +- + +. + +. + +- + +- +- +- +- +- +. + +. +. + +. +\n +\n + + +. + +. +. +. +. +. +. + +- +- +- +- + +- + +- +\n +-\n +- +- +- + +. + +- + +- + +- + +- +- +- +- +- + +- +- +- +- +- +- +- +- + +- + +\n +- + +- +- +- +- +- +- + +- + +. + +- +- +- +- +- +- + + + +\n + + + + +- +- +- +- + +- + +- +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n + +- +- +- +- +- + +- +- +- +- +- + +- +- +- +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- +- +- + +- + +- +- +- +- +- + +- +\n +- +- +- +- + +- +- +- +- +- +- +- +. +. +. +. +. + + +- +- +- +- + +- +\n +-\n +. + +- +- +- +- +- +- +- +- +- +- +- +- +- + +- +\n +-\n + +- + + +- + +- + +- +- +- +- +- +- +- +- +- +- +- + +\n +. +. +. +- + +- +- +\n +-\n + +- +- +- +- +- +- + + + +- +- +- +. +- +- +- +- +- +-\n +-\n +- +. +- +- +- +- +. +. +. +. +. +. +. +. + +. + +. +. + +. + + +\n + + +. + +- +- +- +- + +. + +. + +. + +. + + +- + +- +\n + + + + + +. +. +. +. + +. + + + +. + +. + + +. + +. + + + + + +. + +. + + + +\n + +- + +- + + +- + +- +- + +- +- + +- +. + +. +- + +- + +- +\n +-\n +. + +. + + + + + +\n + + + + + +. +. +. +- +- +- +- +\n + + + +- +- +- +- +- +- +- +- +- + +- + + +- + +- +\n +. +. +. +. + + + + + + + + + + + +- + +- + +- +\n +-\n + +- + +- + +. +- +. +- +- +- +- +- +. + +. +- +- +-\n +-\n +. +. +. +. +. + +- +- +- +- +- + +- +- + +- +. + +. +- +\n +-\n +. +. +. +. + + +. +. +. +. +- + +- + +- + +- +\n +-\n + +- + +- +- +- +- +- + + + +. +. +. +. + + + + + +- + +- + +- +\n +-\n + +- + +- + +. + +. + +- + +- +- + +- +. + +. +. + +. + +. +\n +.\n +- +- +- +- + +- + +- + + +\n + + +- +- +- +- +. + +. + +- + +- + +\n + +- + +- + + + +- + +- +- + +- +\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n + + + + + +- +- +- +- + +- +- +- +- +- + +- +- +-\n +-\n +- +- +- + + + + + + + + + + + +- +- +- +- +- +\n +-\n + + + + + + + + +- +- +- +- +- +- +- +- +- +- +-\n +-\n + + + + + + + + + + + + + +- + +- + +- +- +-\n +-\n + + + + + + + + + + + + + + + + +- + +. + +- + +- + +- +\n + + + + + + + + + + + + + +- + +- + +. + +. +- +\n +-\n + + + + + + + + + + +- + +- + +- +- +- +- +\n +-\n + + + + + + + +- + +- + +- +- +- +-\n +-\n + + + + + + +- +- +- +- + +- +\n +-\n + + + + + + + +- +- +- +- +- +- +- +- +- +- +-\n +-\n + + + + + + + + +\n + + + +. + +- +\n +-\n + + + + +- + +- +\n +-\n + + + + + + + + + +- + +- +- +- +- +\n +-\n + + + + + + + + +- +- +- +- +- +- +-\n +-\n + + + +- +- +- +- + + +- + +- +- + +- +\n +-\n + + + +- + +- + + +- +- +- +- +- +- +-\n +-\n + +- +- + +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n + +- +- +- +- + +- +- +- +- +- +- +- +- +- +- +- +- +- +- + +- +- +- +- +- +- +- +- +- +-\n +-\n +. +. +. + + + + + + +- + +- +- + +- +- +- +- +- + +- + +- +\n +-\n +7378 - +- +- +- +- +-\n +-\n + +- +- +- +- + +- +- +- +- +- +- +- +- +-\n +-\n +. +. +. + + + + +- + +- + +- +- + +- +- +- +- +- +\n +-\n + + + + +- +- +- +- +- +- +- +- +. +- +. +- +- +- +- +- +-\n +-\n +- + +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n + +- + + +- + +- + +- + +\n +. +. +. + + +- +- +- +- + +- + + +- + +- + + + + + + + + +\n +- + +- +- + +- +- + +- +- +- +- +- +- +- +- + + + + +\n + +- + +. +- +. +- +- +- +- + +- + + + + + + + + + + + + + + + + + +\n + +- + + +. +- +. +- +- +- +- + +- + + + + + + + + + + + + + + + + + + +\n + +- +- + +- + +- +- +- +- + +- + + + + + + + + + +\n + +- + + +- +- +- +- + +- + + + + + +\n + + + +- +- +- +- + + + + + + + + +\n + +- +\n +. +. +. +\n +. +. +. + + +\n + +- +- + +- + +\n + +- +- +- +- +\n + + + + +- + +- + + +- + +- +\n + +- +- +- +- + + + + + + + + + + +\n +- + +- + + + +- +- +- +- +- +- +\n +-\n + + + + +- + +- + +- + +- + + + +- + +- +- +- +- +- + +- +- +-\n +-\n + + +- +- +- +- +- +- +- + +- + +- +- + +- +- +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- + +- +\n +-\n + +- + + + +- +- +- +- + +- + + + +- + +- + +- + + +- +- +-\n +-\n + +- +. + +. +- +- +- +- + +- + + +- +- +-\n +-\n + +- +. + +. +- +- +- +- + +- + + +- +- +-\n +-\n + +- + + +- +- +- +- + +- +. + +. +- +- +-\n +-\n + +- + + + +- +- +- +- +- +- +- +-\n +-\n + +- +- +- +- +- +- + +- + +- +- + +- +- +- +- + +- + +\n +. +. +. +- +- +- +- +. +. +. +. +- +- +- +- + + +. +\n +.\n + +- + + +- + +- + + +- + +- + +- + +- + +- +\n +- + +- +- + +- +- + +- +- +- +- +- +- +- +- +- +- +- +\n +-\n + + +- +- +- +- +- +- +- + +\n +\n +- + +- +- + +- +- +- +- +- +- +- + + + +\n +- +- +- +. +- +. +- +- +- +- +- +- +- +- + +- +- + +- +- + +- +- +-\n +-\n + +- +- +- +- + +- + +- +- +- +- + +- + +- + +- +- +- +-\n +-\n + +- + + +- +- +- +- + +- + +- + + + + + + +\n +. +. +. + + + + +- + +- + +- +- + +- +- +- +- +- +\n +-\n + + + + + + + + + +- +- +-\n +-\n +- +- +- +- +- +- + +- + +- +. + +. +- + +- + + +- + +- + +\n + +- + +- + +- + +- + +- + +- +- +- +- + +- + +- +- +- +- +-\n +-\n +- + +- + +- +- +- +- +. +- +. +- + + + + + + + + + +- +- +-\n +-\n + +- + +- +- +- +- +- +- +- + + + +\n +. +. +. +- +- +- +- + + + + +\n + +. +- + +- +- +- +- +- +- +- +- + +- + + +\n + + + + + + + + + +\n +- +- +- +- + +- +- +- +- + + +\n + + + + +. + +. +. + +. +\n +- + +- + +- + +- +- +- +- +- + +- +- +-\n +-\n + +- + +- +- + +- + +- + + +- + +- + +\n +. +. +. +. + +- + +- + +- + + +- + +- + +. +- +. +- + +- +\n +-\n + +- +- +- +- +- +- +- +- +- + +\n +. +. +. +. + +- + +- + +- + + +- + +- + +. +- +. +- +- +- +- +- +\n +-\n +- +- +- +- +- + +- + +- +- + +- + +- + +- +- + +- +\n +-\n +- +- +- +- +- + +- +- +- +- +- + +- + +- +- +- +- +- +- +- +- +. +- +. +- +\n +. +. +. + +. + +. + +. + +. + +- + +- +- + +- +- +- +- +\n +-\n +- +- +- +- + +- + +- + +- + +- + +- +. + +- + +- +- +-\n +-\n + +. +. +. +- +- +- +- + +- + +- +- +- +- + +- +\n +-\n +- +- +- +- + +. + +. +- + +- +- +- +- + +. + +. +- +\n +-\n +- +- +- +. + +. +- + +- +- +- +- + +- +- +- +- + +- +- +- +- + +- +- +-\n +-\n + +- +- +- +- + +- +- +- +- + +- + +\n +. +. +. + + +. + +. +. + +. + +- + +- +- + +- + +- +\n +-\n +- + +- +- +- +- +- +- +- +- +- + +- +- +- +- +\n +-\n +- + +- +- +- +- +- + +- +- +- +- +- +- + +- +- +- +- +- + + + +\n +8554 + + + + + + + +- + +- + +- + +- + +- + +- +- +- +- +- + +- +\n +. +. +. +. +. +. +. +- +- +- +- +- +- +-\n +-\n + + + + + + + + + +- + +- +- + +- +- +-\n +-\n + + + +- + +- +- +- +- +- +- +- +-\n +-\n + +- + +- + +- +\n +-\n + +- +- +- +- +-\n +-\n + + + +- + +- + +- +- +-\n +-\n + + + + + + +\n +. +. +. + + + + + + +- +\n +-\n +- +- +- +- +- +- +- +- +-\n +-\n + + + + + +- + +- +- + +- +\n +. +. +. +- + +- +\n +-\n + + + + + + + +- +- +- +- +- +- +- +- +- +- +- +- + +- +\n + + + + + + + +- +- +- +. + +- + +- + +- + +- +- +-\n +-\n + +- +- +- +- + + + + +- +- +- +- + +- + +- + + + +\n +. +. +. +. +. +. +. +- + +- +- + +- + +- + +- +- +- +- +- +\n +- + +- + +- + +- + +- +- + +- +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n + +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- + +- +- +- +- +- +\n + +- + +- +. + +- +- +- +- +- + +- + +- +- +- +-\n +-\n + +. + +- + +- + +- + +- +- +- +- + +- +\n +-\n +- + +- +- +- +- +- +- +- +- +- + +- + +- + +- + +- +- +- +- +-\n +-\n +- +- +- +- +- +- + + +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +\n +. +. +. + + + +- + +- + +- + +- + +- +- +- +- +\n +-\n +- + +- + +- +- +- +- + +- +- +- +- +- + +- +- +-\n +-\n + +- +- +- +- +- + +- +- +- +- +- +- +- +- +- +- +-\n +-\n + +- +- +- +- + +- + +- +- + +- +- +- +- +- +- +- +- +- +\n +-\n +- +- +- +- + +- +- +- +- +- +-\n +-\n + +- +- +- +- + +- +- +- +- + +- +- +- +- + +- +\n +-\n + +- +- +- +- +- +- +- +- +- +- +- +- + +- + +- +- +- +- +-\n +-\n + +- +- +- +- + +- + +- + +- +- +- +- + +- + +- + +- +\n +-\n + +. + +. + + + +\n +. +. +. +- + +- + + + +. +. +. +. +- +- +-\n +-\n +- + +- + +- + +- + +- +- +- +- + +- + +- + +- +\n +-\n +- +- +- +- + +- + +- + + + +- + +- +- +- +- + +- +- +-\n +-\n + +- + +- +- +- +- + +- + +- +- +- +- +- +- +- +\n +-\n + + + + +. +. +. +. + + + + +\n + + + + +\n + + + + + +\n + + +- +- +- +- + + + + + + + +- +- +- +- +- +-\n +-\n + + +- + +- + + + + + + + +- +- +- +- + +\n +. +. +. + + +- +\n +-\n +. +. +. + +- + +- + +- +- +- +- +- + +- +\n +-\n + +. +- +. +- + +- + + + + + + + +\n +\n + + + +. +. +. +. +. + +. + + +. + +. +. +- +. +- +- +-\n +-\n +. +. +- + +- + +- + +- + +- + + +- + +- +. + +. +- +\n +-\n + + + + + +- +- +- +- +- +- +- + +\n + + + +- +- +- +- + +. + +. + + +\n + + + +- + +- + + + +- + +- +\n + +. +- +. +- +- +- +- +- + +- +- +- +- +- +- + + + +\n + + + + + + + +. + +- +- +- +- +\n + +- + +- + + +. + +. +. +. +. +. +. +. +\n +. + +. + +- +- +- +- + +- + +- +- +\n +-\n + +. +. +- +- +- +- + + + +. + +. + + + + +- +- +- +- + +- + +- +- +- +-\n +-\n +- +- +- +- + +- +- +- +- + +- +- +- +-\n +-\n + +- +- +- +- + +- +- +- +- + +- + +- +- +- +- +- +- +- +-\n +-\n + +- +- + +- + +- + +- + +- +- +- +- +\n +-\n +- +- +- +- +- +- + +- + +- + +- + +- +- +-\n +-\n +- +- +- +- +- + +- + +. +- +.\n +-\n + +- +- +- +- +- +- +- +- + +. +- +. +- +\n +-\n +. + +. + + + + + + + + + + + + + + + + + + + + + +\n + +. + +- + +- + + + + + + + + + + + + + + +\n +. +. +. +. +. + + + + + + + + + + + + + + +\n + +. +- +- +- +- +- +- +- +- +- +- +- + + + + + + + + + + + + +\n +. +. +. +- +- +- +- +- + + + + + + + + + + +\n + + +. + +- + +- + +- +- + +- +\n + + + + + + + + +\n + +- + +- +- + +- + +. + +- + +- +- +- +- +\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n + +. +- +. +- + + +. +. +. +- +- +- +- + + +- + +- +\n + +- + +- + + + + +- + +- + + + +- + +- + +- + +. +. +. +. + +\n + + +- +- +- +- + + + +. +. +. +. + + + +- + +- + +- + +. +. +. +. + +\n +- +- +- + +- +. + +. + +. + +- + +- + +\n + + +- +- +- +- +- +- +. + +. +. + +. +- +- +- +- +\n +-\n + + +. +. +. +. + + + +. +. +. +. +. + +- +- +- +- + + + +\n + + + +- + +- + +- + +. +. +. +. + +\n +- +- +- +- +- +- +- +- +- + +. +. +. +. + +- + +- + + + + + + +\n +. +. +. +. +. + +. + +- +- +- +- + + + + + + + +\n +. + +- +- +- +- + +- + + + + + + +\n +. +. +. + +. + +\n + + + +. + +. + + + + + + + + + + +\n + + + + + +- + +- + +- + +. +. +. +. + +\n +. +. +. +. + + + +. + +. + +. + + + +\n + + + + + + + +. +. +. +. + + + + + + +\n + + + + + +- + +- + +- + +. +. +. +. + +\n + + +. +. +. +. +. + +. + + + + + +- + +- + +\n + + +. +. +. +. +. + +. + + + + +\n +. +. +- + +- +. +- +. +- +\n +. +- +. +- + +- + + +- +- +- +- + +- + +- +\n + + + + + + + + +\n + + + +. + +. + + + + +. + +. + +\n + + +. + +. + + + + + +\n +- +- +- +- +\n + + +\n +- + +- + +\n +. +. +. +. +. +. + +. +- +\n +-\n + + + + + + + + +. +. +. +- + +- + + + +- +\n +-\n + +. + +. + + + + + + + +- + +- + +- + +\n + + + + + + + + + +. + +. + + + + + + +- + +- + +\n + +. + + + +- + +- +. + +. +- +\n +-\n + + +- + +- + +\n +- + +- + +\n + +\n + +\n +- +\n +-\n +\n + +- +\n +-\n +- + +- + +- + +- + +\n +. + +. + + + + + +- + +- + +- + +- + +\n +. +. +. +. + +. + +\n + +. + +- +- +- +. + +. +- +\n +-\n +- + +- + +- + +. +. +. +. + +\n + + +- + +- + +- + +- + +\n + + + +- + +- + +. + +. + +\n + + + + + + + + + + + +- + +- + +- + +. +. +. +. + +\n + + + + + + +- +- +- +- +. + +- + +- + +- + +. +. +. +. + +\n + + + + +- +- +- +- +- +- +- +- + + +- +\n +-\n +. +. +. +. +. + + + + + +- + +- + +- + +. +. +. +. + +\n +. +. +. +. + + + + + +- + +- + +- + +. +. +. +. + +\n + + + + + +- +\n +-\n + + + + +. + +. +. +. +. + + + + + +- + +- + +- + +. +. +. +. + +\n + +- +- +- +- + +- + +- + +- + +- + +- + +\n +. +. +. +. +- + +- + +- + +. + +. +- +\n +-\n +. +. +. +- +- +- +- + + +- +- +- +. + +- + +- + +- + +. +. +. +. + +\n +- +- +- +- +- +. + +. + + +- +- +- +- +. + +- + +- + +- + +. +. +. +. + +\n + + +. + +. + +. +. +. +. + +- + +- + +- + +- + +- + +. +. +. +. + +\n + +. + + +- +\n +-\n + + +. +. +. +. + + + + +- + +- + +- + +. +. +. +. + +\n + + +. +. +. +. +- + +- + +- + +. +. +. +. + +\n + +. + +. + + +\n + + + +. + +. +- + +- + +- + +. +. +. +. + +\n +10642 +- + +- + + +- +- +- +- +- + +- + +- + +. +. +. +. + +\n + + +. + +- + +- +- +- +- + +- + +. + +- + +- +. + +- +\n +-\n + +- +- +- +- + +. + +. + +\n + + + + +. + +. + + +. + +. + +. + +- + +- + + + +. +. +.\n +.\n +. + +. + + + +- +- +- +- +. + +. +. + +- + +- + +- +- +- +. +\n +.\n +- +- +- + + +- +- +- +- +. + +- + +- + +- + +- + +- + +- + +- + +- +\n +-\n +. + +. +- + +- + +. +. +. +- + +- + + + +- + +- + +- + +- +- + +. +- +.\n +-\n + + +. +. +. +. + +. +. +- +. +- +- +- +- +. +- +. +- + +- +. +. +. +. +. +\n + +. + +. +. +- +. +- + + + +- +- +- +- + +- + +. +. +. +- + +. +- +.\n +-\n + +- + +. +- +. +. + +. + +. + +- + +. +. +. +. + +. + +. + + +\n + +. + +. + + + +. +- +. +- +- +-\n +-\n + +- + +- +- + +- +- +- +- +- +- +- +- +- +- +- +- + + +. +. +. +. + +\n + + + +- + +. +- +. +- + +- + +. +. +. +. + +\n + + +. +. +. +. + + +. + +. +. +. +. +- + +. +- +. +- + +- + +. +. +. +. + +\n + + + + + + + +- + +- + +- + + + + + + + + +- + +- + +- + +\n + + + +- +- +- +- + + +- + +- + +- + +\n + + + +- +- +- +- + + +- + +- + +- + +\n +- +- +- +- + + +- + +- + +- + +\n + +- + +. + +. + +. + +. + + +. +\n +.\n + +- +- +- +. +. +. +. +. +- + +- + +\n + +- + +. + +- + +- +- +- +- +- +- +- +- + +- + +- + + + + + +. +. +.\n +.\n + + +- +- +- +- +. +. +. +. +- + +- + + + +. + +. +- +. +- +\n +-\n + + +. +. +. +. + + + + + + + + + + + + + +. + +. + + + +- + +- + + + +- +- +- +-\n +-\n +. +. +. +. +. +. + +. + + +. + +. +\n +.\n + +. + +. + + + +- + +- + +- +\n + + +- + +. +- +. +- +. +- +. +. +- +. +- +. + +. + + +\n + + + + + + + + +. + +- +- +- +. +- +. +- + +\n + + + + +- + +. +. +. +. + +- + +- + +\n + + +. + +. + + + + + + +- + +. +. +. +. + +- + +- + +\n + +. + +. + +. + +- + +. +. +. +. +. +. +. +. +. +. + + +\n + +. + +- + +. + +. + + + +. +- +. +- +- +-\n +-\n +- +- +- +- + +- +- +- +- +- +- +- +- + +- +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- +- +- + +\n +. +. +. + + +- + +- +- +- +-\n +-\n +. +. +. + +- + +- + + + + +- + +- + +- + + +\n + +- + +- +- +- +- +- +- +- +- +- +- + +- +\n +-\n +- + +- +- +- +- +- +- + + +- +- +- +- + +- + +\n +- + +- + + + + + + + + + +- + +- + + + + + +\n + + +- + +- +\n +-\n + + + + + +. +\n +.\n +- + +- + +. +. +. +. + +\n + + + + + + + +- + +- +- +- +- + + +\n + + + + + + +- +- +- +- + +- +- +- +- + +\n + + +- +- +- +- +- +- +- +- +. +. +. +- + +- + + + + + + +\n + + + + + +- +- +- +- +- + +- + +- + +\n + + + + + + +- + +- + +- + +\n + + + + + + + + + + + + +- + +- + +- + +\n + + + + + + + + +- + +- + +\n + + + + + +- + +- + +- + +\n + + + + + + + +- + +- + +- +\n + + + + + + + +- + +- + +- + +\n + + + + + + + +- + +- + +- + +\n + + + + +- +- +- +- +- + +- + +- + +\n + + + + + + + + + +- +- +- +- + + + +- + +- + + + +. +\n +.\n + + + + + + + + + + + + + +- + +. +- +. +- +- + +- +\n + + + + + + + +. + +. + +. + + + +- + +- +\n + + + + + + +. + +. + + + +- +- +- +- + +- + +. +. +. +. + +\n + + + + + + +. +. +. +. +. +. +. +. + +. + + + + + +- + +- + +\n + + + + + + +- +- +- +- + +- + +- + + + +- + +- + +\n + +. +- +. +. +- +. +- + +- +. +. +. +. + + + +- + +. +. +. +. +. +. +. +. +\n + + +. + +. + +. + +. + + + + + +- + +. +. +. +. +\n + +- + +. +- +. +- + +. +- +. +- +- +- +- +- + +- + +- + + + +- + +- +- + +- +\n + +. + +- +- +- +- +- +. +. +. +. +. + +. + + + +- + +. +- +. +- +\n + + +- +- +- +- +- +- +- +. +. +. +. + + + +- + +- + + + + +- +- +- +- + + + + + +- + +- +\n + + + + + +. + +. + + + + + +- + +- +\n + + + +- +- +- +- + + + +- + +- + + + + + +- +- +- +- +- + +. + +. + + + +- + +- +\n + + + + +. + +. + +. + + + + +- + +- + + + + + +. +. +. +. +. + + + +- + +- +\n + + + + + + +. +. +. +. + + + +- + +- +\n +12034 + + + +- +- +- +- + + + +- + +- +\n + + + + +. + +. + + + +- + +- +\n + + + +. + +. + +. + + + +- + +- +\n + + + +. + +. + +. + + + +- + +- +\n + + + + + + + +- + +- + + + + +- + +- +- +- +- +- +- + + + +- + +- +\n + + + + +- +- +- +- + + + +- + +- +\n + + + + + + + +- + +- +\n + +. +- +. +- +- +- +- +- +. + +. +\n +.\n + + +. +- +. +- + +- +- +- +- + +. +. +. +. + +\n + + + + + +. + +. + + + +. + +. + + + + + + + + +. +\n +.\n + + + + + + + +. + +. + + +. + +. + + +. +. +. +. + +. +. +.\n +.\n + + + + + + + +- + +. + +. + +- + +- + +. + +. + +\n + +- + +- + + + + +- + +- + + + +- + +- + +- + +- + +\n + + +. +. +. +- + +- +. + +. + +- + +- + + +- + +- + +- + +\n + + + +. + +. + +. + +. + +. + +. + +. +. +. +. +. + +- + +- + + +- + +- + +- + +\n + + + +. + +. + + + + +. + +. + +. +. + +- + +- + + +- + +- + +- + +\n + +. +- +. +. + +- + +- +- + +- + +. +- +. +- +- +- +- + +. +. +. +.\n +.\n + + + + +. + +. +. + +. + +. +. +. +- + +- +- +- +- +- +- + +- + +- + +\n + + +. +. +. +. +. +- +. +- +. + +. + +. + +. +- +- +- +- +- + +- + +- + +\n + + + + + +. + +. +. + +. + +. + +. + +- + +- + +- + +\n + + + + +. + +. + + + +- + +- + +- + +\n + +. +- +. +- + +- +. +- +. +- +- +- +- +- + +. +- +. +- +\n +-\n + +- + +- + +- +- + +- +- +- +- +- + +- + +- + + +. + +. +- +. +- +\n +-\n +. +. +. +. +- +. +- +- +- +- + + +. +- +. +- + +- + +- + +- +- +- +-\n +-\n +. +. +. +. +. + +. + +. + +. +- + +- + + +. + +. +- +. +- +\n +-\n + +- +- +- +- +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +- + +\n +. +. +. +. + +. +. +. +. +. +.\n +.\n +. +. +. +. +. +. +. + + +. + +. + + +. + +. + + + +\n +\n + +. +. +. +. + +. +. +. +. +- + +- + +. + +. +. +. +. +. +. +. +. +.\n +.\n +- + +- +- +- +- + +. +. +. +- + +- +- + +. +- +. +- +- + +- +- +-\n +-\n +- + +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- + +\n +. +. +. +- +- +- +- +- + +. + +- + +- + +- +- +- +- + +- + +. + +. +- +\n +-\n + +- + +- + +- + +- +- +- +- +- +- +- +- +- +- +- +- +- +- + +- + +. +- +. +- +\n +-\n +- + +- +- + +- +- +- +- +- +- + +- +- + +- +- +- +- +- +- + +- +- + +- +\n +- +- +- +- + +- +- +- +- +- +- +- +- +- + +- +- +- +- +- + +- + +- +\n +. +. +. + +. +. + +. + +. + +. + +. +. +. +. + +. +. +. +. +\n +\n + + + + + + + +- + +- + +- + +- +- +- +- +- +- + +- +- +- +- + + + + + +\n + + + + + +- + +- +- + +- + +- +\n +-\n +. +. +. +- +- +- +- +- + +. + +. + + +- + +- + + +. + +. + + +. + +- +- +- +- +. +- +.\n +-\n +. +. +. +. +. + +. +- + +- +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- + +- + +. +. +.\n +.\n + + +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- + +\n +. +. +. +. +. +.\n +.\n + + +- +- +- +- + +- +- +- +- +- + +- + +- +- +- +- +- + +- +- +-\n +-\n +. +. +. + + +- +- +- +- + +. +. +. +. + +- + +. +. +. +. +. +. +. +. +- +\n +-\n + +- + +- + + +. + +. +. + +- +- +- +- +- + +. + +. +. +\n +. +- +- +-\n +-\n + + + +. + +. +- + +- +. + +. + +. + +. + + +- + +- +- +- +- +- + +- +\n +-\n + +- +- +- +- +- + + + + + +- + +- + +- + +- +\n +-\n + +- + + + + +- +- +- +- + +- +- +- +- + +- + +. +- +- +- +- +\n +-\n +. +. +- + +- +- +- +- + +. +. +. +. +- + +- +- +- +- +\n +-\n + + +. + +. +- +- +- +- +- +- +- +- +- +- +- +- +- + +- +- +- +- + + +. + +. +. +. +. +- + +- +\n +-\n +. +. +. +. +. +. +.\n +.\n + +- + +- +- + +- +. +- +. +- + +- + +- + +- +- +- +. +- +. +- + +. +- +.\n +-\n +- +- +- + +- +- +- +- +- +- +- +- + +- +- +- +- +- +- +- +- + +- +- +- +-\n +-\n +- +- +- + + +- + +. + +. + + + +- + +. + +. + +. + + + + + +\n +. +. +. +. +- + +- + + +- + +. + +. + + + +- + +- +- +- +- +- +-\n +-\n + + + + +. +. +. +. +- + +- + + +- + +. + +. + + + +- +\n +-\n + + + + + + + +- + +- + +. +. +. +. + +. + + + +. +. +. +. +- +\n +-\n + + + + + + + +. + +. + +. + + + +- + +- + + +- +- +- +- +. + +. +\n + + +- + +- + +. +- +. +- +- +- +- +- +- + +. +- +. +- +- + +- +\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- + +. + +. +\n + +- + +- + +- + +. +. +. +. +- + +- +- + +- + +- + + +\n + + + + + +- +- +- +- + +- + +- +- +- +- +- + +- + +. +- +. +- +\n +- +- +- + +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- + +- +- +- +- + +- + +\n +13549 . +. +. + +. + +. +- +- +- +-\n +-\n +. +. +- +- +- +- +- +- + + + + + + +- + +- + +- +- +- +- +- +\n +-\n +- + +- + +- + +- +- +- +- +- + + + +. + +. +. + +. +- + +- +\n +- + +- +. +- +. +- +- +- +- +\n +-\n + +. +- +. +- +- + +- +- +- +- +- +- +- +- + + + + + +- + +- +- +- +- + +- +\n +-\n + +- +- +- +- +- +- +- + +- + + + + + + +. +. +. +. +\n +. +. +. +- +- +- +- +- +- + +- +- +- +- +- +- +- +- +- +\n + +. +- +. +- + +- + +- + +- + +- +\n +-\n + +. +- +. +- +- +- +- +- +- +- +- +- +- +- +. + +. +. + +. + +- +- +-\n +-\n + + + + + +. +. +. +. +. +. +. +. +. +- +\n +-\n +- +- +- + +. +. +. +. + +. + +. + +. +- +- +- +- +- +- +- +\n +-\n + +. +- +. +- +- +- +- +- +- +. + +. + + +. + +. + +. +\n +\n + + + + + + +. + +. +- + +- +- +- +- +- +- +- +- +- +- + +\n + + + + + + +. + +. +. + +. + + +- + +- + + + + + + +- + +. +- +. +- +\n + + +- +- +- +- +- + + +- +- +- +- +- +- +- +- +. +\n +.\n +- +- +. + +. + +. + + + +- +- +- +- + + + +- + +- + + + + + +. +. +.\n +.\n + +- + +- +. + +- + +. +. +. +. +- +- +- +- +- +- +. + +. + + + + + + +\n + + +. +- +- +- +- + + +\n + +. + +. +. + +. + +. + +- +- +- +- +- +- +- + + +\n + +- +- +- +- + + + +. + +. + +- +- +- +-\n +-\n + +. +- +. +- + +- +- +- +- +- +. +. +. +. +- +- +- +-\n +-\n + + +- + +- + +- + + + + +- + +. +- +. +- + +- + +. +. +. +. + +\n + +. +- +. +- + +. + +. + + +. + +. + + + + +\n +\n + + + + +. + +. + +- + +- + +. +. +. +. +\n + + + + + + + + + +. +. +. +- +- +- +- + + + + + + +- + +- + + +\n + +. +- +. +- +- + +- +- + +. +- +.\n +-\n + +. +. +. +. +. +\n +. +- +. +- +- +-\n +-\n + + + +. + +. +- +. +- +\n +-\n + + + +. + +. +\n + + +- +- +- +. +. +. +. + +\n + +. +- +. +- +- + +. +- +.\n +-\n +- +- +- +- +- +- +- +- +- +- +- + +- +- + +- +. +\n +.\n + + +. + +. + + + + + +. +. +.\n +.\n + + + + + + +- +\n +-\n +- +. +- +- + +. +. +. +. + +\n + + + + + +- +- +- +- +\n +-\n + + +. +- +. +- +- +- +- +- +- + +\n +- +- +- + +- +- +- +- +-\n +-\n + +- + +- + + + +\n +\n +. +. +. +. +- +\n +-\n + +\n +\n +\n +\n +\n + + + + + +- + +- +\n + + + + + + + + +. + +. +\n + +. + +. + + + + +\n + +. +. +. +. +. + +. + +. +\n +.\n +. + +. + +- + +- +- +\n +-\n + +. +. +- +- +- +- + + + +. +\n +.\n +\n + + + + +- +- +- +- + +- +- +- +- +- +- +- +-\n +-\n +- +- +- +- + +- +- +- +- + +- +- +- +-\n +-\n + +- +- +- +- + +- +- +- +- + +- + +- +- +- +- +- +- +- +-\n +-\n + +- +- + +- + +- + +- + +- +- +- +- + +- +- +- +- +- +- +- +\n +-\n + +- + +- + +- +- +- +- +- +- +- +- +- + +- + +. +- +.\n +-\n + +- +- +- +- +- +- +- +- + +. +- +. +- +\n +-\n + + + + +- +- +- +- +- +- + +\n +- + +- +. + +. +\n + + + +. + +. +- +- +- +- +\n +\n + + + +. +. +. +. +. +\n + + +- + +- +- +- +- +- + +- + +- + + + +\n + + +- + +- +- +- +- +- +- +- +- +- + +- + +\n + +. + +. + +. + +. + + +- + +. +- +. +- +\n + + +. + +. + + + + +- + +- + +. + +. +\n + + +. +- +- +- +- +- +- +- +- +- + +- +. + +. +. + +. +\n + + +. + +. +. +. +. +\n +. +. +. +. +. +. +. +. +. + + +- + +- + +\n + + + + +- + +- +- + +- +- +- +- +- + +. + +. +\n + +. + +. +- + +- +- + +- +- + +- +\n + + +. + +. + +- + +- + +- +\n + +- +- +- +- +- +- +- +- +- +. +- +. +- + + + + + + + + + + + + +\n + +. + +. + +. + +. + + + + +. + +. + + + + + + + + + +- + +- +- + +- +\n + + + +. + +. + + + +. +. +. +. +. +. +. +. + +. + +- +- +- +- +. +. +. +.\n +.\n + +. +. +. +. + +. +. +. +. +- + +- + +- +- +- +- + +- +- +- +- +\n + + + +- + +- + +. + +. +\n + +- +- +- +- +- +- +- +- +- +. +- +. +- +- +- +. +- +. +- + +- +- +-\n +-\n + +. + +. + +. +- + +- +- +- +- +- +. + +. + + + + +\n + + + + +- + +- + +- +- +- +- +- + +- +- + +- +. + +. + +. +- +\n +-\n +- + +- +- + +- +. + +. +- +- +- +- +. + +. + + + +- + +- +\n +. +. +. +. +. +. +. + +. + + +. + +. +. +. +. + + +. + +. + + +\n + +- +. +. +. +. + +. +. +. +. +. + + +- + +- + +- + +- +- +- +- +\n +- + +- + + + + +. + +. +- + +- +- +- +- + + + + + + + +- + +- +\n +. + +. + +. +. +. +. +. +. + + + + +- +- +- +- + + + +\n + + + + +- + +- + +- +- +- +- +- + +- +- + +- +. + +. +\n +.\n +. + +. + +- +- +- +- +. + +- + +- + + +\n +. + +. + + + + +. +. +. +. +. + + + +\n + + + + +- + +- +- +- +- +- +- +- +- +- +- +. +- +. +. + +. +\n +.\n +. + +. + +- +- +- +- +. + +- + +- + + +\n + + + + +- + +- + +- +- +- +- +- +- +- +- +- +- +- +- + +- +. + +. +\n +.\n +15081 + +\n + + +\n + +\n +15090 + + + +\n + + + + +\n + + + + + +\n +- + +- +- + +- + +\n + +- + +- + + +\n + + +- +- +- +- +. +- +. +- +\n +- +- +- +- +. +- +. +- +\n +. + +. +- +- +- +- + +\n + +- + + + + +\n + + + +- + +. + +. +\n + + + + +\n + +. +. +. +. +. +- +. +- + +. + +. + +. +. +. +.\n +.\n + + +. + +. + +. + +. + + + + + +- +- +- +- + +- +- +-\n +-\n + +. +. +. +. +- + +- +. +. +. +. +. +. +. +- + +- +- +- +-\n +-\n + + +. +- +. +- +- +- +- + +- +\n +-\n + + + + +. + +. +. + +. + +. +. +. +. +. + + + + + + +\n +- +- +. + +. +. + +. + + + +. + +. +. +. +- +- +- +. + +- + +- +\n + + + + +. + +. + + +. + +. +. + +. + + +. + +. +\n +\n + +. +. + +. + + + + + + +. + +. + + + +. + +- + +- +. +. +.\n +.\n +. +. +. +. + +- +- +- +- + +- + +. +- +. +- +- +- +- + +- +\n + + + + + +- + +- +. + +. + + + + + + + +\n +\n + +. + +- + +- + + + + + + + + +. +. +. +. +. +. +.\n +.\n + +- +- +- +- +- + + + +. +- +. +- + +- + +- +\n + + +. + +. +. + +. + + + + +- +- +- +- +. +. +. +. + +\n + + + + + + + + +- + +- + +- +\n + + +. + +. + + + + + + +- +- +- +- +. +. +. +. +\n +\n + +- + +- + + + + + + +- + +- + +- +\n + + +. + +. + + + + + +- + +- + + + + + +\n + +- +- +- +- + + +. +- +. +- + +- + +- +\n + + +. + +. + +. + +. + +. + +. + +. +. +. +. +. + +- + +- +\n + + +- + +. +- +. +- + +- + +- +\n + + + + + + + + +- +- +- +- +- +\n +-\n +. + +. + +. + + + + + +- + +- +\n + + +- +- +- +- + + +. + +. + +- +- +- +- +- + +- +\n +-\n +. +. +. +. +. + +. + +. +. +. +. +- + +- +- + +- + + +. +- +. +- +\n + + +. + +- +- +- +- + +- +- +- +-\n +-\n +. + +- +- +- +- + + + +. + +. +. +. +.\n +.\n + + + + + + +- +- +- +- +- +\n +-\n + + + + + + + + +. +. +. +. + +. +- + +- +\n +. +. +. +. + + + + +. +- +. +- +\n +-\n + +- +- +- +- +. +- +. +. +\n +.\n + + + +. + +. +- +. +- +\n + + + +. +. +. +. + +. +. +. +. + + + + + + +\n + + + +. +. +. +. + +. + +. + + + + + + + + + + + + +\n + +. + +. + +. + + + + + + + + + +\n +- +- +- +- +- + +- + +- + + + + + + + + +\n + +. +. +. +- + +- + + + + + + + + +\n + +. + +. + +- + +- + + + + + + + + + +\n + +. + + + +- + +- + + + + + + + + +\n + +. + +. + + + + + + + + + + + + +\n +. +- +. +- + + + + + + +\n + +. + + + + + + + + + + + + + +\n +15916 +. + + + + + + + + + + + + + + + + +\n +. +- +. +- + + + + + +\n + + +. + +. + + + + + + + + + + + + + + + + + +\n +- +- +- + +- +. +. +. +. + + + + + + + + + + + + +\n + + + +- + +. + +. + + + + + + + + + + + + + + + + + + +\n + + + +. + +. +- +- +- +. + +. + + + +\n + +. +. +. +. + + + + + + +\n + + +. + +- + +- +- +- +- +- + + +. + +. + + + + +\n +- +- +- +. + +. + + +. + +- + +- + + + +\n + +. +. +. +. + +. + +. +. +. +. +. + +. +. + +. + +- + +- +\n + +. +. +. +. + + +. +. +. +. + + + + + +. + +. +\n +.\n + +- + + + + +. + +- + +. + +. + + + +\n + +. + +. + +. + +. + +. +. +. +. +. + + + +. + +- + +- +\n + + +. + +- + +- +- +- +- +- +- +- +- +- +- +- +- + +. +. +. +. +. +. +.\n +.\n +. +. +. +. +. + +. + + +. + +. + +. + +- + +- + + +- +- +- +- +- + +- + +- +\n +. +. +. +. + + +. +. +. +. +- + +- +. + +. +. +\n +.\n + +- + + +- +- +- +. + +- + +- + +- +\n +-\n + +. +- +. +- +- +- +- +- +- +- +- + +- + +- + +- +- +- +- + +- + +- +- +- +- + +- +\n +-\n +16292 . +. +. +. +. +- + +- + + + +- + +- +- + +- + +. + +. +. + +. + +. + + + +- +\n +-\n + +. + +- +- +- +. +. +. +. +- + +- +. + +. + + + + + +- +- +-\n +-\n + +. + +. + +. + +- + +- +\n + +. + +- +- +- +. +. +. +. +. +. + +. + +- + +- +. +. +. +. +\n +.\n + +- + +- + +- + +- + +- +- +- +- +\n + + +. +- +. +- + + + +. + +. +. +. +. + +. + +- + +- + +- + +- + +- +\n +-\n + +- + +- + +- +- +- +. + +. + + +. + +- + +- + +- +\n +-\n + + +. +- +. +- +- +- +- +- +- +- + + + + + +. + +. + + +. +\n +.\n + + + + + + + + + +. +. +. +. +. + +. + +. + +- +- +- +. +- +. +- +\n + +- +- +- +- +. +. +. +. +. +. +. +. +. +. + +- +- +- +. + +. +. + +- + +- +\n + + +. +- +. +- +- +- +- + +- +- +- +-\n +-\n + + + +\n +- +- +- +. +. +. +.\n +.\n + + + + + + + +- +- +- +- + +- + +- +- +-\n +-\n + +- +- +- +- +- +- +- +- + + + +\n + + +- + +- + +. + +. +. +. +. +. +. +. +- + +- +\n + + + + + + + + + +- +- +- +- +. + +. +. + +- +- +- +- +- +-\n +-\n + + + + + + + +. + +. + + + + +. +- +- +- +- +\n + + + + + + + +. + +- +- +- +- + +. + +. + +- +\n +-\n + +. + +- + +- +- +- +- +- + +- +- + +- +- +- +- +. +. +.\n +.\n + + + +- + +. + +. + + + +- + +. +- +. +- + +- +\n +-\n + +. + +- + +- +- +- +- +- + +- +- + +- +- +- +- +. + +. + +\n + +. +. +. +- + +. +- +. +- + +- +\n +-\n + +. +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +. + +. +\n +\n +. +. +. +. +. +. +. +- + +- + + + + + + +- + +. +- +- +- +- + +- +\n +-\n + +. + +- + +- +- +- +- +- + +- +- + +- +- +- +- +. + +. +\n +.\n +. + +. +. +. +. +. +. +. +. +- + +- + + +. +. +. +- + +. +. +. +.\n +.\n + +. + +- + +- +- +- +- +- + +- +- + +- +. +. +. +. +.\n +.\n +. +. +. +. + +- + +- + + + + + + + +- + +- +\n + + + + + +- +- +- +- +- + + + + + + + + + + + + +. +. +.\n +.\n + + + + + + + + + + + + + + + + + + +\n +16939 . + +. +. +. +. +. +. +\n +- +- +- +- +- +- +- +- +- + + +\n + +. +. +. +. + +- + +- + + + + +- + +- + + + +\n + +- +- +- +. +- +. +- + +- + +- +- + +- +. + +. + + + + +\n + +- +. + +. +- + +- + +- +- +- +- +- +- + +. +. +. +. + + +\n +- +- +- + +. + +. + + + +- + +- +. +. +. +- + +- +- +- +- +. + +. + +. +- +.\n +-\n + +- +- +- +- +- + + + +- +- +- +- +- +. + +. +- +- +- +- +\n +-\n + +. + +- + +- +- +- +- +- + +- + +- + +- + +. +. +. +- + +- +- +\n +-\n +- + +- +- + +- +- +- +- +- +- +- +- +- +- + +. + +. + +. +\n +.\n +. +. +. +. + +. + +. + +- + +- + + + +- +- +- +- +- +- +- +- +- +. +. +. +. +\n +.\n +- +- +. + +. +. +. +. +. + + +. + +. + + +. + +. +- +\n +-\n +17182 +. + +- + +- +- +- +- +- + +- + +- + +- + +. +. +. +.\n +.\n +\n +- +- +- +- + + + + + + + + + +- + +- +- + +- +- + +- +\n + +. + +- +- +- +- + + +. + +. +. + +. + +\n +\n + + + + + +- + +. +- +. +- + +- +\n + +. + +- +- +- +- + +- +- +- +- +- +- +- +- +- +- +. +. +.\n +.\n +. +. +. +. +. +. +- + +- + + + + +- +- +- +- +- +\n + +. + +- +- +- +- + +. + +. + +. +. +. +- + +. +. +. +- +- +- +- + +- +- +-\n +-\n +- +- +- +- +. + +- +- +- +. + +. + + + +- + +- + +- +. + +. +\n +.\n + + + + + +- + +- +. +. +. +. + +- +- +- +- + +- +\n +-\n +17378 + +\n +- + +- +. +. +. +. +\n +- + +- +. +- +. +- +- + +- + + + +\n + + + + + + +. +- +- +- +- +- +- +- +- + +- +. + +. +. +. +.\n +.\n +. +. +. +. + +. +. + +. + + +- + +- +- + +- +\n + + + +. +- +. +. +- +- +- +- +- +- +- +- + +- +- +- +- +\n +-\n + + + +. + +. +. + +- + +- +- + +- + + + + + + +. +\n +.\n + + + + + + +. + +. + + +- +- +- +- + +. +\n +.\n + + + + + + +. + +. + + + + + + +. +\n +.\n + + +. + +. + + + + + + + + + + + +\n + +. +. +. +. +. + + + + +. + +. + +- +- +-\n +-\n + +- + +- + + + + +. + +. + +. + +- + +- + +\n + +. + +. + + +- + +- + + + +. +. +.\n +.\n + +- +- +- +- + + +- + +. +- +- +- +- + +- +\n +-\n + + + +. + +. + + + +- + +. +. +.\n +.\n + +. + +- + +- + + +- + +- +- +- +- +\n +-\n + +. +. +. +. +. + + +. + +. +- +- +- +- +- + +- + + +\n + +. +. +. +. +. + +. + + + +. +. +. +. + + +. +\n +.\n + +. +. +. +. + +- +- +- +- + +. + +. + +. + +. + + + + +\n + + + + + + + + + + + +- + +- + + +- +- +- +- +-\n +-\n +. + +- +- +- +- + +- +- +- +- + + + +- +- +- +- + +- + + +\n + +- + + +. + +- +- +- +- + +- +- +- +- +- +- +- +- +- +- +\n + +. + +. +- +- +- +- +- +- +- +- +- +- +. + +- + +- + +- +- +-\n +-\n + +. + +. +. +- +. +- +- +- +- +- +\n +-\n + + + + + + +. + +. + + + +- +- +- +- +\n + + + + + + + +- +- +- +- +\n + +. +. +. +. +. + +- +- +- +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n +- +. +- +- +- +. + +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n +- +- +- + +- + +- +- +- +- +- +- + + + + +- +\n +-\n +- +- +- +- +- + +- +. + +- + +- + + +. + +. +\n +- + +- + + + +. +. +. +. +. + +. + +. +. +. +. + + +- +\n +-\n + + + + + +- +- +- +. +. +. +. + +. +. +. +- +- +- +-\n +-\n +17974 - + +- +. + +. + + + + +. + +- +- +- +- +\n + +. +. +. +. +. + +. +- + +- +. + +. +- + +- +- +- +- +-\n +-\n +. +. +. +. +. + +. +. +. +- + +- + +- +- +- +- + +. + +. +- +- +-\n +-\n +- +- +- + + + + + + +- + +- + + + +- + +- + +- +\n + + +- + +- +. + +. + + + + +- +\n +-\n + +. + + + +- + +- + +- + +- +\n +-\n + +. +. +. +. +. +- +- +- +- + + + +. + +- +- +- +- + +- +- +-\n +-\n + + + + + + +- + +- + +- + +- + + +- +- +- +- +- +- +\n +-\n + + +. + +. +. + +. +. +. +. + + + + + +- + +- +- +- +- +\n +-\n + + +- + +- +. + +. + + + + + + + + + + + +- +\n +-\n +- +- +- + + + + + + + + + + + + + + + + + +\n + + +- + +- + +. +. +. +. +\n + +. + + + + +\n + + +- +- +- +- +\n + +. +. +. +. +. + +. +\n +. +. +. +. +\n + +- +- +- +- +\n + +. +\n +18252 - + +- + +\n +. +. +- +- +- +- +\n +. + +. +. +. +. +- + +- + +\n + +. + +- +- +- +- +- +- +- +\n + +- + + + +\n + +. +- +. +- + + + + + + +\n +- +- +- +- +- +- +- +- + +- +\n + +. +- +- +- +- + +- +\n +- +- +- + +- + +\n + + +. + +. +\n + +. + +- +- +- +- +- +- +- +- +- +- +- + + + + + + + + + + + + +\n +- + +- + + + + +. + +- +- +- +- + + + + + + + + + +\n + + + + + + +- + +. +. +. +. +. +. +. +. + + + + + + + +\n + + + + + + + + + +. + +- +- +- +- +\n + + + + + + +. +- +- +- +- +- +- +. +. +. +. +- + +- +- +- +-\n +-\n +- +- +- +- +. +. +. +. + + + + + +- + +- +\n +-\n + + + + + + + + +. + +. +. +. +. +. +. +- + +- + +- +\n + + + + + + + + +. +- +. +. +. +. +- +- +- +- +- + +- +\n + +. +. +. +- +. +- + +- +. + +. +- +- +- +- +- +\n + +. +. +. +- +. +- + +. +- +. +- +. +- +. +- + +- +- +- +- + + + + + +\n +- +- +- + + + +. +. +. +. +. +. +. + +. +\n +.\n + +. +. +. +. +. +. +. +. + + +- +- +- +- +- +- + +\n +. + +. + +- + +- +- +\n +-\n + +. +. +- +- +- +- + + + +. + +. + + + + + +- +- +- +- + +- +- +- +- +- +- +- +-\n +-\n +- +- +- +- + +- +- +- +- + +- +- +- +-\n +-\n + +- +- +- +- + +- +- +- +- + +- + +- +- +- +- +- +- +- +-\n +-\n + +- +- + +- + +- + +- + +- +- +- +- +\n +-\n +- +- +- +- +- +- + +- + +- + +- + +- +- +- +- +- +- +- +- +- + +- + +. +- +.\n +-\n + +- +- +- +- +- +- +- +- + +. +- +. +- +\n +-\n + + +. +. +- +. +- + +- +\n +. +. +. +. +\n +\n +- + +- +- + +- +\n + +. +. +. +- +- +- +- +\n + +- + +. + +. + +\n + + + +. +- +. +- + +- +\n + + + + +. + +. +. +. +. +\n +. +. +. +. +. + +. +. + +. +\n + +- +- +- +- +- + + +\n +- +- +- +- +- +- +- + + +\n + + +- + +. +. +. +. +- +. +- +- +- +- +- +\n + + +- + +. +. +. +. + +\n + + + +. +. +. +. +\n +. +- +. +- +. +- +. +- +- +- +- +- +\n + +- +- +- +- +- +- + +- + +- +\n + +- +- +- +- +- + + +\n + + +- +- +- +. +- +. +- +- +- +- +- + +. +. +. +. +. +\n +.\n + +- + +. +. +. +. + +. + +- + +- +. + +- +\n +-\n + + + + + +. +. +. +. +\n + +. +. +. +- +- +- +. +- +. +- +- +- +- +- + + +. +. +. +. +. +. +. +. +\n + + + +- + +- + + + + + +- + +- + +- + +- +\n +- + +- + +- +- + +. +. +. +. +. +. +. +. +- +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n +- +- +- +- +. + +. + +- +- +- +- + +- + +- + +- + +- + +. +- +. +- +\n +-\n + + +. + +. +. + +. +. + +. +- + +- +- + +- +- + +- +- + +. +. +. +. +\n + + + +. + +. + + +- + +- +. +- +. +- + +- + +- + + +. + +. ++ + ++ + + +. +- +. +- +\n +-\n + + + + +. +. +. +. +. + +. +. + +- + +- +\n + + + +. + +. + +. +- +. +- +. +- +. +- +\n + + +- + +. +. +. +. +- +. +- +- +- +- +- +- +- +- +- +- + +. +\n +.\n +- +- +- + + +- + +. +. +. +. +. +. +. +. +. + +. +- +. +- +- +-\n +-\n + + +- + +. +. +. +. +- +. +- +- +- +- +- + +. + +- +- +- +- +. +. +. +. +. + + +. +- +. +- +\n +. + +. + + + + + +. +. +. +. + + + + +. +\n +.\n +. +. +. +- + +- +. + +. + + +. +- +. +- +\n +- + +- +. + +. +. +. +. +. +. +. +. +- + +. +. +. +. +. +.\n +.\n +. + +. + + +. +- +. +- +- +-\n +-\n +- +- +- + + + +. + +- +- +- +. +. +. +. +. +. +. +. +. + + + + +. +- +. +- +- +-\n +-\n +. +. +. +- +- +- +- +. + +- +- +- +- +- + +- +- +-\n +-\n +. +. +. +. +. +. +. + + + + +. +- +. +- +\n + +. +- +. +- +- +- +- +- + + +- +- +- +- +- +. + +. + + +- +\n +-\n + +. + +- + +- + +- + +- + +. +- +. +- + +- +\n + +. +- +. +- +- +- +- +- + + + + + +. +. +. +. +- +. +- + +. +- +. +- + +- +\n +- +- +- +- +- +- +- +- +- + +- +- +- +- +- +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +- +- + +- +- +- +. +\n +.\n +- + +- + +- + +- + +- + +- + +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- +- +- +. +\n +.\n +. +. +. +. + +. +- +. +- +- +- +-\n +-\n +. +. +. + + +. +. +. +. +. +. +. +. + + + + + + +. +\n +.\n +- + +- + +- + +- + +- + +- + +. +- +. +- +\n +-\n +- +- +- +- + +- +- + +. +. +. +. +. +. +- + +- +- +- +- +- +- +. +\n +.\n +. +. +. +. + +. +- +. +- +- +- +-\n +-\n +. +. +. + + +. +. +. +. +. +. +. +- +- +- +- + +. + +. + +- + +- +- +\n +-\n + +- + +- + + + + +. +- +. +- + +- +- +- +- +- +- +- +- +- +\n +-\n + +- +- + +- +- +- +- +- +\n +-\n + +- + +- +- +- +- +- +\n +-\n +- + +- +- +- +- +- +- +- +\n +-\n +. +. +. +. + +. +- +. +- +- +- +-\n +-\n +. +. +. +. +. +. +. + + + + +- +- +- +. + +. + + + + +. +\n +.\n +- + +- + +- + +- + + +- + +- + +. +- +. +- +\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +\n +-\n +. +. +. +. + +. +- +. +- +- +- +- +- + +- + + +- + +- + +- + + +- + +- +\n + + + + + + +\n +\n +\n +- + +- + +- +- +- +- +\n +-\n + +- +- +- +- +- +- +- +- +-\n +-\n +- +- +- +- + +- +- +- +-\n +-\n +- +- +- + +- +- +- +- +- +- +- +- +-\n +-\n + +- +- +- +- + +- +\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n +- + +- + +- + +- + +- +- +- +-\n +-\n + +- +- +- +- + +- +- +- +- +\n +-\n +. +. +. +. + +. +- +. +- +- +- +- +- + +- + + +- + +- + +- + + +- + +- +\n +- +- +- +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +\n +-\n +. +. +. +. + +. +- +. +- +- +- +- +- + +- + + +- + +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- +\n +-\n +. +. +. + +. +- +. +- +- +- +- +- + +- + + +- + +- +- +-\n +-\n + +- +- +- +-\n +-\n + + +\n + +. +- +. +. +- +. +- +- +- +- +- +- +. + +. +- +- +- +- + + +- + +- + +- + +- + +. +- +. +- +\n +-\n + +- + +- + +- + +. +- +. +- +- +- +- +- +- +- +- + + + + +. +. +.\n +.\n + + + + + + + + + +. + +. + + + + +. +- +. +- + +. +. +. +- + +- +\n +-\n +. +. +. +. + + +. +- +. +- + +- +- +- +- +. + +- +- +- +-\n +-\n +. +. +. +. +. + +. +. +. +. + +. +- +. +- +\n +-\n + + + + +. +- +. +- +- +- +- +- +- +- +- + + + +- + ++ + ++ +- +- +-\n +-\n + +. +. +. +. +. +- +. +- + +- + + +- + +- + +- + +- + +. +- +. +- +\n +-\n +- +- +- + +- +- +- +- +- + +- + + + + +. +. +. +. +. +\n + + +- +- +- +- +- +- + + +. +- +. +- +- +- +- +. +- +. +- + +. +\n +.\n +\n + +. +- +. +- + +- +- +- +- +- +- +- + +. + +. +- +- +- +- + +. +- +. +- + +- +\n +-\n + +. +- +. +- + +. +. +. +. + +. +. +- +. ++ + ++ + ++ + +. +. +.\n +.\n + ++ + +- +- +- +- +- +- +- + +. + +. + +. +- +. +- + + +- +- +-\n +-\n + + + + +. +- +. +- + + + +. + +. +. + +. +. +\n +.\n + + + + +- + +- + +- + +- +- +\n +-\n + +. +- +. +- + +- +. +- +. +- +- +- +. +- +. +. +- +. +- + + + + + +\n +- +- +- +- + +- + + +. + +. + + + + + +. +. +.\n +.\n +. +. +- + +- + + + +. + +. + +. +- +. +- +\n +-\n + + + + +. +. +. +- + +- +- +- +- +. +. +. +. +. +- +. +- +- +- +-\n +-\n + +- +- +- +- +. +. +. +. +. +. + + +. + +. + +. +- +. +- +\n +-\n + + +. +- +. +. + +- + +- + + + + + + +- + +. + +. + +. +- +. +. +\n +.\n + + +. +- +. +. + +. + + + +\n + + +. +- +. +. + +. + +. +. +. +. + + + +. +\n +.\n + +. +- +. +. + +- +- +- +- +- + +- + + + + +. + +. + + + + +. +\n +.\n + +- + +- + +. +- +. +- + +- + + + + + +. +. +. +. + +. +- +. +. +\n +.\n +- +- +- +- +- + +. + +. +. + +. +. +- +. +. +\n +.\n + + +. + +. + +. +. +- +. +- +\n + + +- +- +- +- +. +. +. +. + +. +- +. +- + +- + +- + +. +. +. +- +- +-\n +-\n +. +. +. +. + +. +- +. +- + +- + + + +. + +- + +- + + +. +- +. +- + +- +- +- +-\n +-\n +- +- +- + + + + +- +- +- +- + +- + +. +- +. +. + +- +- +- +- +- + +- +\n + + + +- + +- + +. + +. + +. +- +. +- +- +- +. + +. + +. + + + + + +\n + +. +- +. +- + +. +. +. +- +- +- +- + +. +- +. +- +- +-\n +-\n + +. +- +. +. + +- +- +- +- +- + +. +. +. +. + +. +- +. +. + +. + +. +\n +. +. +. +. +. +- +. +- + +- + + + + + + + + +\n +. + +. + +. + +- + +- + +. +- +. +- + +. + +. + +. +\n +.\n +. +. +- + +. + +. + +. +- +. +- + +- + + +. + +. + +. + +- + +- + +. +- +. +- +\n +-\n + +. +. +. +. + +. + + +. +- +. +- + +- + + + + + + +. +. +. +- + +- +\n + +. +- +. +- + + +. + +. + + + + +. +- +. +- +. +. +. +. + + + + +. +- +. +- +\n +-\n + + + +. + +- +- +- +- + +. +- +. +- + +. +. +. +. +. +. + + +. +- +. +- +\n +-\n + +- + +- + +. + +. + + + + + + +. +\n +.\n +\n + + + + + +. +. +.\n +.\n +. +- +. +- +\n +-\n + +. +. +.\n +.\n +- +\n +-\n + + +\n + +\n + +\n + +\n +\n +-\n + +\n +. + +. + + + + + +. + +. +\n + +. +. +. +. + + + + + + + +- +- +- +- +- +\n +. + +. + + +. +- +. +- +- +- +- +- +\n + + + + +. +. +. +- +- +- +- + + +. +- +. +- +- +- +- +- +\n + +. + +. + +. +- +. +- + +- + +. +. +. ++ + +. + +. + + +. + +. +\n + + + + + +. +. +. +. + + +. +- +. +. + +. + + +\n + +- + +. + +. + +. +- +. +. + +. +\n + + + +- + +- +. + +. + + +. + +- + +- +. +- +. +- +- +- +- +\n +. +. +. +. + +. +- +. +- + +- + +. +. +. +. + +. + +. +- +. +. + +. +\n + + + + +. + +. + +. +- +. +- + + + + + +. + +. + + + +\n + + + +. +. +. +. + +- + +- + +. +- +. +- +\n +-\n + + + +. + +. + + +- + +- + +. +- +. +- +\n +-\n + + + +- +- +- +- + + +- + +- + +. +- +. +- +\n +-\n + + +- + +- + + + + + + +- + +- + + + + +- +\n +-\n + +. +. + +. + + +- +- +- +- ++ + +. +\n +.\n + +. + + + + +. + +- + +. +- +. +- +\n +-\n +. +. +. +. +- +- +- +- +\n + + +- + +- + + + + + +- + +- +- + +- +\n +-\n + +. +. + +. + + +- +- +- ++ + ++ ++ + ++ +\n +\n + + +- + +- + +. +- +. +- + +. + +- + +- +. +- +. +- +\n +-\n + + + + +\n +. +. +. +. +- +- +- +- +\n + + + + + + +- + +- + +- +\n +-\n + +. +. + +. + + ++ + ++ + + + + +- + +- + +. +- +. +- +\n +-\n + +- + +- +. +- +. +- + +- +- +- +- + +. + +. + +\n +. +. +. +. +- +- +- +- +\n + + + +- + +- + +- + +- + +. + +- +\n +-\n + + + +- + +- + +. +- +. +- +. + +- + +- +. +- +. +- +\n +-\n +. +. +. +. +- +- +- +- +\n +-\n + + +. + +. + + +. +\n +.\n + + +- + +- +- +\n +-\n ++ + +. + +. +. +- +. +- +\n +-\n +. +. +. +. +- +- +- +- +\n +-\n + +. +- +. +- + +- +- +- +- +- +- +- + + + +\n +. +. +. +. +- + +- +\n + +. + +. + + + +- + +- + +. +- +. +- + +- + +\n +. +- +. +- + +- +- +- +- + + + + + + +. +. +. +. +- +- +- +- +\n + + +- + +- + +- +- +- +- +- +- +- + + + + + + + +- + +- + +\n + +- + +- + +- +- + +- +- + +- +- +- +- ++ + +. + ++ + ++ + + + +. +- +. +- +\n +-\n + +. +- +. +- +- +- +- +- + + + +. + +. + + + +. +. +. +. +- +- +- +- +\n +-\n + + +- + +- + +- +- +- +- +- +- +. + +- + +. + +- + +- +. + +- + +- +- +\n +-\n + + + +- + +- + +- + +- +- + +. + +. + +. + +. + +. +. + +. + +. +\n +\n + ++ +. + ++ + ++ + + +. +. +. +. + + +- + +- ++ + ++ + + +. +- +.\n +-\n +- +- +- +- + + + + +. +. +. +. +- +- +- +- +\n + +- + +. +- +. +- +- + +- +. + +- + +- + +- +- + +- +\n +-\n +\n + +. +. +. +. + +- + ++ + ++ + + + + + +. +. +- +. +- + +- +\n +-\n + + + + + + ++ + +. + +. + + +. +- +. +- + ++ + +. + +. +. +. +- +. +- +\n + +- + + +. +. +. +- + +- +- +- +- +- +\n +-\n + + + + + + + + + +. +- +. +- + +- + + + + +. +. +- +. +- +\n +- +- +- +. +. +. +. + +. +- + +- + +. +- +. +- +- +\n +-\n + + + +. + +. +. +. +. +. +. + + +. +- +. +- + +- +\n + +. +. +- +. +. +- +. +- + +\n + + + + ++ + +. + +. +. +. +. +. +. + + +. +- +. +- + +- +\n +. +. +- +. +. + +. +. + +. + + +. +. +. +- + +- +- +- +- +- +\n +-\n + + +- + +- +. +. +. +. +- +- +- +- + +- + +- +\n +-\n + + +- + +- + +. + +. + +. + +- + +- +\n +-\n + + + +. + +. + + + +. + +. + +. + + +\n + +- + +- + +. + +. + +. + + + + +- + +- +\n +-\n + + + + + +. + +. + +. + +. +. + +- + +- + +- + +- + +- + +- +\n +-\n + +- +- +- +- + + + + +- + +- +\n +-\n + +. +. +. +. +. + + + + + +. + +. + +. + +- + +- +\n +-\n + +. +. +. +. +. +. +- +- +- +- + + +- + +- +\n +-\n +. +. +. +. +- +. +- + +. + +. + + +- + +- +- +-\n +-\n + + +- + +- + + + + + + +\n + +. +. + +. + +. +\n + +- +. + +. ++ + ++ + +\n + ++ +. + +. + + + +\n +- +- +- +- + +- +. + +. + +\n +- +- +- +- + +- + + +- + +- + + + + +\n +- +- +- +- + + + + + +- + +- +\n + ++ +- + +- + +- + +- + + + + +- +\n +-\n + +- + + +. + +. + + + +- + +- +\n +-\n + +. +- +. +- + + + + +. +. +. +. + + + + + + + + + + +- + +- +\n +- + +- +- +- +. +- +. +- +. +. +. +. +- + +- +. +- +. +- +- +-\n +-\n +. +. +. +. +. + + +. + +. + +. +- +. +- +\n +-\n +- +- +- +- +. + +. + + + + +- + +. +\n +.\n + +- +- + +- + +- +- +- +- +\n +-\n + + + +. +. +. +. +. + +. + +. +. +\n +.\n + +- + + + +. +- +. +- +\n + +. + + + +- + +- + +- +- +- +-\n +-\n +. +. +. +. +. +. +. + + +- +\n +-\n +. + +. + + +- +\n +-\n + + +. +. +. +. +- +. +- +\n + + +. +- +. +- +\n +-\n + + +. +- +. +- +\n +-\n + + +. +- +. +- +\n +-\n +. + +. + +. +- +. +- +- +-\n +-\n + + + +. +- +. +- +\n +-\n + + +. +- +. +- +- +-\n +-\n + + +. +- +. +- +\n + + +\n + +. +- +. +- +. +. +. +. +. +. + +. + +. +\n + +- + +- + +- + +- + + +\n + +. + +. + + +. + +. +\n + +. + + +. +. +. +. +\n +- +- +- +- + +- + +- + +\n + +\n +. +. +. +. +. + + + +\n + +. +. +. +. +\n + + + + +\n +- +- +- +\n +. +. +. +. +. +\n + +\n + +\n +\n + +\n +\n +\n +\n +\n +\n +\n +\n +- + +- +\n +- +- +- + + +\n + +- +- +- +- +\n + +- +- +- +- + +- +\n + + + + + +\n + +- +\n + +- + +- + +\n + +. +. +. +. +- + +- +\n + +. +. +. +. +- + +- +\n + + + + +\n + + + +\n + +\n +- +\n +-\n +- +\n +-\n +- +\n +-\n + +- +\n +-\n +- +\n +-\n + +\n + +- +\n +-\n +- +\n +-\n + +\n + +\n + +\n + +\n + +\n + +\n +- +\n +-\n +- +\n +-\n +- +\n +-\n +- +\n +-\n + +\n + +\n + +\n + +- + +- +\n +. + +. + +\n + + +- + +- +\n + + + +\n + + + +\n + + +\n + + +\n + + +\n +- + +- + +\n + + +\n + + + + +\n +- +- +- +- + +- + + +\n +- +- +- + + + + + + + +\n + +. +. +. +. +. + +. +- +. +- +\n +. +. +. +. + +- + +- + +\n + +- + +- + + + +- +- +- +- + +- +. + +. +\n + +- +- +- +- +- +- +- + +- + +- + +- +\n + + + + +- + +- + + +- +- +- +- +- +- +- +- + + +- + +- +\n + +- +- +- +- +. + +. + + + + + + + + + +- + +- + +\n + +- +- +- +- +- +- +- +- +- + + + + + + + +- + +- +- + +- + +\n + + +. + +- + +- + +- + +- +\n +-\n + + +. + +- + +- + +- + +- +\n + +- +- +- +- +- + +- +- + +- + +- + +- +- + +- + +- + +- + +- +- +- +- +\n +-\n + +- +- +- +- +- +- +- +- +- +- +- +- +- + +- + +- +. + +- +- +- +- +- +-\n +-\n + +. +. +. +- +- +- +- +- +-\n +-\n + +- + +- +- +- +- + +- + + +- + +. + +- +- +- +- +. +- +.\n +-\n + +- +- +- +- +- +- +- +- +- +- +- +- +- +- + +- +\n +-\n + +- +- +- +- +- +- + +- + +- +- + +- +- +- +- +- + +- +\n +-\n +- +- +- +- + +- + +- + +- +- +-\n +-\n + +. + + +\n + +- + +- +\n + + +\n + + +\n + +- + +- + + +. + +. + +. +- +- +- +- + +- + +- +\n + +- + +- + +- + +- + +- + +- +- +- +- +\n +- +- +- +. + +- + +- + +. +- +. +- +\n + +- +- +- +- +- +- + + + +. + +. +. +. +- + +- +- +- +- + + + +\n +. +. +. + +- +- +- +- + + +. + +- +- +- +- +\n +-\n + +- +- +- +- + + +. + +. +. + +- +- +- +- +- +\n +-\n + +- + +- +- +- +- +- +- +- +- +- +. +\n +.\n +. +. +- +- +- +- + +. + +. + +. +\n +.\n +- +. +- +- +- +- +- +- +- +- +\n +-\n + +. +. +. +. +- +- +- +. + +- + +- + + +- +- +- +- + +- +- +\n +-\n + +- + + + +. +. +. +- + +- + +. + +- +\n +-\n + + + + + + +. +. +. +- + +- +- +-\n +-\n + +. + +. +. + +. +- + +- + + +- +- +- +- +\n + +- +- +- +- +- + +- + +- + +. +. +. +- +- +-\n +-\n + +- + +- +- +- +- +- +- +- +- +- +- +- +- +\n + +- + +- +. + +. + + + + +. +\n +.\n +. +. +- +- +- +- + +- +. + +. +- +. +. +. +. +- +- +- +- +\n + +- + +- +- +- +- +- +- +- +- + + +. + +- + +- + + +\n +- +- +- + +- +- + +- + + + +. +. +. +- + +- +\n + + + + +\n + +\n +- +-\n +-\n + +- +\n + + + +\n + + + +\n + +- +- + +- +\n +- +- +- + +- +\n + +- +- +- +- +\n +- +- +- +- + + + + + +. + +. +\n +- +- +- + + +\n + + + + + +\n + + + +\n + + +\n +- +- +- +\n + + +\n + + + + + +\n + + + + + +\n + + + + + +\n + + +- +- +- +- +\n +- +- +. +. +. +. +. +\n +- + +- +- + +- + +- +\n + + +- + +. + +. +- +- +- +- +- +\n +- +- +- +- +- +- +- +- +- +- +- + +- +- +- +- +- +\n +- + +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +\n +- +- +- +- + +- +- + +- +- +- +- + +- +- +- +- +. +\n +.\n +- +- +. +. +. +. +. +\n +- + +- + +- + +- +\n + + +- + +- +- +- +- + +- +\n + +- +- +- +- + + +\n + +- +- +- +- +- + +\n +- +- +- +\n +- +- +- +. +. +. +. +- +- +- +- +- +- +-\n +-\n + +- +- +- +- +- +- + +- +\n + + +- + +- + +- +\n +-\n + +- + +- + +\n + +- +- + +- + +- +\n + +- +- + +- +- +- +- + +- + +- +- +- +- +\n +-\n +- +- +- +- +- +. + +- +- +- +- +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +-\n +-\n +- +- +- +- +- +- + +- + +- + +- + + + +- +- +- +- + + +- + +- +- +- +- +- +-\n +-\n + +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n +- +- +- +- + +- +- +- +- +- +- +- +- +- +\n +\n + +- +- +- +- +- +- +- + +- +- +- +- +- +- +- +- +- +- +\n +\n +- +- +- +- +- +- +- + +- + +- +- +- +- +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- + +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n +- +- +. +. +. +. +. +. +. +. + + + +\n + +. + +. +- + +- + +- + +- + +- + +- +\n +-\n +- +- +- +- +- +- +- +-\n +-\n + + + +. + +. +. +. +. + +- +- +- +. +. +. +- +\n +-\n +- +- +- +- + +. +. +.\n +.\n + +. + +- +- +- +- + +- +. + +- +- +- +- +\n + +- +- +- +- + +- +- +- +- +- +- +- +- +- + +- +\n +-\n +- +- +- +- +- + +. + +. +. + +. +- +- +- +- +\n + +- +- +- +- + + + + +- +- +-\n +-\n + +- +- + +- + +- +- +- +-\n +-\n +- + +. +- +. +. +- +. +- +- +- +. +\n +.\n +- +- +. +. +. +. +. +. +. +. + +\n + +- + +. +- +. +- +- +- +- +. +. +. +. + +. +- +. +- +\n + +. +. +- +. +- +. + + + +. + +. + + + + + +- +- +- +. + +- +- +- +- +- +- +- +-\n +-\n +- +- +- +. + +- +- +- +- + +- +- +- +-\n +-\n + +. +- +. +- + +- +- +- +- + +- + +- +- +- +- +- +- +- +-\n +-\n + +- +- + +- + +- + +. + +- +- +- +- +\n +-\n +- +- +- +- +- +- + +- + +- + +- + +- +- +-\n +-\n +- +- +- +- +- + +- + +. +- +.\n +-\n + +- +- +- +- +- +- +- +- +- + +. +- +. +- +\n +-\n + + + + + + +\n +. + +. + +- +- +- +- +- +- +- + + +\n + + + + + + +. + +. + +. + +. +\n + +- +- +- +- + +- +- + +- +\n + + +- +- +- +- + +. +- +. +- +- +- +- + +\n +- + +- + +- +- +- +- +. + +. + +\n + + +- + +- + + +\n + + +. + +. + + + +\n + + +. + +. + + +\n + +. +- +. +- +\n + +. +\n +24392 + + + + + + +\n +. + +. + +. + +. +- + +. + +- + +- +\n + +. + +. + +- + +. + +- + +- + +- + +- +\n + +. +. +. +. +. +. +. + +. + + + + +. + +. + +\n + + +- + +. +- +. +- +- +- +- + + + + +. + +. +. +. +. + +\n + + +- +- +- +- + +- + + + + + +\n + +- + +- +- +- +- +- +- + +- + + +\n +- + +- + +- + +- + + + + + + + +\n +- + +- + +- + +- + + + +\n + + +. + +- + +- +. +. +. +. + + +\n + +- +- +- +- + + + + +\n +- + +. +- +. +- + +- +\n + + +. +. +- +- +- +. + +. + + +\n + +. + + +. + +. +. +. +. +. + +. +\n + +- + +- + +. + +. + +. + +. +- +. +- +- +- +- + +\n + +- +- +- +- +- + +- + +- + +- + +- + + + + + +\n + +- + +- + +- +- +- +- + +- + +- + + + +- + +- + +\n +- + +- + +. + +- + +- + +. + +. + +. +\n +- +. +- + +- +- + +. + +. + +. +\n + + + +- + +- +- +- +- +- + +- +\n + +- +- +- +. + +. + + +. + +- + +. + +. +\n +- +- +- +- +- +- +- +- +- +- +- +- +- +. +. +. +. +\n +- + +- +. +. +. +. +. +. +. + +. +. +. +. +. +\n +- + +- + + +. + +. + + + +. + +. + +\n + + + + +. + +. +- + +- + +- + +- +\n +- +- +- +. + +. + + + +- + +- + + +- + +- +\n + + + + + + +. + +. +- + +- + +\n + + + +- +- +- +. +- +. +- +. + +. +\n + +. +. +. +- +- +- +- + +- +. +- +. +- +- + +- + +\n + +- + + + +- + +- + +. +- +. +- + +. +. +. +- + +- +\n + + + +. + +. + +\n +- + +- + + +\n + +. + +. +\n + + + +\n + + +\n + +\n + +\n + +\n + +\n + +\n + + + +\n +. +. +. +\n + + + + +\n + + + + + +\n +- +- +- +- + +- +\n +. +. +- + +- +- +- +- + +- +- +- +- +\n +. +. +. + + +. + +. +\n + + + + + + + + + + +\n +- + +- + +- +. + +. +. +. +- +- +- +- +\n + + + +- + +- +- +- +- +- + +- +. + +. +- +\n +-\n +- +- +- +- +- +- + + + +- +- +- +- +- +- +- +\n +- +- +- + +- +. +. +. +. +- + +- + +\n +. +. +. +. +. +. +. +. + +. + +. + +. + + +\n + +. + +. +. +. +. +. + + +- + +- + +- + +- +\n ++ + +- + +- +- +- +- + +- + +- +- +- +- + +- + +- + +- +- +- +- +\n +-\n +- +- +- +. +. +. +. +. +. +- + +- +- +-\n +-\n + + + +- + +- +- +- +- +- +- +- + +- + + + +- +- +- +- +\n + + +- +- +- +- +. + +. + + + + + +. + +. + +. +. + +. + +\n + + +. + +. + + + +- +- +- +- +- + + +. + +. +- +- +- +- +\n +-\n + + + + + + +. + +. + +\n +. + +- + +- +- +- +- +- +. + +. + +. + +. +\n +.\n +. +. +. +. +. +. +- + +. + +. + +. + +. +\n +.\n +. +. +. +. +- + +- +. +. +. +- +- +- +- +- +- +- +\n + + + +. + +. +\n + +- + +- +- +- +- +\n + +. +. +. +. + +. + + +\n + +. + +. +. +. +. + + +\n + +. + +. + +. + +. + +. + + + + +\n + +- +- +- +- +- +- +- +- + +. + +. + +. + +. +\n +.\n +\n + + +. + +. +. +. +. +. +- +- +- +- +. + +. +. + +. +. +- +. +- +\n + +- +- +- +. +- +. +- +- +- +. + +. + +. +. +. +. +. +. +. +. +\n +\n + +. + +. + +- +- +- +. + +. + +. + +. + + +- +- +- +- +. +\n +.\n +- +- +- + + + + +. + +. + +. + +. + +- +- +- +- + +. + +. +- +. +- +\n +-\n + +. +- +. +- + +. +. +. +. + + + + +- + +- +- + +- +. + +. +- +\n +-\n + + +. + +. +. +. +- +- +-\n +-\n + + +- + +- +\n +- + +- +\n +-\n + + + +- +- +-\n +-\n + + +\n +- + +- + +- + +- +- +\n +-\n +. +- +. +. +- +. +- +\n + + +- +- +- +- +- + +- +- +-\n +-\n + + +\n +\n + + +- +\n +-\n + +. +- +. +- +\n + + +- + +- +- +- +- +- +- +- + +- +\n +-\n + + + +. + +. +- +- +- +- +- +- +- +\n + +- + +- +- +- +- + + + + + + + + +- +- +- +- +- +- +\n + +. + +. +. + +. +- + +. + +- +\n +-\n + +- + +- +- +- +- +- +- +. + +. + + + +. +. +. +. + +\n +\n + +. + +. +. +. +. +. +. + + + +- + +- + +. +- +.\n +-\n +. +. +. + +. + +- + +- + + + +. +. +. +. + +. + + + +- + +- + +- + +- + +- + +- +\n + + +. +. +. +. +. + +. +. +. +. +. + +. +- +- +- +- +-\n +-\n + + +. +. +. +. + +. +. +. +. +. +. + +. +- +- +- +- +-\n +-\n + +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- + + +- +- +- +-\n +-\n +. + +- +- +- +- +- + +- + +. +. +. +. +- + +- +- + +- +. +\n +.\n + + + +- + +. + +. + +- + +- +- +- +- +- +- + +- +. + +. + + +\n +\n +- +- +- +. + +. + +- + +- +- +- +- +- + + +- +- +-\n +-\n + +. + +. + +- +- +- +- + +- + +- +- +-\n +-\n +. + +. +. + +- +- +- +- + +- + +- +- +-\n +-\n + +. +- +. +- +- +- +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n + + +- + +- +- +- +- +- +- +- +- +- +- +-\n +-\n +- +- +- +- +. + +. +. +. +. +- + +. + +- +- +- +- +\n +-\n +. +. +. +- +- +- +. +. +. +.\n +.\n + +- +- +- +- +- +- +- +- + +- +- +- +- +- + +- +- +-\n +-\n +- + +- + +- + +- + +- + +- + +- + +\n +. +. +. + +. + +- +- +- +- + +- +- +- +-\n +-\n + +- + + + + +- + +- + +- +\n + + +- +- +- +- +- +- +- + +- +\n +-\n +- +- +- +- +- + +- +- + +- +\n +-\n + + +- +- +- +- + + + +\n + +. +. +. +. +\n +. + +. +. +. +. +- + +- + + +. + +. + +\n + +. + +. +. +. +. +- +- +- +- + +- +- + +- + + +\n + +. + +- + +- + +- + +. + +- + +. + +. +\n +- +- +- +- +- +- + +. +. +. +- +- +- +- +\n +-\n + +. +. +. +. +. + +. +. +. +. +. +. + +. + +. +. +. +. + +. + + + +\n +\n +. +. +. +- + +- +- +\n +-\n +. + +- +- +- +- + + +. +. +. +. +. + +. +. +. +.\n +.\n + +- +. + +. +. + +. + +- + +- +. + +. +. + +. + +\n +. +. +. +. +- +- +- +- +- +-\n +-\n +. + +. +. + +. + + +. +. +. +. + + + + +- + +- + + +. +. +.\n +.\n + +- +. + +. + +- +- +- +- +. + +. + +. +. + +. +- +- +- +- +\n +. +. +. +- + +- +- + +- +- + +. + +. +. + +. + +. +. +.\n +.\n + +- + +- +. + +. +. + +. +. + +. + +. +\n +.\n +. +. +- + +- +- +- +- +- +\n +. + +. + +. +. +. +. +\n + +. +. + +. +. +. +. +\n +- +- +- + +\n +. + +. +\n + + + + + +\n + +- + +- +\n +- + +- + + + + + +\n + +. +- + +- + +- + +- +- +- +- +- +\n + +. + + +. + +. +- + +- +. + +. +- +- +- +- +\n + +- +- +- +- + +- + + +. + +. +- +- +- +- +\n +-\n +. + +- + +- + +- + +. + +- + +- + +- +- +- +- +\n +-\n + +- +- +- +- + +- + +- +- +- +- +- + + + +. +- +.\n +-\n + +- +- + +- + +. +. +. +- +- +- +- +. +\n +.\n +. + +- + +- +- +- +- +- +- +- +\n +-\n + +. +- +. +- +- +- +- +. +- +. +- +- +- +- + + +. + +. + +- +- +- +- +- +- +- +\n + +. +. +. +- + +- + + + + +- +- +- +- +- +- +- +- +- +- + +- +- +-\n +-\n +. +. +. +- +- +- +- + +- +. + +. + +- +- +- +- +\n +-\n + + +. + +. + + + + + + +. +. +. +. + + + +- + +. +- +. +- +- +- +- +\n + + + +- +- +- +- +- +-\n +-\n +- + +- + +\n +\n +\n +\n +\n + +- +- +- +- +- + +- + +- + + +- +- +- +- +- +- + +- +- +- +- +- +\n +- +- +- + +- + +- + +- + + + + + +. + +- + +- +\n +-\n +- + +- +- +- +- +- + +- +. + +. +. +- +. +- + + + +- +- +- +- + + +- +\n +-\n + +. + +. + + +- + +- + +. +- +- +- +- +- +- +- +\n +- + +- +- +- +- +- +-\n +-\n + +. +- +. +- +- +- +- +- +- + +. +. +. +- +. +- +. +. +. +. + +. +\n + +. + +. + + +- + +. +. +. +. +. +- +- +- +- +. + +. +. +- +. +- +\n + +- +- +- +- + +. +- +. +- + +. +. +. +. +. +. + +. +\n +. + +. +. + +. +. +. +. + +. + +- + +- +\n + +. + +. +. + +. +. +- +. +- +. + +. + +. + +. +. +- +. +- +\n + +. +- +. +- + +. +. +. +. +. +. + +. + + + +. +. +. +. +- + +- +- +- +. + +. +. + +- +- +- +- + + + +. +- +. +- +\n +. +- +. +- +\n + + +. +- +. +- +- +-\n +-\n +. +. +. +. + +- +- +-\n +-\n + + +- +- +- +- + + + + +\n +- +- +- +- +- +- +-\n +-\n + + + + +. + +. +- +- +- +- +-\n +-\n + + + + + +- +\n +-\n + + +. + +- +- +- +- + +. +- +. +- +\n +-\n + +. +- +. +- + + +. +. +. +. +. + +. +. + +. + +. + + +\n + +. + +- + +- +. + +. +- +\n +-\n + +. +- +. +- + +- + +- + +- + +- + +- +\n +-\n + +- + +- +. + +. + +\n + +. +- +. +- + +- + +- + +. + +. + +. + +- +- +- +- +. +\n +.\n +. + +. +. + +. + +. + + +. +. +. +- +- +- +- + +- +- +- +- + +. +\n +.\n + + + + +- +- +- +. +- +. +- +\n + +. + +. + + +. + +. +. +. +. +. +. +- +. +- +- +- +- +- + +. +. +.\n +.\n +- +- +- +- + + +- +- +- +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n +- +- +- +- +- + +- +- +- +- + + +. + ++ + +- + +- +- +- +. +\n +.\n +. +. +. +- +. +- +. +\n +.\n +. +. +. + + + + + +. +. +. +- + +- +. + +. +- + +- + +- + +- +. +- +. +- +\n +-\n +- +- +- +- +- + +- +- +- +- +- + +- +. +. +. +. +. + +. +. +. +. +. + +. +\n +.\n +. +. +. + +. +- +. +- +. +\n +.\n +. +. +. +- + +- +. + +. + + +. +- +. +- +\n + +- + +- + +- + +- +- + +- + +- + +- +- +- +- +- +- +-\n +-\n + +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- + +- +\n +-\n + +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- + +- +- + +- +. + +- +- +-\n +-\n +- +- +- +- +- +- +- +- + +- + +- + +- +- +- +. +. +. +. +.\n +.\n +. +. +. + +. +- +. +- +. +\n +.\n +. +. +. + +. + +. + + +. + +. + + +. + +- + +- + + + +- + +. +- +. +- +\n + +. +- +. +- + +- + + +. +. +. +. +- +- +- +- +- +- + + + +. +- +. +- +\n +-\n + + +. +- +. +- +- +- +- +- +- +- + + +- + +- + +- + +- + +- +- +-\n +-\n +. +. +. +. + +- + +- + +- + +- +. +. +. +. +. + +- +- +- +- +- +\n +-\n +. +. +. +. +. + +. +- +- +- +. + +- +- +- +- +- +- +- +- + +- +- +- +- +- +\n +- +- +- + +- + +- +- +- +- + +- +- +- +- +- +- +- +- +- +- +\n +-\n +. + +. + +. + +- +- +- +- +. +- +. +- +. + +- + +- + +. +- +. +- +\n +-\n +- +. +- + +- + +. +- +. +- +- +- +. +. +. +- +- +- +. +\n +.\n + + + +. + +. +- +- +- +- + + + + +. +- +. +- +\n + + + + +. + +. + + + + + +. +- +. +- +\n + + + +- +- +- +. + +. + + + + + +. +- +. +- +\n + + + +- + +- +- + +- + +- + + +- + +- +- + +- +\n +-\n + +- + +- + +- + +- + +- + +. + +- +- +- +. + +- +- +-\n +-\n +- +- +- +- +. + +. +- + +. + +. +- +- +-\n +-\n +. + +. +- +- +- +- +- +- +- +- +- + +- + +- +. +. +. +- + +- +\n +-\n +- +- +- +- +- +- +- +- +- + +- + +- + + +- +- +- +- +- +- +- +- +. +- +.\n +-\n + +- +- +- +- + +- +- +- +- +- +- +- +- + +- +- +- +- +- + +- + +- + +- +- +-\n +-\n + +- + +- + +- + +- + +- + +- + +- + +- +- + +- + +. +- +. +- +. +\n +.\n +. +. +. +. +. +. +.\n +.\n +. +. +- +- +- +- + + + +. + +. +. + +. +- + +- + +- + +- +- + +. +- +. +- +\n +-\n + + + +- + +- +- + +- + +- + + + + +- + +- +\n +-\n + +- + +- + +- + +- + +- + +. + +- +- +- +- +. + +- +- +- +. + +. + +- +\n +-\n + +- + + + + +- + +- +- +- +- + +- +\n +-\n + +- +- +- +- +- +- +- +- +- +- +- +- +- + +- + +- + +- +- +- +- +. + +. +- + +- +- +\n +-\n +- +- +- +- +- +- +- + +. +- +- +- +- +. + +- + +- +- +- +- +- +. + +. +. +. +- +- +- +- +\n +-\n +- +- +- +- +- +- +- +- + +- + +- +- +- +- +- +- + +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- + +. +- +.\n +-\n + +- +- +- +- +- + + + + +- +- +- +- + +- + +- + +- +\n +-\n + +- + +- + +- + +- +- + +. +- +. +. +- +. +- + +. +\n +.\n +. +. +. +. +. +. +.\n +.\n +. +. +- +- +- +- + + + +. + +. +. + +. +- + +- + +- + +- +- + +- + +- +\n + + + +- + +- +- + +- + +- + + +- + +- +- + +- +\n +-\n + +- + +- + +- + +- + +- + +. + +- +- +- +. + +- +- +-\n +-\n + +- + +- +- +- +- +- +- +- +- +- + +- +- +- +- + +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- + +\n +\n +- +- +- +- +- +- +- +- +- +- +- +. +- +. +- +- +- +- +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +- +- + +- +- +- +- +- +. + +. + +. + +. + +. +\n +. +. +. +. +. +.\n +.\n +. +. +. + + + +- +- +- +- +- +. + +. + + +. + +. +- + +- + +- +\n +-\n + + + +- + +- + +- + + + + +- + +. + +- + +- +\n +-\n + + + +- + +- +- + +- + +- + + +- + +- +- + +- +\n +-\n +- +- +- +- +. + +. +- + +- +- +- +- +- +- +- +- +- +\n +-\n +- + +- +- +- +- + +- + +- +- +- +- +- + +- +- +- +- + +. + +. +- + +- +- +\n +-\n +- +- +- +- +- +- +- + +. +- +- +- +- +. +. +. +- +\n +-\n +- +- +- +- +- +- +- +- +- +- +. + +- +- +-\n +-\n + +- +- +- +- +- +- +- +- +. +\n +.\n +. +. +. +. +. +. +. +. +. +. +. +. +. +. +.\n +.\n + + + +- + +- +- + +- + +- + + +- + +- +- + +- +\n +-\n +- +- +- + +- +- +- +- +- +- +- +- +- +- +- +- + +- +- +-\n +-\n +- +- +- +- +- +- +- + +. +- +- +- +- +- +- +- +- +\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +- +- + +- +- +- +- +- +-\n +-\n + +- + +- + +- + +- +- +- +- + +- + +- + +- +. + +. +\n +.\n +. +. +. +. +. +. +. +. +. +. +. +. +. +. +.\n +.\n + + + +- + +- + +\n + +\n +. +. +. +- +- +- +- +- +. +\n +.\n + +. +- +. +- +\n +-\n + + + + +- + +. +\n +.\n +. +. +. + +. +- +. +- + +\n + +- +- +- +- +- +- +- +- +- +- +- +\n +-\n +. +. +. + +. +- +. +- + +\n +. +. +. +. +. +. +. +. +. +. +. +. +.\n +.\n + +- +- +- +- +- +-\n +-\n +. + +- +- +- +- +- +- + +- + +- + +- +- +- +-\n +-\n +- +- +- +- +- +- +- + +- +- + +- +- +- +- + +- + +. +\n +.\n +. +. +. + + + +- + +. + +. + + +. + +. +\n + +- + +- + +- +. +. +- +. +- + +- +\n +-\n +- + +- + +- + +- + +- + +- + +- + +- + +- +- + +- +- +- +- +- +- +- +- +\n +-\n +. +. +. +. +. +. +. +. +. +. +. +. +. +. +.\n +.\n +- + +- +- + +- +- + +- + +- +- +- +- +- + +- + +- + +- +\n +-\n +. +. +. +. +. +. +. +. +. +. +. +. +. +.\n +.\n +- + +- + +- + +- + +- +. + +- + +- + +- + + +. + +- + +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- + +- + + +- +- +- +- +- +- +- +- + +- +- +-\n +-\n + +. + +. +. +. +- +- +- +- +- +- +- + + +. + +- +- +- +- +. +\n +.\n +. +. +. +. +. +. +. +. +. +. +. +. +. +. +.\n +.\n +- + +- +- + +- +- + +- + +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- + +- +- +- +- +- +- +-\n +-\n + +- +- +- +- +- + +- +- + +- + +- +- +- +- +- + +- + +- +- +-\n +-\n +- + +- + +- +- +-\n +-\n +- + +- +- +- +- +- +- +- +- +- +-\n +-\n + +- + +- +- +- +- + +- +- +- +-\n +-\n + +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- + +- +- +-\n +-\n +- + +- +- +- +- +- +- +- +- +- +- +-\n +-\n + +- +- +- +- +- +- + +- +- +- +- +-\n +-\n + +- +- +- +- +- +- +- +- + +- +- +-\n +-\n + +- + +- +- +- +-\n +-\n +- +- +- +- +- +- +- +-\n +-\n + +- + +- +- +- +-\n +-\n + +- +- +- +- +- +-\n +-\n +- + +- +- +- +-\n +-\n + +- +- +- +- +- +-\n +-\n + + + +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n + + +- + +- + +- + +- +- +- +- +- +- +- +-\n +-\n + +- + +- + +- +- +- +- +- +- +-\n +-\n +- +- +- +- + +- +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n +. +. +. +. +. +. +.\n +.\n +- + +- +- +- +- + +- +- +- +- + +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n + +- + +- +. + +. +. +. +. + +. + + + + +\n +. +. +. +. + + +. + +. + +- +- +- +- +\n + +. +- +. +- + + ++ + ++ + + + + +. +- +. +- + +- +\n +. +. +. +- +. +. +. +. +- + +- + + +\n + +- +- +- +- + +. + +- + +- + +- + + + + +- + +- +- +- +- +\n +-\n +- + +- +- +- +- +- +- + +. + +- +- +- +- +- +- +- +- + +. + +. + +- +- +- +- +\n + +- +- +- +- + + +. + +. +- +- +- +- +. + +- +- +- +- + + +. + +- +\n +-\n +- +- +- +- +- + +- + + +- + +. +. +. +. +. + +. + +. + +- +- +- +. +- +. +- +\n + +- +- +- +- + +- +- +- +- +. + +. +. + +. +. + +. +- +- +- +- +- +\n +-\n + +- + +- + +- + +- + +- + +- + +- +- +- +- +. +. +. +. +- +- +- +- +- + +- +\n +. + +. +. + +- + +- + +. + +- + +- +\n +-\n + +- + +- +- +- +- +- +\n +-\n + + +- +- +- +- +- +- +- +. + +. + +\n +- +- +- +- +- + +- +- +- +- +\n + + +. + +. +- +- +- +- +\n + +. + +. +- +- +- +- +\n +-\n +. + +. +. + +- + +- + +- +\n +-\n +- +- +- +- + +- +- +- +- +- + + + + +\n +- +. +- + +- +. +. +. +- +- +- +- +\n +. + +. +. + +- + +- +- +- +- +- +- +- +\n +-\n +- +- +- +- +- +- +- +. +- +. +- +- +- +- + + ++ + ++ + +- +- +- +- +- +- +- +\n + +. +. +. +- + +- + + + + +- +- +- +- +- +- +- +- +- +- + +- +- +-\n +-\n +. +. +. +- +- +- +- + +- +. + +. + +- +- +- +- +\n +-\n +. + +. + + + + + + +. +. +. +. + + + +- + +. +- +. +- +- +- +- +\n + + + + + + + + + + + + + +- +- +- +- +- +-\n +-\n + + +- + +- +- + +. +\n +.\n + + + + +- +- +- +- +. + +. + +. + + + +\n +\n + +- +- +- +- +- +. + +. + +. +. + +. + +- +- +- +- +- +- +- +\n + +- +- +- +- + +- +- +- +- +- + +- + +. + +. + +\n + +- +- +- +- + + + + +- +- +- +- +- +- +- +- + +- + +- +\n + +- +- +- +- + + + +- + +- +- +- +- +- +\n +- +- +- + +- + +. + +- + +- +\n +-\n +- + +- +- +- +- + + + +- +\n +-\n + +. + +. +\n + +- +- +- +- +- +- +- +- +- +\n + +- + +- + + +\n + +- +- +- +- + +- +- +- +- +\n +. + +. +. + +. +. +. +. + +. +\n + +- + +- +. + +. +- +- +- +- + +\n + +- +- +- +- + + +\n +. + +. +- + +- +- +- +- +\n + + + + + + +- +- +- +- +- +\n + + + + + +- +- +- +- +- +- +- +\n + +- + +- + +\n +- +- +- +- + +- +- +- +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n +- +- +- +- +- + +- + + +. + +- + +- + +- +- +- +. +\n +.\n +. +. +- +- +- +- +- +\n +-\n +. +. +. + + +. + +. +- + +- + +- + +- +. +- +. +- +\n +- +- +- +- +- + +- +- +- +- +- + +- +. +. +. +. +. + +. +. +. +. +. + +. +\n +.\n +. +. +. + +- +- +- +- +- +\n +-\n +. +. +. +- + +- +. + +. + + +- +- +- +- +\n + +- + +- + +- + +- +- + +- + +- + +- +- +- +- +- +- +-\n +-\n + +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- + +- +\n +-\n + +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- + +- +- + +- +. + +- +- +-\n +-\n +- +- +- +- +- +- +- +- + +- +- +- +- + +- +- +- +. +. +. +. +.\n +.\n +. +. +. + +- +- +- +- +- +\n +-\n +. +. +. + +- + +- + + +. + +. + + +. + +- + +- + + + +- + +- +- +- +- +\n + +- +- +- +- + +- + + +- +. +- +. +- +- +- +- +- +- + + + +- +- +- +- +\n +-\n + + +- +- +- +- +- +- +- +- +- +- + + +- + +- + +- + +- + +- +- +-\n +-\n +. +. +. +. + +- + +- + +- + +- +. +. +. +. +. + +- +- +- +- +- +\n +-\n +. +. +. +. +- + +- +- +- +- +. + +- +- +- +- +- +- +- +- + +- +- +- +- +- +\n +- +- +- + +- + +- +- +- +- + +- +- +- +- +- +- +- +- +- +- +\n +-\n +. + +. + +. + +- +- +- +- +- +- +- +- +. + +- + +- + +- +- +- +- +\n +-\n +- +- +- + +- + +- +- +- +- +- +- +. +. +. +- +- +- +- +\n +-\n + + + +- + +- +- +- +- +- + + + + +- +- +- +- +\n + + + + +- + +- + + + + + +- +- +- +- +\n + + + +- +- +- +- + +- + + + + + +- +- +- +- +\n + + + +- + +- +- + +- + +- + + +- + +- +- + +- +\n +-\n + +- + +- + +- + +- + +- + +- + +- +- +- +- + +- +- +-\n +-\n +- +- +- +- +- + +- +- + +. + +. +- +- +-\n +-\n +. + +. +- +- +- +- +- +- +- +- +- + +- + +- +. +. +. +- + +- +\n +-\n +- +- +- +- +- +- +- +- +- + +- + +- + + +- +- +- +- +- +- +- +- +. +- +.\n +-\n + +- +- +- +- + +- +- +- +- +- +- +- +- + +- +- +- +- +- + +- + +- + +- +- +-\n +-\n + +- + +- + +- + +- + +- + +- + +- + +- + +. +- +. +. +- +. +- +. +\n +.\n +. +. +. +. +. +. +.\n +.\n +. +. +- +- +- +- + + + +. + +. +. + +. +- + +- + +- + +- +- + +. +- +. +- +\n +-\n + + +- + +- +- + +- +\n +- + +- +- +- +- + +- +- +- +- + +- + +- +\n +-\n + +- +- + +- +- +- +- + +- +\n +-\n + +- +- +- +- +- +- +- +- +- +- +- +- +- + +- +\n +-\n + +- +- +- +- +. + +. +- + +- +- +\n +-\n +- +- +- +- +- +- +- +- + +. +- +- +- +- +. + +- + +- +- +- +- +- +. + +. +. +.\n +.\n + +- + +- +- +- +- +- +- +- +- +- +- + +- +- +- +- +- +- + +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- + +- +- +-\n +-\n + +- +- +- +- +- + + + + +- +- +- +- + +- + +- + +- +\n +-\n + +- + +- + +- + +- +- + +. +- +. +. +- +. +- + +. +\n +.\n +. +. +. +. +. +. +.\n +.\n +. +. +- +- +- +- + + + +. + +. +. + +. +- + +- + +- + +- +- + +- + +- +\n + + + + +- + +- + +- + + +- + +- +- + +- +\n +-\n + +- + +- + + +- + +- + +- +- +- +- + +- +- +-\n +-\n + +- + +- +- +- +- +- +- +- +- +- + +- +- +- +- + +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- + +\n +\n +- +- +- +- +- +- +- +- +- +- +- +. +- +. +- +- +- +- +- +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +- +- + +- +- +- +- +- +. + +. + +. + +. + +. +\n +. +. +. +. +. +.\n +.\n +. +. +. + + + +- +- +- +- +. + +. + + +. + +. +- + +- + +- +\n +-\n + + + +- + +- + +- + + + + +- + +. + +- + +- +\n +-\n + + + +- + +- +- + +- + +- +- + +- +- + +- +\n +- +- +- +- +. + +. +- + +- +- +- +- +- +- +- +- +- +\n +-\n +- + +- +- +- +- + +- + +- +- +- +- +- + +- +- +- +- + +. + +. +- + +- +- +\n +-\n +- +- +- +- +- +- +- +- + +. +- +- +- +- +. +. +. +- +\n +-\n +- +- +- +- +- +- +- +- +- +- +- + +- +- +- +- + +- +- +- +- +- +- +- +- +. +\n +.\n +. +. +. +. +. +. +.\n +.\n +. +. +. +. +. +.\n +.\n + + + +- + +- +- + +- + +- + + +- + +- +- + +- +\n +-\n +- +- +- + +- +- +- +- +- +- +- +- +- +- +- +- + +- +- +-\n +-\n +- +- +- +- +- +- +- + +. +- +- +- +- +- +- +- +- +\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +- +- + +- +- +- +- +- +-\n +-\n +. +. +. +. +. +. +. +. +. +. +. +. +.\n +.\n + + + +- +- +- +- +- +- +- +- +- +-\n +-\n +. + +- +- +- +- +- +- + +- + +- + +- +- +- +-\n +-\n +- +- +- +- +- +- +- + +- +- + +- +- +- +- + +- + +. +\n +.\n +. +. +. +. +. +.\n +.\n +. +. +. + + + +- + +. + +. + + +. + +. +- + +- + +- + +- +. +- +- +- +- + +- +\n +-\n +- + +- + +- + +- + +- + +- + +- + +- +\n +-\n + +- +- +- +- +- +- +- +- +\n +-\n +. +. +. +. +. +. +. +. +. +. +. +. +. +. +.\n +.\n +- + +- +- + +- + +- +. + +- + +- + +- + + +. + +- + +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- + +- + + +- +- +- +- +- +- +- +- + +- +- +-\n +-\n + +. + +. +. +. +- +- +- +- +- +- +- + + +. + +- +- +- +- +. +\n +.\n +. +. +. +. +. +. +. +. +. +. +. +. +. +.\n +.\n +- + +- +- + +- +- + +- + +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- + +- +- +- +- +- +- +-\n +-\n + +- +- +- +- +- + +- +- + +- + +- +- +-\n +-\n + +- + +- +- +-\n +-\n +- + +- + +- +- +- +- + +- + +- +- +- +- +- +- +- +- +- +-\n +-\n + +- + +- +- +- +- + + +- +- +- +- +- +- +- +- +-\n +-\n + +- +- +- +- +- +- +- +- +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- + +- +- +-\n +-\n +- + +- +- +- +- +- +- +- +- +- +- +-\n +-\n + +- +- +- +- +- +- + +- +- +- +- +- +- + + +- +- +- +- +- +- +- +- + +- +- +-\n +-\n + +- + +- +- +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n + +- + +- +- +- +- +- +- + +- +- +- +- +- +-\n +-\n +- + +- +- +- +- +- +- + +- +- +- +- +- +-\n +-\n + + + +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n + + +- + +- + +- + +- +- +- +- +- +- +- +-\n +-\n + +- + +- + +- +- +- +- +- +- +-\n +-\n +- +- +- +- + +- +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n +. +. +. +. +. +. +.\n +.\n +- + +- +- +- +- + +- +- +- +- + +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n + +- +- +- +- +- + +- +- +- +- +- +\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +. +\n +.\n +. +. +. +. +. +. +.\n +.\n +. +. +. + + + +- +- +- +- +- +. + +. +- +- +- +- + +- +\n +-\n + + +- + +- + + + +- + +- +- + +- +\n +-\n + + + + +- +- +- +- +- +- +- + +- +- +- +- + +- + +- +- +- +- +\n +- +- +- + +. + +- +- +- +- + +. + +- + +. + +. +. +\n +.\n +. +. +. + +- +- +- +. +\n +.\n +. +. +- + +- +- + +- + + + +. + +. +- + +- +- +- +- +- + + +\n + + +. + +. +- + +- + +- + +- +. +- +. +- + +- +\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- +- + + +. + +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- + +\n +- +- +- +- +- +- + +- + +- +- +- +- +- +- +- + +- +- +-\n +-\n + +- + +- + + + + +- +- +- +- +. + +. + +- +- +- +- +- + +\n + +- + +- +. +- +. +- +- +- +- + +- + +. +\n +.\n +. +. +- +- +- +- +- +- +- +- + +- +- + +- +- +-\n +-\n + +- +- +- +- + +- +- +- +- +- +- +- + +- +- +\n +-\n +- +- +- +- +- +. + +- +- +- +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n +- +- +- + +- +- +- +- + +- +- +- +- + + +- +- +- +- +- + + +- +- +- +-\n +-\n + + +- +- +- +- + +- + + + + +- +- +- +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n +. +. +- +- +- +- + +- + +- +- +-\n +-\n + +- +- +- +- +- +- +- +- +- +- +- +. +. +. +. + +- + +- +\n +-\n + + + + + + + + + +- +\n +-\n + + + + + + + + + + + + +. +. +.\n +.\n + + + + + + + + + + + + + + + +\n +\n + + + + + + + + + + + + + + + + + +. +. +. +. +- +- +-\n +-\n + + + + + + + + + + + + + + + + + + + +. + +. + +- +\n +-\n + + + + + + + +. +. +. +. + + +. + +. +. +. +. +. +\n +.\n + + + + +- + +- +- + +- +- +- +. +- +- +-\n +-\n + +- +- +- +- +- +- +- +- +- +- + +- +\n +-\n + + +- +- +- +. +. +. +. +. +- +. +- +. + +. +. + +. +\n +\n + + + +. + +. +. + +. + + +. + +. + + +- +\n +-\n +. + +. + + + + + +. + +. + + + +. +. +.\n +.\n +. + +. +. + +. + + + +- +- +- +- +- +- +- +- +- +- +-\n +-\n +. +. +. +- +- +- +- + + +. + +. +. +. +. +. + +. + + +\n + +- + +- +- + +- +- + +- +. +\n +.\n +. + +. + + +- +- +- +- +- + +- +- +- +- +- +. +\n +.\n + + + + + + + +. +. +. +. +. +. + +. + +\n +\n +. +. +. +- +- +- +- + +- + + +. +. +. +- +\n +-\n +. + +. +. +. +- +- +- +- +. +- +. +- +\n +-\n +- +- +- +- +. + +- +- +- +- +. + +. +. +. +.\n +.\n +. + +. + + +. + +. +. + +. +. +. +. +. +. +- +- +- +- +-\n +-\n + + + +. + +. + + + + + + + + + + +\n +- +- +- +- + + + +. +. +. +. +. +. +. +. +.\n +.\n +. +. +. +. +. +. + + + + + + + +. +. +. +. +\n +.\n +. + +. +. + +. +. +. +. +. + +- + +- +- +- +- +- +- +-\n +-\n +. +. +. +. + +. +- +- +- +- + +- +\n +-\n +. +. +. +- +- +- +. + +- + +- +. +- +. +- +\n +-\n + + + + +. + +. + + + + +. + +. + + + +\n + + + + + + + + +. + +. +. +. +.\n +.\n +. +. +. +- +- +- +- +. +. +. +. +- +- +- +- +\n +-\n + + +. + +. +. +. +. +. +\n +.\n +\n + +. +. + +. +. + +. + +. + +. +- +- +- +- +\n + + + + + + + +\n +32716 + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +. +. +. +. +. +. +.\n +.\n + + + + + + + + + + + + +. + +. + +. +\n +.\n + + + + + + + +. + +. + +- + +- + +\n + + + + + + +- + +- + +- + +- + +- +- +-\n +-\n + + +- +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n +- +- +- +- +- +- +- +- + +- + +- +- +-\n +-\n +- + +- +- + +- + +- +- +- +- + +- +- +-\n +-\n +- +- +- +- +- +- +- + +- + +- + +- +- + +- +\n +-\n +. +. +. +. +. +. +.\n +.\n +. +. +. +. +. +. +. + + +. + +. + + +- + +. + +. + + +\n + + + + +. +. +. +- +- +- +. + +. +. + +. + + +. + +. +\n + + + +. + +- + +. +. +. +. +. +. +. +- +- +- +- + +- +\n + + +- + +- +- + +- + +- + + +- + +- +. +- +. +- +\n +-\n + +. +. +. +- + +- + + +- + +- + +. + +. +\n +. +. +. +. +. +- + +. +. +. +. + +. +. +\n +.\n +. + +. +. + +- +- +- +- + +- + +. + +. +. + +. +\n +.\n + +- + +- +- +- +- +- +- +- +- +- +- +- + +- +- +- +- + +. +\n +.\n + +. + +- + +- + +- + + +. + +. +- +- +- +. + +- + +- + +- + +- + +- + +- +\n +-\n +- + +- +- +- +- +- + +- + +- +- +- +- +- +- +\n +-\n + +- + + + +- + +- + +- +- +- +- + +- +- +- +- +- + +- + +. +\n +.\n +. +. +. + + + + +. + +. + + + +- +- +- +- +- +\n +-\n + +- + +- + +- + +- +- +- +- + + + + + +- + +- + +- +. +- +. +- +\n +- + +- +- +- +- +- + +- +- +- +- +- + +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +- + +- +- +-\n +-\n + +- +- +- +- +- + +- +- +- +. + +. +. +.\n +.\n +. +. +. +. +. +. +. + +. + + +. + +. +- + +- +\n +. + +- + +- +- + +- + +- +. +- +. +- +\n +. + +. + +. + +. +. +. +. + +. + +\n +. +. +. +. +. +. +. +. +. +. + +. +. +. +. +\n +.\n + + + + + + + +. + +. + + + +- +- +- +- +- +\n +-\n + + + + + +- + +- + +- +. +- +. +- + +- + + +\n + + + + + +. +. +. +. +. +. +. +. + + +\n +. +. +. +. + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + +\n + +\n +33394 +. + +. + + + + + + + + + + + + +\n +- +- +- + + + + + + + + + + + + + + + + + +\n + +- +- +- +- +- +- + + + + + + + + + + + +\n +. +. +. +- + +- + + + + + + + + + + + + + + + +\n + + +. + +. + + + + + + + + + + + + + + + + + +\n +- + +- +- +- +- + + + + + +\n +- + +- +- +- +- + + + + + + + + +\n +- +- +- +- + + +- +- +- +- +- +- +- + + + + + + + + + +\n +. +. +. + + + + + + + + + + + + +\n + + + + + + +. +- +. +- +\n +-\n +- +- +- +- + +- +- +- +- +- +- +- +- + +- +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- + +\n +. +. +. +- + +- + +. + +. + +. + +. + + +\n + +. +- + +. + +. +- +\n +-\n + +. + + + + +. + +. +\n +.\n +. + +. + +. +. +. +- + +- +. +- +. +- +\n +-\n +- +- +- +- +- +- +- +- +- + +- + +- +\n +-\n + +- + + +- +- +- +- +- + +- + +- +- +\n +-\n +- +- +- +- +- + +- +- +- +- + +- +- +- +- +- + +- + +\n +- +- +- +- +- +- +- +- +- +- +- + +- + +- + +- + + + + +\n + +- + +- + +- +- + +- + +- + +- + +- +- +\n +-\n + +- + +- + +- + +- +- + +- + +- +- +- +- +- +\n +-\n +- +- +- +- + +- +- + +- + +- +- + +- + +. +\n +.\n +. +. +. +. +. +. +.\n +.\n +. +. +. + + + +- + +. + +. + + +. + +. +. +. +. +. +\n +. + +. +- + +- + +- + +- +. +- +- +- +- +- +- +. +\n +.\n +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- +- + +- +- +-\n +-\n +- +- +- +- +- +- +- +- + +- +- +- +- +. +\n +.\n + +- + +- +- +- +- +- + +- +- +- +- +- + +- +- + +- + + + +\n + +- + +- +- +- +- +- + +- + +- +- + +- + +. +\n +.\n +. +. +. +. +. +. +. +. +. + +- +- +- +- + +. +. +. +- +\n +-\n +- + +- +- +- +- +- + +- + +- +- + +- + + +- +\n +-\n + +- +- +- +- + +- + +- +- + +- + +. +\n +.\n +. +. +. +. +. +. +.\n +.\n +- +- +- +- + +- +- +- +- +. +. +- +. +- + +- +- +-\n +-\n +- +- +- +- +- +- +- +. + +- +- +- +. +- +. +- +\n +-\n +. +. +. +. +. +. +. +.\n +.\n +- + +- +- + +- +- + +- + +- +- + +- + +- +\n + +- + +- + +- + +- + +- + +- + +- +- +- +- + +. +\n +.\n +. +. +. +. +. +. +.\n +.\n +. +. +. + + + + + + + +. + +. + + +\n + +. +- + +- + +- + +- +. +- +. +- +\n + + + + + + + + + + + +- + +- +- +- +- + +- +- +-\n +-\n + + + + + + + +. +\n +.\n +. +. +. +. +. +. +.\n +.\n +34171 + + + + + + +. +. +. +. +- +\n +-\n + +. + +- + +- + + + + +. + +. + +\n +\n +- + +- +. + +. +- + +- +- +- +-\n +-\n +- +- +- +- + +. +- +- +- +. + +. + +. + +. + +. +. +. +.\n +.\n +- +. +- +- + +- + +- +. + +. +. +- +. +- +\n +-\n +. + +. + +. + +- +\n +-\n + + +- + +- + +- +- + +- +- + +- +. + +. + +. + +. + +\n +\n +. +. +. +. + +. + + +- + +- + +- +- +- +- +- +- +-\n +-\n +. + +. + +- + +- + + + + +. +- +. +- +- + +- +- +\n +-\n + + +- + +- + +- +- + +- +- + +- +. + +. + +\n +\n + +. + +. +- + +- +- +- +- +- + +- +- +- +- +\n +. + +. +- + +- +\n + + + +. +- +. +- + +- +- +- +- +- +- +- +- +\n + + +- + +- + +- + +. + +. + + +. + +- + +- + + +- +\n +-\n +. +. +. +. + +- + +- + +- + +- +- +-\n +-\n + + + + +- + +- +\n +-\n + + +- + +- + +- + +. + +. + +\n +\n + + + +- +- +- +- + +- + + +\n + +- + +- +- +- +. + +- + +- + +- +\n +-\n + + + + +- +- +- +- +\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- +- +- + + +- +- +-\n +-\n + +- +- +- +- +- +- +- +- +- + +. +. +.\n +.\n +- + +- + + +. + +. + +. +- +- +- +- + +- +- +-\n +-\n +\n + +. +- +- +- +- +- + + +- + +- +- +- +- +- +- +- +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +- +. + +. +. +\n +.\n + +. +- +. +- + +- +- +- +- +. + +. +\n +. +. +. +. + +- + +- +- +\n +-\n + +. +. +- +- +- +- + + + +. + +. + + + + + +- +- +- +- + +- +- +- +- +- +- +- +-\n +-\n +- +- +- +- + +- +- +- +- + +- +- +- +-\n +-\n + +. + +- + +- +. + +. + + + + + + + +\n +- +- +- +- + +- +- + +- + + + + + + + +\n + + + + + +. + +. +- +- +- +- +. + +. + + + + + + + +\n + +- + +- + +- + +- + + + + + + +\n + + + + + + +- +- +- +- +. + +. + + + + + + +\n +- +- +- +- + +- + +- +- + +- + + + + + + + + + + +\n + + +- + +- +- +- +. +- +. +- + + + + + + + + + + +\n + + +- +- +- +- + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + +\n + +- + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n +34876 +- +- +- +- + +- +- +- +- + +- + +- +- +- +- +- +- +- +-\n +-\n + +- +- + +- + +- + +- + +- +- +- +- +\n +-\n +- +- +- +- +- +- + +- + +- + +- + +- +- +-\n +-\n +- +- +- +- +- + +- + +. +- +.\n +-\n + +- +- +- +- +- +- +- +- + +. +- +. +- +\n +-\n +. + +. + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n +. + +. + +- +- +- +- + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n +. + +. + +. + +. + +- + +- + + + + + +\n + +- +- +- +- +- +- +. +- +. +- + + + + +\n +. + +. + +. + +. + +. + +- +- +- +- + + + + + +\n + +- + + + +- + +. +- +. +- + + + + +\n + + + + + + +- +- +- +- +- + +- +. + +. + +. + + + + + + + + +\n +- +- +- +- + + +. + +. + +- +- +- +- +- + + + +\n +. +. +. +. +. +. +. +. +. +. +. + +. + + + +\n + +- +- + +- + +- + +. +- +. +- + + + +\n +. + +- +- +- +- + +- +- +- +- +- +. + +- +- +- +- + +\n + +. + +. +. +. +. +. + +- + +- + + + + + + + + +\n +- + +. + +. + +. +. +. +. + +. +- + +- +\n + +. +. +. +. + + + + + + +- +\n +-\n +- +- +- + + + + +. +\n +.\n + + + + + + +. + +. +. + +. +- +. +- +\n + +. +. +. +. + + +. +. +. +. + + + +- + +- +\n + +. +. +. +. + + +. + +. + + +. +. +. +. + + + +- + +- +\n + +. + +. + +- + +- +- +- +- + + + + +\n +- +- +- +- + +- + +- + +. + +. + +. + +. +. +.\n +.\n + +. +. +. +- + +- +. +- +. +- + +- + + +\n + +. + +. + +- + +- + + + +- +- +- +- +- +\n +-\n + +. + + + +- + +. +- +. +- + +- + +- +\n +-\n + +. + +. + +- + +- + + + +- +- +- +- +\n +-\n +. +- +. +- +- +- +- + +- +\n +-\n + +. + +. + +- + +- + + +- +- +- +. +\n +.\n + + + + + +. +. +. +- + +- +. +- +. +- + +- + +- +\n +-\n + +. + +. + +- + +- +. +. +. +. + + +. + +. + +. +. + +. + + +\n + +. +. +. +- +- +- +- + + +. + +. +. + +. + + + + +. +- +. +- + + +- +\n +-\n + +. + +. + +- + +- +- +- +- + +. + +. +. +. +.\n +.\n +- + +- + +. + +- + +. + +. + + + +. +- +. +- +- +- +- + +- +\n +-\n + +. + +. + +- + +- +. +. +. +. +. + +\n + +- + +- +. +- +. +- + +- + +- +\n +-\n + + +. + +. + +- +- +- +- + + +. +. +. +. + +. + +\n +. + +- +- +- +- + +- +. +. +. +- + +- + + + + +- + +. +- +. +- +\n + + +. + +. + +- +- +- +- + + +- + +. + +. + +\n + + +- +- +- +- + + + +. +. +. +- + +- +\n +-\n + + + + + + + + + + + + + + +\n +\n + + + + + + + + +- + +- +\n + + + + + + + + + + + + + + + + + + + + +- +- +-\n +-\n + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + +- + +. +. +.\n +.\n + + + + + + + + + + + + + + + + + + + + + + +. + +- +\n +-\n + + + + + +\n + + + + + + + + + + + + + + + + + + + +- + +- +\n + + + + + + + + + + + + + + + + + + + + + + + + +. +. +. +. +\n +35850 + + + + + + + + + + + + + + + + + + + + + + + +\n +. +. +. +. + + + + + + + + + + + + + + + + + + + + + + +\n + +. + +. + + + + + + + + + + + + + + + + + + +\n +. + +. + + + + + + + + + + + + + + + + + + + + + +\n + +. + +- + +- + + + + + + + + + + + + + + +\n +. +. +. +. + + + + + + + + + + + + + + +\n + +. +- +- +- +- +- +- +- +- + + + + + + + + + + + + + + + +\n +. +. +. +- +- +- +- +- + + + + + + + + + + + +\n + + +. + +- + +- +\n +. + +. + + +\n + + +. + +- + +- +\n +. + +. +\n + + +. + +- + +- + + + + + + + + + + + + + + + + + +\n + +. + +. + + + + + + + + + + + + + + + + + + + +\n + + +. + +. + + + + + + + + + + + + +\n + + +. + +. + + + + + + + + + + + + + + + + +\n +- +- +- + + + + + + + + + + + + + + + + + +\n + + + +\n + +- +\n + + +\n + +\n +36186 + + +\n + +. + + +\n + + +. +- +- +- +- + +\n + + + +. + +. +\n +\n + +- +- +- +- +- +. + +. +. +. +. +. +- + +- +\n + +. + +. +. +. +. +. +\n + + + + +- + +- +\n + + + + + + +\n + + + + +. +- +. +- +\n +- +- +- +- +- +- +- +- +\n +- + +- + + +\n +. + +. + +\n +- + +- +- +- +- +- +\n + +. +- +. +- +- +- +- +\n + +- + +\n + + + + +- + +- +- + +- + + + + + + + + + +\n + + + + +. + +. + + + + + + + + + +\n +. +. +. +. +. +. +. +- +. +- + + + + +\n +- +- +- + +- + + + + +. + +. +- +. +- +\n + +. +. +. +- +. +. +- +. +. +- +. +. +. +. +. +- + +- + + + +\n +- +- +- +- +. +. +. +. + + + + + + + + + +\n + +. +. +. +- +. +- + +. +. +. +. +. +. +. +. +. +- + +- + + +\n + +. +. +. +- +. +- +- + +. +- +. +. + +- +- +- +- + + + +\n + +. +. +. +- +. +- + +- +. + +. +- +- +- +- +- +\n + +. +. +. +- +. +- + +- + + +\n +. +- +. +- + +- +- +- +- + + + + + +\n +- +- +- + + + + + + + + + + + + + +\n + +. +. +. +. +. +. +. +. + + +- +- +- +- +- +- + +\n +. + +. + +- + +- +- +\n +-\n + +. +. +- +- +- +- + + + +. + +. + + + + +- +- +- +- + +- + +- +- +- +-\n +-\n +- +- +- +- + +- +- +- +- + +- +- +- +-\n +-\n + +- +- +- +- + +- +- +- +- + +- + +- +- +- +- +- +- +- +-\n +-\n + +- +- + +- + +- +- + +- + +- +- +- +- +\n +-\n +- +- +- +- +- +- + +- + +- + +- + +- +- +-\n +-\n +- +- +- +- +- + +- + +. +- +.\n +-\n + +- +- +- +- +- +- +- +- + +. +- +. +- +\n +-\n + + +- + +- + +- +- +- +- +- +- +- +- +- +- + +- +- +- +- +\n + +. + +. + + + + + + +. + +. +- +- +- +- +- +- +\n +-\n + + +. +. +. +. + + + + + + + + +. + +. + + + + + + + +- +- +- +- + + + + +. +\n +.\n + + + + +- +- +- +- + + + + + + + + +. + +. + + +. +. +. +. +. + + +- +- +- +-\n +-\n +\n + + + +- +- +- +- + + + +. + +. + + + + + + + + + + +. + +. + + +- +- +- +. +\n +.\n + + + + + + + +. +. +. +. + + + + + +. +. +. +. + + + +\n + +. + +. + +. + + + + +- +- +- +- +- +- +- +. +. +. +- + +- +- +- +- +- +- + +- +\n + +- + +- + +- + +- + +. +. +. +. +. +- + +- +- +-\n +-\n + +. +. +. +. +. +- + +- +- + +- + +. +. +. +. +. +. + +- +\n +-\n +- +. +- + +. +. +. +. +. +- +- +- +- +- +- + +\n +. +. +. +. +- +- +- +- + +. + +. + +. +. + +- +\n +-\n + + + + + +- +- +- +- + +- + +- +- +- +- + + +\n + +- + +- + + +- + +- + + +- + +- +. + +- +- +- +-\n +-\n + + + + + + + + + +- + +- +\n +. +. +. + +. +. +. +. + +- +- +- +- +\n + +. +- +- +- +- +-\n +-\n + + + + + + + + + + + +- + +- + + + + + + +- + +- +\n +- +- +- +- + + +. + +- + +- + +- + +- +- + +- + +- + +- + + +- + +- +- +-\n +-\n +. +. +. +. +. + + + + + +- +- +- +- + + + +\n + + + + + + +\n +- +- +- +- +- +- + + + + + + + + + + + +\n + + + + + + + + +. +. +. +. + + + + +\n + + +- + +- + + + + + + +- +- +- +- + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + +. + +. + + + + + + +\n + + +- + +- + + + + + + + +- +- +- +- + + + + + +\n + + +- + +- + +- +- +- +- +- +- +- +- +- +- +- + +- + +- + +- +- + +- +- +- +- +\n +-\n +- +- +- +- +- +- +- +- +- +. +- +. +- +- +- +- +- +- +. +- +- +- +- + + +- +- +-\n +-\n + + + + + +- + +- +- +- +- +- +- + +- + +- +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n +- +- +- + +- + +- + +- + +- +. + +. + + +- +- +- +- +- + +- +. +\n +.\n + + +. + +. +. +. +. +. +- +- +- +- + +. + +. + + +. + +. +- + +- +\n +-\n +- +. +- +- + +- + +- + +- + +- +- + +- +. +. +. +- +- +- +- +- +- +\n +. + +. +- +- +- +- +- +- + + + +- + +- + +- + + +\n +. + +. +- +- +- +- +- + + +. + +. +- + +- + +. +\n +.\n +. + +. +- +- +- +- + + +. + +- + +. +\n +.\n +. + +. + +. + +. + + + + + +- + +- + +. +\n +.\n +. + +. +- + +- +- + +- + + + + +- + +- + +. +\n +.\n + + + + +- + +- +- +- +- +- +- +- +- +- +- +- + + + + + +- + +- +. + +. +\n + +. + +. + +- + +- + +- +- +- +- +. +. +. +- +- +- +- +. +. +. +. + + + +\n +- + +- +- +- +- + +- + + + +- + +. + +- + +- +. +. +. +. +- +- +- +- +- +-\n +-\n +- + +- + +- +- +- +- +- +- +- +- +- +- +- +- +- +- + +- + +. + +- +\n +-\n + + + + + + + + + + + +- +- +- +- + + +. + +. + +. +\n +.\n + + + + + + + +. + +- + +- + + + +- +- +- +- +- +- +-\n +-\n + + + +- + +- + +- + + +- +- +- +- + +- +- +- +- +- + +- +\n +-\n +. + +. +. + +. + +. + + +. + +. + +. + + + +- + +- + + + +\n + + +- +- +- +. +- +. +- +- + +- +- +- +- +- +- +- + +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n + +- +- +- +- + +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- + + +- + +- +- +\n +-\n + + +. + +. + + + + + + +. + +. +- +- +- +- + +- + +- + +- + +- +- + +- +\n +-\n +. +. +. +. + + +. +. +. +. + +- + +- + +. + +. +. + +. + +- + +- + +. + +. + +- + +- +\n + +- + +- +- +- +- +- +- + +- +- +- +- +- +- +- + +- + +- + + + + + +- +\n +-\n +. + +. + + +. + +. + +. + +. + + + + + + +- +\n +-\n + + +. + +. + + + +. +. +. +. +- + +- + +- + +- + +- + +- +\n +- +- +- +. + +- + +- +. + +. + + + + +. + +. + +\n +\n + +. +. +. +. + +. +. +. +. +- +- +- +- +- +- +- + +- + +- +\n + + + +. + +. +. +. +. +. +. + +. + + +. + +- + +. +\n +.\n +\n + + +. +. +. +. + + + + + +. + +- +- +- +- + + +. +. +. +. + + +\n +. + +. + + + + + +- + +- + + + + + + + + +- + +- +\n +. + +. +. + +. + + +- + +- +\n +. + +. + + + + + + + + + +- + +- + +- +\n +- +- +- +- +. + +. +- +- +- +- +- + + + +. + +. +. +. +.\n +.\n +. + +- +- +- +- + + +. +. +. +- +- +- +- + +- + +- +\n +. + +. + + + + + +. +. +. +. +. +.\n +.\n + + +- + +- +- + +- +- + +- + +- +\n + + + + + + +. + +. +. +. +. +. + + +- + +- +\n + + +. + +. +. + +. + + + +- + +- +- + +- +- +\n +-\n +. + +. +- +- +- +- +- + +- +. + +. +. +. +. +. +- + +- + + +- + +- +\n + + + +- +- +- +- +- + +. +. +. +. + +. +. +. +. + +. + + + + +- +- +-\n +-\n + + + +. + +. + + + + + + + + + + + + +- +- +- +- + +- + +- +- +\n +-\n + +- + +- +- + +. +- +. +- + + + + + +- +- +- +- + +- +\n +-\n + + + + +- +- +- +- +- +- +- +- +- +- + +- +- +- +- +- +. + +. + +. + +. +\n +\n +38289 + + + + +. + +- + +- +- +- +. + +. + + +\n +- +- +- +- +- +- +- +- +- +- +- +- +- +- +\n +\n +- +- +- +- +- +- +- +- +- + +- + + +\n +. + +. + + + + + + +- + +- +. +. +. +. +\n + + +. + +. + + + + + +. + +- +- +- +- +\n + +. + +. +- +- +- +- + + + +\n + + +- + +- +- +- +- + +- + +- +\n +\n +- + +- +- + +- + + +. + +. + +\n +\n + +- +- +- +- +- +- +- +- +- +- +- + +\n +\n +. + +. + + +. +. +. +. +- + +- +\n + + +- + +- +. + +. +- + +- +- +- +- +- +- +\n + +- + +- +. + +. + +\n +- +- +- +- +- +- +- +- +- +- +- + +- + + +. + +. +\n + +- +- +- +- + +- +. + +. +. + +. +. + +. +. + +. + +\n +. + +. +. +. +. +- + +- + + + + +. + +. + + + +\n +. + +. +. +. +. +. +. + +. + + +. + +. +- +. +- +. + +\n +- + +- +. + +. + + +. + +. + + +. + +. + + +. + +. +- +- +- +- +\n + +. +. +. +. +. +- +- +- +- +- +- +- +- +- +- +- + +- + +- + + +. + +. + + +- +- +-\n +-\n + + +. + +- + +- + + + + + +- +- +- +- +- +- + +- + +- + +- +\n +-\n + + +- + +- +- + +- +- +- +- +- +- + +- + +- +- +- +- +- +- +- +- +- + +- +- +-\n +-\n +- +- +- + +- + +- +. + +. + + +. + +. +- + +- +. + +. + + +- +- +-\n +-\n + + +- + +- + +- + +- +- + +- +- + +- +- +- +- + +- +- +- +- +- +- +- +\n + + + + + + + + +\n + +- + +- +- + +- + + + +\n + +- + +- + +- +- + +- + +\n + + +- +- +- +- +- +- +- + + +\n + + + +- + +- + + + + +\n +. +. +. +\n +- + +- +- +- +- +\n +\n + + + + +\n +- + +- +- +- +- +- +- +\n + +- +- +- +- +\n +- +- +- +- + +- +\n +- +- +- +- + +\n + + +- +- +- +. + +- +- +- +- + + + +\n +- +- +- +- +- +- +- +\n + +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n +- + +- + +- + +- +- +- +-\n +-\n + +- + + + +- +- +- +- +- +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- + +\n +- +- +- +- +- +- + +- +- +- +- +- +- +- +- +- +-\n +-\n + +- +- +- +- + +- + +- +- +- +- +- +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- + +- + + +\n + +- +- +- +- + +- + +- + +- +- + +- + +- +- +-\n +-\n +- + +- +- + +- + +- + +- +- +- +- +- +- +- +- + +- + +- +- +-\n +-\n +- +- +- + + +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n +- +- +- + +- +. + +. + + +- + +- +- +- +- +- +- +- +- +- +\n +-\n + +- +- +- +- + +- + +- + +- +- +- +- + +- + +- + +- + +- + +\n +. +. +. +- +- +- +. +. +. +. + + + + + +- +- +- +- + +- +\n +-\n + + + + + + + +- +\n +-\n + + + + +\n + + +- + +- + +- + +- +\n +. +. +. + + +- +- +- +- +\n +-\n + + + + + +- + +- + +- +\n +-\n +. +. +. +. +.\n +.\n +. +. +. +. +. + +. + + +- +\n +-\n + +. +. +. +. +. + + + +. + +. + +- +\n +-\n + +- +- +- +- + + +. + +. + +- +\n +-\n + + +- + +- + + + +. + +. + +- +\n +-\n + +- +- +- +- + +- + + + +- +\n +-\n +. +. +. +. +- +- +- +- + + + +- +\n +-\n +. +. +. +. +. +. +. +. + + +. + +- +\n +-\n + + + +- +- +- +- +- +- + + + +- +\n +-\n +. +. +. +. +. + +. + + + +- +\n +-\n +. +. +. +. +- +- +- +- +- +- + + + +- +\n +-\n + + +- + +- + + + + +- + +- +- +- +- + +. + +- + +- +- + +- +- +-\n +-\n +. + +- + +. +. +. +. + +- + +- +- +- +- + +. + +. + + + + +- + +- +- +-\n +-\n + + +- +- +- +- +- +- +- + + +- + +- +- +- +- + + + +- + +- + + +- + +- +- +-\n +-\n +. + +. + + + + + + +- + +- +- +- +- + +. + +. + + + + +- + +- +- +-\n +-\n +39398 . + +. +. + +. + + +- + +- +- +- +- + +. + +. +. + +. + + +- + +- + +- + +- + +- +- +-\n +-\n +. + +. +. + +. + + +. + +. + + + +- + +- + +- +- +-\n +-\n +. + +. +. +. +. +. + +- +- +- +- +- + + +- + +- +- +-\n +-\n + +. +. +. +- + +- + +- + +- +- +- +- + +- +- +- +- +- + +- + +- +- +-\n +-\n +- +- +- +- +- +- + + +- +- +- +- + + +. +. +. +. +- +- +- +- +. +\n +.\n + +. +. +. +- + +. +- +. +- +- +- +- + +- + +- +- + +- + +- +- +- +- + +. +\n +.\n + +- + +- +- +- +- +- +- + +- + +- +- +- +- +- +. +\n +.\n + + + + + + +. + +. + + + + + + + + + +\n + +. + +. + + +. + +. + + + + + + + + +- +- +- +- + +- + + + +\n +- +- +- +- + + + + +- + +- + + + + +- +- +- +- + + + +\n +- +- +- +- + + + +. +. +. +. +. +. + +. + +. +- + +- + + + + + + +\n +. + +. + + + + + + + + + + +- +- +- +- + + + +\n + +. + +. + +. + + + + +- + +- + +- + +. + +. + + +- +- +- +- + + +\n + +- + +- +. + +. + + + + + +- + +- + + + +\n + +- + +- + + + + + + + +- + +- + + + +. + +. + + + +\n + +. + +. + +. +. +. +. + +- + +- +- +- +- +- +- + +- +- +- +- + +- +\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n + +. +. +. +. + + + +- + +- +- +- +- + +- +\n +-\n + +- + +- +- +- +- +- +- + + +- +\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n + + + + + + + + +. + +. + + + + + +- +- +- +- + + + +\n +. + +. + + + + + +. +. +. +. + + + + + + + + + + + +\n + + +. + +. + + + +. +. +. +. +. +\n +. + +- + +- + + + + + + + +. +. +. +. +\n + +. +. +. +. + + +- + +- + + + +\n + +- + +- +- +- +- +- +- +\n + +. +. +. +. + +. + +. +\n + +- + + +\n + +. +. +. +. +\n +- +- +- +\n + + + + + +\n + + +. + +. + +\n +- +- +. + +. + +. +\n +. +. +. +. +\n + + + +\n +40021 + + + +. + +. + +. + + + + + + + + +- + +- + +- + +- + +\n + + +. +. +. +. +. + + + + + + + + + + +. + +. + +. + + + + + +. + +- + +- +\n + + +- + +- +. + +. + + + + + + + + + +. + +. + +. + + +\n + + + + + + +. +. +. +. +. +. + + + + + + + + + +. + +. + +. +- + +- +\n +-\n + +- +- +- +. +. +. +. + +. +. +. +. + + +. + +. + +- +- +- +- +\n +-\n + +- +- +- +. +. +. +- +- +- +- +- +- +- + +. +. +. +. +- +- +- +- +-\n +-\n + + + +- + +- +- +- +- + +. +. +. +. +. + + +. + +- +- +- +- +\n +-\n + + + +- +- +- +. +. +. +- + +- + +. + +- +- +- +- +\n +-\n + + + + + + + + +- + +- +\n +-\n + + +- +- +- +- + + +- +\n +-\n + +- +- +- +- + +- +\n +-\n + +- +- +- +. +. +. +. + + +. + +. + + + +- +- +- +- +- + + +\n + + + + + + + +. + +. + + + +. + +. + + + +- +- +- +- +\n +. + +. + + + + + + + + +. + +- +- +- +- + +- + +- +\n +-\n +. + +. + + + + + + + +. + +. +- +- +- +- +- +- +- +- +- +- +- +- +\n +-\n + +- + +- + + +. + +. + + + + +- + +- +- +- +- +. +\n +.\n + +- +- +- +- +- +- +- +- +- + + + + + +- + +- +\n +-\n + + + +- + +- + +- + +- + +- +- +- +- + + +- + +- +\n +-\n + + + +. + +- + +- + +- + +- +- +- +- + +- +\n +-\n + +- +- +- +- +- + + +- + +- + +- + + +. + +. + + + +- + +- +\n +-\n + + +. +. +. +. + + + + +- + +- +. +. +. +. +- +\n +-\n + +. +. +. +. +. + + + + +- + +- +. +. +. +. +- +\n +-\n + + +. + +. + + +- + +- + + +. +. +. +. + + +- +\n +-\n + + +. + +. + + +- + +- + + +- +- +- +- +- + +- + +- +\n +-\n + +. +. +. +. +. +- + +- + + + +- +\n +-\n + +- + +- +- + +- + + + +- + +- +- +- +- +. +\n +.\n +. +. +. +- + +- + +- + +- + + +- +- +- +- +- + +. +- +.\n +-\n + +- +- +- +- + + + + + + + +. + +. +. +. +. +. +. +. + + + + +- + +- +\n +-\n +. + +. + + + + +- +- +- +- + + + + +. +. +. +. +. + + + + + + + + + +\n + +- +- +- +- + + +- + +- + +- + +- + +- + +- + +- +\n + +- +- +- +- + +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n + +. +. +. +. +- +- +- +- +\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- + +- +. + +- + +- +- +- +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- + + + +\n + +- +- +- +- + +- + +. + +. + + + +. + +- + +- + + + +. + +. + + + +\n +. +. +. +. +. + + + +. + +. + + + + + +- + +- +. + +. + + + + + + + + +\n + + +. +. +. +. + + + + + + + +- + +- +\n + + +. +. +. +. +. +. +. +. +. +. +- + +- + +- + +- +- +- +- + + + +\n + + + +- + +. + +. + + +- + +- +- +- +- +- + +- + +- + +- +- + +- +\n + + + +. + +. + + + + + + + +- + +- + + + + +- + +- + + + +\n + +- + +- + + + + + + + +- + +- + + + + + +. + +. + + +. +\n +.\n + + + +- + +- + +. +. +. +. + + + + +- + +- + +- +- +- +- + +- + +- +\n +-\n + +- +- +- +- +- +- +- +- +- +- +- +- +- +- + +- + +- +- +-\n +-\n +- +- +- +- +- +- + + +- +- +- +- + +- +- +- +- +- + + +\n + +- +- +- +- +. +- +. +- +- +- +- + +- +- +- +- + +- + +- +\n + +- +- +- +- +. + +- + +- +- + +- + + + + +\n + +. + +- + +- +. + +. + + +- + +- +. + +- +- +- +- +- + +- + + +\n + +. +. +- +- +- +- + + + +. + +. + + + + + +- +- +- +- + +- +- +- +- +- +- +- +-\n +-\n +- +- +- +- + +- +- +- +- + +- +- +- +-\n +-\n + +- +- +- +- + +- +- +- +- + +- + +- +- +- +- +- +- +- +-\n +-\n + +- +- + +- + +- + +- + +- +- +- +- +\n +-\n +- +- +- +- +- +- + +- + +- + +- + +- +- +-\n +-\n +- +- +- +- +- + +- + +. +- +.\n +-\n + +- +- +- +- +- +- +- +- +- + +. +- +. +- +\n +-\n +41232 . +- +. +- + +- +\n +- +- +- +- +- +- +- +-\n +-\n + + + + + + + + + + + + + + + + + + + +- +- +- +- + +- +\n +-\n + + + + + + + + +. + +- +- +- +. + +- +\n +-\n + +. +- +. +- +- +- +- +- +- +- +- + +- +- +- +- +. +\n +.\n + + + + + + + +- +- +- +- +- +- +- +- +- +. +\n +.\n + + + + +- +- +- +- + + + +. + +. + +- +- +- +- +- +- +- +-\n +-\n + +. +- +. +- +- +- +- +- +- +- +- +. + +. + + +. + +- +- +- +. + +- +- +-\n +-\n + + +. + +. +- +- +- +- +. + +. +- +. +- +- +- +- + +- + +- +- +- +- + +. +- +. +- +- +-\n +-\n + +. +- +. +- +- +- +- + +- +- +- +- +- +- +- +- +- +- +- +- + +- + +- + + +. +\n +.\n +. +. +. +. +- + +- + + +. +. +. +. + + + +- + +- + +. +. +. +. +- +.\n +-\n + + + + + + + +- + +- + +. +- +. +- + +- +- +- +- +\n + + +- + +- + +. +- +. +- +- +- +- + +- + + + +- + +- + + +\n + +. +- +. +- + +- + + +- +- +- +- + +- + + +. + +. +. +. +. +. + +- +- +-\n +-\n +. +. +. +. +. + +. + + + + +- +- +- +- + + + + + +. +. +. +. +- + +- +\n +- +. +- +. + +. + + +- + +. +. +. +- +- +- +- + + +- +- +- +- +\n + +. +- +. +- + + +- + +- +- +- +- +- + +- + +- +- +- +- +- +- + + + +. + +. + +\n + + + + + +. + +. + +. + +. + + + +- +- +- +- +- +- +- +- +- +- + +- + + +\n + + + + + + +- + +- + +- + +- + +. + +. +. + +. +. + +. +. +. +. +. +- +- +- +- +\n + +. +- +. +- + + +- + +- +- +- +- +- + +- + +- +\n + + + + + + +\n +41722 + + +. + +. + + +. + +. +\n + +. +. +. +- +- +- +- + +- + +\n + +- +- +- +- + +- +- +- +- + +\n + +. +- +. +- +- +- +- + +- +\n + + + +. + +. + +\n + + + + +. + +. +\n + +. +- +. +- +- +- +- + +- +\n + + + +. + +. + +\n + + + +- + +- +- +- +- +- +- +\n + +. +- +. +- +- +- +- + +- + +\n + + + + + + +- + +- +. + +- + +- +\n + + + + + +. +- +. +- + +- + +\n + + + +- + +- + +- +- +- +- +\n + +- +- +- +- +- + +- + +- + +- +- +- +- +- +- +- + + + + + + + + + + + + + + +\n +- +- +- +- +- +- +- +- +- +- +- +- +- + +- +- +- +- +- + + + + + + + + + + + + + +\n + +- +- +- +- +- + +- + +- + + +. + +. + + + + + + + +- +- +- +- +- + + + + + + +\n + + + +. +. +. +. +. +. +- + +- +- +- +- +- +. + +- +- +- +- +- +- +- + +- +. + +- +- +-\n +-\n + + + + + +. + +- + +- +- + +- + +- + + + +- + +. + +. + +. +. +. +- + +- +\n +-\n + +- +- +- +- + +- + + + + + +- +- +- +- +\n +-\n + +- +- +- +- + +- + +- +- + +- + +- + +- +- +- +- +- +- +- +- + + +. + +- +\n +-\n + + + + + + + +- + +- +- +- +- +- +- +- +- +- +- +- +- +- +- +\n +-\n + + + + +- + +- + +. + +. +. + +- + +- +\n +-\n + +. +- +. +- +- +- +- +- +- +- + +- + + + + + + + + + + + +- + +- +\n +-\n + + + + +- + +- +- +- +- + +- + + + + + +- +- +- +- +\n +-\n + + + + +- + +- + +- + +- + +- + +- + +- + + + + + +- +- +- +- + +- +\n +-\n + + + +- + +- + +- +- + +- +- +- +. +. +. +- + +- +\n + + + + + + +- + +. +- +. +- + + + + + + +. + +. + +. + +- + +- +- +- +- +\n + +- +- +- +- + +- + + + + + + +- + +- +- +- +- +- +- +- +- +- +\n + + + + + + + + +. +. +. +. +. + + +- +- +- +- +- +- +- +. + +. + + + + + +- + +- +\n + +- +- +- +- + +- +- + +- +. + +. + + + + +. + +. +. +. +. +. + +- + +- + +- +\n +-\n +- +- +- +- +- +- +- +- +. + +- +- +- +- +- +- + +- + +- +- +- +- +- +-\n +-\n +. +. +. +. +. +. +. +. +. +. +. +. +. +- +- +- +- +- +- +- +- +- +. +\n +.\n +. +. +. +. +. +- + +- +- +- +- + +- +- +- +- +- +- +- +- +- +- + + + + +\n + +- +- +- +- +- +- +- +- +. +\n +.\n +. +. +. +. +. +.\n +.\n +. +. +. + + +. + +. +- +- +- +- + +- + +- +- +- +- +- + +- +- +- +- +\n + + +- + +- + +- + +- + + +- + +- + + +- +\n +-\n + +- + +- +- +- +- + +- +- +- +- +- + +\n +. +. +. +. +. +.\n +.\n +. +. +. +. + +- +- +- +- +. + +. + +. +- + +- + +. +- +. +- +\n +- +- +- +- + +- + +- +- +- +- + +. + +. +\n +- +- +- +- + +. + +. + + + + +. + +. +\n +- +- +- +- + +- +- +- +- +- +- +- +- + + + +\n +\n + + + +. + +- + +- +. + +. +. + +- +- +- +- +\n + +- +- +- +- + +- +- + +- + + + + + +- +- +- +- +. + +. + + +\n + + + + + +. +- +. +- + +- + +- +- +- +- +. +- +. +- + + + + + + +\n + + + + +. + +. +. +. +. + + +. +. +. +. +. + + + +\n +\n + + + + + + + + + + + + + + + + + + + +- +- +- +- +. +. +- +. +- + + +\n + + + + + + + + + + + + + + + + + + +- + +- +- +- +- +- +- +\n + + + + + + + + + + + +- +- +- +- +- +- +- +- + +- +\n + + + + + + + + + + + + + + + +. + +. +. +. +. +. +. + +. + +\n +- +- +- +- +- + + +\n +- +- +- +- + + + + +\n + +- + +- + +- +- +- +. +. +. +. + +\n + +. +. +. +. +. +. +. +. +. +. +\n +.\n +. +. +. +. + +. +. +. +. + + + +\n + + +- + +- +- +- +- +- +\n +-\n + + + + + + + + + + + + +- + +- +- + +- +. + +. + +\n + + + + + + + + + +- + +- +- + +. +- +. +- + +- +- +- +- +\n +-\n + + + + + + + + + +. + +. + +- + +- +. + +- +- +- +. + +. +\n +.\n + +- + +- +. +- +. +- + + +\n + +. + +- +- +- +- +. + +- +- +- +- + +. + +. + +. +\n +.\n + +. +- +. +- + +- +. + +. + +. + +- +- +- +. +\n +.\n + + +- + +- +- +- +- +. +- +. +. + +- +- +- +. +\n +.\n +. + +. +. +. +. +. + +. + +. +- +. +- +- +\n +-\n +. +. +. +. + +. + +. +- +. +- +- +- +- +. +\n +.\n + + + + + + + + +- +- +- +- +- + +- + +- + +. +- +. +- +\n +-\n + +- +- +- +. + +. + +. + +- + +- + + + + + + +- + +. +- +. +- +\n + + +. + +- +- +- +- + +- +. +- +. +- + + + + + + + + + + + +. + +. + +. + +- +- +- +. +\n +.\n + + +. + +. + +- + +. + +. + +. + + +. + +. + + +- + +. + +. +\n +.\n + + + +. + +. + + +. + +. + + + +- + +- + +. + +. + +. + +. + + + +. + +. + + +. +\n +.\n + + + + + + + + + + +- + +. +- +. +- + +. + +- + +- +. +- +. +- + +- +. +- +.\n +-\n + + +. + +. + +. +. + +- + +- +. +- +. +- + +- +. + +. + + +\n + + + + + + + +. + +- +- +- +. + +. +- +. +- +- +\n +-\n + + + + + + +. +- +. +. + +. +. + +. +. + +. +. + +. + + + + +- + +- + +- + +. +\n +.\n + + + + +- + +. +- +. +- +\n +-\n +43305 +- +- +- +- + + + + + +- + +- + + +. + +. +- +. +- +- +\n +-\n + + + +- + +- +. + +. + + +. +- +. +- + +- + + + + +- +- +- +- + +- +\n + + + + + +. + +. + + + +\n + + +- +- +- +- +. + +- +- +- +- + + + + + +- + +- + + +- + +- +\n +-\n + + + + +- + +- + +- +- +- +- +. +- +. +- + +. + +. +- + +- +\n +\n + +. + +. + +- + +. + +. + + + + +. +- +. +- + + +. +\n +.\n + + +. +- +. +- + + + +- +- +- +- + + +. +\n +.\n + + + +- + +. +\n +.\n +- +- +-\n +-\n + + + +\n +43480 + + + + + +. + +. +. +. +. +. + +\n +- +- +- +- + +- +- +- +- + +- +- +- +- +\n + + + + +. + +. + +- + +. +. +. +. +. +. +\n + + + +. + +. +- + +- +- +- +- +- + +- + +\n + +. +- +. +- +- +- +- + +- + + + +- + +- + + + + + + + + + + +\n +- +- +- +- +- +- +- + +- + +. + +. + + + + + +. +- +. +- + + + + + + + + + +\n + +. + +. + +. +- +- +- +- +. + +. +- +- +- +- + + + + + + + + + +\n +- + +- +- + +- +. + +. + +- + +- + + +\n + + + +- + +. + +. + +. + +. +- +- +- +- +. + +. +- +- +- +- +\n + + +. +- +. +- +- +- +. + +. + + +. +- +. +- + + +\n + +- +- +- +. + +. +. +. +. +- + +- + +- +- +- +- + +\n + +- + + +. + +. +- +. +- + +- + +- + +- + + + + + +\n + +. +. +. +. + +. + +. + + + +. + +. + +. + +. + + + + + + + + + + + +\n +. +. +. +. +. +- +- +- +- +- + +. +. +. +- +. +- +. + +. + + + + + + +\n + +. + + + + + +- + +- + +. + +. + + +. + +. + + + + + + + + + + +\n +- + +- + + + +- + +- +- + +- + +- + +- + +- +\n + + + + +\n +43846 + + + + +. + +. + + +\n + + +. + +. + +. + +. +\n + + + + + + +\n + +. +- +. +- +- +- +- + +\n +. + +- +- +- +- +- +- +- +- +\n + +- +- +- +. + +. +\n + +- +- +- +- + + + + + + + + + + + +\n + + +. +. +. +. + +. + + + +\n +- +- +- +. +. +. +. +. + + + + + + + + + +\n + + +- +- +- +- + +- + + +. + +. + +. +\n + + +. +. +. +. + +. + + + +. + +. + +\n + +. +- +. +- + +. + +. +. + +. + +- +- +- +. + +. +\n +. +. +. +. + + +- + +- + +. + +. + +. + + + +. + +. + +\n + + + + + +\n + + + + + + + + + +. +. +. +. + +. +- +. +- +- +- +. +. +. +. + +\n + + +. +- +. +- + +. +. +. +- + +- + +- +- +- +- +- + +\n + + + +. + +. +- +- +- +- + + + +. + +- +- +- +- +\n + + +- + +- + + +. + +. + +\n + + + + + + +\n +\n +\n +. +. +. +\n + +- +- +- +. + +. + + +\n +\n + + +- +- +- +- + + + +. +. +. +. +\n +. + +. + +. + +. + +. + + + +\n + +. + +. +. +. +. + +. + +. +\n +. +. +. +- + +- +- +- +- +- +\n +- +- +- +. + +- + +- +\n +. + +. +. + +. + +\n +. +. +. +. +. +. +. + + +\n +. +. +. +- +- +- +- +. + +. + +- + +- +\n + +. + +. + +- +- +- +- +. + +. +\n +- + +- +- +- +- +- + +- + +- + +\n +- + +- +- +- +- +- +- + +- + +- + +\n +. +. +. +. +. +. +. +. +. +. +. +. +. +. +\n +. +. +- +- +- +- +. +. +. +- + +- + +- + + +\n +. +. +. +. + +- +\n +-\n + + +. +. +. +. + +. +. +. +. + +. +. +. +. + +\n + + + + + +. +. +. +. +. +. +. +. +. +. +. +. +. + + +\n +44346 \n + + + + + + + + + + + + + + + + + + + + + + + + +- +\n +-\n + + + + + + + + +- +- +- +- + + + + + +- + +- + +- +- +- +- +- + +\n + + + + + + + + +- + +- + + +- +- +- +- +. + +. + +. + +. +. + +. +\n + + + + + + + +- + +- + + + +- + +- + + +. +\n +.\n + + + + + +- + +- +- +- +- +- +. + +. + +- +\n +-\n + + + + + + +. +. +.\n +.\n + + + + + + + + + + +- +- +- +. +- +. +- + + + + + + + +. +. +. +. +- +.\n +-\n +44513 +\n +- +\n +-\n + +\n + +\n + +\n +44525 +- + +- + + + +. + +. + +. +. +. +. + +\n + +- + +- + + +. + +. + + + + +. + +. + + + +\n +- +- +- +- + + + + + + +- +- +- +- + + +. +\n +.\n + + +. +. +. +. +. + + + +. + +. + + +. + +. + + + + + + + + +. +\n +.\n + + + +. + +. + + + +. + +. + + + + + + + + + + + + + + +- +- +-\n +-\n + +. + +. + +. + +- + +- + +- +- +- +- + +. + +- +\n +-\n + + + + + +- +- +- +- + + + + + + + + +. +. +. +. + + + + + + + + +. +\n +.\n + +- + +- +- +- +- +- +- +- +- +. + +- + +- +\n +-\n + + + +. + +. + +. + +. + + + + +- + +- +- +- +- +\n +-\n + + + + + +. +. +. +. + + +. +. +. +. + + + + +- + +- +. + +. + + + +- +- +- +- + +. + +. +\n + + + + + + + + + + + +. +. +. +. +. + + + + + + + + +. + +. + + + + + +. + +. + + + +- +- +- +- +\n +-\n + +- + +- + + +- +- +- +. + +. + + + +. + +. + +- +\n +-\n + +- + +- + +- + +- +- + +. +- +. +- +\n + +- + +- + +- +- +- +- +- +- +- + + +- +- +- +- +- + +- +\n + +- + +- + +- + +. +. +. +. +. +. + +. + +. + + + +- +- +- +- + + +. +\n +.\n + + + + + + + +. + +. + +. + +- + +- + + + + +. + +. +\n + +- + +- + +- + +- + +. + +- + +- + +- + +- +- + +- +\n + +. + +. + +. + +. + +. + + + +- + +- +. +. +. +. + + +. + +. +\n + + +. + +. +- +- +- +- +- + +- + + +\n + + +. +. +. +. + + +. +. +. +. + +- + +- + + + +\n + +- + +- + +- +. +. +- +. +- +- + +- + +- +. + +. +\n +.\n + +. + +. + +. +. +. +. + +. +- +- +- +- +- + +- +- +-\n +-\n + + +. +. +. +. +- + +- + + + +. + +- +\n +-\n + + +. +. +. +- +- +- +- + + + +- + +- +\n + +- + +- + +- +- +- +- + +- + + + + +- + +- + +- +- +- +- +- +. + +. + +\n +. +. +. +. + + + + + + +. + +- + +- +- + +- +\n +-\n + + + + +. + +. + + + + +. + +- + +- + + + +\n + + + + + +. + +. +- +- +- +- + + + + + + + +. + +. + +. +\n +.\n + +. + +- +- +- +- + + + + + + + + + + + +- +\n +-\n +. + +. + +. + +. + + +. + +. + + + + + + +- +- +- +- +\n + + + + +. + +. + + + + + + + + + + + + + + + +\n + +. + +. + + + +- + +- + +- + + + + + +\n +\n + + + + +. + +. + + + + + + + +\n + + + +. +. +. +. +- +- +- +- + + + + + + +. + +- + +- +- + +- +\n +-\n + +. + +. + + + + + + + +. + +- +- +- +- + +. + +. + +\n +\n +- + +- + +- + + +. + +. + + + + +. + +- + +- + +- +- +- +- +\n + +- + +- + +- + +\n + + + + + + +\n +45373 + + + + + + +\n + + + + + + + + + +- + +- +\n +-\n + + +. + +. +. + +. + + +. +. +. +. + +. + +. + +. + + + +\n + + + +. + +. + + +- + +- +- +- +- + +. + +. + + +- + +- +- +- +- +. + +. +\n +.\n + + +. + +- +- +- +. +. +. +. + +- + +- +- + +- + +- + +- + +- +. +. +. +. +.\n +.\n + + + + + +. + +. + +. +. +. +. + + +. + +- + +. + +. + + + + + + + + + +\n + + + +. + +. + +- + +- +- +- +- + + +. + +- + +- +- +- +- +. +. +. +. +\n +. + +. + + + + + +. + +- +- +- +- +. + +- + +- + + +\n + +. + +. + +- +- +- +- +- + +- + +- + + + + +. + +. + +. + +. + +. +\n +.\n + + + + +. + +. + + +. + +- + +. + +. + +. + +. + +. + +- +- +- +- +\n + +- + +- + +- + +- + +. + +. +. + +. +. + +. +. +\n +.\n +- +- +- +- +- + +- +- + +- +- +- +- +- + + +- +- +- +- + +\n +\n + + + + + +. + +. + + + + +- + +. + +. + + + + + +. +\n +.\n + + + + + + + +- + +- + + + +\n + + +. + +. +- + +- + +- +\n +-\n + + +- +- +-\n +-\n + + + +. + +. + +- +- +- +- +. +. +. +. +\n +- +- +- +. +. +. +- +\n +-\n + +. + +. +\n + + + +. +. +.\n +.\n + +. + +. +\n + + +. + +. +. + +. +\n + + + +\n +\n + +\n +- +\n +-\n +- +- +- +- +- +\n +- + +- +\n +- +\n +-\n +\n +45797 \n +\n + +\n +. +. +. +. + + +\n + +- + +- + +- +\n +. + +. + + + +\n + +. +. +- +. +- + +. + +. + +\n + +- + +- +- +- +- +- +- +- +- +- +- + +\n + +- +- +- +- +- +- + +\n + + +. +. +. +. + + + + + + + + + + +. + +. + +. +\n + +. + + + + + +- + +- +- + +- + + + +\n + +. +. + +. + + +. +. +. +. + +. + +- + +- +\n + + + +. + +. +\n + +- +. + +. + + + + + + +. +. +. +. + +- + +- +- +- +- +\n +- +- +- + +. + +. + +. + + +. +. +. +. + +- + +. + +. + +- +\n +-\n +- +- +. + +. + +. + + + + +. + +. + +. +\n +.\n + +- +- +- +. + +- +- +- +- +- +- + +- +- +- +- +- +- +- +- +- +- +- +\n +-\n + + +. + +. + +. + +. + +. +- + +- + +- +\n + + + + +- + +- + +. + +. + +. +- + +- +- +- +- +. + +. + +\n + +- +- +- +. + +- +- +- +- +- +- + +- + +- + +- +- +- +. + +. +. + +. +- + +- +\n +-\n + + + +- +- +- +- + + +- + +- +- + +- + +. +. +. +. + +. +- + +- + +- +\n + +- +- +- +. +- +. +- +- +- +- +- +- +- + +- + +- + +- + +- +- +- +. +. +.\n +.\n + +- +. + +. +. + +. + + + + + + +- + +- + +- + +- + +- +\n + +- +- +- +- +- +- +- +- +- +- + +- + + +. +. +. +. +. +. +. +. + +. +. + +. +- +- +-\n +-\n + + +. + +. + +- +- +- +- + +- +- +- +- +- + +. + +. +. + +- + +- +- +- +- +\n +-\n + +- +- +- +- +- +- +- +- +. + +. + +. +- + +- + +- + + + + +- +- +-\n +-\n + + +. + +. + + + + +- + +. + +. +- + +- + + +- +- +- +- +- +- +- + +\n + +- +. + +- + +. + +. + + +. +. +. +. + +\n +. + +- + +- + +- + + + + + + + + + + +\n +. + +. + + + + + +. + +. + + + + +. + +- +- +-\n +-\n + + +- + +- +- +- +- +. +- +. +- + + + + + +- +- +- +- +- +- +-\n +-\n + + +- + +- +- +- +- +- +- + +. + +- +- +- +- + +. + +. +\n + + + + + + + + + + + + + + + + +. + +. +. + +. + + +\n + + + + + + + + +- + +- + +- + + +- +- +- +- +- +- +\n + +- +- +- +- + +- + +- + +- + +- +- + +. +- +. +. +- +. +- + +- +\n +-\n +- +- +. + +- + +- +- + +. + +. +. +. +. +- + +- + +. +\n +.\n +\n + +. +- +- +- +- +- +- +- +- +- + +- + + + +- + +- +\n + +- +- +- +- + +- + + +- +- +- +- + + + + +. +- +. +- +- + +- +- +\n +-\n +. + +. + +. + +- +- +- +- +- + + +- + +- +- +- +- +- +- +- +-\n +-\n +- + +- + +- + +- + + + +. +. +. +- + +- +- + +- +- +- +- +. + +. +\n +\n +. + +. + +. + +. + +. + +. + +. +. +. +. + +- +- +- +- +- +- +- +- +\n + +. + + +. + +. + +. + + +- +- +- +- +. + +. +- +- +- +- +\n + +- +- +- +- + +- + +- + +- +- +- +- + + + + +- + +- +. + +- +- +- +- + +- +\n + +- + +- +- +- +- +- + + + +- + +- +- +- +- + +- + +- +- + +- + +\n + +- +- +- +- + +- +- + +- +- +- +- +- +- +- +- +- + +- + + + +- + +. +. +.\n +.\n + +- + +- + + + + + + +- +- +- +- + +- + +. + +. +. +\n +.\n + +- + +- + +- + +- +- + +- +- +- +- +- + +- + +- +\n + +- +- +- +- + +- +. +. +. +. + + + +. + +. +- +- +- +- +. +\n +.\n + +. + +- + +- + +- + +- + +- + +- +- + +- +- +- +- +- +\n + +- + +- +- +- +- + + + +. + +. + + + + + + + + +\n + + + +. +. +. +. + + +. +. +. +. +\n + + + + + + + + + + + + + +. + +. +. + +. + +- + +- +\n +-\n + + + +. +. +. +. + +. +. +. +. +. +. + + + +\n + +- + +- +- + +. +. +. +. + + + +- +- +- +- +\n +. +. +. +. +- +- +- +- +- +- +- +- +- +- +- +\n + +- +- +- +- + +- + + + +- + +- + + + + + + + + +- + +- +- + +- +- + +- +- +- +- +\n + +- + +- + +. +- +. +- + +- +- +- +- +- + + + + + +. + +. + + + +- + +- +- +- +-\n +-\n +- + +- + + + + + + +. + +. + +. +- + +- + +- + +. + +. + + +. +\n +.\n +- +- +- +- +- +. + +. + +. + +. + +. + + + + + + +. + +- +- +- +-\n +-\n + +- + +- + + + + +. +- +. +- +. + +. + + + +. + +. + +. + +. +\n +. + +. +- + +- + +- +- + +- + + +. + +. + +. +. +. +- + +- +- + +- +\n + + + + + + + + +. + +. + +. + +. + +. + +. + +. + + + + +\n + +- + +- + + + + + + + +- + +. +- +. +. +- +- +- +- +- +- +- +- +- + + + +\n + + + + + + +. + +- + +- + +. + +. + + + + +\n + + + + +\n +47173 +- + +- + +. + +- + +- +\n + +- +- +- +- +- +- + +- +- +- +- +- +- +\n +. +. +. +- + +. +. +. +. +- + +- + +- + +- +\n + +- + +- + + + +- +- +- +- + + + +. +. +. +. + + + + + + + + + + + +\n + +. +. +. +. +. +. +- + +- + +- + +- +- +- +- +- +- +- +- + + + +\n + +- + +- + +- +- +- +- + + + + + + +. + +. + +- + +- + +- +- +- +- +\n + + + + +- + +- +. + +. +. +. +. +. +- +- +- +- + + +- +- +- +- +. + +. + + + +\n +. + +. +. + +. +. + +. + + +. + +. + +. +. +. +. + + + +. +\n +.\n +. +. +. + +. + +- + +- + +- + +- +- + +- + +. + +- + +- + + +- + +- + + + +- + +- +\n +-\n + + +- + +. +. +. +. +. +- + +. +. +. +. +. + +- + +. +. +. +. +. +- +- +- +- +- +- + +- +- +- +- +-\n +-\n + +- +- +- +- +- +- +- +- + + + +. + +. +- + +- + +- +- + +. +- +. +- +\n + +- +- +- +- +- +- +- +- +- +- + + + +- + +- +- +- +- +- +. + +. + +. + +- + +- +- +-\n +-\n +. + +- +- +- +- + + + + +- +- +- +- + +- + +- +- +- +- +- + +- +\n +-\n + +. + +. + +. + +. + + +- + +- + + +. + +. +. + +. + + + + +\n + +. +. +. +- + +- + +. + +. + +. + +. + +. + + + + + + +. + +- +- +- +- +- +- +\n + +- + +- +- +- +- +- +- +- + +. + +. +- +- +- +. +- +- +- +- +- +- +. +- +. +- +- +- +- + + + +\n +. +. +. + +. + +. +. + +. + + + + + +. + +- + +- + +. + +. + +. + +. + +- + +- +\n + +- + +- +- +- +- + +- + +- + + + + + + +. + +. +. + +. +\n +. + +. +- + +- +- +- +- +- + +- + + + + + + +- + +- + +- +- +- +-\n +-\n +. +. +. +. +. + +- + +- + +. + +. + +. +- + +- + +- + +- + +- +\n + +- + +- + +- + + + + + +. + +. +. + +. + + + +. + +. +- + +- +. + +. +\n + + + +- + +- +. +. +. +. + +- + +- + +- + + + +- + +- +- + +- + +\n + + + + + + + + +. + +. +- + +- + +\n + + + + + + + +. + +. +- + +- + +\n + + + +- + +- + +- +- + +- + + +. + +. + +- + +- + + +. +\n +.\n + +. + +. + +. +- + +- + +\n + + + +- + +- +- +- +- +- + +. + +. + + +. + +- + +- + + + +- + +- + +\n + + + +- +- +- +- +- + +. +- +. +- + + + + + + + + +. + +. + + + + + + + +. +\n +.\n + + +- +- +- +- + + + + + + + + + +. + +- + +. + +. + + + +- + +- +\n +-\n + + + +- + +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- + +- +. +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +- +- +. +- +. +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n + +- + +- + +- +- +- +- + + + + + + + + +. + +. +. + +- +- +- +- +\n +\n +- +- +- +- +- +- +- +- + +- + +- +. +. +. +. +. + +. + + +. + +. +. + +- +- +- +-\n +-\n + + + + +- + +- +. +. +. +. +- + +- +- +- +- + +- + +- + +. +\n +.\n +- + +- +. + +. + +. + + + +- + +- + +- +- +- +- +\n +-\n + +- +- +- +- +- + +. + +. +- + +- +- + +- + +- +\n + + + + +- + +- +- +- +- +- +- +- +- +. +- +. +- + +- +- + +- +- +- +- +- +- +- +- +\n + + + +- +- +- +- +- + +. +. +. +. + +. +. + +. + + + + + + +- + +. +. +. +. + + +- +- +-\n +-\n + +- +- +- +- + +- + +. + +. + +- + +- +- + +- + + + + + + + + +\n + +- +- +- +- +- +- +- +- +- +- +- +- +- + + + + + +\n + + + +- +- +- +- +- +. +. +. +. +. + + + + +\n + + +- + +- +- +- +- +- +- +- +- +- +- +- + +\n + +. + +- + +- +- +- +- +- +- +- +- + + +\n + + +- + +- +- + +- +- +- +- +- + +- +- +- +- +- + +- + +- +- + +- +- +- +-\n +-\n +- +- +- +- +- +. + +. + + +. + +. + + +. + +. + + + + + + +\n + +- +- + +- + +- + + +. + +- +- +- +- +- +- +. +- +. +- +\n + +- +- +- +- +- +- +- +- +- +- +- +. + +. +. + +- + +- + + + + +- + +- +\n +- +. +- + + + +- +- +- +- + +- + +- +. + +. +. + +. + +- + +- +- +\n +-\n + +. + +- + +- +- +- +- +- +- +- +- +- +- +- +- +- +- + +- + + + + + + + +- +\n +-\n + +- +- +- +- + +. + +. +. +. +. +. +- + +- + + +- + +- +- + +- + +- +\n +-\n + + +- + +. +- +. +. +- +. +- +- +- +- +- +- +- +- +- +. +- +. +- +- +- +-\n +-\n +- +- +- +- + +- + +- +- +- +- + +- +- + +- +- + +- +. + +. +- + +- +. +\n +.\n + + + + +. +. +. +. +. +. +. +. + +. +. +. +. +- +- +- +- +- +- +- +- +. +. +. +. +\n + +- + +. + +. + + + + +- + +- + +- +- + +- + +- + +- + +- + +- +- +- +- +- +- +- +- + +- +\n +-\n + +- + +- + +- +- +- +- +- +- +. +- +. +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n + +- +- +- +- +- + +- + +- + + +- + +- + +. + +. + + +- + +- +\n +-\n + + + +- + +- + +. + +. +- + +- + +. + +. +- +- +- +- + +. + +. +- + +- +\n +-\n + +. + +. + +. + + +. + +- + +. + +. + + + +\n + + +. + +. + + + + + + + +- +- +- +- + + + +. + +. + + + + +. + +. +\n + +. + +. + +. + +. + +. + +. + +- + +- +- + +. + +. +. +. +.\n +.\n + + +. + +- + +- + + + +- +- +- +- + +. +. +. +. +- + +- +- +- +. + +. +. +\n +.\n +- +- +- + + + + + + + +- + +- + +- + +- + +. + +. + +- + +- + +- +\n +-\n + +. + +. + + + + + + + + + + + + + +. + +. +. +\n +.\n +. +. +. +. +. +. + +. + +. + +- + +- + +\n + +- +- +- +- +- + +. +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +-\n +-\n +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- + +- + +- + +- + + + + + + + +\n + + +. + +. +- +- +- +- +- +- +- +- + + +. +. +. +. + + + +. + +. + + + + + + + + + +\n + + + + + + + + +. + +. + + + + +- +- +- +- + + + + + + + + + +. + +. + + +. +. +. +.\n +.\n + + +. +. +. +. +. + + + + + +- +- +- +- +\n + + + + + + + +. +. +. +. +\n +. +. +. +. +\n + +- +\n +\n +49019 . + +. + +. + +\n + +- + +- +. + +- + +- +\n + + + + + + +- + +- + +- +\n + + + + +. + +. + +. + +. + +- + +- + +- + +- +\n +-\n +- + +- + + +\n +- + +- + +- + +- + +- +\n + + +. +. +. +. + +- + +- +- + +- + +- +\n + + + +. + +. + + + +- + +- + +\n + + + + + + + + +. + +. +. + +. +. + +. +- +\n +-\n + + + + + +- + +- + + + +- + +- +- + +- +- +- +- +- +\n + + + + + + +- + +- +. +- +. +- +- +- +- + +. + +. + +- + +- +- +- +- +\n +- +- +- +. +. +. +. + +. + +. + +. + + +. + +. +. + +. + + +. +. +. +. + + + +- +\n +-\n + +. + +. + + +. +. +. +. + + +- + +- + +- + +- +- + +- + +- + +- + +- +- +-\n +-\n + +- +- +- +- + + + + +- + +- + +- + +- +- +- +- +- + +. +- +. +- + +- +\n +-\n + + + + +- + +- + + + + +. + +. + + + + + + + +. +. +. +. + + + + + + + + + +- +\n +-\n + +. + +. + + +. + +. + + +- + +- +. +. +. +- + +- + +- + + +\n + + + + +. +. +. +. + +. + +. + +. + +. + +. +. +. +. + + + + +\n + +. +. +. +. + + +- + +- + +. + +. + + + +. + +. + + +- + +- + + +\n + +- + +- + +. + +. +- +- +- +- + + +- + +- + + + + + +- +\n +-\n + + + + +. + +. + + + + +. + +- +- +- +- + + + +- + +- + +. + +. +\n + +. +. +. +. + + +- + +- + +- + +- + +- + +- +\n +-\n + + + + + + + + + + + + + + + + + + + + + + + + + +. +. +.\n +.\n + + + +- + +- + +. + +. + + + +. +. +. +. + + +- + +- + +- +\n +-\n + +- + +- + +- + + +. + +. + + +- + +- + + +- + +- +- +-\n +-\n + + +. +. +. +. + + + + +. + +- + +- + +. + +. + + + +. + +. +\n + + + +- + +- + +. + +. + + +. +. +. +. + + +- + +- +. +. +. +- + +- + +- + + +\n + + + + + +. + +. + + +. + +. +- +- +- +- +- + + + + +. +\n +.\n + + + + + + +- + +- + +. + +. + + +. +. +. +. + + + + +- +\n +-\n +. +. +. +- +- +- +- + +- + +- + +. +. +. +. +. +. + + +\n + + + +. +. +. +. +. +. + + + + +. + +. +. + +. + + +. +. +. +. + +. +. +.\n +.\n + + + + + + + + + + +- + +- + + +- + +- + + + + +- + +- +- +- +- + +\n + + + + +- + +- +- +- +- +- +- +- +. + +. +. + +. +- + +- + + + + +. +\n +.\n + +- + +- + + +- + +- +- + +- + +. + +. + +. +. +. +. +- +.\n +-\n + + +- + +- +- +- +- +- + +- +- +- +- +- + +- + +- + + +. + +. + + +. +. +. +. + + + +\n +\n + + + +. + +. + + + + + + + + + + + + +. +. +. +. +. + + + + +- + +- +. +. +. +. +- + +- +\n +. + +- +- +- +- + + + + +. + +. +. +- +. +- +. + +- +- +- +- + +- +- + +- +- +- +- +- +- +\n +-\n + +- + +- + + + + +- + +- +- + +- +- + +. + +- + +- +- +- +- +- +- + +- + + +- +- +-\n +-\n + + + +. + +. + + + + + + + + +. + +. + + + +- +- +- +- + + +- +- +- +- +- + + + + +. +\n +.\n + + + +. + +. + + +. +. +. +. + + + + + + + + + + + + + +. + +. + + +. +\n +.\n + + + + + + + + + + + + + + +- + +- + + + + + + + +. +. +.\n +.\n +. +. +. +. +- + +- + + + + + +. + +. +- +- +- +- +\n +-\n +. + +. + +- + +- +- + +- + + + +- + +- +- +- +- +\n +-\n + +- + +- + +- + + + +- + +- +- + +- +- + +. + +- +- +- +- +- +- + +- + + + +. +. +.\n +.\n + + + + + + + + +. + +. + + + +- + +- + +- + +- + +- + + +. +. +. +. + +- + +- + +- + + +- + +- + +\n + + + +- + +- +- +- +- +- + +- + + + +- + +- + +- +\n +-\n + + + +. +. +. +. + +- + +. +. +. +. + + + +- +\n +-\n + +- + +- + +- + + + + +- + +- +- +- +- +- +\n +-\n + + + + +- + +- +- + +- +- +- +- +- +- +- +- + +- + +- + +- +- + +- + + + +. +. +. +. + + + + +\n +\n + +. +. +. +. + + +. + +. + + +- + +- + + +- + +- + +- +- +- +- + + + + + + +- +\n +-\n +- + +- + +- +- +- +- + + +- +- +- +- +- + +- + + + + + +- + +- +- +- +-\n +-\n +. + +. + + + + + + +. +. +. +. + + +- + +- +- +- +- +- +- +- +- +- +- +-\n +-\n + +- + +- +- + +- + +- + +. + +. + +. + +. + + +- +\n +-\n + +. + +. + +- + +. + +- + +- + + +. + +. + +. +. + +. +- +- +- +- +\n +-\n + + +- + +- + +- +- +- +- +- +- +- +- +- +- + +- +- +- +- +\n +. + +. + +- +- +- +- + +- + +- + +\n + +. +. +- +. +- +. + + + +. + +. + + + + + +- +- +- +- + +- +- +- +- +- +- +- +-\n +-\n +- +- +- +- + +- +- +- +- + +- +- +- +-\n +-\n + +- +- +- +- + +- +- +- +- + +- + +- +- +- +- +- +- +- +-\n +-\n + +- +- + +- + +- + +- + +- +- +- +- +\n +-\n +- +- +- +- +- +- + +- + +- + +- + +- +- +-\n +-\n +- +- +- +- +- + +- + +. +- +.\n +-\n + +- +- +- +- +- +- +- +- + +. +- +. +- +\n +-\n + + +. + +. + + + + + + + + + + + +\n +- + +- +- +- +- + + + + + +\n +- + +- +- +- +- + + + + + + +\n +- +- +- + + + + +\n + +- +- +- +- + + + + + + + +\n +. +. +. +. +. +. +. + + + + + + + + + + +\n +. + +. + + + + + + + + + + + +\n +. + +. + +. + +. + + + + + + +\n +. +. +. +. +. +. +. +. +. +. + +. +. +. +. +\n +.\n +. +. +. + + + + +. + +. + + + +- +- +- +- +- +\n +-\n + + + + + +- + +- + +- +. +- +. +- +- +- +- +\n +-\n +. +. +. +. +. +. +. +. +. +. +. +. +. +. +.\n +.\n + + + +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +.\n +.\n + + + + +. +. +. +. +. +. +. +. +. +. +. +. +\n +.\n + + +. + +. +. +. +. + +. + + +\n +. +. +. + +. +\n +.\n + + + + + +. + +. +. +. +. +\n + + + + + +\n +50815 + + + + + +- +- +- +- + + + + + + + + +\n +. +. +. + + + + + + + + + +\n + + + + + + + + + + + + + +\n +- +- +- +- + +- + + + +\n +- +- +- + +- + + + +\n +- +- +- +- +- +- +- +- +- + + + +\n +- +- +- +- +- +- +- +- +- +- +- +- +- +- + +\n + + +\n +- +- +- +- +. +- +. +- +\n +. +- +. +- + + +- + +- + +. +- +. +- +\n + + + + +- +- +- +- +- +- +- +\n + +. + +. +. + +- + +- +. + +. + +- + +- +- +- +- +- +\n +- +- +- +- + +- + +- +. +. +. +. +. + +- + +- + +\n +- + +- +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +\n +- +- +- +. + +- + +- +. + +. + + + +- + +- + + +. +- +. +- +\n +- +- +- +- + +- + +- + +- + +. + +- + +- + +- + +- +- + +- +\n +- + +- + +. + +- + +- + + + + + +- +- +- +- + + +\n +- +- +- +- +- +- +- +- +- +- + + + + + + + + +. +- +. +. +- +. +- +\n +. +- +. +- +- +- +- +- + + + + + + +- + +- + +- +. +. +. +. +\n + +- + +- + + + +. +- +. +- + + + +- +- +- +- + + + + + +\n +. + +. +. + +- +- +- +- +. + +. + + +- + +- +\n + + + + + +. +- +. +- +- + +- +- +- +- +\n +- +- +- +- + +. +- +. +- +- + +. +- +. +. +- +. +- +\n +- +\n +-\n +- +\n +-\n + +- +\n +-\n + + +\n + + + + +\n + +\n + +. +- +. +- +\n + + + + + + +\n + +. +. +. +. +- + +- + + + + + + +\n + +. + +. +. + +. + +- + +- + +. +\n +.\n +. + +. +- + +- +- +- +- +- +. + +. + + +\n +. +- +. +- +- +- +- +- +- +- + +- +\n +-\n + +- +- +- +- + +- + +- + +- +- +- +- + +- ++ +- ++ +- + +- +\n +-\n + +- + +- + +- + +- +- +- +- + +- +- +- +- +- +\n +-\n + + + +- + +- + +- + +- +- +- +-\n +-\n + + +. + +. +. +- +. +- +- +- +- +- +\n +-\n + +- + +- + +- + +- + +. +. +. +- + +- +- + +- + + +. +\n +.\n + + + + + +. + +. +. + +. + + + + +. +. +. +. + + + + + +\n + + +- + +- +. +. +. +. +. + + + + +- + +- + +- + + +. + +. +. +. +.\n +.\n + + + + +. + +- +- +- +. + +. + +- +- +- +- +- + +- + + + +\n + + + + + + +. + +. + + + + + + +. + +. + + + +- +- +-\n +-\n + + +- + +- +. +. +. +. +. + + + +. + +. +. +. +. +. + + +\n +\n + +- +- +- +- + + + +- + +- + + + +\n + + +\n + +- + +- +- + +- + +- +\n + + + + + +- +- +- +- +- +\n +- +- +- +- + + + + +- +- +- +- +\n +- + +. +. +. +. +. +- +. +- +\n +- +- +- +- +- +\n +- + +- +- +- +- + +- +- +- +- + +\n + +- + +- +- + +- + +- +- +- +- +- +- +- +- +\n + + + +- + +- +- +- +- +- +- + +- +- +- +- +- + +\n + + + +. + +. + +- +- +- +- +- + + + + +\n + +- + +- +- +- +- +- +- + + + + + + +\n +- + +- +- +- +- +- + +- + +- +\n + +- +- + +- + +- + +- +\n + +- + +- + +- + +- +\n + +- +- + +- + +- + +- +\n +- +- +- + +- +- +- +- +- +- +\n + +- + +- +- +- +- +- +\n +- + +- + +- +- +- +- +- +\n +-\n +- +- +- +- +- +- +-\n +-\n +. +. +. + + + + + + +- + +- + + +\n +- + +- + + + +- +- +- +- + + + +\n + + +- +- +- +- +. +- +. +- + +- + +\n + + + + +\n + + + + + + +\n +- +- +- + + + +\n +- +- +. + +- +- +- +- + + + + +\n + +- +- +- +- +\n + + +- +- +- +- +- +- +- +- +\n +- +- +- +- + +- +- +- +- +\n +- +- +- + +- +- +- +- +\n +- +- +- +- +\n + + + +\n +51875 +. +- +. +- + +- +- +- +- +. + +. +. + +. + + + + +\n + + + + + + + +. + +. +- +. +- + + +\n + + +- + +- + +. + +. +- +- +- +- + +. + +. +- + +- + + + + + +\n + + + +- + +- +- +- +- +- +- + +\n + + +- + +. + +. + +. + + +. + +. + + + +\n +- + +- +- +- +- +- +- + +- +- + +- + + + +. + +. + + +\n + +. +- +. +- + +- +- +- +- +- + +- + +. + +. +. +. +. +. + +- + +. +- +.\n +-\n + +- + + + +. + +. + + + + +- +- +- +. + +. + +. + + + +. +\n +.\n +. +. +. + +- + +- + +- +- + +- +- +- +- +- +- +- +- +- +- + +- + + + +. + +. + + +\n + + + +. +. +. +. + +. + +. + +. +. +. +. +. + +. +. +. +. + + +. + +- + +. + +. + +\n + + + + + +- +- +- +- +- + + +. +. +. +. +. + +- + +- + + + +- + +- + +\n + +. +- +. +- +. + +. +. +- +. +- + +- +- +- +- + + + + + + + + +\n +\n + +. + +. +. + +. + + +- + +- + +- +. +. +. +. + +. + + +- + +- +\n + + +- +- +- +- +- +- +. + +. +- +- +- +- + +- +- +- +- +. +. +. +. + +- +- +- +. +. +. +. + +\n +- + +- +- + +- + +- + + +- +- +- +- +. +. +. +. +. +. +- + +- +- +- +- +- +\n + + +- +- +- +- +- +- + + + +. +. +. +. +. +. +. +. +. + +- +- +- +- + +- + +. +\n +.\n +. +. +. +. +- +- +- +- + +- + +- + + + +- +- +- +. + +. +. +. +. + +- +- +- +- +\n + + +- + +- + + +. +. +. +. + +- + +. +. +. +- + +- + + + + + + +\n + + +- + +- + + +. +. +. +- + +- + + + + + + + +\n + + +. +. +. +- +- +- +- +- +- +- +- +- + + + + + + + +- +- +- +-\n +-\n + + +. +- +. +- + +- + +- + + + +- + +- +\n + +. +- +. +. + +. + +. + + + + + + + + +\n + + + + +\n +52432 + +\n +- +. +- + + +\n + +. + +. + + + + +\n + + + +- + +. +- +. +- + +\n + + +. +- +. +. +- +. +- + +- + + + + + + +\n +. + +. + +- + +- +- +\n +-\n + +. +- +- +- +- +- + + + +- + +- + + + + + +- +- +- +- + +- + +- +- +- +-\n +-\n +- +- +- +- + +- +- +- +- + +- +- +- +-\n +-\n + +- +- +- +- + +- +- +- +- + +- + +- +- +- +- +- +- +- +-\n +-\n + +- +- + +- + +- + +. + +- +- +- +- +\n +-\n +- +- +- +- +- +- + +- + +- + +- + +- + +- +- +- +- +. +- +. +- + +- + +. +- +.\n +-\n + +- +- +- +- +- +- +- +- +- + +. +- +. +- +\n +-\n +52620 - +- +- +- + + + + + + + + + + + + + + +\n +- +- +- +- +- +- +- +- +- + + + + + + + + + + + + + + + + +\n +. +. +. +- + +- + + + + + + + + + + + + + +\n + +. + +. +- + +- + + + + + + + + + + +\n +. + +. + +. +. +. +- + +- + + + + + +\n +- +- +- +- +- +- +- +- +- + + + + + +\n + +- + + +- +- +- +- +- + + + + + + +\n +- +- +- +- +- + +- + + + + + + + + + + + +\n +52770 + + + + + + + + + + + + + + + + +\n +\n + + + + + + + + + + + + + + + + + + + + +- + +- +\n + + + + + + + + + + + + + + + + +\n +62396 +\n + + + + + +\n + + + + +\n + + + + + + +\n + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + +\n + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + +\n + + +\n + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + +\n + + +\n + + +\n + + +\n + + + + + + + + + + + + + + + +\n + + + +\n + + + +\n + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + +\n + + +\n + + + + + + + + +\n + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + +\n +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + +\n + + + +\n + + + + + +\n + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + +\n + + + + + +\n + + + + + +\n + + + + + + + + + +\n + + + + + +\n + + + + + + + + +\n + + + +\n + + + + + + +\n + + +\n + + +\n + + +\n + + + + + +\n + + +\n + + + + + +\n + + +\n + + +\n + + + +\n + +\n + + +\n + + + + + + + + +\n + + + + + +\n + + + + + + +\n + + +\n + + + + + +\n + + + + + + +\n + + +\n + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + +\n + + + + + + +\n + + +\n + +\n + + + +\n + +\n + + +\n + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + +\n + + + + +\n + + + + + +\n + + +\n + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + +\n + + + + + + +\n + + + + +\n + + + + + +\n + + + + + + + +\n + + + + + + +\n + + + + + + +\n + + + + + + + + +\n + + + + + + +\n + + + + + + + +\n + + + +\n + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + +\n + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + +\n + + + + +\n + + + + + +\n + + + + + + +\n + + + +\n + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + +\n + + + + + +\n + + + + + + + +\n + + +\n + + +\n + + + + +\n + + + + + + + +\n + + +\n + + + + + +\n + + + + + +\n + + + + +\n + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + +\n + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + +\n + + +\n + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + +\n + + + + +\n + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + +\n + + + + +\n + + + + + + + + +\n + + + + +\n + + +\n + + + + + +\n + + + + +\n + + + + + +\n + + + + + + + +\n + + + + + +\n + +\n + + +\n + +\n + + +\n + + + +\n + + + + +\n + + +\n + + + +\n + + +\n + +\n + + + + + +\n + + + + + +\n + +\n + + + +\n + + + + +\n + + + + +\n + + +\n + + +\n + + + +\n + + +\n + + + +\n + + + +\n + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + +\n + +\n + + + + + +\n + + + + + +\n + + + + + +\n + + + +\n + + + + + +\n + + +\n + + + + + + +\n + + + + + + + +\n + + + + + +\n + + + + + + +\n + + + + + + +\n + + + + + + +\n + + + +\n + +\n + + + + +\n + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + +\n + + + + +\n + + + + + + + + + + + + + +\n + + + + +\n + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + +\n + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + +\n + + + + +\n + +\n + +\n + +\n + + +\n + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + +\n + + + + + +\n + + + + + + + + + + + +\n + + + + +\n + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + +\n + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + +\n + + + + + +\n + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + +\n + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + +\n + +\n + + + +\n + + + + +\n + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + +\n + + + + + + + + +\n + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + +\n + + + + + + + + +\n + + + + + + + + + +\n + + + + + + +\n + + + + + + + + +\n + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + +\n + + + + + + + + + + + + + +\n + + + + + + +\n + + + + + +\n + + +\n + + + + + + + +\n + + + + + + +\n + + + + + + + + +\n + + +\n + + + + + + + + +\n + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + +\n + + + + + + + + +\n + + + +\n + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + +\n + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + +\n + + + + +\n + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + +\n + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + +\n + + + + + + + + + +\n + + + + + + + + +\n + + + + + +\n + + + + +\n + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + +\n + + + + + + + + + +\n + + + + + + +\n + + + + + + + + +\n + + + + + + + +\n + + +\n + + +\n + + + +\n + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + +\n + + + +\n + +\n + +\n + +\n +\n + + +\n + + + + + +\n + + + + + + + + + + + +\n + + + + +\n + + + + + + +\n + + + + + + +\n + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + +\n + + +\n + + + +\n + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + +\n + + + + + +\n + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + +\n + + + + + +\n + + + + +\n + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + +\n + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + +\n + + + + + + +\n + + + + + + + + + +\n + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + +\n + + + + + + + +\n + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + +\n + + + + + + + + +\n + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + +\n + + +\n + + +\n + + + + + + +\n + + + + + +\n + + + + + + +\n + + + + + +\n + + + + + + + + +\n + + + + + + +\n + + + + + + +\n + + + + + +\n + + + + + + +\n + + + + + + + +\n + + + +\n + + + + + + +\n + + + +\n + +\n +\n +\n +\n +\n + + + + + + +\n + + + + + + + + +\n + + + + + + + +\n + + + + + +\n + + + + + + +\n + + + + + + +\n + + + + + + +\n + + + + +\n + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + +\n + + + + + +\n + + + + + + + +\n + + +\n + + + + + +\n + + + + +\n + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + +\n + + + +\n + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + +\n + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + +\n + + +\n + +\n + + + + +\n + + + + +\n + + + + + +\n + + + + +\n + + + + +\n + + + + + +\n + + + +\n + + + + +\n + + + + + +\n + + + + + + +\n + + + + +\n + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + +\n + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + +\n + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + +\n + + + +\n + + +\n + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + +\n + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + +\n + + + +\n + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + +\n + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + +\n + + + + + +\n + + + +\n + + + + +\n + +\n + + + +\n + +\n + + +\n + + +\n + + + + + +\n + + + + + +\n + + + + +\n + + + + + + + + + +\n + + + + +\n + + + + +\n + + + +\n + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + + + + +\n + + + + +\n + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + +\n + + + + + +\n + + + + + +\n + +\n + + +\n + + + + +\n + + + + + +\n + + + + + +\n + + + + + +\n + + + + + + +\n + + + +\n + + + + +\n + + + + + + + +\n + + + + +\n + + + + +\n + + + + +\n + + + + + +\n + + + + + +\n + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + +\n + + + + + +\n + + + + + + + + + + + + +\n + + + + + + +\n + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + +\n + + + + + +\n + + + + + + + + + +\n + + + + + +\n + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + +\n + + + +\n + + +\n + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + +\n + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + +\n +\n +\n + + + + +\n + + + +\n + + + + +\n + + + +\n + + + + + +\n + + + +\n + + + + +\n + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + +\n + + + + + + +\n + + + + + + + + + + + +\n + + + + + +\n + + + + +\n + + + + + + + + + + +\n + +\n + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + +\n + + +\n + +\n + +\n + + +\n + +\n + +\n + +\n +\n + +\n + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + +\n + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + +\n + + + +\n + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + +\n + + + + + + + +\n + + + + + +\n + + + + + +\n + + + +\n + + + + + + + + + + +\n + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + +\n +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + +\n + + + + +\n + + + + + + +\n + + + + + + +\n + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + +\n + + + + + + +\n + + + + + + + +\n + + + + + + +\n + + + + + + +\n + + + + + + +\n + + + +\n + + + + + +\n + + + + +\n + + + + +\n + + + + +\n + + + + + +\n + + + + + +\n + + + + +\n + + + + +\n + + +\n + + + + + + + + +\n + + + + + + + +\n + + + + + +\n + + + + +\n + + + + + +\n + +\n + + + +\n + + +\n + + + +\n + +\n + +\n + +\n + +\n +\n + +\n +\n +\n +\n +\n +\n +\n +\n + + +\n + + +\n + + + +\n + + + +\n + + + + + +\n + +\n + + + + +\n + + + + + +\n + + + + + +\n + + + +\n + + + +\n + +\n + +\n + +\n + +\n + + +\n + +\n + +\n + + +\n + +\n + +\n + +\n + +\n + +\n + +\n + +\n + +\n + +\n + +\n + +\n + +\n + +\n + +\n + + + +\n + + + +\n + + + + +\n + + + +\n + + + +\n + + +\n + + +\n + + +\n + + + +\n + + +\n + + + +\n + + + + + +\n + + + + + + + +\n + + + + + + +\n + + + + + +\n + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + +\n + + + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + +\n + + + + +\n + + + +\n + + +\n + + +\n + + +\n + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + +\n + + + + + +\n + + + + + + + +\n + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + +\n + + + + + + + +\n + + + + + +\n + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + +\n + +\n +\n + +\n + + + +\n + + + +\n + + + +\n + + +\n + + +\n + + + + + +\n + + + +\n + + + + + +\n + + + +\n + + +\n + +\n + + +\n + + + + + +\n + + + + + +\n + + + + + +\n + + + + +\n + + +\n + + + + + +\n + + + + + + +\n + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + +\n + + +\n + + + + +\n + + + + + +\n + + + + +\n + + + +\n + +\n + + + + + +\n + + + + +\n + + + + + + +\n + + + +\n + + + +\n + + + + + + +\n + + + + +\n + + + +\n + + + + + + + + + + + + + +\n + + + + + + + +\n + + + + +\n + + + + + + + +\n + + + + + + +\n + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + +\n + + + +\n + + + + + + + + +\n + + + +\n + + + + + + + +\n + + + + + + + +\n + + + + + + +\n + + + + + + +\n + + + +\n + + + + +\n + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + +\n + + + + + + + + + +\n + + + + + + + + +\n + + + + + +\n + + + + +\n + + + + + +\n + + + + + + +\n + + + + + + +\n + + + + + + + + + +\n + + + + + +\n + + + + + + + + +\n + + + + + + +\n + + + + + +\n + + + + + + +\n + + + + + +\n + + + +\n + +\n + + + + + + + +\n + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + +\n + + + + + + + +\n + + + + +\n + + + + + +\n + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + +\n + + + + + +\n + + + + + +\n + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + +\n + + + + +\n + + + +\n + + +\n + + +\n + +\n + +\n + +\n + +\n + +\n + + + +\n + +\n + + + +\n + + + + + +\n + + +\n + + + + + +\n + + + + + +\n + + + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + +\n + + + + + +\n + + + + + + + + +\n + + + + + +\n + + + +\n + + + + + + +\n + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + +\n + + + + +\n + + +\n + + + +\n + + +\n + + + + + +\n + + + +\n + + + + +\n + + +\n + + + +\n + + + +\n + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + +\n + + + + + + +\n + + + + + + +\n + + + + + +\n + + + + + + + + +\n + + + +\n + + + + + + + +\n + + + + + + + + +\n + + + + + + + +\n + + + + + + + +\n + + + + + + +\n + + + + + +\n + + + + + + + +\n + + + +\n + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + +\n + + + + +\n + + + + + +\n + + + + + + + + + + + +\n + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + +\n + + + +\n + + + +\n + + + + +\n + + +\n + +\n + + + + + +\n + + +\n + + + + + + +\n + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + +\n + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + +\n + + + +\n +\n +\n +\n +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + +\n + + +\n + + + + +\n + + + +\n + + + + + + + +\n + + +\n + + + + + + + +\n + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + +\n + + + + + + + + + +\n + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + +\n + + + +\n + + + + + + + + + + + +\n + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + +\n + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + +\n + + + + + + +\n + + + + + +\n + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + +\n + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + +\n + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + +\n + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + + + +\n + + + + + +\n + + + +\n + + + + +\n + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + +\n + + + + +\n + + + + + + +\n + + + + + + + + + +\n + + + + +\n + + + + + + +\n + +\n + + + +\n + + + +\n + + + + + + +\n + + + + + +\n + + + + +\n + + + + + +\n + + + + +\n + + + +\n + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + +\n + + + + + + + + + + + +\n + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + +\n + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + +\n + + + +\n + + + + +\n + + + + +\n + + + + + + + +\n + + + + +\n + + + + + +\n + + + + +\n + + + + + +\n + + + +\n + + +\n + + +\n + + +\n + + +\n + + +\n + + + + + + + +\n + + + + + + + +\n + + + + + +\n + + + + + + + +\n + + +\n + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + +\n + + + + + + + +\n + + + + + +\n + + + + + + +\n + + + + +\n + + + + + + + +\n + + + + + + + + + +\n + + + + + +\n + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + +\n + + + + + + + +\n + + +\n + + + + + +\n + + + + +\n + + + + + +\n + + + + + + +\n + + + + + + + + +\n + + + + + +\n + + + +\n + + + + + + + +\n + + + + + + + + +\n + + + +\n + + + + + +\n + + + +\n + + + + + + + + + + +\n + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + +\n + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + +\n + + + + + + +\n + + + + + +\n + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + +\n + + + + + + + + +\n + + + + + +\n + + + + + + +\n + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + +\n + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + +\n + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + + + +\n + + + + + +\n + + + + + + + + +\n + + +\n + +\n + + + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + +\n + + + + +\n + + + + + + +\n + + + + +\n + + + + + + + +\n + + + + + +\n + + + + + + + + + +\n + + +\n + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + +\n + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + +\n + + + + + + + +\n + + + + + + + + +\n + + + + + + + +\n + + +\n + + + + + + + + +\n + + + + + + + +\n + + + +\n + + + + +\n + + + + + +\n + + + + + + + + + + +\n + + + + + + +\n + + + + + +\n + + + + + +\n + + + + + + + +\n + + + + + + + +\n + + + + + +\n + + + + + + + +\n + + +\n + + + + + + + + +\n + + + + + +\n + + + + + + + + +\n + + +\n + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + +\n + + + + + + + +\n + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + +\n + + + + + + + + +\n + + + + +\n + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + +\n + + + + +\n + + + + + +\n + + + + + + + + + +\n + + + + + + + +\n + + + + + + +\n + + + + + +\n + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + +\n + + + + + + +\n + + + + + + + + + +\n + + + + + +\n + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + +\n + + + + +\n + + + + + + + +\n + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + +\n + + + +\n + + + + + +\n + + + + + + +\n + +\n + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + +\n + + + + + + +\n + + + + + + + + + +\n + + + + + + + +\n + + + + + + + +\n + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + +\n + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + +\n + + + + + + +\n + + + + + + + + + +\n + + + + + +\n + + + + + + + +\n + + + + + + + +\n + + + + + + + +\n + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + +\n + +\n + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + +\n + + + + +\n + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + +\n + +\n + + + + + + + + +\n + + + + + + +\n + + +\n + + + + + + + + + + +\n + + + + + + + + + +\n + +\n + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + +\n + +\n + + + + + + + + +\n + + + + + + + + + + + +\n + + + +\n + + + + + + + + + +\n + + + + + + + +\n + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + +\n + + + +\n + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + +\n + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + +\n + + + + + +\n + + + + + + + +\n + + + + + + +\n + + + + + + + +\n + + + + + + + +\n + + + + + + +\n + + + + + + + +\n + + + + + + +\n + + + + + + + + + + + + + +\n + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + +\n + + + + + +\n + + + + +\n + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + +\n + + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + +\n + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + +\n + + + +\n + + + + + +\n + +\n + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + +\n + +\n + + +\n + +\n + + + +\n + + + +\n + + + + + +\n + + + +\n + + + + + + +\n + + + + +\n + + + + + +\n + + + + + +\n + + + + + + +\n + + + +\n + + +\n + + + +\n + + + +\n + + + + +\n + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + + + +\n + + + + +\n + + + + + + + + + +\n + + + + + + + + +\n + + + + + +\n + + + + +\n + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + +\n + + + + + +\n + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + +\n + + + + +\n + + + + + + +\n + + + + + + + + +\n + + + + + + +\n + + + + + + + + +\n + + + + + +\n + + + + + + + +\n + + + + + + + +\n + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + +\n + + + + + + +\n + + + + + + +\n + + + + + + + + + +\n + +\n + + + +\n +\n + + + + +\n + + + +\n + + +\n + + +\n + + +\n + + + + + + + + + +\n + + +\n + + + + +\n + + + + +\n + + + + + +\n + + + + +\n + + + + + +\n + + + + + +\n + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + +\n + + + + +\n + + + + + + +\n + + + + + +\n + + + + + + + + +\n + +\n + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + +\n + + + + + + + +\n + + + + + + + +\n + + + + + + + +\n + + + + + + +\n + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + +\n + + + + + + + + + +\n + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + +\n + + + + +\n + + + +\n + + +\n + +\n + + + + + +\n + + + + + +\n + + + +\n + +\n + + + +\n + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + +\n + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + +\n + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + +\n + + + + + + + + + +\n + + + + + + + + +\n + + + + + +\n + + + + +\n + + + + + +\n + + + +\n + + + +\n + + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + +\n + + + + + + +\n + + + + + + +\n + + + + + + + +\n + + + + + +\n + + + + + +\n + + + + + + +\n + + + + + +\n + + + + + +\n + + + + + + + +\n + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + +\n + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + +\n + +\n + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n +\n + + + + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + +\n + + + + +\n + + + + + + +\n + + + + + + + +\n + + + + + +\n + + + + + + + +\n + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + +\n + +\n + + + +\n + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + +\n + + + + + + + + + +\n + + + + + +\n + + + + + +\n + + + + + +\n + + + +\n + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + +\n +\n +\n + +\n + + + + + +\n + + + + + + + + +\n + + + + + + + + +\n + + + + + +\n + + + + +\n + + + + +\n + + + + + +\n + + + + + +\n + + + + + + + +\n + + + + + +\n + + + + + + + + +\n + + + + + + +\n + + + + + +\n + + + + + + + + +\n + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + +\n +\n + + + + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + +\n + +\n + +\n + +\n + +\n + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + +\n + + + + + + +\n + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + +\n + + + +\n + + + + + + + + +\n + + + +\n + + + +\n + + + +\n + + + +\n + + + + + + +\n + + + +\n +\n + +\n + +\n + + +\n + + +\n + +\n +\n +\n +\n + +\n + + + + +\n + + + + +\n + + + + +\n + + + + + +\n + + + + + + +\n + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + +\n + + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + +\n + + + + + + +\n + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + +\n + + +\n + +\n +\n + + + + +\n + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + +\n + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + +\n + + + + + + + + + +\n + + + + + + + + +\n + + + + + +\n + + + + +\n + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + +\n + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + +\n + + + + + + + +\n + + + + + + + + +\n + + + + + + + + +\n + + +\n + + + + + + + + +\n + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + +\n + + + + + +\n + + + + + +\n + + + +\n + + +\n + + + + +\n + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + +\n + +\n + +\n + + +\n + + +\n + + + + +\n + +\n + + + +\n + + + + + + +\n + + + + + + + +\n + + + + + + +\n + + + + + + + + + + +\n + + + + +\n + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + +\n + + + + + + +\n + + + + + + + +\n + + + + + + +\n + + + + +\n + + +\n + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + +\n + + + + +\n + + + + +\n + + + + +\n + + + +\n + + + + +\n + + + + +\n + +\n + + + + + + + + + + + +\n + + + + + + + +\n + + + + + + + + +\n + + + + +\n + + + + + +\n + + + + +\n + + + + + + + +\n + + +\n + + + + + + +\n + + + + +\n + + + +\n + + +\n + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + + + + + + + + +\n + + + + + + + + + + + + + +\n + + + + +\n + + +\n + + + +\n + + + + + + + +\n + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + + +\n + + + + + + + + + + + + + +\n + + + + +\n + + + + + + + + + +\n + + + + + + + + +\n + + + + + + + + + + + + +\n + + + + + +\n + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + +\n + + + + + + + + + + +\n + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + + + + + + + +\n + + + + + + + + + + + + + + + + +\n diff --git a/tf/0.3/atf.tf b/tf/0.3/atf.tf new file mode 100644 index 0000000..df99da1 --- /dev/null +++ b/tf/0.3/atf.tf @@ -0,0 +1,86668 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=full atf of a sign +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=str +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +DU₃ +DU₃ +BI +... +5 +KA# +INIM +MA +x +x +x +x +EN₂ +su +ub +hur +ri +im# +su# +ub +... +ša₂ +sa +ku +tu₂ +hi +si +a +pi +il +lat +aš +kur +ba +an +ni +... +KA +INIM +MA +GIG +GIR +ZI +hi +DU₃ +DU₃ +BI +SIG₂# +SA₅# +... +EN₂ +ma +mit +GIM +šar +ra +qi₂ +ina +KA₂ +pil +ši +un +gi +ha +ba# +x +x +x +x +x +x +x +x +x +x +x +x +DU₃ +DU₃ +BI +ina +ŠIM +IGI +GIG +ta +kar +hu +bu₄ +uš +SUN₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +IGI +GIG +MAR +šim +ŠEŠ +ina +IZI +tur +ar₂ +IGI +GIG +x +x +x +x +x +x +x +x +x +x +x +x +x +x +IGI +GIG +MAR +TI +GUD +ID₂ +ina +IZI +tur +ar₂ +IGI +GIG +x +x +x +x +x +x +x +x +x +SUN₂ +lu₂ +KURUN₂ +NA +IGI +GIG +ta +kar +x +x +x +x +x +x +x +x +x +x +x +2 +KA +INIM +MA +x +x +x +x +x +x +DIŠ# +NA +SAG +DU +su +gur +ru +ud +sah +le₂ +e +si +ki +tu₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ina# +A +NAGA +SAG +DU +su +LUH +si +I₃ +GIŠ +EŠ +MEŠ# +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +KI +MIN +SAG +DU +su +tu +gal +lab +... +u₂ +HAB# +SUD₂ +MAR +u₂ +ZA# +BA +LAM +... +268 x +x +x +x +x +x +x +x +x +x +x +x +a +na +ku# +u₂# +ša₂ +an +ni +x +x +x +x +x +x +x +TI +e# +... +LI +DUR +ŠID +nu +x +x +x +x +gi +pisan +gen₇ +keš₂ +da +x +x +x +x +x +x +x +x +x +x +x +a +ge₆ +a +nu +tuku +x +x +x +x +x +x +x +x +x +x +x +x +nu +ku₄ +ku₄ +... +nig₂ +ge₂₆ +e +: +gen +na +dumu +gu₁₀ +x +x +x +x +x +x +x +x +x +x +x +šu +u +me +ti +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ka +bi +ta +u +me +ni +gar +x +x +x +x +x +x +x +x +x +x +x +x +x +he₂ +en +si +il +e +x +x +x +x +x +x +x +he₂ +em +ma +ra +e₃ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ina +KAŠ +NAG +ma +ina +eš +... +ŠA₃? +GIG +448 ... +ka# +keš₂# +bi# +he₂ +du₈ +a +... +ka +keš₂ +bi +he₂ +du₈ +a +x +x +x +x +x +x +x +x +x +x +x +x +ina +KA +šu₂ +u₂ +man +zaq +ma +ina +eš +... +SIG₃ +SIG₃ +ta +ma +la +a +rit +ta +šu₂ +... +a +ha +tu +mu +še +qa +at +re +ši +šu₂ +... +na +ši +pat +ri +TU₆ +EN₂ +x +x +x +x +x +x +x +x +x +x +x +ana +UGU +EN₂ +ŠUB +di +ina +KA +šu₂ +u₂ +man +zaq +ma +ina +eš +x +x +x +x +x +x +x +x +x +x +x +x +as +suh +šu₂ +ma +iṣ +ṣa +bat +ŠA₃ +bi +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +KI +DU₁₁ +GA +ma +iṣ +ṣa +bat +ŠA₃ +bi +AN +u +KI +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +a +na +u₂ +ma +mi# +DU₁₁ +GA +ma +iṣ +ṣa +bat +ŠA₃ +bi +u₂ +ma +me +x +x +x +x +x +x +x +x +x +x +x +x +x +ŠA₃ +bi +d +UTU +lip +pa +šir +x +x +x +x +x +x +x +ŠA₃ +bi# +u₂ +ma +me +lip +pa +šir +x +x +x +x +x +x +x +x +x +x +x +x +šam +ma +ka +NAG +šu₂ +lib +luṭ +... +U₂# +KI +KI +MIN +KI +MIN +... +ŠA₃# +bu +i +re +du +šu +... +ap +pi? +šil +ta +hi +ša₂ +7 +KA +KEŠDA +MEŠ +šu₂ +7 +šu₂ +u +7 +šu₂ +... +SAHAR? +TA# +urudu# +na# +ah# +bi?# +ana? +urudu +na# +ah# +bi?# +x +x +x +x +x +x +x +x +TI +qe₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ZI₃ +ŠE +SA +A +ina +A +GAZI +sar +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ARA₃ +ti₃ +šim +GUR₂ +GUR₂ +NAGA +SI +x +x +x +x +x +x +x +MUN +eme +sal +li₃ +mal₂ +ma +liš +HI +HI +ina# +x +x +x +x +x +x +x +x +x +x +ZA₃ +HI +LI +1 +3 +SILA₃ +ŠIKA +IM +ŠU +RIN +NA +10 +GIN₂ +x +x +x +x +x +x +x +x +GAZI +sar +SILA₁₁ +aš +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +EGIR +na +aṣ +ma +da +te +an +na +ti +10 +GIN₂ +ZA₃ +HI +LI +ša₂ +KA# +x +x +ša₂ +hul +qu +ana +ŠA₃ +NU +ŠUB +u₂ +MUN +A +GEŠTIN +NA +NU# +x +x +x +x +x +x +x +GU₇ +5 +GIN₂ +ZA₃ +HI +LI +ARA₃ +ti₃ +ina +KAŠ +SIG₃ +aṣ +ma +NAG# +šu₂# +u₂# +za +ka +ma +x +x +x +x +x +x +AN# +ZAH# +SUD₂ +x +x +x +x +x +x +x +x +x +x +x +x +ZA?# +BA?# +LAM?# +1 +3 +SILA₃ +u₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +lu# +u₂# +ina +KAŠ +SAG +x +x +x +x +x +x +x +DIŠ +NA +SAG +KI +DAB +BA +TUKU +TUKU +x +x +x +x +x +x +x +x +x +UGU +šu₂ +KUM₂ +x +x +x +x +x +x +x +x +x +x +ŠU₂? +LUGAL? +x +x +x +x +1009 x +x +x +x +x +x +x +x +x +x +x +x +x +x +ana +TI +BI +x +x +x +x +x +x +x +x +x +x +x +x +x +ŠEŠ₂ +su# +ma# +TI +x +x +x +x +x +x +x +x +x +x +x +x +x +I₃# +GIŠ# +ŠEŠ₂ +MEŠ +su +u₂ +an +ki +nu +ti# +x +x +x +x +x +x +x +x +x +ta +na +ṣar +BI +ma +TI +x +x +x +x +x +x +x +x +x +x +x +TI +šu₂ +I₃ +GIŠ +šim +GUR₂ +GUR₂ +ŠEŠ₂ +su +x +x +x +x +x +x +x +x +x +x +x +x +NAG +šu₂ +ina +A₂ +tu +šap +ra +šu₂ +ma +TI +x +x +x +x +x +x +x +x +ŠUB +ŠUB +su +ana +TI +šu₂ +I₃ +GIŠ +u₂ +ap +ru₃ +ša₂ +ŠEŠ₂ +su# +x +x +x +x +x +x +x +x +šim +GUR₂ +GUR₂ +NAG +MEŠ +ma +TI +x +x +x +x +x +x +x +x +x +x +ana +TI +šu₂ +I₃ +GIŠ +šim +GUR₂ +GUR₂ +I₃ +GIŠ +šim +LI +ŠEŠ₂ +su +x +x +x +x +x +x +x +x +x +i# +na!?# +qu₂ +tu +ṣar +raš!(BI) +ma +TI +x +x +x +x +x +x +x +x +x +x +x +u₂# +ap +ru₃ +ša₂ +u₂ +il₃ +kul₂ +la +ša₂ +PU₂# +x +x +x +x +x +x +x +x +x +ŠEŠ₂ +su +ma +TI +x +x +x +x +x +x +x +x +x +tu# +bal +ta +sak₃ +ina +I₃ +HI +HI +ŠEŠ₂ +MEŠ# +su# +ma +TI +x +x +x +x +x +x +x +tu +bal +ta +sak₃ +ina +I₃ +HI +HI +ŠEŠ₂ +MEŠ +su +ma +TI +DIŠ +NA +x +x +x +x +MUR +MEŠ +GIG +ma +NA +BI +ṣi +na +ah +tu +ra +... +šim +ŠEŠ# +3 +U₂ +HI +A +ša₂ +šu₂ +nu +x +x +x +x +... +ta +sak₃# +ina# +I₃# +x +x +x +x +... +1319 DIŠ +NA +NINDA +GU₇ +KAŠ +NAG +ma +ŠA₃ +MEŠ? +šu₂ +in +nem +me +ru +in +ne₂?# +bi +ṭu₂ +x +x +x +x +x +x +UD# +DA# +SA₂ +SA₂ +NA₄ +ZU₂ +LUM +MA +GAZ +GIM +KAM +ZI₃ +DA +tara +bak# +x +x +x +x +x +... +ina +dug# +UTUL₇# +ŠEG₆# +šal +... +... +x +x +... +... +i +lu# +ru +sa +a +mu +GAZ +SAG +DU# +su +... +... +e +qi +di +ša₂ +la +MUN +GAZ +ina +GA +HI? +HI +... +... +x +u₂ +i +lu +ru +sa +a +mu +SAG +DU +su +še +bi +... +... +tu +kaṣ₃# +ṣa +EGIR +šu₂ +e +qi +di +ma +ša +la +MUN +ana +x +... +... +LAL₂ +id +SAG +DU +su +ina +tug₂ +ṣi +in +di +... +... +x +šu₂ +la +ta +ṣa +ba +... +... +x +ZI₃ +bu +ṭu +tu₂ +ina# +A +tara# +bak# +SAG +DU +su +LAL₂ +... +... +PIŠ₁₀ +d +ID₂ +NAGA +SI +U₅ +ARGAB +mušen +... +... +ŠEŠ +DIŠ +niš +ina +GISSU +HAD₂ +DU +GAZ +SIM +... +... +gu +riš# +tu₂ +i +tel +li +... +... +x +x +x +x +x +... +NUMUN +u₂# +NU# +LUH# +HA +... +NUMUN +u₂ +AB₂ +DUH +... +NUMUN +u₂ +u₅# +ra +nu +... +DIŠ +NA +ki +is +ŠA₃ +GIG +... +ul +tu +x +... +DIŠ +NA +ki +is# +ŠA₃ +GIG +... +NUMUN +u₂ +x +... +ul +tu +x +... +x +x +x +... +... +x +... +GUR +GUR!? +šu +ma +TI +... +NA +BI +aš +rat +d +nin +urta +KIN +ma +DUG₄ +GA?# +x +x +šu₂ +... +I₃ +GIŠ +šim +GIG +SUD +sig₂ +AKA₃ +NIGIN# +mi +... +x +bi# +za +te +: +I₃ +šim +LI +... +GUR +GUR +šu +ma +TI +... +NA +BI +aš +rat +d +UTU +KIN +ma +... +x +NIGIN# +mi# +ana# +ŠA₃?# +GEŠTU?# +MIN? +šu₂?# +GAR?# +an +... +x +... +... +PIŠ₁₀ +ID₂ +x +x +x +x +x +x +x +x +... +NAM +LU₂ +U₁₈ +LU +x +x +x +x +x +x +x +x +x +... +giš! +EREN +TAG +at +x +x +x +x +x +x +... +ŠEŠ₂?# +su?# +ŠE₁₀? +x +x +x +x +... +LU₂ +U₁₈?# +LU?# +x +x +x +x +x +... +te +ṭer₅ +ri# +LAL# +... +u₂ +IGI +lim +... +NU +pa +tan# +NAG +... +ZU₂# +LUM +... +SUR +LAL +... +x +DIŠ +NA +IGI +MIN +šu₂ +mur +din +ni +DIRI +sah +le₂ +e +ZI₃ +ŠE +SA +A +ina +KAŠ +tara +bak +LAL +UD +3 +KAM₂ +IGI +MIN +šu₂ +NU +DU₈ +ka +la +UD# +me# +3# +šu₂# +KEŠDA +ina +4 +UD +mi +ina +šim +MAN +DU +er +ri +IGI +MIN +šu₂ +ta +kad +da +ad +A +ina +ŠA₃ +IGI +MIN +šu₂ +ŠUB +IGI +MIN +šu₂ +tu +šak +kal +qer +ša₂ +em +ma +1 +šu₂ +2 +šu₂ +3 +šu₂ +IGI +MIN +šu₂ +KEŠDA +I₃ +UDU +kur +sin +ni +MAŠ +DA₃ +IGI +MIN +šu₂ +x +x +pap? +ina +EGIR +ti₃ +ina +ir +ri +A +GAR₅ +SUD₂ +IGI +MIN +šu₂ +MAR +giš +HAB +SUD₂ +ana +UGU +IGI +MIN +šu₂ +ta +bi +la₁₂ +MAR# +LAL +ka +la +UD +me +3 +šu₂ +KEŠDA +u₂ +kal +ma +ZI +giš +MAŠ +HUŠ +u +giš +šinig +NUMUN +u₂ +KI +d +IŠKUR +šim? +LI +ŠE +SA +A +sah +le₂ +e +HE +HE +ta +bi +la₁₂ +ana +UGU +SAG +DU +šu₂ +MAR +SAG +DU +su +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +ina +4 +UD +me +DU₈ +šu₂ +ma +SAG +DU +su +tu +gal +lab +U₂ +rib +ka +IGI +MIN +šu₂ +MAR +MEŠ +ina +eš +U₂ +BABBAR +U₅ +ARGAB +mušen +mun +eme +sal +li₃ +NA₄ +ga +bi +i +NAGA +SI +šim +SES +IM +GU₂? +EN? +NA? +GAZI +sar +PAP +8 +U₂ +MEŠ +ṭi₅ +pu +šum +ma +NA +IGI +MIN +šu₂ +UD +DA +ha +an +ṭa +u +mur +din +ni +DIRI +U₂ +BABBAR +NA₄ +ga +bi +i +mun +eme +sal +li₃ +an +nu +u₂ +ṭi +pu +ša₂ +IGI +MIN +šim# +GUR₂ +GUR₂ +ZI₃ +ŠE +SA +A +GAZI +sar +an +nu +u₂ +ṭi +pu +ša₂ +IGI +MIN +DIŠ +NA +IGI# +MIN# +šu₂# +GID₂# +DA# +GID₂# +DA# +u₂# +kal +la +ana +E₂ +a +hi +i +DU +ma +KA₂? +GU₃ +si +ki +ma +x +... +... +GID₂ +DA +GID₂ +du +KIMIN# +GID₂# +DA# +GID₂# +du# +ku +nu +ma +tab +la +MIN +... +a +na +E₂ +NU? +e# +de +e +DU +ma +KA₂ +GU₃ +si +ki +ma# +x +x +x +... +HI +x +x +x +GID₂ +DA +GID₂ +du +KIMIN +GID₂ +GID₂ +ku +nu +ma +tab +la +x +... +DIŠ +NA +ina +IGI +MIN +šu₂ +li +piš +tu₄ +šim +GUR₂ +GUR₂ +šim +LI +šim +HAB +NUMUN +ŠINIG +... +SUD₂ +... +DIŠ +NA +ina +IGI +MIN +šu₂ +SIG₂ +a +ṣa +at +u +IGI +MIN +šu₂ +a +ša₂ +a +MUN +kam₂ +ma +I₃# +UDU# +ELLAG₂? +... +ša₂ +UDU +NITA₂ +LAL₃ +KUR +RA +mal₂ +ma +liš +SUD₂ +ina +I₃ +NUN +HE +HE +IGI +MIN +šu₂ +MAR +ta +maš +aš? +... +DIŠ +NA +IGI +MIN +šu₂ +UZU +a +li +ka₁₃ +DIRI +a +ana +TI +šu₂ +... +x +x +NUMUN +GI +ZU₂ +LUM +MA +ina +LAL₃ +SUD₂ +MAR +: +x +... +x +x +na₄ +as +har +ina +I₃ +NUN +SUD₂ +MAR +: +x +... +DIŠ +NA +IGI +MIN +šu₂ +UZU +DU +kam₂ +DIRI +ma +u +DU +ak +ana +TI +šu₂# +x +... +šim +GIG +U₂ +BABBAR +U₅ +ARGAB +mušen +mun +eme +sal +li₃ +1 +niš +SUD₂ +... +ina +MUD₂ +giš +EREN +lu +ina +I₃ +GIŠ +giš# +EREN +HE +HE +ZA +NA +DU₃ +uš +ina +A +MEŠ +SUD₂ +IGI +MIN +šu₂ +MAR +DIŠ +NA +IGI +MIN +šu₂ +UZU +u +MUD₂ +DIRI +MEŠ +šim +SES? +u₂ +KUR +RA +U₂ +BABBAR +I₃ +UDU +šim +GIG +U₅ +ARGAB +mušen +sah +lu +u +U₂ +MEŠ +an +nu +ti +te +qit +ša₂ +UZU +DU +DIŠ +NA +IGI +MIN +šu₂ +qu₃ +qa +ni +DIRI +MEŠ +gu +ru +uš +ga +ra +aš +ša +ŠAH +... +ina +TUG₂ +te +sip +7 +UD +me +ina +KUN₄ +te +te +mer +E₁₁ +ma +... +x +x +mal +ma₂ +liš +SUD₂ +x +x +x +x +x +x +... +... +ina +I₃ +UDU +GIR₃ +PAD +DU# +LUGUD₂# +DA +UDU? +... +x +x +x +SUD₂ +MAR +x +x +x +... +mal₂ +ma +liš +SUD₂ +ina +LAL₃ +I₃ +NUN +I₃ +GIŠ +giš +EREN +SAHAR +URUDU +SUD₂? +MAR +DIŠ# +KIMIN# +ZI₃ +d +ŠE +TIR +KI +ŠE +SA +A +SUD₂ +ana +UGU +IGI +MIN +šu₂ +DUB +DIŠ +NA +IGI +MIN +šu₂ +... +ina +I₃ +UDU +ELLAG₂ +UDU +NITA₂? +GAB +LAL₃ +1 +niš +HE +HE +ina +I₃ +UDU +GIR₃ +PAD +DU +GID₂ +DA +SUD₂ +te +eq +qi₂ +DIŠ +i +na +IGI +x +x +x +x +x +i +te +ne₂ +ṭa +a +NA +BI +KIN +šu₂ +SUMUN +ma +IGI +MIN +šu₂ +ip +pa +a +ana +TI +šu₂ +1 +GIN₂ +x +x +x +x +x +ina +I₃ +NUN +SUD₂ +IGI +MIN +šu₂ +MAR +MEŠ +DIŠ +NA +IGI +MIN +šu₂ +nu +up +pu +ha +... +ZI₃ +šim +GUR₂ +GUR₂ +ZI₃ +ŠE +SA +A +GAZ +SIM +ina +KAŠ +tara +bak +IGI +MIN +šu₂ +LAL +U₂ +BABBAR +NA₄ +ga +bi +i +mun +eme +sal +li₃ +U₂# +HI# +A +ṭi +pu +ša₂ +IGI +MIN +DIŠ +NA +IGI +MIN +šu₂ +bar +ra +u +ER₂ +u₂ +kal +la +... +GAB?# +LAL₃? +x +x +x +x +7 +UD +me +ina +KUN₄ +te +te +mer +E₁₁ +ma +... +x +... +DIŠ# +NA# +IGI# +MIN# +šu₂# +... +SUD₂ +IGI# +MIN# +šu₂# +MAR# +x +... +DIŠ +NA +IGI +MIN +šu₂ +ar +pa +... +ina +I₃ +u +SAHAR +URUDU +ša +ŠEN +TUR +SUD₂ +IGI +MIN +šu₂ +MAR +ŠIKA +LIBIR +RA +ša₂ +ki +ib# +ša? +TUK +u₂ +ina# +I₃ +SAHAR +URUDU +SUD₂ +MAR +LAL₃ +KUR +RA +... +DIŠ +NA +IGI +MIN +šu₂ +ṣu +uh +hu +ta +GEŠTIN +KA₅ +A +SIG₇ +su +tu +ha +sa +A +MEŠ +šu₂ +ina +dug +UTUL₂ +tara +bak +IGI +DUL +ma +ša₂ +AN +TA +i +šal? +lu +ina +SAHAR +URUDU +u +I₃ +GIŠ +SUD₂ +MAR +DIŠ +KIMIN +ZA₃ +HI +LI +ina +GA +ta# +ka# +aṣ +ina +NININDU +te +ep +pi +ma +ʾ +da +la +i +ba +x +... +I₃ +UDU +šim +GIG +u₂ +KUR +KUR +NA₄ +ga +bi +i +U₂ +BABBAR +GAZI +sar +ina +I₃ +NUN +SUD₂ +IGI +MIN +šu₂ +MAR +DIŠ +KIMIN +NINDA +ši +ib +ri +tur +ar₂ +SUD₂ +ki +ma +ṭi +pi +te +ṭe +ep +pi +DIŠ +KIMIN +ZI₃ +GU₂ +GAL +ZI₃ +GU₂ +TUR +ZI₃# +GAZI +sar +sah +le +e +qa +la +a +ti +bal +ṭa +ti +ina +dug +UTUL₂ +tara +bak +LAL +DIŠ# +KIMIN# +šim +BAL +GAZI +sar +ina +GA +SUD₂ +IGI +MIN +šu₂ +MAR? +DIŠ +KIMIN +U₂# +BABBAR +AN +ZAH +GE₆ +tur +ar₂ +ina +I₃ +NUN +SUD₂ +MAR +: +DIŠ +KIMIN +KU₃ +GAN +ina +I₃ +UDU +GIR₃ +PAD +DU +UDU +SUD₂ +MAR# +DIŠ +KIMIN +ZI₂ +BAL +GI +ku₆# +ina +MUN +NA₂ +al +EN +HAD₂ +DU +GAR +an +UD +ma +HAD₂ +DU +ina +I₃ +SAHAR +URUDU +SUD₂ +MAR# +DIŠ +KIMIN +ZI₂ +x +x +x +UGU +GIR₂ +ZABAR +ina +I₃ +NUN +SUD₂ +MAR# +x +x +... +2772 DIŠ +KIMIN +U₂ +BABBAR +u₂ +GEŠTIN +KA₅ +A +ina +I₃? +GIŠ? +ŠUB +ina +ŠU +SI +ka +MAR +DIŠ +KIMIN +SAG +DU +EME +ŠID +HAD₂ +DU +SUD₂ +ina +I₃ +ŠUB +MAR +: +DIŠ +KIMIN +EME +ŠID +E₂ +GAR₈ +HAD₂ +DU +SUD₂ +ina +ŠU +LU₂ +ZABAR? +ina +NE +GAR +an +MAR +GAG +TI +TI +UDU +tur +ar₂ +SUD₂ +... +UD +3 +KAM₂ +ina +mu +ša₂ +li₃ +GAR +SAG +UŠ +MAR +DIŠ +NA +IGI +MIN +šu₂ +DUL? +ma +x +x +SUD₂? +ina +I₃ +NUN +HE +HE +ana +ŠA₃ +IGI +MIN +šu₂ +tu +na +tak +UGU +ša +SUN₂ +ti₃ +SUD₂? +... +ina +I₃ +GIŠ +u +UGU +ša +TU +mušen +NITA +mal +ma +liš +HE +HE +UD +3 +KAM₂ +ina +mu +ša₂ +li₃ +GAR +SAG +UŠ +ana +ŠA₃ +IGI +MIN +šu₂ +ŠUB +ŠUB +di +NUNUZ +UGA +mušen +SUD₂ +x +x +x +x +EGIR? +E₁₁ +ma +GIR₂ +ZABAR +I₃ +NUN +ŠEŠ₂ +x +... +ŠU +MEŠ +ka +ina +A +LUH +si +... +ina +I₃# +NUN +tu +la +bak +MAR +... +ina +mu +ša₂ +li₃ +GAR +an +ka +a +a +nam +te +te +ne₂ +qi₂# +... +SUD₂# +MAR +... +ana +I₃# +GIŠ# +tara# +bak# +IGI# +4# +GAL₂# +LA +im +KAL +GUG +SUD₂ +MAR +... +x +SILAₓ!(KISAL) +ku +ut +pa +a +ina +I₃ +GIŠ +EREN +SUD₂ +te +qi₂ +... +x +:#? +GEŠTIN +KA₅ +A +SUD₂ +ina +I₃ +ina +urudu +ŠEN +TUR +BAL +at +te +qi₂ +... +NUMUN +giš +NIG₂ +GAN₂ +GAN₂# +ur₂ +ne₂ +e? +UR +BI +ta +sak₃ +te +qi₂ +... +ina +I₃ +SUD₂ +te +qi₂ +... +x +ta +ana +ŠA₃ +IGI +MIN +šu₂ +tu +na +tak +... +bu +ṣi +ni? +ša₂ +nu +ri₃ +ta +sa +rim +qut +raₓ(AG₂) +ša +nu +ri₃ +... +x +KI +A +NAGA +SI +IGI +MIN +šu₂ +LUH +si +... +U₂ +BABBAR? +5?# +GIN₂ +U₅ +ARGAB +mušen +mal# +ma# +liš# +HE +HE +... +DILIM₂ +A# +BAR₂# +ina +I₃ +u +SAHAR# +URUDU# +SUD₂ +MAR +... +ina +urudu +ŠEN? +TUR +tu +kaṣ₃ +ṣa# +ina# +urudu +ŠEN# +TUR +HE +HE +... +SAHAR +URUDU +ša# +urudu +ŠEN +TUR +ta +šam +ma +aṭ +7 +UD +mi +MAR +... +x +pa +ʾa +ṣu₂ +te +I₃ +UDU +... +ina +ir +ri +A# +GAR₅ +SUD₂ +te +qi₂ +ma +PA +IGI +MIN +šu₂ +ik +ši +a +na +IGI +MIN +ki +ṣa +a +ti +bul +lu +ṭu +u₃ +kap +pi +IGI +MIN +šu₂ +šu +ṣi +i +sah +le₂ +e +ki +ṣa +a +ti +ina +NININDU!(SUG) +TE +ma +ma +ʾa +du +la +ir +ri +ra +ina +I₃ +GIŠ +BUR +tara +bak +IGI +MIN +šu₂ +MAR +URUDU +SUMUN +ina +I₃ +NUN +SUD₂ +GIN₇ +rib +ki +IGI +MIN +šu₂ +MAR +MEŠ +ma +TI +... +A? +u₂# +IN₆ +UŠ₂ +A +u₂ +EME +UR +GI₇ +A +u₂ +GEŠTIN +KA₅ +A +... +ti# +TI# +qe₂ +ina +SAHAR +URUDU +A +sah +le₂ +e +SUD₂ +IGI# +MIN# +šu₂# +MAR# +... +tur +ar₂# +ta# +pa# +a# +aṣ# +ina# +SAHAR +URUDU +SUD₂ +MAR# +... +7 +UD +me +ina +KUN₄ +te +tem +mer +E₁₁ +ma +ina +SAHAR +URUDU +SUD₂ +MAR +... +ina +SAHAR +URUDU +SUD₂ +MAR +... +x +IGI +MEŠ +šu₂ +nu +ina +giš +DALA₂ +tu +tak₂ +kap +... +U₂# +MEŠ# +ša# +UGA +mušen +ana +TUR +MEŠ +šu₂ +il +qa +a +... +ša₂ +šu +ta +sak₃ +te +qi₂ +... +kam +ka +di +SUD₂ +UGU +GIG +GIR +ša +kap +pi +IGI +MIN +šu₂ +tu? +gal? +lab? +u₂# +BAL# +NUMUN# +U₂# +da +aq +qi₂ +qi₂ +ŠE₁₀ +up +pu +te +gu +ra +ša₂ +GI +NUMUN +u₂ +ta +lu +pa +di +la +ar +si₃ +ni +ša +hal +li +U₈# +ša +GUB₃ +ša +MAŠ +TAB +BA +U₃ +TU +ELLAG₂ +MAŠ₂ +TUR +la +ki +i +ša +U₂ +la +na +aš# +ku# +ŠE +BAR +la +ṣa +bi +tu₂ +ina +nem +se +te +ta +qal₃# +lu# +giš +bal +ta₅ +ša +MUN +u₂ +GUR₂ +UŠ +giš +GEŠTIN +KA₅# +A# +NUMUN +u₂ +NIG₂ +GIDRU +ta +qal +lu +NUMUN +u₂ +EME +UR +GI₇ +u₂ +KUR₄ +GI +RIN +NA +u₂ +gim +gi +ra +U₂ +BABBAR# +GI +DUG₃ +GA +1 +niš +SUD₂ +HE +HE +ina +A +GAZI +sar +sek +ru +ti +SED +ta +la₃ +aš +UD +15 +KAM₂ +LAL +MEŠ? +UD +15 +KAM₂ +U₂ +BABBAR +UD +3 +KAM₂ +te +eq +qi₂ +DIŠ +NA +IGI +MIN +šu₂ +IGI +SIG₇ +SIG₇ +DIRI +BAR +giš +NU +UR₂ +MA +SUD₂ +ina +gi +SAG +KUD +ana +ŠA₃ +IGI +MIN +šu₂ +BUN₂? +DIŠ +NA +IGI +MIN# +šu₂ +IGI +SIG₇ +SIG₇ +DIRI +ŠIKA +giš +NU +UR₂ +MA +ina +I₃ +SUD₂ +MAR +: +mun +eme +sal +li₃ +SUD₂? +MAR? +DIŠ +NA +IGI +MIN +šu₂ +GIG +ma# +UD# +ma# +ʾ +du +ti +NU +BAD# +ina +KUM₂ +SAG +šu₂ +IGI +MIN +šu₂ +GISSU +DIRI? +... +MI? +SAG +DU +su +tu +gal +lab# +ina# +UD# +me# +3# +šu₂# +NIG₂# +SILA₁₁ +GA₂ +tu +kaṣ₃ +ṣa# +NUMUN# +u₂# +IN₆# +UŠ₂# +tur +ar₂ +ina +I₃ +NUN +DILIM₂ +A# +BAR₂ +SUD₂ +MAR +A +LUH +si +GAZI +sar +UGU +IGI# +MIN# +šu₂# +GAR#? +EN#? +u₂# +za# +ku# +u₂ +GUR +GUR +u₂# +GEŠTIN? +KA₅ +A +LAL₃ +KUR +RA +ina +I₃ +NUN +HE +HE# +te +te +niq +qi₂ +DIŠ +NA# +IGI# +MIN# +šu₂ +GIG +ma +ši +ši +tu +UGU +d +LAMA +IGI +MIN# +šu₂# +ar₂ +mat +ER₂ +HI +A +DU +ak +IGI +MIN +šu₂ +GISSU +DIRI +ma +u₂ +UKUŠ₂# +LAGAB +sah +la +na +NUMUN +u₂ +EME +UR +GI₇ +... +U₂# +BABBAR +U₅ +ARGAB +mušen +11! +U₂ +HI# +A# +ša +šu +nu# +1?# +niš +SUD₂ +ina +I₃ +GIŠ +giš +EREN +HE +HE +IGI +MIN +šu₂ +MAR +ma +TI# +DIŠ +NA +IGI +MIN +šu₂# +GIG# +ma +ši +ši +tu +UGU +d +LAMA +IGI +MIN +šu₂ +ar₂ +mat +di +gal +šu# +DUGUD# +ana +BABBAR +ša +UGU +d +LAMA +IGI +MIN +šu₂ +ZI# +u₂ +at +kam₂ +... +SUD₂ +... +ina +I₃ +giš# +EREN +HE +HE +IGI +MIN +šu₂ +MAR +MES +ma +TI +DIŠ +NA +IGI +MIN +šu₂# +GIG +ma +... +x +di +gal +šu +DUGUD# +x +x +... +SUD₂ +IGI +MIN +šu₂ +MAR +... +x +UM +IM +DU +KU +BAD? +... +... +SUD₂ +MAR +... +giš +NAM +TAR +NITA₂ +... +x +GU₇ +ma +x +x +... +SUD₂ +ina +gi +SAG +KUD +ana +ŠA₃ +IGI# +MIN# +šu₂# +MU₂# +ah +... +SUD₂? +MIN +... +ŠUB +di +ana +UGU +ŠIKA +i₃ +gu +le +e +... +x +ta +šar₂ +rap +qut +ra +ša₂ +šit +ti +... +a +he +en +na +IGI +MIN +šu₂ +MAR +MEŠ +ma +TI +DIŠ +NA +IGI +MIN +šu₂ +... +x +ma +DUGUD +ana +TI +šu₂ +ILLU +NU +LUH +ILLU +šim# +BULUH# +u₂# +... +7 +ITI +u +8 +ITI +ZI +ha +TI +DIŠ +NA +IGI +MIN +šu₂ +ši +ši +tu₂ +DIRI +... +15? +ŠE +ŠIKA +U₂ +BABBAR +ina +I₃ +NUN +SUD₂ +MAR +DIŠ +NA +MIN +1 +GIN₂ +U₅# +ARGAB +mušen +... +SUD₂ +... +x +x +ta +bi +la₁₂ +MAR +DIŠ +NA +MIN +1 +GIN₂ +U₅ +ARGAB# +mušen# +ina# +I₃# +NUN# +SUD₂# +MAR# +:# +15 +ŠE +ŠIKA +... +ina +... +SUD₂ +MAR# +u₂ +im +hur +lim +ina +I₃ +NUN +SUD₂ +IGI +MIN +šu₂ +MAR +3894 ... +1 +šu₂ +2# +šu₂# +3# +šu₂# +I₃# +NUN# +SUD₂# +MAR# +... +ina +I₃# +NUN# +SUD₂# +ina# +ITI# +3# +šu₂# +MAR# +U₅# +ARGAB# +mušen# +ina# +I₃# +NUN# +SUD₂# +MAR# +PA +giš +bi +ni +PA +giš +MA +NU +ina +A +GEŠTIN +NA +ta +la +aš +IGI +MIN +šu₂ +LAL +U₂ +BABBAR +NAGA +SI +UR +TAL₂ +TAL₂ +NU +pa# +tan# +ana +ŠA₃# +IGI +MIN +šu₂ +ta +ma +za +aʾ +... +x +mun# +eme +sal +li₃ +si +ik +ti +ŠE +SA +A# +HE# +HE# +tur +ar₂ +SUD₂ +MAR +DIŠ +... +SAHAR +URUDU +ina +ŠA₃ +I₃ +UDU +sa +a +qi₂ +MAŠ +DA₃ +SUD₂ +MAR +DIŠ +... +šim +SES +GA +munus +U₂ +ZUG₂ +ša₂ +NITA? +U₃ +TU +SUD₂ +MAR# +LAL₃# +I₃ +NUN +NA +ana +ŠA₃ +IGI +MIN +šu₂ +tu +na +tak₂ +DIŠ +... +x +x +... +IM +NU +E₃ +a +... +x +ina +I₃ +NUN +HE +HE +MAR +... +ta +ša +qal₃ +MAR +... +U₅ +ARGAB +mušen +ta# +bi# +la₁₂# +ina# +I₃ +NUN +HE +HE +KIMIN +... +u₂# +ba# +ni# +a +ṣi +SIG₇ +su +ina +A# +LUH# +si +GAZ +A +MEŠ +šu₂ +nu +... +HAD₂# +DU# +ši +hi +il +tu₂ +SAHAR +URUDU +mal +ma +liš +HE +HE +ina +A +LUH +LAL₃ +KUR +e +SUD₂ +MAR +... +ina +GA +munus +U₂ +ZUG₂ +mal +ma +liš +HE +HE +SUD₂# +MAR +... +A +MEŠ +šu₂ +nu +ana +dug +BUR +ZI +SUR +at# +... +EN +HAD₂ +DU +GAR +an +UD +ma +HAD₂ +DU +ina +SAHAR +URUDU +I₃ +NUN +SUD₂# +MAR# +... +ana +ŠA₃ +IGI +MIN +šu₂ +tu +na +tak₂ +I₃ +UDU +ina +SAHAR +URUDU +SUD₂ +MAR# +DIŠ +... +IGI +MIN +šu₂ +kat₂ +ma +kur +ṣip +ti +A +ŠA₃ +ina +na₄ +BAR +DU₃ +E +SUD₂ +ŠA₃ +IGI +MIN +šu₂ +... +x +na₄ +KA +GI +NA +DAB +BA +SUHUŠ +giš +GIŠIMMAR +NITA₂ +... +IM +SAHAR +NA₄ +KUR +RA +a +he +e +SUD₂ +MAR +... +x +GURUN +u₂ +UKUŠ₂ +LAGAB +GAZ +ina +I₃ +SUD₂ +MAR +... +ina +LAL₃ +KUR# +RA +I₃ +NUN +MIN +... +SUD₂ +MAR# +... +SUD₂# +ina# +I₃# +NUN +HE +HE +... +... +IGI +MEŠ +šu₂ +nu +ina +giš +DALA₂ +tu +tak₂ +kap +... +ina +DILIM₂ +A +BAR₂ +SUD₂ +MAR +... +bi +la +ta +HAD₂ +DU +GAZ +ina +I₃ +NUN +SUD₂ +MAR +... +SUD₂? +ana +ŠA₃ +IGI +MIN +šu₂ +tu +na +tak₂ +... +MAR +... +x +ti +i +BAD +... +x +hap +pi +... +SUD₂ +MAR +... +ina +TUG₂? +te +sip +... +ana +ŠA₃ +IGI +MIN +šu₂ +tu +na +tak₂ +... +GIŠ +i +na +sah +... +x +A +GAR +GAR +MAŠ +DA₃ +... +ta# +sak₃ +MAR +... +x +... +x +ina +A +SUD₂ +te +qi₂ +... +ina +KAŠ# +ta +la₃ +aš +IGI +MIN +šu₂ +LAL +... +te +qi₂ +... +x +SUD₂ +te +qi₂ +... +ina +I₃ +SUD₂ +te +qi₂ +... +ina +IGI +šu₂ +GIG +tu +mad +... +ta +sak₃ +te +qi₂ +... +SUD₂ +MAR +x +x +... +KEŠDA +KAŠ₃# +... +u₂# +KUR +KUR +ŠA₃ +IGI +MIN +šu₂ +... +ARA₃ +en# +DIŠ +IGI +MIN +šu₂ +... +ZA₃ +HI +LI +U₂ +a +ši +i +... +ina +GA +HE +HE +MAR +a +na +nu +uh₂ +hi +x +... +x +ina +I₃ +HE +HE +MAR +I₃ +UDU +ŠIKA +MUN +ana +ŠA₃ +IGI +MIN +šu₂ +... +ina +I₃ +GIŠ +giš +EREN +HE +HE +MAR +mun +me₅ +SILIM +u₂ +ak +tam +SUD₂ +ina +LAL₃ +... +ina# +LAL₃ +BABBAR +GIR₂ +ZABAR +MIN +DIŠ +NA +IGI +MIN +šu₂ +ma +di +ra +x +... +x +ra +U₂ +BABBAR +NUMUN +GI +ZU₂ +LUM +MA +4459 U₅ +ARGAB +mušen +... +A +GAR₅ +ina +I₃ +NUN +BIL₂ +x +... +DIŠ +NA +IGI +MIN +šu₂ +GISSU +ma +šam# +ha# +... +DIŠ +NA +IGI +ZAG +šu₂ +GISSU# +ma +... +ina +GIR₂ +ŠU +I +še +e +li? +... +DIŠ +NA +IGI +GUB₃ +šu₂ +GISSU +ma +... +ina +GIR₂ +ŠU +I +... +DIŠ +NA +IGI +MIN +šu₂ +GIG +GA +ZALAG# +GA# +x +... +UGU +ša +TI₈ +mušen +ina +GA +munus# +U₂#? +ZUG₂? +SUD₂? +... +NUMUN +GI +ZU₂ +LUM +MA +si +ik +ti +ŠE +SA +A +HE +HE +... +DIŠ +NA +d +LAMA +MEŠ +IGI +MIN +šu₂ +GISSU +DIRI? +... +IGI +MIN +šu₂ +MAR +DIŠ +KIMIN +ILLU +LI +TAR +... +DIŠ +IGI +LU₂# +GISSU +ṣi# +ri +ih +ta₅ +DIRI +... +... +x +x +... +... +ri# +i# +... +... +x +DIŠ +KIMIN? +... +DIŠ +NA +IGI +MIN +šu₂ +x +x# +DIRI +x +... +... +x +MUD₂ +kur +ṣib +ti +GU₄ +GE₆ +u +x +... +DIŠ +NA +IGI +MIN +šu₂ +LU₃ +LU₃ +LAL₃ +BABBAR +ina +I₃ +NUN +1 +niš +HE +HE +... +DUB +2# +KAM₂ +DIŠ +NA +IGI +MIN +šu₂ +GIG +E₂ +GAL +m +aš +šur +DU₃ +A +LUGAL +ŠU₂ +20 +KUR +AN +ŠAR₂ +ki +ša +d +AG +u +d +taš +me +tu₄ +GEŠTU +MIN +ra +pa +aš₂ +tu₄ +iš +ru +ku +šu₂ +e +hu +uz +zu +IGI +MIN +na +mir# +tu₄ +ni +siq +tup +šar +ru +ti +ša +ina +LUGAL +MEŠ +ni +a +lik +mah +ri# +ia +mam₂# +ma# +šip# +ru# +šu +a +tu₂ +NU +e +hu +uz +zu +bul# +ṭi +TA +muh +hi +EN +UMBIN +liq# +ti# +BAR# +MEŠ# +ta# +hi +zu +nak +la +a +zu +gal +lu +ut +d +nin +urta +u +d +gu +la +ma +la +ba +aš₂ +mu +ina# +ṭup +pa +a +ni +aš₂ +ṭur₃ +as +niq +IGI +KAR₂ +ma +a# +na +ta +mar +ti +ši +ta +si +ia +qe₂ +reb +E₂ +GAL +ia# +u₂# +kin +DIŠ# +NA +su +a +lam +GIG +ana +ki +is +ŠA₃ +GUR +šu₂ +šu +ru +uš# +giš +NAM +TAR +šu +ru# +uš# +giš +šu +še +u₂ +tar +muš +u₂ +IGI +lim +u₂ +IGI +NIŠ +u₂ +tu +lal +u₂ +ŠAKIRA# +7 +U₂ +HI# +A +ŠEŠ +TEŠ₂ +BI +SUD₂ +ina +KAŠ +ŠUB +di +ina +MUL +tuš +bat +ina +A₂ +GU₂ +ZI +GA +NU +pa +tan +NAG# +MEŠ +ma +ina +eš +DIŠ +NA +ki +is +ŠA₃ +GIG +ina +UD +ša₂ +tu +giš +MA₂ +GUR₈ +U₅ +šu₂ +E₁₁# +šu₂ +ma +TU₆ +ki +a +am +ŠID +nu +EN₂ +E₂ +NU +RU +LU +RA +GAR +dam +gal +kur +MIN +: +gi +d +en +lil₂ +a₂ +e# +nu +ub +zum +d +zar +pa +ni +tu₄ +ša +igi +gal₂ +la +gub +a?# +gir₃ +a +ni +gub +ba +gir₃ +a +ni +dur₂# +ra +: +du +ra +gir₃ +igi +gal₂ +gub +gir₃ +igi +gal₂ +TU₆ +EN₂ +TU₆ +an +ni +ta +ŠID +nu +ma +TI +ana +KI +MIN +UZU +d +NIN +KILIM +HAD₂ +A +ba +lu +pa +tan +NAG +ma +TI +: +ana +KI +MIN +šu +ru +uš +giš +šu₂ +še +ina +A +MEŠ +ba +lu +pa +tan +NAG +ma +TI +ana +KI +MIN +MUN +SUD₂ +ina +A +MEŠ +ba +lu +pa +tan +NAG +ma +TI +ana +KI +MIN +MUN +a +ma +ni₇ +SUD₂ +ba +lu +pa +tan +NAG +ma +TI +DIŠ +NA +ki +is +ŠA₃ +GIG +NA +BI +ina +UGU +GIR₃ +MIN +šu₂ +tu +še +šab +šu₂ +A +GAZI +sar +sek +ru +ti +KUM₂ +ti +ana +UGU +šu₂ +DUB +ma +TI +ana +KI +MIN +ina +UGU +GIR₃ +MIN +šu₂ +uk +tam +ma +as +ma +u₂ +šab +A +ŠED₇ +ana +UGU +SAG +šu₂ +tu +qar +ra +ar₂ +ana +KI +MIN +SAG +DU +su +ana +šap +la +nu +GAR +an +GIR₃ +MIN +šu₂ +ana +AN +TA +nu +tu +ša₂ +qa +ina +me +ku +ti +TE +su +ta +ma +haṣ +ina +me +ku +ti +tu +ma +aš +šad +su +ma +ana +ŠA₃ +DU₁₀ +ab +DU₁₁ +GA +ina +ŠU +SI +ka +GAL +ti +ša +GUB₃ +14 +šu₂ +GU +DU +su +TAG +at +14 +šu₂ +SAG +DU +su +TAG +at +u +qaq# +qa +ra +TAG +at +ana# +KI +MIN +SUHUŠ +giš +NAM +TAR +NITA₂ +SUHUŠ +giš +šu +šum +u₂ +IGI +lim +u₂# +IGI# +NIŠ +u₂ +tar +muš +u₂# +IN# +NU# +UŠ +u₂ +EME +UR +GI₇ +SUD₂ +lu +ina +A +lu +ina +KAŠ +NAG +DIŠ +NA +ŠA₃ +šu₂ +it# +te +net +ba +aš +šum +10 +SILAₓ +u₂# +x +x +x +x +10 +SILAₓ +u₂ +MA₂ +ERIŠ₄ +MA₂ +LA₂# +e# +SUD₂ +HI +HI +x +x +x +x +TI +DIŠ +NA +ki +is +ŠA₃ +GIG +ŠA₃ +MEŠ +šu₂ +ma +gal +MU₂ +MU₂ +hu +mu +še +er +rit? +ta +šu₂ +GU₇? +šu₂ +u₂ +IGI +NIŠ +SUHUŠ +giš +NAM +TAR +NITA₂ +a +he +en# +na +a +GAZ? +SIM? +ina +ŠA₃? +mal# +ma# +liš# +TI# +qe₂# +ina# +KAŠ? +NAG? +ina +A? +ŠED₇? +tu +la +bak +ina +MUL₄ +tuš +bat +ina +še +ri₃ +ŠEG₆# +šal# +ta# +ša₂# +hal# +ana# +DUR₂# +šu₂ +DUB +ak +SI +SA₂ +ma +TI +šim +GUR₂ +GUR₂ +šim +LI +šim +GAM +MA +PA +giš +GE₆ +PAR₃ +PA +giš +ŠE +HAR +NUMUN +u₂ +ur +ba# +ti?# +DIŠ +niš +GAZ +SIM# +KI?# +I₃?# +UDU?# +šim# +HAB +HI +HI +ina +KUŠ +EDIN +SUR +ri +SAG +ŠA₃ +šu₂ +LAL₂ +ma +TI +DIŠ +NA +ki +is +ŠA₃ +GIG +NINDA +u +KAŠ +ŠA₃# +šu₂ +NU +IGI +har +šu₂ +ina +KA +šu₂ +GUR +GUR +ra +TUN₃ +šu₂ +u₂ +sa +hal +šu₂ +ip +ta +na +ru# +UZU +MEŠ +šu₂ +ir +ta# +nam +mu +u₂ +IM +ina +DUR₂ +šu₂ +NIGIN +ŠA₃ +MEŠ +šu₂ +eb +ṭu₂ +ana +TI +šu₂ +1 +2 +SILA₃ +A +ZU₂ +LUM +MA# +1 +2# +SILA₃# +A# +GAZI# +sar +10 +SILAₓ +A +GEŠTIN +NA +3 +GIN₂ +I₃ +hal +ṣa +2 +GIN₂ +LAL₃ +10 +GIN₂ +u₂ +KUR +RA +SUD₂ +ana +ŠA₃ +ŠUB +di +ina +GE₆ +ana +IGI +mul +UZ₃ +tuš +bat +ina +A₂ +GU₂ +ZI +GA +NU +pa +tan +NAG +šu₂ +EGIR +šu₂ +1 +2 +SILA₃ +ši +qa +NAG +šu₂# +ina +KA +šu₂ +u +DUR₂ +šu₂ +SI +SA₂ +tu +ser +šu₂ +ma +TI +uṭ +ana +KI +MIN +MUN +KUR +i +MUN +a +ma +ni₇ +TEŠ₂ +BI +SUD₂ +ina +KAŠ +NU +pa +tan +NAG +šu₂ +ina +KA +šu₂ +u +DUR₂ +šu₂ +SI +SA₂ +ma +tu +ser +šu₂ +ma +TI +ana +KI +MIN +u₂ +NU +LUH +HA +7 +ŠE +MEŠ +u₂ +IGI +lim +TEŠ₂ +BI +SUD₂# +ina# +KAŠ# +SAG# +NU# +pa +tan +NAG +šu₂ +ina +KA +šu₂ +u +DUR₂ +šu₂ +SI +SA₂ +ma +KI +MIN +ana +KI +MIN +ZI₃ +ŠE# +SA +A +ZI₃ +ha +ru +be +di# +ik +ta +ZU₂ +LUM +MA +TEŠ₂ +BI +SUD₂ +ina +KAŠ +NU +pa +tan +2# +UD# +me +NAG +MEŠ +2? +UD# +me# +ina +A +MEŠ +NU +pa +tan +NAG +MEŠ +A +MEŠ +SAG +ŠA₃ +šu₂ +tu# +sa +lah₂ +ma +TI +ana +KI +MIN +urudu +ŠEN +TUR +A# +u# +KAŠ# +DIRI +ma +giš +si +ha +giš +ar₂ +gan# +na +giš +ba +ri +ra +ta +u₂ +HAR +HAR +u₂# +at +kam₂ +ana# +ŠA₃# +ŠUB# +di# +x +x +x +x +x +x +x +x +x +x +I₃ +giš +EREN +ŠEŠ₂ +su +1 +2 +SILA₃ +sah +le₂ +e +1 +2 +SILA₃ +šim +GUR₂ +GUR₂ +1 +2 +SILA₃# +šim +LI +1 +2 +SILA₃ +u₂# +qut# +ri# +1 +2# +SILA₃# +GAZI +sar +1 +2 +SILA₃ +ZI₃# +MUNU₆ +1 +2 +SILA₃ +ZI₃ +GU₂ +GAL +1 +2 +SILA₃ +ZI₃ +GU₂ +TUR +1 +2# +SILA₃# +pa# +pa# +si# +d# +ID₂# +1 +2 +SILA₃ +u₂ +KUR +RA +1 +2 +SILA₃ +u₂ +AB₂ +DUH +1 +2 +SILA₃ +ŠE₁₀ +TU# +mušen +1 +2 +SILA₃ +u₂ +KAM +ti +A +ŠA₃ +10 +GIN₂ +šim +MAŠ +10 +GIN₂ +KA +A +AB# +BA# +1 +2 +SILA₃ +ZI₃ +GIG +1 +2 +SILA₃ +ZU₂# +LUM# +MA +1 +2 +SILA₃ +DIDA +SIG +GA +1 +2 +SILA₃ +ZI₃ +KUM +16 +U₂ +MEŠ +an +nu +ti# +TEŠ₂ +BI +GAZ +SIM +ina +KAŠ +SAG# +ina +urudu +ŠEN +TUR +GIM +ra +bi +ki +tara +bak +3 +UD +me +SAG +ŠA₃ +šu₂ +LAL₂ +id +NINDA +MEŠ# +u# +KAŠ# +ŠA₃# +šu₂ +IGI +har# +šu₂ +ma +TI +DIŠ +NA +ŠA₃ +šu₂ +ik +ta +na +su +šu₂ +u₂ +IGI +lim +NU +pa +tan +i +kal +ta +sak₃ +ina +KAŠ +NU# +pa# +tan# +NAG# +MEŠ# +ma# +TI +uṭ +ana +KI +MIN +u₂ +IGI +NIŠ +SUHUŠ +u₂ +šur +ne₂ +e +NU +pa +tan# +GU₇ +MEŠ# +SUD₂ +ina +KAŠ +NU +pa +tan +NAG +MEŠ +ma +TI +uṭ# +ana +KI +MIN +u₂ +ar₂ +zal +la +u₂ +HAR +HAR +šim# +GUR₂# +GUR₂# +šim# +x +x +x +x +NU +pa +tan +KI +MIN +ana +KI +MIN +I₃ +UDU +a +a +ar +DINGIR +KI +I₃ +NUN +NA +u +MUN# +HI +HI +NU +pa +tan# +GU₇# +MEŠ +ma +TI +ana +KI +MIN +kak +ku +sa +kam₂# +ša₂ +PA +MEŠ +šu₂ +DAGAL +MEŠ +ina +A +GAZI# +sar# +SUD₂ +ina +KAŠ +u# +LAL₃# +SIG₃# +aṣ# +NU# +pa# +tan# +NAG# +MEŠ +ma +TI +ana +KI +MIN +kak +ku +sa +kam₂ +ša₂ +PA# +MEŠ# +šu₂ +DAGAL +MEŠ +u +MUN +DIŠ +niš# +SUD₂# +ina# +KAŠ# +u# +LAL₃# +SIG₃ +aṣ# +NU# +pa# +tan +NAG +MEŠ +ma# +TI +ana# +KI +MIN +KIŠI₁₆# +HAB# +ša₂ +PA +MEŠ +šu₂ +DAGAL +MEŠ +GIM +LU +UB₂ +sar# +ta# +sa +laq +NAG# +MEŠ# +TI# +ana +KI# +MIN# +SUHUŠ# +giš# +šu# +še# +NU +pa +tan +GU₇ +SUD₂ +ina +KAŠ +NU +pa +tan +NAG +x +x +x +x +x +x +x +TI# +DIŠ +NA +x +x +x +x +x +TUKU? +UD +um +ŠA₃ +šu₂ +DAB# +šu₂ +x +x +x +x +x +NU +pa +tan# +NAG +TI +... +x +... +KAŠ? +MIN# +5997 ... +x +... +SA? +... +x +... +x +x +6007 DIŠ +NA +ŠA₃ +šu₂ +GU₇ +šu₂ +u₂ +HAR +HAR +MUN +SUD₂ +lu +ina +A +lu +ina +KAŠ +lu +ina +GEŠTIN +EN₂ +ana +ŠA₃ +ŠUB +di +NAG +DIŠ +NA +ŠA₃ +šu₂ +GU₇ +šu₂ +u₂ +HAR +HAR +lu +ina +A +lu +ina +KAŠ +NAG +DIŠ +NA +ŠA₃ +šu₂ +GU₇ +šu₂ +u₂ +ti +ia +a +ti +ina +KAŠ +NAG +u₂ +IGI +lim +ina +KAŠ +u₂ +IGI +NIŠ +ina +KAŠ +u₂ +tar +muš +ina +KAŠ +u₂ +DILI +ina +KAŠ +u₂ +GAMUN +GE₆ +ina +KAŠ +u₂ +HAB +ina +KAŠ +u₂ +HAR +HAR +lu +ina +KAŠ +lu +ina +GEŠTIN +DIŠ +NA +ŠA₃ +MEŠ +šu₂ +GU₇ +MEŠ +šu₂ +1 +2# +SILA₃ +ZU₂ +LUM +MA +1 +2 +SILA₃ +NIG₂ +AR₃ +RA +GIG +BA +1 +2 +SILA₃ +LAGAB +MUNU₆ +ina +3 +SILA₃ +KAŠ +SAG +ŠEG₆ +šal +tu +kaṣ₃ +ṣa +ta +ša₂ +hal +I₃# +GIŠ# +ana# +IGI# +ŠUB# +di# +ana +DUR₂ +šu₂ +DUB +ak +UD +ma +LU +UB₂ +SUM +sar +GAMUN +sar# +SUD₂# +ina +KAŠ +NAG +: +ana +KI +MIN +HI +IS +sar? +SUM# +sar# +SUD₂ +ana +A +ŠUB +ina +MUL₄ +tuš +bat +NAG# +iš +tu +NAG +u₂ +NINDA +I₃ +DE₂ +A +ina +I₃ +NUN +NA +GU₇# +:# +ana# +KI +MIN +u₂ +NU +LUH +HA +SUD₂ +ina +KAŠ +NAG +ana +KI +MIN +u₂ +IGI +lim +SUD₂ +KI +MIN +: +ana +KI +MIN +u₂# +SIKIL +SIG₇ +GU₇ +DIŠ +NA +ŠA₃ +šu₂ +ka +si +šu₂ +SUM +sar +SIG₇ +su +šim +GUR₂ +GUR₂? +TEŠ₂ +BI +SUD₂ +ina# +A +SIG₃ +aṣ +NU +pa +tan +NAG +šu₂ +ZU₂ +LUM +MA +lu +ina +I₃ +ŠAH +lu +ina# +I₃ +GIŠ +GU₇ +ana +KI +MIN +šim +ŠE +LI +BABBAR +SUD₂ +ina +KAŠ# +NU +pa +tan +NAG +ma# +TI# +ana +KI +MIN +u₂ +IGI +lim +u₂ +IGI +NIŠ +u₂ +tar +muš +SUHUŠ +giš +NAM# +TAR# +NITA₂ +x +x +x +mal +ma# +liš# +HI# +HI# +ina +KAŠ +tara₃ +sa +an +ina +MUL₄ +tuš +bat +ina +še +ri₃ +ba +lu +pa +tan# +NAG +šu₂ +A +GAZI# +NU +NAG +šu₂ +TI +DIŠ +NA +ŠA₃ +šu₂ +ik +ta +na +su +šu₂ +ŠA₃# +MEŠ +šu₂ +ma +gal +nap# +hu +u₂# +HAR +HAR +GI +DU₁₀ +GA +šim +MUG +šim +LI +ana +ŠA₃ +bi +ŠUB +di +ŠEG₆ +šal# +ta +ša₂ +hal +lu +ba# +hir₂ +ana +DUR₂ +šu₂ +DUB +ma +TI +DIŠ +NA +NINDA +GU₇ +KAŠ +NAG +ma +i +ši +bi# +ŠA₃ +šu₂ +ik +ta +na +su +šu₂# +DAB +MEŠ +su +ŠA₃ +MEŠ +šu₂# +MU₂ +MU₂ +u +i +sil +ŠA₃ +šu₂ +mu +še +KIN +NIM +GIG +ana +TI +šu₂ +giš +e# +re +na +giš +ŠUR +MIN₃ +GI +DU₁₀ +GA +šim +BAL +šim +GIR₂ +u₂ +HAR +HAR +5 +U₂ +HI +A +ŠEŠ +TEŠ₂ +BI +ta +ka +sim +ana +KAŠ +ŠUB +di +ŠEG₆ +šal +ta +ša₂ +hal +LAL₃ +u +I₃# +GIŠ# +hal +ṣa +ana +ŠA₃ +ŠUB +di +lu +ba +hi# +ir# +ana +KUŠ +maš +qe₂ +ti +te +si +ip +ana +DUR₂ +šu₂ +DUB +TI# +EN₂ +ŠA₃ +MEŠ? +it +ta# +nap +ša₂ +ru +ze +er +kar +šu₂# +ŠA₃ +NIGIN +ku +uṣ +ṣu# +ru# +u₂?# +x +x +x +x +x +x +x +x +x +ek +le +ta +ki +i +me +e +hi +ri +ti +a +la +pa +a +na +du +u₂ +IGI +MEŠ +šu₂ +ša# +ar +EDIN +e +di +ip +na +di +i +ta +naq +qi₂ +ŠU +EDIN +ma +la +a +IGI +MEŠ +šu₂ +e +ta +na +ba +la +ša# +pa# +tu +šu₂ +i +ta +na +pa +aṣ +ki +ma +KU₆ +MEŠ +it +ta +nak +bir +ki +ma +MUŠ +e +mur +ma +d +gu +la +na +di +na +at +ba +la +ṭi +NAM +LU₂ +U₁₈ +LU +ina +E₂ +d +asal +lu₂ +hi +u₂ +bil +eṭ +lu +d +AMAR +UTU +re +me₂ +nu +u +ip +pa +lis +su +ma +gi +ša +ma +TI +uṭ +eṭ +lu +šum₂ +ma +IM# +ina +DUR₂ +lu +ṣi +šum₂ +ma +gi +ša +tu +ina +nap +ša₂ +ti +li +še +ṣi +TU₆ +EN₂ +KA# +INIM# +MA +ana +ki +is +ŠA₃ +ŠID +nu +DIŠ# +NA? +e +ta +na# +ša₂ +aš₂ +NINDA +u +KAŠ +la +i +mah +har +MAŠ +SILA₃ +MIN +šu₂ +GU₇ +MEŠ +šu₂ +SAG +DU +su +gi +na +a +LAL +I₃ +NUN +NA +GU₇ +UD +7 +KAM₂ +SUM +sar +SUM +SIKIL +sar +GA +RAŠ +sar +NU +GU₇ +ina +A +giš +ŠE +NU +RA +MEŠ +aṣ +NUMUN +u₂ +UKUŠ₂ +HAB +NUMUN +u₂ +HAR# +HAR# +SUD₂ +ina +KAŠ +NAG +ma +TI +ana +KI +MIN +x +x +x +NIG₂ +SILA₁₁# +GA₂ +HAD₂ +A +SUD₂# +ina# +KAŠ# +lu₂# +KURUN₂ +NA +NAG +NUMUN +u₂ +UKUŠ₂ +HAB +: +NUMUN +šim +LI +NUMUN +giš +ŠE +NU +SUD₂ +ina +KAŠ +NAG +DIŠ +NA# +ki +is +ŠA₃ +GIG +ana# +ki +is +ŠA₃ +KUD# +si +u₂ +IGI +lim +u₂ +IGI +NIŠ +u₂ +tar +muš +: +u₂# +tar# +muš₈# +u₂# +KUR +RA +SUD₂ +ina +I₃ +u +KAŠ +NAG# +x +x +x +ina# +KAŠ# +NAG +PEŠ₂ +SILA₃ +GAZ +ša₂ +bu +la +GU₇ +x +x +x +u₂# +kak +ku +sak +ku +ša₂ +PA +MEŠ +šu₂ +DAGAL +MEŠ +u₂ +HAB +u₂ +IGI +lim +SUD₂ +ina +I₃ +KUR# +RA# +: +I₃ +SIKIL +NAG +MUN +ina +KAŠ +NAG +MUN +ina +A +NU +pa +tan +NAG +ma +ina +eš +DIŠ +NA +lib₃# +bi +lib₃ +bi +GU₃ +GU₃ +si +u₂ +ur₂ +ne₂ +e# +u₂ +HAR +HAR +u₂ +ti +ia +ta₅ +u₂# +NU# +LUH +HA +u₂ +KUR +RA +sah +le₂ +e +u₂ +tar +muš₈ +u₂# +IGI +lim +u₂ +IGI +NIŠ +u₂ +ak +tam +u₂# +IN# +NU# +UŠ +giš +ŠINIG# +12# +U₂# +HI# +A# +ŠEŠ +ba +lu +pa +tan +ina +KAŠ +NAG +MEŠ +DIŠ +NA +ŠA₃ +šu₂ +ik +ta +na# +ar# +PA# +giš# +ŠINIG +u₂ +IN# +NU +UŠ +GIŠ# +BUR₂# +SUD₂ +ina +KAŠ +NU +pa +tan +NAG +ma +ina +eš +SUHUŠ +giš +šu +ši +SUHUŠ +giš# +NAM +TAR +NITA₂ +u₂ +tar +muš₈ +u₂# +IGI +lim +u₂ +IGI +NIŠ +u₂ +IN₆ +UŠ₂ +NUMUN +u₂ +IN₆ +UŠ₂ +7 +U₂# +HI +A +ki +is +ŠA₃ +bi +ina +KAŠ +NAG +1# +GIN₂ +MUN +eme +sal +li₃ +šim# +GUR₂ +GUR₂? +šim# +LI +DIŠ +niš +GAZ +SIM? +ina +KAŠ +ŠEG₆ +šal +x +x +ana +ŠA₃ +ŠUB# +di# +ana +DUR₂ +šu₂ +DUB +ak +EN₂ +mi# +na +a +ma +lu +u₂ +lib# +bu# +ka +mi +na +a +ma +lu +u₂# +lib +bu# +ka +x +x +x +d +x +x +lib# +bu# +ka +man +nu +lu +uš +pur +ana# +gu# +gal# +lib# +bi# +ka +liš +ša₂ +a# +x +x +x +x +x +x +x +x +x +x +x +x +li +pat +ta +a +ID₂ +MEŠ +x +x +x +x +x +x +x +x +x +li +par +ši +du +ma +li +ṣu +ni +zu +u₂ +šu₂# +x +x +x +x +x +x +x +x +x +x +x +x +x +x +li +mur +EN₂ +ul +ia +tu +un +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +d# +gu +la +TI +LA +qiš +ta₅ +TI +e +EN₂ +EN₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +GU₇ +ia +ŠA₃ +bi +KI +SIKIL +ana +GAZ +ia +x +x +x +x +x +x +x +x +x +x +x +ŠA₃ +bi +GUD +ina +u₂ +re +e +li +kul +x +x +x +x +x +x +x +x +ŠA₃ +bi +ŠAH +ina +a +sur +re +e# +x +x +x +x +x +x +d +a +sal +luh +u +d +gu +la +x +x +x +x +x +x +x +x +iq +bu +nim?# +ma# +a# +na# +ku# +u₂ +ša₂ +an +ni +x +x +x +x +x +x +x +x +x +... +EN₂ +ana +UGU +LI +DUR +ŠID +nu +x +x +x +x +gi +pisan!(E₂) +gen₇ +keš₂ +da +x +x +x +x +x +x +x +x +: +a# +pu₂# +gen₇# +a# +ge₆ +a +nu +tuku +x +x +x +x +x +x +tuku? +: +u₂ +nu +ku₄ +ku₄ +a +nu +ku₄# +ku₄# +... +ne +: +d +asal +lu₂ +hi +igi +: +nig₂ +ge₂₆ +e +: +gen +na +dumu +gu₁₀ +x +x +x +x +ne? +ke₄ +: +u₃ +u₂ +ha +šu +u₂ +šu +u +me +ti +nam +šub +eridu +ki +ga +u +me +ni +si₃ +: +lu₂ +u₁₈ +lu +dumu +dingir +ra +na +ka +bi +ta +u +me +ni +gar +lu₂ +dumu? +dingir? +ra +na +še₁₀ +gen₇ +he₂ +dur₂ +re +bu +luh +gen₇ +ri +he₂ +en +si +il +e +: +im +ma +gu +du +a +ni +ta +he₂ +em +ma +ra +e₃# +KID₃# +KID₃ +BI +x +x +x +x +ana +UGU +EN₂# +ŠUB +di +ina +KA +šu₂ +u₂ +man +zaq +ma +ina +KAŠ +NAG +ma +ina +eš +7378 ... +ka +keš₂ +bi +he₂ +du₈ +a +... +d +asal +lu₂ +hi# +dumu# +eridu +ki# +ga +ke₄ +ka +keš₂ +bi +he₂ +du₈ +a +KID₃ +KID₃ +BI +x +x +x +x +EN₂ +7# +šu₂ +ŠID +nu +ina +KA +šu₂ +u₂# +man +zaq +ma +ina +eš +EN₂# +d +ŠAKKAN₂ +ina +EDIN +ŠA₃ +ba +šu₂ +ka +su +šu₂ +ma +SAHAR +SIG₃ +SIG₃ +ta +ma +la +a +rit +ta# +šu₂# +ul +um +mu +pe +ta +at +pa +ni +šu₂ +ul +a +ha +tu +mu +še +qa +at +re +ši +šu₂ +ki# +ma +DI +GI +DA# +na +ši +pat +ri +TU₆ +EN₂ +KID₃ +KID₃ +BI +LAG +MUN +u₂ +nu# +hur# +ta₅ +TI +qe₂ +ana +UGU +EN₂ +ŠUB +di +x +x +x +x +x +x +x +x +x +EN₂ +šam +mu +ša₂ +ŠA₃ +bi +ina +KUR +i +a +ṣi +ma# +as +suh +šu +ma +x +x +x +x +x +a +na +d +UTU +DU₁₁ +GA +ma +iṣ +ṣa +bat +ŠA₃ +bi +d +UTU +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +a# +na +NENNI? +A? +NENNI? +DU₁₁ +GA# +ma +iṣ +ṣa +bat +ŠA₃ +bi +NENNI? +A? +NENNI? +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +a +na# +d +e₂ +a +EN +ia +aq +bi +ma +ŠA₃ +bi +x +x +x +x +x +x +x +x +x +x +ŠA₃ +bi +AN +u +KI# +lip +pa +šir +ŠA₃ +bi +x +x +x +x +x +x +ŠA₃ +NENNI +A +NENNI +lip +pa +šir# +x +x +x +x +x +x +x +x +x +NAG +šu₂# +... +KA +INIM# +MA +... +KID₃ +KID₃ +BI# +x +x +... +7 +šu₂ +u +7 +šu₂ +x +... +TA +urudu +na +ah +bi? +... +ana +IGI +d +UTU +EN₂ +7# +šu₂ +x +x +x +ŠID?# +nu# +... +ina +KI +ta +sa +rim +x +x +x +x +ina +GIR₃ +15# +u?# +150?# +x +... +ina +na +kap +GIR₃ +15 +u +150 +i +na +as +suk +ma +ina?# +eš? +EN₂ +ŠA₃ +d +UTU +ina +KUR +i# +x +x +GIG +ma +: +U₂ +ŠA₃ +ina +ma₂ +kan +ki +a +ṣi +ma +d +30 +is +suh +šu +ša₂ +d +UTU +im +me +ru +pa# +nu# +šu₂ +d +UTU +šam +ma +TA +KUR +i +u₂ +še +ri +dam +ma +iš +kun +ma +ina +qaq# +qa +ri +šur +šu +šu +qaq +qa +ra +DIRI +SI +MEŠ +šu₂ +AN +e +nak +pa +iṣ +bat +ŠA₃ +d +UTU +ina +le +qi₂ +šu +iṣ +bat +ŠA₃ +d +30 +ina +DUNGU +MEŠ +iṣ +bat +ŠA₃ +GUD +ina +tar +ba +ṣi# +iṣ +bat +ŠA₃ +UDU +NITA₂# +ina# +su +pu +ri +iṣ +bat +ŠA₃ +ANŠE +ina +su +kul +li +iṣ +bat +ŠA₃ +UR +GI₇# +ina +ši +ga +ri +iṣ +bat +ŠA₃ +ŠAH +ina +er +re +ti +iṣ +bat +ŠA₃ +GURUŠ +ina +me +lul +ti +iṣ +bat +ŠA₃ +KI +SIKIL +ina +ur +ši +ša₂ +iṣ +bat +ŠA₃ +NENNI +A +NENNI +tu +mu +re +e +tu +ga +re +e +a +na +e +re +ši +šu +ma +SU +šu₂ +i +di +: +e +ma +iš +ku +nu +i +di +TU₆ +EN₂ +KID₃ +KID₃ +BI +u₂ +ur₂# +ne₂ +e +u₂ +NU +LUH +HA +u₂ +ti +ia +ta₅ +GAZI +sar +u₂ +KUR +RA +DIŠ +niš +SUD₂ +ina +KAŠ +SIG₃ +aṣ +EN₂ +ana +ŠA₃ +ŠID +nu +ina +ŠU +GUB₃ +šu₂ +NAG +ma +TI +EN₂ +šam# +mu# +ša₂ +ŠA₃ +bi# +ina +KUR +i +a +ṣi +ma +as +suh +šu₂ +ma +iṣ +ṣa +bat +ŠA₃ +bi +ana +d +UTU +aq# +bi +ma +iṣ +ṣa +bat +ŠA₃ +d +UTU +ana +AN +e +u +KI +ti₃ +aq +bi +ma# +iṣ +ṣa +bat +ŠA₃ +AN +u +KI +ana +u₂ +ma +mi +DU₁₁ +GA +ma +iṣ +ṣa# +bat +ŠA₃ +u₂ +ma +me +a +na# +d# +e₂# +a +EN +ap +si +aq +bi +ma# +ŠA₃ +bi +lip +pa +šir₃ +ŠA₃ +bi +d +UTU +lip +pa +šir₃ +ki +ma +ŠA₃ +bi +d +UTU +ip +pa +ša₂ +ru# +ŠA₃ +bi +AN +u +KI +lip +pa +šir₃ +ki +ma +ŠA₃ +bi +AN +u +KI +... +x +x +x +KID₃ +KID₃ +BI +x +x +x +x +EN₂ +7? +šu₂ +ŠID +nu +ina +KA +šu₂ +u₂ +man +zaq +ma +ina +eš +EN₂ +ER₂# +IR +UD +LI +AN +x +x +x +x +sa +bi# +tu₄ +nam +zi +tu₄ +a +ši +tu₄ +pi +ina +a# +mat# +d# +AMAR# +UTU# +ina +qi₂ +bit# +d# +UTU# +LU₂ +lib +luṭ +TU₆ +EN₂ +EN₂ +IM +el +lu +ša₂ +ina +KUR +i +aš₂ +bu +man +nu +ub +lak +ka +x +x +el +li? +ša₂ +a +me +lu +ti +ša₂ +UZU +šu₂ +ša₂ +la +a +ka +li₃ +ša₂ +BUR₃ +BUR₃ +šu +ša₂ +la +x +x +x +x +x +IR +IM +ana +šu +bur +ri +ki +ma +ṣe +er +ka +ra +ni₇ +ta +aṣ +ṣi# +... +x +TU₆# +EN₂ +KID₃ +KID₃ +BI +u₂ +ti +ia +ta₅ +GAZI +sar +x +... +x +I₃# +GIŠ# +ana# +pa +ni +ma +aš +ti +i +ta +za +ru₃ +3 +šu₂ +EN₂ +ŠID +... +ana +KI +MIN +... +x +... +x +x +x +... +... +ti# +ia +ta₅ +GAZI# +sar# +ta +mar +raq# +ina +KAŠ# +NAG +ana +KI +MIN +... +ina +I₃ +GIŠ +u +KAŠ +SAG +NAG +EN₂ +e +sil +ki +ma +na +di +na +pi +ih +ma +ki +ma +lu +up +pi +KA +NA +šu# +u₂# +ina? +KA +šu₂ +šu +u₂ +giš +PEŠ₃ +NU +E₃ +ma +TU₆ +EN₂ +KID₃ +KID₃# +BI +ina +ŠU +SI +GIR₃# +ka# +GAL +ti +ša₂ +GUB₃ +EN₂ +7 +šu₂ +ana +UGU +LI +DUR +šu₂ +ŠUB +ma +ina +eš +EN₂# +ŠA₃ +nam +zi +tu₄ +KAŠ +la +as +su +uh +TU₆ +EN₂ +KID₃ +KID₃ +BI +ina +ŠU +SI +GIR₃ +ka +GAL +ti +ša₂ +150 +EN₂ +ŠUB +di +u +ina +ŠU +SI +ka +ta₅ +mar +raṭ +ma +ina +eš +EN₂ +ša +ru +um +mi +ša₂ +ru +ša₂ +ru +IZI +DINGIR +MEŠ +at +ta₅ +ša +ru +ša +bi +rit +ze +e +u +ši +na +a +ti +at +ta₅ +tu +ṣi +a +ma +it +ti +DINGIR +MEŠ +ŠEŠ +MEŠ +ka +na# +di +a +at +giš +GU +ZA +ka +EN₂ +KID₃ +KID₃ +BI +u₂ +EME +UR +GI₇ +HAD₂ +A +SUD₂ +ina +I₃ +GIŠ +ŠUB +di +EN₂ +ŠID +nu +ŠEŠ₂ +su +ma +ina +eš +EN₂ +lib +bu +ma +ŠA₃ +bu +ŠA₃ +bu +da +an +ŠA₃ +bu +qar +rad +GIM +UR +MAH +ma# +li# +pu +luh +ta₅ +ki +ma +UR +BAR +RA +la +ka +da +uš +šur +EN₂ +ul +ia +at +tu₂ +EN₂# +d# +gu +la +EN₂ +a +nam +di +EN₂ +ana +DUMU +MUNUS +d +e₂ +a +a +nam +di +EN₂ +ana +DUMU +MUNUS +d +a +nim +a +nam +di +ana +DUMU +MUNUS +DINGIR +aš +šum +mi +ni +i +aš +šum +mi +ni +i +aš +šum +ka +bat +ti +aš +šum +li +ib +bi +aš +šum +li +ib +bi +aš +šum +li +ib +bi +mar# +ṣi# +TU₆ +EN₂ +KID₃ +KID₃ +BI +SIG₂ +BABBAR +DUR +NU +NU +7 +KA +KEŠDA +KEŠDA +EN₂ +ŠID +nu +ina +EGIR +šu₂ +KEŠDA +ma +ina# +eš# +EN₂# +a +na +li +bur +za +ni +nu +qi₂ +bi# +ma +um +ma +a +da +pa +ABGAL# +ma +TA# +at# +ta₅ +u +a +na +ku +kul +lat +KUR +ni +ti +qam +ma# +A# +PU₂# +ha# +li +lu +ti +x +x +x +x +8554 x +x +x +x +x +x +x +x +x +qa₂ +ti +mar +ṣi +ṣa +bat +EN₂ +d +e₂ +a +ŠUB +šu₂ +ma +LU₂ +lib +luṭ +EN₂ +KID₃ +KID₃ +BI +u₂ +NU +LUH +HA +u₂ +ti +ia +ta₅ +MUN +ta +mar +raq +x +x +x +x +x +x +x +x +x +x +GUB₃ +šu₂ +ina +ŠU +ka +ta +mar +raṭ +EN₂ +... +x +TIM +a +na +li +bur +na +din +iš +pur +an +ni +... +ina +a +hi +PU₂ +ša₂ +KUR +i +... +ul +nu +uš +ba +am +ma +... +NENNI +A +NENNI +ra +ši +DINGIR +ana +mah +ri +ka +... +x +MI +AL# +MU +TU₆ +EN₂ +KID₃ +KID₃ +BI +... +x +ša₂ +EN₂ +ana +x +x +ŠUB +u₂ +... +te +de +ek +ki +šu +ma# +i# +ne# +eš# +EN₂ +... +DUMU +d +UTU +ina +AN +e +u +KI +te +MIN +KID₃ +KID₃ +BI +... +NI₂# +šu₂ +ŠID +nu +EN₂ +x +x +x +x +x +BAL?# +IN?# +e +mur +šu₂ +ma +d +asal +lu₂ +hi +ih +ba +a +A +MEŠ +ABZU +x +x +x +x +GIM +dug +GAN? +ina +qa₂ +ti +šu +GIŠ +HUR +ŠA₃ +bi +ana +d +e₂ +a +be +li₂ +šu +EN₂# +ul# +ia +tu +un +EN₂ +d +60 +u +d +asal +lu₂ +hi +EN₂ +d +gu +la +GAŠAN +EN₂ +TU₆ +EN₂ +KID₃ +KID₃ +BI +u₂ +NU +LUH +HA +MUN +TI +qe₂ +EN₂ +3 +šu₂ +ana +ŠA₃ +ŠUB +ma +i +man +zaq +ma +TI +EN₂ +da +an +ŠA₃ +bu +qar +rad +ŠA₃ +bu +ša₂ +ŠA₃ +bi +ar +ra +qa +IGI +MIN +šu₂ +pur +si +it +MUD₂ +na +ši +ma +ir +ru +sa +hi +ru +ti +ul +lu +lu +ina +a +hi +šu₂ +e +ta +šiṭ +ŠA₃ +bu +e +ta +tu +ra +MIN +ana +GURUŠ +dam +qi₂ +ana +KI +SIKIL +da +me +eq +tu₄ +uš +šir₃ +GURUŠ +ma +E₂ +li +pu +uš +uš +šir₃ +KI +SIKIL +qin# +na +liq +nun +ir +ru +suh₄ +hu +ru +ze +er +kar +šum +u₃ +ši +i +ri +qi₂ +tu₂ +bu +up +pa +ni +ša₂ +sah +pat +liš +lim +kar +šum +ir +ri +liš +te +ši +ru +ma +ri +qi₂ +tu₄ +lit +ru +uṣ +GIM +IM +ina +šu +bur +ri# +GIM# +ge +šu +ti +ina +na +piš +ti +li +ṣa +a +EN₂ +KID₃ +KID₃ +BI +7 +LAG +MUN +ina +ŠA₃ +bi +ŠUB +EN₂ +7 +šu₂ +ŠID +nu +NAG +šu₂ +ma +ina +eš +EN₂# +ŠA₃ +bu +ŠA₃ +bu +e +ki +il +ŠA₃ +bu +GIM +mu +ši +ti₃ +ma +li +nam +ri +ri +i +na +qab# +li +ti +ul +i +šu +a +pa +tu₂ +ma +ul +u₂ +šer₃ +šu +ma +am +ma +ir +ru# +su +hu +ru +ze +er +kar +šum +u₃ +ši +i +ri +qi₂ +tu +bu +up +pa +ni +ša₂ +sah +pat +li +it# +ru +uṣ +kar +šu₂ +ri +qi₂ +tu₂ +lit +ru +uṣ +ki +ma +ša₂# +a +ri +a +na +šu +bur +ri +ki +ma +ge +šu +te +a +na +ZI +MEŠ +ki +ma +zu +ʾ +ti +u +u₂ +pa +ṭi +u +di +ma +ti# +ka# +la +SU +šu₂ +na +šal +li +la +ni +EN₂ +ul# +ia +ut +tu +EN₂ +d +e₂ +a +u +d +asal# +lu₂# +hi +EN₂ +d +da +mu +u +d +gu +la +EN₂ +d# +NIN# +GIRIM₃# +EN +EN₂ +TU₆ +EN₂ +KID₃ +KID₃ +BI# +ana +ŠA₃ +bi +10 +LAG +MUN +ŠUB +7# +TA# +AM₃ +EN₂# +ŠID +nu +ma +ina +GUB₃ +ka +KAŠ₃ +šu +IGI +ina +GUB₃ +šu +i +mah +har +ba# +lu# +pa# +tan# +NAG +ma +ina +eš +EN₂ +ŠA₃# +bu# +ma +ŠA₃ +bu +qar +rad +ŠA₃ +KAS₄ +ša +ŠA₃ +ze +ra +IGI +MIN +šu₂ +pur +sit₂ +da# +a# +me# +ŠA₃ +bu +ŠA₃# +bu# +a +ia +ša₂ +ta +lak +ŠA₃ +bu +a +ia +ša₂ +ta +ṣa +bur +ŠA₃ +bu +... +x +x +x +ad# +SAHAR# +HI# +A# +x +x +x +x +x +... +x +x +x +x +... +x +pad +su +x +x +x +x +x +ša₂# +a# +ru# +x +x +x +x +x +x +x +x +i +pa +šar +pi +šir₃ +šu# +x +x +x +lip +šur +ki +ši# +x +x +x +mu# +ana +KA₂ +li +še +ṣi +TU₆ +EN₂ +KA +INIM +MA +IM# +ša₂ +ŠA₃ +DAB +šu₂ +KID₃ +KID₃ +BI +I₃ +GIŠ +ŠA₃ +šu₂ +EŠ +MEŠ +EN₂ +an +ni +ta₅ +3 +šu₂# +ŠID +nu +DIŠ +NA +LI +DUR +su +DU₈ +at +na₄ +PEŠ₄ +ANŠE# +u₂ +SIKIL +u₂ +ŠAKIRA +šim +LI +x +x +x +5# +U₂ +HI +A +ŠEŠ +TEŠ₂ +BI +SUD₂ +ina +KAŠ +HI# +HI# +ina# +LI +DUR +šu₂ +tu +na +tak +U₂ +HI +A +ŠEŠ +ma +ina +KAŠ +SILA₁₁ +aš +tara +bak +x +x +u₂ +IGI +lim? +u₂ +IGI +NIŠ# +u₂# +tar +muš +x +x +x +x +SUD₂ +SUR +tuš +ta +na +as +sa₃ +qam₂ +... +TI +ana +KI +MIN +u₂ +ṣi +bu +ra +u₂ +DILI +TEŠ₂# +BI# +SUD₂# +x +... +ana +KI +MIN +u₂# +IGI +lim +SUD₂ +ina +GEŠTIN +SUR# +NAG +ma +TI +DIŠ +NA +LI +DUR +su +ŠUB +MEŠ +su +ana +TI +šu₂ +u₂ +im +hur +aš +na +SUHUŠ# +x +x +x +x +x +x +TI +ina +KAŠ +ina +GEŠTIN +DU₁₀ +GA +NAG +MEŠ +ma +TI +DIŠ# +NA# +ŠA₃ +šu₂ +GIG +GA +AB₂ +KUG +GA +I₃ +NUN +NA +UD +2 +KAM₂ +NAG +DUB +1 +KAM₂ +DIŠ +NA +su +a +lam +GIG +ana +ki +is +ŠA₃ +GUR +šu₂ +E₂ +GAL +m +AN +ŠAR₂ +DU₃ +A +LUGAL +ŠU₂ +MAN +KUR +AN +ŠAR₂ +ki +ša +d +AG +d +taš +me +tu₄ +GEŠTU +MIN +DAGAL +tu₄ +iš +ru +ku# +uš +e +hu +uz +zu +IGI +MIN +na +mir +tu₄ +ni +siq +ṭup +sar +ru +ti# +ša +ina +LUGAL +MEŠ +ni +a +lik +mah +ri +ia +mam₂ +ma +šip +ru +šu +a +tu +la +e +hu# +uz +zu# +bul +ṭi +TA +muh +hi +EN +UMBIN +liq +ti +BAR +MEŠ +ta +hi +zu +nak +la +a +zu +gal +lu +ut +d +nin +urta +u +d +gu +la +ma +la +ba# +aš +mu +ina +ṭup +pa +a +ni +aš₂ +ṭur +as +niq +IGI +KAR₂ +ma +a +na +ta +mar +ti +ši +ta +si +ia +qe₂ +reb +E₂ +GAL +ia +u₂ +kin +giš +KIŠI₁₆# +HAB +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +NA +SAG +KI +GUB₃# +šu₂# +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +u₂ +SU +AN +DAR +RA +šim +MUG +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +NA +SAG +KI +MIN +šu₂ +ṣab +ta +šu₂ +ma +IGI +MIN +šu₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +DUH +ŠE +GIŠ +I₃# +ša₂ +bu +lu +te +GAZ# +SIM +x +x +x +x +x +x +x +x +x +DIŠ +NA +SA +SAG +KI +ZAG# +šu₂# +ZI +ma +IGI +ZAG +šu₂ +... +x +x +x +x +x +šim +BULUH +šim? +... +DIŠ +NA +UGU +šu₂ +KUM₂ +u₂ +kal +SA +ZI +SAG +KI +TUKU +ma +IGI +MIN +šu₂ +i +BAR₃ +IGI +MIN +šu₂ +bir +ra +ta₅ +i +pi +ta₅ +i +ši +ta₅ +mur +din +na +qu₃ +qa +na +a +ša₂ +a +u₃ +ER₂ +ŠUB +ŠUB +a +1 +3 +SILA₃ +ZA₃ +HI +LI +bu +ṭu +ta₅ +ina +na₄ +KINKIN +ARA₃ +en +SIM +SAG +ka +u₂ +kal +ina +ŠA₃ +1 +3 +SILA₃ +TI +qe₂ +ina +A +GAZI +sar +SILA₁₁ +aš +SAR +ab +LAL +ma +UD +3 +KAM +NU +DU₈ +1 +3 +SILA₃ +sah +le₂ +e +1 +3 +SILA₃ +ZI₃ +ŠE +SA +A +ina +A +GAZI +sar +SILA₁₁ +aš +SAR +ab +LAL +ma +UD +3 +KAM +NU +DU₈ +sah +le₂ +e +ARA₃ +ti₃ +šim +GUR₂ +GUR₂ +NAGA +SI +ina +KAŠ +SILA₁₁ +aš +KI# +MIN# +šim +ŠEŠ +MUN +eme +sal +li₃ +mal₂ +ma +liš +HI +HI +ina +I₃ +NUN +SUD₂ +IGI +MIN# +šu₂# +te# +qi₂ +1 +3 +SILA₃ +ZA₃ +HI +LI +1 +3 +SILA₃ +ŠIKA +IM +ŠU +RIN +NA +10 +GIN₂ +hi +qa +ti# +x +x +x +x +ina +A +GAZI +sar +SILA₁₁ +aš +SAR +ab +LAL +ma +UD# +3# +KAM +NU +DU₈ +EGIR +na +aṣ +ma +da +ti +an +na +ti +10 +GIN₂ +ZA₃ +HI +LI +ša₂ +KA +ur# +ṣi# +x +x +x +x +x +x +x +MUN +A +GEŠTIN +NA +NU +TAG +TAG +ina +NINDA +is +sip₃ +ma +GU₇ +5 +GIN₂# +x +x +x +x +x +ina +KAŠ +SAG +SIG₃ +aṣ +ma +NAG +šu₂ +x +x +x +x +x +x +x +UD +1 +KAM₂ +AN +ZAH +SUD₂# +... +10 +GIN₂ +GURUN +giš +MAŠ +HUŠ +x +x +x +x +x +1 +3 +SILA₃# +x +x +x +GAZ +SIM +ina +A +GAZI# +sar +SILA₁₁ +aš +SAR +ab# +LAL +ma +UD +3# +KAM +NU +DU₈ +ŠIM +BI +ZI# +DA +x +x +x +ina +I₃ +UDU +UR +MAH +SUD₂ +x +x +x +x +x +x +x +x +x +x +u₂ +ZA +BA +LAM +1 +3 +SILA₃ +x +x +x +x +GAZ +SIM# +ina +A +GAZI +sar +SILA₁₁# +aš +SAR +ab +LAL +ma +UD +3 +KAM +NU +DU₈ +10 +GIN₂ +ZI₃ +DUH# +ŠE# +GIŠ# +I₃# +HAD₂ +DU +GAZ# +SIM +ina +A +GAZI +sar +SILA₁₁ +aš +KI +MIN +10 +GIN₂ +ZI₃ +DUH +ŠE +GIŠ +I₃ +HAD₂ +DU +GAZ +SIM +... +x +... +UD +1 +KAM +GABA +su +LAL +SAG +DU +su +... +ana +SAG +DU +šu₂ +DUB +ak +ina +E₂# +ša₂ +ta +ra +na₇ +TUKU +u₂ +TUŠ +šu₂ +... +1 +GIN₂ +U₅ +ARGAB +mušen +1 +2 +GIN₂ +... +1 +3 +SILA₃ +NUMUN +BABBAR +HI +sar +1 +3 +SILA₃ +NUMUN +LU +UB₂ +sar? +... +1 +3# +SILA₃ +ZI₃ +KUM +10# +GIN₂# +PA# +giš# +x +... +NUMUN? +sah?# +le₂ +e +... +x +x +... +... +SILA₁₁ +aš +KI# +MIN# +IM +SAHAR# +NA₄ +KUR +RA +ina +I₃ +NUN +SUD₂ +te +qi₂ +1 +3 +SILA₃ +PA +giš +PEŠ₃ +ša +ina +iti +BAR₂ +ZAG +GAR +KUD +is +ina +A +GAZI +sar +SILA₁₁ +aš +GUR +ma +HAD₂ +A +GAZ +SIM +x +x +x +x +x +x +SAR +ab +LAL# +ma +KI +MIN +1 +3 +SILA₃ +u₂ +HAB +1 +3 +SILA₃# +NUMUN +u₂ +KI +d +IŠKUR +x +x +x +x +x +x +LAL +ma# +KI# +MIN# +NAGA +SI# +ina +I₃ +SUD₂ +ina +kip? +kip? +NITA? +HI +HI +SUD₂ +te# +qi₂# +1 +3# +... +LAL# +ma# +KI# +MIN# +... +LAL +ma +KI# +MIN# +... +x +... +x +... +te? +qi₂?# +... +... +SUD₂# +te# +qi₂ +... +SILA₁₁ +aš +SAR +ab +LAL +ma +KI +MIN +... +HAD₂ +A +GAZ +SIM +ina +A +GAZI +sar +SILA₁₁ +aš +SAR +ab +LAL +ma +KI +MIN +... +GIR₃ +PAD +DA +GID₂ +DA +SUD₂# +MAR +... +ina +I₃ +UDU +sa +a +qi₂ +MAŠ +DA₃ +SUD₂ +te +qi₂ +... +SILA₁₁ +aš# +SAR# +ab# +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +... +ina +GA# +SILA₁₁ +aš +SAR +ab +LAL +ma +KI +MIN +... +x +ina +LAL₃# +KUR +i +šu +hat +KU₃ +SIG₁₇ +SUD₂ +MAR +x +x +x +x +x +x +GAZ +SIM +ina +A +GAZI +sar +SILA₁₁ +aš +SAR# +ab +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +x +x +x +x +GAZ +SIM +ina# +šur +šum +mi +KAŠ +ŠEG₆ +GA₂ +SILA₁₁ +aš# +SAR +ab +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +x +x +x +x +x +du +muq +ši +na +ta +tab +bal +ina# +LAL₃ +SUD₂ +te +qi₂ +u₂ +KUR +GI +RIN₂ +NA? +GAZ +SIM +ina +A +GAZI +sar +SILA₁₁ +aš +SAR +ab# +LAL +ma +UD +3 +KAM₂ +NU +DU₈# +giš +ŠE +NU₂ +A? +GAZ +SIM +ina +A +GAZI +sar +SILA₁₁ +aš +SAR +ab# +LAL +ma +UD +3 +KAM₂ +NU# +DU₈ +U₅# +ARGAB +mušen +ina +LAL₃ +SUD₂# +te# +qi₂ +1 +3 +SILA₃ +PA +giš +MA₂# +ERIŠ₄? +iš +MA₂ +RA +GAZ +SIM +ina +A +GAZI +sar +SILA₁₁ +aš +SAR# +ab# +LAL# +ma +UD +3 +KAM₂ +NU +DU₈ +IM +BABBAR +ba +aš +la +ina# +I₃# +sir₂ +di +SILA₁₁ +aš +SAR +ab +LAL₂# +ma +KI +MIN +ŠIKA# +I₃ +GU +LA +ša +kib +ša₂₅# +TUKU +u₂ +ina +I₃ +SAHAR +URUDU +SUD₂ +te +qi₂ +u₂ +ZA +BA +LAM +sah +le₂ +e +GAZ# +SIM# +ina +šur +šum +mi +KAŠ +SAG# +SILA₁₁ +aš +SAR +ab +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +u₂ +hal +tap +pa +na₇ +giš +MAŠ +HUŠ +GAZ# +SIM# +ina +šur +šum +mi +KAŠ +ŠEG₆# +GA₂ +SILA₁₁ +aš +SAR +ab +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +šim +LI +šim +GUR₂ +GUR₂ +šim +BULUH +ZA₃ +HI +LI +NAGA +SI +LUH# +si +ina +GA +SILA₁₁ +aš +SAR +ab +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +SAHAR +URUDU +ina +LAL₃ +SUD₂ +te +qi₂ +1 +3# +SILA₃ +ZA₃ +HI# +LI +1 +3 +SILA₃ +DIDA +... +SILA₁₁ +aš +SAR +ab +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +1 +3 +SILA₃ +ZA₃ +HI +LI +... +SILA₁₁# +aš +SAR +ab +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +KUG +GAN +AN +ZAH +... +SUD₂ +MAR +1 +3 +SILA₃ +ZI₃ +GU₂ +GAL? +... +SILA₁₁ +aš +SAR +ab +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +10642 GAZI +sar +BIL₂ +lu +GAZ# +SIM# +ina# +šur +šum +mi! +KAŠ +SILA₁₁ +aš +SAR# +ab +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +NUMUN +u₂ +EME# +UR +GI₇ +SIG₇ +su +tu +has₂ +sa₃ +A +šu₂ +ana +dug +BUR +ZI +SUR +at +EN +HAD₂ +DU +GAR +an +UD# +ma +i +tab +lu +ina +I₃ +SAHAR +URUDU +SUD₂ +MAR +U₂# +BABBAR# +U₅ +ARGAB +mušen +I₃ +UDU +šim +GIG +šim +GAM +MA +NUMUN +u₂ +SI +SA₂ +ka +mun +giš +ŠINIG +NUMUN +u₂ +IN +NU +UŠ +ŠE₁₀?# +UR?# +GI₇ +PA +giš +ŠINIG +MUN +eme +sal +li₃ +u₂ +KUR +RA +u₂ +GAMUN +GE₆ +ma +la +ni +iš +IGI +MIN +ka +ŠU +TI +ta +pa +aṣ +ina +I₃ +SUD₂ +IGI +MIN +šu₂ +ina +NAGA +SI +LUH +si +EN +ER₂ +KUD +su +te +qi₂ +UD +ma +LAL +šu₂ +te +qi₂ +EGIR +šu₂ +DILIM₂ +A +BAR₂ +NU +DU₈ +šu₂ +A +giš +ŠE +NU₂ +A +ŠEG₆ +šal +ana +dug +GAN +SAHAR₂ +te +sip +ina +MUL₄ +tuš +bat +ina +še +ri₃ +SAG +DU +su +ŠEŠ₂ +A +giš +ŠE +NU₂ +A +ŠEG₆ +GA₂ +ana +SAG +DU +šu₂ +tu +qar +ra +ar₂ +SAG +DU +su +kun +ša₂₅ +sig₂ +GA +RIG₂ +AK +A +KEŠDA +10? +SILAₓ? +I₃ +GIŠ +ana +SAG +DU +šu₂ +DUB +ina +E₂ +ša₂ +ta +ra +na₇ +TUKU +u₂ +TUŠ +šu₂ +UD +3 +KAM₂ +an +na₇ +DU₃ +DU₃ +uš +DIŠ +NA +UGU +šu₂ +KUM₂ +KUM₂ +im +IM +BABBAR +NAGA +SI +IN +GUN₃ +kib +rit +GIR₃ +PAD +DA +NAGA +SI +I₃ +HUL +u +I₃ +KU₆ +DIŠ +niš +HI# +HI +ina +NE +giš +KIŠI₁₆ +SAG +DU +su +tu +qat +tar +DIŠ +NA +UGU +šu₂# +KUM₂ +TUKU +ma +IGI +MIN +šu₂ +i +bar +ru +ra +MUD₂ +u₂ +kal +la +1 +3 +SILA₃ +ZA₃ +HI +LI +GAZ +SIM +ina# +A# +GAZI +sar# +SILA₁₁ +aš +SAG +DU +su +SAR +ab +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +1 +3 +SILA₃ +ZA₃# +HI# +LI# +1 +3# +SILA₃# +ZI₃ +KUM +ina +A +GEŠTIN +NA +SILA₁₁ +aš +SAG +DU +su +SAR +ab +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +1 +3 +SILA₃ +PA +giš +PEŠ₃ +ina +GA# +SILA₁₁# +aš# +SAR +ab +KI +MIN +1 +3# +SILA₃ +u₂ +HAB +ina +GA +SILA₁₁ +aš +SAR +ab +KI +MIN +1 +3 +SILA₃ +u₂ +u₅# +ra +na +... +ina +GA +SILA₁₁ +aš +SAR +ab +KI +MIN +1 +3 +SILA₃ +u₂ +ṣa +da +na? +... +ina# +GA# +SILA₁₁ +aš +SAR +ab +KI +MIN +u₂ +sa +ma +na₇ +... +ina +GA +SILA₁₁ +aš +SAR +ab +KI +MIN +DIŠ +NA +UGU +šu₂ +UD +DA +TAB +... +ŠEG₆ +GA₂# +šim +LI +šim +GUR₂ +GUR₂ +šim +BULUH +sah +le₂ +e +DUH +ŠE +GIŠ +I₃ +... +SAR +ab +KI +MIN +DIŠ +NA +UGU +šu₂ +UD +DA +TAB +ma +IGI +MIN +šu₂# +i +bar +ru +ra# +u₃ +MUD₂ +DIRI +a# +x +x +x +šim +LI +u₂# +NU +LUH +HA +x +x +x +sah# +le₂ +e +giš +MA₂# +ERIŠ₄?# +MA₂# +RA +DIŠ +niš +GAZ +SIM +ina +DIDA +HI# +HI# +SAG? +DU +su +LAL# +id +1 +3 +SILA₃ +ZA₃ +HI +LI# +1 +3 +SILA₃ +ZI₃ +giš +EREN# +1 +3 +SILA₃ +šim +LI# +1 +3 +SILA₃ +IM +DI +1 +3 +SILA₃ +giš +si +hu +1 +3# +SILA₃ +giš +ar₂? +ga? +an? +nu +... +DUH +ŠE +GIŠ# +I₃ +ZI₃ +GU₂ +GAL# +ZI₃ +MUNU₆ +DIDA +ŠEG₆ +GA₂ +ŠU# +TI# +... +SILA₃ +ŠU# +TI +ina +A +GAZI# +sar +SILA₁₁ +aš +SAR +ab +LAL +DIŠ +NA +MURUB₄ +UGU +šu₂ +GIR₂# +GIR₂# +su# +SIG₂ +SAG +DU +šu₂ +GUB +GUB +za +giš +GUR₂ +GUR₂ +giš +x +x +x +x +x +x +x +x +SUD₂# +ina +urudu +ŠEN +TUR +tu +ba +har +SAG +DU +su +x +x +x +x +x +x +KAŠ +ṭi? +ṭi? +I₃ +NUN +NA +ina +IZI +ŠEG₆ +šal +x +x +x +x +šim +GUR₂# +GUR₂# +šim +LI? +šim +MUG# +šim +ŠEŠ +KAŠ +ṭi +ṭi +I₃ +NUN +NA +ina +IZI +ŠEG₆ +šal +x +x +1?# +NINDA# +IM +BABBAR +NAGA +SI +IN +GUN₃ +kib +rit +GIR₃ +PAD +DU# +LU₂ +U₁₈ +LU +GIR₃ +PAD +DU +ŠAH? +x +x +I₃ +HUL +I₃ +KU₆ +DIŠ +niš +HI +HI +ina +NE +giš +KIŠI₁₆ +SAG +DU +su +tu +qat +tar +EN₂ +sag +ki +ni +sag +ki +he₂ +en +gi₄ +gi₄ +i +bi₂ +ni +i +bi₂ +he₂ +en +gi₄ +gi₄ +mu +ru +ub +bi +ni +mu +ru +ub# +bi +he₂ +en# +gi₄ +gi₄ +he₂ +en +da +a +na +mul +la +he₂ +en +da +a# +na# +mul +la +TU₆ +EN₂ +KA +INIM +MA +DIŠ +NA +MURUB₄ +UGU +šu₂ +u₂ +zaq# +qat# +su +KID₃ +KID₃ +BI +BAR +MUŠ +tur +ar₂ +x +x +x +x +EN₂ +ŠID +nu +UGU +šu₂ +x +x +x +EN₂ +me +kug +ga +ba +da +ra +ah +ba +da +ra +ah +me +kug +ga +iz +zi +me +zi +zi +me +še +ra +še +ra? +x +x +x +hu +luh +ha +gi₄ +gi₄ +TU₆ +EN₂ +EN₂ +KA +šu +GIM +KA +la +x +x +x +x +x +x +GIM +KA +šu +ne +x +x +x +TU₆ +EN₂ +... +ana# +MURUB₄ +UGU +šu₂ +ŠID +nu +... +x +x +x +x +u₂ +KUR +RA? +... +SAR +ab# +LAL +ma# +UD +3 +KAM₂ +NU +DU₈ +ana# +KI +MIN +... +ina +A +GAZI +sar +SILA₁₁ +aš +LAL₂ +su +ma +x +x +x +ana +KI +MIN +u₂# +x +... +x +su +pa +la₁₂ +ina +KAŠ +ta +la₃ +aš +x +x +ana +KI +MIN +sah +le₂ +e# +... +ni +kip +ta₅ +ZI₃ +ŠE +SA +A +DIŠ +niš +GAZ# +SIM +ina +KAŠ +SILA₁₁ +x +x +ana +KI +MIN +1 +3 +SILA₃ +sah?# +le₂ +e +... +SILA₁₁ +aš +SAR +ab +x +x +ana +KI +MIN +1 +2 +SILA₃ +... +SILA₁₁ +aš +SAR +ab +x +x +ana +KI +MIN +1 +3 +SILA₃ +... +GAZ +SIM +ina +A +GAZI +sar# +SILA₁₁# +aš +SAR +ab +x +x +ana +KI +MIN +šim +... +ina +A +GAZI +sar# +SILA₁₁# +aš# +x +x +ana +KI +MIN +... +ina +KAŠ +SILA₁₁ +aš# +SAR# +ab +x +x +ana# +KI +MIN +... +ina +A +GAZI +sar +SILA₁₁ +aš +SAR +ab +LAL? +ana +KI +MIN +... +ina +A +GAZI +sar +SILA₁₁ +aš +SAR +ab +x +x +ana +KI +MIN +... +ina +A +GAZI +sar +SILA₁₁ +aš +SAR +ab +x +x +ana +KI +MIN +... +ina +šur +šum +mi +KAŠ +SILA₁₁# +aš +SAR# +ab +x +x +ana# +KI +MIN +x +x +x +x +x +x +x +tu +šam +maṭ +ina +A +GAZI +sar +LUH +si +1 +3 +SILA₃ +giš +MAŠ +HUŠ +1 +3?# +SILA₃? +x +x +x +x +x +GAZ +SIM +ina +A +GAZI +sar +SILA₁₁ +aš +SAG +DU +su +u +GABA +su +LAL +ana +KI +MIN +x +x +x +x +x +ZI₃ +KUM +HI +HI +ina +A +GAZI +sar +SILA₁₁ +aš +LAL# +ana +KI +MIN +x +x +x +x +ZI₃ +KUM +ina +A +GAZI +sar +ta +la₃ +aš +SAR +ab +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +ana +KI +MIN +x +x +x +giš +HA +LU +UB₂ +2 +SILA₃ +TA +AM₃ +HI +HI +ina +A +GAZI +sar +u +KAŠ +SILA₁₁ +aš +KI +MIN +ana +KI +MIN +x +x +x +u₂# +su +pa +lu +ina +I₃ +sir₂ +di +u +A +GAZI +sar +SILA₁₁ +aš +KI +MIN +DIŠ +NA +SAG +DU +su +KUM₂ +KUM₂ +im +SAR# +ab +ZI₃ +ZIZ₂ +AN +NA +ina +A +GAZI +sar +SILA₁₁ +aš +UD +15 +KAM₂ +: +UD +5 +KAM₂ +LAL₂ +ana +KI +MIN +IM +GU₂ +UD +DA +SA₂ +SA₂ +GAZ# +SIM +ina +A +GAZI +sar +SILA₁₁ +aš +UD +3 +KAM₂ +LAL₂ +DIŠ# +ina? +qer? +bit? +SAG +DU +šu₂ +: +MURUB₄ +SAG +DU +šu₂ +u₂ +ba +na# +tu +uṣ +ṣa +rib +ki +ina +A +GAZI +sar +SILA₁₁ +aš +I₃ +EŠ +MEŠ +LAL +ana +KUM₂ +SAG +DU +šu +ut +bi +i +ŠIKA +IM +ŠU +RIN +NA +ZI₃ +KUM +ina +A +GAZI +sar +SILA₁₁ +aš +SAG +DU +su +LAL +ana +KI +MIN +sah +le₂ +e +bu +ṭu +ta₅ +ZI₃ +ŠE +SA +A# +ina# +A# +GAZI# +sar +SILA₁₁ +aš +LAL +: +ana +KI +MIN +sah +le₂ +e +šim +LI +ina +A +GAZI +sar +SILA₁₁ +aš +LAL +ana +KI +MIN +x +x +x +HAD₂ +DU +GAZ +SIM +ina +A +GAZI +sar +SILA₁₁ +aš +LAL +ana +KI +MIN +DE₃ +ṣar +ba# +te +ina +A +GAZI +sar +SILA₁₁ +aš +LAL +: +ana +KI# +MIN# +u₂ +hal +tap +pa +na₇ +GURUN +giš +MAŠ +HUŠ +ina +A +GAZI +sar +SILA₁₁ +aš +LAL +ana +KI +MIN +u₂ +GEŠTIN +KA₅ +A +HAD₂ +A +SUD₂ +ina +A +GAZI +sar +SILA₁₁ +aš +LAL# +:# +ana# +KI +MIN +u₂# +MA₂ +ERIŠ₄ +MA₂ +RA +ina +A +GAZI +sar +SILA₁₁ +aš +LAL +ana +KI +MIN +x +x +x +u₂ +ZA +BA +LAM +ina +A +GAZI +sar +SILA₁₁ +aš +LAL +12034 ana# +KI +MIN +... +DE₃ +ṣar +ba +te +ina +A +GAZI +sar +SILA₁₁ +aš +LAL +ana +KI +MIN +... +šim +GUR₂ +GUR₂ +ina +A +GAZI +sar +SILA₁₁ +aš +LAL +ana +KI +MIN +... +ZI₃ +KUM +HI +HI +ina +A +GAZI +sar +SILA₁₁ +aš +LAL +ana +KI +MIN +... +ZI₃# +KUM# +HI +HI +ina +A +GAZI +sar +SILA₁₁ +aš +LAL +ana +KI +MIN +... +ina +A +GAZI +sar +SILA₁₁ +aš +LAL +: +ana +KI +MIN +qi₂ +lip +še +el +le +be₂ +nu +ina +A +GAZI +sar +SILA₁₁ +aš +LAL +ana +KI +MIN +... +DE₃ +ṣar +ba +te +ina +A +GAZI +sar +SILA₁₁ +aš +LAL# +ana +KI +MIN +... +ina +A +GAZI +sar +SILA₁₁ +aš +LAL +DIŠ +... +SAG# +DU +šu₂ +i +šah +hu +uh +ZI +SAG +KI +TUKU +TUKU +1 +GIN₂? +... +SAG# +DU +su +SAR +ab +tu +kaṣ₃ +ṣa +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +ana +KI +MIN# +... +ZI₃# +giš +ŠUR +MIN₃ +10 +GIN₂ +ZI₃ +giš +MAN +DU +10 +GIN₂ +ZI₃ +šim +LI +10 +GIN₂ +ZI₃ +šim +GUR₂ +GUR₂ +10 +GIN₂ +ZI₃ +GAZI +sar +10 +GIN₂ +ZI₃ +GU₂# +GAL +10 +GIN₂ +ZI₃ +GU₂ +TUR +10 +GIN₂ +BAR +ZU₂ +LUM +MA +10 +GIN₂ +ZA₃ +HI +LI +10 +GIN₂ +DIDA# +SIG₅# +10 +GIN₂ +ZI₃ +MUNU₆ +DIŠ +niš +HI +HI +ina +KAŠ +SILA₁₁ +aš +GUR +ma +HAD₂ +A +GAZ +SIM +SAG# +ka +u₂ +kal +ina +ŠA₃ +1 +3 +SILA₃ +TI +qe₂ +ina +A +GAZI +sar +SILA₁₁ +aš +SAR +ab +LAL +ma +KI +MIN +ana +KI +MIN +ZA₃ +HI +LI +ARA₃ +ti₃ +šim +GUR₂ +GUR₂ +NAGA +SI +DIŠ +niš +SUD₂ +ina +KAŠ +SILA₁₁ +aš +SAR +ab +KI +MIN +ana +KI +MIN +šim +GUR₂ +GUR₂ +šim +LI +šim +d +NIN +URTA +NUMUN +u₂ +AB₂ +DUH +KA +A +AB +BA +šim +ŠEŠ +DIŠ +niš +SUD₂ +ina +KAŠ +SILA₁₁ +aš +SAR +ab +KI +MIN +ana +KI +MIN +šim +GUR₂ +GUR₂ +šim +LI +ILLU +šim +BULUH +ZU₂ +LUM +I₃ +UDU +ELLAG₂ +UDU +NITA₂ +DIŠ +niš +SUD₂ +ina +KUŠ +SUR +ri +SAR +ab +KI +MIN +DIŠ +NA +SAG +DU +su +UD +DA +TAB +ma +u +SU +šu₂ +GU₇ +šu₂ +SAG +DU +su +nu +pu +uh +PA +giš +MES +MA₂ +GAN +NA +x +x +x +SIM +ZI₃ +GU₂ +GAL +ZI₃ +GU₂ +TUR +ZI₃ +še +IN +NU +HA +DIŠ +niš +ina +šur +šum +mi +KAŠ +SILA₁₁ +aš +SAR +ab +KI +MIN +ana# +KI +MIN +DUH +ŠE +GIŠ +I₃# +HAD₂ +A +ti +šim +GUR₂ +GUR₂ +šim +LI +ZI₃ +KUM +ina +šur +šum +mi +KAŠ +SILA₁₁ +aš +SAR +ab +KI +MIN +ana +KI# +MIN# +x +x +giš +HAR +HAR +šim +GUR₂ +GUR₂ +šim +LI +ZI₃ +KUM +ina +KAŠ +SILA₁₁ +aš# +SAR# +ab# +KI +MIN +ana +KI +MIN +u₂# +LAL# +HAD₂# +A# +SUD₂# +ina# +A +ŠED₇ +SILA₁₁ +aš +SAR +ab +KI +MIN +DIŠ +NA +SAG +DU +su +KUM₂ +ma# +SIG₂# +SAG +DU +šu₂ +i +šah +hu +uh +ana +KUM₂ +SAG +DU +šu₂# +ZI +hi? +u +SIG₂ +DU +ta₅ +GUB +zi +u₂# +ak +tam +u₂ +ši +ma +ha +U₂ +BABBAR# +DIŠ# +niš# +SUD₂# +ina# +A# +HI# +HI# +SAG# +DU# +su +te +sir +UD +2 +KAM +ina +SAG +DU +šu₂ +i +mit +ti₃?# +x +x +x +SAG# +DU# +su +LUH# +si +NUMUN +giš +bi +ni +u₂ +kam₂ +ka +da +u₂ +NIG₂ +GAN₂ +GAN₂ +u₂ +NIG₂ +GIDRU +ŠIKA +NUNUZ +GA +NU₁₁ +mušen# +DIŠ +niš +SUD₂ +ina +I₃ +HI +HI +SAG +DU +su +ŠEŠ₂ +aš +EN₂ +munšub₂ +al +dub₂# +ba +munšub₂ +al +kalag +ga +munšub₂ +al +keš₂ +da +keš₂ +da# +munšub₂ +nig₂ +gub +ba +TU₆ +EN₂ +KA +INIM +MA +SIG₂ +SAG +DU +NIG₂ +GUB +BA +KEŠ₂ +DA +KAM₂ +DU₃ +DU₃ +BI +na₄ +DU₈ +ŠI +A +na₄ +GUG +na₄ +ZA +GIN₃ +na₄ +NIR₂ +na₄ +BABBAR# +MIN₅# +na₄ +IGI +KU₆ +na₄ +ŠUBA +na₄ +ŠUBA +A₂ +ZI +DA +na₄ +ŠUBA +A₂ +GUB₃ +BU +na₄ +KUR +nu +DAB +na₄ +MUŠ +GIR₂ +na₄ +AŠ +GI₃ +GI₃ +na₄ +UGU +AŠ +GI₃ +GI₃ +13 +ni +bi +an +nu +ti +ina +sig₂ +HE₂ +ME +DA +E₃ +ak +ina +SIG₂ +šu₂ +KEŠ₂ +DA +ma +SIG₂ +DU +tu₂ +ik +kal +la +EN₂ +at +ta +ba!# +ra +an +gi +zi +ba +an +gi +ba +te +gi +ra +zi +im +ba +ra +uz +mi +ia +aš +pa +at +ri +un +da +kur +ra +he₂ +en? +na? +he₂ +min +na +pa +ri +ša₂# +TU₆ +EN₂ +KID₃ +KID₃ +BI +7 +ha +ru +be₂ +e +ša₂ +im +SI# +SA₂# +TI +qe₂ +ina +IZI +ur +ba# +te# +tur# +ar₂# +ina +I₃ +HI +HI +EN₂ +7 +šu₂ +ŠID +nu +3 +šu₂ +ŠEŠ₂ +su +3 +šu₂ +ta +hal# +la +su +e +nu +ma +ta +hal +la +ṣu +šu₂ +EN₂ +3 +šu₂ +ana +UGU# +SAG# +DU +šu₂ +ŠID# +nu# +EN₂ +i +bi +gi +i# +bi# +gi# +he₂ +en +zalag₂ +ge +sag +ki +zi₂ +sag +ki +zi₂ +he₂ +en +zalag₂ +ge +sag +ki +iz +sag# +ki# +iz# +he₂ +en +zalag₂ +ge +še +er +zi +he₂# +en +zalag₂ +ge +ma +al +la₂ +i +di +mu +ra +an +gub +hul +bi +hul +hul +EN₂ +KID₃ +KID₃# +BI +SAG +DU# +BURU₅# +KUR +RA +SAG +DU +IGIRA₂ +mušen +SAG +DU +BURU₅ +HABRUD +DA +NITA₂ +giš +U₄ +HI +IN +giš +GIŠIMMAR# +x +x +x +x +x +x +x +EN₂ +3 +šu₂ +ana +ŠA₃ +ŠID +nu +EŠ +MEŠ +su +ma +SIG₂ +DU +tu₂ +ik +kal +la +lu +ša₂ +NITA₂ +lu +ša₂ +MUNUS +x +x +x +x +x +x +šu +gi# +lil +šu +gi +e +ne +šu +gi +KID₃ +KID₃ +BI +7 +ha +ru +be₂ +e +ša₂ +im +SI +SA₂ +TI +ina +IZI +tur +ar₂ +ina +I₃ +giš +ŠUR +MIN₃ +MUD₂ +giš +EREN +HI +HI +EŠ +MEŠ +su +ma# +SI# +SA₂# +im# +EN₂ +MU +UL +LU +U +HUL +A +ša₂ +GAL₂ +ma +DINGIR +ṣi +ir +ta +ma +ni +ir +ra +an +ni +ha +ba +re +eš +ma +ni +ir +ra +an +ni +hal +hal +la +ta +la +gu +DIM₂ +ma +TI +LA +ŠE₃# +x +x +ma +u +ba +na +aš +du +ru +na +aš +hu +ri +na +ah +mu +un +di +hu +na +ha +at +tu +uk +TU₆ +EN₂ +KA +INIM +MA +SIG₂ +KEŠ₂ +DA +KAM₂ +DIŠ +NA +SIG₂ +TE +MEŠ +šu₂ +ma +gal# +i +šah +hu +uh +NA +BI +DINGIR +šu₂ +d +iš₈ +tar₃ +šu₂ +KI +šu₂ +ze +nu +u +KID₃ +KID₃ +BI +ana +IGI +MUL +mah +re# +e# +KEŠDA +KEŠDA +ZU₂ +LUM +MA +zi₃ +EŠA +DUB +aq +NINDA +I₃ +DE₂ +A +LAL₃ +I₃ +NUN# +NA# +GAR# +an# +udu +SISKUR +DU₃ +uš +uzu +ZAG +uzu +ME +HE₂ +uzu +KA +NE +tu +ṭah +ha +KAŠ +BAL +qi₂ +GIŠ +GAN₂ +giš +MA₂# +EREŠ₄# +eš +MA₂ +le +e +U₅ +ARGAB +mušen +u₂ +IGI +NIŠ +u₂# +IGI? +lim? +ŠE₁₀ +MA₂# +LAH₅ +KI +I₃ +HI# +HI# +ina# +IGI# +MUL +GAR +an +EN₂ +an +ni +ta₅ +3 +šu₂ +ŠID +nu +at +ta +MUL +mu +nam +mir +x +x +x +x +x +x +qe₂ +reb +AN +e +ha +iṭ +UB +MEŠ +ana +ku +NENNI +A +NENNI +ina +GE₆ +an +ne₂ +e# +IGI +ka +kam₂ +sa +ku +di +ni +di +in +EŠ +BAR +a +a +TAR +us +U₂ +HI +A +ŠEŠ +MEŠ +lip +si +su# +lum +ni +A₂ +GU₂ +ZI +GA +ZALAG +ma +TE +MEŠ +šu₂ +ta +kar +ana +KI +MIN +GIŠ +GAN₂ +giš +LU₂ +a +nu +u₂# +eli# +kul +la +u₂ +kur +ka +na +a +ša₂# +KUR# +ni# +kip# +ta₅?# +ina# +KUŠ?# +munus# +AŠ₂# +GAR₃# +GIŠ₃ +NU +ZU +ina +GU₂ +šu₂ +GAR# +an# +6 +KA +INIM +MA# +SIG₂ +KEŠ₂ +DA +KAM# +DIŠ +NA +UGU +šu₂ +A +u₂# +kal +ina +ŠU +SI +ka +GAL +ti +a +šar +A +MEŠ +u₂ +kal +lu +TAG +TAG +at +šum +ma +UZU +GIŠ +šu₂ +be₂ +eʾ# +šat +A +ša +gul +gul +li +šu₂ +it +tar +du +BAD +ma +gul +gul +la +šu₂ +te +ser +rim +A +ša +gul +gul +li +šu₂ +tu# +še? +lam? +TUG₂ +SIG +A +LUH +si +I₃ +GIŠ +SUD +ana +UGU +GIG +GAR +an +KU +KU +GIŠ +KIN₂ +ŠE₁₀ +BAHAR₂ +SUD₂ +ana +UGU +GIG +MAR +UD +3? +KAM +LAL +DU₈ +ma +TUG₂ +SIG +A +LUH +si +I₃ +GIŠ +SUD +ana +UGU +GIG +GAR +an +tug₂ +na +al +ti +ip +ti +x +x +x +x +x +UD +2?# +KAM +LAL +DU₈ +ma +TUG₂ +SIG +A +LUH +si +I₃ +GIŠ +SUD +ana +UGU +GIG +GAR +an +x +x +x +x +x +x +GAZI +sar +BIL₂ +ti +KI +ZI₃ +ŠE +SA +A +HI +HI +ana +UGU +GIG +MAR +UD +1 +KAM +LAL +DU₈ +ma +x +x +x +x +šim +LI +GAZ +KI +ZI₃ +KUM +HI +HI +ina +A +GAZI +sar +SILA₁₁ +aš +LAL +IGI +GIG +tu +gal +lab +EN +TI +LA +LAL₂ +x +x +x +šum₄ +ma +TAG +ma +UZU +GIŠ +šu₂ +la +be₂ +eʾ +šat +ana +li +mit +SAG +DU +šu₂ +NE +NA₄ +MEŠ +GAR +an +EN₂ +ur# +ba# +tu₄ +ur +ba +tu₄ +ur +ba +tu₄ +sa +am +tu₄ +ZI +am +ma +ur +pa +ta +SA₅ +ik +tum₃ +IM +ŠEG₃ +SA₅ +ZI +ma# +KI +tu₂ +SA₅ +tu₄ +ir +hu +A +ZI +GA +SA₅ +ZI +ma +ID₂ +SA₅ +tu₄ +im +la +lu₂ +ENGAR +SA₅ +giš +MAR# +SA₅ +giš +DUSU +SA₅ +IL₂ +ši +ma# +A +MEŠ +SA₅ +MEŠ +li +is +kir +giš +IG +ma +SA₅ +giš +SAG +KUL +mi +SA₅ +KA₂# +šu₂ +nu +ed +la# +man +nu +um +ma +ša₂ +i +pe +et +ta +ku +nu +ši +i +ri +iš +ma +ra +i +ri +iš +ma +ra +TU₆ +EN₂ +13549 KA +INIM +MA +A +MEŠ +SAG +DU +la# +ik# +kal +lu +u₂ +DU₃# +DU₃# +BI +hal +lu +ta +na +a +ša₂ +GIR₃ +EME₃ +x +x +x +x +NIGIN# +mi +ana +ŠA₃ +he +pe +e +ti +GAR +an +EN₂ +7 +šu₂ +ŠID +nu +ina +TUG₂ +ta +pa +ti₄ +iq +x +x +x +x +NU# +NU +7 +KA +KEŠDA +KEŠDA +e +ma +KEŠDA +EN₂ +ŠID +nu +ina +SAG +KI +šu₂ +tara +kas₂ +ma +ina +eš +DIŠ +NA +SAG +DU +su +A +u₂ +kal +e +le +nu +da +da +ni +šu₂ +x +x +x +x +giš +EREN? +hum +ṭam₂ +GAR +an +ma +A +šu₂ +ub +bal +DIŠ +NA +ab +bu +ut +ta +šu₂ +A +u₂ +kal +kal +UD# +x +x +x +x +ina# +UD +7 +KAM +LAL +ina +UD +8 +KAM +ab +bu +ut +ta +šu₂ +3 +šu₂ +te +ser? +rim? +ka +a +a# +na +am +LAL₂ +DIŠ +NA +SAG +DU +su +še +ha +u₂ +kal +giš +EREN? +hum? +ṭam₂?# +GAR +an +DIŠ +NA +SAG +DU +su +it +te +ne₂ +ba +aš +šum +na₄ +mu +ši +tu₄ +na₄ +MUŠ +GIR₂# +na₄ +DAG +GAZ +na₄ +GUG +mar +ha +ši +na₄ +ZU₂ +GE₂ +na₄ +NIR₂ +na₄ +AN +ZA +GUL# +ME# +na₄ +AMAŠ +PA +E₃ +8 +NA₄ +MEŠ +an +nu +ti +ina +sig₂ +HE₂ +ME +DA +SIG₂# +BABBAR +NU +NU +E₃ +ina +SAG +KI +MIN +šu₂ +tara +kas₂ +ma +ina +eš +DIŠ +NA# +SAG# +DU# +su# +ik +ta +na +aṣ +ṣa +šim +GUR₂ +GUR₂ +šim +LI +šim +MAN +DU +ŠIM +ŠAL +šim +BAL +x +x +x +x +x +x +giš +EREN +SUMUN +giš +si +hu +giš +ar₂# +gan +nu +u₂ +ba +ri +ra +ta₅ +GI +DU₁₀ +ana +KI +MIN +x +x +x +ina +I₃ +UDU +ELLAG₂ +UDU +NITA₂ +ša₂ +MUN +NU +ŠUB +u +ina +MUD₂ +giš +EREN +SUD₂ +ina +KUŠ +SUR +ri +SAG +DU +su +LAL +ana +KI +MIN +bu? +ṭu? +ut?# +tu₄ +šim +BULUH +u₂ +kur +ka +nu +u +qu# +ta# +ru +ša₂ +SAG +DU +nap +šal +ti +SAG +DU# +PIŠ₁₀ +d +ID₂ +BABBAR +u +GE₆ +ni +kip +ta +NITA₂ +u +MUNUS +na₄ +mu +ṣa# +x +x +x +x +x +KA +A# +AB# +BA# +NUMUN +giš +bi +ni +SI +DARA₃ +MAŠ +gul +gul +NAM +LU₂ +U₁₈ +LU +U₂ +HI +A +an +nu +ti +TEŠ₂ +BI +SUD₂ +x +x +x +x +x +x +x +x +x +SAG +KI +MEŠ +šu₂ +x +x +x +qu₅ +tar₅ +SAG +DU +u₂ +KUR +KUR +PIŠ₁₀ +d +ID₂ +u₂ +kur +ka +na₇ +ni +kip +ta# +NITA₂ +u +MUNUS +DIŠ +niš +tu +dak +kak +ina +MUD₂ +giš +EREN +HI +HI +ina +NE# +tu +qat# +tar# +šu# +DIŠ +NA +SAG +DU +su +GIG +u₂ +ṣa +ṣu +um +ta₅ +u₂ +MUR +DU₃ +DU₃ +u₂# +pi +mu +un +zer +x +x +x +SIG₇? +su +DIŠ +niš +SUD₂ +ina +A +GAZI +sar +SILA₁₁ +aš +SAG +DU +su +SAR +ab# +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +DIŠ +NA +SAG +DU +su +DUGUD +šim +GUR₂ +GUR₂ +šim +LI +u₂ +KUR +KUR +šim +ŠEŠ +KI +ILLU +šim +BULUH +x +x +x +ELLAG₂ +GUD +HI +HI +ina +KUŠ +SUR +ri +SAR +ab +UD +5?# +KAM₂ +LAL₂ +ana +KI +MIN +x +x +x +x +15# +u# +150 +3 +TA +AM₃ +te# +ser? +rim? +x +x +x +ina +A +GAZI +sar +SILA₁₁ +aš +I₃ +ŠEŠ₂ +LAL +... +ana +SAG# +DU# +šu₂ +... +DUGUD +ma +ina +ZI +šu₂ +SAG +DU +su +... +na₄ +NA +ZA₃ +HI +LI +SUD₂ +... +SAG +DU +šu₂# +i +tel +li +ana +KI +MIN +... +HI +HI +SAG +DU +su +EŠ +MEŠ +DIŠ# +NA# +... +im +HAD₂ +A +GAZ +SIM +KI# +... +LAL +su +ma +UD +3 +KAM +NU +DU₈ +DIŠ +NA +SAG +DU +su +... +IGI +šu₂ +GID₂ +DA +su +ŠU +MIN +šu₂ +u +GIR₃ +MIN +šu₂ +... +šim +ma +ta₅ +TUKU +MEŠ +ana +TI +šu₂ +šim +GUR₂ +GUR₂ +šim +LI +u₂# +KUR +KUR +... +giš# +ILDAG₂ +GAZI +sar +ZI₃ +ŠE +SA +A +DIDA +SIG₅ +... +ina +A +GAZ +sar +SILA₁₁ +aš +SAG +DU +su +... +LAL₂ +ma +UD +7 +KAM₂ +NU +DU₈ +ana +KI +MIN +u₂ +x +... +ŠEŠ₂? +MEŠ# +ma +ina +eš +DIŠ +NA +MURUB₄ +SAG +DU +šu₂ +... +i# +ta +na +ah +GAZ +ŠA₃ +TUKU +MEŠ +ši +ELLAG₂? +šu₂ +... +ik +ta +ner +ru +ana +GIG +ZI +hi +... +DIDA +SIG₅?# +GAZI# +sar +ZI₃ +ŠE +SA +A +... +LAL +id +... +x +... +... +... +... +x +... +ina? +A?# +GAZI? +sar +SILA₁₁ +aš? +... +ana# +KI? +MIN? +... +x +giš +ŠINIG +NUMUN# +u₂# +AB₂? +DUH +... +x +... +KAŠ +SAG +lu +ina +GEŠTIN +NAG# +... +DIŠ +NA +SAG +KI +DAB# +BA# +TUKU +TUKU +NUMUN +u₂# +UKUŠ₂# +HAB# +DUB +1 +KAM₂ +DIŠ +NA +UGU +šu₂ +KUM₂ +u₂ +kal +E₂ +GAL +m +AN +ŠAR₂ +DU₃# +A +LUGAL +ŠU₂ +MAN +KUR +AN +ŠAR₂ +ki +ša +d +AG +u +d +taš +me +tu₄# +GEŠTU +MIN +ra +pa +aš₂ +tu +iš +ru +ku +šu₂ +e +hu +uz +zu +IGI# +MIN# +na +mir# +tu +ni +siq +ṭup# +šar +ru +ti +ša +ina +LUGAL +MEŠ +ni +a +lik +mah +ri +ia +mam₂ +ma +šip +ru +šu +a +tu +la +i +hu +uz +zu +bul +ṭi +TA +muh +hi +EN +UMBIN +liq +ti +BAR# +MEŠ +ta +hi +zu# +nak# +la# +a# +zu# +gal# +lu# +ti# +d# +nin# +urta# +u +d +gu +la +ma! +la +ba +aš₂ +mu +ina +ṭup +pa +a +ni +aš₂ +ṭur +as +niq +IGI +KAR₂ +ma +a +na +ta +mar +ti +ši +ta +si +ia +qe₂ +reb +E₂ +GAL +ia +u₂ +kin +DIŠ +NA +x +x +x +u₂# +tan# +ne₂# +eh# +šu₂# +x +... +u₂ +IGI +lim +u₂ +IGI +NIŠ# +... +DIŠ +KI +MIN +u₂# +HAR +HAR +u₂ +ur₂ +ne₂ +e +šim +... +DIŠ +KI +MIN +u₂# +HAR +LUM +BA +ŠIR +... +DIŠ +NA +SAG +ŠA₃ +šu₂ +u₂ +ṣar +rap +šu₂ +na +piš +KIRI₄ +šu₂ +DUGUD# +NA# +BI +... +DIŠ# +NA +SAG +ŠA₃ +šu₂ +i +ha +maṭ +su +i +dak +ka +su +UH₂ +su# +x +... +UD# +DA# +SA₂ +SA₂ +I₃ +GIŠ +BARA₂ +GA +ina +A +NU +pa +tan +NAG +NAG +šu₂ +... +šim# +LI +šim +GUR₂ +GUR₂ +ILLU +šim +BULUH +PA +giš +bi +ni +PA +u₂ +IN₆ +UŠ₂# +... +DIŠ# +NA# +MURUB₄# +MAŠ +SILA₃ +MIN +šu₂ +u₂ +ha +maṭ +su +KI +UH₂ +šu₂ +MUD₂ +ŠUB +ŠUB +ana +UD +DA# +... +šim# +LI +šim +GUR₂ +GUR₂ +ZA₃ +HI +LI +... +PA# +GI# +ZU₂ +LUM +MA +IM +GU₂ +EN +NA +GAZ +ina +KAŠ +SILA₁₁ +aš +x +... +DIŠ# +NA# +NINDA +GU₇ +KAŠ +NAG +ma +SAG +ŠA₃ +šu₂ +i +kaṣ₃ +ṣa +su +ŠA₃ +šu₂ +MU₂ +MU₂ +... +UD +DA# +SA₂ +SA₂ +u₂ +ak +tam +u₂ +IGI +lim +u₂ +tar +muš +... +DIŠ +KI +MIN +I₃# +GIŠ +BARA₂ +GA +EME +šu₂ +DAB +bat +... +DIŠ +NA +it +ta +na# +ša# +aš# +a# +šu# +uš# +tu₄# +ŠUB# +ŠUB# +su +x +x +x +x +x +x +x +x +x +x +x +x +x +UD +DA +SA₂ +SA₂ +giš +GEŠTIN +KA₅ +A +SUD₂ +ina +KAŠ +NAG +UZU +GUR₄# +RA# +GU₇# +šim +LI +šim +HAB# +ina# +KAŠ# +NAG# +ina# +KAŠ# +ŠEG₆# +šal# +ana# +DUR₂# +šu₂ +DUB +DIŠ +KI +MIN +GEŠTIN +KA₅ +A +SUD₂ +ina +KAŠ +NAG +IM +GU₂ +EN +NA +A +GAR +GAR +MAŠ +DA₃ +PA +giš# +KIŠI₁₆# +ha +ah +PA +GI +ZU₂ +LUM +MA +gu +ur +GI +ŠUL +HI +ZI₃ +GIG +DUH +ŠE +GIŠ +I₃ +ta +sak₃ +ina +KAŠ +ta +la₃ +aš +ina +TUG₂ +te +ṭer +ri +LAL +DIŠ +KI +MIN +u₂ +ak +tam +SUD₂ +ina +KAŠ +SAG +NAG# +DIŠ +NA +it +ta +na +ša +aš +a +šu +uš +tu₄ +ŠUB +ŠUB +su +di +ik +ša +TAG +TAG +su +UH₂ +šu₂ +ma +a +da# +NAG +NAG +UD +DA +SA₂ +SA₂ +u₂ +IGI +lim +u₂ +šiz +ba +na₇ +šim +ŠE +LI +BABBAR +SUD₂ +ina +KAŠ# +NAG +DIŠ +NA# +NINDA# +GU₇# +KAŠ +NAG +ma +ŠA₃ +šu₂ +in +nin +me +er +nap +hu +A +ma +gal +NAG +UD +DA +SA₂ +SA₂ +u₂# +IGI +lim +u₂ +IGI +NIŠ +u₂ +tar +muš +šim +GAM +MA +u₂ +ti +ia₂ +ta₅ +u₂ +HAR +HAR +SUD₂ +ina +KAŠ +NU +pa +tan +NAG +IM +GU₂# +EN +NA +A +GAR +GAR +MAŠ +DA₃ +šim +LI +šim +GUR₂ +GUR₂ +ZA₃ +HI +LI +PA +giš +GEŠTIN +KA₅ +A +x +x +x +gu +ur# +giš +GI +ŠUL +HI +ZI₃ +GIG +DUH +ŠE +GIŠ +I₃# +SUD₂# +ina +KAŠ +SILA₁₁ +aš# +ina +TUG₂ +SUR# +ri +LAL +su +ma +TI +u₂ +ak +tam +SUD₂ +ina +KAŠ +NAG +UZU +GUR₄ +RA +GU₇ +ŠA₃ +šu₂ +i +ar₂# +ru₃ +x +x +x +SUD₂ +ina +KAŠ +NAG +u₂# +IGI# +lim# +SUD₂# +ina +I₃ +GIŠ +BARA₂ +GA +NAG +IM +GU₂ +EN +NA +SUD₂ +ina +KAŠ +NAG +u₂ +ti +ia₂# +ta₅ +SUD₂ +ina +KAŠ +NAG +DIŠ +NA# +NINDA +GU₇ +KAŠ +NAG +ma +ŠA₃ +šu₂ +in +nim +me +ru +nap +hu +A +ma +gal +NAG +UD +DA +SA₂ +SA₂ +GURUN# +UKUŠ₂ +HAB +EN +la +uk +tap +pi +tu +HAD₂# +DU# +ta +sak₃ +ina +KAŠ +NAG +u₂# +KUR +RA +SUD₂ +ina +KAŠ +NAG +u₂ +HAR# +LUM +BA +ŠIR +SUD₂ +ina +KAŠ +NAG +DIŠ +NA +NINDA +GU₇ +KAŠ +NAG +ma +ŠA₃ +MEŠ# +šu₂# +in +nim +me +ru +KAŠ₃ +MEŠ# +šu₂ +DAB +DAB +at +UD +DA +SA₂ +SA₂ +GURUN +UKUŠ₂ +HAB +EN +la +uk +tap +pi +tu +HAD₂ +DU +ta +sak₃ +ina +KAŠ +NAG +DIŠ +NA +NINDA +GU₇ +KAŠ +NAG +ma +ŠA₃ +šu₂ +in +nim +me +ru +in +ne₂# +bi +ṭu₂ +ri +du +ut +ir +ri +TUKU +UD +DA +SA₂ +SA₂ +15081 ina +x +... +DIŠ +NA# +... +x +... +15090 x +šu₂ +i +x +... +DIŠ +NA +mur +ti# +... +NA# +BI# +x +x +GIG# +... +u₂ +ak +tam +ina +hi +iq# +KAŠ +... +EGIR +nu +hi +iq +KAŠ# +x +... +DIŠ +KI +MIN +a +šu +uš +tu₂ +ŠUB +ŠUB +su +... +ru +pu +uš +tu +NU +TUKU +TUKU# +ši +... +NU +GID₂# +DA# +u₂ +ap +ru +ša₂ +x +... +DIŠ +niš# +x +x +x +x +... +DIŠ +NA +x +x +ma# +gal +TUKU +TUKU# +... +... +x +x +x +... +DIŠ +NA +SAG +KI +DAB +BA +TUKU +TUKU +ši +NUMUN +u₂ +UKUŠ₂ +HAB +NUMUN +u₂ +UKUŠ₂ +TI +GI +LA +NUMUN +u₂ +EME +UR +GI₇ +NUMUN +u₂ +HUR +SAG +NUMUN +HAB +NUMUN +u₂ +DILI +NUMUN +kiš +ša₂ +ni +GAZ# +SIM +mal₂ +ma +liš +HI +HI +ina +A +GEŠTIN +NA +tara +bak +ZI₃ +ŠE +SA +A +ZI₃ +ZIZ₂ +A +AN +a +na +IGI +ta +šap +pah +ina +KUŠ +SUR +SAG +DU +su +tu +gal +lab +LAL +ma +ina +eš +DIŠ# +KIMIN# +GAZI +sar +u₂ +AB₂ +DUH +šim +GUR₂ +GUR₂ +šim +BULUH +DUH +ŠE +GIŠ +I₃ +ša +x +x +x +x +ZI₃ +GIG +mal₂# +ma# +liš# +HI +HI +DIDA +SIG₅ +GA +SUD₂ +ana +ŠA₃ +ŠUB +ŠEG₆ +GA₂ +U₂ +HI +A +an +nu +ti +HI +HI +tara +bak +LAL +DIŠ +KIMIN +giš +EREN# +giš +ŠUR +MIN₃ +šim +GIR₂ +GI +DU₁₀ +GA +šim +GUR₂ +GUR₂ +šim +LI +giš +EREN +SUMUN +šim +MUG +ŠIM +ŠAL +šim +MAN# +DU +šim +HAB +šim +BULUH +ILLU +šim +BULUH +TEŠ₂ +BI +GAZ +SIM +ina +GEŠTIN +ŠUR +RA +tara +bak +ZI₃ +ŠE +SA +A +ZI₃ +ZIZ₂ +A +AN +ana +IGI# +ta# +šap +pah +ina +KUŠ +SUR +ri# +SAG +DU +su +tu +gal +lab +LAL +ma +TI +DIŠ# +KIMIN# +NUMUN# +giš +ILDAG₂ +u₂ +ak# +tam# +NUMUN# +AB₂# +DUH +x +x +x +x +GAZI# +sar +NUMUN +giš +HAB +u₂ +LAG +A +ŠA₃# +DIŠ# +niš# +x +x +x +x +x +x +x +x +x +ŠE +SA +A +ZI₃ +ZIZ₃ +A +AN +a +na +IGI +ta +šap +pah +x +x +x +x +SAG +DU +su +SAR +ab# +LAL +ma +TI +DIŠ +KIMIN +u₂ +HAR +HAR +u₂ +KUR +KUR +x +x +x +x +u₂ +ka +man +ti +KA# +A# +AB +BA +ZI₃# +GIG +DIDA +SIG₅ +šim +x +x +x +x +ina +KAŠ +tara +bak +LAL# +ma# +TI# +DIŠ +KIMIN +šim +GUR₂ +GUR₂ +šim +LI +x +x +x +NUMUN? +u₂# +ka +man +ti +KA +A +AB +BA +šim +ŠEŠ# +ZI₃ +GIG +DIŠ +niš +GAZ +SIM +x +x +x +ina +KAŠ +tara +bak +LAL +ma +TI +DIŠ +KIMIN +šim +GUR₂ +GUR₂ +šim +LI +x +x +x +x +DIŠ +niš +GAZ +SIM +ZI₃ +GIG +DIDA +SIG₅? +ina +KAŠ +ta +la₃ +aš +x +x +x +SAG +DU +su +SAR +ab +LAL₂ +ma +TI# +DIŠ +KIMIN +šim +GUR₂ +GUR₂ +šim# +LI +šim +d +NIN +URTA +NUMUN +u₂ +AB₂ +DUH +KA +A +AB +BA +šim +MUG +DIŠ +niš +GAZ +SIM# +ina +KAŠ +tara +bak +SAG +DU +su +SAR +ab +LAL +ma +TI +DIŠ# +KIMIN# +PA# +giš +GIŠIMMAR +ša₂ +ina +NU +IM +i +nam +zu +zu +TI +qi₂ +ina +UD +DA +HAD₂ +A +GAZ +SIM +ina +A +GAZI +sar +SILA₁₁ +aš +LAL +DIŠ +KIMIN +u₂ +ap₂ +ru +ša₂ +SUD₂ +ina +I₃# +HI# +HI +ILLU +giš +a +bu +ka +tu₂ +ana +ŠA₃ +ŠUB +di +EN₂ +A +RA +ŠE +RA +MIN +IZI +BIL# +LI# +NUMUN +KI +IB +GAR +7 +šu₂ +u +7 +šu₂ +ana +ŠA₃ +ŠID +SAG +KI +šu₂ +LAL₂ +DIŠ# +KIMIN# +u₂# +KUR +KUR +ni +kip# +ta +ina +NE +tu +qat +tar +šu₂ +šim +GUR₂ +GUR₂ +ni# +kip# +ta# +šim +LI +NUMUN +u₂ +AB₂ +DUH +KA +A +AB +BA +x +x +x +x +x +ina +IZI +tu +ša₂ +ha +an +LAL +id +x +x +x +x +x +x +x +x +KA +A +AB +BA +UH₂ +d +ID₂ +DIŠ +niš +SUD₂# +sig₂ +HE₂ +ME +DA +x +x +x +x +x +SAG +KI +šu₂ +KEŠDA +as# +DIŠ +KIMIN +ni +kip? +ta? +... +SAG +KI +šu₂ +TAG +TAG# +DIŠ +KIMIN +x +... +HI# +HI# +SAG +KI# +šu₂# +TAG# +DIŠ +KIMIN +10 +GIN₂ +ZA₃ +HI# +LI# +10# +GIN₂# +ŠE +SA +A +x +x +x +x +x +x +LAL# +DIŠ# +KIMIN +10 +GIN₂ +ZA₃ +HI +LI +10 +GIN₂ +IM +BABBAR +x +x +x +x +x +x +x +x +x +x +x +x +x +TUKUM# +BI +LU₂ +U₃ +SAG +KI +x +x +x +x +x +x +x +x +x +x +ina +a +ṣi +ka +ina +GUB₃ +ka +GUB +zu +x +x +x +x +x +x +x +x +x +ina +sig₂ +HE₂ +ME +DA +KEŠDA +as₂ +x +x +x +x +x +x +x +x +x +TUKUM +BI +LU₂ +U₃ +SAG +KI +DAB +su +x +x +x +x +x +x +x +x +x +x +HAD₂ +A +GAZ +SIM +ina +KAŠ +SILA₁₁ +aš# +x +x +x +x +x +x +x +x +x +TUKUM +BI +LU₂ +U₃# +x +x +x +x +x +x +x +x +x +x +x +x +x +ina +SAG +KI +šu₂ +x +x +x +x +x +x +x +TUKUM# +BI# +x +x +x +x +x +x +x +x +x +x +x +x +x +x +15916 TUKUM# +BI +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ina +SAG +KI +šu₂ +x +x +x +x +x +x +DIŠ +LU₂ +ZI +SAG +KI +TUKU +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +sah +le₂ +e +ARA₃ +ti₃ +ZI₃ +ŠE# +SA +A +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +KIMIN +PA +giš +šu +nim +HAD₂ +A +GAZ +SIM +ina +ZI₃# +GIG +x +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +KIMIN +giš +GEŠTIN +KA₅ +A +u₂ +su +ba +lam +HAD₂ +A +GAZ +x +x +x +KI +ZI₃ +ŠE +SA +A +ina +A +GAZI +sar +x +x +x +DIŠ +NA +ZI +SAG +KI +TUKU +ši +u +šim +ma +ta₅ +TUKU +PA +giš +MA# +NU +x +x +x +x +x +sah +le₂ +e +u₂ +HAR +HAR +ina +KAŠ +lu₂ +KURUN₂ +NA +tara# +bak# +x +x +x +x +PA +u₂ +UR₂ +TAL₂ +TAL₂ +giš +d +MAŠ +KA +A +AB +BA# +u₂ +HAR +HAR +u₂ +KUR +KUR +ZI₃? +GIG? +gu# +ur# +GI# +gu +ur +GI +ŠUL +HI +HENBUR₂ +GI +HENBUR₂ +GI +ŠUL +HI +NUNUZ +giš +DIH₃ +NUNUZ +giš +KIŠI₁₆# +I₃ +UDU# +UR +MAH +u₂ +paṭ +giš +KIŠI₁₆ +ša₂ +ina +UGU +KI +MAH +GUB +zu +TEŠ₂ +BI +SUD₂ +ina# +I₃ +ŠEŠ₂ +NUMUN +u₂ +KI +d +IŠKUR +DIDA +SIG₅ +GA +ina +na₄ +NA +ZA₃ +HI +LI +SUD₂ +ina +KAŠ +lu₂ +KURUN₂ +NA +tara +bak +LAL +DIŠ +LU₂ +ZI +SAG +KI +TUKU +ma +ŠU +MIN +šu₂ +GIR₃ +MIN +šu₂ +i +šam +ma +ma +šu₂ +PA +giš +HA +LU +UB₂ +šim# +IM +MAN +DI +u₂ +SU +AN +DAR +ZI₃ +ŠE +MUŠ₅ +ZI₃ +MUNU₆ +u₂ +HAR +HAR +giš +GEŠTIN +KA₅ +A +DIŠ +niš +GAZ +SIM +ina +šur +šum# +mi +KAŠ +tara +bak +LAL +ma +TI +PA +GI +ŠUL +HI +šim +LI +u₂ +SU +AN +DAR +u₂ +ak +tam +u₂ +IN₆ +UŠ₂ +ZI₃ +GU₂ +TUR +DIŠ# +niš +GAZ +SIM +ina +šur +šum +mi +KAŠ +SAG +tara +bak +LAL₂# +ma +TI +uṭ +DIŠ +NA +SAG +KI +šu₂ +GU₇ +MIN +šu₂ +ina +si +pa +ri +1 +šu₂ +2 +šu₂ +3 +šu₂ +ta +tak +kip +EN? +MUD₂? +GIN? +ak +ni +kip +ta₅ +ina +I₃ +EŠ +su +16292 tug₂ +NIG₂ +DARA₂ +ŠU +LAL₂ +na₄ +mu +ṣa# +GEŠTU? +giš? +DIH₃ +SA₅! +bi +ni!? +ina +GU₂ +šu₂ +GAR +an +KU +KU +na₄ +SAG# +KI# +KU# +KU# +na₄ +NIR₂ +ina +I₃# +ŠEŠ₂# +su# +ana +ZI +SAG +KI +nu +uh₂# +hi +DUH +ŠE +GIŠ +I₃ +SUMUN +MEŠ +šim +GUR₂ +GUR₂ +šim +HAB +šim +BULUH +GAZI +sar +ta +pa +aṣ +DIDA +SIG₅# +ZI₃ +KUM +ina +KAŠ +ŠEG₆ +GA₂ +tara +bak +LAL +ana +ZI +SAG# +KI +nu +uh₂ +hi +DUH +ŠE +GIŠ +I₃ +šim +GUR₂ +GUR₂ +šim +BULUH +DIŠ +niš +GAZ +AL +U₂ +SA +ZI₃ +KUM +ina +KAŠ +DIŠ +niš +ŠEG₆ +šal +ina +TUG₂ +SUR +ri +LAL +su +ma +TI +DIŠ +NA +SA +SAG# +KI +šu₂ +GIG +šim +LI +šim +GUR₂ +GUR₂ +A +GAR +GAR +MAŠ +DA₃ +ZI₃ +GIG +DIŠ +niš +ina +KAŠ +tara +bak +LAL +ma +TI +uṭ +GAZI +sar +tur# +ar₂ +ZI₃ +GIG +it +ti +šu₂ +HI +HI +ina +I₃ +u +KAŠ +SAG +tara +bak +LAL +ma +TI +uṭ +DIŠ +LU₂ +SA# +SAG +KI +šu₂ +DAB +su +ma +GU₇ +MIN +šu₂ +10 +KISAL +ZI₃ +GIG +10 +KISAL +ZI₃ +KUM +10 +KISAL +šim +GUR₂ +GUR₂ +10 +KISAL +GAZI# +sar +10 +KISAL +ZI₃ +MUNU₆ +10 +KISAL +DUH +ŠE +GIŠ +I₃ +TEŠ₂ +BI +HI +HI +ina +KAŠ +ta +la₃ +aš +SAG +KI +šu₂ +LAL +a +na +nu!# +uh₂# +hi# +ša₂ +SA +HI +A +ŠE +SA +A +A +GAR +GAR +MAŠ +DA₃ +mal₂ +ma +liš +HI +HI +ina +KAŠ +SAG +tara +bak +LAL +DIŠ +LU₂ +SA +SAG +KI +šu₂ +DAB# +su# +ma# +GU₇ +šu₂ +u₃ +i +ar₂ +ru₃ +... +ina +KAŠ +NAG +... +i# +ar₂ +ru₃ +ŠU +BI +GEN₇ +NAM +DIŠ +NA +... +x +NINDA +u +KAŠ +la +i +mah +har +LU₂ +BI +DINGIR +šu₂ +iš +kun +šu₂ +... +x +la?# +bi +ri +te +qeb +bir +šu₂ +A +ina +UGU +TU₅ +DIŠ +KIMIN +... +LAL +id +SIG₂ +munus +AŠ₂ +GAR₃ +GIŠ₃ +NU +ZU +sig₂ +HE₂ +ME +DA +NIGIN +mi +KEŠDA +DIŠ +KIMIN +x +x +x +x +x +x +x +MUNUS +pa# +ri +iš +tu₂ +NU +NU +SA +MAŠ +DA₃ +KI +šu₂ +nu +ta +pat +til +x +x +x +x +x +x +x +na₄ +ZA +GIN₃ +na₄ +ZU₂ +GE₆ +E₃ +ina +SAG +KI +MIN +šu₂ +KEŠDA +SAHAR?# +x +x +x +x +x +x +ŠIKA +SILA +LIMMU₂# +ni# +kip# +ta +SUD₂ +ina +I₃ +GIŠ +HI +HI +ŠEŠ₂ +su +DIŠ +NA +SAG +KI +ZAG +šu₂# +DAB# +su# +ma# +IGI +ZAG +šu₂ +ER₂ +u₂ +kal +sah +le₂ +e +ZI₃ +ŠE +SA +A +LAGAB? +x +LAGAB# +MUNU₆# +DIŠ +niš +HI +HI +ina +A +GAZI +sar +tara +bak +SAG +KI +šu₂ +LAL +ma +TI +uṭ +DIŠ +NA +SAG +KI +GUB₃ +šu₂ +DAB +su +ma +IGI +GUB₃ +šu₂ +ER₂ +u₂ +kal +sah +le₂ +e +u₂ +HAR +HAR +GAZ +SIM# +ina +KAŠ +AL +ŠEG₆ +GA₂ +tara +bak +SAG +KI +šu₂ +LAL +ma +TI +uṭ# +DIŠ +NA +SAG +KI +MIN +šu₂ +ṣab +ta +šu₂ +ma +IGI +MIN +šu₂ +ER₂ +u₂ +kal +la +sah +le₂ +e +u₂ +HAR +HAR +GAZI +sar +ZI₃ +ŠE +SA +A +BA +BA +ZA +MUNU₆ +DIŠ +niš +ina +dug +UTUL₇ +ina +A +GAZI +sar +tara +bak +SAG +KI +MIN +šu₂ +KEŠDA +ma +TI +uṭ +DIŠ +NA +SAG +KI +ZAG +šu₂ +DAB +su +ma +IGI +ZAG +šu₂ +MUD₂ +u₂ +kal +sah +le₂ +e +u₂ +HAR +HAR +IM +BABBAR +giš +KIŠI₁₆ +HAB +ZI₃ +ŠE +SA +A +BA +BA +ZA +MUNU₆ +DIŠ +niš +GAZ +SIM +ina +A +GEŠTIN +NA +tara +bak +ŠU +BI +AŠ +AM₃ +DIŠ +NA +SAG# +KI +GUB₃ +šu₂ +DAB +su +ma +IGI +GUB₃ +šu₂ +MUD₂ +u₂ +kal +u₂ +KI# +KAL# +HI +RI₂ +IN +u₂ +SU +AN# +DAR +šim +MUG +DIŠ +niš +GAZ +SIM +ina# +x +x +x +x +x +tara# +bak +MIN +x +x +x +x +x +x +ṣab +ta# +šu₂# +ma +x +x +x +x +x +x +x +x +x +x +x +x +x +ŠE +SA +A +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +LAL +16939 giš +ŠUR +MIN₃ +giš# +MA₂?# +EREŠ? +MA₂? +RA? +... +giš +ar₂ +gan +nu +giš +ba +ri# +ra# +ta₅# +... +x +... +ŠURUN +GUD +A +GAR +GAR +MAŠ +DA₃ +DIŠ +niš +GAZ +SIM +ina +DIDA# +SIG? +tara +bak +x +x +x +x +ana +IGI +ta +šap +pah +SAG +DU +su +SAR# +ab +LAL +ma +u₂ +IGI +lim +u₂ +IGI# +NIŠ# +ina?# +DIDA?# +x +x +x +ZI +ah +na₄ +SAG +KI +ina +ZAG +šu₂ +KEŠDA +su +u₂ +ar₂ +zal +la +ŠIKA +gul +gul +LU₂ +U₁₈# +LU# +x +x +x +ni +kip +ta₅ +NUMUN +giš +MA +NU +u₂ +DILI +NUMUN +giš +bi +ni +u₂ +AŠ +TAL₂ +TAL₂ +DIŠ +niš +te +pe +eṣ +ina +I₃ +GIŠ +giš +EREN +HI +HI +ma +ŠEŠ₂ +su +bal +ṭu₂ +su +nu +ina +NE +giš +KIŠI₁₆ +tu +qat +tar +šu₂ +I₃ +DU₁₀ +GA +SAG +KI +MIN +šu₂ +EŠ +aš +DIŠ +NA +SAG +KI +ZAG +šu₂ +GU₇ +šu₂ +ma +IGI +ZAG +šu₂ +nap +hat +u₃ +ER₂ +BAL +qi₂ +ŠU +GIDIM +MA +ša₂ +ni +d +iš₈ +tar₂ +ana +TI +šu₂ +giš +si +hu +giš +ar₂ +ga +nu +giš +ba +ri +ra +ta₅ +1 +GIN₂ +UH₂ +d +ID₂ +u₂ +IN₆ +UŠ₂ +GI +ŠUL +HI +ina +ZI₃ +KUM +HI +HI +ina +KAŠ +tara +bak +LAL +: +DIŠ +KIMIN +šur +šum +mi +ši +iq +qi₂ +šur +šum +me +A +GEŠTIN +NA +KALAG +GA +šur +šum +mi +KAŠ +SAG +ZU₂ +LUM +MA +DILMUN +ki +1 +GIN₂ +I₃ +UDU +šim +GIG +ina +I₃ +NUN +SUD₂ +te +qi₂ +17182 DIŠ +NA +SAG +KI +GUB₃ +šu₂ +GU₇ +šu₂ +ma# +IGI +150 +šu₂ +nap +hat +u +ER₂ +BAL +qi₂ +ZU₂ +LUM +MA +DILMUN +ki +U₂ +a +ši +i +MUD₂ +giš +EREN +ina +I₃ +šim +GIR₂ +SUD₂ +ina +MUL₄ +tuš +bat +ina +še +ri₃ +NU +pa +tan +MAR +DIŠ +KIMIN +IM +BABBAR +pu +rat +ta₅ +ZI₃ +MUNU₆ +ZI₃ +GU₂ +GAL +ZI₃ +GU₂ +TUR +ZI₃ +GAZI +sar +GAZ +SIM +ina +A +GAZI +sar +tara +bak +SAG +KI +šu₂ +IGI +šu₂ +LAL +DIŠ +NA +SAG +KI +DAB +su +ma +i +mim +i# +kaṣ₃ +ṣa +IGI +MIN +šu₂ +nu +up +pu +ha +ŠU +GIDIM +MA +GIR₃ +PAD +DU +NAM +LU₂ +U₁₈ +LU +tur +ar₂ +SUD₂ +ina +I₃ +giš +EREN +EŠ +MEŠ +su +ma +TI +DIŠ +NA +SAG +KI +DAB +su +ma +TA +d +UTU +E₃ +EN +d +UTU +ŠU₂ +A +GU₇ +šu₂ +ŠU +GIDIM₇ +MA +a +ši +pu +ki +ša₂ +i +du +u +li +te +ep +pu +uš +I₃ +UDU +ma +hir +te +UDU? +NITA₂? +x +x +x +x +DIŠ +niš# +EŠ +su +u₂ +IN₆ +UŠ₂ +HAD₂ +A +GAZ# +SIM# +ina +A +GAZI +sar +tara +bak +ZI₃ +ŠE +SA +A? +ana +IGI +ta +ša +pah +SAR +ab +LAL +su +17378 ... +LAL?# +... +... +ZI +ah +sig₂# +HE₂# +ME# +DA# +... +... +NIGIN +mi +ina +SAG +KI +šu₂ +u +GU₂ +šu₂# +KEŠDA +x +x +x +x +x +x +x +x +x +x +SAG +KI +MIN +šu₂ +GU₇ +MIN +šu₂ +na₄ +mu +ṣa +na₄ +AN +ZAH +na₄ +AN +ZAH +GE₆# +na₄ +KA +GI +NA +DAB +BA +NA₄ +AN +BAR +u₂ +DILI +6 +U₂ +MEŠ +ŠEŠ +DIŠ +niš +SUD₂ +ina +MUD₂ +giš +EREN +HI +HI +ma +SAG +KI +MIN +šu₂ +IGI +MEŠ# +šu₂# +u# +GU₂# +su# +EŠ# +MEŠ# +ma +ina +eš +DIŠ# +NA# +ina +DAB +ŠU +GIDIM +ZI +SAG# +KI# +TUKU# +MEŠ# +ana# +KAR# +šu₂ +10 +GIN₂ +giš +EREN +10 +GIN₂ +giš +ŠUR +MIN₃ +10 +GIN₂ +šim +ŠEŠ +10 +GIN₂ +šim +IM +DI +10 +GIN₂ +giš +dup +ra +nu +10 +GIN₂ +ŠIM +ŠAL +10 +GIN₂ +šim +GIR₂ +10 +GIN₂ +šim +GAM +MA +10 +GIN₂ +šim +LI +10 +GIN₂ +šim# +GUR₂ +GUR₂ +10 +GIN₂ +GI# +DU₁₀ +GA +10 +GIN₂ +GAZI +sar# +10 +GIN₂ +šim +HAB +10 +GIN₂ +LAGAB +MUNU₆ +10 +GIN₂# +DUH# +ŠE# +GIŠ +I₃ +x +x +10 +GIN₂# +DIDA# +SIG₅ +GA +10 +GIN₂ +sah +le₂# +e# +10# +GIN₂# +qi₂# +lip₂ +x +x +x +10 +GIN₂ +GU₂# +GAL# +10 +GIN₂ +GU₂ +TUR +DIŠ +niš +GAZ# +SIM# +lu# +ina# +KAŠ +SAG? +x +x +x +tara +bak# +ina# +KUŠ# +SUR +ZI₃ +ZIZ₂ +A +AN# +ana# +IGI# +ta# +šap +pah +x +x +x +SAR +ab# +SAG +KI +MIN +šu₂ +LAL +ma +ina +eš +DIŠ +KIMIN +šim +... +šim +d +MAŠ +ILLU +šim +BULUH +qi₂ +lip₂ +ZU₂ +LUM +MA +I₃ +UDU +ELLAG₂ +... +DIŠ +niš +GAZ +ina +KUŠ +SUR +ri +LAL +id +ma# +ina? +eš? +DIŠ +KIMIN +DUH +ŠE +GIŠ +I₃ +... +šim +GIG# +ZI₃ +KUM +ina +šur +šum +me +KAŠ +SILA₁₁ +aš +x +x +x +DIŠ +NA +SAG +KI +DAB +BA? +TUKU +TUKU? +u₂# +ŠAKIRA# +NUMUN# +u₂# +UR# +TAL₂ +TAL₂ +NUMUN +u₂ +EME# +UR +GI₇ +NUMUN +u₂ +NIG₂ +GAN₂? +GAN₂? +NUMUN +u₂ +ap₂? +ru? +šu₂ +NUMUN +u₂ +AB₂ +DUH +NUMUN +u₂# +MAŠ?# +HUŠ?# +ša?# +ana?# +x +x +x +ŠE₁₀ +TU +mušen +ša₂ +giš +GIŠIMMAR? +TI +ŠE₁₀ +SIM +mušen +ša₂ +giš +bi +ni +TI +ILLU +u₂ +si +in?# +bu?# +ra? +ti? +šim +GUR₂ +GUR₂ +sah? +le₂? +e? +NUMUN +u₂ +qu₂ +ud +ri +GAZI +sar +giš +KIŠI₁₆ +ta +pa +aṣ +DIŠ? +niš? +x +x +x +U₂ +MEŠ +ŠEŠ +ina +urudu +ŠEN +TUR +ta +qal +lu +U₂ +MEŠ +ša +šu +nu +ma +la +a +qa +lu +u +TI# +DIŠ +niš +HI +HI +ina +šur +šum +mi +KAŠ +ta +la₃ +aš +tu +gal +lab +I₃ +GIŠ +EŠ +aš +7 +šu₂ +KEŠDA +su +ma +ina# +U₄# +4# +KAM₂# +SA +SAG +KI +šu₂ +ta +ma +haṣ +ma +TI +uṭ +DIŠ +KIMIN +NUMUN +u₂ +DILI +NUMUN +u₂ +TAL₂ +TAL₂ +GAZ +SIM +ina +A +ta +la₃ +aš +LAL +DIŠ +KIMIN +ŠE₁₀ +TU +mušen# +SUD₂ +ina +KAŠ +ta +la₃ +aš +LAL +DIŠ +NA +SAG +KI +DAB +BA +TUKU +TUKU +IGI +MIN +šu₂ +i +bar +ru +ra +UZU +MIN +šu₂ +i +šam +ma +mu +šu +GIR₂ +GIR₂ +šu₂ +ŠA₃ +MEŠ +šu₂ +MU₂ +MU₂ +ŠU +MIN +šu₂ +u +GIR₃ +MIN +šu₂ +u₂ +šam +ma +ma +šu₂ +u₂ +zaq +qa +ta# +šu₂ +bir +ka +šu₂ +an +ha? +tab? +ka +e +ta +ta +na +ah +NA +BI +GIG +NU +ZI +DAB +su +i +dan +nin +šu₂ +ana +GIG +šu₂ +NU +GID₂ +DA +hi +qa +ša +KAŠ +urudu +ŠEN +TUR +DIRI +giš +bi +nu +u₂ +x +x +giš +HAŠHUR +GIŠ +GI +u₂ +TAL₂ +TAL₂ +NUMUN +giš +ŠE +NU₂ +A +ana +ŠA₃# +ŠUB +ŠEG₆ +šal? +x +x +x +x +x +ib?# +E₁₁# +šu₂# +ma# +NAGA +SI +MEŠ +IM +GU₂ +NIG₂ +NIGIN₂ +NA +te# +se +er +šu₂ +17974 u₂ +IGI +lim +u₂ +IGI +NIŠ +SUD₂ +ina +MUD₂ +giš +EREN +HI +HI +ŠEŠ₂ +su? +ma +TI +DIŠ +NA +SAG +KI +DAB +BA +TUKU +TUKU +u₂ +IGI +lim +u₂ +IGI +NIŠ +u₂ +tar +muš? +u₂# +an# +ki +nu +te +giš +HAŠHUR +GIŠ +GI +u₂ +HAR +HAR +U₂ +HI +A +ŠEŠ +ti +DIŠ +niš +ta +pa +aṣ? +ina? +urudu +ŠEN? +TUR? +ŠUB +tu +šab +šal +ta +ša₂ +hal +10 +GIN₂ +LAL₃ +1 +3 +SILA₃ +I₃ +hal +ṣa +ana +ŠA₃ +ŠUB +ana +DUR₂ +šu₂# +DUB +ma +TI +DIŠ +KIMIN +u₂ +IGI +lim +u₂ +IGI +NIŠ +NUMUN +giš +ŠINIG +NUMUN +u₂ +tu +lal +TEŠ₂ +BI +SUD₂ +ina +GEŠTIN +ŠUR +ba +lu +pa +tan +NAG +ma +TI +uṭ +DIŠ +KIMIN +ŠIM +HI +A +DU₃ +A +BI +šu₂ +nu +ina +GEŠTIN +ŠUR +u +KAŠ +SAG# +tu +la +bak +ŠEG₆ +šal +ta +ša₂ +hal +10 +KISAL +LAL₃ +1 +3 +SILA₃ +I₃ +hal +ṣa +ana +ŠA₃ +ŠUB +di +x +x +x +ta# +hi +ṭa +šu₂ +ma +TI +uṭ +DIŠ +KIMIN +u₂ +HAR +HAR +u₂ +KUR +KUR +NAGA# +SI# +MEŠ# +x +x +x +x +x +NU# +pa +tan +NAG +MIN +ma +TI +uṭ +DIŠ +KIMIN +u₂ +IGI +lim +u₂ +IGI +NIŠ +NUMUN +u₂# +x +x +x +x +x +x +x +SUD₂? +ina# +KAŠ# +ŠEG₆# +šal +ta +ša₂ +hal +10 +KISAL +LAL₃ +1 +3 +SILA₃ +x +x +x +x +x +x +x +x +x +x +x +TI +DIŠ +KIMIN +u₂ +IGI +lim +PA +giš +ŠE +NU₂ +A +... +TEŠ₂ +BI +GAZ +SIM +ina +x +... +DIŠ +KIMIN +giš +HAŠHUR +a +pi +... +DIŠ +NA +SAG +KI +DAB +BA? +TUKU +TUKU? +... +na₄ +AN +ZAH +GE₆? +... +DIŠ +KIMIN +ni? +kip? +ta₅? +... +TEŠ₂?# +BI? +... +18252 na₄ +mu +ṣa# +na₄ +... +U₂# +HI +A +an +nu# +ti +... +EN₂# +UR# +SAG +d +ASAL +LU₂ +HI# +7?# +šu₂? +ŠID +... +DIŠ +NA# +SAG +KI +DAB +su +ma +IGI +MIN# +šu₂ +... +DIŠ +niš +SUD₂ +ina +KAŠ? +... +DIŠ +NA# +SAG +KI +šu₂ +lu +ša₂ +ZAG +lu +ša₂ +GUB₃ +... +u +IGI# +MIN +šu₂ +a +pa +a +na₄ +mu +ṣa# +... +DIŠ# +NA# +SAG +KI +ME +šu₂ +ZI +MEŠ +... +sah +le₂# +e +ARA₃ +MEŠ +x +... +KUŠ? +MUŠ +GE₆ +HAD₂ +DU? +... +DIŠ +NA +SAG +KI# +DAB +su +ma +pa +nu +šu +iṣ +ṣa +nun +du# +x +x +x +x +x +x +x +x +x +x +x +x +x +u₂# +IGI# +lim# +x +x +x +x +KAŠ +DU₁₀ +GA +NAG +MEŠ# +ma +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +KEŠDA +su +A +RI +A +NAM +LU₂# +U₁₈# +LU +x +x +x +x +x +x +x +x +x +x +x +x +x +SUD₂ +ina +I₃ +giš +EREN +HI +HI +ŠEŠ₂ +MEŠ# +ma# +TI# +x +x +x +x +x +x +x +SA +GU₂ +MEŠ +šu₂ +GU₇ +MEŠ +šu₂ +ŠU +GIDIM +MA +giš +si +hu +giš +ar₂ +ga +nu +u₂# +ba +ri +ra +ta₅ +GI +ŠUL +HI +GAZ +SIM +ina +A +GAZI +sar +tara +bak +LAL +su +DIŠ +NA +x +x +x +x +x +x +d +UTU +E₃ +EN +EN +NUN +UD +ZAL +LI +GU₇ +šu₂ +ur +rak +UŠ₂ +DIŠ +NA +x +x +x +x +x +ŠA₃ +ŠA₃ +GU₃ +GU₃ +si +ŠU +GIDIM +MA +ša₂ +ne₂ +e +d +iš +tar +UŠ₂ +DIŠ +NA +SAG +KI +DAB +BA +ma +ma +gal +BURU₈ +KI# +NA₂# +la# +i# +na# +aš +ši +UŠ₂ +DIŠ +NA +SAG +KI +DAB +BA +ma +ma +gal +GU₃ +GU₃ +si +SA +SAG +KI +šu₂ +ma# +gal# +te?# +bu?# +u?# +x +x +x +x +x +UŠ₂# +an +nu +tu₄ +x +x +x +x +SAG +KI +DAB +BA +KAM₂ +EN +SA# +GU₂?# +AL? +TIL?# +šum +ma +SAG +KI +DAB +BA +ŠU +GIDIM +MA +ina +SU +NA +il +ta +za +az +ma +NU +DU₈ +DUB +2 +KAM₂ +DIŠ +NA +UGU +šu₂ +KUM₂ +u₂ +kal +E₂ +GAL +m +AN# +ŠAR₂# +DU₃# +A# +LUGAL +ŠU₂ +MAN +KUR +AN +ŠAR₂ +ki# +ša +d +AG +u +d +taš +me +tu₄ +GEŠTU +MIN +ra +pa +aš₂ +tu₂ +iš +ru +ku +šu₂ +e +hu +uz +zu +IGI +MIN +na +mir +tu₄ +ni +siq +ṭup +šar +ru +ti +ša# +ina +LUGAL +MEŠ +ni +a +lik +mah +ri +ia +mam₂ +ma +šip# +ru# +šu +a +tu +la +i +hu +uz +zu +bul +ṭi +TA +muh +hi +EN +UMBIN +liq +ti +BAR +MEŠ +ta +hi +zu# +nak +la +a +zu +gal +lu +ut +d +nin +urta +u +d +gu +la +ma +la +ba +aš₂ +mu +ina +ṭup +pa +a +ni +aš₂ +ṭur +as +niq +IGI +KAR₂ +ma +a +na +ta +mar +ti +ši +ta +si +ia +qe₂ +reb +E₂ +GAL +ia +u₂# +kin +NA# +BI +GIDIM +IM +RI +A +šu₂ +DAB +su +... +šim +ŠE +LI +BABBAR +šim +... +u₂ +tara +muš +giš +si +ha +... +ina +A +ŠIM +HI +A +GAR +šu +nu +... +ta +lal +NITA +NINDA +GID₂ +DA +x +... +I₃ +šim +ŠEŠ +ana +SAG +KI +šu₂ +ŠUB +di +... +ana +KIMIN +giš +EREN +giš +ŠUR +MIN₃ +GI +DUG₃ +GA +... +8 +U₂ +HI +A +ŠEŠ +UR +BI +ina +KAŠ +SAG +... +PEŠ₁₀ +d +ID₂ +ku +up +ri +d +ID₂ +... +tu +qat +tar +šu₂ +hi +ib +ṣa +ša +x +... +DIŠ +NA +ina +DAB +it +ŠU +GIDIM +MA +GEŠTU +MIN +šu₂ +i +šag +gu +ma +... +šim +d +MAŠ +zap +pi +ANŠE +KUR +RA +ZI₃ +... +MUD₂ +MUŠ +u₂ +GUD₃ +A +RI +A# +... +ŠU +SI +MEŠ +šu₂ +ina +GEŠTU +MIN +šu₂ +i +ret +ti +ma +... +a +šar +TAB +ba +ši +i +d +e +a +ib +ni +... +EGIR +šu₂ +KA +sa +par +ti +SI +GU₄ +... +DIŠ +NA +GIDIM +DAB +su +ma +GEŠTU +MIN +šu₂ +i +šag +gu +ma +šim +BAL +GI +DUG₃ +GA +šim +GUR₂ +GUR₂ +GAZI +sar +zap +pi +ANŠE +KUR +RA +PAP +5 +U₂ +MEŠ +qu₅ +taru₅ +ša +GEŠTU +MIN +lat +ku +x +x +... +x +ina +MUD +UD +KA +BAR +... +DIŠ +NA +ŠU +GIDIM +MA +DAB +su +ma +GEŠTU +MIN +šu₂ +i +šag +gu +ma +šim +ŠEŠ +na₄ +EŠ₃ +ME +KAM₂ +na₄ +AŠ +GI₃ +GI₃ +... +SUD₂ +ina +sig₂ +AKA₃ +NIGIN +mi +ina +MUD₂ +giš +EREN +SUD +EN₂ +piš +irtu +ib +ni +ŠID# +nu +... +EN₂ +piš +irtu +ib +ni +d +e +a +IM +MA +AN +NA +AN +KI +A +NA₄ +li +iz +zur +šu₂ +NA₄ +li +is +kip# +šu₂# +NA₄# +liš# +pi +šu₂ +NA₄ +li +pa +sis +su +TU₆ +EN₂ +: +EN₂ +an +ni +tu₂ +3 +šu₂ +ana +UGU +lip₂ +pi +ŠID +nu +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +ana +KIMIN +šim +GUR₂ +GUR₂ +u₂ +HAR +HAR +u₂ +KUR +KUR +u₂ +ak +tam +u₂ +IGI +lim +u₂ +IGI +20 +u₂ +tara +muš +ZA₃ +HI +LI +SUD₂ +ina +I₃ +giš +EREN +HI +HI +ina +sig₂ +AKA₃ +NIGIN +mi +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +ma +ina +eš +: +ana +KIMIN +GI +DUG₃ +ina +I₃ +GIŠ +SUD₂ +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +ana +KIMIN +šim +ŠEŠ +na₄ +AŠ₂ +GI₄ +GI₄ +na₄ +ZA +GIN₃ +na₄ +SIG₇ +SIG₇ +1 +niš +SUD₂ +ina +I₃ +giš +EREN +HI +HI +ana +ŠA₃ +GEŠTU +MIN +šu₂ +ŠUB +UZU +MIN +šu₂ +ŠEŠ₂ +DIŠ +NA +ina +DAB +it +ŠU +GIDIM +MA +GEŠTU +MIN +šu₂ +i +šag +gu +ma +NUMUN +u₂ +ra +a +nu +NUMUN +giš +MA +NU +ni +kip +tu₂ +NITA₂ +u +MUNUS +zap₂ +pi +ANŠE +KUR +RA +tug₂ +NIG₂ +DARA₂ +ŠU +LAL₂ +ina +NE +GEŠTU +MIN +šu₂ +tu +qat +tar +DIŠ +NA +ina +DAB +it +ŠU +GIDIM +MA +GEŠTU +MIN +šu₂ +i +šag +gu +ma +SUHUŠ +giš +MA +NU +ni +kip +tu₂ +tug₂ +NIG₂ +DARA₂ +ŠU +LAL₂ +ina +NE +ŠA₃ +GEŠTU +MIN +šu₂ +SAR +šim +GUR₂ +GUR₂ +šim +LI +šim +ŠEŠ +giš +EREN +GI +DUG₃ +GA +šim +MUG +GAZI +sar +im +KAL +GUG +8 +U₂ +HI +A +qu₅ +GUR +ša +GEŠTU +MIN +ina +NE +ŠA₃ +GEŠTU +MIN +šu₂ +SAR +na₄ +mu +ṣu₂ +SI +DARA₃ +MAŠ +GIR₃ +PAD +DU +NAM +LU₂ +U₁₈ +LU +KA +tam +ti₄ +GIR₃ +PAD +DU +UGU +DUL +BI +u₂ +KUR +RA +ina +NE# +ŠA₃ +GEŠTU +MIN +šu₂ +tu +qat +tar +kib +ri +tu +u₂ +KU₆ +SUHUŠ +giš +MA# +NU# +a +za +pi +ANŠE +KUR +RA +tug₂ +NIG₂ +DARA₂ +ŠU +LAL₂ +ina +NE +giš +KIŠI₁₆ +ŠA₃ +GEŠTU +MIN +šu₂ +tu +qat +tar# +SI +DARA₃ +MAŠ +na₄ +ga +bi +i +u₂# +KUR# +RA# +sah +le₂ +e +KA +tam +ti₄ +kib +ri +tu₂ +GIR₃ +PAD +DU +NAM +LU₂ +U₁₈# +LU +ina +NE +giš +KIŠI₁₆ +ŠA₃ +GEŠTU +MIN +šu₂ +SAR +DIŠ +NA +GEŠTU +MIN +šu₂ +i +šag +gu +ma +MUD₂ +giš? +EREN? +a# +ra +an +di +šim +GUR₂ +GUR₂ +ina +sig₂ +AKA₃ +NIGIN +mi +ana +ŠA₃ +A +MEŠ +ŠUB +di +ina +NE +SEG₆ +šal +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +ma +TI +DIŠ +NA +GEŠTU +MIN +šu₂ +i +šag +gu +ma +MUD₂ +giš +EREN# +KI +A +giš +NU +UR₂ +MA +HI +HI +ma +ana +ŠA₃ +GEŠTU +MIN +šu₂ +ŠUB +ma +TI +en₂ +in +da +ra +ah +ta +ra +ah +ti +šu +maš +in +da +ra +ah +ta +ra +ah +ti +tir +ki +bi +in +da +ra +ah +ta? +ra +ah +ti +tir +ki +ba +su +tu₂ +TU₆ +EN₂ +en₂ +šu +bi +in +du₈ +gir₃ +bi +in +du₈ +bur# +še +bur +na +bur# +na# +an +na +su +ri +ih +su +ri +ih +e +ne# +su +ri +ih# +gaba?# +ni# +ik +ra +ah +su# +ri +ih +ta# +ah# +ta# +ah# +TU₆ +EN₂ +2 +KA +INIM +MA# +DIŠ +NA +GEŠTU# +MIN# +šu₂ +i# +šag +gu +ma +DU₃ +DU₃ +BI +šim +ŠEŠ# +na₄ +EŠ₃ +ME +KAM₂ +na₄ +AŠ₂ +GI₄ +GI₄ +SUD₂ +x +x +ina +MUD₂ +giš +EREN +HI +HI +EN₂ +3 +šu₂ +ana +ŠA₃ +ŠID# +nu# +sig₂ +AKA₃ +NIGIN +mi +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +EN₂# +si +in +du₈ +ib +ni +d# +e₂# +a +IM +MA# +NA# +AN# +KI# +A# +ib# +ni +du +up +ni +gu₂ +us₂ +sa# +TU₆ +EN₂ +1# +KA +INIM +MA +DIŠ +NA +GEŠTU +MIN +šu₂ +i# +šag +gu +ma# +DU₃ +DU₃ +BI +šim +ŠEŠ +na₄ +EŠ₃ +ME +KAM₂ +na₄ +AŠ₂ +GI₄ +GI +ni +kip# +tu# +ina +I₃ +HI +HI +ina +MUL +tuš +bat +EN₂ +3 +šu₂ +ana +ŠA₃ +ŠID +nu +sig₂# +AKA₃# +NIGIN +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR# +an +en₂ +ša +ra +zu# +ša# +ra +šag₅# +ga +he₂ +a +ur +sag +d +nin +urta +ša +ra +šag₅# +ga +he₂ +a +en +d +nin# +urta# +ša# +ra +šag₅ +ga +he₂ +a +d# +nin +urta +nam +ba +te +ga₂ +e₃ +de₃ +tu₆ +en₂ +1 +KA +INIM +MA +DIŠ +NA +GEŠTU +MIN +šu₂# +i# +šag# +gu +ma +DU₃ +DU₃ +BI +na₄ +EŠ₃ +ME +KAM₂ +x +x +šim +ŠEŠ +u₂# +ur# +nu +u +UR# +BI# +SUD₂# +ina +MUD₂ +giš +EREN +HI# +HI# +EN₂ +3 +šu₂ +ana +ŠA₃ +ŠID +nu +ina +sig₂ +AKA₃ +NIGIN# +mi# +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +EN₂ +na +pi +ir# +še +ri +iš# +pa? +ta? +ar? +ri? +zu +ga +li? +ir# +ri# +pa +ta +hal +li +pa +tar +ri +su? +ma? +aš₂? +pa?# +at# +ri +pa? +ku? +un? +di +ra +ta +aš₂? +ik? +ki# +ri +ri +ša +ra +aš +tu₆ +en₂ +1 +KA +INIM +MA +DIŠ +NA +GEŠTU +MIN +šu₂ +i +šag +gu +ma# +3 +šu₂ +ana +ŠA₃ +GEŠTU +ZAG +šu₂ +3 +šu₂ +ana +ŠA₃ +GEŠTU +GUB₃ +šu₂ +MU₂# +... +x +x +... +x +x +... +... +... +en₂ +nig₂ +e₃ +nig₂ +e₃ +nig₂ +nam +ma +us₂ +su₁₃ +ki +a +dim₃ +ma +bi +a +ri +a +an +na +ke₄ +sa₇ +alan +bi +nig₂ +an +gin₇ +šu +nu +te +ga₂ +hur +sag +gin₇ +gul +gul +sa₇ +alan +bi +zi +ir +zi +ir +e +de₃ +nig₂ +udug +har +ra +an +nig₂ +udug +kaskal +am₃ +nig₂ +ni₂ +zu +mu +un +ši +in +gin +na +nig₂ +ni₂# +zu# +mu# +un# +ši# +in# +gin +na +d +nin +urta +lugal +giš +tukul +ke₄ +gaba +zu +he₂ +en +ga₂# +ga₂ +hul +dub₂ +zi +an +na +he₂ +pa₂ +zi +ki +a +he₂ +pa₂# +1 +KA +INIM +MA +DIŠ +NA +GEŠTU +MIN +šu₂ +i +šag +gu +ma +3 +šu₂ +ana +ŠA₃ +GEŠTU +ZAG +šu₂ +3 +šu₂ +ana +ŠA₃ +GEŠTU +GUB₃ +šu₂ +ŠID +en₂ +hu +hu +un +ti +ib +ni +a +ti +ib +ni +ir +ra +ša₂ +na +an +ak +ka +li +ir +ri +su +gar +ri +ša₂ +at +ri +ku +uk +ti +hu +ma +at +ri +su +ma +aš +tu₆ +en₂ +1 +KA +INIM +MA +DIŠ +NA +GEŠTU +MIN +šu₂ +i +šag +gu +ma +3 +šu₂ +ana +ŠA₃ +GEŠTU +ZAG +šu₂ +li +ih +šu₂ +en₂ +a +me +am +ma +an +ku +um +ma +am +su +um +ma +at +ri +ki +ri +ri +ku +uk +ti +ra +ša₂ +na +ku +uk +ti +hu +un +di +hu +ma +an +tu₆ +en₂ +KA +INIM +MA +DIŠ +NA +GEŠTU +MIN +šu₂ +i +šag +gu +ma +3 +šu₂ +ana +ŠA₃ +GEŠTU +GUB₃ +šu₂ +li +ih +šu₂ +... +u₂# +kur +ka +na +a +... +x +... +DIŠ +NA +GEŠTU +MIN +šu₂ +GU₇ +MEŠ +šu₂ +neš +ma +a +he +e +si +I₃ +GIŠ +giš +dup +ra# +an# +sig₂ +AKA₃ +SUD# +1# +tum# +2# +šu₂# +3# +šu₂# +ana# +ŠA₃# +GEŠTU +MIN# +šu₂# +GAR# +an# +DIŠ +NA +GIG +ma +GIG +su +ana +ŠA₃ +GEŠTU +MIN +šu₂ +ip# +pu +uš +ma +neš +ma +a +DUGUD +1 +GIN₂ +A +giš +NU +UR₂ +MA# +2 +GIN₂ +A# +šim +GIG +I₃ +šim +x +x +x +HI +HI +sig₂ +AKA₃ +SUD +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +UD +3 +KAM₂ +an +nam +DU₃ +uš# +ina +UD +4 +KAM₂ +LUGUD +ša₂ +ŠA₃ +GEŠTU +MIN +šu₂ +E₁₁# +ma +ta +kap +par +GIM +MUD₂ +BABBAR +it +tag +ma +ru +IM# +SAHAR# +NA₄ +KUR +RA +SUD₂ +ina +GI +SAG +KUD +ana +ŠA₃ +GEŠTU +MIN +šu₂ +MU₂ +ah +DIŠ +NA# +KUM₂ +ana +ŠA₃ +GEŠTU +MIN +šu₂ +i +pu +uš# +ma +neš +mu +šu₂ +DUGUD +u₃ +lu +IR +u₂ +kal +I₃ +GIŠ +giš +dup +ra +na +I₃ +GIŠ +GI +DUG₃ +GA +ana +SAG +DU +šu₂ +ŠUB +di +sig₂ +AKA₃ +SUD +1 +šu₂ +2 +šu₂ +3 +šu₂ +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +neš +mu +šu₂ +BAD +te +sah +le₂ +e +ša₂ +mim +ma +ana +ŠA₃ +NU +ŠUB +ina +NINDA +ZIZ₂ +AN +NA +GU₇ +DIŠ +NA +ina +si +li +ʾ +ti +šu₂ +KUM₂ +ana +ŠA₃ +GEŠTU +MIN +šu₂ +ip +pu +uš +ma +GEŠTU +MIN +šu₂ +DUGUD +I₃ +KUR +GI +mušen +ana +ŠA₃ +GEŠTU +MIN +šu₂ +ŠUB +ma +neš +mu +šu₂ +i +qal +lil₂ +SUHUŠ +giš +NAM +TAR +NITA₂ +tu +pa +aṣ +ana +ŠA₃ +GEŠTU +MIN +šu₂ +ŠUB +ma +ina +eš +DIŠ +NA +GEŠTU +MIN +šu₂ +GIM +ša₂ +ŠU +GIDIM +MA +GU₇# +MEŠ# +u₃# +SIG₃# +MEŠ# +šu₂# +I₃ +GIŠ +šim +GIG +I₃ +GIŠ +GI +DUG₃ +GA +I₃ +GIŠ +šim +LI +a# +he# +e +tu +raq +qa +1 +niš +HI +HI +ana +ŠA₃ +GEŠTU +MIN +šu₂# +ŠUB# +LAG +mun +eme +sal +li₃ +sig₂# +AKA₃# +NIGIN# +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +DIDA +SIG₅ +ZI₃ +GU₂ +GAL +ZI₃ +GU₂ +TUR +ZI₃ +ZIZ₂ +AM₃# +ZI₃ +GAZI +sar +ZI₃ +giš +ere# +ni# +ina +KAŠ +tara +bak +LAL +TI# +uṭ# +DIŠ +NA +GEŠTU +MIN +šu₂ +GIG +ma +ŠA₃ +GEŠTU +MIN +šu₂ +bi +ʾ +iš +SIG₃ +MEŠ +su +GIR₂ +GIR₂ +su +x +x +x +u₂# +ra# +x +GU₇ +šu₂ +ma +la +NA₂ +lal +šim +LI +šim +GUR₂ +GUR₂ +šim +GIR₂ +šim +BAL +GAZI +sar +IM +KAL +LA +IM +KAL# +GUG# +1 +niš +GAZ +SIM +ina +NE# +giš# +u₂ +GIR₂ +ŠA₃ +GEŠTU +MIN +šu₂ +SAR +ar₂# +x +x +x +x +x +UD +3 +KAM₂ +an +nam +DU₃# +uš# +ma +ina +UD +4 +KAM₂ +ŠA₃ +GEŠTU +MIN +šu₂# +ta +kap +par₂ +ma +GIM +LUGUD +it +tag# +ma# +ru +IM +SAHAR +NA₄# +KUR# +RA +SUD₂ +ina +gi +SAG +KUD +ana +ŠA₃ +GEŠTU +MIN +šu₂ +MU₂ +ah# +DIŠ +NA +ina +GEŠTU +MIN +šu₂ +MUD₂ +BABBAR +DU +ak +MUD₂ +ELLAG₂ +GU₄ +u +MUD₂ +giš +EREN# +1 +niš +HI +HI +ana +ŠA₃ +GEŠTU +MIN +šu₂ +BI +IZ +... +ana +ŠA₃ +GEŠTU +MIN +šu₂ +BI +IZ +A +giš +x +... +... +ana +ŠA₃ +GEŠTU +MIN +šu₂ +BI# +IZ# +A +giš +NU +UR₂ +MA# +ina +I₃ +giš +EREN +HI +HI +ana +ŠA₃ +GEŠTU +MIN +šu₂ +BI +IZ +kam +ka +ma# +ša₂ +kim +ṣi# +ANŠE +x +x +x +ša₂# +GU₂# +MURGU₂ +ANŠE +ina +I₃ +giš +EREN +HI +HI +sig₂ +AKA₃ +NIGIN +mi# +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +I₃ +šim +BULUH +šim# +LI# +ZI₂ +BIL +ZA +ZA +ana +ŠA₃ +GEŠTU +MIN +šu₂ +BI +IZ +... +x +an +ni +šu₂ +ina +I₃ +KUR +GI +mušen +HI +HI +ana +GEŠTU +MIN +šu₂ +BI +IZ +... +x +ina +ZI₃ +KUM +HI +HI +ana +GEŠTU +MIN +šu₂ +GAR +x +x +x +tu +daq +qaq +ina +GI +SAG +KUD +ana +ŠA₃ +GEŠTU +MIN +šu₂ +MU₂ +ah +GAZI# +sar# +ki +ma +ŠE +SA +A +ta +qal₃ +lu +ina +GI +SAG +KUD +ana +ŠA₃ +GEŠTU +MIN +šu₂ +MU₂ +ah +x +x +x +giš +MI +PAR₃ +tur +ar₂ +SUD₂ +ana +ŠA₃# +GEŠTU# +MIN +šu₂ +MU₂ +ah +tu +ru +ʾ +a +x +as +si +lu +bu +x +x +x +tu# +pa +ṣa +A +šu₂ +ana +ŠA₃ +GEŠTU +MIN +šu₂ +BI +IZ# +kam₂# +ka +ma +ša₂ +kin₃ +ṣi +ANŠE +x +x +ša₂ +kal +lap +bi +1 +niš +HI +HI +ana +ŠA₃ +GEŠTU +MIN +šu₂# +GAR +an +ma +NAGA +SI +KUG +GAN +NITA₃# +u +MUNUS +sig₂ +AKA₃ +NIGIN +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +SUM +SIKIL +SAR# +tu +ha +sa +ana +ŠA₃ +GEŠTU# +MIN +šu +tu +na +tak +DIŠ +NA +GEŠTU +MIN +šu₂ +MUD₂ +BABBAR +i +ṣar +ru +ur +A +giš +NU +UR₂ +MA +ana +ŠA₃ +GEŠTU +MIN +šu₂ +BI +IZ +U₂# +BABBAR +SUD₂ +ina +GI +SAG +KUD +ŠA₃ +GEŠTU +MIN +šu₂ +MU₂ +ah +I₃ +giš +EREN +I₃ +šim +MUG? +GAMUN +sar +SUD₂ +ina +I₃ +NUN +HI +HI +sig₂ +AKA₃ +NIGIN +mi +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +: +GAMUN +GI₆ +šim +ŠEŠ +I₃ +KU₆ +U₂ +KUR +RA +1 +niš +HI +HI +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +ZI₂ +ŠAH +ina +ZI₃ +KUM +HI +HI +sig₂ +AKA₃ +NIGIN +mi +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an# +ŠIKA? +giš +NU +UR₂ +MA +HAD₂ +A +SUD₂ +ana +ŠA₃ +GEŠTU +MIN +šu₂ +MU₂ +ah +x +x +giš +EREN +šim +x +x +BIL +ZA +ZA +tur +ar₂ +SUD₂ +ana +ŠA₃ +GEŠTU +MIN +šu₂ +MU₂ +I₃ +giš +ŠUR +MIN₃ +sig₂ +AKA₃ +SUD +ana? +ŠA₃? +GEŠTU? +MIN? +šu₂? +GAR? +U₂ +KUR +RA +LA +... +SUD₂ +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +KAŠ +ša +lu₂ +KURUN +U₂ +BABBAR +ta +bi +lam +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +IM +SAHAR +NA₄ +KUR +RA +SUD₂ +ana +ŠA₃ +GEŠTU +MIN +šu₂ +MU₂ +ah +PA +giš +bi +ni +PA +giš +U₃ +SUH₅# +ina# +NE +SAR? +... +x +... +I₃ +KUR +GI +mušen +... +x +GI₃#? +x +... +ZI₂ +BIL +ZA +ZA +... +GEŠTU +MIN# +šu₂ +GAR +an +... +giš +NU +UR₂ +MA +... +GAR +an +... +x +HAR +... +SAR +x +... +x +... +kam₂ +... +u₂ +... +DIŠ +GEŠTU +MIN +x +... +x +... +x +šim +GUR₂ +GUR₂ +... +A +giš +NU +UR₂ +MA +x +x +x +ar +ina +NE +giš +ŠINIG# +ta# +sa# +raq +ma +TI +DIŠ +KUG +GAN# +SUD₂ +ana +ŠA₃ +GEŠTU +MIN +šu₂ +ta +sa +raq +ma +TI +ana +KIMIN# +GAZI# +sar# +GIM# +ŠE# +SA# +A# +ta# +qal +lu# +SUD₂ +ina +ŠA₃ +GEŠTU +MIN +šu₂ +ta +sa +raq +ma +TI +DIŠ# +NA# +MUD₂# +BABBAR# +ina# +ŠA₃# +GEŠTU# +MIN# +šu₂# +DU# +ak# +A# +giš# +NU +UR₂ +MA +I₃ +GIŠ +BARA₂ +GA +I₃ +giš +EREN# +HI +HI +... +A +šim +BULUH +šim +LI +ZI₂ +BIL +ZA +ZA +SIG₇ +ana +ŠA₃ +GEŠTU +MIN +šu₂ +BI +IZ +ŠE +GI₆ +... +MUD₂ +NIM +1 +niš +HI +HI +ana +ŠA₃ +GEŠTU +MIN +šu₂ +BI +IZ +TI? +DIŠ +NA +ina +ŠA₃ +GEŠTU +šu₂ +lu +A +MEŠ +lu +MUD₂ +lu +MUD₂ +BABBAR +DU +ak +ŠA₃ +GEŠTU +MIN +šu₂ +ta +kap +par₂ +... +ina +GI# +SAG# +KUD +DUB +ŠA₃ +GEŠTU +MIN +šu₂ +LUH# +si# +GUR# +ma# +A +GEŠTIN +NA +BIL +LA₂ +ana +ŠA₃ +GEŠTU +MIN +šu₂ +BI +IZ +... +x +x +SUD₂ +ina +LAL₃ +HI +HI +ana +ŠA₃ +GEŠTU +MIN +šu₂ +DUB +sig₂ +AKA₃# +NIGIN +LAL₃ +KUR +U₂ +BABBAR +... +x +x +... +ana +KIMIN +NUMUN +u₂ +NU +LUH +HA +sig₂ +AKA₃ +NIGIN +mi +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +ana +KIMIN +NUMUN +šim +GUR₂ +GUR₂ +SUD₂ +sig₂ +AKA₃ +NIGIN +mi +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +ana +KIMIN +GAZI +sar +qa +lu +te +SUD₂ +sig₂ +AKA₃ +NIGIN +mi +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +DIŠ +NA +GEŠTU +ZAG +šu₂ +ina +KUM₂ +x +x +... +NA +BI +aš +rat +d +UTU +: +d +30 +KIN +ma +DUG₄ +GA +u +GIŠ +TUK +GAR +... +mun +eme +sal +li₃ +ina +I₃ +GIŠ +ŠUR +MIN₃ +I₃# +GIŠ# +šim# +GIG# +u# +x +... +I₃ +BUR? +el +lam +SAG +DU +šu₂ +ŠUB +di +... +UD +7 +KAM₂ +GUR +GUR +šum +ma +TI +DIŠ +NA +GEŠTU +GUB₃ +šu₂ +ina +KUM₂ +... +MIN? +NA +BI +aš +rat +d +nin +urta +KIN +ma +DUG₄ +GA +u +GIŠ +TUK +GAR +... +mun# +eme# +sal# +li₃# +I₃# +GIŠ# +... +I₃# +GIŠ# +šim# +GIG +SUD₂ +sig₂ +AKA₃ +NIGIN +mi +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +I₃ +BUR +el +lam +ana +SAG +DU +šu₂ +ŠUB +di# +... +šim +LI +... +x +... +UD +7 +KAM₂ +GUR +GUR# +šum# +ma# +TI +DIŠ +NA +GEŠTU +... +šu₂ +NA# +BI# +aš +rat +d +UTU +KIN +ma +DUG₄ +GA +u +GIŠ +TUK +GAR +... +ina +I₃# +GIŠ# +šim +LI +SUD₂ +sig₂ +AKA₃ +NIGIN +mi +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +I₃ +BUR +el +lam +ana +SAG +DU +šu₂ +ŠUB +di +sah +le₂ +e +ina +NINDA +ZIZ₂ +AM₃ +GU₇ +MIN +... +UD +7 +KAM₂ +GUR +GUR +šu₂ +ma +TI +DIŠ +... +NA +BI +aš +rat +d +... +KIN +ma +7 +ITI +ŠAG₅ +GA +IGI +mar +... +SUD₂ +sig₂ +AKA₃ +NIGIN +mi +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +I₃ +BUR +el +lam +ana +SAG +DU +šu₂ +ŠUB +di +... +UD +7 +KAM₂ +GUR +GUR +šum +ma +TI +uṭ +DIŠ +... +GIG +UD +DA +GIG +NA +BI +ZI +GA +... +x +SIG₅ +IGI +mar +ana +TI +šu₂ +... +I₃# +GIŠ +ŠUR +MIN₃ +ana +SAG +DU +šu₂ +ŠUB +di +... +UD +7 +KAM₂ +GUR +GUR +šum +ma +TI# +uṭ +DIŠ +NA +GEŠTU +MIN +šu +IR +ana +qer +bi# +nu +ip +hur +ma +... +x +x +... +... +UD +9# +KAM₂ +ESIR? +šu₂# +šum +... +... +x +I₃# +GIŠ# +šim# +GIG# +sig₂ +AKA₃ +NIGIN +mi +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +I₃ +... +ana +SAG +DU +šu +ŠUB +di# +bu# +uh₂# +ra# +x +GU₇ +MIN +... +KAŠ +NAG +MIN +UD +7 +KAM₂ +GUR +GUR +šum +ma +TI +DIŠ +NA +GEŠTU +ZAG +šu₂ +IR# +ana# +qer# +bi# +nu# +ip# +hur# +ma +x +x +x +x +x +x +x +NE +GAL₂ +šu₂ +NA +BI +aš +rat +d +x +KIN +ma# +SIG₅# +IGI# +mar# +ana +TI +šu₂ +GADA# +ta# +ṣap# +pir +I₃ +GIŠ# +ŠUR +MIN₃ +I₃ +GIŠ +EREN +SUD +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +... +ana# +SAG# +DU# +šu₂# +ŠUB# +an# +nu# +u?# +x?# +GU₇# +MIN# +u₂# +HAR# +HAR# +ina +KAŠ +NAG +MIN +UD +7 +KAM₂ +GUR# +GUR +šum +ma +TI +uṭ +DIŠ +NA +GEŠTU +GUB₃# +šu₂# +IR# +ana# +qer# +bi# +nu# +ip# +hur# +ma# +MUD₂# +BABBAR# +ŠUB +ni +NA +BI +aš +rat +d +EŠ₄ +DAR +KIN +ma +SIG₅ +IGI +mar# +... +x +x +x +ša?# +šu₂?# +hal +qam +IGI# +mar# +ana# +TI# +šu₂# +I₃# +GIŠ# +giš# +EREN# +I₃ +GIŠ +I₃ +GIŠ +giš +ŠUR +MIN₃ +I₃ +GIŠ +šim +BAL +I₃ +GIŠ +GI +DUG₃ +GA# +I₃ +GIŠ +šim +GIG# +sig₂# +HE₂# +ME# +DA# +SUD +ana# +ŠA₃# +GEŠTU# +šu₂ +GAR +I₃ +GIŠ +šim +GIG +ana +SAG +DU +šu₂ +ŠUB +bu# +uh₂# +ra +GU₇# +MIN +KAŠ +NAG# +MIN +UD# +7 +KAM₂ +GUR +GUR +šum +ma +TI +DIŠ +NA? +GEŠTU?# +šu₂# +GU₃# +GU₃ +si +IM +ha +sat +lu?# +MUD₂ +BABBAR +DU₃ +ni +aš +rat +d +nin +urta +KIN +ma# +... +A +giš +NU +UR₂ +MA +SIG₇# +SIG₇# +RA +su +I₃ +GIŠ +SUD +x +... +x +SUD₂# +ana# +SAG +KI +MEŠ +šu₂ +ŠUB +DUG₃ +IGI +mar +ana +KIMIN +MUN +SUD₂ +sig₂ +AKA₃ +NIGIN +I₃ +GIŠ +ŠUR +MIN₃ +SUD +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +I₃ +GIŠ +ŠUR +MIN₃ +ana +SAG +KI +MEŠ +šu₂ +ŠUB +bah +ra +GU₇ +u +NAG +UD +3 +KAM₂ +an +nam +DU₃ +uš +ma +DUG₃ +IGI +mar +ana +KIMIN +šim +LI +SUD₂ +sig₂ +AKA₃ +NIGIN +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +I₃ +ILLU +šim +BULUH +ana +SAG +KI +MEŠ +šu₂ +ŠUB +sah# +le₂# +e +KI +NINDA +ZIZ₂ +AM₃ +GU₇ +MEŠ +3 +u₄ +mi +an +nam +DU₃ +DU₃ +ma +DUG₃ +IGI +mar +ana +KIMIN +I₃# +giš +EREN +NA +SIG₂ +GA +RIG₂ +AK +A +SUD +ana# +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +... +... +ana +SAG +KI +MEŠ +šu₂ +ŠUB +ŠUB +ma +x +... +ana +KIMIN +I₃ +giš +EREN +I₃ +GIŠ +ŠUR +MIN₃ +SIG₂ +GA +RIG₂ +AK +A# +SUD +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +... +ana +SAG +KI +MEŠ +šu₂ +ŠUB +MEŠ +u₂ +HAR +HAR +GU₇ +u +NAG +UD +3 +KAM₂ +an +nam +DU₃ +uš +ma +DUG₃ +IGI +mar +DIŠ +NA +GEŠTU +ZAG +šu₂ +DUGUD +ŠUM +ŠIR +AŠ +sar +tu +pa +ṣa +ana +ŠA₃ +GEŠTU +šu₂ +GAR +an +PA +giš +ŠINIG +SIG₇ +su +SUD₂ +ina +ZI₃ +KUM₃ +HI +HI +ana +ŠA₃ +GEŠTU +šu₂ +GAR +an +giš +EREN +šim +LI +GAMUN +GI₆ +SUM +sar +SUD₂ +ina +I₃ +NUN +HI +HI +sig₂ +AKA₃ +SUD +ana +ŠA₃ +GEŠTU +šu₂ +GAR +an +I₃ +GIŠ +ŠUR +MIN₃ +sig₂ +AKA₃ +SUD +ana +ŠA₃ +GEŠTU +šu₂ +GAR +an +šim# +HAB +I₃ +ŠAH +PA +giš +MAŠ +HUŠ +SIG₂ +munus +AŠ₂ +GAR₃ +GIŠ₃ +NU +ZU +ta +sak₃ +sig₂ +AKA₃ +NIGIN +mi +ana +ŠA₃ +GEŠTU +šu₂ +GAR +an +I₃ +GIŠ +dup +ra +na +sig₂ +AKA₃ +SUD +ana +ŠA₃ +GEŠTU +šu₂ +GAR +an +MUD₂ +d +NIN +KILIM +EDEN +NA# +KI +I₃ +giš +EREN +I₃ +giš +ŠUR +MIN₃ +HI +HI +ana +ŠA₃ +GEŠTU +šu₂ +GAR +an +A +giš +NU +UR₂ +MA +AN +ZAH +GI₆ +tu +daq +qaq +... +ana +ŠA₃ +GEŠTU +šu₂ +GAR +an +BURU₅ +HABRUD +DA +NITA +SAG +DU +su?? +KUD +is +MUD₂ +MEŠ +KUM₂ +ana +ŠA₃ +GEŠTU +šu₂ +tu +na +tak +DIŠ +NA +GEŠTU +GUB₃ +šu₂ +DUGUD +šim +ŠEŠ +šim +GIG +SUD₂ +... +LAL₃# +KUR# +ina +I₃ +UDU +UR +MAH +... +EGIR +šu₂ +DILIM₂ +A +BAR +ina#? +I₃# +GIŠ# +x +... +I₃ +GIŠ +EREN +ŠE +MUŠ₅ +... +x +x +... +si +ik +ti +giš +šu +šum +... +U₂# +BABBAR +x +... +ha +si +sa +šu₂ +DAB +at +ZI₃ +... +x +GEŠTU +šu₂ +aš +gir₂ +... +x +x +ZI₃ +bu +ṭu +tu₂ +LAL +... +x +... +ana +ŠA₃ +GEŠTU +šu₂ +ŠUB +I₃ +GIŠ +ina +KA +ka +ana +ŠA₃ +GEŠTU +šu₂ +... +sar +tum +x +... +DUB +ak +kam₂ +ma +ša +AŠGAB +... +U₂ +BABBAR +x +x +ana +ŠA₃ +GEŠTU +šu₂ +MU₂ +ah +DIŠ +NA +GEŠTU +MIN +šu₂ +DUGUD +1 +GIN₂ +A +giš +NU +UR₂ +MA +1 +GIN₂ +A +šim +GIG +ina +sig₂ +AKA₃ +SUD +ana +ŠA₃ +GEŠTU +šu₂ +GAR +3 +u₄ +me +an +na +a +DU₃ +DU₃ +uš +ina +UD +4 +KAM₂ +: +2? +me? +ŠA₃? +GEŠTU +MIN +šu₂ +ta +kap +par₂ +IM +SAHAR +NA₄ +KUR +RA +SUD₂ +ina +gi +SAG +KUD +ana +ŠA₃ +GEŠTU +MIN +šu₂ +MU₂ +ah +giš +šu +ru +uš +giš +NAM +TAR +NITA₂ +... +x +x +... +x +šu₂ +ŠU +TI +SIG₇ +su +SUD₂ +A +šu₂ +x +... +neš +mu +šu₂ +BAD +te +šim +HAB +I₃ +ŠAH +KA +A +AB +BA +... +munus +AŠ₂ +GAR₃ +GIŠ₃ +NU +ZU +tur +ar₂ +SUD₂ +... +ana +ŠA₃ +GEŠTU# +MIN# +šu₂ +ŠUB +SUM +SIKIL +PA +giš +PEŠ₃ +... +ki +ma +an +nam +i +te +ep# +šu +ZAG +HI +LI +NINDA +ZIZ₂ +AN +NA +... +ina +KAŠ +NAG +ma +tug₂ +BAR +SI +x +... +tug₂ +DUL +šu₂ +x +DUB# +... +UD +3 +KAM₂ +SAR +SAR +ma +TI +... +ana +ŠA₃ +GEŠTU +MIN +šu₂ +ŠUB +di +... +ana +ŠA₃ +GEŠTU +MIN +šu₂ +ŠUB +di +... +ana +ŠA₃ +GEŠTU +MIN +šu₂ +ŠUB +di +... +HI +HI +ana +ŠA₃ +GEŠTU +MIN +šu₂ +tu +na +tak +... +x +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +... +ana +ŠA₃ +GEŠTU +MIN +šu₂ +tu +na +tak +... +ana +ŠA₃ +GEŠTU +MIN +šu₂ +ŠUB +... +x +x +DIŠ +NA +ZU₂ +MEŠ +šu₂ +GIG +MUŠ +DIM₂ +GURUN# +NA +ša₂ +EDIN +NA +U₅ +MEŠ +... +BABBAR +ša₂ +ŠA₃ +šu₂ +sig₂ +AKA₃ +NIGIN +mi +I₃ +x +... +SUHUŠ +giš +NAM +TAR +NITA₂ +SUHUŠ +u₂ +KUR# +RA +... +U₂ +BABBAR +ILLU +šim +BULUH +A +GEŠTIN +NA +... +u₂ +pu +un +tu₂ +ina +UGU +ZU₂ +šu₂ +GAR? +... +x +... +IM +SAHAR +NA₄ +KUR +RA +giš +x +x +... +šim# +BULUH +ZU₂ +LUM +MA +... +PA +u₂ +SIKIL# +x +... +u₂ +hi +nu? +... +IM +SAHAR +NA₄ +KUR +RA +... +x +... +x +... +... +x +... +... +... +... +... +... +... +... +x +x +šu₂? +... +šu +ru# +uš# +giš +x +... +x +KUM₂# +ik +kaṣ₃ +ṣi +... +ana +KIMIN +tu +maš +šad +ša₂ +ʾ +... +ana +KIMIN +ZI₃ +SAHAR +MUNU₆ +... +DUB +raq +... +DIŠ +NA +ZU₂ +šu₂ +GU₇ +... +ana +KIMIN +BIL +ZA +ZA +SIG₇ +ZI₂ +su? +... +ana +KIMIN +BIL +ZA +ZA +SIG₇ +ZI₂ +su? +... +ana +KIMIN +šim +x +... +2 +SILA₃# +x +... +x +... +... +GAR +an +... +GAR +an +... +GAR +an +... +x +ina +eš +... +DUB +raq +... +TIN +... +x +ina +ah +... +ina +ah +... +TI +... +TI? +... +TI? +... +TI? +... +LA +... +GABA +... +GAR +an +... +DUB +raq +... +GAR +an +... +DUB +raq +... +TI +... +x +x +... +DIŠ +NA +ZU₂# +šu₂ +... +NIGIN +I₃ +GIŠ +SUD +... +ana +KIMIN +ZI₃ +tur# +ar₂? +... +ana +KIMIN +MAŠ₂? +... +ana# +KIMIN# +x +... +ina#? +I₃#? +... +ana# +KIMIN# +... +ana# +KIMIN# +... +ina +ŠU +šu₂ +x +... +x +x +... +ana +KIMIN +sum +SAR +... +i +di +ka +... +iš +tu# +na# +ah? +... +ba +lit +ta₅ +I₃# +... +x +sig₂ +AKA₃ +šu +x +... +ana +KIMIN +MUŠ +DIM₂ +GURUN +NA +ša₂ +EDIN? +I₃ +UDU +šu₂ +... +na₄ +KA +GI +NA +... +ina +PAD +šu₂ +x +... +ana +KIMIN +tam +šil +GAZ +si +x +... +x +di +im +a +šar +na₄ +AD +BAR? +... +pu +ṣa +bur +ru +mat +ba +lit#? +ti? +ana +UGU +ZU₂# +šu₂ +GAR +an +... +GIM +A +ša +ana +UGU +ZU₂# +šu₂# +ŠUB +x +x +ta# +tab# +bal# +ma? +tam# +ši# +i# +EN# +TI# +NU# +MAR# +šu₂ +TI# +ana +KIMIN +šu +ru +uš +giš +NAM# +TAR# +NITA₂ +x +na# +ad# +da# +x +A# +ša₂# +ana +UGU +ZU₂ +šu₂ +GIG +ŠUB +ana +KIMIN +hu +um +bi +bi +tu₂ +tu +pa +ṣa +sig₂ +AKA₃# +NIGIN# +ina# +I₃# +SUD +ana +ŠA₃ +GEŠTU +šu₂ +ša₂ +ZU₂ +šu₂ +GIG +ŠUB +ana +KIMIN +u₂ +GAMUN +GE₆ +ta +sak₃ +ana +UGU +ZU₂ +šu₂ +GAR +an +ana +KIMIN +u₂ +KUR +KUR +ta +sak₃ +ana +UGU +ZU₂ +šu₂ +ŠEŠ₂ +EN₂# +d# +a# +nu# +ma# +d# +a# +nu +d +a +nu +pu +hur# +AN# +e# +d +a +nu +pu# +hur# +KI +ti +KI +tu₄ +ib +ta +ni +tul# +ta₅ +KI +tu₄ +ib +ta +ni +bu +ʾ +ša₂ +nu +ša₂ +bu +ʾ# +ša₂# +ni +KALAG +an +DAB +su +GIM +UR +MAH +nap +ša₂ +ta₅ +i# +ṣa? +bat? +ki +ma +UR +BAR +RA +i# +ṣa# +bat +lu +ʾ +a +iṣ +bat +ap +pu +nu +ru +ub +ap +pi? +UZU +MUR +ina +bi +rit +ZU₂ +MEŠ +na +da +at +giš +GU +ZA +šu₂ +sak +la +im +ti +ši +a +lak? +ta +šu₂ +up +pu +tu₂ +im +ti +ši +re +bit +ERI +šu₂ +me +tu₄ +la +i +sa +ha +ra# +iš? +tu +KI +ti₃ +d +ku₃ +bu +la +e +ni +qu# +UBUR# +ša₂ +AMA +šu₂ +bu +ša +a +nu +a +a# +GUR +ma +a +na +ṣib +ti +šu₂ +E₂ +GAL +x +x +... +ki +ma +mu +x +... +EN₂ +ul +... +EN₂# +d?# +... +i +na? +ma# +har +d +UTU +A +KUG +GA +ŠUB +ŠUB +EN₂ +an +ni +ta +3 +šu₂ +ŠID +nu +... +e# +ma +ŠID +u₂ +LAGAB +MUNU₆ +ZU₂ +šu₂ +DIRI +ma +ana +UGU +gul +gul +li +... +gul +gul +lu +GIG +ZU₂ +MU +tab +li +7 +šu₂ +DUG₃ +GA +ma? +TI? +EN₂ +ši +it +ta +ak +ru +ma +giš +IG +UZU +giš +SAG +KUL +GIR₃ +PAD +DU +iš +tu +a +a +nu# +x +x +x +x +GIR₃ +PAD +DU +UGU +ZU₂ +it +ta +bak +KUM₂ +: +UGU +SAG +DU +it +ta +bak +mur +ṣa +man# +na +lu +uš +pur +ana +IBILA +ša₂ +KUR +RA +d +AMAR +UTU +li +lap +pi +tu₄ +tul +ta₅ +tul# +tu₄ +ki +ma +šik +ke +e +lit +ta +ṣi +ṣer +ra +niš +TU₆ +EN₂ +DU₃ +DU₃ +BI +la +aš₂ +ha +ša₂ +IM +KI +GAR +DU₃ +ana +ŠID +MEŠ# +ZU₂# +MEŠ +šu₂ +aš₂ +na +an +tu +rat# +ta +KI +ZU₂ +šu₂# +GIG +ti +ZIZ₂ +AN +NA +GI₆ +ti +ret +ti +I₃ +GIŠ +ZU₂ +šu₂ +DIRI +ana +ŠA₃ +la +aš₂ +hi +MU₂ +ah +EN₂ +3 +šu₂ +ŠID +nu +ana +HABRUD +ša₂ +d +UTU +ŠU₂ +A +GAR +an +ina +IM +IN +BUBBU +UŠ₂ +hi# +ina +na₄ +KIŠIB +na₄ +ŠUBA +u +na₄ +KA +GI +NA +KA₂ +šu₂ +ta +bar +ram# +EN₂ +IBILA? +E₂ +MAH +IBILA +E₂ +MAH +IBILA +GAL +u +ša₂ +d +50 +at +ta +ma +TA? +E₂? +KUR? +tu? +ri# +dam +ma +ina +MURUB₄ +AN# +e +KI +mul# +MAR +GID₂ +DA +GUB +az +ma? +DUG₄? +GA? +ka +li +ik? +kal# +an +ni +li +is +ku +ta +at +ta +ma +x? +ina +... +x +ma +uzu +UR₅ +UŠ₂ +uzu +UR₅ +NU +NAG +GU₇ +TU₆ +EN₂ +DU₃ +DU₃ +BI +la? +aš₂? +ha? +DU₃ +uš# +ana +ŠID +MEŠ +ZU₂ +MEŠ +šu₂ +ZIZ₂ +AN +NA +tu +rat +ta +KI +ZU₂ +šu₂ +GIG +ti +aš₂ +na +an? +GI₆# +te +ret +ti +LAL₃# +u# +I₃# +BARA₂# +GA# +ZU₂ +šu₂ +DIRI +ana +ŠA₃ +la +aš +hi +MU₂ +ah +EN₂ +3 +šu₂ +ŠID +ana +HABRUD +d# +UTU +ŠU₂ +A +GAR +an +... +... +x +x +x +... +ru +... +tak +ku +... +mi +na +... +MAN +TAG +x +... +TA +NUMUN +x +... +a +na +ŠA₃ +ZU₂ +šu₂ +... +lup +pu +ut +ZU₂ +šu₂ +... +pa +šu₂ +an +na +x +... +na +ah +pi +i +: +AN +ŠU₂ +BAR +GIN₇ +kuš +A +EDIN +... +ka +inim +ma +ZU₂ +GIG# +... +EN₂ +ZU₂ +GIG +ZU₂ +GIG +... +GIG +ZU₂ +x +... +x +x +... +ka +inim +ma +... +ša₂ +na +... +EN₂ +x +x +x +x +... +giš +x +x +ha +x +... +i +x +iš? +hu +kal +... +i +x +iš +la +aš₂ +la? +... +ka +inim +ma +ZU₂ +GIG +GA# +KAM₂ +... +EN₂ +1#? +šu₂ +ana +UGU +šu₂ +ŠID +nu +... +EN₂ +d# +UTU +aš +šum +ZU₂ +MU +ša₂ +ik +kal +an +ni +... +ša₂ +ki +is +pa# +at# +la +ak +si +pu +šu +u₃ +me# +e# +la +aq +qu +šu₂ +... +ZU₂ +sa +hu +x +ka +a +ša₂ +am +hur +ka +ak +ta +la +šu₂ +u +ak +ta +ab +ba +x +... +GIM +a +ša₂ +šu₂ +ZU₂ +šu₂ +la +GU₇ +šu₂ +a +a +ši +ZU₂ +la +ik +kal +an +ni +TU₆ +EN₂ +ka +inim +ma +ZU₂ +GIG +GA# +KAM₂? +... +ina +še +rim +3# +šu₂ +ŠID +nu +... +EN₂ +TA +d +A +nim +ib +nu +u +AN +e +... +eri +du₁₀ +ib +nu +u +gi +x +... +ki +ma +mul +ni +bu +u₂ +x +... +ni +zi +iq +... +ka +inim +ma +ZU₂ +GIG +GA +KAM +... +ku +pa +tin +ni +tu +kap +pat +e +ma +ku +pa +tin +ni +EN₂ +ŠID +nu +... +ana +UGU +ZU₂ +GAR +ma +x +... +ina +eš +EN₂ +d +A +nu +x +... +iš +tu +d +a +nim +ib +nu +... +ul +tu +d +a +nu +ib +nu +u +an +e +an +u₂ +ib +nu +u +KI +tu +er +ṣe +tu +ib +nu +u +ID₂ +MEŠ +ib +na +a +a +tap +pa +ti +... +a +tap +pa +ti +ib# +na# +a?# +ru +šum +ta +ru +šum +ta +ib +na +a +tul +ta₅ +il +lik +tul +ta₅ +ana +IGI +d +UTU +i +bak +ki +ana +IGI +d +E₂ +a +il# +la# +ka?# +di# +ma# +ša₂# +mi +na +ta +da +na +ana +a +ka +li +ya +mi +na +a# +ta +da +na +ana +mun +zu +qi₂ +ya +at +tan +na +ki +giš +PEŠ₃ +ba +ši +il +ta +ar +ma +na +a# +giš +HAŠHUR +ana +ku +am +mi +na +an +na +a +giš +PEŠ₃ +ba +ši +il +ta +u +ar +ma +na +a# +giš +HAŠHUR +šu +uq +qa +an +ni +ma +in +bi +rit +ZU₂ +u +la +aš₂ +hi +šu +ši +ban +ni +ša₂ +ši +in +ni +ma +lu +un +zu +qa +da +mi +šu₂ +u +ša₂ +la +aš₂ +hi +ma +lu +uk +su +sa +ku +sa +si +šu₂ +ka +inim +ma +ZU₂ +GIG +GA +KAM₂ +DU₃ +DU₃ +BI +KAŠ +DIDA +LAGAB +MUNU₆ +1 +niš +HI +HI? +EN₂? +3 +šu₂ +ana +UGU +ŠID +nu +ana +UGU +ZU₂ +šu₂ +GAR +an +EN₂# +a# +ri# +ki# +x +ni +ba +ri +qi₂ +giš +IG +UZU +giš +SAG +KUL +GIR₃ +PAD +DU +ana +UZU +e# +ru +ba +GIR₃ +PAD +DU +iš +ši +iš +šu +uk +UZU +ih +pi +GIR₃ +PAD +DU +a +na +ZU₂ +MEŠ +it +ta +di +LIL₂?# +ta# +ana +SAG +DU +it +ta +di +KUM₂# +man +nu +lu +uš +pur +a +na +d +asal# +lu₂# +hi# +DUMU +reš +ti +i +ša₂ +d +E₂ +a +lu +še +bi +lam +ma +šam +me +TI +LA# +EN₂ +TI +LA +la +na#? +a# +di? +... +TU₆ +ul +ya +at +tu +EN₂# +d +40 +u +d +asal +lu₂ +hi +ši +pat +d +da +mu +u# +d# +nin# +kar# +ra# +ak?# +d +gu +la +TI +LA +ma +NIG₂# +BA# +ki +li# +qi₂# +i# +TU₆ +EN₂ +ka +inim +ma +ZU₂ +GIG +GA +KAM₂ +DU₃# +DU₃# +BI +NU +SAR! +DIŠ +NA +gi +mer# +ZU₂ +MEŠ +šu₂ +i +na +aš₂ +: +DUB +1# +KAM₂ +DIŠ +NA +ZU₂ +MEŠ +šu₂ +GIG +E₂ +GAL +diš +AN +ŠAR₂ +DU₃ +A +20 +ŠU₂# +20# +KUR +AN +ŠAR₂ +ki +ša +d +AG# +u +d# +taš +me +tu₄ +GEŠTU +MIN +ra +pa +aš₂ +tu₄ +iš +ru +ku +uš +e +hu +uz +zu +IGI +MIN# +na +mir +tu₄ +ni# +siq +tup +šar +ru +ti +ša +ina +LUGAL +MEŠ +ni +a +lik +mah +ri +ya +mam₂ +ma +šip +ru# +šu# +a +tu +la +e +hu +uz +zu +bul +ṭi +TA +muh +hi +EN +UMBIN +liq +ti +BAR +MEŠ +ta# +hi +zu +nak +la +a +zu +gal +lu# +ut +d +nin +urta +u +d +gu +la +ma +la# +ba +aš₂ +mu +ina +tup +pa +a +ni +aš₂ +ṭur +as +niq +IGI +KAR₂ +ma +a +na +ta +mar +ti +ši +ta +as# +si +ya +qe₂ +reb +E₂ +GAL +ya +u₂ +kin +x +x +x +x +x +x +... +u₂# +IN₆# +UŠ₂# +u₂ +SIKIL +SIG₇ +su +nu# +tu# +has# +sa₃# +ina +x +... +5 +GIN₂ +ILLU +šim +BULUH +5 +GIN₂ +DUH +LAL₃ +ana +dug +BUR? +ZI +... +a +šar! +tar +ku +su +DU₈ +ar₂ +TA +DU₈ +ru +... +DIŠ +NA +I₃ +la +ta +ki +ŠEŠ₂ +ma +SAG +DU +su +gu +raš? +ta₅? +DIRI? +... +LUH +tu +bal +EGIR +šu₂ +u₂ +kul₂ +ba +na +HAD₂ +A +GAZ +... +DIŠ +KIMIN +u₂ +IGI +lim +SUD₂ +ina +... +DIŠ +KIMIN +u₂ +LAG +GA₂ +SUD₂ +ina +x +... +DIŠ +KIMIN +u₂ +TAL₂ +TAL₂# +x +x +... +DIŠ +NA +SAG +DU +su +... +UKUŠ₂# +HAB# +... +24392 ... +x +x +GE₆# +NIM# +SUD₂# +x +... +u₂# +GA# +RAŠ# +sar# +kuš# +E +SIR +SUMUN +DIŠ +niš +HAD₂ +A +tur +ar₂# +... +AN +NA +A +BAR₂ +AN +ZAH +DIŠ +niš +HI +HI +1 +šu₂ +2 +šu₂ +3# +šu₂ +... +DIŠ +KIMIN +IM +SAHAR +NA₄ +KUR +RA +u₂ +LAG +GA₂ +SUD₂ +ina +I₃ +giš +EREN +HI +HI +x +... +DIŠ +NA +ina +TUR +šu₂ +SAG +DU +su +še +bi +te +DIRI +ana +SIG₂ +BABBAR# +GE₆# +SAG# +DU +BURU₅# +HABRUD# +DA +mušen +... +IGIRA₂ +mušen +: +laq +laq +qa +lu +u +x +x +x +x +x +... +ina +IZI +ŠEG₆ +šal +gul +gul +la +šu₂ +nu +TI +qe₂ +ina +I₃# +... +EN₂ +sag +ki +en +na +7 +šu₂ +x +x +an# +x +x +x +x +... +EN₂ +sag +ki +en +na +ŠID +nu +x +x +x +... +DIŠ +KIMIN +SI +DARA₃ +MAŠ +TI +qe₂ +KI +GIR₃ +PAD# +DU# +x +x +... +ina +IZI +u₂ +šar₂ +rap +KI +I₃ +x +x +... +3 +UD +mi +SAG +DU +su +LAL₂ +ma# +... +DIŠ +KIMIN +u₂ +MA₂ +ERIŠ₄ +MA₂ +le +e +SAG +DU +ARGAB?# +mušen? +... +SAG +DU +BURU₅ +mušen +GE₆ +SAG +DU +BURU₅ +HABRUD +DA +mušen +SAG +DU +... +DIŠ +niš +tur +ar₂ +SUD₂ +ina +I₃ +GIŠ +DU₁₀ +GA +HI +HI +SAG +DU +su +SAR# +ab# +ma# +x +... +DIŠ +KIMIN +a +a +ar₂ +DINGIR +DAB +bat +ŠA₃ +šu₂ +BAD +ti +TUN₂ +šu₂ +x +šu₂ +u +x +x +... +2 +na +ŠA₃ +šu₂ +tu +tar +te +te +kip +ina +KI +ṣar# +hi +x +x +x +7 +UD +mi +x +... +ša₂ +ŠA₃ +šu₂ +TI +qe₂ +HAD₂ +A +tur +ar₂# +SUD₂ +ina +I₃ +GIŠ +DU₁₀ +GA +... +SAG +DU +su +SAR +ab +7 +UD +me +EŠ +MEŠ +LAL₂ +MEŠ +... +SIG₂# +BABBAR +GE₆ +EN +LAL₂ +uš +EN₂ +ki +a +am +ŠID +nu# +... +DIŠ +NA +IGI +MEŠ +šu₂ +LU₃ +LU₃ +LAL₃# +BABBAR +ina +I₃# +NUN +1 +niš +HE +HE +... +e# +nu +ma +IGI +MIN +šu₂ +bu +ur +ṣa +id +da +nag +ga +la +ŠU +GIDIM +MA +... +ana# +TI# +šu₂ +na₄ +KA +GI +NA +DAB +BA +na₄ +AN +NA +na₄ +AN +ZAH +GE₆ +... +na₄# +mu# +ṣa# +na₄ +ZALAG₂ +na₄ +ZA +GIN₃ +na₄ +ŠUBA +na₄ +BAL +URUDU +NITA +NA₄ +... +NUMUN +giš +ŠINIG +NUMUN +giš +MA +NU +NUMUN +aš₂ +li +NITA +na₄ +as₂ +har +... +ta +ša +pah +ina +I₃ +UDU +ELLAG₂ +GU₄ +GE₆ +GIN₇ +kam₂ +ma +ina +UGU +URUDU +SUD₂ +ma +... +DIŠ +KIMIN +NUMUN +giš +ŠINIG +NUMUN +giš +MA +NU +NUMUN +aš₂ +li# +NUMUN +... +NUMUN +šim +LI +GIN₇ +qu +ta +ri +IGI +MIN +šu₂ +u +SAG +KI +... +DIŠ +NA +ŠU +GIDIM +MA +DAB +su +ma +i +na +IGI +IGI +MIN +šu₂ +GIN₇ +nu +ri +x +... +lu +u +GIN₇ +... +x +x# +lu# +u +GIN₇ +UD₅ +GAR +GAR +an +NA +BI +ŠU? +GIDIM +MA +DAB +su +... +... +šim +LI +šim +GUR₂ +GUR₂ +x +... +... +1 +niš +SUD₂ +x +... +... +ILLU# +LI +DUR +... +... +d +ID₂ +... +... +x +... +... +MAR? +... +MAR +... +DIRI +... +MAR +... +x +x +x +x +... +ZU₂ +LUM +MA +... +DIŠ +KIMIN +giš +ŠINIG +... +EN₂ +ki +sa +di +x +... +a +da +pa +tu₄ +in +x# +... +KA +INIM +MA +IGI +MIN +a +pa +ti +IGI +MEŠ +a# +ša +ti +... +DU₃ +DU₃ +BI +7 +ŠE +ILLU +LI# +DUR +... +ina +GE₆ +ina +UR₃ +ana +IGI +MUL# +x +... +x +... +ina +še +ri₃ +la +am +d# +UTU# +E₃# +U₂# +HI +A +an +nu# +ti +... +x# +x# +ana +ŠA₃ +ŠUB +di +IGI +MIN +šu₂ +MAR +EGIR +šu₂ +DILIM₂ +A +BAR₂ +ul +DU₈ +ar₂ +IGI +MIN +šu₂ +tu +šam +har +ina +A +GAZI +sar +IGI +MIN +šu₂ +tu +ha +pap +... +te +qi₂ +it +IGI +MIN +ša +ŠU +GIDIM +MA +na₄ +mu +ṣa +NA₄ +... +na₄ +AN +ZAH +BABBAR +na₄ +AN +ZAH +GE₆ +KU₃ +GAN +PA +giš +NAM +TAR +NITA₂ +PA +... +PAP +11 +NA₄ +MEŠ +u +U₂ +HI +A +ŠEŠ +ana +A +ŠUB +di +ina +UL +tuš +bat +... +ana +I₃ +GIŠ +ŠUB +di +IGI +MIN +šu₂ +ŠEŠ₂ +aš +ana +KAŠ +ŠUB +di +ma +NAG# +ina# +GU₂ +šu₂ +ina? +KUŠ? +GAR +an +ma +SILIM# +im +an +na +nam +ina +ITI +1 +KAM₂ +UD +21 +KAM₂ +DU₃ +ma +i# +šal +lim# +DIŠ +KIMIN +NA₄ +SA₅ +ki +ma +bu +la +li +IGI +MIN +šu₂ +ŠEŠ₂ +aš +: +DIŠ +KIMIN +na₄ +mu +ṣa +am +KIMIN +DIŠ +KIMIN +na₄ +kut +pa +a +ina +I₃ +NUN +SUD₂ +KIMIN +: +DIŠ +KIMIN +na₄ +ZA +GIN₃ +KUR +RA +ina +I₃# +NUN +SUD₂ +KIMIN +DIŠ +KIMIN +na₄ +MUŠ +GIR₂ +KIMIN +: +DIŠ +KIMIN +šim +bi +zi +da₄ +ina +GA +munus +U₂# +ZUG₂ +SUD₂ +IGI +MIN +šu₂ +ŠEŠ₂ +aš +DIŠ +KIMIN +na₄ +ZU₂ +GE₆ +ina +I₃ +KUR +GI +SUD₂ +KIMIN +šim +GUR₂ +GUR₂ +mi +riq₂ +U₂ +a +ši +i +u₂ +KUR +RA +GAZI +sar +I₃ +UDU +GI +MEŠ +na₄ +KA +GI +NA +DAB +BA +na₄ +mu +ṣa +I₃ +GIŠ +MUŠEN# +HABRUD#? +LIBIR +RA +DUH +LAL₃ +11 +U₂ +HI +A +ŠEŠ +rib +ku +ša +ŠU +GIDIM# +MA# +IGI +MIN +šu₂ +MAR +MEŠ +ma +TI +... +x +ina# +9 +U₄ +KAM? +... +UDU# +SISKUR# +DU₃# +ma +UZU +šu +nu +... +UGU +ša +GIR₃ +PAD +DU +LUGUD₂ +DA +UDU# +x +... +GAMUN +GE₆ +A +giš +NU +UR₂ +MA +giš +x +... +1 +niš +HE +HE +ina +LAL₃ +I₃ +NUN +I₃ +GIŠ +EREN +SUD₂? +... +x +... +DIŠ +NA +IGI +MIN +šu₂ +la +ina +ṭa +la +NA +BI +UD +DA +TAB +BA# +1# +GIN₂# +U₅# +ARGAB# +mušen +1 +2 +GIN₂ +U₂ +BABBAR +IGI +4 +GAL₂ +LA +mun +eme +sal +li₃ +ina +LAL₃# +KUR +u +I₃ +NUN +SUD₂ +IGI +MIN +šu₂ +MAR +DIŠ# +NA# +di +gi +il +IGI +MIN +šu₂ +ma +a +ṭi +I₃ +UDU +MUŠ +GE₆# +u₂# +IN# +NU +UŠ +ZU₂ +LUM +MA? +giš +ŠINIG +I₃# +UDU +UR +MAH +ILLU +u₂ +ti +ia₂ +tu +UKUŠ₂# +LAGAB# +šim# +HAB# +NAGA# +SI# +U₂ +BABBAR +mun +eme +sal +li₃ +u₂# +GAMUN# +GE₆ +mal +ma +liš +ina +SAHAR +URUDU +ana +LAL₃ +KUR +RA +HE +HE +SUD₂ +MAR +ZA +NA +te +pu +uš +u₂ +ESI +NAGA +SI# +IGI +MIN +šu₂ +LUH +si +EGIR +šu₂ +IGI +MIN# +šu₂ +MAR +ma +UD? +x? +KAM₂? +x +... +x +ŠUB +EN +7 +šu₂ +MAR# +EGIR# +šu₂# +DILIM₂# +A# +BAR₂# +ul# +DU₈# +ar₂# +... +šim +LI +NAGA +SI# +NU +LUH +HA +sah +le₂ +e +... +ina +... +SILA₁₁ +aš +LAL +... +x +ma# +IGI +šu₂ +... +x +x +mun# +eme# +sal# +li₃# +... +x +SUD₂ +... +ka +la +UD +me +X +šu₂ +KEŠDA +u₂ +kal +... +IGI +MIN# +šu₂ +MAR +MEŠ +ma +TI +... +ŠU +d# +šul +pa +e₃ +a +d# +IŠKUR# +ra# +hi# +iṣ# +... +ŠU +d +15 +... +ina +NE +GAR +an +... +SUD₂? +MAR +MEŠ +ma +TI +... +x +mi +šum₄ +ma +la +i +na +aṭ +ṭa +la +ŠU +d +iš₈ +tar₂ +... +ina +LAL₃ +u +I₃ +NUN +SUD₂ +IGI +MIN +šu₂ +MAR +MEŠ +ma +TI +DIŠ +NA +ši +li? +IGI +MIN +šu₂ +... +x +x +x +x +x +NU +NA₂ +UGU# +mi +na +te +ši +na +DUGUD +I₃ +UDU +MUŠ# +GE₆ +ina +I₃ +NUN +LAL₃# +KUR +e +HE# +HE +te +qi₂ +DIŠ +NA +ši +li# +IGI# +MIN +šu₂ +šad +du +ma +KI +NA₂# +NU# +IL₂# +PA +giš +ŠE +NU₂ +A +PA +giš +PEŠ₃ +PA +giš +MI +PAR₃# +PA +GI +ZU₂ +LUM +MA +ina +A +ina +NININDU# +UŠ₂# +ker +ana +ŠA₃ +ŠUB +ŠUB +šu₂ +A +GAR +GAR +MAŠ +DA₃# +ŠURUN# +GU₄ +1 +niš +GAZ +SIM +KI +ZI₃ +ŠE +SA +A +HE +HE +ina +A# +GAZI# +sar +SILA₁₁ +aš +LAL +u₂ +ak +tam +ina +KAŠ +NAG +ma +TI +DIŠ +NA# +U₄# +DU₃# +A +BI +NU +IGI +DU₈ +GE₆ +DU₃ +A +BI +IGI +DU₈# +d# +30# +lu +ur +ma +a +DIŠ +NA# +U₄# +DU₃ +A +BI +IGI +DU₈ +GE₆ +DU₃ +A +BI +NU +IGI +DU₈# +d +30 +lu# +ur# +ma +a +DIŠ +NA +IGI# +MIN +šu₂ +si +lu +ur +ma +a +ma +ku +ut +ga +bi +di +ša +ANŠE +UZU +la +ba +ni +šu₂ +ina +ŠU# +SAR# +ta +šak +kak +ina +GU₂ +šu₂ +GAR +an +A +GUB₂ +BA +A +GIN +an +ina +še +ri₃ +tug₂ +ŠA₃ +HA +ana +IGI# +d# +UTU +LAL +aṣ +NIG₂ +NA +šim +LI +GAR +an +LU₂ +šu₂ +a +tu₂ +ina +ku +tal +tug₂ +ŠA₃ +HA +ana +IGI +d +UTU +tuš +za# +as# +su +MAŠ +MAŠ +7 +NINDA +IL₂ +ši +ša₂ +IGI +MIN +šu₂ +GIG +7 +NINDA +IL₂ +ši +ma +MAŠ +MAŠ? +ana +lu₂ +TU +RA +mu +uh +ra +nam +ra +i +ni +i +qab +bi +lu₂ +TU +RA +ana +MAŠ +MAŠ +mu +uh# +ra# +bal +ṣa +i +ni +i +qab +bi +DIŠ +NA +IGI +MIN +šu₂ +si +lu +ur +ma +a +ma +ku +ut +ga +bi +di +ta +har +ra +aṣ +... +MAŠ? +lu₂ +TUR +MEŠ +tu +pa +har +ma +ki +a +am +i +qab +bu +u +... +i# +qab +bu +u +I₃ +NUN +u +I₃ +GIŠ +SAG +1 +niš +HE +HE +IGI +MIN +šu₂ +MAR +MEŠ +DU₃ +DU₃ +BI +... +šu +a +tu +ŠU +BI +GIN₇ +NAM +EN₂ +... +še? +me +ma? +mu +uh₂ +ra +d +E₂ +a +liš +ma +a +d +E₂ +a +lim +hu +ra +... +a +mur +nam +ra +i +ni +a +mur +bal +ṣa +i +ni +TU₆ +EN₂ +DU₃ +DU₃ +BI +... +7#? +ŠU +SI +ha +še +e +TI +ma +EN₂ +an +ni +tu₂ +ŠID +nu +... +ina +giš +IG +ina +ŠU +šu₂ +GAR +ma +GU₇ +... +x +PA +ma +ku +ut +ga# +bi# +di# +e# +ma# +her +ṣi +ta +har +ra +aṣ +... +NUNDUM# +šu₂ +u₃# +... +ma# +ina# +eš# +... +x +GI +mi +na +ta? +... +x +x +x +... +PA +ŠE# +SA#? +A#? +... +DILIM₂ +A +BAR₂ +GIN₇ +NIG₂# +SILA₁₁ +GA₂? +GAR# +nu +šim +LI +šim +GUR₂ +GUR₂ +U₂# +... +GAZI +sar +NAGA +SI +ZA₃ +HI# +LI +U₂ +a +ši +i +PIŠ₁₀ +d +ID₂ +UH₂ +d +ID₂ +ESIR +... +I₃ +UDU +ELLAG₂ +GU₄# +1# +niš# +ta# +sak₃ +ana +ŠA₃ +A +BAR₂ +ŠUB +ma +ŠU +SI +MAR? +te +qi₂ +tu +ša +lim +tu +ša +ŠU +UM +ME +A +la +te +ek +ba +ri +GAZI +sar# +ZA₃# +HI +LI +u₂ +KUR +KUR +u₂ +MAŠ +TAB +BA +šim +GUR₂ +GUR₂ +DUH +LAL₃ +U₂ +KUR +RA +I₃ +UDU +šim +GIG +NUMUN +šim# +LI# +9# +U₂ +HI +A +rib +ku +ša +IGI +MIN +u₂ +KUR +RA +sah +le₂ +e +GAZI +sar +u₂ +NU +LUH +HA +u₂ +KUR +KUR +u₂ +MAŠ +TAB +BA +kam +mu +šim +GUR₂ +GUR₂ +u₂ +HAR +HAR +ina +DE₃ +ŠEG₆ +šal +ina +I₃ +GIŠ +u +DUH +LAL₃ +BABBAR +SUD₂ +9 +U₂ +HI +A +ša +nap +šal +ti +lu +ub +ki +u₂ +KUR +RA +u₂ +KUR +KUR +GAZI +sar +u₂ +MAŠ +TAB +BA +šim +SES +NUMUN +šim +LI +kam +mu +ša₂ +AŠGAB +7 +U₂ +HI +A +rib +ku +ša +IGI +MIN +ina +NE +ta +qal +lu +ina +I₃ +UDU +GAB +LAL₃ +u +I₃ +NUN +SUD₂ +IGI +MIN +šu₂ +MAR +na₄ +AN +ZAH +GE₆ +tuš +ku +na₄ +as +har +na₄ +mu +ṣa +NAGA +SI +šim +GUR₂ +GUR₂ +U₂ +BABBAR +ZA₃ +HI +LI +kam +mu +PIŠ₁₀ +d +ID₂ +I₃ +UDU +GU₄ +A +GAR₅ +DILIM₂ +A +BAR₂ +ŠU +lu₂# +A# +ZU# +AN +ZAH +GE₆ +PIŠ₁₀ +d +ID₂ +ku +up# +ra +... +u₂ +GAMUN +GE₆ +GAZI +sar +ZA₃ +HI +LI +... +I₃ +UDU +GU₄ +I₃ +UDU +GIR₃ +PAD +DU +... +it +qur +ti +IR#? +... +šim#? +GUR₂#? +GUR₂? +... +DIŠ +x +x +x +x +... +UD +ma +DU₃ +šu₂# +... +u₂ +ak +tam +SUD₂ +ina +KAŠ +ŠEG₆ +x +... +BABBAR +HI +sar +ta +sak₃ +LAL +giš +si +ha +giš +ar +ga +nu +... +I₃ +UDU +ELLAG₂# +SA₅ +ina +UD +DA +ŠUB +i# +na? +DILIM₂ +A +BAR₂ +SUD₂ +IGI +MIN +šu₂ +MAR +DIŠ +NA +IGI +MIN +šu₂ +GIG +ma +u₃ +DUL +šim +ŠE# +LI? +... +su +pa +la +SIG₇ +su +ina +A +MEŠ +LUH +si +LAL +id +GURUN +u₂ +UKUŠ₂ +LAGAB +U₂# +BABBAR +SUD₂ +... +IGI +MIN +šu₂ +te +qi₂ +DIŠ +NA +IGI +MIN +šu₂ +GIG +ma +UD +MEŠ +ma +ʾ +du +ti +NU +BAD +ina +KUM₂ +SAG +DU +su +SAR +ab +ina +UD +me +3 +šu₂ +NIG₂ +SILA₁₁ +GA₂ +tu +kaṣ₃ +ṣa +ina +I₃ +NUN +DILIM₂ +A +BAR₂ +ta +sak₃ +IGI +MIN +šu₂ +te? +qi₂? +ma? +ina? +eš? +DIŠ +NA +IGI +MIN +šu₂ +ta +bi +la₁₂ +GIG +SUM +SIKIL +la# +u₂ +haš +ša₂ +ina +KAŠ +NAG +I₃ +GIŠ +ana +ŠA₃ +IGI +MIN +šu₂ +MAR +ru +ma? +... +ZI₃ +NA₄ +ZU₂# +LUM# +MA# +tur# +ar₂# +SUD₂# +ina# +A# +GAZI# +sar# +ta# +la +aš +tu +kap +pat +la +a +am +pa? +tan? +u₂? +al? +lat? +BIL +ZA +ZA +SIG₇ +ta +ṣa +lip +ZI₂ +su# +ina +I₃# +NUN +HE +HE +IGI +MIN +šu₂ +te +qi₂ +5 +SILA₄!(KISAL) +ZI₃ +GU₂ +GAL +6 +SILA₄!(KISAL) +ZI₃ +GAZI +sar +5 +GIN₂ +ZA₃ +HI +LI# +ina +A +GAZI +sar +SILA₁₁ +aš +SAG +KI +šu₂ +IGI +MIN +šu₂ +LAL +EN₂? +... +x +x +i +ru +pu +e +gu +ma +... +e +li? +A?# +... +... +... +... +... +DIŠ +NA +IGI +MIN +šu₂ +MUD₂ +DIRI +ma +ur +ra +u +GE₆ +la +i +ṣal +lal +ma +... +šum₄ +ma +ŠA₃? +IGI?# +MIN?# +šu₂? +SA₅ +IGI +MIN +šu₂ +DUL +ma +GAZI +sar +tur +ar₂ +... +ŠURUN +UDU# +ina +GA +munus +U₂ +ZUG₂ +SILA₁₁ +aš +LAL +id +ina +še +ri₃ +DU₈ +šu₂ +ma +na₄ +as₃ +har +ina +I₃ +NUN +SUD₂ +IGI +MIN +šu₂ +MAR +... +SUHUŠ? +U₂# +ra# +pa# +di# +ina +GIR₂ +ZABAR +KUD +iṣ? +DUR +sig₂ +HE₂ +MED +u +SIG₂ +BABBAR# +NIGIN# +mi? +tara +kas₃# +SAG +KI +MEŠ +šu₂ +ki +lal₂ +tan? +... +... +E₃ +ma?# +IGI +MIN +šu₂ +te? +eq +qi₂ +DIŠ +NA +IGI +MIN +šu₂ +MUD₂ +šu +un +nu +ʾa +NUMUN +giš +NIG₂ +GAN₂# +GAN₂ +LAL₃ +KUR +RA +SAHAR +KU₃ +GI +HE +HE +... +1 +GIN₂ +U₅ +ARGAB +mušen +SA₉ +SILA₄!(KISAL) +U₂ +BABBAR# +IGI +6 +GAL₂ +LA +mun +eme +sal +li₃# +ina? +I₃ +NUN +SUD₂ +IGI +MIN +šu₂ +MAR +U₂ +BABBAR +ta +bi? +la₁₂ +ana# +ŠA₃# +IGI# +MIN# +šu₂# +MAR +ru +ŠIM +BI +SIG₇ +SIG₇ +ina +I₃# +NUN +... +ŠE₁₀ +EME +ŠID +ina +I₃# +UDU# +GIR₃? +PAD# +DU# +LUGUD₂# +DA +SUD₂ +la +pa +tan +... +5 +ŠE +U₂ +BABBAR +ina +I₃ +GIŠ +SUD₂ +IGI +MIN +šu₂ +MAR# +U₅ +ARGAB# +mušen +ina +I₃ +NUN +SUD₂ +IGI +MIN +šu₂ +MAR +DIŠ +NA +IGI +MIN +šu₂ +MUD₂ +DIRI +ŠIM +BI +SIG₇ +SIG₇# +ina# +I₃# +NUN# +SUD₂ +MAR +: +u₂# +IN# +NU# +UŠ# +u₂ +tar +muš₈ +mal +ma +liš +HE +HE +ina +I₃ +NUN +ni +kip +tu₄ +NITA₂ +u +MUNUS +SUD₂ +IGI +MIN +šu₂ +MAR +... +IGI +MIN +šu₂ +MAR? +... +ana +ŠA₃ +IGI +MIN +šu₂ +ta +zar# +ri +... +ZA₃ +HI +LI +sar# +U₂ +a +ši +i +... +x +ina +um +ma +tu +ina +A +GAZI +sar +LUH +... +ta +bi +la₁₂ +ta +ṭe +ep +pi +DIŠ +NA +... +x +u# +I₃# +GIŠ# +SUD₂# +te# +te# +ne₂ +eq +qi₂ +DIŠ +KIMIN +... +x +x +SUD₂ +MAR# +MEŠ# +DIŠ +KIMIN +... +U₂ +BABBAR +ta +bi +la₁₂ +ana# +ŠA₃# +IGI# +MIN# +šu₂# +MU₂# +ah +DIŠ +NA +IGI +MIN +šu₂ +GIG? +... +u₂ +EME +UR +GI₇ +u₂ +IN₆ +UŠ +ina +ZI₃ +KUM +HE +HE +ina +GEŠTIN +NAG?# +U₂ +BABBAR +... +na₄ +as +har +ina +I₃ +NUN +SUD₂ +te +qi₂# +DIŠ +NA +IGI +MIN +šu₂ +GIG +... +x +šu₂# +pa +na +pa +ni +GAR +an +tara +kas₂ +... +na₄ +as +har +ina +I₃ +NUN +SUD₂ +MAR +DIŠ +NA +IGI +MIN +šu₂ +šik +na +ša₂ +MUD₂ +šak +na +U₂ +BABBAR +U₅ +ARGAB +mušen +mun +eme +sal +li₃ +u₂ +KUR +RA +u₂ +KUR +KUR +šim +GUR₂ +GUR₂ +I₃ +UDU +šim +GIG +7 +U₂ +HI +A# +an +nu +ti +1 +niš +ta +mar +raq +ina +ZI₂ +UDU +NITA₂? +... +ina +A +GAZI +sar +ta +sa +pan +IGI +MIN +šu₂ +MAR +3 +GIN₂ +U₅ +ARGAB +mušen +SA₉ +GIN₂ +U₂ +BABBAR +ina +LAL₃ +KUR +RA +SUD₂ +IGI +MIN +šu₂ +MAR +an +nu +u +šam +mi +UD +20 +KAM₂ +EN₂ +ib +da +du +numun +... +ina +ki? +i# +ri +ba +la +ṭi +ba +la +ṭi +na +ap +ši +ir +ba +la +ṭi₃ +na# +ap +ši +ir +ba +ʾ +la +at +ina +it +ti +a +ma +lik +... +MUNUS? +NU# +U₃ +TU +ak# +la₂# +me# +ṣa +ma +a +du +TU₆ +EN₂ +KA +INIM +MA +IGI +MIN +šu₂ +MUD₂ +DIRI +MEŠ +DU₃ +DU₃ +BI +SUHUŠ +u₂ +HA +SAHAR +x +u₂ +ZA +GIN₃ +NA +tara +kas₂ +14 +KA +KEŠDA# +KEŠDA +e +ma +KEŠDA +EN₂ +ŠID +nu +ina +SAG# +KI +šu₂ +tara +kas₂ +EN₂ +hu +ha +hi +la +ba +ma +hu +ha +hi +la +ba +ma +u +A +GA +AŠ₂# +GA +TIL +LA +A +GA +AŠ₂ +GA +TIL +LA +TU₆# +EN₂# +KA +INIM +MA +DIŠ +NA +IGI +MIN +šu₂ +MUD₂# +DIRI# +MEŠ# +DU₃ +DU₃ +BI +na₄ +as₂ +har +ina +I₃ +NUN +SUD₂ +ana# +ŠA₃# +IGI# +MIN# +šu₂# +ŠUB# +EN₂ +igi +ti +la +a +ga +ti +la +geštu +kun₂ +na +a +ga +kun₂ +na +u₂# +hu# +ur# +sag# +gi# +na +ta +ša +hi +šur +ra +ta +kuš +ri +in +kuš +ri +in +ni +še +e# +ru +še +e +ra +e +kal +da +mu +da +ma +i +na +ṣab +SA +a +nu +SA +a +nu +u₂ +qa +an +na +an +ŠUB +di +d +gu +la +TU₆ +TI +LA +en# +qu +ti +ṣi +im +de +ti +li +qer +ri +bu +at +ti +taš +kun? +ba +laṭ +bu +ul +ṭi₂ +TU₆ +EN₂ +E₂ +NU +RU +KA +INIM +MA +DIŠ +NA +IGI +MIN +šu₂ +MUD₂ +DIRI +MEŠ +KID₃ +KID₃ +BI +3 +ŠE +NAGA +SI +3 +ŠE +ILLU +LI +TAR +3 +ŠE +ŠE₁₀ +EME +ŠID +1 +niš +SUD₂ +ina +GA +UD₅ +tara +bak +IGI +MIN +šu₂ +LAL# +DIŠ +NA +IGI +MIN +šu₂ +GIG +ma +MUD₂ +DIRI +šim +BULUH +HI +A +MUD₂ +ul +ta +ta +ni +ʾa +MUD₂ +ER₂ +ina +ŠA₃ +IGI +MIN +šu₂ +E₃# +a# +GISSU +d +LAMA +IGI +MIN +šu₂ +u₂ +na +kap +a +ši +tu +ana +GISSU +GUR +di +gal₉ +DUGUD +šu₂ +giš +ŠINIG +SIG₇# +su# +tu# +ha# +sa# +ina +A +GEŠTIN +NA +KALA +GA +tara +muk +ina +UL +tuš +bat +ina +A₂ +GU₂ +ZI +GA +ana +ŠA₃ +hu +li +ia +am +SUR +at +IM +SAHAR +BABBAR +KUR +RA +U₂ +BABBAR +mun +eme +sal +li₃ +I₃ +UDU +tuš +ka +a +u₂ +zi +ba +a +ILLU +URUDU +a +he +nu +u₂ +SUD₂ +mal₂ +ma +liš +TI +qe₂ +1 +niš +tuš +te +mid +ana +ŠA₃ +hu +li +ia# +am +ša +ta +aš₂ +hu +tu +DUB +ak +ina +I₃ +NUN +u +na₄ +ŠU +MIN₃ +SILA₁₁ +aš +ma +SAG +IGI +MIN +šu₂ +ina +ŠU +SI +BAD +te +ana +ŠA₃ +IGI +MIN +šu₂ +GAR +an +IGI +MIN +šu₂ +DUL +ma +u₂ +kal +IGI +MIN +šu₂ +ta +kar +ma +UD +9 +KAM* +an +na +a +DU₃ +MEŠ +DIŠ +KIMIN +šim +SES +U₂ +BABBAR +mun +eme +sal +li₃ +ina +MUD +ZABAR +ana +ŠA₃ +IGI +MIN +šu₂ +BUN₂ +DIŠ +NA +MIN +ILLU +URUDU +U₂ +BABBAR +SUD₂? +ina +MUD +ZABAR +ana +ŠA₃ +IGI +MIN +šu₂ +BUN₂ +DIŠ +NA +MIN +u₂ +ur₂ +ne₂ +e +U₂ +BABBAR +SUD₂ +ina# +MUD# +ZABAR +ana +ŠA₃ +IGI +MIN +šu₂ +BUN₂ +EN₂ +igi +bar +igi +bar +bar +igi +bar +ra +bar +bar +igi +huš +igi +huš +huš +igi +bar +ra +huš +huš +igi +bar +na₂ +a +igi +bar +da +a +igi +bar +hul +a +IGI +MIN +a +ba +tu +IGI +MIN +a +ša# +tu +... +šu +har +ra +te +IGI +MIN +GIN₇ +nik +si +UDU +NITA₂# +MUD₂# +še# +en# +a# +GIN₇ +A +MEŠ +ša₂ +a +gala +pe +e +a +la +pa +a +ŠUB +a +ki +ma +DUG +A +GEŠTIN +NA +ŠUB# +a# +ṣil +la +ina +be +ri +ši +na +pi +ti +iq +tu₄ +pat +qat +KU₄ +ub +d +GIR₃ +ina +be +ru +ši +na +it +ta +di +giš +GU +ZA +šu₂ +aš₂ +šum₂ +an +ni +tu +ina +ŠA₃ +an +ni +te +la +na +pa +še +EN₂ +ul +ia# +at# +tu# +un# +EN₂ +d +e +a +u +d +asal +lu₂ +hi +EN₂ +d +da +mu +u +d +gu +la +EN₂ +d +nin +girima₃ +be +let +šip +te +d +gu +la +TI +ma +NIG₂ +BA +ki +TI +TU₆ +EN₂ +KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +DU₃ +DU₃ +BI +an +nu +u₂# +ša# +SIG₂# +BABBAR# +DUR# +NU# +NU# +7# +KA# +KEŠDA# +KEŠDA# +e +ma +KEŠDA +EN₂ +ŠID +nu +ina +IGI +šu₂ +TI# +LA# +ti# +KEŠDA# +su# +EN₂ +igi +bar +igi +bar +bar +igi +bar +ra +bar +bar +igi +huš +igi +huš +igi +bar +ra +huš +huš +igi +bar +na₂ +a +igi +bar +da +a +igi +bar +hul +a +IGI +MIN +a +ba +a +tu +IGI# +MIN# +a# +ša +tu +IGI +MIN +ša +MUD +DIRI +a +ana +ku +... +x +50 +NA +50 +sa +niq +qa₂ +bu +u₂ +ša₂ +d +gu +la +2# +ma# +ši# +na# +ma +ah +ha +a +tu₄ +ina +be₂ +ru +ši +na +pa +rik +KUR +u₂# +man +na +lu +uš +pur +ana +DUMU +MUNUS +d +a +nim +ša₂ +AN +e +liš +ša₂ +ni? +tal +li +ši +na +na₄ +NIR₂ +DUG +MEŠ +ši +na +na₄ +ZA +GIN₃ +eb +bu +li +sa +pa +a +ni +A +MEŠ +A +AB +BA +ta +ma +ti +DAGAL +ti +ša +ha +riš +tu? +la? +u₂ +ri +du +a +na +lib₃ +bi +mu +suk +ka +tu +la +LUH +u +qa +te +ša₂ +lim +la +ni +im +ma? +li +ke +eṣ +ṣa +a +KUM₂ +ṣi +ri +ih +tu +ša₂ +ŠA₃ +IGI +MIN +šu₂ +EN₂ +ul +ia +at +tu +un +EN₂ +d +40 +u +d +asal +lu₂ +hi +EN₂# +d# +da# +mu +u +d +gu +la +EN₂ +d +nin +girima₃ +be +let +šip +te +d# +gu# +la# +TI# +LA +ma +NIG₂ +BA +ki? +TI +i# +TU₆# +EN₂# +KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +DU₃ +DU₃ +BI +an +nu +u₂ +ša +SIG₂ +SA₅ +DUR +NU +NU +7 +KA +KEŠDA +KEŠDA +e +ma +KEŠDA +EN₂ +ŠID +nu +ina +IGI +šu₂ +GIG +ti₃ +KEŠDA +EN₂ +igi +bar +igi +bar +bar +igi +bar +ra +bar +bar +igi +huš +igi +huš +huš +igi +bar +ra +huš +huš +igi +bar +na₂ +a +igi +bar +da +a +igi +bar +hul +a +IGI +MIN +a +pa +tu +IGI +MIN +a +ša +tu +IGI# +MIN# +pur# +sit₂# +MUD₂# +šu +te +eṣ +li +pa +a +tu +am +min₃ +tab +ba +a# +am# +min₃# +taš# +ša₂# +a# +am +mi₃ +ni +ik +kal +ki +na +ši +ba +a +ṣu +ša +na +a +ri +tal +tal +lu +u₂ +ša₂ +giš +GIŠIMMAR +ša₂ +ti +it +tu +ni +iq +qa +ša₂ +ša₂ +a +ri +i +IN +NU +šu +al +si +ki +na +al +ka +ni +ul# +al# +si# +ki +na +ši +ul +ta +la +ka +ni +la +am +it +ba +ki# +na# +ši# +IM# +1# +IM# +2# +IM# +3# +IM +4 +EN₂ +KA +INIM +MA +IGI +GIG +GA +KAM₂ +DU₃ +DU₃ +BI +SIG₂ +SA₅ +SIG₂# +BABBAR +a +he +en +na +a +NU +NU +7# +u +7 +KA +KEŠDA +KEŠDA +e +ma +KEŠDA +EN₂ +ŠID +nu +DUR +SIG₂ +SA₅ +ina +IGI +šu₂# +GIG +ti₃ +KEŠDA +DUR +SIG₂ +BABBAR +ina +IGI +šu₂ +TI +LA +KEŠDA +ma +ina +eš +EN₂ +igi +bar +igi +bar +bar +igi +bar +ra +bar +bar +igi +hul +igi +hul +hul +igi +bar +ra +hul +hul +ši +it +ta +ši +na +DUMU +MUNUS +d +a +ni +ina +be# +ru +ši +na +pi +tiq +tu₄ +pat +qat +ul +il +lak +a +ha +tu +a +na +le +et +a# +ha +ti +ša₂ +man +na +lu +uš +pur +a +na +DUMU +MUNUS +d +a +ni₃ +ša₂ +AN# +e# +liš +ša₂ +ni +kan +ni +ši +na +na₄ +NIR₂ +DUG +MEŠ +ši +na +na₄ +ZA +GIN₃ +DURU₅ +eb +bu +li +is +sa +pa +ni +im +ma +li +be +la +a +IGI +MIN +a +ba +ti +IGI +MIN +a +ša₂ +ti# +u₃# +dal +ha +a +ti +TU₆# +EN₂ +KA# +INIM# +MA# +IGI +GIG +GA# +A# +KAM₂ +: +DU₃ +DU₃ +BI +ŠU +BI +GIN₇ +NAM# +EN₂ +igi +bar +igi +bar +bar +igi +bar +ra +bar +bar# +igi +suh₃ +igi +suh₃ +suh₃ +igi +bar +ra +suh₃ +suh₃ +ši +it +ta +i +nu +a +ha +tu +ši +na +ma +ina +be +ru +ši +na +KUR +u₂ +pa +rik +ma +UGU +nu +ši +na +ki +ṣir +tu +kaṣ₃# +rat# +KI +TA +nu +ši +na +pi +tiq +tu₂ +pat +qat +a +a +u₂ +IM +ši +na +a +ma +a +a +u₂ +NU +IM +ši# +na +ma +a +a +u₂ +IM +ti +bi +ši +na +a +a +u₂ +la +a +IM +ti +bi +ši +na +ma? +ša# +ar +pa +ni +i +kil₂ +pa +ni +ṣu +lu +um? +pa? +ni? +at? +ta +pu +ṭur +d +AMAR? +UTU +TU₆ +EN₂ +KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +: +DU₃ +DU₃ +BI +ŠU +BI +GIN₇ +NAM +EN₂ +igi +bar +igi +bar# +bar# +x +... +... +x +DU₃ +DU₃ +BI +... +a# +he# +en# +na# +a# +NU +NU +... +ina +SAG +KI +šu₂ +KEŠDA +su# +EN₂ +... +x? +IGI +NU +TUK +a +TU₆ +EN₂ +DU₃ +DU₃ +BI +... +ina +SAG +KI +šu₂ +ša₂ +ZAG +EN₂ +... +ta +ma +ad +ra +aš₂ +ta +ma +ad +ra +aš₂ +tu₆ +en₂ +DU₃ +DU₃ +BI +... +ina +SAG +KI +šu₂? +ša₂ +GUB₃ +KA +INIM +MA +IGI +GIG +GA +KAM₂ +DU₃ +DU₃ +BI +ŠU +BI +GIN₇ +NAM +EN₂ +... +gub +ba +a +gub +ba +a +d +AMAR +UTU +ip +pa +lis +su +ma +ana +d +e₂ +a +AD +šu₂? +i +ša₂ +as# +si +mi +na +a +e +pu +uš +ul +i +di +ša +ana +ku +i +du +u +at +ta +ti# +di# +TU₆ +EN₂ +DU₃ +DU₃ +BI +SIG₂ +SA₅ +SIG₂# +BABBAR# +1# +niš +NU +NU +7 +u +7 +KA +KEŠDA +KEŠDA +e +ma +KEŠDA +EN₂ +ŠID# +nu# +ina +SAG +KI +MEŠ +šu₂ +KEŠDA +ma +ina +eš +EN₂ +i +gi +ti +la +a +ga +ti +la +i +gi +kun₂ +na +a# +ga +kun₂# +na +: +ur +sag +gi +na +zu +gi +ban₃ +da +zu +tu₆ +en₂ +KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +: +DU₃ +DU₃ +BI +ŠU +BI +GIN₇ +NAM +EN₂ +pa +la +huš# +pa +la +huš +pa +la +huš +bi# +nig₂ +gi +na +bi +i +gi +pa +la +huš# +bi +tu₆ +en₂ +KA +INIM +MA +IGI# +GIG# +GA +A +KAM₂# +DU₃# +DU₃ +BI +ŠU# +BI +AŠ +AM₃ +EN₂ +i +ni +eṭ +li +GIG +at# +i# +ni +munus +KI +SIKIL +GIG +at +i +ni +GURUŠ +u +munus +KI +SIKIL +man +nu +u₂# +bal +liṭ +ta +šap +par₂ +i +le +qu +ni +ku +ŠA₃# +KU₃# +ti# +giš# +GIŠIMMAR# +ina# +pi# +i# +ka# +te# +he# +pi# +ina# +ŠU# +ka# +te# +pe# +til +GURUŠ +u +KI +SIKIL +ina +SAG +KI +MEŠ +šu₂ +nu +tu +ka +ṣar +IGI +GURUŠ +u +KI +SIKIL +i +bal +lu +uṭ +TU₆ +EN₂# +KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +DU₃ +DU₃ +BI +ŠU +BI +AŠ +BI +AM₃ +en₂ +an +na +im +ri +a +igi +lu₂ +ka +gig +ga +ba +an +gar +ina +ša₂ +me +e +ša₂ +a# +ru +i +zi +qam +ma +ina +i +in +LU₂ +si +im +me +iš +ta +kan +an# +ta +su₃ +da +ta +im +ri +a +igi +lu₂ +ka +gig +ga +ba +an +gar +: +iš +tu +AN +e +ru +qu +ti +igi# +gig# +ga +gig +ga +ba +an +gar +... +i# +ni +mar +ṣa +a +ti +si +im +ma +iš +ta +kan +lu₂ +bi +igi +bi +lu₃ +lu₃ +a +igi# +bi# +ba +an +suh₃# +suh₃ +ša₂ +LU₂ +šu +a# +tu₂# +i +da +šu₂ +da +al# +ha +ša₂ +i +na +šu₂ +a +ša₂ +a +lu₂# +u₁₈# +lu# +bi# +ni₂# +te# +a# +ni# +še₃# +er₂# +gig# +i₃# +šeš₂# +šeš₂# +LU₂ +šu +u₂ +ina +ra +ma +ni +šu₂ +mar +ṣi +iš +i +bak +ki +lu₂ +bi +tu +ra +a +ni +d +engur +ke₄ +igi# +im# +ma# +an? +si₃ +ša₂ +LU₂ +šu₂ +a +tu₄ +mu +ru +us +su +d +MIN +i# +mur# +ma# +gazi +sar +kum +ma₃ +šu# +u₃ +me +ti +ka +si +i +haš +lu +ti +le +qe₂ +ma +tu₆ +tu₆ +abzu +ta +u₃ +me +ni +si₃ +ši +pat +ap +si +i +i +di +ma +igi +lu₂ +ka +u₃ +me +ni +kešda +i +ni +a +me +li +ru +kus +ma +d +engur +lu₂ +šu +ku₃ +ga +na# +igi# +lu₂ +ba +ka +šu +tag +ga +ni +ta +d +MIN +ina +ŠU +ša₂ +KU₃ +ti +i +in +a +me +li₃ +ina +la +ba# +ti +ša₂ +im +igi +lu₂ +ka +su₃ +su₃ +igi +bi +ta +ba +ra +an +e₃ +ša₂ +a +ru₃ +ša₂ +i# +in +a +me +li₃ +ud +du +pu +ina +i +ni +šu₂ +lit +ta +ṣi +KA# +INIM +MA +IGI +GIG +GA +A# +KAM₂ +EN₂ +i +nu +a +pa +tu₂ +i +nu +a +ša₂ +tu₂ +i +nu +pur +si +in +di +da +a +mi +šu +har +ri +a +tu₄ +KU₃ +GAN +U₅ +ARGAB# +mušen# +I₃# +UDU +GIR₃ +PAD +DA +LUGUD₂ +DA +ša +UDU +... +SUD₂ +... +ŠIM +BI +KU₃ +GI +SUD₂ +ina +gi +SAG +KUD +ana +ŠA₃ +IGI +MIN +šu₂ +BUN₂ +kun# +ša₂₅ +SAG +DU +su +KEŠDA +10 +SILA₄!(KISAL) +I₃ +GIŠ# +SA₉# +SILA₄!(KISAL#) +x +... +ana +SAG +DU +šu₂ +DUB +ak +... +UD +3 +KAM@v +DU₃ +DU₃ +uš +ZA₃ +HI +LI +tur# +ar₂# +SUD₂ +... +x +DIŠ +NA +IGI +MIN +šu₂ +GIG +HENBUR₂ +ŠE +AM +SIG₇# +su# +NAGA +SI +SUD₂ +ina +A +GAZI +sar +SILA₁₁ +aš# +IGI +MIN +šu₂ +LAL +id +na₄ +as₃ +har +na₄ +tu +uš +ka# +a# +SUD₂ +ina +I₃ +UDU +tu +tah +ha +ah +mal +ma +liš +SUD₂ +ina +I₃ +NUN +HE +HE +IGI +MIN +šu₂ +MAR +DIŠ# +NA +IGI +MIN +šu₂ +GIG +10 +SILA₄!(KISAL) +I₃ +GIŠ +ana +SAG +KI +MEŠ +šu₂ +ŠUB +MEŠ +šu +uh +ta +ša +AŠGAB +ina +KUŠ +EDIN +te +ser +ina +SAG +KI +MEŠ +šu₂ +LAL +id +ILLU +URUDU +na₄ +aš₂ +har +ŠIM +BI +KU₃ +GI +SUD₂ +ina +I₃ +NUN +HE +HE +IGI +MIN +šu₂ +MAR +MEŠ# +ma? +TI? +DIŠ# +NA +IGI +MIN +šu₂ +GIG +ma +u +ha +an +ṭa +SAHAR +URUDU +ša +ŠEN +TUR +ina +I₃ +NUN +SUD₂ +IGI +MIN +šu₂ +MAR +GIR₂ +ZABAR +ina +A +LUH +si +SUM +sar +ta +sak₃ +1 +šu₂# +2 +šu₂ +3 +šu₂ +IGI +MIN +šu₂ +MAR +ZA₃ +HI +LI +ina +šur +šum +me +KAŠ +SILA₁₁ +aš +LAL +... +SAHAR +URUDU +ša +ŠEN# +TUR +tur +ar₂ +GAZ +ina +I₃ +NUN +SIG₅ +te +ta +sak₃ +UD +ma +DU₃ +šu₂ +... +IGI +MIN +šu₂ +te +qi₂ +... +ana +ŠA₃# +IGI +MIN +šu₂ +tu +na +tak₂ +u₂ +IN₆ +UŠ₂ +SUD₂ +LAL +... +ba +ri +ra +ta₅ +ina +GA +ta +la₃ +aš +LAL +... +ina +DILIM₂ +A +BAR₂ +SUD₂ +IGI +MIN +šu₂ +MAR +... +šim +ŠE# +LI +... +su +pa# +la# +SIG₇ +su +ina +A +MEŠ? +... +UKUŠ₂ +LAGAB +U₂ +BABBAR +x +... +te +qi₂?# +... +IGI +MIN +šu₂ +GIG +... +ma +ʾ +du +ti +NU +BAD +ina +KUM₂ +... +SAG +DU +su +SAR +ab +... +NIG₂ +SILA₁₁ +GA₂ +tu +kaṣ₃ +ṣa +... +ina +I₃# +NUN +DILIM₂ +A +BAR₂# +ta +sak₃ +IGI +MIN +šu₂ +te? +qi₂? +ma? +ina? +eš? +... +IGI +MIN +šu₂ +ta +bi +la₁₂ +GIG +SUM +SIKIL +la +u₂# +haš +ša₂ +ina +KAŠ +NAG +I₃ +GIŠ +ana +ŠA₃ +IGI# +MIN# +šu₂# +MAR +ru +ma? +... +... +NA₄ +ZU₂ +LUM +MA +tur +ar₂ +SUD₂ +ina +A +GAZI# +sar# +ta# +la +aš +tu +kap +pat +la +a +am +pa +tan# +u₂?# +al +lat? +BIL +ZA +ZA +SIG₇# +ta +ṣa +lip +ZI₂ +su# +ina# +I₃ +NUN +HE +HE +IGI +MIN +šu₂ +te# +qi₂# +... +GU₂ +GAL +6 +SILA₄!(KISAL) +ZI₃ +GAZI +sar +5 +GIN₂ +ZA₃ +HI +LI +ina +A# +GAZI# +sar# +SILA₁₁# +aš# +SAG# +KI# +šu₂# +IGI# +MIN# +šu₂# +LAL +EN₂ +x +x +x +x +x +lal +a +sar +NUMUN +U₂ +x +x +x +e +ru +pu +e +gu +ma +x +x +x +e# +li? +A +3 +šu₂ +DUG₄ +GA +DIŠ +NA +... +GAZI +sar +sah +le₂ +e +u₂ +MAŠ +TAB +I₃ +UDU +šim +GIG +NUMUN +šim +LI +kam +mu +... +ta +qal₃ +lu +ina +I₃ +NUN +I₃ +UDU +ELLAG₂ +UDU +NITA₂ +GAB +LAL₃ +tuš +tab +bal +IGI +MIN +šu₂ +MAR +DIŠ +NA +IGI +MIN +šu₂ +... +: +IGI +MIN +šu₂ +GIG +U₅ +ARGAB +mušen +ina +I₃ +NUN +SUD₂ +MAR +DIŠ +NA +IGI +MIN +šu₂# +GIG +... +: +DIŠ +NA +IGI# +MIN# +šu₂# +GIG# +sah# +le₂# +e +ina +GA +ŠEG₆ +šal +LAL +DIŠ +NA +IGI +MIN +šu₂ +MUD₂ +... +x +ri +šum₄ +ma +ŠA₃ +IGI +MIN +šu₂ +SA₅ +IGI +MIN +šu₂ +DUL +ma +... +munus +U₂# +ZUG₂ +SILA₁₁ +aš +LAL +id +ina +še +ri₃ +DU₈ +šu₂ +ma +... +ina +GIR₂ +ZABAR +KUD +iṣ? +DUR +sig₂ +HE₂ +MED +... +DIŠ +NA +IGI +MIN +šu₂ +MUD₂ +šu +un +nu +ʾa +... +1 +GIN₂ +U₅ +ARGAB +mušen +SA₉ +... +U₂ +BABBAR +ta +bi +la₁₂ +ana +ŠA₃ +IGI +MIN +šu₂ +... +ŠE₁₀ +EME +ŠID +ina +I₃ +UDU +GIR₃ +PAD +DU +LUGUD₂ +DA +... +5 +ŠE +U₂ +BABBAR +ina +I₃ +GIŠ +SUD₂ +IGI +MIN +šu₂ +MAR +... +DIŠ +NA +IGI +MIN +šu₂ +MUD₂ +DIRI +... +u₂ +IN₆ +UŠ₂ +u₂ +tar +muš +mal +ma +liš +... +NA₄ +BAL +ina +UH₂ +SUD₂ +MAR +: +šim? +bi? +zi? +da₄? +... +MUD₂ +ša +ŠA₃ +ŠAH +ana +ŠA₃ +IGI +MIN +šu₂ +tu +na +tak +... +3 +GIN₂ +U₅# +ARGAB +mušen +... +EN₂ +ib +da +gub +... +ina +ki +i +ri +ba +la +ṭi +ba +la +ṭi +na +ap +ši +ir +ba +la +ṭi₃# +na# +ap +ši +ir +ba +ʾ +la +at +ina +it +ti +... +MUNUS? +NU# +U₃ +TU +ak +la₂ +me +ṣa +ma +a# +du +TU₆ +EN₂ +KA +INIM +MA +IGI +MIN +šu₂ +MUD₂ +DIRI +MEŠ +DU₃ +DU₃ +BI +SUHUŠ +... +14 +KA +KEŠDA +KEŠDA +e +ma +KEŠDA +EN₂ +ŠID +nu +ina +SAG +KI +šu₂ +... +EN₂ +hu +ha +hi +la +ba +ma +hu +ha +hi +la +ba +ma +u +A +GA +AŠ₂ +GA +TIL +LA +A +GA +AŠ₂ +GA +TIL +LA +TU₆ +EN₂ +KA +INIM +MA +DIŠ +NA +IGI +MIN +šu₂ +MUD₂ +DIRI +MEŠ +DU₃ +DU₃ +BI +na₄ +as₂ +har +ina +I₃ +NUN +SUD₂? +ana +ŠA₃ +IGI +MIN +šu₂ +ŠUB +EN₂ +igi +ti +la +a +ga +ti +la +geštu +kun₂? +na +a +ga +kun₂ +na +u₂ +hu# +ur# +sag# +gi +na +ta +ša +hi +šur +ra +ta +kuš +ri +in +kuš +ri +in +ni +še +e +ru +še +e +ra +e +kal +da +mu +da +ma +i +na +ṣab +SA +a +nu +SA +a +nu +u₂ +qa +an +na +an +ŠUB +di +d +gu +la +TU₆ +TI# +LA +en +qu +ti +ṣi +im +de +ti +li +qer +ri# +bu +at +ti +taš +ku +ni +ba +laṭ +bu +ul +ṭi +TU₆ +EN₂ +E₂ +NU +RU +KA +INIM +MA +DIŠ +NA +IGI +MIN +šu₂ +MUD₂ +DIRI +MEŠ +KID₃ +KID₃ +BI +3 +ŠE +NAGA +SI +3 +ŠE +ILLU +LI +TAR +3# +ŠE# +ŠE₁₀# +EME# +ŠID# +1# +niš# +SUD₂# +ina# +GA# +UD₅# +tara +bak +IGI +MIN +šu₂ +LAL +DIŠ +NA +IGI +MIN# +šu₂ +GIG +ma +MUD₂ +DIRI +šim +BULUH +HI +A +MUD₂ +ul +ta +ta +ni +ʾa +MUD₂ +ER₂ +ina +ŠA₃ +IGI +MIN +šu₂ +E₃# +a +GISSU +d +LAMA# +IGI +MIN +šu₂ +u₂ +na +kap +a +ši +tu +ana +GISSU +GUR +di +gal₉ +DUGUD +šu₂ +giš +ŠINIG +SIG₇ +su +tu +ha +sa +ina +A +GEŠTIN +NA +KALA +GA +tara +muk +ina +UL +tuš +bat +ina +A₂ +GU₂ +ZI +GA +ana +ŠA₃ +hu +li +ia +am +SUR# +at +IM +SAHAR +BABBAR +KUR +RA +U₂ +BABBAR +mun +eme +sal +li₃ +I₃ +UDU +tuš +ka +a +u₂ +zi +ba +a +ILLU +URUDU# +a# +he# +nu +u₂ +SUD₂ +mal₂ +ma +liš +TI +qe₂ +1 +niš +tuš +te +mid +ana +ŠA₃ +hu +li +ia +am +ša +ta +aš₂ +hu +tu +DUB +ak +ina +I₃ +NUN +u +na₄ +ŠU +MIN₃# +SILA₁₁# +aš!(NU#) +ma# +SAG# +IGI +MIN +šu₂ +ina +ŠU +SI +BAD +te +ana +ŠA₃ +IGI +MIN +šu₂ +GAR +an +IGI +MIN +šu₂ +DUL +ma +u₂ +kal +IGI +MIN +šu₂ +ta +kar +ma# +UD# +9 +KAM₂ +an +na +a +DU₃ +MEŠ +DIŠ +KIMIN +šim# +SES +U₂ +BABBAR +mun +eme +sal +li₃ +ina +MUD +ZABAR +ana +ŠA₃ +IGI +MIN +šu₂ +BUN₂? +DIŠ +NA +MIN +ILLU +URUDU +U₂ +BABBAR +SUD₂ +ina +MUD +ZABAR# +ana +ŠA₃ +IGI +MIN +šu₂ +BUN₂ +DIŠ# +NA +MIN +u₂ +ur₂ +ne₂ +e +U₂ +BABBAR +SUD₂ +ina# +MUD# +ZABAR# +ana +ŠA₃ +IGI +MIN +šu₂ +BUN₂ +EN₂ +igi +bar +igi +bar +bar +igi +bar +ra +bar +bar +igi# +huš# +igi +huš +huš +igi +bar +ra +huš +huš +igi +bar +na₂# +a# +igi# +bar# +da# +a# +igi# +bar# +hul# +a +IGI +MIN +a +ba +tu +IGI +MIN +a +ša +tu +... +šu +har +ra +tu₂ +IGI +MIN +GIN₇ +nik +si +UDU +NITA₂ +MUD₂ +še +en +a +GIN₇ +A +MEŠ +ša₂ +a +gala +pe +e +a# +la +pa +a +ŠUB +a +ki +ma +DUG +A +GEŠTIN +NA +ŠUB +a +ṣil +la +ina +be +ri +ši +na +pi +ti +iq +tu₄ +pat +qat? +KU₄# +ub# +d +GIR₃ +ina +be +ru +ši +na +it +ta +di +giš +GU +ZA +šu₂ +aš₂ +šum₂ +an +ni +tu +ina +ŠA₃ +an +ni +te +la +na +pa +še +EN₂ +ul# +ia +at +tu₂ +un +EN₂ +d +e +a +u# +d +asal +lu₂ +hi +EN₂ +d +da +mu +u +d +gu +la +EN₂ +d +nin +girima₃ +be# +let# +EN₂ +d +gu +la +TI +LA +ma +NIG₂ +BA +ki +TI +TU₆ +EN₂ +KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +DU₃ +DU₃ +BI +an +nu +u +ša +SIG₂ +BABBAR +DUR +NU +NU +7 +KA +KEŠDA +KEŠDA +e +ma +KEŠDA +EN₂ +ŠID +nu +ina +IGI +šu₂ +TI# +LA +ti +KEŠDA +su +EN₂ +... +igi +huš +huš +igi +bar +ra +... +... +IGI +MIN +a +pa +tu₂ +IGI +MIN +a +ša₂ +tu₂ +IGI +MIN +ša +MUD +DIRI +a +ana +ku +... +sa +niq +qa₂ +bu +u₂ +ša₂ +d +gu +la +2 +ma +ši +na +ma +ah +ha +a +tu₄ +ina +be₂ +ru +ši +na +pa +rik +KUR +u₂ +man +na +lu +uš +pur +ana +DUMU +MUNUS +d +a +nim? +ša₂ +AN +e +liš +ša₂ +a +ni +tal +li +ši +na +na₄ +NIR₂ +DUG +MEŠ +ši +na +na₄ +ZA +GIN₃ +eb +bu +li +sa +pa +a +ni +A +MEŠ +A +AB +BA +tam +ti₃ +DAGAL +te +ša +ha +riš +tu +la +u₂ +ri +du +ana +lib₃ +bi +mu +suk +ka +tu₂ +la +LUH +u +qa +ti +ša₂ +lis +la +ni +im +ma +li# +ke +eṣ +ṣa +a +KUM₂ +ṣi +ri +ih +tu₂ +ša₂ +ŠA₃ +IGI +MIN +šu₂ +EN₂ +ul +ia +at +tu# +un +EN₂ +d +40 +u +d +asal +lu₂ +hi +EN₂ +d +da +mu +u +d +gu +la +EN₂ +d +nin +girima₃ +be +let +šip +te +d +gu +la +TI +LA +ma +NIG₂ +BA +ki +TI +i +TU₆ +EN₂ +KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +DU₃ +DU₃ +BI +an +nu +u +ša +SIG₂ +SA₅ +DUR +NU +NU +7 +KA +KEŠDA +KEŠDA +e +ma +KEŠDA# +EN₂# +ŠID +nu +ina +IGI +šu₂ +GIG +ti₃ +KEŠDA +EN₂ +igi +bar +igi +... +bar +ra +bar# +bar +igi +huš +igi +huš +huš# +igi +bar +ra +huš +huš +igi +bar +na₂ +a +... +igi +bar +hul +a +IGI +MIN +a +pa +tu +IGI +MIN +a +ša +tu +IGI +MIN +pur +sit₂ +MUD₂ +šu +te +eṣ +li +pa +a# +tu +am +min₃ +tab +ba +a +am# +min₃# +taš# +ša₂# +a# +am +mi₃ +ni +ik +kal +ki +na +ši +ba +a +ṣu +ša +na +a +ri +tal +tal +lu +u₂ +ša₂ +giš +GIŠIMMAR +ša₂ +ti +it +tu +ni +iq +qa +ša +ša₂ +a +ri +i +IN +NU +šu +al +si +ki +na +ši +al +ka +ni +ul +al +si +ki +na +ši +ul +ta +la +ka +ni +la +am +it +ba +ki +na +ši +IM +1 +IM +2 +IM +3 +IM +4 +EN₂ +KA +INIM +MA +IGI +GIG +GA +KAM₂ +DU₃ +DU₃ +BI +SIG₂ +SA₅ +SIG₂ +BABBAR +a +he +en +na +NU +NU +7 +u +7 +KA +KEŠDA +KEŠDA +e +ma +KEŠDA +EN₂ +ŠID +nu +DUR +SIG₂ +SA₅# +ina +IGI +šu₂ +GIG +ti₃ +KEŠDA +DUR +SIG₂ +BABBAR +ina +IGI +šu₂ +TI +LA +KEŠDA +ma +ina +eš +EN₂ +igi +bar +igi# +bar +bar +igi +bar +ra +bar# +bar +... +hul +hul# +igi# +bar +ra +... +ši +it +ta +ši# +na +DUMU +MUNUS +d# +a +ni +ina +be +ru +ši +na +pi +tiq +tu₄ +pat +qat +ul? +il +lak +a +ha +tu +a +na +le +et +a +ha +ti +ša₂? +man +na +lu +uš +pur +a# +na +DUMU +MUNUS +d +a +ni₃ +ša₂ +AN# +e# +liš +ša₂ +a +ni +kan +ni +ši +na +na₄ +NIR₂ +DUG +MEŠ +ši +na +na₄ +ZA +GIN₃ +DURU₅ +eb +bu +li +is +sa +pa +ni +im +ma +li +be +la +a +IGI +MIN +a +ba +tu₂ +IGI +MIN +a +ša₂ +ti +u₃# +dal +ha +a +ti +TU₆ +EN₂ +KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +DU₃ +DU₃ +BI +ŠU +BI +GIN₇ +NAM +EN₂ +igi +bar +igi +bar +bar +igi +bar +ra +bar +bar +igi +suh₃ +igi +suh₃ +suh₃ +igi +bar +ra +suh₃ +suh₃ +ši +it +ta +i +nu +a +ha +tu +ši +na +ma +ina +be +ru +ši +na +KUR +u₂# +pa +rik +ma +UGU +nu +ši +na +ki +ṣir +tu +kaṣ₃ +rat +KI +TA# +nu +ši +na +pi +tiq +tu₂ +pat +qat +a +a +u₂ +IM +ši +na +a +ma +a +a +u₂# +NU +IM +ši +na +ma +a +a +u₂ +IM +ti +bi +ši +na +a +a +u₂ +la +a# +IM +ti +bi +ši +na +ma? +KA +INIM +MA +IGI +GIG +GA +KAM₂? +DU₃ +DU₃ +BI +ŠU +BI +GIN₇ +NAM +EN₂ +... +gin₇? +a +a +lal +la +er₂ +gub +ba +a +gub +ba +a +d +AMAR +UTU +ip +pa +lis +su +ma +ana +d# +e₂ +a +AD# +šu₂ +i +ša₂ +as +si +mi +na +a +e +pu +uš +ul +i +di +ša +ana +ku +i +du +u?# +at +ta +ti +di +TU₆ +EN₂ +KA +INIM +MA +IGI +GIG +GA +KAM₂ +DU₃ +DU₃ +BI +SIG₂ +SA₅ +SIG₂ +BABBAR +1 +niš +NU +NU +7 +u +7 +KA +KEŠDA +KEŠDA +e +ma? +KEŠDA# +EN₂ +ŠID +nu +ina +SAG +KI +MEŠ +šu₂ +KEŠDA +ma +ina +eš +EN₂ +i +gi +ti +la +a +ga +ti +la +i +gi +kun₂ +na +a +ga +kun₂? +na +ur +sag +gi +na +zu +gi +ban₃ +da +zu +tu₆ +en₂ +KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +: +DU₃ +DU₃ +BI +ŠU +BI +GIN₇ +NAM +EN₂# +i +ni +GURUŠ +GIG# +at# +i# +ni# +munus# +KI# +SIKIL# +GIG +at +i +ni +GURUŠ +u +munus +KI +SIKIL +man +nu +u₂ +bal +liṭ +ta +šap +par₂ +i +le# +qu +ni +ku +ŠA₃ +KU₃ +ti +giš +GIŠIMMAR +ina +pi +i +ka +te +he +pi +ina +ŠU +ka +te +pe +til +GURUŠ +u +KI +SIKIL +ina# +SAG# +KI# +MEŠ# +šu₂ +nu +tu +ka +ṣar +IGI +GURUŠ +u +KI +SIKIL +i +bal +lu +uṭ +TU₆ +EN₂ +KA +INIM +MA# +IGI +GIG +GA +A +KAM₂ +DU₃ +DU₃ +BI +ŠU +BI +AŠ +AM₃ +en₂ +an +na +im# +ri +a +igi +lu₂ +ka +gig +ga +ba +an +gar +ina +ša₂ +me +e +ša₂ +a +ru +i +zi +qam +ma +ina +i +in +LU₂ +si +im +me +iš +ta +kan +an +ta +su₃# +da +ta +im +ri +a?(MIN?) +igi +lu₂ +ka +gig +ga +ba +an +gar +iš +tu +AN +e +ru +qu +ti +igi +gig +ga# +gig +ga +ba +an +gar +: +ana +i +ni +mar +ṣa +a +ti +si +im +me +iš +ta +kan +lu₂ +bi +igi +bi +lu₃ +lu₃ +a +: +ša₂ +LU₂ +šu +a +tu₂ +i +na +šu₂ +da +al +ha +igi +bi +ba# +an +suh₃# +suh₃ +: +i +na +šu₂ +a +ša₂ +a +lu₂ +u₁₈# +lu# +bi +ni₂ +te +a +ni +še₃ +er₂ +gig +i₃ +šeš₂ +šeš₂ +LU₂ +šu# +u₂ +ina +ra +ma +ni +šu₂ +mar +ṣi +iš +i +bak +ki +lu₂ +bi# +tu# +ra +a +ni +d +engur +ke₄ +igi +im# +ma +an +si₃ +: +ša₂ +LU₂ +šu₂ +a +tu₂ +mu +ru +us +su +d +MIN +i +mur +ma +gazi +sar# +gaz +ga₂ +šu +u₃ +me +ti +: +ka +si +i +haš +lu +ti +le +qe₂ +ma +tu₆# +tu₆# +abzu +ta +u +me +ni +si₃ +: +ši +pat +ap +si +i +i +di +ma +igi +lu₂ +ka +u₃ +me +ni +kešda +: +i +ni +a +me +li +ru +kus +ma +d +engur +lu₂ +šu +ku₃ +ga +na +igi +lu₂ +ba +ka +šu +tag +ga +ni +ta +d +MIN +ina +ŠU +ša₂ +KU₃ +ti +i +in +a +me +li₃ +ina +la +ba +ti +ša₂ +im +igi +lu₂ +ka +su₃ +su₃ +igi +bi +ta +ba +ra +an +e₃ +ša +a +ru +ša₂ +i +in +a +me +li₃ +ud +du +pu +ina +i +ni +šu₂ +lit +ta +ṣi +KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +EN₂ +i +nu +a +pa +tu₂ +i +nu +a +ša₂ +tu₂ +i +nu +pur +si +in +di +da +a?(MIN?) +mi +šu +har +ri +a +tu₄ +ši +na +i +bak +ka +a +ana +IGI +AMA +ši +na +d# +ma# +mi# +a +mi₃ +in +na +ši +ma +it +ti +ni +tar +ku +si +a +ša₂ +a +da +a +ma +u +ša₂ +a +ra +TU₆ +EN₂ +KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +DU₃ +DU₃ +BI +SIG₂ +SA₅ +SIG₂# +BABBAR# +a# +he# +en# +na# +a# +NU +NU +ina +MURUB₄ +šu₂ +nu +lip₂ +pa +tal₂ +pap +SIG₂ +SA₅ +ina +IGI +šu₂ +GIG +SIG₂ +BABBAR +ina +IGI +šu₂# +TI +KEŠDA +ma +ina +eš +EN₂ +še +la₂ +še +la₂ +hu +tu +ul +hu +tu +ul +igi +lal +hu# +tu +ul +min +igi +lal +bi +hu +tu +ul +min +ša +at +ti +pa +na +ŠE +GA +ša +at +ti +pa +na +ŠE +GA +i +ṭab₃ +ŠE +GA +MIN +TU₆ +EN₂ +KA +INIM +MA +DIŠ +NA +IGI +MIN +šu₂ +LU₃ +LU₃ +DU₃ +DU₃ +BI +bir +ki# +UDU# +TI# +qe₂# +x +x +u +DUR +NU +NU +ana +2 +šu₂ +te +eṣ +ṣi +ip +x +x +x +7 +u +7 +KA +KEŠDA +KEŠDA +e +ma +KEŠDA +EN₂? +ŠID +nu +ina +SAG +KI +šu₂ +KEŠDA +ma +ina +eš +EN₂ +at +ti +na +... +pur +si# +mi# +it# +MUD₂ +šu +har +ra +tu₂ +am +mi +ni +ta +aš +ša +ni +ha +ma# +ha +an +da +bi +lu? +šu +ur +šu +ra +e +lap? +pa +a +ša +ID₂ +ina +SILA +MEŠ +kir +ba +ni +ina +tub +kin₂ +na +a# +te +hu +ṣa +a +ba +am +mi +ni +taš +ša +ni +zu +un +na +ni +GIN₇ +MUL +mi +ta +qu +ta +ni +GIN₇ +nab +li +la +am +ik +šu +du +ki +na +ši +ṣur +ru +nag +la +bu +ša₂ +d +gu +la +EN₂ +NU +DU₈ +EN₂ +d +asal +lu₂ +hi +d +AMAR +UTU +EN₂ +d +nin +gi +rim +ma +EN +EN₂ +u +d +gu +la +EN# +A +ZU +ti +i +di +ma +ana +ku +aš₂ +ši +TU₆ +EN₂ +KA +INIM +MA +ha# +a# +mu +hu +ṣa +ba +u +mim₃ +ma +ša +IGI +MIN +šu +li +i +EN₂ +ina +šur +ri +i +la +am# +ba +ša +mu +a +la +lu +ur +da +ana +ma +ti +it +tu +u₂ +še +er +a +U₃ +TU +še +er +hu +hab +bur +ra# +hab +bur +ra +ka +an +na +ka# +an +nu +ki +iṣ +ra +ki +iṣ +ru +šu +bu +ul +ta +šu +bul +tu +me₂ +er +a +d +UTU +e +ṣi +id# +d +30 +u₂ +pa +har +d +UTU +ina +e +ṣe +di +šu₂ +d +30 +ina +pu +hu# +ri +šu₂ +ana +IGI +GURUŠ +me +er +hu +KU₄ +ub# +d +UTU +u +d +30 +i +ši +za +nim +ma +me₂ +er +hu +li +la +a# +ša₂ +ŠA₃!? +šu₂ +un# +KA +INIM +MA +me₂ +er +hu +ša# +ŠA₃ +IGI +MIN +šu!?# +li +i +DIŠ +NA +IGI +MIN +šu₂ +mur +din +ni +DIRI +sah +le₂ +e +ZI₃ +ŠE +SA +A +ina +KAŠ +tara +bak +LAL +id +x +x +x +x +x +ana?# +x +x +x +x +x +MEŠ# +x +x +x +x +x +x +x +x +x +x +x +x +x +DU₈? +U₃?# +KAM₂?# +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +u₂# +SIKIL +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +u₂# +NU# +LUH# +HA +BAR +mi +ki +i +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +PIŠ₁₀ +d +ID₂ +na₄ +mu +ṣa +x +x +x +x +x +x +x +na₄# +AN# +ZAH# +GE₆# +na₄# +ZALAG₂# +NA₄ +AN +BAR +na₄ +KA +GI +NA +DAB +BA +x +x +x +x +ŠA₃ +ŠUB# +di# +EN₂# +7 +šu₂ +ŠID# +nu +ma +SAG +KI +MEŠ +šu₂ +x +x +hu +up +pat# +IGI +MIN +šu₂ +ŠEŠ₂ +MEŠ +ma +SILIM +im +ina +ah +x +x +x +DAB +su +ma +SAG +KI +DAB +BA +TUKU +TUKU +ši +NA₄ +KUG +BABBAR +NA₄ +KUG +SIG₁₇# +na₄ +GUG +x +x +x +na₄ +MUŠ +GIR₂ +na₄ +SAG +DU +na₄ +NIR₂ +na₄ +BABBAR +DILI +na₄ +ZALAG₂ +na₄ +mu +ṣa +na₄ +AN +ZAH +na₄ +ŠUBA +na₄ +ZU₂# +GE₆ +na₄ +ŠU +U +NITA₂ +u +MUNUS +na₄ +SAG +GIL +MUD +na₄ +SAG +KI? +NA₄ +AN +BAR +na₄ +PA +ša₂ +7 +GUN₃ +MEŠ +ša₂ +na₄ +ia₂ +ni +bu# +na₄ +ka +pa +ṣu +NA₄ +DU₃ +A +BI? +an +nu +ti +ina +SIG₂ +munus +AŠ₂ +GAR₃ +GIŠ₃ +NU +ZU +SA +MAŠ# +DA₃ +u₂ +NINNI₅ +NITA₂ +NU +NU? +E₃ +ak +u₂ +tar# +muš# +u₂ +IGI +lim +u₂ +IGI +NIŠ +giš +MA? +NU +u₂ +DILI +u₂# +ap₂# +ru# +ša₂ +u₂ +ak +tam +u₂ +el# +kul +la +u₂ +KUR +KUR +x +x +x +lu +u₂ +x +x +u₂ +HAR +LUM +BA +ŠIR +u₂ +IN₆ +UŠ₂ +NUMUN +giš +ŠINIG +U₂ +DU₃? +A? +BI? +an# +nu +ti +e +ma +KEŠDA +ina +sig₂ +HE₂ +ME +DA +NIGIN# +mi +EN₂ +SAG +KI +MU# +UN +DAB +ŠID +nu +ma +ina +SAG +KI +šu₂ +KEŠDA# +su# +na₄ +aš +pu +u₂ +ša₂ +UD +SAKAR +kul +lu +mu +na₄ +MUŠ +GIR₂ +na₄# +SAG# +GIL# +MUD# +NA₄ +AN +BAR +ŠUB +AN +na₄# +SAG +DU +na₄ +SAG +KI +na₄ +ŠIM +BI +ZI +DA +na₄ +lu +lu +da# +ni# +tu₂ +na₄ +ŠUBA +SIG₇ +na₄# +ZA# +GIN₃# +na₄ +GUG +NA₄ +BAL +SA₅ +NA₄# +BAL +GE₆ +NA₄ +BAL +SIG₇ +na₄ +ar₂ +zal +la +NA₄ +MUŠ +SA₅ +na₄ +DUR₂ +MI +NA +na₄ +DUR₂ +MI +NA +BAN₃ +DA +na₄ +GI +RIM +HI +LI +BA +NA₄# +giš# +MES +na₄ +ŠURUN +d +GUD +na₄ +KA +GI +NA +DAB +BA +na₄ +BABBAR +DILI +na₄ +BABBAR +MIN₅ +NA₄# +DU₃# +A +BI +GAZ +SUD₂ +it +ti +nap +šal +ti +u +ṣi +in +di +ša# +SAG# +KI# +DAB# +HI# +HI# +SAG +KI +MEŠ +šu₂ +ŠEŠ₂ +MEŠ +LAL +id +NA₄ +DU₃ +A +BI +an +nu +ti# +KUG +SIG₁₇ +tu +haz +ina +SAG +KI +šu₂ +KEŠDA +su +SUHUŠ +giš +DIH₃ +ša₂ +UGU# +KI# +MAH# +SUHUŠ# +giš +KIŠI₁₆ +ša₂ +UGU +KI +MAH +SI +GUD +ša +ZAG +SI# +MAŠ₂ +ša +GUB₃ +NUMUN +giš +ŠINIG +NUMUN +giš +MA +NU +u₂ +A +ZAL +LA +7# +U₂ +HI +A +ṣi +in +di# +ša₂# +ŠU# +GIDIM +MA +SAG +KI +MEŠ +šu₂ +LAL +id +šim# +LI +šim +GUR₂ +GUR₂ +KA +A +AB# +BA# +PIŠ₁₀ +d +ID₂ +UH₂ +d +ID₂? +I₃# +UDU# +ELLAG₂# +UDU# +NITA₂?# +DUH# +LAL₃ +HI +HI +SAG +KI +MEŠ +šu₂ +LAL +... +x +giš +x +x +x +x +... +32716 x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +GIR₃# +PAD# +DU +NAM +LU₂ +U₁₈ +LU# +x +x +x +x +x +x +x +x +x +x +x +x +x +UR# +GI₇# +GE₆ +SIG₂ +SA +AD# +x +x +x +x +x +x +x +x +HI# +HI +ina +NE +SAR +šu₂ +ina +KUŠ +x +x +x +x +x +x +x +da +gan# +imin# +bi +d +utu +nam +tar +nam +tar +ra +x +x +x +nam +ba +luh# +u +me +luh# +nam +mu +un +da +MIN +bur₂ +ra +nam +mu +un +da +MIN +la₂ +e# +: +al +li +ma +da +ma +da +bi +d +en +ki +lugal# +abzu +ke₄# +: +d +asal +lu₂ +hi +dumu# +eridu +ki +ga +ke₄ +nam +mu +un +da +bur₂# +bur₂ +re# +: +zi +an +na +he₂ +pad₃ +zi +ki +a +he₂ +pad₃ +KA +INIM +MA +SAG +KI +DAB +BA +KAM₂ +DU₃ +DU₃ +BI +sig₂ +HE₂ +ME +DA# +SIG₂# +BABBAR# +SA# +MAŠ# +DA₃ +u₂ +NINNI₅ +NITA₂ +DIŠ +niš +NU +NU +7 +u +7 +KEŠDA +KEŠDA +u₂ +DILI +KA +A +AB# +BA +ni# +kip +ta₅ +PIŠ₁₀ +d +ID₂ +UH₂ +d +ID₂ +SUHUŠ +giš +NAM +TAR +NITA₂ +NUMUN +giš +ŠINIG +SI +DARA₃ +MAŠ +gul +gul# +NAM# +LU₂ +U₁₈ +LU +U₂ +HI +A +an +nu +ti +e +ma +KEŠDA +ina +SIG₂ +SA₅ +NIGIN +mi +EN₂ +7 +šu₂ +ŠID +nu +MUD₂ +giš +EREN# +TAG +at +ina +SAG +KI +šu₂ +tara +kas₂ +gul +gul +LU₂ +U₁₈ +LU +tur +ar₂ +SUD₂ +ina +I₃# +ŠEŠ₂# +su +ŠE₁₀ +ŠAH +ME +ZE₂ +ŠAH# +GIR₃ +PAD +DA +LUGUD₂ +DA +ŠAH +gul +gul +LU₂ +U₁₈# +LU +NAGA +SI +SI +DARA₃ +MAŠ# +u₂ +KUR +RA +u₂ +GAMUN +GE₆ +sah +le₂ +e +DIŠ +niš +GAZ# +ina +I₃ +UDU +GUD +LIBIR +RA +HI# +HI# +ina +NE +SAR +šu₂ +u₂ +an +ki +nu +ti +u₂ +eli +kul +la +KA +tam +ti₃# +ni# +kip +ta₅ +NUMUN +u₂ +GUR₅ +UŠ# +PIŠ₁₀ +d +ID₂ +na₄ +mu +ṣa +DIŠ +niš +SUD₂ +ina +I₃ +HI +HI +SAG +KI +MIN +šu₂ +KI +TA +UGU# +šu₂# +u +MURUB₄ +UGU +šu₂ +ŠEŠ₂ +ma +NA +BI +TI# +uṭ# +EN₂ +sag +ki +mu +un +ta +gig +dab +ba +sag +ki +mu +un# +ta +bi +gig +dab +ba# +sag +ki +hul +gig +sa +gig +dab +ba +zi +d +asal +lu₂ +hi +dumu# +eridu# +ki# +ga +ke₄ +zi +pad₃ +da +hun +ga₂ +TU₆# +EN₂# +DU₃ +DU₃ +BI +PA +giš +GIŠIMMAR +ša₂ +im +SI# +SA₂# +ša₂ +ina +NU +IM +i +nam +zu +zu +TI +qe₂# +7 +šu₂ +ana +15 +7 +šu₂ +ana +150 +ta +pat# +til +7 +u +7 +KEŠDA +KEŠDA +EN₂ +7 +šu₂ +ŠID# +nu# +ina# +SAG# +KI# +šu₂# +KEŠDA +EN₂ +sag# +ki# +mu# +un +dab +sag +si +sa₂ +mu +un +dab# +sag# +sahar?# +ra +mu +un +dab +mu +un +dab +mu +un +dab +dab +a +da +pa +abgal +eridu# +ki +ga +ke₄ +sag +ki# +mu# +un# +dab +sag +sahar +ra +mu +un +dab +TU₆# +EN₂# +E₂ +NU +RU +DU₃ +DU₃ +BI +sig₂ +HE₂ +ME +DA +NU +NU +7 +u +7! +KA +KEŠDA +KEŠDA +e# +ma +KEŠDA +na₄ +SAG +DU +E₃ +ak +EN₂ +7 +šu₂ +ŠID +nu +ina +SAG +KI +šu₂# +KEŠDA +EN₂ +a +ra +tu +e +a +ra +ba +tu +e +ti +la +x +x +šu +du₃ +du₃# +meš +šu +ne +ne +a +meš +eridu +ki +ga +mu +un +tum₂ +TU₆ +EN₂ +x +x +x +x +giš +GIŠIMMAR +ša₂ +im +SI +SA₂ +ša₂ +ina +NU +IM +i +nam +zu +zu +TI +qe₂ +7# +u# +x +x +x +EN₂ +7 +šu₂ +ŠID +nu +ina +SAG +KI +šu₂ +tara# +kas₂ +x +x +x +EN₂ +x +x +x +x +x +ri +ba# +ak# +ti +ti +e +na +x +x +x +hat# +ru +um +ma +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ku? +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +EN₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +EN₂ +... +33394 ina# +UGU# +GI# +DU₈ +x +x +x +x +x +x +x +x +x +x +x +x +x +GI +a +an +LU₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +3 +šu₂ +tu +šaq +ba# +šu₂# +ma +x +x +x +x +x +x +x +x +x +x +x +x +GIR₃ +PAD +DU +LU₂ +kup +ra# +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +MUD₂ +giš +EREN +I₃ +SUMUN +BARA₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +EN₂ +sag +ki +mu +un +dab +x +x +x +x +x +x +sag +sahar +ra +mu +un +dab +x +x +x +x +x +x +x +x +x +d +asal +lu₂ +hi +sag +giš +ra# +mu +un +dab? +mu +un +dab# +x +x +x +x +x +x +x +x +x +x +DU₃ +DU₃ +BI +na₄ +ZU₂ +GE₆ +x +x +NITA +u +MUNUS +na₄ +x +x +x +x +na₄ +ŠUBA +SIG₇ +x +x +x +ina +SAG +KI +šu₂# +tara +kas₂ +EN₂ +sag +ki +ni +sag +ki +he₂# +en +gi₄ +gi₄ +i +bi₂ +ni +i +bi₂ +he₂ +en +gi₄ +gi₄ +mu +ru +ub +bi +ni +mu +ru +ub +bi +he₂ +en +gi₄ +gi₄ +he₂ +bi +da +a +na# +mul# +la +he₂ +en +da# +a# +x +x +DU₃ +DU₃ +BI +u₂ +aš +lam# +NITA₂ +SA# +MAŠ +DA₃ +TEŠ₂ +BI +NU +NU +7 +u +7 +KA +KEŠDA +KEŠDA +e +ma +KA# +KEŠDA +EN₂ +ŠID +nu# +UB +PAD +NITA₂# +u +MUNUS +x +HUL₂# +A +ŠA₃ +DAL +DAL# +KI +KA +KEŠDA +ina +sig₂ +HE₂ +ME +DA# +NIGIN +mi +ina +SAG +KI +šu₂ +tara +kas₂ +EN₂ +id₂ +da +ta +tir +gal +gal +la +ta# +tir +si# +dara₃ +maš +mah +mah +mul₄ +mul₄ +giš +geštin +gir₂ +mu +un +kar +re# +giš +kiši₁₆# +i₃# +gu₇# +kal# +muš# +muš +šu +mu₂ +mu₂ +e +de₃ +mul +mul +kur +kur +ra# +sikil +e +du₈ +i₃ +ti +la +tu# +ra# +x +x +du₈ +nam +tag +ga +lu₂ +kar +ra +mu +un# +sa₄# +a +zag +du₈ +nig₂ +giš +gag# +ti +giš +kiri₆# +x +x +x +udug +hul +he₂ +bad +a +la₂ +hul +he₂ +bad +gidim# +hul# +he₂ +bad +gal₅ +la₂ +hul# +he₂# +bad# +dingir +hul +he₂ +bad +maškim₂ +hul +he₂ +bad +d +dim₁₀ +me +he₂ +bad +d +dim₁₀ +me +a +he₂ +bad +d +dim₁₀ +me +lagab +he₂ +bad +zi +an +na +he₂ +pad₃ +zi# +ki +a +he₂ +pad₃ +TU₆ +EN₂ +KA +INIM +MA +SAG# +KI +DAB +BA +KE₄ +DU₃ +DU₃ +BI +SIG₂ +SA₅ +SIG₂ +BABBAR +DIŠ +niš +NU +NU +na₄# +ZALAG₂?# +SI# +DARA₃# +MAŠ# +NA₄ +ZU₂ +LUM +MA +E₃ +7 +KA +KEŠDA +KEŠDA +e +ma +KEŠDA +EN₂ +ŠID +nu +ina +SAG +KI# +MIN# +šu₂# +tara +kas₂ +ma +AL +TI +EN₂ +sag +ki +dab +ba +sag +ki +dab +ba +sag +ki +dab +ba +nam +lu₂# +u₁₈ +lu +ke₄ +sag +ki +dab +ba +dingir +re +e +ne +ke₄ +sag +ki +dab +ba +tu# +ra +hun +ga₂ +ke₄# +sag +ki +dab +ba +nam +lu₂ +u₁₈ +lu +gar +ra +he₂ +en +hun# +ga₂# +TU₆ +EN₂ +EN₂ +sag +si +sa₂ +mu +un +dab +sag +sahar +ra +mu +un +dab +zag +gar +ra +sag +gar +ra +x +x +x +x +tu₆ +tu₆ +gar +ra +he₂ +en +hun +ga₂ +zi +an +he₂ +pad₃ +zi +ki +a +he₂ +pad₃# +TU₆ +EN₂ +2 +KA +INIM +MA +SAG +KI +DAB +BA +KAM +ina +UGU +tak +ṣi +ri +ša₂ +u₂ +LU₂ +U₁₈ +LU# +ŠID +nu +EN₂ +sag +ki +mu +ta +bi +gig +dab +ba +sag +ki +hul +dab +ba +sag +gig +hul# +dab +ba +zi +d +asal +lu₂ +hi +dumu +eridu +ki +ke₄ +zi +pad₃ +da +hun +ga₂ +TU₆ +EN₂ +KA +INIM +MA +SAG +KI +DAB# +BA +KAM# +EN₂ +an +ni +ta₅ +ina +UGU +nap +šal +ti +ina +UD# +HUL# +GAL₂# +e +7 +šu₂ +ŠID +nu# +ma# +SAG +KI +MIN +šu₂ +MURUB₄ +UGU +hi +šu₂ +KI# +TA +UGU +hi +šu₂ +TAG +TAG +ma +ina +ah +18 +KA +INIM +MA +SAG +KI +DAB +BA +KAM# +EN₂ +sag# +du +huš +sag +du +huš# +sag +du +huš +huš +sag +re +eš +sag +du +huš +lugal +d +asar# +alim +he₂ +til +lugal +d# +en# +ki +he₂ +til +lugal +d +asal +lu₂ +hi +he₂ +til +TU₆ +EN₂# +KA +INIM +MA +SAG +KI +DAB +BA +KAM# +DU₃ +DU₃ +BI +x +x +x +x +x +x +SIG₂ +BABBAR +NU +NU +7 +u +7 +KA +KEŠDA +KEŠDA +e +ma +KEŠDA +EN₂ +ŠID +nu +ina +SAG +DU +šu₂ +KEŠDA# +x +x +x +x +x +x +x +x +x +x +x +munus +aš₂ +gar₃ +giš₃ +nu +zu +šim +me +mu +un +zu +x +x +x +x +x +x +x +x +TU₆ +EN₂ +KA +INIM +MA +SAG +KI# +DAB +BA +KAM# +34171 x +x +x +x +x +x +x +na₄# +HAR# +LUM# +BA# +ŠIR# +SAR# +šu₂# +DIŠ +NA +SAG +KI# +150 +šu₂ +x +x +x +ina# +U₄ +9# +KAM +ša +iti +GU₄ +u₂# +IGI +lim +u₂ +IGI +NIŠ +u₂ +tar +muš +u₂ +eli +kul +la +u₂# +ha +šu +ta₅ +ša₂ +7 +SAG +DU# +MEŠ# +ša₂# +I₃ +SUMUN +E₂ +d +AMAR +UTU +ina +SA +AB₂ +RI +RI +GA +DU₃ +DU₃ +pi₂ +ina +GU₂ +šu₂ +GAR +an +na₄ +SAG +DU +ina +SAG +KI +šu₂ +KEŠDA +su +EN₂# +in +da +ri +ti +ra +ah +ŠID +nu +DIŠ +NA +GEŠTU +ZAG +šu₂ +TAG +su +IM +DIRI +at +u +MU₂ +MEŠ +U₄ +19 +KAM +: +U₄ +9 +KAM +ša +iti +NE +giš +NU +UR₂ +MA +KU₇ +KU₇ +ša₂ +ina +UGU +GIŠ +ša₂ +zaq +pat +A +MEŠ +ša₂ +ta +še +ṣa +aʾ +I₃ +DUG₃ +GA +ana +ŠA₃ +GEŠTU +šu₂ +ŠUB +I₃ +šim +BAL +ana +SAG +DU +šu₂ +ŠUB +sil₂ +qit +KUM₂ +GU₇ +MEŠ +DIŠ +NA +GEŠTU +GUB₃ +šu₂ +TAG +su +IM +DIRI +at +u +MU₂ +MEŠ +U₄ +15 +KAM +ša +iti +KIN +I₃ +UDU +KUR +GI +mušen +ŠEG₆ +šal +bah₃ +ru +us +su +ana +ŠA₃ +GEŠTU +MIN +šu₂ +ŠUB +UZU# +KUR +GI +mušen +ŠEG₆ +šal# +GU₇ +I₃# +giš +EREN +ana +SAG +DU +šu₂ +ŠUB +di +hi# +ib +ṣa +ina +sah +le₂ +e +GU₇ +DIŠ +NA +KIR₄ +ZAG +šu₂ +TAG +su +ina +U₄ +1 +KAM +ša +iti +SIG₄ +ŠU +SI +GUB₃ +šu₂ +GAL +7 +NE +GAR +an +MUŠ +DIM₂ +GURUN +NA +ša₂ +EDIN +U₅ +MEŠ +ina +UGU +KIR₄ +šu₂ +u₂ +hap +pa +ILLU +šim +BULUH +ana +GEŠTU +GUB₃ +šu₂ +GAR +an +DIŠ +NA +KIR₄ +GUB₃ +šu₂ +TAG +su +ina +U₄ +11 +KAM +ša +iti +ŠU# +SUM +sar +ina +UGU +u₂ +haš +ša₂ +tul +ta₅ +ša₂ +ŠA₃ +GI +ina +UGU +KIR₄ +šu₂ +u₂ +hap +pa +ŠU +SI +ZAG +šu₂ +7 +NE +GAR +an +ILLU +šim +BULUH +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +nap +ša₂ +la +tu₂ +tak# +ṣi +ra +nu +lat +ku +tu₄ +ba +ru +ti +ša₂ +ana +ŠU# +šu +ṣu₂ +u₂ +ša₂# +KA +ABGAL +MEŠ +e +la +bi +ru +ti +ša₂ +la +am +A +MA₂ +URU₅ +ša₂# +i +na +šuruppak +ki +MU +2 +KAM +m +d +EN +LIL₂# +ba +ni +LUGAL +uru +i₃ +ši +in +ki +m# +d +EN +LIL₂ +mu +bal +liṭ +ABGAL +NIBRU +ki +ez +bu +la# +mu +du +u +mu +da +a +li +kal +lim +mu +du +u +la +mu +da +a +la +u₂# +kal +lam +NIG₂ +GIG +d +AMAR +UTU +DIŠ +NA +SAG +DU +su +GIG +MEŠ +mat# +qu +ta₅? +TAB +UD +DA +DIRI +DUB# +3 +KAM₂ +MA +DIŠ +NA +UGU +šu₂ +KUM₂ +u₂ +kal +E₂ +GAL +m +AN +ŠAR₂ +DU₃ +A +MAN +ŠU₂ +MAN +KUR +AN +ŠAR₂ +ki +ša +d +AG +u +d +taš +me +tu₄ +GEŠTU +MIN +ra +pa +aš₂ +ta₅ +iš +ru +ku +uš +i +hu +uz +zu +IGI +MIN +na +mir +tu₄ +ni +siq +ṭup# +šar# +ru# +ti# +DIŠ +NA +UD +DA +KUR +id# +ZI# +SAG# +KI# +GIG +x +x +x +x +x +x +x +ru +uš +šu +ša# +sip?# +pi?# +ABUL?# +TI +qe₂# +KI# +x +x +x +x +x +x +x +DIŠ +NA +MIN +KUM₂ +TUKU +ana +TI +BI +u₂# +ap₂?# +ru# +šu₂# +ina +I₃?# +GIŠ +x +x +x +x +x +x +x +x +ta +sak₃ +ina +KAŠ +ŠEG₆# +šal# +ŠEŠ₂# +su +x +x +x +x +x +x +x +DIŠ +NA +MIN +NINDA +u +KAŠ# +NU +i +le# +em +ana +TI +BI +x +x +x +x +x +x +x +ILLU +a# +bu +kat₃ +KUR# +i +ta# +sak₃ +ina# +hi# +iq +KAŠ +x +x +x +x +x +x +x +x +x +x +DIŠ +NA +MIN +ku +ṣu₂ +hur# +ba# +šu₂ +ŠUB# +ŠUB# +su +x +x +x +x +x +x +x +x +x +x +x +ana +UDUN +lu₂ +se +pi +i +x +x +x +x +x +x +x +x +x +DIŠ +NA +MIN +KUM₂# +TUKU +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ŠEŠ₂ +su +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +NA +MIN +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +34876 ša# +ina +LUGAL +MEŠ +ni +a +lik +mah +ri +ia +mam₂ +ma +šip +ru +šu +a +tu +la +e +hu +uz +zu +bul# +ṭi# +TA +muh +hi +EN +UMBIN +liq +ti +BAR +MEŠ +ta +hi +zu +nak +la +a# +zu# +gal +lu +ut +d +nin +urta +u +d +gu +la +ma +la +ba +aš₂ +mu +ina +ṭup +pa +a +ni +aš₂ +ṭur +as +niq +IGI +KAR₂ +ma +a +na +ta +mar# +ti +ši +ta +si +ia +qe₂ +reb +E₂ +GAL +ia +u₂ +kin +u₂# +HAR# +HAR# +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ZI₃ +GIG +DIDA# +SIG₅ +x +x +x +x +x +x +x +x +x +x +x +x +šim +GUR₂ +GUR₂ +šim +LI +ni# +kip# +ta₅ +x +x +x +x +x +x +x +x +x +šim +ŠEŠ +ZI₃ +GIG +x +x +x +x +x +x +x +x +x +x +x +x +x +x +šim +GUR₂ +GUR₂ +šim +LI +šim +d +NIN +URTA +DIŠ +niš +GAZ +x +x +x +x +x +ina +KAŠ +ta +la₃ +aš +tu +ba +har +SAG +DU +su +x +x +x +x +x +šim +GUR₂ +GUR₂ +šim +LI +šim +d +NIN +URTA +NUMUN +u₂ +ka# +man +ti +x +x +x +x +x +x +DIŠ +niš +GAZ +SIM +ina +KAŠ +tara +bak +SAG +DU +su +x +x +x +x +x +PA# +giš +GIŠIMMAR +ša₂ +ina +NU +IM +i +nam +zu +zu +TI +qe₂ +ina +UD +DA +HAD₂ +A# +x +x +x +x +x +x +x +x +x +u₂ +ap₂ +ru +ša +SUD₂ +ina +I₃ +HI +HI +ILLU +giš +a +bu +ka +tu₂ +x +x +x +x +EN₂ +A +RA +ŠE +RA +A +RA +BA +ŠE +RA +IZI +BIL +LI +x +x +x +x +7 +šu₂ +u +7 +šu₂ +ana +ŠA₃ +ŠID +nu +SAG +KI +šu₂ +x +x +x +x +u₂ +KUR +KUR +ni +kip +ta +ina +NE +tu +qat +tar +šu₂ +šim +GUR₂ +GUR₂ +ni +kip +ta +x +x +NUMUN +u₂ +AB₂ +DUH +KA# +A# +AB +BA +šim +ŠEŠ +DIŠ +niš +SUD₂ +ina +IZI +x +x +x +x +x +x +na₄ +mu +ṣu₂ +šim +d# +MAŠ# +KA +A +AB +BA +UH₂# +d# +ID₂# +DIŠ +niš +SUD₂# +ina +sig₂# +HE₂ +ME +DA +NIGIN +I₃ +ŠEŠ₂ +x +x +x +x +KEŠDA +as +ni +kip? +ta? +x +x +x +x +... +TAG +TAG +... +x +x +x +... +x +x +I₃# +UDU# +ELLAG₂ +HI +HI +SAG +KI +šu₂ +TAG +10# +GIN₂ +ZA₃# +HI +LI# +sar# +10 +GIN₂ +ŠE +SA +A +ina +A +GAZI +sar +tara +bak +LAL +10 +GIN₂ +ZA₃ +HI# +LI +sar# +10# +GIN₂ +IM +BABBAR +10 +GIN₂ +ZI₃ +ŠE +SA +A +ina +A +GAZI +sar +tara +bak +LAL +TUKUM +BI +LU₂ +U₃ +SAG +KI +DAB +su +ru +ša +am +ša +SUHUŠ +giš +IG +ABUL +ina +a +ṣi +ka +ša₂ +ana +GUB₃ +ka +GUB +zu +ŠU +TI +SIG₂ +munus +AŠ₂ +GAR₃ +GIŠ₃ +NU +ZU +ina +sig₂# +HE₂ +ME +DA +KEŠDA +as₂ +ina +SAG +KI +šu₂ +KEŠDA +ma +NA +BI +TI +TUKUM +BI +LU₂ +U₃ +SAG +KI +DAB +su +PA +giš +GIŠIMMAR +ša +i +nam +zu +zu +TI +qe₂ +HAD₂ +A +GAZ# +SIM +ina +KAŠ +SILA₁₁ +aš +SAG +KI +šu₂ +LAL +ma +NA +BI +TI# +uṭ# +TUKUM +BI +LU₂ +U₃ +SAG +KI +DAB +su +PA +giš +GIŠIMMAR +ša +ina +zu +zu +TI +qe₂ +ina# +SAG +KI +šu₂ +tara +kas₂ +ma +NA +BI +TI +uṭ +TUKUM +BI +LU₂ +U₃ +SAG +KI +DAB +su +giš +DIH₃ +ša +ina +zu +zu +ŠU +TI +ina +sig₂ +AKA₃ +NIGIN +ina +sig₂ +HE₂ +ME +DA +tara +kas₂ +ina +SAG +KI +šu₂ +tara +kas₂ +NA +BI +TI +uṭ +TUKUM +BI +LU₂ +U₃ +SAG +KI +DAB +su +sig₂ +HE₂ +ME +DA# +MUNUS +ša₂ +MUD +AL +KUD +NU +NU +SA +MAŠ +DA₃ +u₂ +NINNI₅ +NITA₂ +KI +sig₂ +HE₂ +ME +DA +ta +pat +til +na₄ +NIR₂ +na₄ +MUŠ +GIR₂# +na₄# +BABBAR +DILI +na₄ +ZU₂ +GE₆ +KEŠDA +ina +SAG +KI +šu₂ +KEŠDA +NA +BI +TI +uṭ +TUKUM +BI +LU₂ +U₃ +SAG +KI +DAB +su +la +aš +hi +MUŠ +TAB +GIR₂ +TAB +sig₂ +HE₂ +ME +DA +u₂ +aš₂?# +lu# +NITA₂ +SA +MAŠ +DA₃ +DIŠ +niš +NU +NU +sig₂ +AKA₃ +NIGIN +ina +SAG +KI +šu₂ +tara +kas₂ +ma +NA +BI +TI +uṭ +TUKUM +BI +LU₂ +U₃ +SAG +KI +DAB +su +tug₂ +NIG₂ +DARA₂ +ŠU +LAL₂ +ina +DUR +sig₂ +AKA₃ +NIGIN +mi +ina +SAG +KI +šu₂ +KEŠDA +ma +NA +BI +TI +uṭ +DIŠ +LU₂ +ZI +SAG +KI +TUKU +u₃ +ri +mu +ta₅ +TUKU +PA +giš +ŠE +DU₃ +A +HAD₂# +DU# +GAZ +SIM +ZI₃ +ŠE +MUŠ₅ +sah +le₂ +e +ARA₃ +ti₃ +ZI₃ +ŠE +SA +A +DIŠ +niš +SUD₂ +ina +A +GAZI +sar +tara +bak +LAL +LAL +ma +TI +DIŠ +NA +ZI +SAG +KI +TUKU +u₃ +ri +mu +ta₅ +TUKU# +PA +giš +šu +nim +HAD₂ +A +GAZ +SIM +ina +ZI₃ +GIG# +sah +le₂ +e# +x +x +x +ina +A +GEŠTIN +NA +tara +bak +LAL +su +x +x +x +x +x +x +x +x +x +x +x +x +GAZ# +SIM# +šim +ŠEŠ +x +x +x +x +x +x +x +x +x +tara +bak# +LAL +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ZI₃ +GIG +sah +le₂ +e +x +x +x +x +x +x +x +x +x +x +TI +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +GI +gu +ur +GI +ŠUL +HI +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +KI +MAH# +GUB +zu +x +x +x +x +x +ŠEŠ₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +tara +bak +LAL +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +u₂ +SU +AN +DAR?# +ZI₃?# +35850 DIŠ +NA +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ZI₃ +ŠE +SA +A +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +NA +SAG +KI +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +giš +KIŠI₁₆ +HAB +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +NA +SAG +KI +GUB₃# +šu₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +u₂ +SU +AN +DAR# +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +NA +SAG +KI +MIN +šu₂ +ṣab +ta +šu₂ +ma +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +DUH +ŠE +GIŠ +I₃ +ša₂ +bu +lu +te +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +NA +SA +SAG +KI +ZAG +šu₂ +... +u₂ +SI +SA₂ +ZI₃ +GIG +... +DIŠ +NA +SA +SAG +KI +GUB₃ +šu₂ +... +u₂ +SI +SA₂ +... +DIŠ +NA +SA +SAG +KI +ZAG +šu₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +u₂ +EME +UR +GI₇ +ina +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +NA +SA +SAG +KI +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +NA +SA +SAG +KI +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +sah +le₂ +e# +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +NA +x +... +LAL +ma? +... +DIŠ +NA +... +DIŠ +... +36186 DIŠ# +KIMIN# +x +... +ZU₂ +LUM +SA₅# +x +... +DIŠ +NA +SA +SAG +KI +MIN +šu₂ +ZI? +... +u₂ +ŠAKIRA +u₂ +EME# +UR +GI₇# +u₂?# +... +U₂ +BABBAR +lu +ur +pa +na +: +IM +BABBAR +na₄ +NIG₂ +KALAG +GA +na₄ +as +har? +... +DIŠ +KIMIN +KU +KU +na₄ +AŠ₂ +GI₄ +GI₄ +... +DIŠ +KIMIN +PA +giš +ŠINIG +SIG₇ +su# +... +ana +ŠA₃ +na₄ +PEŠ₄ +tu +x +... +DIŠ +NA +ina +DAB +GIDIM +SAG +KI +šu₂ +... +SA# +IGI +MIN +šu₂ +u₂ +zaq +qa +su +... +na₄ +mu +ṣa +na₄ +x +... +NA₄ +AN +BAR +na₄ +... +EN₂ +ur +sag +d +asal +lu₂ +hi +... +DIŠ +NA +SAG +KI +šu₂ +DAB +su +ma +... +DIŠ? +niš? +SUD₂?# +... +x +x +x +x +u₂# +IGI# +lim# +u₂# +tar# +muš# +x +x +x +x +x +x +x +x +x +x +SIG₂# +BABBAR# +u₂ +NINNI₅# +NITA₂ +NU +NU +EN₂# +x +x +x +x +x +x +x +x +x +A +RI +A +NAM +LU₂ +U₁₈ +LU +SAG +KI# +šu₂# +x +x +x +x +x +ni +kip +ta₅ +DIŠ +niš +SUD₂ +ina +I₃ +giš +EREN +HI +HI +ŠEŠ₂ +MEŠ +ma +TI +DIŠ +NA +SAG +KI +DAB +BA +ma +SA +GU₂ +šu₂ +GU₇ +MEŠ +šu₂ +ŠU +GIDIM +MA +giš +si +hu +x +x +x +x +u₂ +ba +ri +ra +ta₅ +GI +ŠUL +HI +GAZ +SIM +ina +A +GAZI +sar +x +x +x +x +DIŠ +NA +SAG +KI +DAB +BA +ma +TA +d +UTU +ŠU₂ +A +EN +EN +NUN +UD +ZAL +LI +GU₇ +šu₂ +x +x +x +DIŠ +NA +SAG +KI +DAB +BA +ma +ŠA₃ +ŠA₃ +bi +GU₃ +GU₃ +si +ŠU +GIDIM +ša₂ +ne₂ +e +x +x +x +x +DIŠ +NA +SAG +KI +DAB +BA +ma +ma +gal +BURU₈ +KI +NA₂ +la +i# +na +aš +ši +UŠ₂ +DIŠ +NA +SAG +KI +DAB +BA +ma +ma +gal +x +x +x +SA +SAG +KI +šu₂ +ma +gal +te +bu +u₂# +x +x +x +x +x +x +an# +nu +tu₄ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +šum +ma +SAG +KI +DAB +BA +ŠU +GIDIM +MA +ina +SU +NA +il +ta +za +az +ma +NU +DU₈ +DUB# +2# +KAM₂# +DIŠ +NA +UGU +šu₂ +KUM₂ +u₂ +kal +E₂ +GAL +m +AN +ŠAR₂ +DU₃ +A +MAN +ŠU₂ +MAN +KUR +AN +ŠAR₂ +ki +ša +d +AG# +d# +taš# +me +tu₄ +GEŠTUG +MIN +DAGAL +tu₂ +iš +ru +ku +šu₂ +e +hu +uz +zu +IGI# +MIN# +na# +mir# +tu₄# +ni# +siq# +ṭup# +šar +ru +ti +ša +ina +LUGAL +MEŠ +ni +a +lik +mah +ri +ia +mam₂ +ma +šip# +ru# +šu₂ +a +tu +la! +e +hu +uz +zu +bul +ṭi +TA +muh +hi +a +di +UMBIN +liq +ti +BAR +MEŠ +ta +hi +zu +nak +la +a# +zu +gal +lu +ut +d +nin +urta +u# +d# +gu +la +ma +la +ba +aš₂ +mu +ina +ṭup +pa +a +ni +aš₂ +ṭur +as +niq +IGI +KAR₂ +ma +a +na +ta +mar +ti +ši +ta +si +ia +qe₂ +reb +E₂ +GAL +ia +u₂ +kin +DIŠ +NA +SAG +ŠA₃ +šu₂ +GU₇ +šu₂ +ina +ge +ši +šu +ZE₂ +im +ta +na +ʾa +NA +BI +qer +be₂ +na# +GIG +SUM +sar +GA +RAŠ +sar +UZU +GUD +UZU +ŠAH +KAŠ +lu₂ +KURUN₂ +NA +NU +uš +ta +mah +har# +ana +TI +šu₂ +1 +2 +SILA₃ +ZA₃ +HI +LI +1 +2 +SILA₃ +šim +LI +1 +2 +SILA₃ +šim +GUR₂ +GUR₂ +1 +2 +SILA₃ +NUMUN +GADA +1 +2 +SILA₃ +pa +pa +si +MUNU₆# +1 +2 +SILA₃ +šim +IM +DI +1 +2 +SILA₃ +NUMUN +u₂ +qut +ra +ti +1 +2 +SILA₃ +GAZI +sar +1 +2 +SILA₃ +giš +ŠE +NU +1 +2 +SILA₃ +GU₂ +NIG₂ +AR₃ +RA +1 +2 +SILA₃ +pa +pa# +si +d +ID₂ +1 +2 +SILA₃ +U₂ +a +ši +i +1 +2 +SILA₃ +u₂ +KUR +RA +1 +2 +SILA₃ +ŠE₁₀ +TU +mušen +1 +3 +SILA₃ +NUMUN +u₂ +AB₂ +DUH +1 +3# +SILA₃ +e# +reš +ti +A +ŠA₃ +10 +KISAL +ILLU +šim +BULUH +10 +KISAL +KA +A +AB +BA +1 +SILA₃ +ZI₃ +GIG +1 +SILA₃ +ZU₂ +LUM +MA +1 +SILA₃ +DIDA# +SIG +1# +SILA₃ +ZI₃ +KUM +TEŠ₂ +BI +GAZ +SIM +ina +KAŠ +GIM +ra +bi +ki +ta +rab +bak +ina +TUG₂ +HI +A +SUR +ri +šu +lu +uš +ti +9 +UD# +me# +LAL +ina +4 +UD +me +DU₈ +ma +ta +mar +šum₂ +ma +U₃ +BU₂ +BU₂ +UL +BABBAR +ŠA₃ +šu₂ +i +pa +šah# +šum₂ +ma +U₃ +BU₂ +BU₂ +UL +SA₅ +ŠA₃ +šu₂ +KUM₂ +u₂ +kal +šum₂ +ma +U₃ +BU₂ +BU₂ +UL +SIG₇ +UD +DA +KUR +id +GUR +GUR +šu +šum₂ +ma +U₃ +BU₂ +BU₂ +UL +GE₆ +u₂ +šam +ra +su +ma +NU +TI +ana +U₃ +BU₂ +BU₂ +UL +bu +le +e +u₂ +LAG +A +ŠA₃ +IM +GU₂ +ša₂ +UD +DA +SA₂ +kat₃ +GAZ +SIM +ina +A +GAZI +sar +ta +la +aš₂ +LAL +id +EGIR +šu₂ +sah +le₂ +e +ina +KAŠ +NAG +UD +ma +NAG +u₂ +ina +A +giš +šu +nu +giš +ŠINIG +u₂ +ak +tam +u₂ +IN₆ +UŠ₂ +ir +ta +na +haṣ +DIŠ +NA +ZE₂ +GIG +SUM +sar +SUD₂ +ina +A +NU +pa +tan +NAG +A +GEŠTIN +NA +KALAG +GA +AL +US₂ +SA +GAZI +sar +kab +ru +ti +NAG +KAŠ +BIR₈ +NAG +tu +ša₂ +ʾ +raš +šu₂ +GAZI +sar +SUD₂ +ina +A +NAG +: +MUN +SUD₂ +ina +A +NU +pa +tan +NAG +: +MUN +SUD₂ +ina +KAŠ +NU +pa +tan +NAG +ILLU +a +bu +kat₃ +GAZ +ana +ŠA₃! +KAŠ₃! +BIR₈ +ŠUB +di +ina +MUL₄ +tuš +bat +ina +še +ri₃ +LAL₃ +I₃ +hal +ṣa +ana +ŠA₃ +ŠUB +NAG +ma +i +ar₂ +ru +NUMUN +GI +ZU₂ +LUM +MA +SUD₂ +ina +KAŠ +NAG +: +u₂ +nam +ruq +qa +SUD₂ +ina +KAŠ +NAG +U₂ +DILI +U₂ +ZE₂ +ina +KAŠ +NAG +U₂ +me +er +gi +ra +nu +U₂ +ZE₂ +ina +KAŠ +NAG# +GAZI +sar +U₂ +ZE₂ +ina +KAŠ +NAG +U₂ +šim +LI +U₂ +ZE₂ +ina +KAŠ +NAG +U₂ +NU +LUH +HA +U₂ +ZE₂ +ina +KAŠ +NAG +U₂ +BAR +giš +šu +ši +U₂ +ZE₂ +ina +KAŠ +NAG +PA +u₂ +al +la +nu +U₂ +ZE₂ +ina +KAŠ +NAG +U₂ +U₅ +ARGAB +mušen +U₂ +ZE₂ +ina +KAŠ +NAG +U₂ +LAG +MUN +U₂ +ZE₂ +ina +KAŠ +NAG +U₂ +SUM +sar +U₂ +ZE₂ +ina +KAŠ +NAG +U₂ +SUHUŠ +giš +NAM +TAR +NITA₂ +U₂ +ZE₂ +SUD₂ +ina +KAŠ +NAG +U₂ +SUHUŠ +giš +šu +ši +U₂ +ZE₂ +ina +I₃ +u +KAŠ +NAG +U₂ +ṣi +ba +ru +U₂ +ZE₂ +SUD₂ +ina +A +NAG +DIŠ +NA +NU +pa +tan +ŠA₃ +šu₂ +ana +pa +re +e +e +te +ne₂ +la +a +UH₂ +ma +gal +ŠUB +MEŠ +A +MEŠ +ina +KA +šu₂ +mal +da +riš +DU +ku +pa +nu +šu₂ +iṣ +ṣa +nu +du +ŠA₃ +MEŠ +šu₂ +MU₂ +MU₂ +hu +MURUB₄ +MIN +šu₂ +kim +ṣa +šu₂ +TAG +GA +MEŠ +šu₂ +KUM₂ +ŠED₇ +IR# +TUKU +MEŠ +ši +NINDA +u +KAŠ +LAL +A +ŠED₇ +ma +gal +NAG +i +par +ru +ina +DUR₂ +šu₂ +GIŠ₃ +šu₂ +SIG₇ +u₂ +tab +ba +kam +MUŠ₂ +MEŠ +šu₂ +i +te +nin +nu +u +UZU +MEŠ +šu +tab +ku +mim₃ +ma +GU₇ +ma +UGU +šu₂ +ul +DU₁₀ +GA +NA +BI +ZE₂ +sah +pa +su +ana +TI +šu₂ +šim +GUR₂# +GUR₂ +šim# +LI# +šim +GAM +MA +3 +U₂ +HI +A +ŠEŠ +SIG₇ +su +nu# +TI +qe₂# +HAD₂ +A +SUD₂ +ina +GEŠTIN +KALAG +GA +NU +pa +tan# +NAG +šu₂ +SI# +SA₂# +ma# +SAG# +ŠA₃# +šu₂ +ŠA₃ +šu₂ +LAL# +id# +bah +ra +GU₇# +bah +ra +NAG +UD# +3# +KAM +tuš# +te +še +er +ma +TI +DIŠ +KI +MIN +u₂ +a +ra +ri +a +nu +SUD₂ +ina +KAŠ +NU# +pa# +tan# +NAG +šu₂ +x +x +x +DIŠ +KI +MIN +u₂ +sah +la +a +nu +SUD₂ +ina +GEŠTIN +KALAG +GA +NU +pa +tan +NAG +šu₂ +KI +MIN +DIŠ +KI +MIN +u₂ +ṣi +bu +ru +SUD₂ +ina +GA +KU₇ +KU₇ +NAG# +šu₂ +KI +MIN +DIŠ +KI +MIN +HENBUR₂ +u₂ +UKUŠ₂ +HAB +SUD₂ +ina +GEŠTIN +LAL₃ +u +I₃ +hal +ṣi# +NAG +šu₂ +KI +MIN +DIŠ +KI +MIN +U₂ +SIG +MEŠ +ša₂ +KUR +e +ina +GEŠTIN +LAL₃ +u +I₃ +hal# +ṣi# +NAG +šu₂ +KI# +MIN +DIŠ +NA +NINDA +GU₇ +KAŠ +NAG +ma +u₂ +nap +paq +u +IGI +MEŠ +šu₂ +NIGIN +MEŠ +du +NA +BI +GIG +ZE₂# +GIG +ana +TI +šu₂ +u₂# +UKUŠ₂ +HAB +BIL₂ +ša₂ +im +SI +SA₂ +ina +A +LUH +si +šim +BULUH +tu +sal +lat +u₂ +NU +LUH +HA +te +be₂# +er +3 +U₂ +HI# +A# +ŠEŠ +ina +KAŠ +SAG +ki +pi +i +mal +ma +liš +tara +muk +ana +IGI +mul +UZ₃ +GAR +an +GIŠ +HUR +NIGIN# +mi +ina# +A₂# +GU₂ +ZI +GA +ša +šu₂ +nu# +ta +ša₂ +hal +NU +pa +tan +NAG +ma +i# +lap# +pat# +su# +ma# +is +sal +la +ʾ +la +ta +na +kud +TI +uṭ# +ina +UD# +ŠE# +GA +NAG +šu +x +x +x +x +x +x +x +me# +ta# +x +x +x +ur₂ +ne₂ +e +šim +BAL +u₂ +KUR +KUR +giš +GEŠTIN +KA₅ +A +x +x +ina +3 +SILA₃ +KAŠ# +ina +urudu# +ŠEN# +TUR +ŠEG₆ +šal +EN +ana# +2 +SILA₃ +i +tur +ru +i +kaṣ₃ +ṣa +aṣ +x +x +ana +IGI +ŠUB +di +pa +na +A +GAZI +sar +i +šah +hat +EGIR +šu₂ +an +na +a +ana +DUR₂ +šu₂ +DUB +ak +DIŠ +KI# +MIN# +u₂ +UKUŠ₂ +HAB +HAD₂ +A +GAZ +SIM +KI +ZI₃ +KUM +HI +HI +ina +A +GAZI +sar +tara +bak +ina +KUŠ +SUR +LAL +DIŠ +NA +ina +ti +bi +šu₂ +SAG +DU +su +ana +IGI +šu₂ +iš +ta +na +da# +as +su +GU₂ +su +MURUB₄ +MIN +šu₂ +kim +ṣa +šu₂ +GIR₃ +MIN +šu₂ +GU₇ +MIN +šu₂ +ŠA₃ +šu₂ +ii +ʾ +aš₂ +ŠA₃ +šu₂ +ana +pa +re +e +i +te +ne₂ +el# +la# +IGI# +MEŠ +šu₂ +iṣ +ṣa +nu +du +šu₂ +NA +BI +ZE₂ +DAB +su +ana +TI +šu₂ +giš +EREN +giš +ŠUR +MIN₃ +šim +GIR₂ +GI +DU₁₀ +NAGA +SI +šim +IM# +DU? +MUN +eme +sal +li₃ +ina +KAŠ +tara +bak +ina +NINDU +UŠ₂ +er +ana +DUR₂ +šu₂ +DUB +ak +u₂# +NU +LUH +HA +šim +LI +NA₄ +ZU₂ +LUM +MA# +ina# +na₄ +ur +ṣi +DIŠ# +niš +ARA₃ +ARA₃ +ina +I₃ +UDU +HI +HI +alla +nu +DU₃ +uš +I₃ +GIŠ +SUD +ana +DUR₂ +šu₂ +GAR +DIŠ +NA +GABA +su +u +ša₂ +šal +la +šu₂ +KUM₂ +MEŠ +ZU₂ +MEŠ +šu₂# +i +hi +la +e# +peš +KA +šu₂ +DUGUD +NA +BI +ZE₂ +GIG +ana +TI +šu₂ +šim +GUR₂ +GUR₂ +šim +LI +šim +GAM +MA +MUN +ILLU +LI +TAR +u₂ +KU₆ +U₂ +BABBAR +u₂ +HAB +u₂ +ak +tam +giš +HAB +u₂# +KUR +KUR +U₅ +ARGAB +mušen +12 +U₂# +HI +A +ŠEŠ +DIŠ +niš# +ina +KAŠ +ba +lu +pa +tan +NAG +ma +BURU₈ +sah +le₂ +e +u₂ +KUR +RA +kam +mu +ILLU +LI# +TAR +šim +BULUH +šim# +LI +šim +GUR₂ +GUR₂ +ILLU +šim +BULUH +NUMUN? +u₂# +NU +LUH +HA +ZI₃ +u₂ +NU +LUH +HA +u₂ +ur₂ +nu +u +TI +su +nu +ina +KAŠ +NAG# +ma +BURU₈ +x +x +x +u₂# +KUR +KUR +u₂ +NU +LUH +HA +u₂ +HAR +HAR# +šim +ŠEŠ +ILLU +LI +DUR# +KUR# +i# +UH₂# +d# +ID₂# +x +x +U₂# +NAM# +TI# +LA# +u₂# +GAMUN# +u₂# +x +x +u₂# +KUR# +RA +sah +le₂ +e +GAZI +sar +17? +U₂ +HI +A +ŠEŠ# +KI? +MIN? +ILLU +LI +TAR +U₂ +BABBAR +U₅ +ARGAB +mušen +u₂ +ak +tam +x +x +x +šim +BULUH# +x +x +ina +KAŠ +NAG +ma +BURU₈ +u₂ +KUR +KUR +ILLU +LI +TAR +U₂ +BABBAR +... +NAG +ma +BURU₈ +GI +DU₁₀ +GA +šim +MUG +GAZI +sar +U₂ +BABBAR +x +... +ina +IZI +ŠEG₆ +šal +NAG +ma +BURU₈ +u₂ +ur₂ +nu +u +u₂ +SUMUN +DAR +u₂ +šib +bu? +ra +tu₂ +x +x +x +u₂# +KUR +RA +šim +IM +MAN +DU +GI +DU₁₀ +GA +an +dah +še +x +x +x +U₂ +HI +A +an +nu +ti +ina +KAŠ +NAG +ma +BURU₈ +GI +DU₁₀ +GA +PA +u₂ +... +šim +BULUH +U₂ +NAM +TI +LA +ZU₂ +LUM +MA +... +ina +MUL₄ +tuš +bat +ina +še +ri₃ +NU +pa +tan +NAG +ma +BURU₈ +... +u₂# +x +x +x +x +ILLU# +LI +TAR +7 +U₂ +HI +A +ŠEŠ +ina +KAŠ +NAG +ma +BURU₈ +... +x +u₂ +KUR# +KUR +šim +GUR₂ +GUR₂ +NAGA +SI +MUN +u₂ +IGI +lim +u₂ +IGI +niš +u₂ +tar +muš₈ +u₂ +KUR +RA +na₄ +ga +bi +i +u₂ +ak +tam +u₂ +HAR +HAR +14 +U₂# +HI +A +ŠEŠ +DIŠ +niš +SUD₂ +ina +KAŠ +NAG +ma +BURU₈ +... +10 +GIN₂ +u₂ +sah +la# +a! +nu! +10 +GIN₂ +AL +US₂ +SA +10# +GIN₂# +A# +GEŠTIN# +NA +KALAG +GA +10 +GIN₂ +KAŠ +10 +GIN₂ +ut +hi +ra +... +10? +GIN₂ +u₂ +HAR +HAR +1 +GIN₂ +SUM +sar +1 +2 +GIN₂ +MUN +1 +2 +GIN₂ +GAZI +sar +tuš +te +mid +ina +MUL₄ +tuš +bat +ina +še +ri₃ +... +ina +KA +šu₂ +u +DUR₂ +šu₂ +SI +SA₂ +ma +TI +x +x +x +A +UZU +kab +ru +ti +NAG +ma +ina +eš +DIŠ +NA +lu +ZE₂ +lu +ah +ha +za# +lu# +a +mur +ri +qa +nu +DAB# +su +u₂ +ur₂ +ne₂?# +e +u₂# +KUR +KUR +u₂ +GEŠTIN +KA₅ +A +šim +LI +38289 šim +MUG# +3# +SILA₃ +KAŠ +ina# +ŠEN# +TUR +ŠEG₆ +šal# +ta +ša₂ +hal +I₃ +GIŠ +ana +IGI +... +u₂ +GIR₂ +a +nu +u₂ +mur# +gab +ri +a +nu +u₂ +a +ri +hu +u₂# +... +u₂ +ṣa +ṣu +un +ta₅ +u₂# +si +si +ni +ŠA₃ +bi +u₂ +x +... +u₂ +UKUŠ₂ +HAB +: +u₂ +x +HAB +u₂# +HAB# +u₂ +tar +muš₈ +u₂ +NU +LUH +HA +... +HENBUR₂ +u₂ +EME +UR +GI₇ +: +HENBUR₂ +šim +LI +HENBUR₂ +šim +GAM +ME +sah +le₂ +e# +... +HENBUR₂ +u₂ +UKUŠ₂ +HAB +u₂# +sah +la +na +SUD₂ +ina +GEŠTIN +... +DIŠ +NA +ZE₂ +qid +ha +lu +ba +ṭa# +GIG +ana +TI +šu₂ +šim +... +u₂ +tar +muš +u₂ +IGI +lim +šim# +BULUH +u₂ +KUR +RA +ILLU +šim +... +DIŠ +NA +a +ša₂ +a +pa +šit +ta₅ +u +lu +ba# +ṭi₅ +GIG +u₂# +... +u₂ +KUR +RA +URUDU +SUMUN +7 +U₂ +HI +A# +ŠEŠ# +DIŠ# +niš +... +DIŠ +NA +ZE₂ +DAB +su +u₂ +KUR +RA# +NU# +pa +tan +a +he +en +na +a +... +ina +KAŠ +NAG +ma +KAŠ +SAL +LA +NAG# +... +ana +a +ša₂ +a +pa +šit +ta₅# +u +lu +ba +ṭi +ZI +hi +U₂ +BABBAR +ILLU +LI +TAR +... +DIŠ +NA +pa# +šit +tu₂ +DAB +su +šim +GUR₂ +GUR₂ +u₂ +HAR +HAR +u₂ +KUR +KUR +u₂ +KUR# +RA +... +x +ILLU# +LI +TAR +u₂ +NU +LUH +HA +kam₂ +mu +ša₂ +lu₂ +AŠGAB +u₂ +LAG +A +ŠA₃# +x +... +ma +BURU₈ +u₂ +HAR +HAR +u₂ +NU +LUH +HA +ILLU +LI +TAR +šim +LI +šim +GUR₂ +GUR₂ +5# +U₂# +HI +A +... +ŠEŠ₂?# +u₂ +ak +tam +u₂ +KUR +KUR +NAGA +SI +šim +GUR₂ +GUR₂ +šim +LI +ILLU +LI +TAR +MUN +x +8# +U₂# +ME# +NAG# +i +ša₂ +riš +IM +DIŠ +NA +SAG +KI +DAB +BA +TUKU +a +ši +a +pa +šit +tu₄ +u +lu +ba +ṭi +GIG +ana +TI +šu₂ +15 +GIN₂ +šim +GUR₂ +GUR₂ +15 +GIN₂ +u₂ +ur₂ +nu +u +15 +GIN₂ +u₂ +KUR +KUR +DIŠ +niš +GAZ +SIM +ina +I₃ +KAŠ +SAG +tu +ša₂ +ha +an +ana +DUR₂ +šu₂ +DUB +ana +ši +bi +NAG +šu₂# +DIŠ +NA +NU +pa +tan +SAG +ŠA₃ +šu₂ +i +kaṣ₃ +ṣa +as +su +KUM₂ +ŠA₃ +TUKU +MEŠ +ina +ge +ši +šu +ZE₂ +i +ar₂ +ru₃ +NA +BI +pa +šit# +ta₅# +tu +ga +na +GIG +ana +TI +šu₂ +šim +GUR₂ +GUR₂ +šim +LI +ILLU +LI +TAR +u₂ +ak +tam +u₂ +KUR +KUR +MUN +NAGA +SI +TI +su +nu +ina +KAŠ +SAG +tara +muk +ina +MUL₄ +tuš +bat +ina +še +ri₃ +NU +pa +tan +ta +ša₂ +hal +NAG +ma +tu +ša₂ +ʾ +ra +šu +ma +TI +DIŠ# +NA +ZE₂ +GIG +x +x +x +x +x +EN₂# +ZE₂ +eṭ +li +ZE₂ +eṭ# +li +: +i +x +... +u₂# +ri +eṭ +li +e +el₃ +ša +li +li +x +... +x +ti +ma +ga +ra +aš +ga +ra +aš +ša +ŠAH +... +x +an# +ra +ti +e +zib +ba +mu# +x +x +... +KA +INIM +MA? +... +EN₂ +ze₂ +am₂ +u₂# +šim +gen₇ +... +... +x +x +x +eme +... +ze₂ +ni₂ +za# +mu +e# +ši +du₃ +a +... +izi# +gen₇# +te +ni!(ER) +ib₂ +... +tu₆ +du₁₁ +ga +d +nin +girim₃ +... +d +en +ki +ke₄ +dag +... +lag +mun +šu +u₃ +me +ti +nam +šub +eridu +ki# +ga# +x +x +x +x +ka +ka +na!(MA) +u₃ +me +ni +gar +... +im!(AH) +gen₇ +gu +du +ni +ta +he₂ +em +ma +ra +du +:# +bu# +lu +uh +gen₇# +he₂# +si +il +le +EN₂ +mar +tu +mar +tu +mar +tu +pa# +šit +tu₂ +ma +mar +tu +GIM +IGIRA₂# +mušen# +SIG₇ +it +ta +na +al +lak +a# +lak? +ta +it +ta +na +za +az# +ina +gi +sal +li +ša +BAD₃ +i +da +gal +a# +ki# +lum +ak# +li +i +da +gal +ša₂ +tu +u₂ +ku +ru +un +ni +ki +i +tak +ka +la +ak# +la# +ki +i +ta +ša +ta +a +ku +ru +un +ni +a +ma +qu₂ +tak +ku +nu +šim +ma# +tu +ga +ša +a +ki +i +GUD +TU₆ +EN₂ +EN₂ +UD₅ +ar +qa₂ +at +a +ruq# +DUMU +ša +a +ruq +lu₂ +SIPA +ša +a +ruq +na +qid +sa +ina +e +ki +SIG₇ +U₂ +MEŠ +SIG₇ +MEŠ +ik# +kal +ina +a +tap +pi +a +ruq +ti +A +MEŠ +SIG₇ +MEŠ +i +šat +ti +i +suk +ši +giš +GIDRU +ul +u₂ +tir +ra# +pa +ni +ša +: +i +suk +ši +kir +ba +na₇ +ul +u₂ +šaq +qa +a +re +ši +ša +i# +suk +ši +pil₂ +li +u₂ +HAR +HAR# +u +MUN +: +mar +tu +GIM +im +ba +ri +ana +ša₂ +ha +hi +it +bi +EN₂# +ul# +ia +ut +tu +EN₂ +d +e₂ +a# +u +d +asal +lu₂# +hi# +EN₂# +d# +da# +mu +u +d +gu +la +TU₆ +EN₂ +KA +INIM +MA +ša +pa +šit +ti +DU₃ +DU₃ +BI +x +x +x +x +GAZI? +sar +pa +pi +ra +DIŠ +niš +SIG₃ +aṣ# +EN₂# +x +x +ŠID# +... +x +x +x +TI# +uṭ# +EN₂# +x +... +x +ad?# +x +... +d +e₂# +a# +x +x +lip +ṭur +EN₂# +KID₃ +KID₃ +BI +... +u# +MUN# +nu?# +hur?# +ti +ŠUB +di +ana +ŠA₃ +EN₂# +ŠID +... +NU +pa +tan +NAG +ma +ina +eš +KA +INIM +MA +ZE₂ +A +KAM +IGI +4 +GAL₂ +LA +ILLU +LI# +TAR# +SUD₂# +ina +A +NAG# +šu₂ +14 +PA +GI +ZU₂ +LUM +MA +SUD₂ +ina +5 +GIN₂ +I₃# +GIŠ# +u +KAŠ +NAG +šu₂ +21 +u₂# +nab +ruq# +qa +ina +10 +GIN₂ +I₃ +GIŠ +u +KAŠ +NAG +šu₂ +15 +ŠE +u₂# +IGI +lim +ina +1 +2 +SILA₃ +I₃ +GIŠ +u +KAŠ +NAG +šu₂ +90 +u₂ +sis +sin +ni +ŠA₃ +bi +ina +10 +GIN₂ +A +NAG +šu₂ +IGI +4 +GAL₂ +LA +U₂# +ma +at +qa +ina +10 +GIN₂ +A +NAG +šu₂ +IGI +4 +GAL₂ +LA# +U₂# +NAM +TI +LA +ina +10 +GIN₂ +I₃ +GIŠ +NAG +šu₂ +1 +2 +GIN₂ +u₂ +a +ra +ri +a +nu +ina +10 +GIN₂ +A +NAG +šu₂ +IGI +4 +GAL₂ +LA +u₂ +IGI# +NIŠ +ina +10 +GIN₂ +A +NAG +šu₂ +IGI +4 +GAL₂ +LA +u₂ +me +er +gi +ra +nu +ina +10 +GIN₂ +KAŠ +NAG +šu₂ +DIŠ +NA +ZE₂ +DAB +su +GAZI +sar +SUD₂ +ina +KAŠ +NAG +ma +i +ar₂ +ru₃ +: +DIŠ +KI +MIN +hi +qa +KAŠ +NAG +ma# +i# +ar₂ +ru₃ +DIŠ +KI +MIN +hi +qa +A +GEŠTIN +NA +KALAG +GA +NAG +ma# +i +ar₂ +ru₃ +: +DIŠ +KI +MIN +šim +LI +SUD₂ +ina +KAŠ# +NAG +ma# +i +ar₂# +ru₃ +DIŠ +KIMIN +u₂ +me +er +gi +ra +a +na +SUD₂ +ina +A# +NAG +ma +i +ar₂ +ru₃ +: +DIŠ +KIMIN +u₂ +IGI +lim +SUD₂ +ina +KAŠ +NAG +ma +i +ar₂ +ru₃ +DIŠ +KI +MIN +MUN +lu +ina +A +lu +ina +KAŠ +NAG +ma +i +ar₂ +ru₃ +: +DIŠ +KI +MIN +SUM +sar +SUD₂ +ina +A +NAG +ma +i +ar₂ +ru₃ +39398 DIŠ +KI +MIN +ILLU +LI +TAR +SUD₂ +ina +A +NAG# +ma +i +ar₂ +ru₃ +: +DIŠ +KI +MIN +ILLU +LI +TAR +SUD₂ +ina +A +tara +muk +ina +MUL₄ +tuš +bat +NAG +ma +i +ar₂ +ru₃ +DIŠ +KI +MIN +u₂ +UKUŠ₂ +HAB +šim +BULUH +u₂ +HAR +HAR +ina +I₃ +ina +MUL₄ +tuš +bat +NAG +ma +i +ar₂ +ru₃ +DIŠ +KI +MIN +u₂ +NU# +LUH +HA +SUM +sar +a +he +na +a +SUD₂ +ina +KAŠ +NAG +ma +i +ar₂ +ru₃ +DIŠ +NA +IGI +SIG₇# +SIG₇ +GIG +ma +GIG +su +ana +ŠA₃ +IGI +MIN +šu₂ +E₁₁ +a +ŠA₃ +IGI +MEŠ +šu₂ +GU +MEŠ +SIG₇ +MEŠ +ud +du +hu +ŠA₃ +MEŠ +šu₂# +na# +šu +u +NINDA +u +KAŠ +u₂ +tar +ra +NA +BI +IM +DU₃ +A +BI +GIG +u₂ +za +bal +ma +BA +UŠ₂ +DIŠ +NA# +IGI# +SIG₇ +SIG₇ +GIG# +ma +SAG +DU +su +pa +nu +šu₂ +ka +lu +ADDA +šu₂ +SUHUŠ +EME +šu₂ +ṣa +bit +ši +pir +šu₂ +SUMUN +ma +BA +UŠ₂ +DIŠ +NA +SU +šu₂ +SIG₇ +pa +nu +šu₂ +SIG₇ +ši +hat +UZU +TUKU +a +mur +ri +qa +nu +MU +NI +šim +LI +SUD₂ +ina +KAŠ +NAG +šim +ŠE +LI +SUD₂ +ina +KAŠ +NAG +šim +ŠEŠ +SUD₂ +ina +KAŠ +NAG +SUHUŠ +giš +NAM +TAR +NITA₂ +ša₂ +im +SI +SA₂ +ša₂ +GURUN +NU +IL₂ +SUD₂ +ina +KAŠ +NAG +u₂ +mur +ra +an +KUR +i +SUD₂ +ina +KAŠ# +NAG# +u₂ +kur +ka +na₇ +SUD₂# +ina +KAŠ +NAG +u₂ +IGI +lim +SUD₂ +ina +KAŠ +NAG +u₂ +nam +ruq +qa +SUD₂ +ina +KAŠ +NAG# +u₂ +nam +ruq +qa +SUD₂ +ina +A +NAG +IM +SAHAR +NA₄ +KUR +RA +SUD₂ +ana +A +MEŠ +ŠUB +tu +sak₆ +NAG +šim +LI +SUD₂ +ina +GA +NAG +šim# +ŠE# +LI +SUD₂ +ina +GA +NAG +šim +ŠEŠ +SUD₂ +ina +GA +NAG +u₂ +nam +ruq +qa +SUD₂ +ina +GA +NAG +5 +ŠE +KU +KU +AN# +ZAH# +ina +KAŠ +ŠUB +ina +MUL₄ +tuš +bat +tu +sak₆ +NAG +im +KAL +LA +SUD₂ +ina +I₃ +e +re +ni +u +KAŠ +NAG +NUMUN +giš +bi +ni +u₂# +SUMUN# +DAR +SUD₂ +ina +KAŠ +NAG +NUMUN +giš +bi +ni +SUD₂ +ina +KAŠ +NAG +NUMUN +giš +bi +ni +SUD₂ +ina +I₃# +u# +KAŠ# +NAG# +SUHUŠ +giš +šu +ši +SUD₂ +MIN +: +u₂ +IGI +NIŠ +SUD₂ +ina +KAŠ +NAG +SUHUŠ +giš +MA +NU +SUHUŠ +giš +NU +UR₂ +MA +ina +NINDU# +UŠ₂ +er +A +MEŠ +šu +nu +ti₃ +tu +sak₆ +tu +kaṣ₃ +ṣa +NAG +ma +ina +eš +u₂ +a +ṣu +ṣum +ta₅ +u₂ +a +nu +nu +ta₅ +ina +qut +rin +ni +tu +qat +tar +šu +MUD₂ +d +NIN +KA₆ +EDIN +ša +ina +u₂ +NINNI₅ +GUB +zu +ta +mah +har +ina +I₃ +EŠ +MEŠ +I₃# +SUMUN +sip +pi₂ +ABUL +ki +lal +le +e +TI +ina +I₃ +EŠ +MEŠ +GIR₃ +ra +am +ŠUB +uṣ# +ṣa +a +uš +te +eš +šir +ti +tur +ra +na +di +ta₅ +e +ti +iq# +u₂ +NIG₂ +GIDRU +SA₅ +SUD₂ +ina +KAŠ# +NAG# +šim# +GUR₂# +GUR₂# +SUD₂# +ina +KAŠ +NAG +GURUN +u₂ +ka +zi +ri +SUD₂ +ina +KAŠ +NAG +u₂ +HAR +HAR +SUD₂ +ina +KAŠ +NAG +SU +giš +NU +UR₂ +MA +SUD₂ +ina +KAŠ# +NAG# +x +x +x +x +x +x +x +x +SUHUŠ +u₂# +EME# +UR +GI₇ +SUD₂ +ina +KAŠ +NAG +IGI +6 +GAL₂ +LA# +... +u₂ +IGI +NIŠ +qut +ri₃ +SUD₂ +ina +I₃# +u +KAŠ +NAG +PA# +giš# +NU +UR₂ +MA +... +DIŠ +NA +IGI +SIG₇ +SIG₇ +DIRI +SUHUŠ# +giš +šu +ši +x +x +x +... +ina +MUL₄ +tuš +bat +NAG +hu +bi# +bi# +ta₅# +... +SUHUŠ +giš +NU +UR₂ +MA +ša₂# +im +SI +SA₂# +... +šum +ma +ina +x +... +BAR +giš +NU# +UR₂# +MA +... +sah# +le₂# +e +... +x +x +x +x +x +... +DIŠ +NA +IGI +SIG₇ +SIG₇ +DIRI +... +ta +tab +bal +I₃ +UDU +UKUŠ₂ +HAB +... +MUŠ +DIM₂ +GURUN +NA# +... +x +x +x +... +40021 DIŠ +MIN +x +x +ina +I₃ +UDU +UKUŠ₂ +HAB# +SUD₂ +ina +KAŠ +NAG +: +DIŠ +MIN +UZU +GUD +kab +ra +GU₇ +MEŠ +ZI₃ +mi +NU +IGI +DIŠ +MIN +ŠE₁₀? +NAM# +LU₂ +U₁₈ +LU +šim +ŠEŠ +ina +I₃# +u# +KAŠ +NAG +: +DIŠ +MIN +AMA +A +A +HAD₂ +DU +SUD₂ +ina +I₃ +u +KAŠ +lu₂ +KURUN₂ +NA +NAG +ma +BURU₈ +DIŠ +MIN +u₂ +ak +tam +ILLU +LI +TAR +U₂ +BABBAR +ina +I₃# +u +KAŠ +NAG +: +DIŠ +MIN +I₃ +UDU +UKUŠ₂ +HAB +ina +KAŠ +NAG +DIŠ +MIN +šim +ŠEŠ +NUMUN +šim +LI +IM +SAHAR +NA₄ +KUR +RA +SUD₂ +ina +I₃ +u +KAŠ +NAG +: +DIŠ +MIN +HAR +KUG +SIG₁₇ +HUŠ +A +ina +ŠU +šu₂ +GAR +an +DIŠ +NA +IGI# +MIN +šu₂ +IGI +SIG₇ +SIG₇ +PA +giš +NU +UR₂ +MA +SUD₂ +ina +gi +SAG +KUD +ana +ŠA₃ +IGI +MIN +šu₂ +MU₂ +ah +DIŠ +NA +IGI +MIN +šu₂ +IGI# +SIG₇ +SIG₇ +IGI +MEŠ +šu₂ +UZU +MEŠ +šu₂ +DIRI +7 +MUŠ +DIM₂ +GURUN +NA +ri +it +ku +ba +ti +x +x +x +x +TI +qe₂# +tu# +qal# +lap +ina +na₄ +NA +ZA₃ +HI +LI +SUD₂ +ina +DIDA +HI +HI +GU₇ +MEŠ +ma +ina +eš +... +x +x +x +sah# +le₂ +e +ŠE +SA +A +LAL +su +u +DIDA +HI +HI +GU₇ +MEŠ +ma +ina +eš +... +x +x +x +x +ina +I₃ +u +KAŠ +NAG +ma +ina +eš +... +x +HU# +ši# +ši# +ta₅ +... +ina# +KAŠ# +NAG +šu₂ +... +x +ta +qal +lap +x +... +NAG# +šu₂ +DIŠ +NA +IGI +MIN +šu₂ +IGI +SIG₇ +SIG₇ +DIRI +u₂ +LAG +A +ŠA₃ +SUD₂ +ina +KAŠ +NAG +an +nu# +ha# +ra +SUD₂ +ina# +KAŠ +x +x +x +SUD₂ +ina +KAŠ +ŠIKA +NUNUZ +GA₂ +NU₁₁# +mušen +SUD₂ +ina +KAŠ +KUG +SIG₁₇ +ina +SIG₂ +SA₅# +ina +ŠU +MIN +šu₂ +KEŠDA +DIŠ# +KI# +MIN +u₂# +x +u₂# +ŠAKIRA +U₂ +SA₅ +u₂ +LAL +GAZ +A +BI +ta +ṣa +hat +ina +KAŠ +NAG +ma +ina +eš +DIŠ +KI +MIN +GAZI +sar +U₅ +ARGAB +mušen +U₂ +BABBAR +ina +I₃ +NUN +SUD₂ +IGI +MIN +šu₂ +te +te +ne₂ +qi₂ +ma +ši +ši +ta₅# +ZI +ah +DIŠ +NA +SU# +šu₂ +SIG₇ +5 +ŠE +AN +ZAH +SUD₂ +ina +I₃ +u +KAŠ +NAG +šu₂ +tu +šam +ad +ma +BA +UŠ₂ +DIŠ +NA +IGI# +MIN +šu₂ +a +mur +ri +qa +nu +DIRI +u₂ +HAB +SUD₂ +ina +KAŠ +NAG +ma +ina +eš +DIŠ +MIN +SUHUŠ +giš +šu +ši +tu +bal +ta +sak₃ +ina +KAŠ +tara₃ +sa₃ +an +IGI +d +UTU +NAG +ma +ina +eš +DIŠ +SUHUŠ +u₂ +EME +UR +GI₇ +tu +bal +ta +sak₃ +ina +KAŠ +tara₃ +sa₃ +an +NAG +ma +ina +eš +DIŠ +u₂ +an +nu +ha +ra +SUD₂ +ina +KAŠ +NAG +ma +ina +eš +: +DIŠ +NUNUZ +GA₂ +NU₁₁ +mušen +SUD₂ +ina +KAŠ +NAG +ma +ina +eš +DIŠ# +SUHUŠ# +giš +NU +UR₂ +MA +SUD₂ +ina +KAŠ +ina +MUL +tuš +bat +ina +A₂ +GU₂ +ZI +GA +NAG +šu₂ +DIŠ# +NUMUN# +GI# +ZU₂# +LUM# +MA +SUD₂ +ina +KAŠ +ina +MUL +tuš +bat +ina +A₂ +GU₂ +ZI +GA +NAG +šu₂ +DIŠ +giš +GEŠTIN +KA₅ +A +SUD₂ +ina +KAŠ# +NAG +šu₂ +: +DIŠ +u₂ +NU +LUH +HA +SUD₂ +ina +KAŠ +NAG +šu₂ +DIŠ +SUHUŠ +giš +NAM +TAR +SUD₂ +ina +KAŠ +NAG# +šu₂# +: +DIŠ +ILLU +a# +bu# +ka +ti +ta +sak₃ +ina +KAŠ +NAG +šu₂ +DIŠ +u₂ +MUŠ +DIM₂ +GURUN +NA +GAL +ta +sak₃ +ina# +KAŠ +u# +I₃ +NAG +šu₂ +DIŠ +NA +SU +šu₂ +SIG₇ +IGI +šu₂ +SIG₇ +u +GE₆ +SUHUŠ +EME +šu₂ +GE₆ +ah# +ha +zu +MU +NE +MUŠ +DIM₂ +GURUN +NA +GAL +ta +ša₂ +EDIN +ta +sak₃ +ina +KAŠ +NAG +ah +ha +zu +ša₂# +ŠA₃# +šu₂# +SI +SA₂ +am +DIŠ +NA +ah +ha +za +DIRI +šim +LI +SUD₂ +ina +KAŠ +NAG +šim +ŠE +LI +BABBAR +IM +SAHAR +NA₄ +KUR +RA +SUD₂ +ina +I₃ +u +KAŠ +NAG# +ma +ina +eš +šim +KU₇ +KU₇ +SUD₂ +ina +KAŠ +NAG +u₂ +ha +še +e +SUD₂ +ina +KAŠ +NAG +SUHUŠ +GI +ZU₂ +LUM +MA +SUD₂ +ina +A +NAG +šim +ŠEŠ +SUD₂ +ina +GA +NAG +DIŠ +NA +ah +ha +za +DIRI# +SUHUŠ +giš +šu +še +ta +sak₃ +ina +KAŠ +tara +muk +ina +MUL₄ +tuš +bat +NAG +DIŠ +NA +ah# +ha# +za# +DIRI# +u₂# +ṣu₂# +ṣe# +em# +ta₅ +u₂ +a +nu +nu +ta₅ +ina +qut +ri +ni +tu +qat +tar +šu₂# +u +MUD₂ +KUN +DAR# +GURUN# +NA# +ŠEŠ₂ +su +ma +ina# +eš +ru# +ša# +am +ša +si# +ip# +pi +ABUL# +ki# +lal# +le# +en +TI +qe₂ +ana +I₃ +GIŠ +ŠUB +di +ta +ap +ta +na# +ša +aš +gi# +ir# +ra# +ŠUB# +uṣ +ṣa +a +am +uš# +te# +eš# +še# +er# +ti +tur +ra +na +di +a +am +i +x +x +x +DIŠ +NA +ah +ha +za +DAB +su +SUHUŠ +giš +NAM +TAR +NITA₂ +ša₂ +IGI +im +SI# +SA₂ +TI +qe₂ +ina +KAŠ +NAG +u₂ +HAR +HAR? +x +x +x +x +u₂ +KUR +GI +RIN₂ +NA +SUD₂ +ina +KAŠ +šim +ŠE +LI +BABBAR +SUD₂ +ina +KAŠ +NAG +u₂ +IGI +lim +u₂ +IGI +NIŠ +ina +KAŠ +SUHUŠ +u₂# +x +x +x +x +x +DIŠ +NA# +MIN +IGI +SIG₇ +SIG₇ +šim +LI +šim +ŠEŠ +SUD₂ +ina +KAŠ +NU# +pa +tan +NAG +DIŠ +NA +MIN +IM +SAHAR +NA₄ +KUR +RA +IM +SAHAR +GE₆ +KUR +RA +DIŠ +niš +ina +KAŠ +tara +SUD +tu# +zak# +ka +x +x +x +x +DIŠ +NA +MIN +15 +ŠE +MEŠ +AN +ZAH +SUD₂ +ina +KAŠ +tara +SUD +tu +zak +ka +I₃ +hal +ṣa +ana +ŠA₃ +ŠUB +di +NU +pa# +tan +NAG +DIŠ +NA +MIN +im +KAL +LA +SUD₂ +ina +I₃ +u +KAŠ +NAG +NUMUN +giš +bi +ni +ina +KAŠ +NAG +NUMUN +giš +bi +ni# +x +x +x +x +NUMUN +giš +bi +ni +SUD₂ +ina +I₃ +u +KAŠ +NAG +SUHUŠ +giš +šu +ši +ina +I₃ +u +KAŠ +NAG +u₂ +IGI +NIŠ +SUD₂# +ina +KAŠ +NAG +MEŠ# +DIŠ +MIN +SUHUŠ +giš +šu +ši +SUHUŠ +giš +NU +UR₂ +MA +ana +A +ŠUB +ina +NINDU +UŠ₂ +er +E₁₁ +a +ta +ša₂ +hal +ŠED₇ +NU# +pa +tan +NAG# +MEŠ +DIŠ +NA +ah +ha +zu +ana +IGI +MIN +šu₂ +E₁₁ +a +ma +IGI +MIN +šu₂ +GU +MEŠ +SIG₇ +MEŠ +ud# +du +ha +ŠA₃ +MEŠ +šu₂ +na +šu +u₂ +NINDA +u +KAŠ +u₂ +tar +ra +NA +BI +u₂ +za +bal +ma +NU +TI +UŠ₂# +DIŠ +NA +ah +ha +zu +GIG +SAG +DU +su +pa +nu +šu +SU +šu₂ +ka +la +šu₂ +u₃ +SUHUŠ +EME +šu₂ +DAB +ana +GIG +šu +a +tu +lu₂ +A +ZU +ŠU +su +NU +ub +bal +NA +BI +UŠ₂ +NU +TI +DIŠ +NA +UD +DA +KUR +id +ZI +SAG +KI +GIG +ina +lam +DUGUD +šu₂ +ana +TI +BI +ru +uš +ša +ša +sip +pi +x +x +x +E₂ +GAL +m +AN +ŠAR₂ +DU₃ +A +MAN +ŠU₂ +MAN +KUR +AN +ŠAR₂ +ki +ša +d +AG +u +d +taš +me +tu₄ +GEŠTU +MIN +ra +pa +aš₂ +tu₄ +iš +ru# +ku +uš +e +hu +uz +zu +IGI +MIN +na +mir +tu₄ +ni +siq +ṭup +šar +ru# +ti +ša +ina +LUGAL +MEŠ +ni +a +lik +mah +ri +ia +mam₂ +ma +šip +ru +šu +a +tu +la +e +hu +uz# +zu +bul +ṭi +TA +muh +hi +EN +UMBIN +liq +ti +BAR +MEŠ +ta +hi +zu +nak +la +a +zu +gal +lu +ti +d +nin +urta +u +d +gu +la +ma +la +ba +aš₂ +mu +ina +ṭup +pa +a +ni +aš₂ +ṭur +as +niq +IGI +KAR₂ +ma +a +na +ta +mar +ti +ši +ta +as +si +ia +qe₂# +reb# +E₂ +GAL +ia# +u₂ +kin# +41232 ... +SAG +DU? +su +ŠEŠ₂ +ma# +TI +... +kal +ma +tu₄ +ul +i +sa +niq +šu₂ +x +x +x +x +x +x +x +x +x +x +ana# +A# +PU₂# +ša +x +u# +KU₆ +NU +GAL₂ +ŠUB +TU₅ +šu₂ +ma +UH +NU +TE +šu₂ +x +x +x +x +x +x +x +x +ina +I₃ +GIŠ +e +re +ni +HI +HI +EŠ +MEŠ +DIŠ +NA +SAG +DU +su +kal +ma +ta₅ +ma +tu +uq +ta +ma +li +u₂ +mu +ur +ru +MU +NI +x +x +x +x +x +x +x +x +za +ku +ti +šu₂ +i +na +pa +ah +ma +TI +LA +x +x +x +x +la# +ba# +ši# +i +giš +URI +SUD₂ +ina +I₃ +GIŠ +BARA₂! +ŠEŠ₂ +kal +ma +tu₂ +ul +ib +ba +aš₂ +ši +DIŠ# +NA# +SAG +DU +su +ek +ke +ta +u +ri +šu# +ta# +DIRI +PIŠ₁₀ +d +ID₂ +SUD₂ +ina +I₃ +GIŠ +e +re +ni +HI +HI +EŠ +MEŠ +su +DIŠ +KI +MIN +PIŠ₁₀ +d# +ID₂# +ta +qal +lu +ina +I₃ +GIŠ +SAG +DU +su +tu +kaṣ₃ +ṣa +id +ra# +ša₂# +MUN# +ta +qal +lu +ina +I₃ +SAG +DU +su +tu +kaṣ₃ +ṣa +DIŠ +NA +SAG +DU +su +sa +ma +nu +DAB +it +i +raš +ši +šum +ma +i +na +sah +i +na +ah +EGIR# +nu +GAL +bi +NUMUN +u₂ +EME +UR +GI₇ +SAHAR +ŠE +GIŠ! +I₃# +SAHAR +di +ki +giš +DIH₃ +SAHAR# +ŠE# +GIŠ +I₃ +SAHAR +MUNU₆ +ŠE₁₀ +TU +mušen +MEŠ +ša₂ +giš +GIŠIMMAR# +KUR# +RA +HAD₂ +DU +ti +NUMUN +u₂ +DILI +SUD₂ +ina +A +GAZI +sar +KUM₂ +ti +SILA₁₁ +aš +SAG +DU +su +SAR +ab +tu +kaṣ₃ +ṣa +LAL +ša₂ +KA +DUB +MIN +i# +DIŠ +NA +SAG +DU +su +sa +ma +nu +DAB +it +SAHAR +KUN₄ +ša +na₄ +pu +li +ša +E₂ +SUMUN +U₂ +BABBAR +SIG₇? +SIG₇? +su +U₄ +ma +ina +ŠA₃ +giš +ar₂ +ga +ni +GAL +bi +NUMUN +u₂ +EME +UR +GI₇ +SAHAR +ŠE +GIŠ +I₃ +ša₂ +SUHUŠ +maš +hal +ti +GAZ +DUH +ŠE +GIŠ# +I₃# +HAD₂ +A +UŠ +MUNU₆ +ŠE₁₀ +TU +mušen +ha +ṣab +ti +na₄ +PEŠ₄ +NUMUN +u₂ +DILI +9 +U₂ +HI +A +ŠEŠ +DIŠ +niš +SUD₂ +SAG# +DU +su# +ina +I₃ +GIŠ +MUD₂ +giš +EREN +EŠ +MEŠ +U₂ +HI +A +an +nu +ti +ana +UGU +MAR +LAL +su +ma +TI +DIŠ +NA +SAG +DU +su +x +x +šum? +DAB +it +a +la +pa +a +ša₂ +IGI +A +MEŠ +SAHAR +a +sur +re +e +ša₂ +ŠAH +ŠE₁₀ +PEŠ₂ +GIŠ +KIN₂ +x +x +x +x +x +x +x +x +KU +KU +giš# +TASKARIN +KU +KU +giš +KIŠI₁₆ +ša₂ +ina +pi +ti +iq +ti +šu₂ +i +ra +bu +u₂ +bar +ša +SUHUŠ +x +x +x +x +x +x +x +x +giš +sir₂ +di +PA +giš +bi +ni +PA +giš +ŠE +NU +ZI₃ +GU₂ +GAL +ZI₃ +GU₂ +TUR +ZI₃ +ŠE +SA +A# +LAL# +MEŠ# +su +ma +TI +DIŠ +NA +SAG +DU +su +x +x +x +DAB# +it +a +la +pa +a +ša₂ +IGI +A +MEŠ# +... +... +x +x +x +x +x +... +41722 x +x +x +šim +GUR₂ +GUR₂ +šim +LI +u₂ +KUR# +KUR# +... +x +x +ŠE +SA? +A +ni +kip +ta₅ +DIŠ +nis +SUD₂ +... +x +x +a +šu# +u₂ +SAG +NA# +a?# +hi?# +iz?# +x +... +DIŠ +NA +SAG +DU +su +a +šu +u₂ +DAB +it +... +x +x +x +šim +GUR₂ +GUR₂ +šim +... +x +x +GAZ +SIM +KI +GU₂ +GAL +... +DIŠ +NA +SAG# +DU +su +a +šu +u₂ +DAB +it +... +x +x +x +na₄ +ŠU +U +NITA₂? +... +x +x +x +ana +KA +šu₂ +u +na +hi# +ri# +šu₂ +... +DIŠ +NA +SAG +DU +su +a +šu +u +DAB +it +šim +... +x +x +x +x +x +x +x +lu +u +ina +KAŠ +SAG +NAG +šu₂# +... +DIŠ +NA +x +x +x +x +SAG +DU +šu₂ +DAB +it +SUHUŠ +... +x +x +x +x +ba +lu +pa +tan +NAG +šu₂ +ma +... +DIŠ +NA +a +šu +u₂ +lu +ŠUB +tu +DAB +su +10 +GIN₂ +sah +le₂ +e +kab +ra +ti +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +u₂ +nu +ut +ŠA₃ +šu₂ +nu +ta +tab +bal +tu +ša₂ +bal +ina +ŠU +ka +ta +pa +ša₂ +aš₂# +x +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +NA +a +šu +u₂# +lu +ŠUB +tu +DAB +su +5 +GIN₂ +u₂ +KUR +RA +5 +GIN₂ +GAZI +sar +x +x +dug +UTUL₇# +ta# +pal# +la +aš +x +x +x +x +x +x +x +IGI +dug +UTUL₇# +ina +NIG₂ +SILA₁₁ +GA₂ +ZIZ₂ +A +AN +UŠ₂ +hi +IZI +ta +šar₂ +rap +gi +SAG +KUD +ta +pal +la +aš +ma +ina +MURUB₄ +at +dug +BUR +ZI# +ta# +sa₃# +niš# +x +x +x +x +x +gi# +SAG +KUD +E₁₁ +a +ina +KA +šu₂ +GID₂ +ad +x +x +x +x +ŠEG₆ +al +A +UZU +u +UZU +AL +GUR₄ +RA +GU₇ +ma +ina +eš +DIŠ +NA +a +šu₂ +u +DAB# +it +im +KAL +SUD₂ +ina# +x +x +NAG +MEŠ +ma +TI +uṭ# +DIŠ +NA +a +šu +u₂ +DAB# +it# +7# +et# +u# +7# +et# +ŠE +MEŠ +ina +NE +tu +qat +tar? +ha +an +za +a +ša₂ +ŠA₃ +GI +DU₁₀ +GA +TI +qe₂# +x +x +x +x +x +x +an +ina# +KA# +šu₂ +u₂ +la +ʾa# +at +ma +ana +na +hi +ri +šu₂ +in +niq +ma +TI +uṭ +x +x +x +x +x +tur +ar₂ +SUD₂ +ina +I₃ +GIŠ +u +KAŠ +SAG +NAG +ma +TI +uṭ +DIŠ +NA +SAG +DU +su# +a +šu +u₂ +a +hi +iz +eriš₆ +ti +GAZI +sar +NUMUN +u₂ +KU₆ +ina +x +x +x +x +me +šu₂ +ŠEŠ₂ +MEŠ +TI +uṭ +x +x +x +DIDA +SIG₅ +LAL +id +sah +le₂ +e +ARA₃ +ti₃ +ana +UGU +MAR? +x +x +x +GAR +an +ma +TI +uṭ +x +x +x +x +x +tu +zak +ina +MUL₄ +tuš +bat +ba +lu +pa +tan +NAG +šu₂ +1 +SILA₃# +x +x +1 +SILA₃ +šur +šum +me +KAŠ +SAG?# +tu?# +zak? +x +x +x +x +iš +tu +e +liš +ana +šap +liš +tu +maš +šad +UD# +10 +KAM₂ +LAL# +ma +TI +x +x +x +x +DABIN +ina +KAŠ +ta +sak₃ +SAG +DU +su +ŠED₇ +NUMUN +u₂ +KU₆ +SUD₂ +ina +I₃ +HI +HI# +ina +urudu +ŠEN# +TUR# +ŠEG₆ +šal +EŠ +MEŠ +ma +TI +DIŠ +NA +a +šu +u₂ +DAB +it +ILLU +šim +BULUH +šim +BAL +ina +NE +SAR +šu₂ +ana +na +hi +ri +šu₂ +in +niq +ma +TI +DIŠ +KI +MIN +šim +HAB +ILLU +šim +BULUH +u₂ +KUR +GI +RIN₂ +NA +ina +IZI +ŠUB +na +hi +ri +šu₂ +tu +qat +tar +I₃ +GIŠ +KA +KIR₄ +x +x +x +x +MU₂ +ma +TI +DIŠ +NA +a +šu +u₂ +DAB +su +u₂ +IGI +lim +u₂ +KUR +KUR +NUMUN +GAZI +sar +NUMUN +u₂ +AB₂ +DUH +U₂ +MAŠ +TAB +BA +ina +I₃ +ŠEŠ₂ +su +ina +NE +SAR# +šu₂ +EN₂ +qar +ra# +di₃# +ia# +qar# +ra# +di₃ +ia +TI +TI +qar +ra +di₃ +ia +ŠU +za +ah +za +ah +u +qar +ra +di₃ +ia +ma +hu +ul +qi +hu +ul +qi +ha +al +ti +ib +ha +al +ti +ib +ia +nu +um +ma +te +ne +eš +ma +mar +IMIN +NA +di +hu +un +di +hu +un +du +li +rap +šu +ma +KUM₂ +šu₂ +NU +i +na +a +aš# +ma# +ʾ +du +ma +la +x +x +x +x +x +x +a +su₁₄ +u₂ +ša₂ +a +me +lu +ti +TU₆ +EN₂ +KA +INIM +MA +MAŠ +TAB +BA +KE₄ +DU₃ +DU₃ +BI +GAZI +sar +šim +GUR₂ +GUR₂ +U₂ +a +ši +i +ina +NE +SAR# +šu₂ +EN₂ +an +ni +ta₅ +3 +šu₂ +ŠID +nu +ma +TI +EN₂ +edin +lal +edin +na +edin +lal +edin +na +edin# +ki +gir₃ +si₃ +ga +edin +ki +gir₃ +si₃ +ga +mul +ra +ku +u₂ +ma +an +du +gi?# +ki?# +na +mul +mul +da +ta +EN₂ +KA +INIM +MA +MAŠ +TAB +BA +KE₄ +DU₃ +DU₃ +BI +u₂ +AB₂ +DUH +ta +pa +aṣ +ina +I₃ +GIŠ +HI +HI +EN₂ +3 +šu₂ +ŠID +nu +ŠEŠ₂ +ŠEŠ₂ +ma +TI +U₂ +a +ši +i +KUD +si +NUMUN +u₂ +kam +ka +di +SUD₂ +ina +I₃ +GIŠ +ŠEŠ₂ +u₂# +ka +man +ta# +SUD₂ +ina +I₃ +GIŠ +ŠEŠ₂ +U₂ +BABBAR +SUD₂ +ina +I₃ +GIŠ +ŠEŠ₂ +u₂ +ha +šu# +u +u₂# +HAB +sah +le₂ +e +u₂ +zi +bu +u +U₂ +BABBAR +ILLU +šim +BULUH? +x +x +x +x +TEŠ₂# +BI +ta +sak₃ +ina +I₃ +GIŠ +u +KAŠ +SAG +NAG +MEŠ +ma +TI +DIŠ +NA +a +šu +u₂ +DAB +su +ana +TI +šu₂ +U₂ +BABBAR +U₅ +ARGAB +mušen +MUN +eme +sal +lim +u₂ +KUR +RA +x +x +x +x +x +x +x +x +x +SAG +DU +su +LUH +si +GUR +ma +ta +bi +lam +ana +SAG +DU +šu₂ +MAR +sig₂ +AKA₃ +NIGIN +x +x +x +x +x +x +x +x +iš +ka +gi# +im# +ma# +x +x +x +šu# +uh +di +am +x +x +x +x +... +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +SIG₃ +as# +su# +u# +SAG# +KI +MEŠ +šu₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ŠA₃ +ŠID +nu +ana +na +hi +ri +šu₂ +DUB +x +x +x +x +x +x +x +x +x +x +x +x +ba +ah +ra +GU₇ +ba +ah +ra +NAG +ma +TI +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +u₂# +AB₂ +DUH +U₂ +MAŠ +TAB +BA +ina +I₃ +GIŠ +ŠEŠ₂ +TI +... +it +ta +mu +uh +x +x +x +... +a +ša₂ +a +KA +x +x +x +x +... +u₂ +aš +lim +ina +NE +SAR +šu₂ +ma +MAŠ +TAB +BA +ZI +x +EN₂ +... +giš +hur +hur +u₂ +pa +ak +u₂ +pa +ak +TU₆ +EN₂ +... +DU₃# +DU₃# +BI +A +giš# +NU +UR₂ +MA +x +x +x +x +... +x +ana +KA +šu₂ +ta +šap +pak +ma +ina# +eš +x +x +x +x +x +x +x +x +x +NUMUN +u₂ +KU₆ +u₂ +tar +muš +u₂ +IGI +lim# +u₂ +IGI +NIŠ +ina +I₃ +x +x +x +x +x +x +x +x +x +x +GAR +an +ina +še +ri₃ +SAG +DU +su +LUH +si +EŠ +MEŠ +ma +ina +eš +x +x +x +x +x +x +x +x +x +NA₄ +UKUŠ₂ +HAB +GAZI +sar +BIL +ti +ina +I₃ +GIŠ +e +re +ni# +HI +HI +ŠEŠ₂ +MEŠ +... +x +KUM₂ +am +ana +SAG +DU +šu₂ +ŠUB +x +x +... +x +HI# +HI# +tu +kaṣ₃ +ṣa +ina +I₃ +GIŠ +e +re +ni +: +ina +I₃ +NUN +HI +HI +EŠ +MEŠ +... +in?# +SAG +DU +su +LUH +si +NA₄ +UKUŠ₂ +HAB +SUD₂# +ina +I₃ +GIŠ +e +re +ni +EŠ +MEŠ? +... +ana +ŠA₃! +ŠUB +di +TA +ib +taš +lu +SAG +DU +su# +EŠ +MEŠ +ku +lil +ta₅ +HAD₂ +DU +... +I₃# +UDU# +BIL +ZA +ZA +ina +I₃ +NUN +HI +HI +ŠEŠ₂# +MEŠ +ma +SIG₂ +E₃# +a +... +A +GEŠTIN +NA +KALAG +GA +HI +HI# +SAG +DU# +su +tu +kaṣ₃ +ṣa +ma +EŠ +MEŠ? +... +x +x +... +x +x +x +x +x +SAR? +šu₂ +ma? +ina +še +ri₃ +ina +A +KUM₂ +ti +SAG +DU +su +LUH? +si? +I₃ +GIŠ +e# +re +ni +EŠ +MEŠ +I₃ +UDU +UKUŠ₂ +HAB# +tur# +ar₂ +x +x +x +x +x +x +x +MAR +ru +EŠ +MEŠ +ma +TI +DIŠ +KI +MIN +I₃ +GIŠ +e# +re# +ni# +KUM₂ +am +ana +SAG +DU +šu₂ +ŠUB +: +DIŠ +KIMIN +x +x +x +x +x +x +giš# +GEŠTIN# +KA₅# +A# +SUD₂ +ina +I₃ +GIŠ +e +re +ni +EŠ +MEŠ? +DIŠ +KI +MIN +PIŠ₁₀ +d# +ID₂# +ina +li +ši +HI +HI +EŠ +MEŠ +: +DIŠ +KIMIN +PIŠ₁₀# +d# +ID₂# +ina +LAL₃ +KUR +i! +HI +HI +EŠ# +MEŠ +DIŠ +KI +MIN +u₂ +IN₆ +UŠ₂ +SUD₂ +ina +I₃# +EŠ +MEŠ +: +DIŠ +KIMIN +u₂ +ak +tam +SUD₂ +ina +I₃ +UDU +HI +HI +EŠ +MEŠ +: +DIŠ +KIMIN +u₂ +TAL₂ +TAL₂ +MAR +ina +I₃ +EŠ# +MEŠ +DIŠ +KI +MIN +u₂# +KU₆ +ina +GA +AB₂ +: +KAŠ₃ +AB₂ +SIG₃ +aṣ +SAG +DU +su +LUH +giš +MAŠ +HUŠ +tur +ar₂ +SUD₂ +SAG +DU +su +SAR +ab +I₃ +EŠ +MEŠ +su +DIŠ +KI +MIN +I₃ +UDU +UKUŠ₂ +HAB +NA₄ +UKUŠ₂ +HAB +tur +ar₂# +SUD₂# +SAG +DU +su +SAR +ab +I₃ +EŠ +MEŠ +LAL +ŠUB +LAL +DIŠ +KI +MIN +x +x +x +SUD₂ +ina +I₃ +GIŠ +e +re +ni +HI +HI +EŠ +MEŠ +ma +SIG₂ +E₃ +a +DIŠ +KI +MIN +x +x +x +SUD₂ +SAG +DU +su +EŠ +MEŠ +ZI₃ +GU₂ +GAL +ZI₃ +GU₂ +TUR +u₂ +LAG +GA₂ +SUD₂ +ina +A +GAZI +sar +SILA₁₁ +aš +LAL +u₂ +ak +tam +NAGA +SI +x +x +x +ina +A +KUM₂ +ti +SAG +DU +su +LUH +si +43305 DIŠ +NA +gu +raš +tu +DIRI +u₂ +KU₆ +u₂ +x +... +DIŠ +niš +SUD₂ +ina +I₃ +HI +HI +EŠ +MEŠ +ma +SIG₂ +E₃ +a +DIŠ +KI +MIN +u₂ +ak +tam +u₂ +AB₂ +DUH +SUD₂ +ina +... +SAG +DU +su +LUH +si +BAR +giš +x +x +x +ta# +qal +lu +ARA₃ +en +MAR +DIŠ +KI +MIN +I₃ +ŠA₃ +KU₆ +EŠ +MEŠ +... +ud# +SUD₂ +MAR +DIŠ +KI +MIN +sa +ma +na₇ +ša₂ +E₂ +GAR₈ +ta +kar +ma +ŠEŠ₂ +... +x +ud# +ina +LAL₃ +KUR +i +BABBAR +u +A +LUH +ma +ina +eš# +U₂ +BABBAR +u₂ +KU₆ +u₂ +ak +tam +3 +U₂ +gu# +raš +ti +... +SAG +DU +su +ina +I₃ +EŠ +MEŠ +u₂ +IGI +lim +u₂ +KU₆ +SUHUŠ +giš +MAŠ +HUŠ +SUHUŠ +giš +bi +ni +UZU +DIR +SUD₂# +... +x +ina +A +SAG +DU +su +LUH +ina +I₃ +EŠ +MEŠ +DIŠ# +NA# +... +SAG +DU +su +LUH# +u₂ +LAL +u₂ +u₅ +ra +na +SUD₂ +ina +I₃ +EŠ# +MEŠ +... +SUD₂# +ina +LAL₃ +KUR +i +EŠ +MEŠ +... +i# +šal +lim +... +x +x +x +43480 DIŠ +KI +MIN +u₂# +LAG# +GANA₂# +GAZ# +I₃# +UDU# +A# +ZA# +LU# +LU# +SUD₂# +... +ana +ku +ra +ri +ZI +hi +hu +bu +uš +SUN₂ +ina +šur +šum +me +... +DIŠ +KI +MIN +u₂ +LAG +A +ŠA₃ +ina +IGI +ta +kar +IM +SAHAR +GE₆ +KUR +RA +... +DIŠ +KI +MIN +NUMUN +GA +RAŠ +u₂ +ak +tam +u₂ +ṣa +lam +ta₅ +DIŠ +niš +SUD₂ +... +DIŠ +NA +SAG +DU +su +ku +ra +ra +DAB +it +ŠE₁₀ +d +nisaba +SUD₂ +ta +kar +MAR# +x +x +x +x +x +x +x +x +x +x +laq +laq +ta +šu₂ +ta +tab +bal +ina +KAŠ +LUH +si +KU +KU +giš +TASKARIN +MAR +LAL +ina +IGI +KI +NA₂ +šu₂ +x +x +x +x +x +x +x +x +x +x +KU +KU +giš +TASKARIN +KU +KU +giš +e +lam +ma +ku +KU +KU +giš +kal +mar +hi +ŠE₁₀ +d +nisaba +x +x +x +x +x +x +x +ina +šer₂ +ti +DU₈ +SAR +ab +šim +MAN +DU +giš +EREN +tur +ar₂ +SUD₂ +ana +... +ina +A +GAZI +sar +LUH +si +KU +KU +giš +TASKARIN +KU +KU +giš +e +lam +ma +ku +KU +KU +giš +kal +mar# +hi +... +DIŠ +KI +MIN +SAG +DU +su +tu +gal +lab +I₃ +HAB +ŠEŠ₂ +ina +IGI +KI +NA₂ +šu₂ +DU₈ +SUHUŠ +... +SUHUŠ +giš +ku +ma +hi +IM +GU₂ +NIG₂ +NIGIN₂ +NA +u₂ +tar +muš +NUMUN +u₂ +qut +ra +te +x +... +DIŠ +niš +SUD₂ +ina +KAŠ₃ +AB₂ +GU₄ +SAG +DU +su +te +sir₂ +ina +KAŠ +LUH +si +ina +A +GAZI +sar +x +... +NUMUN +giš +ŠE +NU₂ +A +NUMUN +giš +NAM +TAR +NUMUN +GADA +NUMUN +u₂ +AB₂ +DUH +PA +u₂ +TAL₂ +TAL₂ +giš# +DIH₃? +x +x +x +x +x +x +x +x +x +x +u₂ +KUR +GI +RIN₂ +NA +u₂ +sag +gi +la +ta₅ +PA +u₂ +MA₂ +ERIŠ₄ +MA₂ +LA₂ +e +u₂ +MAŠ +HUŠ +x +x +x +x +x +x +x +HAD₂ +A +GAZ +SIM +ina +A +GAZI +sar +SILA₁₁ +aš +GUR +ma +HAD₂ +A +GAZ +SIM +ina +KAŠ +SAG +x +x +x +x +x +x +x +x +x +x +x +3# +u₄# +me# +NU# +DU₈# +ina# +4# +u₄# +me# +ina +DU₈ +ka +ina +KAŠ₃ +KUM₂ +me +LUH +si +... +... +x +x +x +... +43846 DIŠ +KI +MIN +x +x +ina# +I₃# +UDU# +SUD₂# +x +... +DIŠ +KI +MIN +PIŠ₁₀ +d +ID₂ +u₂ +GAMUN +GE₆ +... +DIŠ +KI +MIN +im +KAL +SUD₂ +... +DIŠ# +NA +SAG +DU +su +ku +ra +ra +DAB +... +u₂# +KUR +RA +sah +le₂ +e +u₂ +u₅# +ra +nu +... +I₃ +GIŠ +e# +re# +ni +EŠ +MEŠ +... +DIŠ +NA +ku +ra +ra +GIG +x +x +x +x +x +x +x +x +x +x +x +DIŠ +KI +MIN +A +GEŠTIN +NA +BIL +LA₂# +... +x +x +... +ina +ša +ni +i +IM +GU₂ +EN# +NA +... +ana +KI +MIN +ŠE₁₀ +d +nisaba +ana +x +... +DIŠ +KI +MIN +sa +ma +na₇ +te +sir₂ +... +MAR +ina +I₃ +NUN +EŠ +MEŠ +... +DIŠ +KI +MIN +A +GEŠTIN +NA +BIL +LA₂# +... +MAR +SUM +sar +SUM +SIKIL +sar +... +DIŠ +NA +SAG +DU# +su +... +x +ZI₃ +KUM +ZI₃ +GU₂ +GAL +IM +BABBAR +ba +aš +la +NAGA +SI# +... +IM +GU₂ +EN +NA? +... +GAZ +SIM +SAG +ka +u₂ +kal +I₃ +NUN +EŠ +MEŠ +LAL +ŠUB +giš +GEŠTIN +KA₅ +A +x +... +DIŠ# +KI# +MIN# +... +x +... +DIŠ +KI +MIN +x +x +x +šim +LI +DABIN +ina +A +GEŠTIN +NA +HI +HI +SAG +DU +su +tu +kaṣ₃ +ṣa +UD +3 +KAM# +ŠUB# +... +x +x +x +SAG# +DU +su +LUH +si +UD +3 +KAM +ŠUB +di +SAR +ab +UGU +ku +ra +ri# +x +... +x +x +x +ŠED₇ +I₃ +NUN +MUN +tu +ba +har +ina +DIDA +SIG +u +I₃# +GIŠ# +e# +re# +ni +... +... +x +x +tur# +ar₂ +SUD₂ +MAR +GURUN +UKUŠ₂ +HAB +x +... +... +x +x +a# +IGI +GIG +... +... +... +A +GEŠTIN# +NA# +... +I₃ +GIŠ +e +re +ni +EŠ +MEŠ +U₂ +BABBAR# +u₂# +... +u₂ +KU₆ +MUN +a +ma +ni₇ +ina +KAŠ₃ +ANŠE +u +A# +GEŠTIN +NA +... +EN₂ +su +ub +hi +im +su +ub +hi +im +a +na# +x +... +la +ni +hu +bi +la +a +ni +hu +bi# +la# +ni# +... +DU₃ +DU₃ +BI +šim +er +ra +UGU +ku +ra +ri +... +sa# +ma +na₇ +ša₂ +E₂ +GAR₈ +ta +kar +... +ina# +I₃ +NUN +SUMUN +HI +HI +x +... +EN₂ +ki# +ni +ip +ki +ni +ip +ba +ah# +... +DU₃ +DU₃ +BI +ina +an +ṣa +ab +ti +KUG +SIG₁₇ +IGI +GIG +ta +kaṣ₃ +... +x +x +GA +RAŠ# +sar +u₂ +ṣa +lam +ta₅ +u₂ +KUR# +RA? +... +EN₂ +ma +mit +GIM +šar +ra +qi₂ +ina +KA₂ +pil +ši# +un? +... +EN₂ +a +šar +tab +ba +ni +i +d +e₂ +a +lip +šur +x +... +EN₂ +at +he +ma +at +he +e +he +le +e +ma +at +he +le +... +DU₃ +DU₃# +BI# +na# +gap +pa +ša₂ +A +GEŠTIN +NA +ta +kar +qut +ra +MAR +x +... +5 +KA +INIM +MA +GIG +GIR +ZI? +hi? +x +x +x +hur +ri +im +su +ub +hur +ri +im +a +la +šu +uh +ta +x +... +x +x +x +x +x +x +a +pi +il +lat +aš +kur +ba +an +ni +id +ki +ia +ul +x +... +44346 ... +x +x +x +x +x +x +x +x +x +x +x +x +gi +ha# +ba# +x +x +x +x +x +x +x +x +x +x +ZI +hi +x +x +x +x +x +x +x +x +x +hu +bu₄ +uš +SUN₂ +ŠEŠ₂ +KUŠ +ANŠE +ina +IZI +tur +ar₂ +SUD₂ +MAR +a +la +pa +a +ina +IZI +x +x +x +x +x +x +x +x +x +tur +ar₂ +IGI +GIG +MAR +ta +ʾa +a +ša₂ +UDU +NITA₂ +IGI +GIG +EŠ +MEŠ +KUŠ +HAD₂ +A +GAZ +x +x +x +TI +GUD# +ID₂ +ina +IZI +tur +ar₂ +IGI +GIG +MAR +u₂ +IGI +lim +SUD₂ +IGI +GIG +EŠ +MEŠ +x +x +x +x +x +x +ta +kar +ina +an +ṣa +ab +ti +KUG +SIG₁₇ +IGI +GIG +ta +kaṣ₃ +x +x +x +x +x +x +x +TI +LA +KE₄ +x +x +x +x +x +x +x +x +x +x +x +si +ki +tu₂ +SAG# +DU +su +x +x +x +x +x +x +x +ina# +UD# +4# +KAM# +SAG# +DU +su +44513 ... +a +... +LUH? +si +... +MAR? +... +MAR? +... +MAR? +44525 DIŠ +NA +ŠA₃ +šu₂ +GIG +GA +gud +AB₂ +KUG +GA +I₃ +NUN +UD +2 +KAM₂ +NAG +... +DIŠ +NA +ŠA₃ +šu₂ +GIG +u₂ +GEŠTIN +KA₅ +A +SUD₂# +ina +KAŠ +NAG +u₂ +IM +DU? +SUD₂ +ina +KAŠ +NAG +u₂ +šiz +ba +na₇ +SUD₂ +ina +KAŠ# +NAG +1 +2 +SILA₃ +sah +le₂ +e +1 +2 +SILA₃ +NAGA +SI# +1 +2 +SILA₃ +IM +GU₂ +EN +NA +1 +2 +SILA₃ +giš +ŠE +NU +1 +2 +SILA₃ +ZI₃ +KUM +1 +2 +SILA₃ +šim +LI +1 +2 +SILA₃ +šim +GUR₂# +GUR₂ +1 +2 +SILA₃ +ZI₃ +GU₂ +GAL +1 +2 +SILA₃ +ZI₃ +GU₂ +TUR +1 +2 +SILA₃ +u₂ +SIKIL +1 +2 +SILA₃ +u₂ +NIG₂ +GIDRU# +1 +2# +SILA₃# +u₂# +ur₂# +ne₂# +e +GAZ +ina +KAŠ +SAG +ina +urudu +ŠEN +TUR +tara +bak +ina +TUG₂ +te +ṭer₅ +ri +IGI +u +MAŠ +SILA₃ +LAL +id +ana +KI +MIN +1 +3 +SILA₃ +sah +le₂ +e +1 +3 +SILA₃ +ŠE₁₀ +TU# +mušen +1 +3 +SILA₃ +ŠE +SA +A +1 +3 +SILA₃ +šim +LI +1 +3 +SILA₃ +šim +GUR₂ +GUR₂ +HI +HI +ma +la +na +aṣ +ma +ti +tu# +šam +ṣa +ina +KAŠ +SAG +SILA₁₁ +aš +LAL +id +ana# +KI +MIN +1 +MA +NA +PA +giš +ŠE +HAR +SUD₂ +ina +A# +GAZI +sar +ŠEG₆ +šal +tu +kaṣ₃ +ṣa +LAL +id +ana +KI +MIN +1 +2 +SILA₃ +ZA₃ +HI +LI +1 +2 +SILA₃ +ŠE +SA +A +SUD₂ +ina +A +GAZI +sar# +SILA₁₁# +aš +šim +GUR₂ +GUR₂ +šim +LI +ana +IGI +ta +za +ru₃ +IGI +u +MAŠ +SILA₃ +LAL +ana +KI +MIN +1 +2 +SILA₃ +ZI₃ +MUNU₆ +1 +2 +SILA₃ +ZI₃ +DUH +ŠE +GIŠ +I₃ +1 +2 +SILA₃ +ZI₃ +GIG +1 +2 +SILA₃ +šim# +GUR₂# +GUR₂# +1 +2 +SILA₃ +šim +LI +SUD₂ +HI +HI +ina +A +GAZI +sar +ta +la +aš +LAL +id +DIŠ +NA +ŠA₃ +šu₂ +GIG +PA +u₂ +er +re +e +HAD₂ +A +GAZ# +SIM# +ina +LAL₃ +KAŠ +SAG +u +I₃ +hal +ṣi +SIG₃ +aṣ +ba +lu +pa +tan +NAG +šu₂ +ina +DUR₂ +šu₂# +SI +SA₂ +ma +TI +DIŠ +NA +ŠA₃# +šu₂ +GIG +šim +su +a +di +tu +ha +sa +ina +A +ŠED₇ +tu# +la +bak +NU +pa +tan +NAG +DIŠ +NA +ŠA₃# +šu₂ +GIG +ma +DUB₂ +NUMUN +GIŠ +GI +ZU₂ +LUM +MA +SUD₂# +ina +KAŠ +SAG +NAG +1 +2 +SILA₃ +sah +le₂ +e +1 +2 +SILA₃ +NAGA +SI +1 +2 +SILA₃# +ZI₃# +GIG +1 +2 +SILA₃ +ZI₃ +KUM +GAZ +ina +KAŠ +SAG +SILA₁₁ +aš +ina +TUG₂ +SUR +IGI +u +MAŠ +SILA₃ +LAL +DIŠ +NA +ŠA₃ +šu₂ +GIG +u₂ +IGI +lim +SUD₂ +ina +KAŠ +SAG +tara# +muk# +ina +MUL₄ +tuš +bat +NU +pa +tan +NAG +PA +giš +ŠE +NU +GAZ +ina +ZI₃ +KUM +HI +HI +ina +A +GAZI +sar# +tara +bak +ina +TUG₂ +HI +A +SUR +IGI +u +MAŠ +SILA₃ +LAL +ana +KI +MIN +GA +RAŠ +sar +pu +ut +ta +TI +ta +sak₃# +ina# +GA# +NAG +1 +2 +SILA₃ +ZA₃ +HI +LI +1 +2 +SILA₃ +ŠE +SA +A +ina +GA +SILA₁₁ +aš +ina +TUG₂ +SUR +LAL +DIŠ +NA +ŠA₃ +šu₂ +GIG +ma +ŠA₃ +GIR₃ +PAD +DU +šu₂ +SIG₇ +ŠA₃ +šu₂ +GIG +MEŠ +DIRI +UD +DA +SA₂ +SA₂ +I₃ +UDU +UKUŠ₂ +HAB +ina +ZI₃ +ŠE +SA +A +HI +HI +14 +ku +pa +tin +ni +LAL₃ +SUD# +u₂# +al +lat +1 +2# +SILA₃ +ZA₃ +HI +LI +giš +si +ha +SUD₂ +ina +UZU? +GUD? +GUR₄# +RA# +GU₇ +MEŠ +1 +2# +SILA₃ +ZA₃ +HI +LI +ṭe₄ +ne +ti₃ +ina +x +x +x +SILA₁₁# +aš# +LAL +DIŠ +NA +ŠA₃ +šu₂ +GIG +ma +di +ik +ša₂ +TUKU +ši +NINDA +GU₇# +KAŠ +NAG +ana +DUR₂? +šu₂ +DUB +ak# +ru# +pu +uš +ta +ina +A +GAR₃ +BURU₈ +GIGURU₃? +u₂ +NU# +LUH +HA +SUD₂ +ina +A +NAG +U₂# +BABBAR?# +ina +I₃? +GIŠ? +tara? +bak? +ana +DUR₂ +šu₂ +DUB +ak +GEŠTIN# +SUR +NAG +šim +LI# +ŠIM# +ŠAL +x +x +x +ina +urudu +ŠEN +TUR# +tara +bak +ina +TUG₂ +SUR +LAL +ana +KI +MIN +U₂ +BABBAR# +ina +I₃ +GIŠ +NAG +i +ar₂ +ru₃ +x +x +x +x +x +x +x +u₂ +IN₆ +UŠ₂ +u₂ +EME +UR +GI₇ +ina +A +ŠEG₆ +GA₂ +tara +has₂ +su +A +GAZI +sar +x +x +x +x +x +x +GIŠIMMAR? +PA +giš +šu +še +šim +ŠE +LI? +PA +giš +ŠE +NU +šim +LI +šim +GUR₂ +GUR₂ +x +x +x +x +x +ina +KUŠ +te +ṭer₅ +ri +LAL +ana +KI +MIN +u₂# +GEŠTIN +KA₅ +A +ina +KAŠ +NAG +U₂ +BABBAR +ina +I₃ +NAG# +x +x +x +x +x +ina +LAL₃ +GU₇ +A +giš +ŠE +NU +A +GAZI +sar +ana +DUR₂ +šu₂ +DUB +ak +PA# +x +x +x +x +u₂# +SIKIL +PA +u₂ +ŠAKIRA +PA +u₂ +IN₆ +UŠ₂ +GAZ +x +x +x +x +x +SUR +LAL +ana +KI# +MIN +u₂ +NU +LUH +HA +u₂# +ti +ia₂ +ta₅ +SUD₂ +ina +KAŠ +NAG# +U₂ +BABBAR +ina +I₃ +GIŠ +tara +bak +ana +DUR₂ +šu₂ +DUB +ak +PA +u₂# +GUR₂ +UŠ +PA +giš +KIŠI₁₆ +PA +giš +DIH₃ +ina +A# +ŠEG₆ +GA₂ +tara +has₂ +su +A +giš +ŠE +NU +A +GAZI +sar +ana +DUR₂ +šu₂ +DUB +ak +šim +LI +šim +GUR₂ +GUR₂ +x +x +x +ina +urudu +ŠEN +TUR +tara +bak +ina +TUG₂ +te +ṭer₅ +ri +LAL +DIŠ +NA +ŠA₃ +šu₂ +GIG +ma +ŠA₃ +... +x +x +x +x +x +x +... +45373 ana# +KI# +MIN# +U₂# +BABBAR# +x +... +x +u₂ +SIKIL +x +x +x +x +x +x +... +ana +DUR₂ +šu₂ +DUB +ak +šim +LI +šim# +ŠE# +LI# +šim# +GAM +MA# +ILLU# +šim# +BULUH +ŠIM +HI +A +GAZ# +ina# +I₃# +UDU# +HI +HI +ina +KUŠ +SUR +LAL +ana +KI +MIN +šim +ŠE +LI +BABBAR +ina +KAŠ +NAG# +ma +i# +ar₂ +ru₃ +SUHUŠ +giš +NAM +TAR +NITA₂ +ina +KAŠ +NAG +ma +i +ar₂ +ru₃ +LAL₃# +KUR +RA +HAD₂ +DA +ina +A +giš +ŠE +NU +tara +has₂ +su +A +GEŠTIN +NA +I₃ +GIŠ +KUM₂ +am +ana +DUR₂ +šu₂ +DUB +ak +PA +giš +šu +še +PA +GIŠ +GI +ZU₂ +LUM +MA +PA +u₂ +ŠAKIRA +PA +u₂ +EME +UR +GI₇ +šim +LI +ZU₂ +LUM +MA +SUD₂ +ina +KAŠ +HI +HI +GUR +ma +HAD₂ +DU +GAZ +SIM# +ina# +x +x +x +ina +KUŠ +SUR +LAL +ana +KI +MIN# +u₂ +KUR +KUR +ina +KAŠ +NAG +ma +i +ar₂ +ru₃ +U₂ +BABBAR +ina +I₃ +GIŠ +NAG +ma +i +ar₂ +ru₃ +u₂ +PEŠ +TUR +ZI +GIŠIMMAR +u₂ +NAM +TAL +šim +LI +GAZI +sar +ina +A +ŠEG₆ +GA₂ +tara +has₂ +su +šim +GUR₂ +GUR₂ +ta +sak₃ +x +x +x +KUM₂ +am +I₃ +GIŠ +ana +ŠA₃ +tu +na +tak +ana +DUR₂ +šu₂ +DUB +ak +PA +giš +ŠENNUR +PA +giš +MA +NU +PA +giš +ŠE +NU +PA +giš +GE₆ +PAR₇ +x +giš +šim +LI +šim +GUR₂ +GUR₂ +GAZ +ina +KAŠ +HI +HI +GUR +ma +HAD₂ +A +GAZ +ina +I₃ +UDU +HI +HI +ina +KUŠ +te +ṭer₅ +ri# +LAL# +DIŠ +NA +ŠA₃ +šu₂ +GIG +ma!(GIŠ) +mim +ma +GIG +u₂ +KUR +RA +u₂ +HAR +HAR +u₂ +KUR +KUR +u₂ +GAMUN +GE₆ +u₂ +ur₂# +ne₂# +e +u₂ +tar +muš₈ +u₂ +IGI +lim +u₂ +eli +kul +la +u₂ +SIKIL +u₂ +im +hur +NIŠ +GURUN +giš +DIH₃? +x +u₂# +x +x +PA +u₂ +UKUŠ₂ +HAB +SUD₂ +ina +KAŠ +NAG +ina +DUR₂ +šu₂ +SI +SA₂ +ina +GE₆ +ina +A +GAZI +sar +ŠEG₆ +GA₂ +x +x +x +... +x +x +x +UZU# +kab +ra +ša +ŠAH +GU₇ +TI +... +SUD₂# +ina +I₃ +GIŠ +NU +pa +tan +EME +šu₂ +DAB +bat +... +x +šu₂ +u₂ +sak₆ +ka +... +x +x +ina# +I₃ +GIŠ +HI +HI +ta +kan +nak +ma +UD +3 +KAM₂ +GAR +... +i# +ar₂# +ru₃ +UD +7 +KAM₂ +NAG +MEŠ +... +ina +KAŠ +SAG +NAG +... +x +PA +giš +NU +UR₂ +MA +... +ina# +KAŠ +SAG +NAG +... +x +ina +I₃ +GIŠ +u +KAŠ +SAG +GAZ +... +x +x +ad +... +... +x +... +SILA₁₁ +aš +... +TU₅ +MEŠ# +šu₂ +ma +TI +... +NAG +ma +TI +... +TI?# +uṭ# +... +45797 ... +... +x +... +NA₄ +ZU₂ +LUM +MA +x +x +... +A +MEŠ +NU# +NAG# +A +MEŠ +... +u₂ +KUR +RA +SUD₂ +ina +A +... +BAR +giš +NU +UR₂ +MA +a +ša +im +SI +SA₂ +ina +... +SUM +sar +SIG₇ +su +hi +bi +iš +hi +bi +iš +u₂ +al +lat +x +... +NUMUN +u₂ +a +zu +ki +ra +ni +SUD₂ +... +1 +3 +SILA₃ +A +GEŠTIN +NA +1 +3 +SILA₃ +GAZI +sar +10 +KISAL +MUN +1 +2 +SILA₃ +I₃ +GIŠ +BARA₂ +GA +... +A +UZU +GUR₄ +5 +GIN₂ +MUN +ana +ŠA₃ +ŠUB +ma +NU +pa# +tan# +NAG +: +SUHUŠ# +... +I₃ +UDU +u₂ +UKUŠ₂ +HAB +GAZ +1 +SILA₃ +A +GEŠTIN# +NA# +ŠEG₆ +GA₂ +ana +ŠA₃ +ŠUB# +ma +... +šim +LI# +SUD₂ +ina +I₃# +GIŠ# +... +DIŠ +ma +UH₂ +TUKU +TUKU +u₂ +LAG +GAN₂ +SUD₂ +ina +A +giš +NU +UR₂ +MA# +ŠED₇# +ina +DUR₂ +šu₂ +DUB# +ak# +ma +TI +ša +ru +ra +ša +u₂ +UKUŠ₂ +HAB +HAD₂ +DU +GAZ +ana +ŠA₃ +NIG₂ +SILA₁₁ +GA₂ +u +LAL₃ +KUR +i# +HI# +HI# +ŠE₁₀ +TU +mušen +MEŠ +u₂ +al +lat +KAŠ +SAG +ZU₂ +LUM +NAG +u₂ +HAB +SUD₂ +ina +I₃ +GIŠ +BARA₂# +GA# +NAG +NAG# +DIŠ +NA +ŠA₃ +MEŠ +šu₂ +MU₂ +MU₂ +it +ta +ne₂ +bi +ṭu +ŠA₃ +šu +ana +par +re +e +e +ta +ne₂ +pa +aš₂ +ana +TI +šu₂# +SUM +sar +u₂ +GAMUN +GE₆ +TEŠ₂ +BI +SUD₂ +ina +KAŠ +SAG +NU +pa +tan +NAG +MEŠ +TI# +ana +KI +MIN +u₂ +SIKIL +SIG₇ +su +SUD₂ +KI +I₃ +ŠAH +HI +HI +NU +pa +tan +u₂ +na +ṣab +KAŠ +BIL₂ +LA₂ +NAG +TI +DIŠ +NA +ŠA₃ +MEŠ +šu₂ +MU₂ +MU₂ +it +te +ne₂ +bi +ṭu +IM +ina +ŠA₃ +šu₂ +NIGIN +ur +i +le +bu +I₃ +UDU +u₂ +UKUŠ₂ +HAB +ana +DUR₂ +šu₂ +GAR# +an +u₂ +SUM +sar +u₂ +zi +ba +a +SUD₂ +ina +KAŠ +NAG +MEŠ +2 +UD +me +1 +2 +SILA₃ +TA +AM₃ +I₃ +GIŠ +ana# +DUR₂# +šu₂ +DUB +ak +TI +DIŠ +NA +ŠA₃ +MEŠ +šu₂ +MU₂ +MU₂ +hu +it +te +ne₂ +bi +ṭu +NU +pa +tan +KAŠ +LAL₃ +bah +ra# +NAG# +šu₂ +i +ar₂ +ru +A +GEŠTIN +NA +ŠEG₆ +šal +u₂ +KUR +RA +MUN +TEŠ₂ +BI +SUD₂ +ana +ŠA₃ +GAZ +LAL₃ +u +I₃ +hal +ṣa# +ŠUB +ana +DUR₂ +šu₂ +DUB +ak +TI +DIŠ +NA +ŠA₃ +MEŠ +šu₂ +it +te +nen +bi +ṭu₃ +NU +pa +tan +KAŠ +ina +dug +LA# +HA# +AN# +NAG +A +GEŠTIN +NA +ŠEG₆ +GA₂ +u₂ +KUR +RA +MUN +eme +sal +li₃ +ana +ŠA₃ +ŠUB +I₃ +GIŠ +ana +ŠA₃ +tu +na +tak +ana +ŠA₃ +na +aš +pak +ti +DUB# +ak# +I₃ +GIŠ +ina +ŠU +SI +GUB₃ +ka +ka +lu +šu₂ +ŠEŠ₂ +su +DIŠ +NA +ŠA₃ +MEŠ +šu₂ +it +te +ne₂ +bi +ṭu +I₃ +UDU +UKUŠ₂# +HAB# +ana +DUR₂ +šu₂ +GAR +an +SUM +sar +7 +u +7 +u₂ +al# +lat +SUM +sar +u₂ +GAMUN +GE₆ +SUD₂ +ina +KAŠ +NAG +LAL₃ +KUR +i# +I₃ +GIŠ +ana +DUR₂ +šu₂ +DUB +NUMUN +u₂ +a +zu +ki +ra +a +ni +SUD₂ +GU₇? +DIŠ +ma +UH₂ +TUKU +TUKU +gan +ha +UD +DA# +KUR +A +giš +NU +UR₂ +MA +ŠUR +NAG? +GA +I₃ +GIŠ +EME +šu₂ +DAB +bat +NAG# +1 +SILA₃ +KAŠ +NAG +šim +LI +SUD₂ +ina +KAŠ +NAG +u₂ +GAMUN +GE₆ +sar +SUD₂ +ina +KAŠ +NAG +u₂ +GAMUN +GE₆ +sar +SUD₂ +ina +GEŠTIN +NAG +I₃ +GIŠ +u₂ +al +lat +DIŠ +NA +SAG +ŠA₃ +šu₂ +KUM₂ +ŠA₃# +MEŠ +šu₂ +MU₂ +MU₂ +hu +1 +2 +SILA₃ +šim +HAB +ina +šur +šum +me +KAŠ +ta +rab +bak +ina# +TUG₂# +TE +LAL +id +ana# +na +aṣ +ma +ti +GAZI +sar +ŠIM +ŠAL +ta +za# +ru₃# +IGI# +u# +MAŠ# +SILA₃ +LAL +x +x +x +x +x +x +x +x +x +x +x +x +x +x +šim +LI +šim +ŠE +LI +u₂# +HAR# +HAR# +ana# +KAŠ# +ŠUB# +x +x +x +x +x +x +x +GAZ# +lu# +ba# +hir₂ +NAG# +šu₂# +ina +A₂ +MUŠEN +tu +šap +ra +šu +ma +TI +DIŠ# +NA# +ŠA₃ +MEŠ +šu₂ +ma +gal +nap +hu# +NINDA# +MEŠ +KAŠ +MEŠ +ina +KA +šu₂ +GUR +GUR +ra +SAG +DU +su +GABA +su +LAL₂ +id +ra +bi +ik +ZI₃ +KUM +ŠEG₆# +šal +ina +LAL₃ +MEŠ +I₃ +UDU +u +I₃ +NUN +NA +GU₇ +MEŠ +SUM +sar +SUM +SIKIL +sar +GA# +RAŠ# +sar +sah +le₂ +e +u₂ +ur₂ +ne₂ +e +3 +UD +me +NU +GU₇ +A +NU +TU₅ +ma +TI +DIŠ +NA +ŠA₃ +MEŠ +šu₂ +nap +hu +x +x +KUM₂? +ŠUB +MEŠ +su +NINDA +u +KAŠ +LAL +UH₂ +TUKU +TUKU +ši +ana +TI +šu₂ +u₂ +IGI +lim +u₂ +IGI +NIŠ +SUHUŠ +giš +NAM +TAR +a# +he +nu +u₂ +SUD₂ +ina +KAŠ +NAG +šu₂ +i +par +ru +ma +EGIR +an +ne₂ +e +I₃ +hal +ṣa +u +KAŠ +NAG +šu₂ +A +GAZI +sar +u +A +GEŠTIN +NA +ŠEG₆ +šal +ana +DUR₂ +šu₂ +DUB +ak +ma +šim +GUR₂ +GUR₂ +šim +LI +šim +GAM +MA +PA +giš +ŠE +HAR# +PA +giš +GE₆ +PAR₃ +PA +giš +ŠE +NU₂ +A +NUMUN +u₂ +ur +ba +ti +7 +U₂ +HI +A +ŠEŠ +TEŠ₂ +BI +GAZ +SIM +KI +I₃# +UDU +DUH +LAL₃ +u +šim +HAB +tu +sa +mah +ina +KUŠ +EDIN +SUR +LAL₂ +su +ma +TI +DIŠ +NA +ŠA₃ +MEŠ +šu₂ +nap +hu# +gu +ha +u +UH₂ +TUKU +MEŠ +ši +NINDA +u +KAŠ +LAL +ana +TI +šu₂ +u₂ +KUR +RA +sah +le₂ +e +DIŠ# +niš# +SUD₂# +ina +KAŠ +NAG +šu₂ +u₂ +ur₂# +ne₂ +e +ina +A +GAZI +sar +ŠEG₆ +šal +ta +ša₂ +hal +ŠED₇ +lu +ba +hir₂ +ana +DUR₂ +šu₂ +DUB +TI# +DIŠ +NA +ŠA₃ +MEŠ +šu₂ +nap +hu# +SAG +ŠA₃ +šu₂ +ru +pu +ul +ta +TUKU +MEŠ +ši +ana +TI +šu₂ +U₅ +ARGAB +mušen +u₂ +tu +lal +GI +ŠUL +HI +PA +giš +šu +še +ina +MUD₂ +EREN +u +A +GAZI +sar +tu +ka +an +LAL₃ +I₃ +hal +ṣa +I₃ +NUN +u +KAŠ +SAG +ana +ŠA₃ +ŠUB +di +ina +MUL₄ +tuš +bat +ina +še +ri₃ +ta +ša₂ +hal +NU +pa +tan +NAG +ma +TI +DIŠ +NA +ŠA₃ +MEŠ# +šu₂ +nap +hu +ZI₃ +ŠE +SA +A +ZI₃ +MUNU₆ +NUMUN +u₂ +KI +d +IŠKUR +di +ik +ta +ša₂ +ZU₂ +LUM# +TEŠ₂ +BI +SUD₂ +NU +pa +tan +GU₇ +MEŠ +A +MEŠ +NU +NAG +A +MEŠ +SAG +ŠA₃ +šu₂ +tu +sa +lah₂ +ma +TI# +DIŠ +NA +ŠA₃ +šu₂# +e +me +er +10 +KISAL +A +giš +ŠE +NU +10 +KISAL +A +MUN +ina +LAL₃ +u +KAŠ +NAG +ana +KI +MIN +giš +NU +UR₂ +MA +GU₇ +A +giš +NU +UR₂ +MA +NAG +ana +KI +MIN +šim +LI? +SUD₂ +ina +KAŠ +NAG +: +ana +KI +MIN +SIG₂ +GAL₄ +LA +munus +ŠU +GI +ina +MURUB₄# +KA +šu₂ +GAR +an +ana +KI +MIN +giš +NU +UR₂ +MA +PA +giš +MA₂ +RI₂ +IŠ +MA₂ +RA +SUD₂ +ina +A +NAG +DIŠ +NA +ŠA₃ +šu₂ +IM +ṣe +en +ŠUM!(DIM₃) +GAM +ME +ZABAR +lu +GIR₂ +ZABAR +i +lik +ma +TI +SAHAR +URUDU +NIG₂ +KALAG +GA +tu +uš +ṣe +en +šu₂ +i +ši +hi +iq +ma +TI +DIŠ +NA +ŠA₂# +MEŠ +šu₂# +em +ru# +10 +KISAL +PA +giš +šu +nim +10 +KISAL +LAL₃# +ana# +ŠA₃# +KAŠ# +ŠUB# +ina +MUL₄ +tuš +bat +ina +še +ri₃ +NU +pa +tan +NAG +MEŠ +ma +TI +DIŠ +NA +ŠA₃ +šu₂ +em +ru +MU₂ +MU₂# +hu# +ŠA₃# +šu₂# +iš +ta +na +si +NINDA +u +A +GUR +SUHUŠ +giš# +NAM# +TAR +NITA₂ +šim +HAB +ina +KA +šu₂ +i +na +ʾ +is +LAL₃ +KUR +i +ina +KAŠ +SAG +NAG +šim +HAB +ina +KAŠ +SAG +ŠEG₆ +GA₂ +ana +DUR₂ +šu₂ +DUB +ak +PA +giš +GE₆ +PAR₃ +šim +LI +šim +KU₇ +KU₇ +ILLU +a +bu +ka +ti +giš +ŠE +NU +GAZ +ina +I₃ +UDU +HI +HI +ina +KUŠ +TE# +LAL +ina +A +giš +ŠE +NU +ir +ta +na +haṣ +DIŠ +NA +ŠA₃ +šu₂ +x +x +x +x +KUM₂ +ŠUB +ŠUB +su +IM +TUKU +TUKU +NINDA +A +GUR# +u₂ +IGI +NIŠ +SUHUŠ +giš +NAM +TAR +NITA₂ +ina +KAŠ +SAG +SUD₂ +NAG +šu₂ +EGIR +šu₂ +I₃ +hal +ṣa +ina +KAŠ +NAG +SI +SA₂ +GAZI +sar +A +GEŠTIN +NA +ŠEG₆ +šal +ana +DUR₂ +šu₂ +DUB +šim +LI +x +x +x +šim +HAB +PA +giš +GE₆ +PAR₃ +PA +giš +ŠE +NU +GAZ +ina +I₃ +UDU +HI +HI +ina +KUŠ +TE +LAL +KIMIN +DIŠ +NA +ŠA₃ +šu₂ +x +x +x +x +NINDA +u# +A +ina +KA +šu₂ +GUR +GUR +ra +SAG +KI +MEŠ +šu₂ +up# +ta +ṭa +aṭ!(TA) +ra +x +x +x +x +x +x +x +... +x +x +ina# +I₃# +ŠAH# +GU₇ +MEŠ +SUM +sar +SUM +SIKIL +sar +x +x +x +x +... +x +... +x +... +47173 DIŠ +NA +ŠA₃ +šu₂ +e +sil +SAG +DU +GU₇ +šu₂ +... +a +ba +du₁₀ +u +me +ni +ir +a +ba +du₁₀ +u +me +ni +ir +... +KA +INIM +MA +LU₂ +es +li +DU₃ +DU₃ +BI +EN₂# +3# +šu₂# +ana# +ŠA₃ +ŠID +nu +... +DIŠ +NA +ŠA₃ +šu₂ +NINDA +u +KAŠ +la +i# +mah# +har +1 +3 +SILA₃ +A +ZU₂ +LUM# +MA# +1 +3# +SILA₃# +A +GAZI# +sar# +x +x +x +x +x +x +EGIR +šu₂ +AL +US₂ +SA +A +GEŠTIN# +NA +NAG +ma +KUM₂ +ša₂ +ŠA₃ +šu₂ +i +ša₂ +haṭ +aṭ +im +me +si# +x +x +x +x +DIŠ +NA +ŠA₃ +šu₂ +NINDA +la +i +mah +har# +NUMUN +giš +ŠINIG +SUD₂ +ina +LAL₃ +u +I₃ +NUN +HI +HI +ba +lu +pa +tan +NAG +šu₂ +ma +TI +DIŠ +NA +NINDA +u +KAŠ +LAL +ṭu +u₂# +HAR +HAR +u₂ +NU +LUH# +HA +u₂ +ur₂ +nu +u +GAZI +sar +u₂ +ti +ia₂ +ta₅ +u₂ +SUMUN +DAR +u₂# +x +x +x +šim +GUR₂ +GUR₂ +šim +GAM +MA +šim +MAN +DU +giš +EREN +giš +EREN +SUMUN +šim +MUG +ZU₂ +LUM +MA +LAGAB +MUNU₆ +MUN +giš +ŠE +NU +A +GEŠTIN +NA +KALAG +GA +ina# +KAŠ +tara +muk +ina +MUL₄ +tuš +bat +ina +še +ri₃ +ina +urudu +ŠEN +TUR +ŠEG₆ +šal +5 +GIN₂ +I₃ +hal +ṣa +ana +IGI +ŠUB +ana +DUR₂ +šu₂ +DUB +ak +ana +ŠA₃ +UTUL₂ +ŠUB +ma +IGI# +4# +GAL₂ +LA +U₂ +mat +qa +IGI +4 +GAL₂ +LA +U₂ +TUR +mat +qu# +IGI +4 +GAL₂ +LA +u₂ +a +ra +ri +ia₂ +nu# +: +u₂ +mer +gi +ra +a +nu# +90 +u₂ +si +sin +ni +ŠA₃ +mal +ma +liš +SUD₂ +ina +KAŠ +lu₂ +KURUN₂ +NA +NU +pa +tan +NAG +ma +ina +DUR₂# +šu₂# +SI +SA₂ +ma +TI# +DIŠ +NA +ŠA₃ +MEŠ +šu₂ +ga +an +nu +ga +ah +ha +TUKU +NINDA +u +A +muṭ +ṭu₂ +UH₂ +TUKU +MEŠ +ši +u₂ +KUR +RA +SUD₂ +ina# +I₃# +GIŠ# +NAG +ma +i +ar₂# +ru₃ +u₂ +KUR +RA +sah +le₂# +e +SUD₂ +ina +KAŠ +NAG +u₂ +ur₂ +ne₂ +e +ina +A +ŠEG₆ +šal +tu +kaṣ₃ +ṣa# +ana# +DUR₂# +šu₂ +DUB +ak +PA +giš +GE₆# +PAR₃# +PA +u₂ +KI +d +IŠKUR +PA +giš +bi +ni +šim +LI +šim +GUR₂ +GUR₂ +šim +GAM +MA +šim# +HAB +šim +x +x +ina +A# +ZU₂ +LUM +MA +tara +bak +GUR +ma +HAD₂ +A +GAZ +ina +I₃ +UDU +HI +HI +ina +KUŠ +TE +LAL +ina +A +giš +ŠE +NU +ir +ta# +na# +haṣ +ma +TI +DIŠ +NA +ŠA₃ +šu₂ +e +ta +na +ša₂ +aš +ma +NINDA +u +KAŠ +SAG +la +i +mah +har +MAŠ +SILA₃ +MEŠ +šu₂ +GU₇ +MEŠ +šu₂ +SAG +DU +su +gi +na +a +LAL +x +x +x +UD +7 +KAM₂ +SUM +sar +SUM +SIKIL +sar +GA +RAŠ +sar +NU +GU₇ +ina +A +giš +ŠE +NU +RA +MEŠ +NUMUN +u₂ +UKUŠ₂ +HAB +NUMUN +u₂ +HAR +HAR +ina +KAŠ +NAG +ma +TI +DIŠ +NA# +ŠA₃ +šu₂ +ha +ah +ha +DIRI +ana +TI +šu₂ +GI +DU₁₀ +šim +BAL +šim +LI +u₂ +HAR +HAR +šim +ŠE +LI? +BABBAR? +ina +KAŠ +SAG +ŠUB +ŠEG₆ +šal +ta +ša₂ +hal +lu +ba +hir₂ +10 +KISAL +LAL₃ +ana +ŠA₃ +GAZ +NU +pa +tan +NAG +šu₂ +i +ar₂ +ru₃ +ma? +ina +A₂ +GU₂ +ZI +GA +LAL₃ +I₃ +hal +ṣa +u +KAŠ +TEŠ₂ +BI +HI +HI +NU +pa +tan +EME +šu₂ +DAB +bat +NAG +šu₂ +TI +DIŠ +NA +ha +hu# +DAB +su +NUMUN +u₂ +SIKIL +NUMUN +giš +GEŠTIN +KA₅ +A +u₂ +AB₂ +DUH +u₂ +NIGIN +sar +u₂ +TAL₂ +TAL₂ +5 +U₂ +MEŠ +ŠEŠ +TEŠ₂ +BI +SUD₂? +ina +A +GAZI +sar +tara# +bak# +ina +TUG₂ +HI +A +SUR +SAG +ŠA₃ +šu₂ +LAL₂ +id +U₂ +BABBAR +SUD₂ +ina +A +MEŠ +NU +pa +tan +NAG +TI +ana +KI +MIN +ILLU +šim +BULUH +SUD₂ +ina +GEŠTIN +ŠUR +RA +NU +pa +tan +NAG +TI +ana +KI +MIN +u₂ +x +x +SUD₂ +ina +KAŠ +SAG +NU +pa +tan +NAG +TI +DIŠ +NA +IM +ina +ŠA₃# +šu₂# +NIGIN +hur +ana +TI +šu₂ +SUHUŠ +u₂ +EME +UR +GI₇ +ša +ina +ZI +ka +d +UTU +NU +IGI# +BI +HAD₂ +A +SUD₂ +ina +KAŠ +SAG +NU +pa +tan +NAG +TI +DIŠ +NA +IM +ina +ŠA₃ +šu₂ +i +le# +eb +bu +u₂ +EME +UR +GI₇ +NUMUN +u₂ +EME +UR +GI₇ +DIŠ +niš +SUD₂ +ina +KAŠ +NU +pa +tan +NAG +TI +DIŠ +NA +IM +GIM +di +ik +ši +ina +ŠA₃# +šu₂ +TAG +MEŠ +šu₂ +1 +2 +GIN₂ +giš +EREN +1 +2 +GIN₂ +giš +ŠUR +MIN₃ +1 +3 +GIN₂ +šim +GIR₂ +10 +GIN₂ +giš +EREN +SUMUN +10 +GIN₂ +MUN +eme +sal +li₃ +šim +LI +x +x +x +x +x +x +x +ina# +KAŠ +SAG +ŠEG₆ +šal +I₃ +GIŠ +ana +IGI +ŠUB +ana +DUR₂ +šu₂ +DUB +ak +DIŠ +NA +IM +ina +ŠA₃ +šu₂ +uš +tar +ʾ +ab +i +le +he +eb +ki +ib +su +šu₂ +še +pi +BI +GABA +su +u +MAŠ +SILA₃ +MEŠ +šu₂ +GU₇ +MEŠ +šu₂ +UZU +MEŠ +šu₂ +u₂ +šam +ma# +mu +šu₂ +u +GIR₂ +GIR₂ +šu₂ +UZU +MIN +šu₂ +ma +ṭu +u +ni +ip +še +DIRI +SAG +MEŠ +šu₂ +i +ta +na +nu +u₂ +KUM₂ +MEŠ +ina +kal +UD +me +u₂ +kil₂ +šu +x +x +x +x +x +x +šim +LI +u₂ +KUR +KUR +u₂ +HAR +HAR +sah +le₂ +e +GAZI +sar +MUN +a +ma +ni₇ +u₂ +ur₂ +ne₂ +e +PA +giš +bi +ni +9 +U₂ +HI +A# +ŠEŠ +TEŠ₂ +BI +SUD₂ +ina +GEŠTIN +DU₁₀ +GA +u +KAŠ +SAG +ta +ra +sa +an +ina# +GE₆# +ana# +IGI# +MUL₄ +tuš +bat +ina +A₂# +GU₂# +ZI +GA +ŠEG₆ +šal +ta +ša₂ +hal +ŠED₇ +7 +ŠE +MEŠ +HENBUR₂ +u₂ +UKUŠ₂ +HAB +7 +ŠE +MEŠ +na₄ +AN +ZAH +TEŠ₂ +BI +SUD₂ +ana +ŠA₃ +GAZ +la +am +d +UTU +na +pa +hi +NAG +šu₂ +ina +A₂ +tu +šap +ra +šu₂ +šum₄ +ma +DU₁₀ +GA +NU +IGI +mur +ana +DUR₂ +šu₂ +DUB +ak +TI +DIŠ +NA +NINDA +GU₇ +KAŠ +NAG +ma +la +i +še +eb +bi +ŠA₃ +MEŠ +šu₂ +MU₂ +MU₂ +hu +ŠA₃ +šu₂ +NU +IGI# +har# +GIM +it +ta +šu +bi +sik +ta₅ +GIG +ŠURUN +GUD +ina +A +ta +mah +ha +ah +ŠEŠ₂ +giš +ZU₂ +LUM +MA +GA +RAŠ +sar +UKUŠ₂? +HAB +x +x +x +NINDA# +u# +KAŠ# +la +i +lem +UD +7 +KAM₂ +A +ša₂!(7) +PU₂ +i# +ša +ti +DIŠ +NA +hu +šah +hu +DAB +su +1 +SILA₃ +KAŠ +SAG +ina +MUL₄ +tuš +bat +ina +še +ri₃ +x +x +x +x +x +x +x +x +x +DIŠ +NA +ma +ʾ +di +iš +e +na +ah +ma +IM +e +dip +ma +NU# +... +x +x +x +x +ina +A +GAZI +sar +ir +ta +na +haṣ +MUN +DUR₂ +NU# +LUH +HA +... +x +x +x +x +DIŠ +NA +U₂ +NAG +ma +la +i +ar₂ +ru₃ +ṣe +me +er +a +za +pi +ŠAH +... +A +u +I₃ +GIŠ +ŠEG₆ +šal +EN +ši +bi +šu₂ +u₂ +al +lat +hi +ri +... +DIŠ +NA +U₂ +NAG +ma +la +ip +ru +la +iṣ +nu +uh +NA +BI +ze +e +ze +na +GIG +ana# +TI# +šu₂# +giš# +si# +hu +giš +ar₂ +ga +nu +giš +ba +ri +ra +ta₅ +šim +GUR₂ +GUR₂ +šim +LI +šim +GAM +MA# +šim +GIG +giš +EN +DI +ina +A +PU₂ +x +x +x +x +NE +su +ana +DUR₂ +šu₂ +DUB +ak +10 +KISAL +šim +GUR₂# +GUR₂# +ŠEŠ₂# +su +ma +ŠA₃ +MEŠ +šu₂ +SI +SA₂ +ma +TI +DIŠ +NA +an +šu₂ +tu₄ +iṣ +bat +su +ma +la +u₂ +šar +da# +KAŠ +SAG +ina +ŠEN +TUR +ŠEG₆ +šal +MUN +ana +ŠA₃ +ŠUB +ana +DUR₂ +šu₂ +DUB +ŠU +SI +ka +tug₂ +GADA +NIGIN +MUN +ta +ṣap +pu +DUR₂ +šu₂# +ta +kar +SIG₂ +GAL₄ +LA +munus +ŠU +GI +ina +MURUB₄ +KA +šu₂ +GAR +ina +eš +DIŠ +NA +KAŠ +SAG +NAG +ma +SUHUŠ +MEŠ +šu₂ +pa +al +qa +di# +ig# +la +ma +a +ṭi +ana +TI +šu₂ +NUMUN +u₂ +SIKIL +NUMUN +u₂ +DILI +NUMUN +giš +bi# +ni +NUMUN +u₂ +am +ha +ra +NUMUN +u₂ +IN₆ +UŠ₂ +5 +U₂ +HI +A +ŠEŠ +DIŠ# +niš +SUD₂ +ina +GEŠTIN +SIG₃ +aṣ +NU +pa +tan +NAG +ma +ina +eš# +DIŠ +NA +KAŠ +NAG +ma +SAG +DU +su +DAB +DAB +su +INIM +MEŠ +šu₂# +im +ta +na +aš₂ +ši +ina +DU₁₁ +DU₁₁ +šu₂ +u₂ +pa +aš₂ +šaṭ +ṭe₄ +en +šu₂ +la +ṣa +bit +LU₂ +BI +IGI +MIN +šu₂ +GUB +za +ana +TI# +šu₂ +u₂ +IGI +lim +u₂ +IGI +NIŠ +u₂ +tar +muš +u₂ +HAR +HAR +u₂ +SIKIL +u₂ +DILI +KA +A +AB +BA +u₂ +NU +LUH +HA +NUMUN +u₂ +NIG₂# +GAN₂ +GAN₂ +u₂ +kam +ka +du +u₂ +eli +kul +la +11 +U₂ +HI +A +ŠEŠ +DIŠ +niš +SUD₂ +ina +I₃ +GIŠ +u +KAŠ +ana +IGI +d +gu +la +tuš +bat +ina +še +ri₃ +la# +am +d +UTU +MU₂ +hi +la +am +ma +am +ma +iš +ši +qu +šu₂ +NAG +ma +ina +eš +DIŠ +NA +GABA +su +GIG# +ma +GIM +ši +ne₂ +e +ti +SAHAR +TUKU +TUKU# +ši +ina +da +ba +bi +šu₂ +ik +ka +šu₂ +ik +ta +ner +ru +u₃# +ZE₂ +ip +te +nar +ru +NA +BI +bi +šit +ŠA₃ +GIG +ana# +TI +šu₂ +u₂ +EME +UR +GI₇ +ina +KAŠ +NU +pa +tan +NAG +šu₂ +ina +A +GAZI +sar +RA +MEŠ +A +giš +ŠE +NU +ana +DUR₂ +šu₂ +DUB +ZI₃# +GU₂ +TUR +giš +ur₂ +ne₂ +e +ina +gi +SAG +KUD +ina +KA +šu₂ +GID₂ +ad +šim +HAB +I₃ +UDU +ZU₂ +LUM +šim +LI +šim +KU₇# +KU₇ +DIŠ +niš +HI +HI +ina +KUŠ +SUR +LAL +U₂ +BABBAR +ina +I₃ +GIŠ +KI +MIN +GAZI +sar +KI +MIN +A +u₂# +ur₂ +ne₂ +e# +u +GAZI +sar +šim +GUR₂ +GUR₂ +KI +MIN +šim +LI +šim +GUR₂ +GUR₂ +MIN +PA +giš +GE₆ +PAR₃ +PA +giš +ŠE +NU +PA# +giš# +MA +NU +E₂ +NIM +kal +bi +I₃ +DIŠ +niš +HI +HI +ŠU +BI +AŠ +AM₃ +U₂ +BABBAR +ina +I₃ +GIŠ +NAG +šu₂ +ina +A# +GAZI +sar +RA +su +ma +A +giš +NU +UR₂ +MA +ana +DUR₂ +šu₂ +DUB +ak +ma +GU₂ +GAL +šim +GUR₂ +GUR₂ +GID₂ +ad +ma +šim +LI +šim# +HAB +ILLU +šim +BULUH +giš +bi +nu +u₂ +SIKIL +DIŠ +niš +SUD₂ +ina +I₃ +UDU +HI +HI +GABA +su +LAL +ma +ina +eš +u₂ +EME +UR +GI₇ +ina +KAŠ +NAG +ina +A +GAZI +sar +KI +MIN +GAZI +sar +šim +LI +šim +GUR₂ +GUR₂ +šim +GAM +MA# +ŠIM +HI +A +DU₃ +A +BI +PA +giš +GE₆ +PAR₃ +PA +giš +šu +še +KI +MIN +DIŠ +NA +di +ik +šu +ina +GABA +šu₂ +TAG +TAG +su +ma +GIM +ši +ne₂ +ʾ +ti +SAHAR +i +ša₂ +an +na +ʾ +šu +ina +ge +ši +šu +ZE₂ +i +par +ru +ina +da +ba +bi +šu₂ +ik +ka +šu +ik +te +ner +ru +NA +BI +bi +šit +ŠA₃ +bi +GIG +KU₆ +SUM +sar +UZU +GUD +UZU +ŠAH +u +KAŠ +lu₂ +KURUN₂ +NA +la +uš +ta +mah +har +ut +ta +šar +1 +2 +SILA₃ +ZA₃ +HI# +LI +1 +2 +SILA₃ +šim +GUR₂ +GUR₂ +1 +2 +SILA₃ +giš +LI +1 +2 +SILA₃ +NUMUN +GADA +1 +2 +SILA₃ +giš +GIG +1 +2 +SILA₃ +giš +EN +DI +1 +2 +SILA₃ +NUMUN +u₂ +qut +ra +ti +1 +2# +SILA₃# +GAZI +sar +1 +2 +SILA₃ +NUMUN +giš +ŠE +NU +1 +2 +SILA₃ +GU₂ +NIG₂ +AR₃ +RA +1 +2 +SILA₃ +BA +BA +ZA +d +ID₂ +1 +2 +SILA₃ +NUMUN +u₂ +ka +man +ta +... +10 +KISAL +ILLU +šim +BULUH +10 +KISAL +KA +A# +AB +BA +... +21 +U₂# +HI# +A +... +šum# +ma +... +... +49019 ... +UD +DA +SA₂ +SA₂ +GAZ +SIM +... +giš +bi# +nu +u₂ +IN₆ +UŠ₂ +RA +ma +TI +ana +KI +MIN +... +ina +KAŠ +NU +pa +tan +NAG +ma +TI +ana +KI +MIN +... +u₂ +NAGA +SI +TEŠ₂ +BI +SUD₂ +ina +KAŠ +SAG +SILA₁₁ +aš +ina +KUŠ +SUR +ri +LAL +id +... +SILA₁₁ +aš +ina +KUŠ +MIN +... +SILA₁₁ +aš +ina +SAG +ŠA₃ +šu₂ +LAL +ma +TI +... +x +ina +A +GEŠTIN +NA +KALAG +GA +SILA₁₁ +aš +SAG +ŠA₃ +šu₂ +LAL +ma +TI +... +x +u₂# +KU₆# +HAD₂ +A +GAZ +SIM +ina +KAŠ +SILA₁₁ +aš +KI +MIN +ana +KI +MIN +x +x +x +x +x +u₂# +HAR +HAR +u₂ +KUR +KUR +u₂ +GAMUN +GE₆ +u₂ +tar +muš₈ +x +x +x +x +x +x +DIŠ# +niš +SUD₂ +ina +KAŠ +NAG +um +mi +ša₂ +ŠA₃ +šu₂ +ta +ša₂ +haṭ +ma +TI +DIŠ +NA +x +x +x +x +KI +UH₂# +šu₂ +MUD₂ +ŠUB +ŠUB +a +ki +ṣir +te +ŠA₃ +GIG +UD +DA +SA₂ +SA₂ +ŠA₃ +šu₂ +qer +be₂ +na₇ +GIG +u₂ +ur₂ +ne₂# +e# +A# +GAR# +GAR# +MAŠ# +DA₃ +NUMUN +u₂ +KI +d +IŠKUR +NUMUN +u₂ +IN₆ +UŠ₂ +šim +GUR₂ +GUR₂ +2 +KISAL +KA +A +AB +BA +GAZ +ina +A +PU₂ +tara +bak +GUR +ma +HAD₂# +A +GAZ +ina +A +ZU₂ +LUM +MA +ina +dug +GAN +tara +bak +ina +TUG₂ +SUR +ri +SAG +ŠA₃ +šu₂ +ur +ra +u +GE₆ +LAL +id +DU₈ +šu₂ +ma +A# +PU₂# +ta +hab +bu +U₂ +BABBAR +SUD₂ +ina +I₃ +hal +ṣa +EME +šu₂ +DAB +bat +NAG +i +ar₂ +ru +LAL₂ +su +NAG +NAG +šu₂ +iš +tu +NAG +u₂ +1 +2 +SILA₃# +NUMUN# +giš# +bi# +ni +1 +2 +SILA₃ +giš# +GEŠTIN# +KA₅ +A +1 +2 +SILA₃ +šim +LI +1 +2 +SILA₃ +ZU₂ +LUM +MA +1 +2 +SILA₃ +ZI₃ +GIG +GAZ +ina +A +GAZI +sar +tara +bak +GUR +ma +HAD₂ +A +GAZ +ina +A +ZU₂ +LUM +ina +dug +GAN +tara +bak +ina +TUG₂ +HI +A +SUR +ri +ur +ri +u +GE₆ +LAL +ana +KI +MIN +PA# +giš +NU +UR₂ +MA +PA +giš +GE₆ +PAR₃ +PA +giš +NAM +TAR +NITA₂ +ŠIKA +NIG₂ +BUN₂ +NA +ku₆ +ILLU +šim +BULUH +GAZ +ina +A +ZU₂ +LUM +MA +ina +dug +GAN +tara +bak +GUR +ma +HAD₂ +A +GAZ +ina +KAŠ +u +I₃ +GIŠ +ina +dug +GAN +tara +bak +ina +TUG₂ +SUR +ur# +ri# +u +GE₆ +LAL +id +KU +KU +u₂ +ti +ia₂ +ta₅ +ina +KAŠ +NU +pa +tan +NAG +1 +3 +SILA₃ +ŠE₁₀ +TU +mušen +MEŠ +1 +3 +SILA₃ +NUMUN +u₂ +AB₂ +DUH +1 +3 +SILA₃ +GURUN +u₂ +MAŠ +HUŠ +ta +haš +šal +ina +A +GAZI +sar +tara +bak +GUR +ma +HAD₂ +A +GAZ +ina +A +ZU₂ +LUM +MA +ina +dug +GAN +tara +bak +ina +TUG₂ +SUR +ri +ur +ri +u +GE₆ +LAL +id +ana +KI +MIN +1 +2 +SILA₃ +NUMUN +u₂ +DILI +1 +2 +SILA₃ +u₂ +LAG +GAN₂ +SIG₇ +1 +2 +SILA₃ +U₅ +ARGAB +mušen +1 +2 +SILA₃ +ZI₃ +ZIZ₂ +A +AN +GAZ +ina +A +ID₂ +tara +bak +GUR +ma +HAD₂ +A +GAZ +SIM +ina +A +ZU₂ +LUM +MA +ina +dug +GAN +tara +bak +ina +TUG₂ +SUR +ri +ur +ra +u +GE₆ +LAL +id +NUMUN +giš +GEŠTIN +KA₅ +A +ina +KAŠ +NU +pa +tan +NAG +ina +A +ŠEG₆ +šal +tara +has# +su# +ana +KI +MIN +ZA₃ +HI +LI +ina +KAŠ +NAG +NUMUN +u₂ +KI +d +IŠKUR +ri +NUMUN +giš +MA +NU +NUMUN +giš +ŠINIG +šim +GUR₂ +GUR₂ +GAZ# +ina +A +GAZI +sar +tara +bak +GUR +ma +HAD₂ +A +GAZ +ina +A +ZU₂ +LUM +MA +ina +dug +GAN +tara +bak +ina +TUG₂ +HI +A +SUR +ri +ur +ri +u +GE₆ +LAL +ana +KI +MIN +šim +LI +šim +GUR₂ +GUR₂ +šim +HAB +šim +GAM +MA +u₂ +ba +ri +ra +ta₅ +šim +BULUH +giš +EREN +giš +ŠUR +MIN₃ +šim +BAL +GAZ +ina +A +GAZI +sar +tara +bak +GUR +ma +HAD₂ +A +GAZ +ina +A +ZU₂ +LUM +MA +u +KAŠ +ina +dug +GAN +tara +bak# +ina +TUG₂ +HI +A +te +ṭer₅ +ri +ur +ra +u +GE₆ +LAL +id +IM +SAHAR +NA₄ +KUR +RA +ina +KAŠ +NAG# +ana +KI +MIN +PA +GIŠ +GI +ZU₂ +LUM +MA +PA +u₂ +SIKIL +PA +u₂ +IN₆ +UŠ₂ +GURUN +GA +RAŠ +sar +GURUN +giš +NU +UR₂ +MA +NUMUN +giš +HA +LU +UB₂# +PA +giš +ASAL₂ +GAZ +ina +A +GAZI +sar +ina# +dug# +GAN# +tara# +bak# +ina +TUG₂ +SUR +ur +ra +u +GE₆ +LAL +ina +A +ŠEG₆ +šal +tara +has₂ +su +U₂# +ŠEŠ# +ina# +I₃# +u# +KAŠ? +NU +pa# +tan# +NAG# +tu +ša₂ +ʾ# +ra +šu₂ +ma!#(GIŠ) +DU₁₀ +GA +GU₇ +DU₁₀ +GA +NAG +ka +la +UD +u +GE₆ +ina +KA₂? +GUB? +GUB +ina +giš +NA₂ +šu₂# +la +NU₂ +ina +še +ri₃ +A +KUM₂ +ti₃ +TU₅ +šu₂ +I₃ +GIŠ +KUM₂ +ŠEŠ₂ +UD +3 +KAM₂ +GUR +GUR +šum +DIŠ +NA +KI +UH₂# +šu₂# +MUD₂ +ŠUB +MEŠ +a +NA +BI +ta +aš₂ +ni +qa +GIG +ana +TI +šu₂ +1 +3 +SILA₃ +I₃ +UDU +1 +3 +SILA₃ +ZU₂ +LUM +MA# +1 +3# +SILA₃ +šim# +HAB# +1 +3 +SILA₃ +šim +GUR₂# +GUR₂ +1 +3 +SILA₃ +šim +LI +1 +3 +SILA₃ +šim +BULUH# +1 +3# +SILA₃# +DUH# +ŠE +GIŠ +I₃ +1 +3 +SILA₃ +NUMUN +giš +bi +ni +8 +U₂# +HI +A +ŠEŠ +DIŠ +niš +GAZ +ina +I₃ +NUN +tal +tap# +pat +ina +KUŠ +SUR +IGI +u +MAŠ +SILA₃ +EN +DU₁₀ +GA +šu₃ +3 +ITI# +MEŠ# +LAL₂# +su +ma +LAL +ta +ina +KA +ka +u₂# +še +ṣa +am +ma +ina +eš +DIŠ# +NA# +ki +ṣir# +ŠA₃ +GIG +NINDA +u +KAŠ +ŠA₃# +šu₂# +la +IGI +šu₂ +ina +KA# +šu₂# +GUR +GUR +TUN₃# +šu₂# +i# +sa +hal# +šu₂# +ana +TI +šu₂ +1 +2# +SILA₃ +sah +le₂ +e +1 +2 +SILA₃ +šim# +GUR₂# +GUR₂# +1 +2# +SILA₃# +šim# +LI# +1 +2 +SILA₃ +u₂ +KI +d +IŠKUR +1 +2 +SILA₃ +ka +si +i +1 +2# +SILA₃# +pa# +pa +si +d# +ID₂ +1 +2 +SILA₃ +u₂ +KUR +RA +1 +2 +SILA₃ +u₂ +AB₂ +DUH +1 +2 +SILA₃ +ZU₂ +LUM +MA +1 +2 +SILA₃ +DIDA +SIG +1 +2 +SILA₃ +ZI₃ +MUNU₆ +1 +2# +SILA₃ +ZI₃ +GU₂ +GAL +1 +2 +SILA₃ +ZI₃ +KUM +1 +2# +SILA₃# +ZI₃# +GIG# +1 +3 +SILA₃ +ŠE₁₀ +TU +mušen +1 +3 +SILA₃ +u₂ +KAM +ti +GAN₂ +10 +KISAL +šim +ŠEŠ +10 +KISAL# +KA +A +AB +BA +16 +U₂ +HI# +A# +ŠEŠ +DIŠ +niš +GAZ +SIM +ina +KAŠ +ina +urudu +ŠEN +TUR +GIM +ra +bi +ki +tara +bak +ina# +KUŠ# +EDIN +SUR +3 +UD +me +SAG +ŠA₃ +šu₂ +LAL +NINDA +u +KAŠ +ŠA₃ +šu₂ +IGI +šu₂ +ma +ina +eš +DIŠ +NA +ki# +ṣir# +ŠA₃ +bi +GIG +NINDA# +u# +KAŠ# +ŠA₃ +šu₂ +NU +IGI +šu₂ +ina +KA +šu₂ +GUR +GUR +ip +te +ne₂ +ru +ana +TI +šu₂ +1 +2 +SILA₃ +A +ZU₂ +LUM +MA +1 +2 +SILA₃ +A# +GAZI# +sar +10 +KISAL +u₂ +KUR +RA +SUD₂ +ana# +ŠA₃# +ŠUB# +ba +lu +pa +tan +NAG +šu₂ +EGIR +šu₂ +1 +3 +SILA₃ +AL +US₂ +SA +NAG# +ina +DUR₂ +šu₂ +GIŠ +ma +NINDA +u +KAŠ +ŠA₃ +šu₂ +KI +MIN +ana +KI +MIN +MUN +KUR +i +MUN +a +ma +ni₇ +DIŠ +niš +SUD₂ +ina +KAŠ +NU +pa +tan +NAG +ma +ina +eš +ana +KI +MIN +ZI₃# +ŠE# +SA# +A +ZI₃ +HARUB!(AMAŠ) +qi₂ +lip₂ +ZU₂ +LUM +MA +SUD₂ +ina +KAŠ +2 +UD +me +ba +lu +pa# +tan# +NAG +šu₂ +A +NU +NAG +A +SAG +ŠA₃ +šu₂ +tu +sa +lah₂ +ma +ina +eš +DIŠ +NA +NINDA +u# +KAŠ +ŠA₃ +šu₂ +NU +IGI +šu₂ +UZU +MEŠ +šu₂ +ir +ta +nam +mu +IM +ina +DUR₂ +šu₂ +NIGIN +ur₂ +ana +TI +šu₂ +1 +2 +SILA₃ +A +ZU₂ +LUM +MA +1 +2 +SILA₃ +A +GAZI +sar +2? +GIN₂? +A +GEŠTIN +NA +2 +GIN₂ +u₂ +KUR +RA +3 +GIN₂ +I₃ +hal +ṣa +3 +GIN₂ +LAL₃ +KUR +i +DIŠ +niš +tuš +te +mid +GAZ# +ina +GE₆ +ina +IGI +mul +UZ₃ +tuš +bat +ina +še +ri₃ +ŠEG₆# +šal +ta +ša₂ +hal +ŠED₇ +ina +ŠA₃ +tah +ta +na +su +EGIR +šu₂ +NAG +A +u +KAŠ +DIRI# +giš +si +ha +giš +ar +ga +nu +giš# +LUM +HA +GAZI +sar +PA +GAZI +sar +NUMUN +giš +ŠE +NU₂ +A +ana +ŠA₃ +ŠUB +ŠEG₆ +šal +ta +ša₂ +hal +mar +ha +ṣi +tu +ša₂ +at +tam +ma +ina# +ŠA₃ +RA +su +I₃ +SU +šu₂ +EŠ +aš +giš +GEŠTIN +KA₅ +A +u₂ +EME +UR +GI₇ +SUD₂ +ina +KAŠ +NAG +šu₂ +PA +giš +GE₆ +PAR₃ +PA +giš +šu +še +HAD₂ +A +DIŠ +niš +GAZ +SIM +ina +I₃ +UDU +HI +HI +ina +KUŠ +EDIN +SUR +LAL₂ +su +ma +ina +eš +DIŠ +NA +SAG +ŠA₃ +šu₂ +GU₇ +šu₂ +ina +ge +ši +šu₂ +ZE₂ +im +ta +na +ʾ +NA +BI +qer +be₂ +na +GIG +DUB +2 +KAM₂ +DIŠ +NA +su +a +lam +GIG +ana +ki +is +ŠA₃ +GUR +E₂ +GAL +m +AN +ŠAR₂ +DU₃ +A +MAN +ŠU₂ +MAN +KUR +AN +ŠAR₂ +ki +ša +d +AG +u +d +taš +me +tu₄ +GEŠTU +MIN +ra +pa +aš₂ +tu₄ +iš +ru +ku +uš +e +hu +uz +zu +IGI +MIN +na +mir +tu₄ +ni +siq +ṭup +šar +ru +ti +ša +ina +LUGAL +MEŠ +ni +a +lik +mah +ri +ia +mam₂ +ma +šip +ru# +šu +a +tu +la +e +hu +uz +zu +bul +ṭi +TA +muh +hi +EN +UMBIN +liq +ti +BAR +MEŠ +ta +hi +zu +nak +la +a +zu +gal +lu +ut +d +nin +urta +u +d +gu +la +ma +la +ba +aš₂ +mu +ina +ṭup +pa +a +ni +aš₂ +ṭur +as +niq +IGI +KAR₂ +ma +a +na +ta +mar +ti +ši +ta +si# +ia +qe₂ +reb +E₂# +GAL +ia +u₂ +kin +7 +u# +7 +KA# +KEŠDA +x +x +x +x +x +x +x +x +x +x +x +x +EN₂ +sag +ki +mu +un# +dab +x +x +x +x +x +x +sag +sahar₂ +ra +mu +un# +dab +x +x +x +x +x +x +x +a# +da +pa₃ +abgal +x +x +x +x +sag +ki +mu +un +dab +x +x +x +x +x +x +x +x +DU₃ +DU₃ +BI +sig₂ +HE₂# +ME +DA +x +x +x +x +x +x +x +x +x +x +x +na₄ +SAG +DU +E₃ +EN₂ +x +x +x +x +x +x +x +x +x +x +EN₂ +a +ra +tu +e +a +ra +x +x +x +x +x +x +x +šu +du₃ +du₃ +meš +šu +ne +ne +a +meš +eridu# +ki# +ga# +mu# +un# +tum₂ +TU₆ +EN₂ +DU₃ +DU₃# +BI# +giš +PA +GIŠIMMAR +ša₂ +im +SI# +SA₂# +ša₂ +ina +NU +IM +i +nam +zu +zu +TI +qe₂ +x +x +x +x +KEŠDA# +EN₂ +7! +šu₂ +ŠID +nu +ina +SAG +KI +šu₂ +tara +kas₂ +ma +TI +uṭ? +EN₂ +sur +ru +ga? +su +ma +hu +ma +ak +tu₂ +ti +e +na +ha +at# +ru +x +x +x +x +ki +in +re +eš +na +ha +at +ri +: +uk# +kiš +tum +si +na +an +na +x +x +x +x +x +lu +pi +tu? +šab +ki +im +: +an +ta +sur +ra +TU₆# +EN₂ +x +x +x +tu +e +di +pa +ra +tu +e +x +x +x +ha +ta +ra +hat +ra +TU₆# +EN₂ +x +x +x +x +x +x +a# +ra +ba +še? +ra? +... +... +x +x +x +x +... +50815 x +x +x +x +x +x +ra +mu +un +dab# +x +x +x +x +x +x +x +x +x +DU₃ +DU₃# +BI +na₄ +ZU₂ +GE₆ +na₄ +ŠUBA +x +x +x +x +x +na₄# +NIR₂ +na₄ +ŠUBA +SIG₇# +x +x +x +x +x +x +x +x +x +EN₂ +sag +ki +ni +sag +ki +x +x +x +x +i +bi₂ +ni +i +bi +x +x +x +x +mu +ru +ub +bi +ni +mu +ru +ub +bi +x +x +x +x +he₂# +bi# +da# +a# +na# +mul# +la# +he₂# +en?# +da +a +na +mul +la +x +x +... +x +... +... +a +šu +u₂# +ana +SAG +DU +šu₂ +... +... +DU₁₀ +GA +tu₄ +ina +SU +NA +GAL₂ +ši +ana# +DAB# +DU₁₀ +GA +ti +... +... +SAG +NINDU +ana +UGU +ta +za +ru₃ +LAL₂# +su +ma +... +... +na₄ +MIN +BABBAR +na₄ +MIN +GE₆ +ta +sak₃ +ina +I₃# +NUN# +HI +HI +UGU +šu₂ +ŠEŠ₂# +sa +ar +ʾi +... +... +MUD₂ +MEŠ +šu₂ +TI +qe₂ +UGU +šu₂ +ŠEŠ₂ +UR +ME +E +ša₂ +E₂ +GAR₈ +ta +sak₃# +x +... +... +ŠID +nu +EN₂ +E₂ +NU +RU +ki +in +ip +ki +ni +ip +ki +ni +ip +šu +uh +ki +ni +ip +ši +ha +ma +... +... +a +šu +u₂# +DAL +DAL +DAB +it# +šim# +GUR₂# +GUR₂ +GAZI +sar +u +MUN +DIŠ +niš +SUD₂ +ina +A +SAG +DU +su +... +... +a +šu +u₂# +DAB +it# +SUHUŠ# +giš +šu# +ši# +GAMUN?# +ina +KAŠ +SAG +tara# +muk +ina +MUL₄ +tuš +bat +ina +še +ri₃ +... +... +GU₇# +ma +TI +gi# +ŠA₃# +GI +tur +ar₂ +SUD₂ +ina +I₃ +u +KAŠ +ŠEŠ₂ +ša +pil +ti +giš +KIŠI₁₆ +... +... +a +šu +u₂# +a +hi# +iz +e +riš +ti +GAZI +sar +LAL₂ +NUMUN +u₂ +KU₆ +ina +I₃ +SUD₂ +SAG +DU +su# +EŠ? +MEŠ? +ma? +... +... +SAG# +DU# +su +LAL +sah +le₂ +e +ina +KAŠ +NAG +ILLU +šim +BULUH +ana +KA +šu₂ +GAR +an +A +ZU₂ +LUM +MA +... +... +NU +pa# +tan +NAG +I₃ +u +KAŠ +NAG +NAG +ma +BURU₈ +1 +2 +SILA₃ +šur +šum +me +KAŠ +1 +2 +SILA₃ +x +... +... +AN +TA +ana +KI +TA +tu +maš +šad +U₄ +10 +KAM₂ +LAL₂ +SUHUŠ +giš +šu +ši +... +... +u₂# +KU₆ +ina +I₃ +SUD₂ +SAG +DU +su +u +ka +la +UZU +MEŠ +šu₂ +... +... +NUNDUN +MEŠ +šu₂ +MU₂ +MEŠ +SAG +DU +su# +ana# +IGI# +šu₂# +GID₂# +DA# +su +ŠU# +MEŠ# +šu₂ +... +... +x +ti +... +te +qi₂ +... +x +te +qi₂ +... +TE +GI +... +ina +I₃# +SUD₂ +KIMIN# +... +KIMIN +... +x +IGI# +MEŠ# +šu₂# +MAR# +... +x +ku#? +... +ti? +... +x +... +na₄ +AN +ZAH? +GE₆ +na₄ +mu +ṣa +na₄# +ZALAG₂# +na₄ +GUG +na₄ +x +x +... +na₄ +AN? +NA +na₄ +MUŠ +GIR₂ +NUMUN# +giš +bi +ni +NUMUN +giš +MA# +NU# +... +U₂ +MEŠ +ŠEŠ +1 +niš +GAZ +ta +ša +pah +ina +I₃ +UDU +ELLAG₂ +GU₄ +GE₆ +... +IGI +MEŠ +šu₂ +ka +a +a +man +nam +ma +MAR +ma +ina +eš +DIŠ +NA +e +nu +ma +bir +ṣa +IGI# +ru# +3 +šu₂ +ki +a +am +liq +bi +ša₂ +d +en +lil₂ +u +d +nin +lil₂ +ana +ku +ša₂ +d +iš +tar +u +d +na +na +a +ana +ku +i +qab +bi +ma +TI +uṭ +DIŠ +... +ana +ZAG? +GUB +zu +TI +qe₂ +ina +IZI +tu +kab +ba +ab +... +ina +LAL₃ +I₃ +NUN +SUD₂ +IGI +MIN +šu₂ +te +eq +qi₂ +ma +ina +eš +... +HUL +bir +ṣi? +a# +na# +LU₂# +NU# +TE# +e# +A# +GUB₂# +BA# +GIN# +an# +ana# +ŠA₃# +bi# +giš# +ŠINIG# +u₂ +IN₆ +UŠ₂ +... +u₂ +SIKIL +giš +GIŠIMMAR +giš +MA +NU +giš +U₃ +SUH₅ +giš +HAŠHUR +giš +PEŠ₃ +giš +ŠE +NU₂ +A +šim +d +MAŠ +NITA₂ +u +MUNUS +... +ina +UL +tuš +bat +ina +A₂ +GU₂ +ZI +GA +IGI +d +UTU +ina +E₂ +ṭa +bi +TU₅ +šu₂ +im +KAL +im +KAL +GUG +KA +A +AB +BA +... +ina +I₃ +šim +GIR₂ +HE +HE +ŠEŠ₂? +su? +ma?# +KU₃# +BABBAR# +KUG# +GI +i +mar +ma +HUL +bir +ṣi +ana +LU₂ +NU +TE +DIŠ +... +x +x +giš +ŠINIG +u₂ +IN₆ +UŠ₂ +giš +GIŠIMMAR? +giš# +HAŠHUR#? +giš +PEŠ₃ +giš +U₃ +SUH₅ +ana +ŠA₃ +A +PU₂ +ŠUB +di +ma +... +ina +UL +tuš +bat +ina +A₂# +GU₂# +ZI# +GA# +... +im +KAL +im# +KAL# +GUG# +KA +A +AB +BA +ina +I₃ +šim +BAL +HE +HE +ŠEŠ₂ +su +ma +TUG₂ +DADAG +... +HUL# +bir +ṣi +ana +LU₂ +NU +TE +x +x +... +DIŠ +NA +mu +kil₂# +SAG +HUL +ti₃ +DAB +su +... +lu +NITA +lu +MUNUS +ina# +UR₃# +tu# +še# +li +ma +... +li +in +na# +di# +ina +GE₆ +GIN₇ +d +UTU +e# +re +bi +... +IGI +ap +ti +ZI₃ +DUB +DUB +BU +ŠUB +ŠUB +di +... +NU +i +pet +tu +šu +... +u₃ +mu +šu +ša +a# +ti +giš +NA₂ +ṣa +al +lu +x +... +DIŠ +NA +mu +kil₂ +SAG +HUL +ti₃ +DAB +su +maš +qi₂ +ta +nar +ma +ak +ta +... +DIŠ +KIMIN +KUM₂ +ina +SU +šu₂ +la +zi +iz +ma +u +ma +gal +i +li +hi +ib +x +... +u +IR +TUK +A +SAR +MUNU₆ +u +KAŠ₃ +a +me +lu +ti +giš +EREN +šim +LI? +... +ina +NININDU +UŠ₂ +er +ir +ta +na +haṣ +ma +10? +SILAₓ(KISAL) +giš +KIŠI₁₆ +x +x +... +en₂ +ur +sag +d +asal +lu₂ +hi +igi +bi +he₂ +pa₃ +... +ur +sag +d +ša₃ +zu +igi +bi +he₂ +pa₃ +... +ur +sag +den +ki +igi# +bi +he₂ +pa₃ +... +ur +sag +d +nin +urta +igi +bi +he₂ +pa₃ +... +ad +da +mu +dumu +sag +d +... +na +an +de₂ +... +dumu +mu +nam +tar +... +nu +un +bar +... +lu₂ +a# +zu# +di +ku₅ +... +nu +tar +re +tu₆ +en₂ +ka +inim +ma# +sag +hul +ha +za +kam₂ +DU₃ +DU₃ +BI +7 +x +... +ina +DUR +SIG₂ +SA₅ +E₃ +ak +U₂ +x +... +u₂ +IGI +lim +... +x +u₂ +SIKIL +giš +kan +u₅ +NUMUN +giš +ŠINIG +... +x +x +... +ta +la +pap? +ina +SAG +KI +šu₂ +KEŠDA +su# +x +... +x +... +x +x +... +EN₂# +giš# +APIN?# +ṣu# +x +x +... +gir +giš +ša₂ +e +ta?# +x +... +ti +i +ru +A +ŠA₃ +e +ri +iš +la +a +ši# +a?# +... +A# +ŠA₃ +id +ra +nu +... +x +i +ša₂ +ti +i +ri +la +ib +šu +u₂ +... +GIM +id +ra +ni +a +a +u₂ +še +ṣa +... +gir +giš +ši +a +a +ib +ba +ni +... +... +gir +giš +šu +... +... +x +x +... +51875 DIŠ +NA +SAG +DU +su +GIG +MEŠ +mat +qu +ti# +TAB +UD +DA +DIRI +I₃# +UDU +x +x +x +x +x +x +x +x +x +ina +I₃ +giš +EREN# +HI +HI +SAG# +DU +su +x +x +x +DIŠ +KIMIN +U₂? +GAR +šu₂? +GIM? +giš +MA +NU +u₂ +mur +ra +nu +MU +šu₂ +HAD₂ +A +SUD₂ +3 +šu₂ +ina# +x +x +x +x +x +x +x +x +TUG₂ +su# +u +ŠEŠ₂ +za +ku +ti +šu₂ +x +x +DIŠ +KIMIN +u₂# +mur +ru +MU +NI +HAD₂ +A +SUD₂ +ina +A +HI +HI +x +x +x +x +TUG₂# +su# +u +ŠEŠ₂ +za +ku +ti +šu₂ +MU₂ +ah +u₂ +IGI +lim +ina +I₃ +giš +EREN +HI +HI +x +x +x +DIŠ +NA +SAG +DU +su +GIG +MEŠ +mat +qu +ti +DIRI +zap# +pi# +ŠAH +MUN +ZI₃ +KUM +GIR₃ +PAD +DU +ša₂ +UDU +NITA₂ +tur +ar₂ +SAG +DU +su +SAR +ab +I₃ +ŠEŠ₂ +MAR +ina +I₃ +GIŠ +ŠEŠ₂ +U₂# +BABBAR +SUD₂ +MAR +šu +ru +uš +UKUŠ₂ +HAB +HAD₂ +A +KUM +MAR +ZI₃ +MUNU₆ +ZI₃ +KUM +GIR₃ +PAD +DU +UDU +NITA₂ +DIŠ +niš +tur +ar₂ +SUD₂ +MAR +ru +GUR# +an# +nu# +ha# +ru +na₄ +ga +bi +i +DIŠ# +niš +ŠEG₆ +SUD₂ +ina +I₃ +EŠ +MEŠ +MAR? +x +x +x +x +x +x +A# +GEŠTIN# +NA# +ŠEŠ₂# +u₂ +KUR +RA +SUD₂ +MAR +IM +GU₂# +EN +NA +ina +A +ZU₂ +LUM +MA# +SILA₁₁# +LAL# +giš +MAŠ +HUŠ +BIL +lu +I₃ +NUN +EŠ +LAL +x +x +x +SUD₂# +MAR# +giš +nu +ur₂ +ma! +a +SUD₂ +MAR +ŠURUN +U₈ +UDU +HI +A +ina +KAŠ +SILA₁₁ +aš +LAL +x +x +x +tur# +ar₂ +SUD₂ +ŠEŠ₂ +DIŠ +NA +SAG +DU +su +GIG +KU₇ +KU₇# +DIRI# +SAG +DU +su +SAR +ab +sah +le₂ +e +SUD₂ +10 +GIN₂ +ILLU +šim +BULUH +5# +GIN₂ +šim +HAB +x +x +NAGA +SI +šim +GUR₂ +GUR₂ +šim +LI +ana +ŠA₃ +bi +ŠUB +di +ina +A +GEŠTIN +NA +HI +HI +x +x +x +LAL₂ +ma +TI# +DIŠ +KIMIN +MUN +a +ma# +ni# +ta +šar₂ +rap# +SAHAR?# +URUDU?# +na₄ +ga +bi +i +DIŠ +niš# +tu +sa +mah +ina +GEŠTIN +BIL +LA₂ +HI +HI +LAL +su +ma +UD +3 +KAM +NU +DU₈ +ina +DU₈ +ka +KAŠ₃# +KUM₂ +ta₅ +LUH +si +ZI₃?# +BAPPIR?# +MUD₂ +e +re# +ni +ŠEŠ₂ +UD +5 +KAM +U₂ +HI +A +ŠEŠ +ma +MAR +LAL +su +ma +TI +DIŠ# +KIMIN +u₂ +ru +uš +ru# +uš +ša +U₂ +BABBAR +BAR +giš +NU +UR₂ +MA +NA₄ +ZU₂ +LUM +MA +u₂ +LAG +GA₂ +sah +le₂?# +e?# +BIL?# +ti₃# +GURUN# +u₂ +KUR +RA +u₂ +NU +LUH +HA +u₂ +zi +ba +a +ina +na₄ +ur +ṣi +SUD₂ +ZI₃?# +BAPPIR?# +MUD₂ +e +re +ni +EŠ +MEŠ +U₂# +HI# +A# +ŠEŠ# +MAR +LAL +su +ma +TI +DIŠ +KIMIN +KAŠ₃?# +KUM₂ +tu +ša +GUD +ina +A +GEŠTIN +NA +KALAG +GA +SILA₁₁ +aš +UD +3 +KAM# +LAL# +su# +x +šid# +su# +x +x +x +x +ana# +IGI?# +GIG?# +GAR +an +u₂ +HAB +NA₄ +ZU₂ +LUM +MA +tur +ar₂ +SUD₂ +x +x +x +x +ti# +x +MAR +DIŠ# +KIMIN +giš +NU +UR₂ +MA +e +mi +il +ta +u₂ +zi +ba# +a# +... +x +x +LAL₃# +x +x +ina# +IZI# +tu# +ša₂# +ha# +an# +x +x +x +SAG +DU +su +LUH +si +SAR +ab +... +x +x +x +ŠEŠ₂?# +ma?# +TI +DIŠ +NA +SAG +DU +su +GIG# +MEŠ# +KU₇# +KU₇# +DIRI# +x +... +x +x +x +x +x +x +... +x +... +x +... +52432 DIŠ?# +NA? +... +SAG?# +DU?# +su?# +x +x +... +DIŠ +KIMIN +NAGA +SI +GAZ +SIM +x +x +... +DIŠ +KIMIN# +KAŠ₃# +AB₂ +KUM₂ +te +SAG +DU +su# +x +... +DIŠ +NA +MURUB₄ +SAG +DU +šu₂ +GIR₂ +GIR₂ +su +UGU +šu₂ +x +x +x +x +x +x +ŠEŠ₂ +DUB +4 +KAM +DIŠ +NA +UGU +šu₂ +KUM₂# +u₂# +kal +E₂ +GAL +m# +aš +šur +DU₃ +A +MAN +ŠU₂ +MAN +KUR +aš +šur +ki +ša +d +AG +u +d +taš +me# +tu₄# +GEŠTU +MIN +DAGAL# +tu₄ +iš# +ru# +ku# +uš? +i +hu +uz +zu +IGI +MIN +na +mir +tu +ni +siq +ṭup +šar +ru +ti +ša +ina +LUGAL +MEŠ +ni +a +lik +mah +ri +ia +mam₂ +ma +šip +ru +šu +a +tu +la +i +hu +uz +zu +bul +ṭi +TA +muh +hi +EN +UMBIN +liq +ti +BAR +MEŠ +ta +hi +zu +nak +la +a# +zu# +gal +lu +tu₄ +d +nin +urta +u +d +gu +la +ma +la +ba +aš₂ +ba +aš₂# +mu# +ina# +DUB# +MEŠ# +ni# +aš₂ +ṭur +as +niq +IGI +KAR₂ +ma +a +na +ta# +mar +ti +ši +ta +as +si +ia# +qe₂ +reb +E₂ +GAL +ia +u₂ +kin +52620 EN₂ +sag +ki +ni +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +mu +ru +ub +bi +ni# +mu +ru +ub +bi +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +DU₃ +DU₃ +BI +u₂ +aš +lam +NITA₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +e +ma +KA +KEŠDA +EN₂ +ŠID +nu# +x +x +x +x +x +x +x +x +x +x +x +KI +KA +KEŠDA +ina +sig₂ +HE₂ +ME +DA +NIGIN +mi +x +x +x +x +x +x +EN₂# +id₂# +da +ta +tir +gal +gal +la +ta +x +x +x +x +x +x +mul₄ +mul₄ +giš +geštin +gir₂ +mu +un +kar +re +x +x +x +x +x +x +x +šu +mu₂ +mu₂# +e# +de₃# +mul# +mul# +x +x +x +x +x +x +x +x +x +x +x +x +52770 x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +iti +KIN +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ŠEG₆ +šal +GU₇ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +GU₇ +59314 1'. D[U₃.DU₃.BI ...] +2'. 5 KA#.INIM.MA [x x x x] +3'. EN₂ su.ub hur.ri.im# su#.[ub ...] +4'. ša₂ sa.ku.tu₂ hi.si a.pi.il.lat aš k[ur.ba.an.ni ...] +5'. KA.INIM.MA GIG.GIR ZI-hi DU₃.DU₃.BI SIG₂# SA₅# [...] +6'. EN₂ ma-mit GIM šar-ra- ina KA₂ pil-ši un gi ha ba# [x x x x x x x x x x x x] +7'. DU₃.DU₃.BI ina ŠIM IGI GIG ta-kar hu-bu₄-uš SUN₂ [x x x x x x x x x x x x x x x x x] +8'. IGI GIG MAR {šim}ŠEŠ ina IZI tur-ar₂ IGI GIG [x x x x x x x x x x x x x x] +9'. IGI GIG MAR TI GUD ID₂ ina IZI tur-ar₂ IGI GI[G x x x x x x x x x] +10'. SUN₂ {lu₂}KURUN₂.NA IGI GIG ta-kar [x x x x x x x x x x x] +11'. 2 KA.INIM.MA [x x x x x x] +12'. DIŠ# NA SAG.DU-su gur-ru-ud sah-le₂-e si-ki-[tu₂ x x x x x x x x x x x x x x x x x x] +13'. ina# A NAGA SAG.DU-su LUH-si I₃.GIŠ EŠ.MEŠ# [x x x x x x x x x x x x x x x x x x x x x] +14'. [DIŠ KI M]IN SAG.DU-su tu-gal-l[ab ...] +15'. [{u₂}]HAB# S[UD₂ MAR {u₂}]ZA#.[BA.LAM ...] + +1'. [x x x x x x x x x x x x a-n]a-ku# u₂#-[ša₂-an-ni] +2'. [x x x x x x x] TI-e# +3'. [... LI.D]UR ŠID-nu +4'. %sux [x x x x {gi}pisa]n-gen₇ keš₂-da +5'. %sux [x x x x x x x x x x x a-g]e₆-a nu-tuku +6'. %sux [x x x x x x x x x x x x n]u-ku₄-ku₄ +7'. %sux [... nig₂ g]e₂₆-e : gen-na dumu-gu₁₀ +8'. %sux [x x x x x x x x x x x] šu u-me-ti +9'. %sux [x x x x x x x x x x x x x x x x k]a-bi-ta u-me-ni-gar +10'. %sux [x x x x x x x x x x x x x h]e₂-en-si-il-e +11'. %sux [x x x x x x x he₂-em-ma-r]a-e₃ +12'. [x x x x x x x x x x x x x x x x x x x ina KA]Š NAG-ma ina-eš +13'. [... Š]A₃? GIG + + +1. %sux [...] ka#-keš₂#-bi# he₂-du₈-a +2. %sux [...] ka-keš₂-bi he₂-du₈-a +3. [x x x x x x x x x x x x ina KA-š]u₂ u₂-man-zaq-ma ina-eš +4. [... S]IG₃.SIG₃-ta ma-la-a rit-ta-šu₂ +5. [... a]-ha-tu mu-še-qa-at re-ši-šu₂ +6. [... na-š]i pat-ri TU₆ EN₂ +7. [x x x x x x x x x x x ana UG]U EN₂ ŠUB-di ina KA-šu₂ u₂-man-zaq-ma ina-eš +8. [x x x x x x x x x x x x as-su]h-šu₂-ma iṣ-ṣa-bat ŠA₃-bi +9. [x x x x x x x x x x x x x x x x x x K]I DU₁₁.GA-ma iṣ-ṣa-bat ŠA₃-bi AN u KI +10. [x x x x x x x x x x x x x x x x a-na u₂-ma]-mi# DU₁₁.GA-ma iṣ-ṣa-bat ŠA₃-bi u₂-ma-me +11. [x x x x x x x x x x x x x Š]A₃-bi {d}UTU lip-pa-šir +12. [x x x x x x x Š]A₃-bi# u₂-ma-me lip-pa-šir +13. [x x x x x x x x x x x x šam-ma]-ka NAG-šu₂ lib-luṭ +14. [...] U₂# KI KI MIN KI MIN +15. [...] ŠA₃#-bu i-re-du-šu +16. [... ap-p]i? šil-ta-hi ša₂ 7 KA.KEŠDA-MEŠ-šu₂ 7-šu₂ u 7-šu₂ +17. [... SAHA]R? TA# {urudu#}na#-ah#-bi?# [ana? {urud]u}na#-ah#-bi?# +1'. [x x x x x x x x T]I-q[e₂ x x x x x x x x x x x x x x x] +2'. [x x x x x x x ZI₃ ŠE.SA].A ina A GAZI{sa[r} x x x x x x x x x x x] +3'. [x x x ARA₃-t]i₃ {šim}GUR₂.GUR₂ NA[GA.SI x x x x x] +4'. [x x MUN em]e-sal-li₃ mal₂-ma-liš HI.HI ina# [x x x x x x x x] +5'. [x x ZA₃.HI].LI 1/3 SILA₃ ŠIKA IM.ŠU.RIN.NA 10 G[IN₂ x x x x x x] +6'. [x x GAZI{s]ar} SILA₁₁-aš LAL-ma UD.3.K[AM₂ NU DU₈] +7'. [EGIR na]-aṣ-ma-da-te an-na-ti 10 GIN₂ ZA₃.HI.LI ša₂ KA# [x x] +8'. [ša₂ hul]-qu ana ŠA₃ NU ŠUB-u₂ MUN A.GEŠTIN.NA NU# [x x x x] +9'. [x x x G]U₇ 5 GIN₂ ZA₃.HI.LI ARA₃-ti₃ ina KAŠ SIG₃-aṣ-ma NAG#-šu₂# u₂#-[za-ka-ma x x x] +10'. [x x x] AN#.ZAH# SUD₂ [x x x x x x] +11'. [x x x x x x] ZA?#.BA?#.LAM?# 1/3 SILA₃ {u₂}[x x x] +12'. [x x x x x x x x x x LAL]-ma UD.3.[KAM₂ NU DU₈] +13'. [x x x x x x x x x] x x [x x x x] +1'. [x x x] x lu#-u₂# ina KAŠ.SAG [x x x x x x x] +2'. [DIŠ NA SA]G.KI.DAB.BA TUKU.TUKU [x x x x] +3'. [x x x x x UGU-š]u₂ KUM₂ [x x] +4'. [x x x x x x x x Š]U₂? L[UGAL? x x x x] + +1. [x x x x x x x x x x x x x x] ana TI.BI +2. [x x x x x x x x x x x x x ŠEŠ₂]-su#-ma# TI +3. [x x x x x x x x x x x x x] I₃#.GIŠ# ŠEŠ₂-MEŠ-su {u₂}an-ki-nu-ti# +4. [x x x x x x x x] x ta-na-ṣar-BI-ma TI +5. [x x x x x x x x x x x TI-š]u₂ I₃.GIŠ {šim}GUR₂.GUR₂ ŠEŠ₂-su +6. [x x x x x x x x x x x x] NAG-šu₂ ina A₂ tu-šap-ra-šu₂-ma TI +7. [x x x x x x x x ŠUB.ŠUB-s]u ana TI-šu₂ I₃.GIŠ {u₂}ap-ru₃-ša₂ ŠEŠ₂-su# +8. [x x x x x x x x {š]im}GUR₂.GUR₂ NAG-MEŠ-ma T[I] +9. [x x x x x x x x x x ana T]I-šu₂ I₃.GIŠ {šim}GUR₂.GUR₂ I₃.GIŠ {šim}LI ŠEŠ₂-[su] +10. [x x x x x x x x x] i#-na!?#-qu₂ tu-ṣar-raš!(BI)-ma [TI] +11. [x x x x x x x x x x x] {u₂#}ap-ru₃-ša₂ {u₂}il₃-kul₂-la ša₂ PU₂# [x x] +12. [x x x x x x x] ŠEŠ₂-su-m[a TI] +13. [x x x x x x x x x] tu#-bal ta-sak₃ ina I₃ HI.HI ŠEŠ₂-MEŠ#-su#-[ma TI] +14. [x x x x x x x t]u-bal ta-sak₃ ina I₃ HI.HI ŠEŠ₂-MEŠ-s[u-ma TI] +15. [DIŠ NA x x x] x MUR-MEŠ GIG-ma NA BI ṣi-na-a[h-tu-ra] +16. [... {šim}]ŠEŠ# 3 U₂-HI.A ša₂-šu₂-nu x [x x x] +17. [... t]a-sak₃# ina# I₃# x [x x x] +18. [...] + +1. DIŠ NA NINDA GU₇ KAŠ NAG-ma ŠA₃--šu₂ in-nem-me-ru in-ne₂?#-[bi-ṭu₂ x x x x x x] +2. UD#.DA# SA₂.SA₂ NA₄ ZU₂.LUM.MA GAZ GIM KAM.ZI₃.DA tara-bak# [x x x x x] +3. [... ina] {dug#}UTUL₇# ŠEG₆#-[šal ...] +1'. [...] x (x) [...] +2'. [... i]-lu#-ru sa-a-mu GAZ SAG.DU#-s[u ...] +3'. [... e-q]i-di ša₂ la MUN GAZ ina GA H[I?.HI ...] +4'. [...] x {u₂}i-lu-ru sa-a-mu SAG.DU-su še bi [...] +5'. [... tu]-kaṣ₃#-ṣa EGIR-šu₂ e-qi-di-ma ša la MUN ana x [...] +6'. [... L]AL₂-id SAG.DU-su ina {tug₂}ṣi-in-[di ...] +7'. [...] x šu₂ la ta-ṣa-ba [...] +8'. [...] x ZI₃ bu-ṭu-tu₂ ina# A tara#-bak# SAG.DU-su LAL₂ [...] +9'. [...] PIŠ₁₀.{d}ID₂ NAGA.SI U₅ ARG[AB{mušen} ...] +10'. [... ŠE]Š DIŠ-niš ina GISSU HAD₂.DU GAZ S[IM ...] +11'. [... gu]-riš#-tu₂ i-tel-l[i ...] +12'. [...] x x [x x] x [...] +1'. [NUMUN] {u₂#}NU#.LUH#.H[A ...] +2'. NUMUN {u₂}AB₂.[DUH ...] +3'. NUMUN {u₂}u₅#-[ra-nu ...] +4'. DIŠ NA ki-is Š[A₃ GIG ...] +5'. ul-tu x [...] +6'. DIŠ NA ki-is# [ŠA₃ GIG ...] +7'. NUMUN {u₂}x [...] +8'. ul-tu x [...] +9'. x x x [...] +1'. [...] x +2'. [... GUR.GU]R!?-š[u-ma T]I +3'. [... NA BI aš-rat {d}ni]n-urta KIN-ma DUG₄.GA?# x x-šu₂ +4'. [... I₃.GIŠ {šim}G]IG SUD {sig₂}AKA₃ NIGIN#-mi +5'. [...] x bi# za te : I₃ {šim}LI +6'. [... GUR.G]UR-šu-ma TI +7'. [... NA B]I aš-rat {d}UTU KIN-ma +8'. [...] x NIGIN#-mi# ana# ŠA₃?# GEŠTU?#-[MIN?]-šu₂?# GAR?#-[(an)] +1'. [...] x [...] +2'. [... PI]Š₁₀.I[D₂ x x x x x x x x] +3'. [... NAM.L]U₂.U₁₈.L[U x x x x x x x x x] +4'. [...] {giš!}EREN T[AG-at x x x x x x] +5'. [...] ŠEŠ₂?#-su?# Š[E₁₀? x x x x] +6'. [... LU₂].U₁₈?#.LU?# [x x x x x] +1'. [... te-ṭer₅]-ri# LAL# +2'. [... {u₂}]IGI-lim +3'. [... NU pa]-tan# NAG +4'. [...] ZU₂#.LUM +5'. [... SU]R LAL +6'. [...] x +1. [DIŠ NA IGI-MIN-šu₂ mur-di]n-ni DIRI sah-le₂-e ZI₃ ŠE.SA.A ina KAŠ tara-bak LAL UD.3.KAM₂ IGI.MIN-š[u₂ NU DU₈] +2. [ka-la] UD#-me# 3#-šu₂# KEŠDA ina 4 UD-mi ina {šim}MAN.DU er-ri IGI.MIN-šu₂ ta-kad-da-ad A ina Š[A₃ IGI.MIN-šu₂ ŠUB] +3. [IGI.MIN-šu₂ t]u-šak-kal qer-ša₂ em-ma 1-šu₂ 2-šu₂ 3-šu₂ IGI.MIN-šu₂ KEŠDA I₃.UDU kur-sin-ni MAŠ.DA₃ IG[I.MIN-šu₂ (x)] x-pap? +4. [ina EG]IR-ti₃ ina ir-ri A.GAR₅ SUD₂ IGI.MIN-šu₂ MAR {giš}HAB SUD₂ ana UGU IGI.MIN-šu₂ ta-bi-la₁₂ MAR# LAL +5. [k]a-la UD-me 3-šu₂ KEŠDA u₂-kal-ma ZI {giš}MAŠ.HUŠ {( u {giš}šinig )} NUMUN {u₂}KI.{d}IŠKUR [{ši]m?}LI +6. ŠE.SA.A sah-le₂-e HE.HE ta-bi-la₁₂ ana UGU SAG.DU-šu₂ MAR SAG.DU-su LAL-ma U[D.3.KAM₂ NU D]U₈ +7. ina 4 UD-me DU₈-šu₂-ma SAG.DU-su tu-gal-lab U₂ rib-ka IGI.MIN-šu₂ MAR.MEŠ [ina-e]š +8. U₂.BABBAR U₅.ARGAB{mušen} {mun}eme-sal-li₃ NA₄ ga-bi-i NAGA.SI {šim}SES IM.G[U₂?.EN?.NA?] +9. GAZI{sar} PAP 8 U₂.MEŠ ṭi₅-pu šum-ma NA IGI.MIN-šu₂ UD.DA ha-an-ṭa u mur-d[in-ni DIRI] +10. U₂.BABBAR NA₄ ga-bi-i {mun}eme-sal-li₃ an-nu-u₂ ṭi-[pu ša₂ IGI.MIN] +11. {šim#}GUR₂.GUR₂ ZI₃ ŠE.SA.A GAZI{sar} an-nu-u₂ [ṭi-pu ša₂ IGI.MIN] +12. [DIŠ N]A IGI#.MIN#-šu₂# GID₂#.DA#.GID₂#.DA# u₂#-kal-la ana E₂ a-hi-i DU-ma KA₂? GU₃-si ki-ma x [...] +13. [... GID₂.D]A.GID₂-du KIMIN# GID₂#.DA#.GID₂#-du#-ku-nu-ma tab-la MIN [...] +14. a-[na E₂ (NU?)] e#-de-e DU-ma KA₂ GU₃-si ki-ma# x x x [...] +15. HI x [(x x) GI]D₂.DA.GID₂-du KIMIN GID₂.GID₂-ku-nu-ma tab-la x [...] +16. DIŠ N[A ina IGI.MI]N-šu₂ li-piš-tu₄ {šim}GUR₂.GUR₂ {šim}LI {šim}HAB NUMUN ŠI[NIG ... SUD₂ ...] +17. DIŠ NA in[a IG]I.MIN-šu₂ SIG₂ a-ṣa-at u IGI.MIN-šu₂ a-ša₂-a MUN kam₂-ma I₃#.UDU# [ELLAG₂? ...] +18. ša₂ UDU.NI[TA₂ LA]L₃.KUR.RA mal₂-ma-liš SUD₂ ina I₃.NUN HE.HE IGI.MIN-šu₂ MAR ta-ma[š-aš? ...] +19. DIŠ N[A IGI.MIN]-šu₂ UZU a-li-ka₁₃ DIRI-a ana [TI-šu₂ ...] +20. x [x NUMUN] GI.ZU₂.LUM.MA ina LAL₃ SUD₂ MAR : x [...] +21. [x x {n]a₄}as-har ina I₃.NUN SUD₂ MAR : x [...] +22. [DIŠ NA IGI.M]IN-šu₂ UZU DU-kam₂ DIRI-ma u DU-ak ana TI-šu₂# x [...] +23. [{ši]m}GIG U₂.BABBAR U₅.ARGAB{mušen} {mu[n}eme-sal-li₃ 1-niš SUD₂ ...] +24. [ina MUD₂ {gi]š}EREN lu ina I₃+GIŠ {giš#}EREN HE.HE Z[A.NA DU₃-uš ina A.MEŠ SUD₂ IGI.MIN-šu₂ MAR] +25. [DIŠ NA IG]I.MIN-šu₂ UZU u MUD₂ DIRI.MEŠ {šim}S[ES? {u₂}KUR.RA U₂.BABBAR I₃.UDU {šim}GIG] +26. [U₅.A]RGAB{mušen} sah-lu-u U₂.MEŠ an-nu-t[i te-qit ša₂ UZU DU] +27. [DIŠ NA IGI.MI]N-šu₂ qu₃-qa-ni DIRI.MEŠ gu-ru-uš-ga-r[a-aš ša ŠAH ...] +28. [ina TU]G₂ te-sip 7 UD-me ina KUN₄ te-te-m[er E₁₁-ma ...] +29. [x x ma]l-ma₂-l[iš SUD₂ x x x x] x x [...] +50'. [... ina I₃.UDU GIR₃.PAD].DU# LUGUD₂#.DA UD[U? ...] x x x [SUD₂ MAR] +51'. [x x] x [... ma]l₂-ma-liš SUD₂ ina LAL₃ I₃.NUN I₃.GIŠ {giš}EREN SAHAR.URUDU S[UD₂? MAR] +52'. DIŠ# KIMIN# ZI₃ {d}[ŠE.TIR] KI ŠE.SA.A SUD₂ ana UGU IGI.MIN-šu₂ DUB +53'. DIŠ NA IGI.MIN-šu₂ [... ina I₃.UDU ELLAG₂ UDU.NI]TA₂? GAB.LAL₃ 1-niš HE.HE ina I₃.UDU GIR₃.PAD.DU GID₂.DA SUD₂ te-eq-qi₂ +54'. DIŠ i-na IGI x [x x x] x i-te-ne₂-ṭa-a NA BI KIN-šu₂ SUMUN-ma IGI.MIN-šu₂ ip-pa-a +55'. ana TI-šu₂ 1 GI[N₂ x x x x] x ina I₃.NUN SUD₂ IGI.MIN-šu₂ MAR.MEŠ +56'. DIŠ NA IGI.MIN-šu₂ nu-u[p-pu-ha ... Z]I₃ {šim}GUR₂.GUR₂ ZI₃ ŠE.SA.A GAZ SIM ina KAŠ tara-bak IGI.MIN-šu₂ LAL +57'. U₂.BABBAR NA₄ [ga-bi-i {mun}eme-sal-li₃] U₂#.HI#.A ṭi-pu ša₂ IGI.MIN +58'. DIŠ NA IGI.MIN-šu₂ ba[r-ra u ER₂ u₂-kal-la ...] GAB?#.L[AL₃?] x x x (x) +59'. 7 UD-me ina KU[N₄ te-te-mer E₁₁-ma ...] x [...] +60'. DIŠ# NA# IGI#.MIN#-šu₂# [... S]UD₂ IGI#.MIN#-šu₂# MAR# x [...] +61'. DIŠ NA IGI.MIN-šu₂ a[r-pa ...] ina I₃ u SAHAR.UR[UDU ša ŠEN.TUR SUD₂ IGI.MIN-šu₂ MAR] +62'. ŠIKA LIBIR.RA ša₂ ki-ib#-š[a? TUK-u₂] ina# I₃ SAHAR.URUDU SUD₂ MAR LAL₃.K[UR.RA ...] +63'. DIŠ NA IGI.MIN-šu₂ ṣu-uh-hu-ta [GEŠTI]N.KA₅.A SIG₇-su tu-ha-sa A.MEŠ-šu₂ ina {d[ug}UTUL₂ tara-bak] +64'. IGI DUL-ma ša₂ AN.TA i-[ša]l?-lu ina SAHAR.URUDU u I₃.GI[Š SUD₂ MAR] +65'. DIŠ KIMIN ZA₃.HI.LI ina GA ta#-ka#-aṣ ina NININDU te-ep-pi ma-ʾ-da la i-ba-x [...] +66'. I₃.UDU {šim}GIG {u₂}KUR.KU[R N]A₄ ga-bi-i U₂.BABBAR GAZI{sar} ina I₃.NUN SU[D₂ IGI.MIN-šu₂ MAR] +67'. [DIŠ K]IMIN NINDA ši-ib-ri t[ur-a]r₂ SUD₂ ki-ma ṭi-pi te-ṭe-e[p-pi] +68'. [DIŠ KIMI]N ZI₃ GU₂.GAL ZI₃ G[U₂.TUR] ZI₃# GAZI{sar} sah-le-e qa-la-a-ti bal-ṭa-ti ina {dug}UTUL₂ tara-ba[k LAL] +69'. DIŠ# KIMIN# {šim}BA[L G]AZI{sar} ina GA SUD₂ IGI.MIN-šu₂ [MA]R? +70'. DIŠ KIMIN U₂#.BA[BBAR A]N.ZAH.GE₆ tur-ar₂ ina I₃.NUN SUD₂ MAR : DIŠ KIMIN KU₃.GAN ina I₃.UDU GIR₃.PAD.DU UDU SUD₂ MAR# +71'. DIŠ KIMIN ZI₂ BAL.[G]I{ku₆#} ina MUN NA₂-al EN HAD₂.DU GAR-an UD-ma HAD₂.DU ina I₃ SAHAR.URUDU SUD₂ MAR# +72'. DIŠ KIMIN Z[I₂ x (x x)] UGU GIR₂.ZABAR ina I₃.NUN SUD₂ MAR# {( x x )} [...] + +1. DIŠ KIMIN U₂.BABBAR {u₂}GEŠTIN.K[A₅.A ina] I₃?+GIŠ? ŠUB ina ŠU.SI-ka MAR +2. DIŠ KIMIN SAG.DU EME.ŠID HAD₂.DU S[UD₂ ina I₃ ŠUB MAR : DIŠ K]IMIN EME.ŠID E₂.GAR₈ HAD₂.DU SUD₂ ina ŠU.LU₂.ZABAR? ina NE GAR-an MAR +3. GAG.TI.TI UDU tur-ar₂ SU[D₂ (...) U]D.3.KAM₂ ina mu-ša₂-li₃ GAR SAG.UŠ MAR +4. DIŠ NA IGI.MIN-šu₂ DUL?-ma x [x SU]D₂? ina I₃.NUN HE.HE ana ŠA₃ IGI.MIN-šu₂ tu-na-tak +5. UGU ša SUN₂-ti₃ S[UD₂? (...) ina] I₃+GIŠ u UGU ša TU{mušen} NITA +6. mal-ma-liš HE.HE U[D.3.KAM₂ ina mu-ša₂-li₃ GAR S]AG.UŠ ana ŠA₃ IGI.MIN-šu₂ ŠUB.ŠUB-di +7. NUNUZ UG[A{mušen} SUD₂ x x x (x) EG]IR? E₁₁-ma GIR₂.ZABAR I₃.NUN ŠEŠ₂ +8. x [... Š]U.MEŠ-ka ina A LUH-si +9. [... ina] I₃#.NUN tu-la-bak MAR +10. [... ina mu-ša₂-li₃ GAR-a]n ka-a-a-nam te-te-ne₂-qi₂# +11. [...] SUD₂# MAR +12. [... a]na I₃#+GIŠ# tara#-bak# IGI#.4#.GAL₂#.LA {im}KAL.GUG SUD₂ MAR +13. [...] x SILAₓ!(KISAL) ku-ut-pa-a ina I₃+GIŠ EREN SUD₂ te-qi₂ +14. [...] x :#? GEŠTIN.KA₅.A SUD₂ ina I₃ ina {urudu}ŠEN.TUR BAL-at te-qi₂ +15. [... (NUMUN) {giš}NIG₂.GA]N₂.GAN₂# ur₂-ne₂-e? UR.BI ta-sak₃ te-qi₂ +16. [...] ina I₃ SUD₂ te-qi₂ +17. [...] x-ta ana ŠA₃ IGI.MIN-šu₂ tu-na-tak +18. [... bu-ṣi-n]i? ša₂ nu-ri₃ ta-sa-rim qut-raₓ(AG₂) ša nu-ri₃ +19. [...] x KI A NAGA.SI IGI.MIN-šu₂ LUH-si +20. [... U₂.BABBA]R? 5?# GIN₂ U₅.ARGAB{mušen} mal#-ma#-liš# HE.HE +21. [... DIL]IM₂ A#.BAR₂# ina I₃ u SAHAR#.URUDU# SUD₂ MAR +22. [... ina {urudu}ŠE]N?.TUR tu-kaṣ₃-ṣa# ina# {urudu}ŠEN#.TUR HE.HE +23. [... SAHAR.URUD]U ša# {urudu}ŠEN.TUR ta-šam-ma-aṭ 7 UD-mi MAR +24. [...] x pa-ʾa-ṣu₂-te I₃.UDU +25. [... ina ir-ri] A#.GAR₅ SUD₂ te-qi₂-ma PA IGI.MIN-šu₂ ik-ši +26. [a-na IGI.MIN ki-ṣa-a-ti bul-lu-ṭu u₃ kap-pi IGI.MIN-šu₂ š]u-ṣi-i sah-le₂-e ki-ṣa-a-ti ina NININDU!(SUG) TE-ma +27. [ma-ʾa-du la ir-ri-ra ina I₃.GIŠ.BUR tara-bak IGI.MIN-šu₂ MA]R URUDU SUMUN ina I₃.NUN SUD₂ GIN₇ rib-ki IGI.MIN-šu₂ MAR.MEŠ-ma TI +28. [... A?] {u₂#}IN₆.UŠ₂ A {u₂}EME.UR.GI₇ A {u₂}GEŠTIN.KA₅.A +29. [...]-ti# TI#-qe₂ ina SAHAR.URUDU {( A sah-le₂-e )} SUD₂ IGI#.MIN#-šu₂# MAR# +30. [... tu]r-ar₂# ta#-pa#-a#-aṣ# ina# SAHAR.URUDU SUD₂ MAR# +31. [... 7 UD-me ina KU]N₄ te-tem-mer E₁₁-ma ina SAHAR.URUDU SUD₂ MAR +32. [...] ina SAHAR.URUDU SUD₂ MAR +33. [...] x IGI.MEŠ-šu₂-nu ina {giš}DALA₂ tu-tak₂-kap +34. [...] U₂#.MEŠ# ša# UGA{mušen} ana TUR.MEŠ-šu₂ il-qa-a +35. [...] ša₂-šu ta-sak₃ te-qi₂ +36. [... k]am-ka-di SUD₂ UGU GIG.GIR ša kap-pi IGI.MIN-šu₂ +37. [tu?-gal?-lab?] {u₂#}BAL# NUMUN# U₂# [da-a]q-qi₂-qi₂ ŠE₁₀ up-pu-te gu-ra ša₂ GI NUMUN {u₂}ta-lu-pa-di +38. [la-a]r-si₃-ni ša hal-li U₈# ša GUB₃ ša MAŠ.TAB.BA U₃.TU +39. [ELLAG₂] MAŠ₂.TUR la-ki-i ša U₂ la na-aš#-ku# ŠE.BAR la ṣa-bi-tu₂ ina nem-se-te ta-qal₃#-lu# +40. [({giš})b]al-ta₅ ša MUN {u₂}GUR₂.UŠ {giš}GEŠTIN.KA₅#.A# NUMUN {u₂}NIG₂.GIDRU ta-qal-lu NUMUN {u₂}EM[E.UR.GI₇] +41. {u₂}KUR₄.GI.RIN.NA {u₂}gim-gi-ra U₂.BABBAR# [GI.DU]G₃.GA 1-niš SUD₂ HE.HE ina A GAZI{sar} sek-ru-t[i] +42. [S]ED ta-la₃-aš UD.15.KAM₂ LAL.M[EŠ?] UD.15.KAM₂ U₂.BABBAR UD.3.KAM₂ te-eq-q[i₂] +43. [DIŠ N]A IGI.MIN-šu₂ IGI.SIG₇.SIG₇ DIRI BAR {giš}NU.U[R₂.M]A SUD₂ ina {gi}SAG.KUD ana ŠA₃ IGI.MIN-šu₂ B[UN₂?] +44. [DIŠ NA I]GI.MIN#-šu₂ IGI.SIG₇.SIG₇ DIRI ŠIKA {giš}NU.UR₂.[M]A ina I₃ SUD₂ MAR : {mun}eme-sal-li₃ S[UD₂? MAR?] +45. [DIŠ NA IGI.MIN-šu₂ G]IG-ma# UD# ma#-ʾ-du-ti NU BAD# ina KUM₂ SAG-šu₂ IGI.MIN-šu₂ GIS[SU DIRI?] +46. [... M]I? SAG.DU-su tu-gal-lab# ina# UD#-me# 3#-šu₂# NIG₂#.SILA₁₁.GA₂ tu-kaṣ₃-ṣa# NUMUN# {u₂#}IN₆#.UŠ₂# t[ur-ar₂] +47. [ina I₃.NUN DILIM₂] A#.BAR₂ SUD₂ MAR A LUH-si GAZI{sar} UGU IGI#.MIN#-šu₂# GAR#? EN#? u₂#-za#-ku#-u₂ GUR.G[UR] +48. {u₂#}[GEŠTIN?.K]A₅.A LAL₃.KUR.RA ina I₃.NUN HE.HE# te-te-niq-q[i₂] +49. DIŠ NA# IGI#.MIN#-šu₂ GIG-ma ši-ši-tu UGU {d}LAMA IGI.MIN#-šu₂# a[r₂-ma]t [E]R₂.HI.A DU-ak IGI.MIN-šu₂ GISSU DIRI-[ma] +50. {u₂}UKUŠ₂#.LAGAB sah-la-na NUMUN {u₂}EM[E.UR.GI₇ ...] U₂#.BABBAR U₅.ARGAB{m[ušen}] +51. 11! U₂.HI#.A# ša-šu-nu# 1?#-[niš SUD₂ ina I₃.GIŠ {giš}ER]EN HE.HE IGI.MIN-šu₂ MAR-ma TI# +52. DIŠ NA IGI.MIN-šu₂# GIG#-m[a ši-ši-tu UGU {d}LAMA IGI.MIN-šu₂ ar₂-mat di-ga]l-šu# DUGUD# ana BABBAR ša UGU {d}LAMA IGI.MIN-šu₂ ZI# +53. {u₂}at-ka[m₂ ... SUD₂ ... ina I₃] {giš#}EREN HE.HE IGI.MIN-šu₂ MAR.MES-ma TI +54. DIŠ NA IGI.MIN-šu₂# [GIG-ma ...] x di-gal-šu DUGUD# +55. x x [... SU]D₂ IGI.MIN-šu₂ MAR +56. [...] x UM IM DU KU BA[D? ...] +57. [... S]UD₂ MAR +58. [... {g]iš}NAM.TAR NIT[A₂] +59. [...] x GU₇-ma x [(x)] +60. [... SUD₂ ina {gi}SAG.KUD ana Š]A₃ IGI#.MIN#-šu₂# MU₂#-ah +61. [... SU]D₂? MIN +62. [... ŠUB-d]i ana UGU ŠIKA i₃-gu-le-e +63. [...] x ta-šar₂-rap qut-ra ša₂ šit-ti +64. [... a-he-e]n-na IGI.MIN-šu₂ MAR.MEŠ-ma TI +65. [DIŠ N]A I[GI.M]IN-[šu₂ ...] x-ma DUGUD ana TI-šu₂ ILLU NU.LUH +66. ILLU {šim#}BULUH# {u₂#} [... 7 I]TI u 8 ITI ZI-ha TI +67. DIŠ NA IGI.MIN-šu₂ ši-š[i-tu₂ DIRI ... 1]5? ŠE ŠIKA U₂.BABBAR ina I₃.NUN SUD₂ MAR +68. DIŠ NA MIN 1 GIN₂ U₅#.[ARGAB{mušen} ... SUD₂ ...] x [x t]a-bi-la₁₂ MAR +69. DIŠ NA MIN 1 GIN₂ U₅.ARGAB#{mušen#} ina# I₃#.NUN# SUD₂# MAR# :# 15 ŠE Š[IKA ... ina ... S]UD₂ MAR# +70. {u₂}im-hur-lim ina I₃.NUN [SUD₂ (IGI.MIN-šu₂) MAR] + +9'. [... 1-šu₂] 2#-šu₂# 3#-šu₂# I₃#.NUN# SUD₂# MAR# +10'. [... ina] I₃#.NUN# SUD₂# ina# ITI# 3#-šu₂# MAR# U₅#.ARGAB#{mušen#} ina# I₃#.NUN# SUD₂# MAR# P[A {giš}]bi-ni PA {giš}MA.NU +11'. [ina A.GEŠTI]N.NA ta-la-aš IGI.MIN-šu₂ LAL U₂.BABBAR NAGA.SI UR.TAL₂.TAL₂ NU pa#-tan# [ana] ŠA₃# IGI.MIN-šu₂ ta-ma-za-aʾ +12'. [...] x {mun#}eme-sal-li₃ si-ik-ti ŠE.SA.A# HE#.HE# tur-ar₂ SUD₂ MAR +13'. [DIŠ ... SAH]AR.URUDU ina ŠA₃ I₃.UDU sa-a-qi₂ M[AŠ.D]A₃ SUD₂ MAR +14'. [DIŠ ... {šim}SES GA {munus}U₂.ZUG₂ ša₂ NI]TA? U₃.TU SUD₂ MAR# LAL₃# I₃.NUN.NA ana ŠA₃ IGI.MIN-šu₂ tu-na-tak₂ +15'. [DIŠ ...] x x [...] IM NU E₃-a +16'. [...] x ina I₃.NUN HE.HE MAR +17'. [...] ta-ša-qal₃ MAR +18'. [... U₅.ARGAB{m]ušen} ta#-bi#-la₁₂# ina# I₃.NUN HE.HE KIMIN +19'. [...] u₂#-ba#-ni#-a-ṣi SIG₇-su ina A# LUH#-si GAZ A.MEŠ-šu₂-nu +20'. [...] HAD₂#.DU# ši-hi-il-tu₂ SAHAR.URUDU mal-ma-liš HE.HE [ina A LU]H LAL₃.KUR-e SUD₂ MAR +21'. [... ina G]A {munus}U₂.ZUG₂ mal-ma-liš HE.HE SUD₂# MAR +22'. [... A.M]EŠ-šu₂-nu ana {dug}BUR.ZI [SU]R-at# +23'. [... EN HAD₂.DU GAR-an U]D-ma HAD₂.DU ina SAHAR.URUDU I₃.NUN SUD₂# MAR# +24'. [... ana Š]A₃ IGI.MIN-šu₂ tu-na-tak₂ I₃.UDU ina SAHAR.URUDU SUD₂ MAR# +25'. [DIŠ ... IGI.M]IN-šu₂ kat₂-ma kur-ṣip-ti A.ŠA₃ ina {na₄}BAR.DU₃.E SUD₂ ŠA₃ IGI.MIN-šu₂ +26'. [...] x {na₄}KA.GI.NA.DAB.BA SUHUŠ {giš}GIŠIMMAR NITA₂ +27'. [... IM.SAHAR.N]A₄.KUR.RA a-he-e SUD₂ MAR +28'. [...] x GURUN {u₂}UKUŠ₂.LAGAB GAZ ina I₃ SUD₂ MAR +29'. [... ina LA]L₃.KUR#.RA I₃.NUN MIN +30'. [... S]UD₂ MAR# +34'. [...] SUD₂# ina# I₃#.N[UN HE.HE ...] +35'. [... IGI.MEŠ]-šu₂-nu ina {giš}DALA₂ t[u-tak₂-kap] +36'. [...] ina DILIM₂ A.BAR₂ [SUD₂ MAR] +37'. [... b]i-la-ta HAD₂.DU GAZ ina I₃.NU[N SUD₂ MAR] +38'. [... SU]D₂? ana ŠA₃ IGI.MIN-šu₂ t[u-na-tak₂] +39'. [... M]AR +40'. [...] x-ti-i BAD +41'. [...] x-hap-pi +42'. [...] SUD₂ MAR +43'. [... ina TU]G₂? te-sip +44'. [... ana ŠA₃ IGI.MIN-šu₂ tu]-na-tak₂ +45'. [...] GIŠ i-na-sah +46'. [...] x A.GAR.GAR MAŠ.DA₃ +47'. [...] ta#-sak₃ MAR +48'. [...] x +49'. [...] x ina A SUD₂ te-qi₂ +50'. [... in]a KAŠ# ta-la₃-aš IGI.MIN-šu₂ LAL +51'. [...] te-qi₂ +52'. [...] x SUD₂ te-qi₂ +53'. [... in]a I₃ SUD₂ te-qi₂ +54'. [... ina IGI-šu₂ G]IG tu-mad +55'. [... t]a-sak₃ te-qi₂ +56'. [... S]UD₂ MAR +57'. x x [...] KEŠDA +58'. KAŠ₃# [...] {u₂#}KUR.KUR +59'. ŠA₃ IGI.MI[N-šu₂ ... AR]A₃-en# +60'. DIŠ IGI.MIN-š[u₂ ...] ZA₃.HI.LI +61'. U₂ a-ši-i [... ina G]A HE.HE MAR +62'. a-na nu-uh₂-hi x [...] x ina I₃ HE.HE MAR +63'. I₃.UDU ŠIKA MUN ana ŠA₃ IGI.MI[N-šu₂ ...] ina I₃.GIŠ {giš}EREN HE.HE MAR +64'. {mun}me₅-SILIM {u₂}ak-tam SUD₂ ina LA[L₃ ...] ina# LAL₃ BABBAR GIR₂.ZABAR MIN +65'. DIŠ NA IGI.MIN-šu₂ ma-di-ra x [...] x-ra U₂.BABBAR NUMUN GI.ZU₂.LUM.MA + +1. U₅.ARGAB{muš[en} ...] +2. A.GAR₅ ina I₃.NUN BIL₂ x [...] +3. DIŠ NA IGI.MIN-šu₂ GISSU-ma šam#-ha# [...] +4. DIŠ NA IGI ZAG-šu₂ GISSU#-[ma ...] +5. ina GIR₂.ŠU.I š[e-e-li? ...] +6. DIŠ NA IGI GUB₃-šu₂ GISS[U-ma ...] +7. ina GIR₂.ŠU.I [...] +8. DIŠ NA IGI.MIN-šu₂ GIG.GA ZALAG#.GA# x [...] +9. UGU ša TI₈{mušen} ina GA {munus#}U₂#?.[ZUG₂? SUD₂? ...] +10. NUMUN GI.ZU₂.LUM.MA si-ik-t[i ŠE.SA.A HE.HE ...] +11. DIŠ NA {d}LAMA.MEŠ IGI.MIN-šu₂ GI[SSU DIRI? ...] +12. [I]GI.MIN-šu₂ MAR DIŠ KIMIN ILLU L[I.TAR ...] +13. [DIŠ IG]I LU₂# GISSU ṣi#-[ri-ih-ta₅ DIRI ...] +14. [...] x x [...] +41'. [...]-ri#-i# [...] +42'. [...] x DIŠ K[IMIN? ...] +43'. [DIŠ NA IGI.MIN-šu₂] x x# DIRI x [...] +44'. [...] x MUD₂ kur-ṣib-ti GU₄ GE₆ u x [...] +45'. [DIŠ NA] IGI.MIN-šu₂ LU₃.LU₃ LAL₃ BABBAR ina I₃.[NUN 1-niš HE.HE ...] +46'. [DUB].2#.KAM₂ DIŠ NA [IGI.MIN-šu₂ GIG] +47'. [E₂.GAL {m}aš-šur-DU₃.A LUGAL ŠU₂ 20 KUR AN.ŠAR₂{ki} ša {d}AG u {d}taš-me-tu₄ GEŠTU.MIN ra-pa-aš₂-tu₄ iš-ru-ku-šu₂] +48'. [e-hu-uz-z]u [IGI.MIN n]a-mir#-t[u₄ ni-siq tup-šar-ru-ti] +49'. ša ina LUGAL.MEŠ-ni a-lik mah-ri#-ia mam₂#-ma# šip#-ru# [šu-a-tu₂ NU e-hu-uz-zu] +50'. bul#-ṭi TA muh-hi EN UMBIN liq#-ti# BAR#.MEŠ# ta#-h[i-zu nak-l]a +52'. a-zu-gal-lu-ut {d}nin-urta u {d}gu-la ma-la ba-aš₂-mu ina# ṭ[up-pa-a-ni aš₂-ṭur₃ as-n]iq IGI.KAR₂-ma +51'. a#-na ta-mar-ti ° \\ ° ši-ta-si-ia qe₂-reb E₂.GAL-ia# u₂#-kin +1. DIŠ# NA su-a-lam GIG ana ki-is ŠA₃ GUR-<šu₂> šu-ru-uš# {giš}NAM.TAR šu-ru#-uš# {giš}šu-še +2. {u₂}tar-muš {u₂}IGI-lim {u₂}IGI.NIŠ {u₂}tu-lal {u₂}ŠAKIRA# 7 U₂.HI#.A ŠEŠ TEŠ₂.BI SUD₂ +3. ina KAŠ ŠUB-di ina MUL tuš-bat ina A₂.GU₂.ZI.GA NU pa-tan NAG#-MEŠ-ma ina-eš +4. DIŠ NA ki-is ŠA₃ GIG ina UD ša₂-tu {giš}MA₂.GUR₈ U₅-šu₂ E₁₁#-šu₂-ma TU₆ ki-a-am ŠID-nu +5. EN₂ E₂.NU.RU %sux LU RA GAR dam gal kur MIN : gi {d}en.lil₂ a₂.e# nu.ub.zum %akk {d}zar-pa-ni-tu₄ +6. ša %sux igi.gal₂.la gub.a?# gir₃.a.ni gub.ba gir₃.a.ni dur₂#.ra {( : du-ra )} gir₃ igi.gal₂ gub +7. %sux gir₃ igi.gal₂ %akk TU₆ EN₂ TU₆ an-ni-ta ŠID-nu-ma TI +8. ana KI MIN UZU {d}NIN.KILIM HAD₂.A ba-lu pa-tan NAG-ma TI : ana KI MIN šu-ru-uš {giš}šu₂-še ina A-MEŠ ba-lu pa-tan NAG-ma TI +9. ana KI MIN MUN SUD₂ ina A-MEŠ ba-lu pa-tan NAG-ma TI +10. ana KI MIN MUN a-ma-ni₇ SUD₂ ba-lu pa-tan NAG-ma TI +11. DIŠ NA ki-is ŠA₃ GIG NA BI ina UGU GIR₃-MIN-šu₂ tu-še-šab-šu₂ +12. A GAZI{sar} sek-ru-ti KUM₂-ti ana UGU-šu₂ DUB-ma TI +13. ana KI MIN ina UGU GIR₃-MIN-šu₂ uk-tam-ma-as-ma u₂-šab A ŠED₇ ana UGU SAG-šu₂ tu-qar-ra-ar₂ +14. ana KI MIN SAG.DU-su ana šap-la-nu GAR-an GIR₃-MIN-šu₂ ana AN.TA-nu tu-ša₂-qa ina me-ku-ti +15. TE-su ta-ma-haṣ ina me-ku-ti tu-ma-aš-<šad>-su-ma ana ŠA₃ DU₁₀-ab DU₁₁.GA ina ŠU.SI-ka GAL-ti +16. ša GUB₃ 14-šu₂ GU.DU-su TAG-at 14-šu₂ SAG.DU-su TAG-at u qaq#-qa-ra TAG-at +17. ana# KI MIN SUHUŠ {giš}NAM.TAR NITA₂ SUHUŠ {giš}šu-šum {u₂}IGI-lim {u₂#}IGI#-NIŠ {u₂}tar-muš +18. {u₂#}IN#.NU#.UŠ {u₂}EME UR.GI₇ SUD₂ lu ina A lu in[a KA]Š NAG +19. DIŠ NA ŠA₃-šu₂ it#-te-net-ba-aš-šum 10 SILAₓ {u₂#}[x x x] x +20. 10 SILAₓ {u₂}MA₂.ERIŠ₄.MA₂.LA₂#-e# SUD₂ HI.HI [x x x x T]I +21. DIŠ NA ki-is ŠA₃ GIG ŠA₃-MEŠ-šu₂ ma-ga[l M]U₂.MU₂-hu mu-še-er-r[it?-ta-šu₂ GU₇?-š]u₂ +22. {u₂}IGI-NIŠ SUHUŠ {giš}NAM.TAR NITA₂ a-he-en#-[na-a GAZ? SIM? ina Š]A₃? mal#-ma#-liš# TI#-qe₂# ina# K[AŠ? NAG? ina A? ŠE]D₇? +23. tu-la-bak ina MUL₄ tuš-bat ina še-ri₃ ŠEG₆#-šal# ta#-ša₂#-hal# ana# DUR₂#-šu₂ DUB-ak SI.SA₂-m[a TI] +24. {šim}GUR₂.GUR₂ {šim}LI {šim}GAM.MA PA {giš}GE₆.PAR₃ PA {giš}ŠE.HAR NUMUN {u₂}ur-ba#-ti?# +25. DIŠ-niš GAZ SIM# KI?# I₃?#.UDU?# {šim#}HAB HI.HI ina KUŠ.EDIN SUR-ri SAG ŠA₃-šu₂ LAL₂-ma TI +26. DIŠ NA ki-i[s ŠA₃ GIG NINDA u KA]Š ŠA₃#-šu₂ NU IGI-har-šu₂ ina KA-šu₂ GUR.GUR-ra TUN₃-šu₂ u₂-sa-hal-šu₂ +27. ip-ta-na-ru# [UZU-MEŠ-šu₂ ir]-ta#-nam-mu-u₂ IM ina DUR₂-šu₂ NIGIN ŠA₃-MEŠ-šu₂ eb-ṭu₂ ana TI-šu₂ +28. 1/2 SILA₃ A ZU₂.LUM.MA# 1/2# SILA₃# A# GAZI#{sar} 10 SILAₓ A.GEŠTIN.NA 3 GIN₂ I₃ hal-ṣa 2 GIN₂ LAL₃ 10 GIN₂ {u₂}KUR.RA +29. SUD₂ ana ŠA₃ ŠUB-di ina GE₆ ana IGI {mul}UZ₃ tuš-bat ina A₂.GU₂.ZI.GA NU pa-tan NAG-šu₂ +30. EGIR-šu₂ 1/2 SILA₃ ši-qa NAG-šu₂# ina KA-šu₂ u DUR₂-šu₂ SI.SA₂ tu-ser-šu₂-ma TI-uṭ +31. ana KI MIN MUN KUR-i MUN a-ma-ni₇ TEŠ₂.BI SUD₂ ina KAŠ NU pa-tan NAG-šu₂ ina KA-šu₂ u DUR₂-šu₂ SI.SA₂-ma tu-ser-šu₂-ma TI +32. ana KI MIN {u₂}NU.LUH.HA 7 ŠE-MEŠ {u₂}IGI-lim TEŠ₂.BI SUD₂# ina# KAŠ#.SAG# NU# pa-tan NAG-šu₂ ina KA-šu₂ u DUR₂-šu₂ SI.SA₂-ma KI MIN +33. [ana KI MIN Z]I₃ ŠE#.SA.A ZI₃ ha-ru-be di#-ik-ta ZU₂.LUM.MA TEŠ₂.BI SUD₂ ina KAŠ NU pa-tan 2# UD#-[me] +34. [NAG-MEŠ 2?] UD#-me# ina A-MEŠ NU pa-tan NAG-MEŠ A-MEŠ SAG ŠA₃-šu₂ tu#-s[a-lah₂-ma TI] +35. [ana KI MIN {urudu}ŠEN.TUR] A# u# KAŠ# DIRI-ma {giš}s[i-ha {giš}a]r₂-gan#-na {giš}b[a-ri-ra-ta] +36. [{u₂}HAR.HAR] {u₂#}at-kam₂ ana# ŠA₃# ŠUB#-di# [x x x x x x x x x x] +37. [I₃ {giš}EREN ŠE]Š₂-su 1/2 SILA₃ sah-le₂-e 1/2 SILA₃ {šim}GUR₂.GUR₂ 1/2 SILA₃# [{šim}LI 1/2 SILA₃] {u₂#}qut#-ri# 1/2# SILA₃# GA[ZI{sar}] +38. [1/2 SILA₃] ZI₃# MUNU₆ 1/2 SILA₃ ZI₃ GU₂.GAL 1/2 SILA₃ ZI₃ GU₂.TUR 1/2# SILA₃# pa#-pa#-si#-{d#}ID₂# 1/2 SILA₃ {u₂}KUR.RA 1/2 SILA₃ {u₂}AB₂.D[UH] +39. [1/2 SIL]A₃ ŠE₁₀ TU#{mušen} 1/2 SILA₃ {u₂}KAM-ti A.ŠA₃ 10 GIN₂ {šim}MAŠ 10 GIN₂ KA A.AB#.BA# 1/2 SILA₃ ZI₃ GIG +40. [1/2 SIL]A₃ ZU₂#.LUM#.MA 1/2 SILA₃ DIDA SIG.GA 1/2 SILA₃ ZI₃.KUM 16 U₂-MEŠ an-nu-ti# TEŠ₂.BI GAZ SIM +41. [ina KAŠ].SAG# ina {urudu}ŠEN.TUR GIM ra-bi-ki tara-bak 3 UD-me SAG ŠA₃-šu₂ LAL₂-id NINDA-MEŠ# u# KAŠ# ŠA₃#-šu₂ IGI-har#-šu₂-ma TI +42. [DIŠ N]A ŠA₃-šu₂ ik-ta-na-su-šu₂ {u₂}IGI-lim NU pa-tan i-kal ta-sak₃ ina KAŠ NU# pa#-tan# NAG#-MEŠ#-ma# TI-uṭ +43. [ana K]I MIN {u₂}IGI.NIŠ SUHUŠ {u₂}šur-ne₂-e NU pa-tan# GU₇-MEŠ# SUD₂ ina KAŠ NU pa-tan NAG-MEŠ-ma TI-uṭ# +44. [ana] KI MIN {u₂}ar₂-zal-la {u₂}HAR.HAR {šim#}GUR₂#.GUR₂# {šim#}x x x x NU pa-tan KI MIN +45. ana KI MIN I₃.UDU a-a-ar DINGIR KI I₃.NUN.NA u MUN# HI.HI NU pa-tan# GU₇#-MEŠ-ma TI +46. ana KI MIN kak-ku-sa-kam₂# ša₂ PA-MEŠ-šu₂ DAGAL-MEŠ ina A GAZI#{sar#} SUD₂ ina KAŠ u# LAL₃# SIG₃#-aṣ# NU# pa#-tan# NAG#-MEŠ-ma TI +47. ana KI MIN kak-ku-sa-kam₂ ša₂ PA#-MEŠ#-šu₂ DAGAL-MEŠ u MUN DIŠ-niš# SUD₂# ina# KAŠ# u# LAL₃# SIG₃-aṣ# NU# pa#-tan NAG-MEŠ-ma# TI +48. ana# KI MIN KIŠI₁₆#.HAB# ša₂ PA-MEŠ-šu₂ DAGAL-MEŠ GIM LU.UB₂{sar#} ta#-sa-laq NAG#-MEŠ# TI# +49. [an]a KI# MIN# SUHUŠ# {giš#}šu#-še# NU pa-tan GU₇ SUD₂ ina KAŠ NU pa-tan N[AG x x x] x x x x TI# +50. [DIŠ NA x x x x] x TUKU? UD-um ŠA₃-šu₂ DAB#-[šu₂ x x x x x NU pa]-tan# NAG TI +51. [...] x [... KA]Š? MIN# + + +62'. [...] x +63'. [...] SA? +64'. [...] x +65'. [...] x x + +1. [DIŠ NA ŠA₃-š]u₂ GU₇-šu₂ {u₂}HAR.HAR MUN SUD₂ lu in[a A l]u ina KAŠ lu ina GEŠTIN <> ana ŠA₃ ŠUB-di NAG +2. DIŠ NA ŠA₃-šu₂ GU₇-šu₂ {u₂}HAR.HAR lu ina A lu ina KAŠ NAG +3. DIŠ NA ŠA₃-šu₂ GU₇-šu₂ {u₂}ti-ia-a-ti ina KAŠ NAG {u₂}IGI-lim ina KAŠ {u₂}IGI.NIŠ ina KAŠ +4. {u₂}tar-muš ina KAŠ {u₂}DILI ina KAŠ {u₂}GAMUN.GE₆ ina KAŠ {u₂}HAB ina KAŠ {u₂}HAR.HAR lu ina KAŠ lu ina GEŠTIN +5. DIŠ NA ŠA₃-MEŠ-šu₂ GU₇-MEŠ-šu₂ 1/2# SILA₃ ZU₂.LUM.MA 1/2 SILA₃ NIG₂.AR₃.RA GIG.BA 1/2 SILA₃ LAGAB MUNU₆ +6. ina 3 SILA₃ KAŠ.SAG ŠEG₆-šal tu-kaṣ₃-ṣa ta-ša₂-hal I₃#.GIŠ# ana# IGI# ŠUB#-di# ana DUR₂-šu₂ DUB-ak +7. UD-ma LU.UB₂ SUM{sar} GAMUN{sar#} SUD₂# ina KAŠ NAG : ana KI MIN HI.I[S{sa]r?} SUM#{sar#} SUD₂ ana A ŠUB ina MUL₄ tuš-bat NAG# +8. iš-tu NAG-u₂ NINDA.I₃.DE₂.A ina I₃.NUN.NA GU₇# :# ana# KI MIN {u₂}NU.LUH.HA SUD₂ ina KAŠ NAG +9. ana KI MIN {u₂}IGI-lim SUD₂ KI MIN : ana KI MIN {u₂#}SIKIL SIG₇ GU₇ +10. DIŠ NA ŠA₃-šu₂ ka-si-šu₂ SUM{sar} SIG₇-su {šim}G[UR₂.GUR₂? T]EŠ₂.BI SUD₂ ina# A SIG₃-aṣ NU pa-tan NAG-šu₂ +11. ZU₂.LUM.MA lu ina I₃.ŠAH [l]u ina# I₃.GIŠ GU₇ +12. ana KI MIN {šim}ŠE.LI BABBAR SUD₂ ina KAŠ# [NU pa-tan NAG]-ma# TI# +13. ana KI MIN {u₂}IGI-lim {u₂}IGI.NIŠ {u₂}tar-muš SUHUŠ {giš}NAM#.TAR# [NITA₂ x x x mal]-ma#-liš# HI#.HI# +14. ina KAŠ tara₃-sa-an ina MUL₄ tuš-bat ina še-ri₃ ba-lu pa-tan# N[AG-šu₂ A] GAZI# NU NAG-šu₂ TI +15. DIŠ NA ŠA₃-šu₂ ik-ta-na-su-šu₂ ŠA₃#-MEŠ-šu₂ ma-gal nap#-h[u] {u₂#}HAR.HAR GI DU₁₀.GA {šim}MUG +16. {šim}LI ana ŠA₃-bi ŠUB-di ŠEG₆-šal# ta-ša₂-hal lu ba#-hir₂ ana DUR₂-šu₂ DUB-ma TI +17. DIŠ NA NINDA GU₇ KAŠ NAG-ma i-ši-bi# ŠA₃-šu₂ ik-ta-na-su-šu₂# DAB-MEŠ-su ŠA₃-MEŠ-šu₂# MU₂.MU₂ +18. u i-sil ŠA₃-šu₂ mu-še KIN.NIM GIG ana TI-šu₂ {giš}e#-re-na {giš}ŠUR.MIN₃ GI DU₁₀.GA {šim}BAL +19. {šim}GIR₂ {u₂}HAR.HAR 5 U₂.HI.A ŠEŠ TEŠ₂.BI ta-ka-sim ana KAŠ ŠUB-di ŠEG₆-šal +20. ta-ša₂-hal LAL₃ u I₃#.GIŠ# hal-ṣa ana ŠA₃ ŠUB-di lu ba-hi#-ir# ana KUŠ maš-qe₂-ti te-si-ip ana DUR₂-šu₂ DUB TI# +21. [EN₂ ŠA₃-MEŠ? i]t-ta#-nap-ša₂-ru ze-er kar-šu₂# ŠA₃.NIGIN ku-uṣ-ṣu#-ru#-u₂?# x x x [x] +22. [x x x] x x ek-le-ta ki-i me-e hi-ri-ti a-la-pa-a na-du-u₂ IGI-MEŠ-šu₂ +23. ša#-[ar E]DIN e-di-ip na-di i-ta-naq-qi₂ ŠU EDIN ma-la-a IGI-MEŠ-šu₂ +24. e-t[a-n]a-ba-la ša#-pa#-tu-šu₂ i-ta-na-pa-aṣ ki-ma KU₆-MEŠ it-ta-nak-bir ki-ma MUŠ +25. e-[mur-m]a {d}gu-la na-di-na-at ba-la-ṭi NAM.LU₂.U₁₈.LU ina E₂ {d}asal-lu₂-hi u₂-bil eṭ-lu +26. {d}A[MAR.UT]U re-me₂-nu-u ip-pa-lis-su-ma gi-ša-ma TI-uṭ eṭ-lu +27. šum₂-ma IM# ina DUR₂ lu-ṣi šum₂-ma gi-ša-tu ina nap-ša₂-ti li-še-ṣi TU₆ EN₂ +28. KA#.INIM#.MA ana ki-is ŠA₃ ŠID-nu +29. DIŠ# [NA? e-t]a-na#-ša₂-aš₂ NINDA u KAŠ la i-mah-har MAŠ.SILA₃-MIN-šu₂ GU₇-MEŠ-šu₂ +30. [SAG.DU-su g]i-na-a LAL I₃.NUN.NA GU₇ UD.7.KAM₂ SUM{sar} SUM.SIKIL{sar} GA.RAŠ{sar} NU GU₇ +31. [ina A {giš}ŠE.NU] RA-MEŠ-aṣ NUMUN {u₂}UKUŠ₂.HAB NUMUN {u₂}HAR#.HAR# SUD₂ ina KAŠ NAG-ma TI +32. [ana KI MIN x x x NI]G₂.SILA₁₁#.GA₂ HAD₂.A SUD₂# ina# KAŠ# {lu₂#}KURUN₂.NA NAG NUMUN {u₂}UKUŠ₂.HAB {( : NUMUN {šim}LI )} NUMUN {giš}ŠE.NU SUD₂ ina KAŠ NAG +33. [DI]Š NA# ki-is ŠA₃ GIG ana# ki-is ŠA₃ KUD#-si {u₂}IGI-lim {u₂}IGI.NIŠ {u₂}tar-muš {( : {u₂#}tar#-muš₈# )} +34. {u₂#}KUR.RA SUD₂ ina I₃ u KAŠ NAG# +35. x x x ina# KAŠ# NAG PEŠ₂.SILA₃.GAZ ša₂-bu-la GU₇ +36. [x x x] {u₂#}kak-ku-sak-ku ša₂ PA-MEŠ-šu₂ DAGAL-MEŠ {u₂}HAB {u₂}IGI-lim SUD₂ +37. [ina I₃].KUR#.RA# {( : I₃ SIKIL )} NAG MUN ina KAŠ NAG MUN ina A NU pa-tan NAG-ma ina-eš +38. [DIŠ N]A lib₃#-bi lib₃-bi GU₃.GU₃-si {u₂}ur₂-ne₂-e# {u₂}HAR.HAR {u₂}ti-ia-ta₅ +39. {u₂#}NU#.LUH.HA {u₂}KUR.RA sah-le₂-e {u₂}tar-muš₈ {u₂#}IGI-lim {u₂}IGI.NIŠ {u₂}ak-tam +40. {u₂#}IN#.NU#.UŠ {giš}ŠINIG# 12# U₂#.HI#.A# ŠEŠ ba-lu pa-tan ina KAŠ NAG-MEŠ +41. DIŠ NA ŠA₃-šu₂ ik-ta-na#-ar# PA# {giš#}ŠINIG {u₂}IN#.NU.UŠ GIŠ# BUR₂# SUD₂ ina KAŠ NU pa-tan NAG-ma ina-eš +42. SUHUŠ {giš}šu-ši SUHUŠ {giš#}NAM.TAR NITA₂ {u₂}tar-muš₈ {u₂#}IGI-lim {u₂}IGI.NIŠ {u₂}IN₆.UŠ₂ NUMUN {u₂}IN₆.U[Š₂] +43. 7 U₂#-HI-A ki-is ŠA₃-bi ina KAŠ N[AG] +44. 1# GIN₂ MUN eme-sal-li₃ {šim#}[GUR₂.GUR₂?] {šim#}LI DIŠ-niš GAZ [SIM?] +45. ina KAŠ ŠEG₆-šal [x x ana Š]A₃ ŠUB#-di# ana DUR₂-šu₂ D[UB-ak] +46. EN₂ mi#-na-a ma-lu-u₂ lib#-bu#-[ka mi-na-a ma-lu]-u₂# lib-bu#-[ka] +47. x x x {d}x x lib#-bu#-[ka man-nu lu-uš-pu]r ana# gu#-gal# lib#-bi#-[ka] +48. [liš-ša₂]-a# [x x x x x x x x x x x x l]i-pat-ta-a ID₂-ME[Š] +49. [x x x x x x x x x li-par-ši-d]u-ma li-ṣu-ni zu-u₂-šu₂# +50. [x x x x x x x x x x x x x x l]i-mur EN₂ ul ia-tu-un +51. [x x x x x x x x x x x x x x x x] {d#}gu-la TI.LA qiš-ta₅ TI-e EN₂ +52. [EN₂ x x x x x x x x x x x x x G]U₇-ia ŠA₃-bi KI.SIKIL ana GAZ-ia +53. [x x x x x x x x x x x Š]A₃-bi GUD ina u₂-re-e li-kul +54. [x x x x x x x x Š]A₃-bi ŠAH ina a-sur-re-e# +55. [x x x x x x {d}a-sa]l-luh u {d}gu-[la] +56. [x x x x x x x x iq-b]u-nim?#-ma# a#-na#-ku# [u₂-ša₂-an-ni] +57. [x x x x x x x x x] +58. [... EN₂ ana UG]U LI.DUR Š[ID-nu] +59. %sux [x x x x {g]i}pisan!(E₂)-gen₇ keš₂-d[a] +60. %sux [x x x x x x x] x : a# pu₂#-gen₇# a#-ge₆-a nu-t[uku] +61. %sux [x x x x x x tu]ku? : u₂ nu-ku₄-ku₄ a nu-ku₄#-ku₄# +62. %sux [... n]e : {d}asal-lu₂-hi igi : nig₂ ge₂₆-e : gen-na dumu-gu₁₀ +63. %sux [x x x x n]e?-ke₄ : u₃ {u₂}ha-šu-u₂ šu u-me-ti +64. %sux na[m-šub eridu{ki}-ga u-m]e-ni-si₃ : lu₂-u₁₈-lu dumu dingir-ra-na ka-bi-ta u-me-ni-gar +65. %sux lu₂ du[mu? dingir?-ra-na še₁₀-gen₇ he₂-du]r₂-re bu-luh-gen₇ <> he₂-en-si-il-e : im-ma gu-du-a-ni-ta he₂-em-ma-ra-e₃# +66. KID₃#.[KID₃.BI x x x x ana UG]U EN₂# ŠUB-di ina KA-šu₂ u₂-man-zaq-ma ina KAŠ NAG-ma ina-eš + +1. %sux [... ka-ke]š₂-bi he₂-du₈-a +2. %sux [... {d}asal-l]u₂-hi# dumu# eridu{ki#}-g[a-k]e₄ ka-keš₂-bi he₂-du₈-a +3. [KID₃.KID₃.BI x x x x EN₂] 7#-šu₂ ŠID-nu ina KA-šu₂ u₂#-[man-z]aq-ma ina-eš +4. EN₂# [{d}ŠAKKAN₂ ina EDIN ŠA₃-ba-šu₂] ka-su-šu₂-ma SAHAR SIG₃.SIG₃-ta ma-l[a-a rit]-ta#-šu₂# +5. ul [um-mu pe-ta-a]t pa-ni-šu₂ ul a-ha-tu mu-š[e-qa-at re-ši-šu₂] +6. ki#-[ma DI GI] DA# na-ši pat-r[i TU₆ EN₂] +7. [KID₃.KID₃.BI] LAG MUN {u₂}nu#-hur#-ta₅ TI-qe₂ ana UGU EN₂ ŠUB-d[i x x x x x x x x x] +8. [EN₂ šam-mu ša₂ Š]A₃-bi ina KUR-i a-ṣi-ma# as-suh-šu-m[a x x x x x] +9. [a-na {d}UTU D]U₁₁.GA-ma iṣ-ṣa-bat ŠA₃-b[i {d}UT]U [x x x x x x x x x x x x x x x x] +10. a#-[na NENNI? A? NENNI? D]U₁₁.GA#-ma iṣ-ṣa-bat ŠA₃-bi N[ENNI? A? NENNI? x x x x x x x x x x x x x x x x] +11. a-na# [{d}e₂-a] EN-ia aq-bi-ma Š[A₃-bi x x x x x x x x x x] +12. ŠA₃-b[i AN u] KI# lip-pa-šir Š[A₃-bi x x x x x x] +13. ŠA₃ NENNI [A NEN]NI lip-pa-šir# [x x x x x x x x x] +14. NAG-šu₂# [...] +15. KA.INIM#.[MA ...] +16. KID₃.KID₃.BI# x x [...] +17. 7-šu₂ u 7-šu₂ x [...] +18. TA {urudu}na-a[h-bi? ...] +19. ana IGI {d}UTU EN₂ 7#-[šu₂ x x x] ŠID?#-nu# [...] +20. ina KI ta-sa-rim [x x x] x ina GIR₃ 15# u?# 150?# x [...] +21. ina na-kap GIR₃ [15 u] 150 i-na-as-suk-ma ina?#-[eš?] +22. EN₂ ŠA₃ {d}UTU ina KUR-i# [x x G]IG-ma : U₂ ŠA₃ ina ma₂-kan{ki} a-ṣi-ma {d}30 [is-suh-šu] +23. ša₂ {d}UTU im-me-ru pa#-nu#-šu₂ {d}UTU šam-ma TA KUR-i u₂-še-ri-dam-[ma] +24. iš-kun-ma ina qaq#-qa-ri šur-šu-šu qaq-qa-ra DIRI SI-MEŠ-šu₂ AN-e nak-pa +25. iṣ-bat ŠA₃ {d}UTU i[na l]e-qi₂-šu iṣ-bat ŠA₃ {d}30 ina DUNGU-MEŠ iṣ-bat ŠA₃ GUD ina tar-ba-ṣi# +26. iṣ-bat ŠA₃ UDU.NITA₂# ina# su-pu-ri iṣ-bat ŠA₃ ANŠE ina su-kul-li +27. iṣ-bat ŠA₃ UR.GI₇# ina ši-ga-ri iṣ-bat ŠA₃ ŠAH ina er-re-ti +28. iṣ-bat ŠA₃ GURUŠ ina me-lul-ti iṣ-bat ŠA₃ KI.SIKIL ina ur-ši-ša₂ +29. iṣ-bat ŠA₃ NENNI A NENNI tu-mu-re-e tu-ga-re-e +30. a-na e-re-ši-šu-ma SU-šu₂ i-di : e-ma iš-ku-nu i-di TU₆ EN₂ +31. KID₃.KID₃.BI {u₂}ur₂#-ne₂-e {u₂}NU.LUH.HA {u₂}ti-ia-ta₅ GAZI{sar} {u₂}KUR.RA +32. DIŠ-niš SUD₂ ina KA[Š S]IG₃-aṣ EN₂ ana ŠA₃ ŠID-nu ina ŠU GUB₃-šu₂ NAG-ma TI +33. [EN₂] šam#-mu# [ša₂ ŠA₃]-bi# ina KUR-i a-ṣi-ma as-suh-šu₂-ma iṣ-ṣa-bat ŠA₃-bi +34. [ana {d}UTU] aq#-bi-ma iṣ-ṣa-bat ŠA₃ {d}UTU +35. [ana AN-e u KI-ti₃ aq-b]i-ma# iṣ-ṣa-bat Š[A₃ A]N u KI +36. [ana u₂-ma-mi DU₁₁.GA-ma iṣ]-ṣa#-bat ŠA₃ u₂-ma-me a-na# {d#}e₂#-[a EN ap-si aq-bi]-ma# +37. ŠA₃-b[i lip-pa-šir₃ ŠA₃-b]i {d}UTU lip-pa-šir₃ ki-m[a ŠA₃-bi {d}UTU ip-pa-ša₂]-ru# +38. ŠA₃-b[i AN u KI lip-pa-š]ir₃ ki-ma ŠA₃-bi AN u KI [...] x x x +39. KID₃.KID₃.B[I x x x x EN₂ 7?-š]u₂ ŠID-nu ina KA-šu₂ u₂-[man-zaq-ma] ina-eš +40. EN₂ ER₂# IR UD LI AN x x [x x] sa-bi#-tu₄ +41. [na]m-zi-tu₄ a-ši-tu₄ {( pi )} ina a#-mat# {d#}AMAR#.UTU# ina qi₂-bit# {d#}UTU# LU₂ lib-luṭ TU₆ EN₂ +42. EN₂ IM el-lu ša₂ ina KUR-i aš₂-bu man-nu ub-lak-k[a x x el-l]i? ša₂ a-me-lu-ti +43. ša₂ UZU-šu₂ ša₂ la a-ka-li₃ ša₂ BUR₃.BUR₃-šu ša₂ la x [x x x] x IR IM ana šu-bur-ri +44. ki-ma ṣe-er ka-ra-ni₇ ta-aṣ-ṣi# [...] x TU₆# EN₂ +45. KID₃.KID₃.BI {u₂}ti-ia-ta₅ GAZI{sar} x [...] x +46. I₃#.GIŠ# ana# pa-ni ma-aš-ti-i ta-za-ru₃ 3-šu₂ E[N₂ ŠID ...] +47. [ana KI MIN ...] x [...] x x x [...] +48. [...] ti#-ia-ta₅ GAZI#{sar#} ta-mar-raq# ina KAŠ# NAG +49. ana KI [MIN ...] ina I₃.GIŠ u KAŠ.SAG NAG +50. EN₂ e-sil k[i-ma na-d]i na-pi-ih-ma ki-ma lu-up-pi +51. KA.NA šu#-u₂# i[na? K]A-šu₂ šu-u₂ {giš}PEŠ₃ NU E₃-ma TU₆ EN₂ +52. KID₃.KID₃#.BI ina ŠU.SI GIR₃#-ka# GAL-ti ša₂ GUB₃ EN₂ 7-šu₂ ana UGU LI.DUR-šu₂ ŠUB-ma ina-eš +53. EN₂# ŠA₃ nam-zi-tu₄ KAŠ la-as-su-uh TU₆ EN₂ +54. KID₃.KID₃.BI ina ŠU.SI GIR₃-ka GAL-ti ša₂ 150 EN₂ ŠUB-di u ina ŠU.SI-ka ta₅-mar-raṭ-ma ina-eš +55. EN₂ ša-ru-um-mi ša₂-ru ša₂-ru IZI DINGIR-MEŠ at-ta₅ ša-ru ša bi-rit ze-e +56. u ši-na-a-ti at-ta₅ tu-ṣi-a-ma it-ti DINGIR-MEŠ ŠEŠ-MEŠ-ka na#-di-a-at {giš}GU.ZA-ka EN₂ +57. KID₃.KID₃.BI {u₂}EME UR.GI₇ HAD₂.A SUD₂ ina I₃.GIŠ ŠUB-di EN₂ ŠID-nu ŠEŠ₂-su-ma ina-eš +58. EN₂ lib-bu-ma ŠA₃-bu ŠA₃-bu da-an ŠA₃-bu qar-rad GIM UR.MAH ma#-li# pu-luh-ta₅ +59. ki-ma UR.BAR.RA la-ka-da uš-šur EN₂ ul ia-at-tu₂ EN₂# {d#}gu-la +60. EN₂ a-nam-di EN₂ ana DUMU.MUNUS {d}e₂-a a-nam-di EN₂ ana DUMU.MUNUS {d}a-nim +61. a-nam-di ana DUMU.MUNUS DINGIR aš-šum mi-ni-i aš-šum mi-ni-i aš-šum ka-bat-ti aš-šum li-ib-bi +62. aš-šum li-ib-bi aš-šum li-ib-bi mar#-ṣi# TU₆ EN₂ +63. KID₃.KID₃.BI SIG₂ BABBAR DUR NU.NU 7 KA.KEŠDA KE[ŠDA EN₂ ŠID-nu ina EGI]R-šu₂ KEŠDA-ma ina#-eš# +64. EN₂# a-na li-bur-za-ni-nu qi₂-bi#-[ma um-ma a-d]a-pa ABGAL#-m[a] +65. TA# at#-ta₅ u a-na-ku kul-lat KUR ni-ti-qam-ma# A# PU₂# ha#-[li-lu-ti x x x x] + +1. [x x x x x x x x x q]a₂-ti mar-ṣi ṣa-bat EN₂ {d}e₂-a ŠUB-šu₂-ma LU₂ lib-luṭ [EN₂] +2. [KID₃.KID₃.BI {u₂}NU.LUH.H]A {u₂}ti-ia-ta₅ MUN ta-mar-r[aq] +3. [x x x x x x x x x x GUB₃-š]u₂ ina ŠU-ka ta-mar-raṭ +4. [EN₂ ...] x TIM a-na li-bur-na-din iš-pur-an-ni +5. [...] ina a-hi PU₂ ša₂ KUR-i +6. [...] ul nu-uš-ba-am-ma +7. [... NENN]I A NENNI ra-ši DINGIR ana mah-ri-ka +8. [...] x MI AL# MU TU₆ EN₂ +9. [KID₃.KID₃.BI ...] x ša₂ EN₂ ana x x ŠUB-u₂ +10. [... te-d]e-ek-ki-šu-ma# i#-ne#-eš# +11. [EN₂ ... DU]MU {d}UTU ina AN-e u KI-te MIN +12. [KID₃.KID₃.BI ...] NI₂#-šu₂ ŠID-nu +13. [EN₂ x x x x x] BAL?# IN?# e-mur-šu₂-ma {d}asal-lu₂-hi ih-ba-a A-MEŠ ABZU +14. [x x x x GIM {du]g}GAN? ina qa₂-ti-šu GIŠ.HUR ŠA₃-bi ana {d}e₂-a be-li₂-šu +15. EN₂# ul# ia-tu-un EN₂ {d}60 u {d}asal-lu₂-hi EN₂ {d}gu-la GAŠAN EN₂ TU₆ EN₂ +16. KID₃.KID₃.BI {u₂}NU.LUH.HA MUN TI-qe₂ EN₂ 3-šu₂ ana ŠA₃ ŠUB-ma i-man-zaq-ma TI +17. EN₂ da-an ŠA₃-bu qar-rad ŠA₃-bu ša₂ ŠA₃-bi ar-ra-qa IGI-MIN-šu₂ pur-si-it MUD₂ na-ši-ma +18. ir-ru sa-hi-ru-ti ul-lu-lu ina a-hi-šu₂ e-ta-šiṭ ŠA₃-bu e-ta-tu-ra MIN +19. ana GURUŠ dam-qi₂ ana KI.SIKIL da-me-eq-tu₄ uš-šir₃ GURUŠ-ma E₂ li-pu-uš +20. uš-šir₃ KI.SIKIL qin#-na liq-nun ir-ru suh₄-hu-ru ze-er kar-šum +21. u₃ ši-i ri-qi₂-tu₂ bu-up-pa-ni-ša₂ sah-pat liš-lim kar-šum ir-ri liš-te-ši-ru-ma +22. ri-qi₂-tu₄ lit-ru-uṣ GIM IM ina šu-bur-ri# GIM# ge-šu-ti ina na-piš-ti li-ṣa-a EN₂ +23. KID₃.KID₃.BI 7 LAG MUN ina ŠA₃-bi ŠUB EN₂ 7-šu₂ ŠID-nu NAG-šu₂-ma ina-eš +24. EN₂# ŠA₃-bu ŠA₃-bu e-ki-il ŠA₃-bu GIM mu-ši-ti₃ ma-li nam-ri-ri +25. [i-n]a qab#-li-ti ul i-šu a-pa-tu₂-ma ul u₂-šer₃-šu ma-am-ma +26. [ir]-ru# su-hu-ru ze-er kar-šum u₃ ši-i ri-qi₂-tu bu-up-pa-ni-ša₂ sah-pat +27. [li]-it#-ru-uṣ kar-šu₂ ri-qi₂-tu₂ lit-ru-uṣ +28. [ki-m]a ša₂#-a-ri a-na šu-bur-ri ki-ma ge-šu-te a-na ZI-MEŠ +29. [ki-m]a zu-ʾ-ti u u₂-pa-ṭi u di-ma-ti# ka#-la SU-šu₂ na-šal-li-la-ni +30. [E]N₂ ul# ia-ut-tu EN₂ {d}e₂-a u {d}asal#-lu₂#-hi EN₂ {d}da-mu u {d}gu-la +31. [EN₂] {d#}NIN#.GIRIM₃# EN EN₂ TU₆ EN₂ +32. [KID₃.KID₃].BI# ana ŠA₃-bi 10 LAG MUN <ŠUB> 7#.TA#.AM₃ EN₂# ŠID-nu-ma +33. [ina GU]B₃-ka KAŠ₃-šu IGI ina GUB₃-šu i-mah-har ba#-lu# pa#-tan# NAG-ma ina-eš +34. [EN₂] ŠA₃#-bu#-ma ŠA₃-bu qar-rad ŠA₃ KAS₄ ša ŠA₃ ze-ra IGI-MIN-šu₂ pur-sit₂ da#-a#-me# +35. [ŠA₃-b]u ŠA₃#-bu# a-ia-ša₂ ta-lak ŠA₃-bu a-ia-ša₂ ta-ṣa-bur ŠA₃-bu +36. [...] x x x ad# SAHAR#.HI#.A# x x [x x x] +37. [...] x x [x x] +38. [...] x pad su x x +39. [x x x] ša₂#-a#-ru# x [x x x x x x x] i-pa-šar pi-šir₃-šu# +40. [x x x] lip-šur ki ši# [x x x] mu# ana KA₂ li-še-ṣi TU₆ EN₂ +41. [KA.INIM.M]A IM# ša₂ ŠA₃ DAB-šu₂ +42. [KID₃.KID₃.BI] I₃.GIŠ ŠA₃-šu₂ EŠ-MEŠ EN₂ an-ni-ta₅ 3-šu₂# ŠID-nu +43. [DIŠ NA LI.D]UR-su DU₈-at {na₄}PEŠ₄ ANŠE# {u₂}SIKIL {u₂}ŠAKIRA {šim}LI +44. [x x x] 5# U₂.HI.A ŠEŠ TEŠ₂.BI SUD₂ i[na KA]Š HI#.HI# ina# LI.DUR-šu₂ tu-na-tak +45. [U₂.HI.A Š]EŠ-ma ina KAŠ SILA₁₁-aš tara-ba[k x x {u₂}IGI-lim? {u₂}IG]I.NIŠ# {u₂#}tar-muš +46. [x x x x SU]D₂ SUR tuš-ta-na-as-[sa₃-qam₂ ...] TI +47. [ana KI MIN {u₂}ṣ]i-bu-ra {u₂}DILI TEŠ₂#.BI# SUD₂# x [...] +48. [ana KI MIN] {u₂#}IGI-lim SUD₂ ina GEŠTIN SUR# N[AG-ma TI] +49. [DIŠ NA LI.DU]R-su ŠUB-MEŠ-su ana TI-šu₂ {u₂}im-hur-aš-na SUHUŠ# x x x +50. [x x x] TI ina KAŠ ina GEŠTIN DU₁₀.GA NAG-MEŠ-ma TI +51. DIŠ# NA# ŠA₃-šu₂ GIG GA AB₂ KUG.GA I₃.NUN.NA UD.2.KAM₂ NAG +52. DUB 1.KAM₂ DIŠ NA su-a-lam GIG ana ki-is ŠA₃ GUR-<šu₂> +53. E₂.GAL {m}AN.ŠAR₂-DU₃-A LUGAL ŠU₂ MAN KUR AN.ŠAR₂{ki} ša {d}AG {d}taš-me-tu₄ GEŠTU-MIN DAGAL-tu₄ iš-ru-ku#-uš +54. e-hu-uz-zu IGI-MIN na-mir-tu₄ ni-siq ṭup-sar-ru-ti# +55. ša ina LUGAL-MEŠ-ni a-lik mah-ri-ia mam₂-ma šip-ru šu-a-tu la e-hu#-uz-zu# +56. bul-ṭi TA muh-hi EN UMBIN liq-ti BAR-MEŠ ta-hi-zu nak-la +57. a-zu-gal-lu-ut {d}nin-urta u {d}gu-la ma-la ba#-aš-mu +58. ina ṭup-pa-a-ni aš₂-ṭur as-niq IGI.KAR₂-ma +59. a-na ta-mar-ti ši-ta-si-ia qe₂-reb E₂.GAL-ia u₂-kin +1'. [{giš}]KIŠI₁₆#.H[AB x x x x x x x x x x x x x x x x x x x x x x] +2'. [DIŠ N]A SAG.KI GUB₃#-šu₂# [x x x x x x x x x x x x x x x] +3'. {u₂}SU.AN.DAR.RA {š[im}MUG x x x x x x x x x x x x x] +4'. [DIŠ N]A SAG.KI-MIN-šu₂ ṣab-ta-šu₂-ma IGI-[MIN-šu₂ x x x x x x x x x x x x x] +5'. [DUH.Š]E.GIŠ.I₃# ša₂-bu-lu-te GAZ# S[IM x x x x x x x x x] +6'. [DIŠ NA SA SAG].KI ZAG#-šu₂# ZI-ma IGI Z[AG-šu₂ ...] +7'. [x x x x x {š]im}BULUH {š[im?} ...] +1. DIŠ NA UGU-šu₂ KUM₂ u₂-kal SA ZI SAG.KI TUKU-ma IGI-MIN-šu₂ i-BAR₃ +2. IGI-MIN-šu₂ bir-ra-ta₅ i-pi-ta₅ i-ši-ta₅ mur-din-na qu₃-qa-na a-ša₂-a +3. u₃ ER₂ ŠUB.ŠUB-a 1/3 SILA₃ ZA₃.HI.LI bu-ṭu-ta₅ ina {na₄}KINKIN ARA₃-en SIM +4. SAG-ka u₂-kal ina ŠA₃ 1/3 SILA₃ TI-qe₂ ina A GAZI{sar} SILA₁₁-aš SAR-ab LAL-ma UD.3.KAM NU DU₈ +5. 1/3 SILA₃ sah-le₂-e 1/3 SILA₃ ZI₃ ŠE.SA.A ina A GAZI{sar} SILA₁₁-aš SAR-ab LAL-ma UD.3.KAM NU DU₈ +6. sah-le₂-e ARA₃-ti₃ {šim}GUR₂.GUR₂ NAGA.SI ina KAŠ SILA₁₁-aš KI# MIN# +7. {šim}ŠEŠ MUN eme-sal-li₃ mal₂-ma-liš HI.HI ina I₃.NUN SUD₂ IGI-MIN#-šu₂# te#-[qi₂] +8. 1/3 SILA₃ ZA₃.HI.LI 1/3 SILA₃ ŠIKA IM.ŠU.RIN.NA 10 GIN₂ hi-qa-ti# [x x x x] +9. ina A GAZI{sar} SILA₁₁-aš SAR-ab LAL-ma UD#.3#.K[AM NU DU₈] +10. EGIR na-aṣ-ma-da-ti an-na-ti 10 GIN₂ ZA₃.HI.LI ša₂ KA ur#-ṣi# [x x x x x x x] +11. MUN A.GEŠTIN.NA NU TAG.TAG ina NINDA is-sip₃-ma GU₇ 5 GIN₂# [x x x x x] +12. ina KAŠ.SAG SIG₃-aṣ-ma NAG-šu₂ [x x x x x x x] +13. UD.1.KAM₂ AN.ZAH SUD₂# [...] +14. 10 GIN₂ GURUN {giš}MAŠ.HUŠ [x x x x x] 1/3 SILA₃# [x x x] +15. GAZ SIM ina A GAZI#[{sar} SILA₁₁-aš SA]R-ab# LAL-ma UD.3#.[KAM NU DU₈] +16. ŠIM.BI.ZI#.[DA x x x] ina I₃.UDU UR.MAH SUD₂ [x x x] +17. x x [x x x x x] {u₂}ZA.BA.LAM 1/3 SILA₃ [x x x x] +18. GAZ SIM# [ina A GAZI{sar}] SILA₁₁#-aš SAR-ab LAL-ma UD.[3.KAM NU DU₈] +19. 10 GIN₂ ZI₃ DUH#.ŠE#.GIŠ#.I₃# H[AD₂.D]U GAZ# SIM ina A GA[ZI{sar} SILA₁₁-aš KI MIN] +20. 10 GIN₂ ZI₃ DUH.ŠE.GIŠ.I₃ HAD₂.D[U GAZ SIM ...] x [...] +21. UD.1.KAM GABA-su LAL SAG.DU-s[u ...] +22. ana SAG.DU-šu₂ DUB-ak ina E₂# [ša₂ ta-ra-na₇ TUKU-u₂ TUŠ-šu₂ ...] +23. 1 GIN₂ U₅ ARGAB{mušen} 1/2 G[IN₂ ...] +24. 1/3 SILA₃ NUMUN BABBAR.HI{sar} 1/3 SILA₃ NUMUN LU.[UB₂{sar?} ...] +25. 1/3# SILA₃ ZI₃.KUM 10# GIN₂# PA# {giš#}x [...] +26. [NUM]UN? sah?#-[le₂-e ...] +27. [x] x [...] +28. [... SI]LA₁₁-aš KI# MIN# +29. IM.SAHAR#.[NA₄.KUR.RA ina I₃.NUN SU]D₂ te-qi₂ +30. 1/3 SILA₃ PA {giš}PE[Š₃ ša ina {iti}BAR₂.ZAG.GAR KUD-is in]a A GAZI{sar} SILA₁₁-aš +31. GUR-ma HAD₂.A G[AZ SIM x x x x x x SAR-a]b LAL#-ma KI MIN +32. 1/3 SILA₃ {u₂}HAB 1/3 SILA₃# N[UMUN {u₂}KI.{d}IŠKUR x x x x x x LAL]-ma# KI# MIN# +33. NAGA.SI# [ina I₃ SUD₂ ina kip?-kip? NITA? HI.HI SUD₂] te#-qi₂# +34. 1/3# [...] LAL#-ma# KI# MIN# +35. [... LAL-m]a KI# MIN# +36. [...] x +37. [...] x +38. [... te?]-qi₂?# +39. [...] +40. [...] SUD₂# te#-q[i₂] +41. [... SILA₁₁-a]š SAR-ab LAL-ma KI [MIN] +42. [... HAD₂].A GAZ SIM ina A GAZI{sar} SILA₁₁-aš SAR-ab LAL-ma KI [MIN] +43. [... GIR₃.PAD].DA GID₂.DA SUD₂# MAR +44. [... ina I₃.UDU sa]-a-qi₂ MAŠ.DA₃ SUD₂ te-qi₂ +45. [... SIL]A₁₁-aš# SAR#-ab# LAL-ma UD.3.KAM₂ NU DU₈ +46. [... ina] GA# [SILA₁₁-aš SA]R-ab LAL-ma KI MIN +47. [...] x [ina] LAL₃# KUR-i šu-hat KU₃.SIG₁₇ SUD₂ MAR +48. [x x x x x x GAZ SI]M ina A GAZI{sar} SILA₁₁-aš SAR#-ab LAL-ma UD.3.KAM₂ NU DU₈ +49. [x x x x GAZ SI]M ina# šur-šum-mi KAŠ ŠEG₆.GA₂ SILA₁₁-aš# SAR-ab LAL-ma UD.3.KAM₂ NU DU₈ +50. [x x x x] x du-muq-ši-na ta-tab-bal ina# LAL₃ SUD₂ te-qi₂ +51. [{u₂}KUR.GI.RIN₂].NA? GAZ SIM ina A GAZI{sar} SILA₁₁-aš SAR-ab# LAL-ma UD.3.KAM₂ NU DU₈# +52. [{giš}ŠE.NU₂].A? GAZ SIM ina A GAZI{sar} SILA₁₁-aš SAR-ab# LAL-ma UD.3.KAM₂ NU# DU₈ +53. U₅# [ARGAB{mu]šen} ina LAL₃ SUD₂# te#-qi₂ +54. 1/3 SILA₃ PA {giš}MA₂#.[ERIŠ₄?{i]š}.MA₂.RA GAZ SIM ina A GAZI{sar} SILA₁₁-aš SAR#-ab# LAL#-[ma] UD.3.KAM₂ NU DU₈ +55. IM.BABBAR ba-aš-la ina# I₃# sir₂-di SILA₁₁-aš SAR-ab LAL₂#-ma KI MIN +56. ŠIKA# I₃.GU.LA ša kib-ša₂₅# TUKU-u₂ ina I₃ SAHAR.URUDU SUD₂ te-qi₂ +57. {u₂}ZA.BA.LAM sah-le₂-e GAZ# SIM# ina šur-šum-mi KAŠ.SAG# SIL[A₁₁-aš S]AR-ab LAL-ma UD.3.KAM₂ NU DU₈ +58. {u₂}hal-tap-pa-na₇ {giš}MAŠ.HUŠ GAZ# SIM# ina šur-šum-mi KAŠ ŠEG₆#.[G]A₂ SILA₁₁-aš SAR-ab LAL-ma UD.3.KAM₂ NU DU₈ +59. {šim}LI {šim}GUR₂.GUR₂ {šim}BULUH ZA₃.HI.L[I NA]GA.SI LUH#-si ina GA SILA₁₁-aš SAR-ab LAL-ma UD.3.KAM₂ NU DU₈ +60. SAHAR.URUDU i[na L]AL₃ SUD₂ te-qi₂ +61. 1/3# SILA₃ ZA₃.HI#.LI 1/3 SILA₃ DI[DA ... S]ILA₁₁-aš SAR-ab LAL-ma UD.3.KAM₂ NU DU₈ +62. 1/3 SILA₃ ZA₃.HI.L[I ...] SILA₁₁#-aš SAR-ab LAL-ma UD.3.KAM₂ NU DU₈ +63. KUG.GAN AN.Z[AH ... S]UD₂ MAR +64. 1/3 SILA₃ ZI₃ G[U₂.GAL? ... SILA₁₁-aš SAR-ab LAL-m]a UD.3.KAM₂ NU DU₈ + +1. GAZ[I{sar}] BIL₂-lu GAZ# SIM# ina# šur-šum-mi! KAŠ SILA₁₁-aš SAR#-ab LAL-ma UD.3.KAM₂ NU DU₈ +2. NUMUN [{u₂}]EME# UR.GI₇ SIG₇-su tu-has₂-sa₃ A-šu₂ ana {dug}BUR.ZI SUR-at EN HAD₂.DU GAR-an +3. UD#-[m]a i-tab-lu ina I₃ SAHAR.URUDU SUD₂ MAR +4. U₂# BABBAR# U₅ ARGAB{mušen} I₃.UDU {šim}GIG {šim}GAM.MA NUMUN {u₂}SI.SA₂ ka-mun {giš}ŠINIG NUMUN {u₂}IN.NU.UŠ +5. ŠE₁₀?# UR?#.GI₇ PA {giš}ŠINIG MUN eme-sal-li₃ {u₂}KUR.RA {u₂}GAMUN.GE₆ ma-la ni-iš IGI-MIN-ka ŠU.TI +6. [t]a-pa-aṣ ina I₃ SUD₂ IGI-MIN-šu₂ ina NAGA.SI LUH-si EN ER₂ KUD-su te-qi₂ UD-ma LAL-šu₂ te-qi₂ EGIR-šu₂ +7. [DILIM₂ A.B]AR₂ NU DU₈-šu₂ A {giš}ŠE.NU₂.A ŠEG₆-šal ana {dug}GAN SAHAR₂ te-sip ina MUL₄ tuš-bat ina še-ri₃ SAG.DU-su +8. [Š]EŠ₂ A {giš}ŠE.NU₂.A ŠEG₆.GA₂ ana SAG.DU-šu₂ tu-qar-ra-ar₂ SAG.DU-su kun-ša₂₅ {sig₂}GA.RIG₂.AK.A KEŠDA +9. [10? SI]LAₓ? I₃.GIŠ ana SAG.DU-šu₂ DUB ina E₂ ša₂ ta-ra-na₇ TUKU-u₂ TUŠ-šu₂ UD.3.KAM₂ an-na₇ DU₃.DU₃-uš +10. [DIŠ NA UG]U-šu₂ KUM₂.KUM₂-im IM.BABBAR NAGA.SI IN.GUN₃ kib-rit GIR₃.PAD.DA NAGA.SI I₃.HUL u I₃ KU₆ +11. [DIŠ-niš] HI#.HI ina NE {giš}KIŠI₁₆ SAG.DU-su tu-qat-tar +12. [DIŠ NA UG]U-šu₂# KUM₂ TUKU-ma IGI-MIN-šu₂ i-bar-ru-ra MUD₂ u₂-kal-la 1/3 SILA₃ ZA₃.HI.LI GAZ SIM +13. ina# A# [GAZ]I{sar#} SILA₁₁-aš SAG.DU-su SAR-ab LAL-ma UD.3.KAM₂ NU DU₈ +14. 1/3 SILA₃ ZA₃#.HI#.LI# 1/3# SILA₃# ZI₃.KUM ina A.GEŠTIN.NA SILA₁₁-aš SAG.DU-su SAR-ab LAL-ma UD.3.KAM₂ NU DU₈ +15. 1/3 SILA₃ PA {giš}PEŠ₃ ina GA# SILA₁₁#-aš# [SAR-ab KI MI]N 1/3# SILA₃ {u₂}HAB ina GA SILA₁₁-aš SAR-ab KI MIN +16. 1/3 SILA₃ {u₂}u₅#-[ra-na ...] ina GA SILA₁₁-aš SAR-ab KI MIN +17. 1/3 SILA₃ {u₂}ṣa-da-n[a? ...] ina# GA# SILA₁₁-aš SAR-ab KI MIN +18. {u₂}sa-ma-n[a₇ ... ina GA] SILA₁₁-aš SAR-ab KI MIN +19. [DIŠ N]A UGU-šu₂ UD.DA TAB [... ŠE]G₆.GA₂# {šim}LI {šim}GUR₂.GUR₂ +20. [{ši]m}BULUH sah-le₂-e DUH.Š[E.GIŠ.I₃ ...] SAR-ab KI MIN +21. [DIŠ NA UG]U-šu₂ UD.DA TAB-m[a IGI-MIN]-šu₂# [i-bar-r]u-ra# u₃ MUD₂ DIRI-a# x [x x] {šim}LI {u₂#}NU.LUH.HA +22. [x x] x sah#-le₂-e {giš}MA₂#.ERIŠ₄?#.MA₂#.RA DIŠ-niš GAZ SIM ina DIDA HI#.HI# S[AG?.DU-su] LAL#-id +23. [1/3 SILA₃ ZA₃.H]I.LI# 1/3 SILA₃ ZI₃ {giš}EREN# 1/3 SILA₃ {šim}LI# 1/3 SILA₃ I[M.D]I 1/3 SILA₃ {giš}si-hu 1/3# S[ILA₃ {giš}ar₂?-ga?-a]n?-nu +24. [... DUH.ŠE].GIŠ#.I₃ ZI₃ G[U₂].GAL# Z[I₃ MU]NU₆ DIDA ŠEG₆.GA₂ ŠU#.TI# +25. [... SIL]A₃ ŠU#.TI ina A GAZI#{sar} SILA₁₁-aš SAR-ab [LA]L +26. [DIŠ NA MURUB₄ UGU-šu₂] GIR₂#.GIR₂#-su# SIG₂ SAG.DU-šu₂ GUB.GUB-za {giš}GUR₂.GUR₂ {g[iš}x x] +27. [x x x x x x] SUD₂# ina {urudu}ŠEN.TUR tu-ba-har SAG.DU-su [x x] +28. [x x x x KAŠ ṭi?-ṭ]i? I₃.NUN.NA ina IZI ŠEG₆-šal [x x] +29. [x x {šim}]GUR₂#.GUR₂# {š[im}LI? {ši]m}MUG# {šim}ŠEŠ KAŠ ṭi-ṭi I₃.NUN.NA ina IZI ŠEG₆-[šal x x] +30. 1?# NINDA# IM.BABBAR NA[GA.SI IN.GUN₃ ki]b-rit GIR₃.PAD.DU# LU₂.U₁₈.LU GIR₃.PAD.DU Š[AH? x x] +31. I₃.HUL I₃ KU₆ DIŠ-niš [HI.HI i]na NE {giš}KIŠI₁₆ SAG.DU-su [tu-qat-tar] +32. %sux EN₂ sag-ki-ni sag-k[i he₂-en-gi₄-g]i₄ i-bi₂-ni i-bi₂ he₂-[en-gi₄-gi₄] +33. %sux mu-ru-ub-bi-n[i mu-ru]-ub#-bi he₂-en#-g[i₄-gi₄] +34. %sux he₂-en-da-a-na-mu[l-la he₂-en-d]a-a#-na#-mul-la [TU₆ EN₂] +35. KA.INIM.MA [DIŠ NA MURUB₄ UG]U-šu₂ u₂-zaq#-qat#-[su] +36. KID₃.KID₃.BI BAR MUŠ tur-a[r₂ x x x x E]N₂ ŠID-nu UGU-[šu₂ x x x] +37. %sux EN₂ me kug-ga ba-da-r[a-ah ba-da-r]a-ah me kug-ga [iz-zi] +38. %sux me zi-zi me še-ra-š[e-ra? x x x hu-luh-h]a gi₄-gi₄ [TU₆ EN₂] +39. EN₂ KA-šu GIM KA la [x x x x x x GI]M KA-šu ne x [x] x [TU₆ EN₂] +40. [...] ana# MURUB₄ U[GU-š]u₂ ŠID-[nu] +41. [...] x x [(x)] x {u₂}KUR.[RA?] +42. [... SAR]-ab# [LAL]-ma# UD.3.KAM₂ NU [DU₈] +43. ana# K[I MIN ... ina A GAZ]I{sar} SILA₁₁-aš LAL₂-su-ma x [x x] +44. ana KI MIN {u₂#}x [...] x su-pa-la₁₂ ina KAŠ ta-la₃-a[š x x] +45. ana KI MIN sah-le₂-e# [... ni-ki]p-ta₅ ZI₃ ŠE.SA.A DIŠ-niš GAZ# SIM ina KAŠ S[ILA₁₁ x x] +46. ana KI MIN 1/3 SILA₃ sah?#-[le₂-e ... SIL]A₁₁-aš SAR-ab [x x] +47. ana KI MIN 1/2 SILA₃ [... S]ILA₁₁-aš SAR-ab [x x] +48. ana KI MIN 1/3 SI[LA₃ ... GA]Z SIM ina A GAZI{sar#} SILA₁₁#-aš SAR-ab [x x] +49. ana KI MIN {ši[m} ...] ina A GAZI{sar#} SILA₁₁#-aš# [x x] +50. ana KI MIN [...] ina KAŠ SILA₁₁-aš# SAR#-ab [x x] +51. ana# K[I MIN ... in]a A GAZI{sar} SILA₁₁-aš SAR-ab L[AL?] +52. [ana KI MIN ...] ina A GAZI{sar} SILA₁₁-aš SAR-ab [x x] +53. [ana KI MIN ...] ina A GAZI{sar} SILA₁₁-aš SAR-ab [x x] +54. [ana KI MIN ...] ina šur-šum-mi KAŠ SILA₁₁#-aš SAR#-ab [x x] +55. ana# [KI MIN x x x x x x x t]u-šam-maṭ ina A GAZI{sar} LUH-si 1/3 SILA₃ {giš}MAŠ.H[UŠ] +56. 1/3?# [SILA₃? x x x x x GA]Z SIM ina A GAZI{sar} SILA₁₁-aš SAG.DU-su u GABA-su LAL +57. ana K[I MIN x x x x x Z]I₃.KUM HI.HI ina A GAZI{sar} SILA₁₁-aš LAL# +58. ana K[I MIN x x x x Z]I₃.KUM ina A GAZI{sar} ta-la₃-aš SAR-ab LAL-ma UD.3.KAM₂ NU DU₈ +59. ana K[I MIN x x x {giš}HA.L]U.UB₂ 2 SILA₃.TA.AM₃ HI.HI ina A GAZI{sar} u KAŠ SILA₁₁-aš KI MIN +60. ana KI [MIN x x x] {u₂#}su-pa-lu ina I₃ sir₂-di u A GAZI{sar} SILA₁₁-aš KI MIN +61. DIŠ N[A SAG.DU]-su KUM₂.KUM₂-im SAR#-ab ZI₃ ZIZ₂.AN.NA ina A GAZI{sar} SILA₁₁-aš UD.15.KAM₂ {( : UD.5.KAM₂ )} LAL₂ +62. ana K[I MIN IM.G]U₂ UD.DA SA₂.SA₂ GAZ# SIM ina A GAZI{sar} SILA₁₁-aš UD.3.KAM₂ LAL₂ +63. DIŠ# [ina? qer?-b]it? SAG.DU-šu₂ {( [ : MU]RUB₄ SAG.DU-šu₂ )} u₂-ba-na#-tu uṣ-ṣa rib-ki ina A GAZI{sar} SILA₁₁-aš I₃ EŠ-MEŠ LAL +64. a[na KUM₂ SA]G.DU šu-ut-bi-i ŠIK[A I]M.ŠU.RIN.NA ZI₃.KUM ina A GAZI{sar} SILA₁₁-aš SAG.DU-su LAL +65. [ana KI MIN sah-le₂]-e bu-ṭu-ta₅ ZI₃ ŠE.SA.A# ina# A# GAZI#{sar} SILA₁₁-aš LAL : ana KI MIN sah-le₂-e {šim}LI ina A GAZI{sar} SILA₁₁-aš LAL +66. a[na KI MIN x x] x HAD₂.DU GAZ SIM ina A GAZI{sar} SILA₁₁-aš LAL +67. a[na KI MIN DE₃ ṣa]r-ba#-te ina A GAZI{sar} SILA₁₁-aš LAL : ana KI# MIN# [{u₂}hal]-tap-pa-na₇ GURUN {giš}MAŠ.HUŠ ina A GAZI{sar} SILA₁₁-aš LAL +68. [ana KI MIN {u₂}GEŠTIN K]A₅.A HAD₂.A SUD₂ ina A GAZI{sar} SILA₁₁-aš LAL# :# ana# [KI MIN] {u₂#}MA₂.ERIŠ₄.MA₂.RA ina A GAZI{sar} SILA₁₁-aš LAL +69. [ana KI MIN x x] x {u₂}ZA.B[A.LAM] ina A GAZI{sar} SILA₁₁-aš LAL + +1. ana# K[I MIN ...] DE₃ ṣar-ba-te ina A GAZI{sar} SILA₁₁-aš LAL +2. a[na KI MIN ... {š]im}GUR₂.GUR₂ ina A GAZI{sar} SILA₁₁-aš LAL +3. a[na KI MIN ... ZI₃.KU]M HI.HI ina A GAZI{sar} SILA₁₁-aš LAL +4. a[na KI MIN ...] ZI₃#.KUM# HI.HI ina A GAZI{sar} SILA₁₁-aš LAL +5. a[na KI MIN ... ina A GAZI{sa]r} SILA₁₁-aš LAL : ana KI MIN qi₂-lip še-el-le-be₂-nu ina A GAZI{sar} SILA₁₁-aš LAL +6. a[na KI MIN ... DE₃ ṣa]r-ba-te ina A GAZI{sar} SILA₁₁-aš LAL# +7. a[na KI MIN ...] ina A GAZI{sar} SILA₁₁-aš LAL +8. D[IŠ ...] SAG#.DU-šu₂ i-šah-hu-uh ZI SAG.KI TUKU.TUKU +9. 1 G[IN₂? ...] SAG#.DU-su SAR-ab tu-kaṣ₃-ṣa LAL-ma UD.3.KAM₂ NU DU₈ +10. ana KI MIN# [...] ZI₃# {giš}ŠUR.MIN₃ 10 GIN₂ ZI₃ {giš}MAN.DU 10 GIN₂ ZI₃ {šim}LI 10 GIN₂ ZI₃ {šim}GUR₂.GUR₂ +11. 10 GIN₂ ZI₃ G[AZI{sar} 10 GIN₂ Z]I₃ GU₂#.GAL 10 GIN₂ ZI₃ GU₂.TUR 10 GIN₂ BAR ZU₂.LUM.MA 10 GIN₂ ZA₃.HI.LI +12. 10 GIN₂ DIDA# SIG₅# 10 GIN₂ ZI₃ MUNU₆ DIŠ-niš HI.HI ina KAŠ SILA₁₁-aš GUR-ma HAD₂.A GAZ SIM +13. SAG#-ka u₂-kal ina ŠA₃ 1/3 SILA₃ TI-qe₂ ina A GAZI{sar} SILA₁₁-aš SAR-ab LAL-ma KI MIN +14. [ana KI] MIN ZA₃.HI.LI ARA₃-ti₃ {šim}GUR₂.GUR₂ NAGA.SI DIŠ-niš SUD₂ ina KAŠ SILA₁₁-aš SAR-ab KI MIN +15. [ana KI MI]N {šim}GUR₂.GUR₂ {šim}LI {šim.d}NIN.URTA NUMUN {u₂}AB₂.DUH KA A.AB.BA {šim}ŠEŠ DIŠ-niš SUD₂ ina KAŠ SILA₁₁-aš SAR-ab KI MIN +16. [ana KI MIN {š]im}GUR₂.GUR₂ {šim}LI ILLU {šim}BULUH ZU₂.LUM I₃.UDU ELLAG₂ UDU.NITA₂ DIŠ-niš SUD₂ ina KUŠ SUR-ri SAR-ab KI MIN +17. [DIŠ NA SAG.D]U-su UD.DA TAB-ma u SU-šu₂ GU₇-šu₂ SAG.DU-su nu-pu-uh PA {giš}MES.MA₂.GAN.NA +18. [x x x S]IM ZI₃ GU₂.GAL ZI₃ GU₂.TUR ZI₃ {še}IN.NU.HA DIŠ-niš ina šur-šum-mi KAŠ SILA₁₁-aš SAR-ab KI MIN +19. ana# KI [MIN DUH.ŠE.GI]Š.I₃# HAD₂.A-ti {šim}GUR₂.GUR₂ {šim}LI ZI₃.KUM ina šur-šum-mi KAŠ SILA₁₁-aš SAR-ab KI M[IN] +20. ana KI# MIN# [x x {gi]š}HAR.HAR {šim}GUR₂.GUR₂ {šim}LI ZI₃.KUM ina KAŠ SILA₁₁-aš# SAR#-ab# [KI MIN] +21. ana KI MIN {u₂#}LAL# HAD₂#.A# SUD₂# ina# A ŠED₇ SILA₁₁-aš SAR-a[b KI MIN] +22. DIŠ NA SAG.DU-su KUM₂-ma# SIG₂# SAG.DU-šu₂ i-šah-hu-uh ana KUM₂ SAG.DU-šu₂# [ZI-hi?] +23. u SIG₂ DU-ta₅ GUB-zi {u₂#}[ak-t]am {u₂}ši-ma-ha U₂ BABBAR# DIŠ#-niš# SUD₂# ina# A# HI#.HI# SAG#.DU#-su te-sir +24. UD.2.KAM ina SAG.DU-šu₂ i-mit-ti₃?# x [x] x SAG#.DU#-su LUH#-si NUMUN {giš}bi-ni {u₂}kam₂-ka-da +25. {u₂}NIG₂.GAN₂.GAN₂ {u₂}NIG₂.GIDRU ŠIKA NU[NUZ GA.NU₁₁]{mušen#} DIŠ-niš SUD₂ ina I₃ HI.HI SAG.DU-su ŠEŠ₂-aš +26. %sux EN₂ munšub₂ al-dub₂#-b[a] munšub₂ al-kalag-ga +27. %sux munšub₂ al-keš₂-da-keš₂-da# munšub₂ nig₂-gub-ba TU₆ EN₂ +28. KA.INIM.MA SIG₂ SAG.D[U] NIG₂.GUB.BA KEŠ₂.DA.KAM₂ +29. DU₃.DU₃.BI {na₄}DU₈.ŠI.A {na₄}GUG {na₄}ZA.GIN₃ {n[a₄}NIR₂ {n]a₄}BABBAR#.MIN₅# {na₄}IGI KU₆ {na₄}ŠUBA +30. {na₄}ŠUBA A₂.ZI.DA {na₄}ŠUBA A₂.GUB₃.B[U {na₄}KUR-nu DAB {n]a₄}MUŠ.GIR₂ {na₄}AŠ.GI₃.GI₃ {na₄}UGU.AŠ.GI₃.GI₃ +31. 13 ni-bi an-nu-ti ina {sig₂}HE₂.ME.DA E₃-a[k ina SIG₂-šu₂ KEŠ₂.D]A-ma SIG₂ DU-tu₂ ik-kal-la +32. EN₂ at-ta ba!#-ra-an-gi zi-ba-a[n-gi ba-te-gi-ra z]i-im-ba-ra uz-mi-ia-aš +33. pa-at-ri un-da-kur-ra he₂-e[n?-n]a? h[e₂-min-na pa-ri]-ša₂# TU₆ EN₂ +34. KID₃.KID₃.BI 7 ha-ru-be₂-e ša₂ {im}SI#.SA₂# TI-qe₂ ina IZI ur-ba#-te# tur#-ar₂# ina I₃ HI.HI EN₂ 7-šu₂ +35. ŠID-nu 3-šu₂ ŠEŠ₂-su 3-šu₂ ta-hal#-l[a-s]u e-nu-ma ta-hal-la-ṣu-šu₂ EN₂ 3-šu₂ ana UGU# SAG#.DU-šu₂ ŠID#-nu# +36. %sux EN₂ i-bi gi i#-bi# gi# he₂-en-z[alag₂-g]e sag-ki zi₂ sag-ki zi₂ he₂-en-zalag₂-ge sag-ki iz sag#-ki# iz# +37. %sux he₂-en-zalag₂-g[e] še-er zi he₂#-e[n-zalag₂-g]e ma-al-la₂ i-di mu-ra-an-gub hul-bi hul-hul EN₂ +38. KID₃.KID₃#.[BI SA]G.DU# BURU₅# K[UR.RA S]AG.DU IGIRA₂{mušen} SAG.DU BURU₅.HABRUD.DA NITA₂ {giš}U₄.HI.IN {giš}GIŠIMMAR# +39. x x [x x x x x E]N₂ 3-šu₂ ana ŠA₃ ŠID-nu EŠ-MEŠ-su-ma SIG₂ DU-tu₂ ik-kal-la lu ša₂ NITA₂ lu [ša₂ MUNUS] +40. %sux [x x x x x x š]u-gi# lil šu-gi e-ne šu-gi +41. [KID₃.KID₃.BI 7 ha-ru-b]e₂-e ša₂ {im}SI.SA₂ TI ina IZI tur-ar₂ ina I₃ {giš}ŠUR.MIN₃ MUD₂ {giš}EREN HI.HI EŠ-MEŠ-su-ma# SI#.SA₂#-im# +42. [EN₂ MU.UL.LU.U HU]L.A ša₂ GAL₂-ma DINGIR ṣi-ir-ta +43. [ma-ni-ir-ra-an-n]i ha-ba-re-eš ma-ni-ir-ra-an-ni hal-hal-la-ta la-gu DIM₂-ma TI.LA.ŠE₃# +44. [x x ma u-ba-n]a-aš du-ru-na-aš hu-ri-na-ah mu-un-di-hu-na ha-at-tu-uk TU₆ EN₂ +45. [KA.INIM.M]A SIG₂ KEŠ₂.DA.KAM₂ +48. DIŠ NA SIG₂ TE-MEŠ-šu₂ ma-gal# i-šah-hu-uh NA BI DINGIR-šu₂ {d}iš₈-tar₃-šu₂ KI-šu₂ ze-nu-u +49. KID₃.KID₃.BI ana IGI MUL mah-re#-e# KEŠDA KEŠDA ZU₂.LUM.MA {zi₃}EŠA DUB-aq NINDA.I₃.DE₂.A LAL₃ I₃.NUN#.NA# GAR#-an# +50. {udu}SISKUR DU₃-uš {uzu}ZAG {uzu}M[E.HE₂ {u]zu}KA.NE tu-ṭah-ha KAŠ BAL-qi₂ GIŠ.GAN₂ {giš}MA₂#.EREŠ₄#{eš}.MA₂-le-e +51. U₅ ARGAB{mušen} {u₂}IGI.NIŠ {u₂#}[IGI?-lim? Š]E₁₀ MA₂#.LAH₅ KI I₃ HI#.HI# ina# IGI# MUL GAR-an EN₂ an-ni-ta₅ 3-šu₂ ŠID-nu +52. at-ta MUL mu-nam-mir x [x] x x x x qe₂-reb AN-e ha-iṭ UB-MEŠ +53. ana-ku NENNI A NENNI ina GE₆ an-ne₂-e# IGI-ka kam₂-sa-ku di-ni di-in EŠ.BAR-a-a TAR-us +54. U₂.HI.A ŠEŠ-MEŠ lip-si-su# lum-ni A₂.GU₂.ZI.GA ZALAG-ma TE-MEŠ-šu₂ ta-kar +55. ana KI MIN GIŠ.GAN₂ {giš}LU₂-a-nu {u₂#}eli#-kul-la {u₂}kur-ka-na-a ša₂# KUR# ni#-kip#-ta₅?# ina# KUŠ?# {munus#}AŠ₂#.GAR₃# GIŠ₃.NU.ZU ina GU₂-šu₂ GAR#-an# +56. 6 KA.INIM.MA# SIG₂ KEŠ₂.DA.KAM# +57. DIŠ NA UGU-šu₂ A u₂#-[kal in]a ŠU.SI-ka GAL-ti a-šar A-MEŠ u₂-kal-lu TAG.TAG-at šum-ma UZU.GIŠ-šu₂ +58. be₂-eʾ#-š[at A ša gul-gu]l-li-šu₂ it-tar-du BAD-ma gul-gul-la-šu₂ te-ser-rim A ša gul-gul-li-šu₂ +59. tu#-[še?-lam? TUG₂ SIG A LU]H-si I₃.GIŠ SUD ana UGU GIG GAR-an KU.KU GIŠ.KIN₂ ŠE₁₀ BAHAR₂ SUD₂ ana UGU GIG +60. [MAR UD.3?.KAM LAL DU₈-m]a TUG₂ SIG A LUH-si I₃.GIŠ SUD ana UGU GIG GAR-an {tug₂}na-al-ti-ip-ti +61. [x x x x x UD].2?#.KAM LAL DU₈-ma TUG₂ SIG A LUH-si I₃.GIŠ SUD ana UGU GIG GAR-an +62. [x x x x x] x GAZI{sar} BIL₂-ti KI ZI₃ ŠE.SA.A HI.HI ana UGU GIG MAR UD.1.KAM LAL DU₈-ma +63. [x x x x {ši]m}LI GAZ KI ZI₃.KUM HI.HI ina A GAZI{sar} SILA₁₁-aš LAL IGI GIG tu-gal-lab EN TI.LA LAL₂ +64. x [x] x šum₄-ma TAG-ma UZU.GIŠ-šu₂ la be₂-eʾ-šat ana li-mit SAG.DU-šu₂ NE NA₄-MEŠ GAR-an +65. EN₂ ur#-ba#-tu₄ ur-ba-tu₄ ur-ba-tu₄ sa-am-tu₄ ZI-am-ma ur-pa-ta SA₅ ik-tum₃ IM.ŠEG₃ SA₅ +66. ZI-ma# KI-tu₂ SA₅-tu₄ ir-hu A.ZI.GA SA₅ ZI-ma ID₂ SA₅-tu₄ im-la {lu₂}ENGAR SA₅ +67. {giš}MAR# SA₅ {giš}DUSU SA₅ IL₂-ši-ma# A-MEŠ SA₅-MEŠ li-is-kir {giš}IG-ma SA₅ {giš}SAG.KUL-mi S[A₅] +68. KA₂#-šu₂-nu ed-la# man-nu-um-ma ša₂ i-pe-et-ta-ku-nu-ši i-ri-iš ma-ra i-ri-iš ma-ra TU₆ EN₂ + +1. KA.INI[M.MA A.MEŠ SAG.DU] la# ik#-kal-lu-u₂ +2. DU₃#.DU₃#.BI hal-lu-ta-na-a ša₂ GIR₃ E[ME₃ x x x x] NIGIN#-mi ana ŠA₃ he-pe-e-ti GAR-an +3. EN₂ 7-šu₂ ŠID-nu ina TUG₂ ta-pa-ti₄-iq [x x x x] NU#.NU 7 KA.KEŠDA KEŠDA e-ma KEŠDA +4. EN₂ ŠID-nu ina SAG.KI-šu₂ ta[ra-kas₂-ma] ina-eš +5. DIŠ NA SAG.DU-su A u₂-kal e-le-nu da-d[a-ni-šu₂ x x x x {giš}ER]EN? hum-ṭam₂ GAR-an-ma A-šu₂ ub-bal +6. DIŠ NA ab-bu-ut-ta-šu₂ A u₂-kal kal UD# [x x x x] ina# UD.7.KAM LAL +7. ina UD.8.KAM ab-bu-ut-ta-šu₂ 3-šu₂ t[e-ser?-rim? ka-a]-a#-na-am LAL₂ +8. DIŠ NA SAG.DU-su še-ha u₂-kal [{giš}EREN? hu]m?-ṭam₂?# GAR-an +9. DIŠ NA SAG.DU-su it-te-ne₂-ba-aš-šum {n[a₄}mu-ši-tu₄ {na₄}MU]Š.GIR₂# {na₄}DAG.GAZ {na₄}GUG mar-ha-ši +10. {na₄}ZU₂ GE₂ {na₄}NIR₂ {na₄}AN.ZA.GUL#.ME# [{n]a₄}AMAŠ.PA.E₃ 8 NA₄-MEŠ +11. an-nu-ti ina {sig₂}HE₂.ME.DA SIG₂# BABBAR NU.NU [E₃ ina] SAG.KI-MIN-šu₂ tara-kas₂-ma ina-eš +12. DIŠ NA# SAG#.DU#-su# [ik-ta-n]a-aṣ-ṣa {šim}GUR₂.GUR₂ {š[im}L]I {šim}MAN.DU ŠIM.ŠAL {šim}BAL +13. [x x x x x x {gi]š}EREN.SUMUN {giš}si-hu {giš}ar₂#-[gan]-nu {u₂}ba-ri-ra-ta₅ GI DU₁₀ +14. [ana KI MIN x x] x ina I₃.UDU ELLAG₂ UDU.NITA₂ ša₂ MUN NU ŠUB-u ina MUD₂ {gi[š}ER]EN SUD₂ ina KUŠ SUR-ri SAG.DU-su LAL +15. [ana KI MIN bu?-ṭu?]-ut?#-tu₄ {šim}BULUH {u₂}kur-ka-nu-u qu#-ta#-ru ša₂ SAG.DU +16. [nap-šal-ti SA]G.DU# PIŠ₁₀.{d}ID₂ BABBAR u GE₆ ni-kip-ta NITA₂ u MUNUS {na₄}mu-ṣa# [x x x x x K]A A#.AB#.BA# +17. [NUMUN {giš}bi-n]i SI DARA₃.MAŠ gul-gul NAM.LU₂.U₁₈.LU U₂-HI-A an-nu-ti TEŠ₂.BI S[UD₂ x x x x x x] +18. [x x x] SAG.KI-MEŠ-šu₂ [x x x] +19. [qu₅-tar₅ S]AG.DU {u₂}KUR.KUR PIŠ₁₀.{d}ID₂ {u₂}kur-ka-na₇ n[i-ki]p-ta# [NITA₂ u MUNUS] +20. [DIŠ-niš tu-d]ak-kak ina MUD₂ {giš}EREN HI.HI ina NE# tu-qat#-tar#-šu# +21. [DIŠ NA SAG.D]U-su GIG {u₂}ṣa-ṣu-um-ta₅ {u₂}MUR.DU₃.DU₃ {u₂#}pi-<>-zer +22. [x x x SI]G₇?-su DIŠ-niš SUD₂ ina A GAZI{sar} SILA₁₁-aš SAG.DU-su SAR-ab# LAL-ma UD.3.KAM₂ NU DU₈ +23. [DIŠ NA SAG.DU-s]u DUGUD {šim}GUR₂.GUR₂ {šim}LI {u₂}KUR.KUR {šim}ŠEŠ [KI IL]LU {šim}BULUH +24. [x x x ELL]AG₂ GUD HI.HI ina KUŠ SUR-ri SA[R-ab UD].5?#.KAM₂ LAL₂ +25. [ana KI MIN x x x] x 15# u# 150 3.TA.AM₃ te#-s[er?-rim? x x x ina A GAZI{s]ar} SILA₁₁-aš I₃ ŠEŠ₂ LAL +26. [... an]a SAG#.DU#-[šu₂ ... DUGUD-m]a ina ZI-šu₂ SAG.DU-su +27. [... {na₄}N]A.ZA₃.HI.LI SUD₂ +28. [... SAG.D]U-šu₂# i-tel-li +29. [ana KI MIN ... HI.H]I SAG.DU-su EŠ-MEŠ +30. DIŠ# NA# [...] im HAD₂.A GAZ +31. SIM KI# [... LAL-s]u-ma UD.3.KAM NU DU₈ +32. DIŠ NA SAG.D[U-su ... IGI-š]u₂ GID₂.DA-su +33. ŠU-MIN-šu₂ u GIR₃-MIN-š[u₂ ... šim-m]a-ta₅ TUKU-M[EŠ ana TI-šu₂ {š]im}GUR₂.GUR₂ +34. {šim}LI {u₂#}[KUR.KUR ...] {giš#}ILDAG₂ GAZI{s[ar} Z]I₃ ŠE.SA.A +35. DIDA S[IG₅ ... in]a A GAZ{sa[r} S]ILA₁₁-aš +36. SAG.DU-s[u ... LAL₂-m]a UD.7.KAM₂ NU DU₈ +37. ana KI MIN {u₂}x [... ŠEŠ₂?]-MEŠ#-ma ina-eš +38. DIŠ NA MURUB₄ SAG.[DU-šu₂ ...] i#-ta-na-ah GAZ ŠA₃ +39. TUKU-MEŠ-ši EL[LAG₂?-šu₂ ... i]k-ta-ner-ru +40. ana GIG Z[I-hi ... DID]A SIG₅?# GAZI#{sar} +41. ZI₃ ŠE.S[A.A ... LAL]-id +42. [...] x +43. [...] +44. [...] +45. [...] +46. [...] +47. x [... in]a? A?# G[AZI?{sar} SILA₁₁-aš? ...] +48. ana# [KI? MIN? ...] x {giš}ŠINIG NUMUN# {u₂#}A[B₂?.DUH ...] +49. x [... K]AŠ.SAG lu ina GEŠTIN NAG# [...] +50. D[IŠ NA SAG.K]I.DAB#.BA# TUKU.TUKU NUMUN {u₂#}UKUŠ₂#.HAB# +51. [DUB 1.KA]M₂ DIŠ NA UGU-šu₂ KUM₂ u₂-kal +52. E₂.GAL {m}AN.ŠAR₂-DU₃#-A LUGAL ŠU₂ MAN KUR AN.ŠAR₂{ki} +53. ša {d}AG u {d}taš-me-tu₄# GEŠTU-MIN ra-pa-aš₂-tu iš-ru-ku-šu₂ +54. e-hu-uz-zu IGI#-MIN# na-mir#-tu ni-siq ṭup#-šar-ru-ti +55. ša ina LUGAL-MEŠ-ni a-lik mah-ri-i[a ma]m₂-ma šip-ru šu-a-tu la i-hu-uz-zu +56. bul-ṭi TA muh-hi EN UMBIN liq-ti BAR#-[MEŠ ta-h]i-zu# nak#-la# a#-zu#-gal#-lu#-ti# {d#}nin#-urta# +57. u {d}gu-la ma!-la ba-aš₂-mu ina ṭup-pa-a-ni aš₂-ṭur as-niq IGI.KAR₂-ma +58. a-na ta-mar-ti ši-ta-si-ia qe₂-reb E₂.GAL-ia u₂-kin +1'. [DIŠ NA x x] x u₂#-tan#-ne₂#-eh#-šu₂# x [...] +2'. [{u₂}I]GI-lim {u₂}IGI.NIŠ# [...] +3'. [DIŠ KI MIN] {u₂#}HAR.HAR {u₂}ur₂-ne₂-e {ši[m}...] +4'. [DIŠ KI MIN] {u₂#}HAR.LUM.BA.ŠIR [...] +5'. [DIŠ N]A SAG ŠA₃-šu₂ u₂-ṣar-rap-šu₂ na-piš KIRI₄-šu₂ DUGUD# NA# [BI ...] +6'. DIŠ# NA SAG ŠA₃-šu₂ i-ha-maṭ-su i-dak-ka-su UH₂-su# x [...] +7'. UD#.DA# SA₂.SA₂ I₃.GIŠ BARA₂.GA ina A NU pa-tan NAG.NAG-šu₂ [...] +8'. {šim#}LI {šim}GUR₂.GUR₂ ILLU {šim}BULUH PA {giš}bi-ni PA {u₂}IN₆.UŠ₂# [...] +9'. DIŠ# NA# MURUB₄# MAŠ.SILA₃-MIN-šu₂ u₂-ha-maṭ-su KI UH₂-šu₂ MUD₂ ŠUB.ŠUB ana UD.DA# [...] +10'. {šim#}LI {šim}GUR₂.GUR₂ ZA₃.HI.LI [...] +11'. PA# GI#.ZU₂.LUM.MA IM.GU₂.EN. GAZ ina KAŠ SILA₁₁-aš x [...] +12'. DIŠ# NA# NINDA GU₇ KAŠ NAG-ma SAG ŠA₃-šu₂ i-kaṣ₃-ṣa-su ŠA₃-šu₂ MU₂.M[U₂ ...] +13'. [UD].DA# SA₂.SA₂ {u₂}ak-tam {u₂}IGI-lim {u₂}tar-m[uš ...] +14'. [DIŠ KI MIN] I₃#.GIŠ BARA₂.GA EME-šu₂ DAB-bat [...] +15'. [DIŠ NA it-ta]-na#-ša#-aš# a#-šu#-uš#-tu₄# ŠUB#.ŠUB#-[su x x x x x x x x x x x x x] +16'. [UD.DA SA₂.S]A₂ {giš}GEŠTIN KA₅.A SUD₂ ina KAŠ NAG UZU GUR₄#.RA# GU₇# {š[im}LI {š]im}HAB# ina# KAŠ# NAG# ina# KAŠ# ŠEG₆#-šal# ana# DUR₂#-[šu₂ DUB] +17'. [DIŠ KI MIN GE]ŠTIN KA₅.A SUD₂ ina KAŠ NAG IM.GU₂.EN.NA A.GAR.GAR MAŠ.DA₃ PA {giš#}KIŠI₁₆#-ha-ah PA GI.ZU₂.LUM.M[A] +18'. [g]u-ur GI.ŠUL.HI ZI₃ GIG DUH.ŠE.GIŠ.I₃ ta-sak₃ ina KAŠ ta-la₃-aš ina TUG₂ te-ṭer-ri L[AL] +19'. [DIŠ KI MI]N {u₂}ak-tam SUD₂ ina KAŠ.SAG NAG# +20'. [DIŠ NA i]t-ta-na-ša-aš a-šu-uš-tu₄ ŠUB.ŠUB-su di-ik-ša TAG.TAG-su UH₂-šu₂ ma-a-da# +21'. [NAG].NAG UD.DA SA₂.SA₂ {u₂}IGI-lim {u₂}šiz-ba-na₇ {šim}ŠE.LI BABBAR SUD₂ ina KAŠ# N[AG] +22'. [DIŠ] NA# NINDA# GU₇# KAŠ NAG-ma ŠA₃-šu₂ in-nin-me-er nap-hu A ma-gal NAG UD.DA SA₂.SA₂ {u₂#}[IGI-lim] +23'. [{u₂}]IGI-NIŠ {u₂}tar-muš {šim}GAM.MA {u₂}ti-ia₂-ta₅ {u₂}HAR.HAR SUD₂ ina KAŠ NU pa-t[an NAG] +24'. [IM].GU₂#.EN.NA A.GAR.GAR MAŠ.DA₃ {šim}LI {šim}GUR₂.GUR₂ ZA₃.HI.LI PA {gi[š}GEŠ]TIN K[A₅.A x x x] +25'. [g]u-ur# {giš}GI.ŠUL.HI ZI₃ GIG DUH.ŠE.GIŠ.I₃# SUD₂# ina KAŠ SILA₁₁-aš# i[na TU]G₂ SUR#-r[i LAL-su-ma TI] +26'. [{u₂}a]k-tam SUD₂ ina KAŠ NAG UZU GUR₄.RA GU₇ ŠA₃-šu₂ i-ar₂#-[ru₃ x x x SU]D₂ ina KAŠ NAG {u₂#}IGI#-lim# SUD₂# +27'. [ina I₃.GI]Š BARA₂.GA NAG IM.GU₂.EN.NA SUD₂ ina KAŠ NA[G {u₂}ti]-ia₂#-ta₅ SUD₂ ina KAŠ NAG +28'. [DIŠ] NA# NINDA GU₇ KAŠ NAG-ma ŠA₃-šu₂ in-nim-me-ru nap-hu [A ma-gal NA]G UD.DA SA₂.SA₂ +29'. GURUN# UKUŠ₂.HAB EN la uk-tap-pi-tu HAD₂#.DU# [ta-sa]k₃ ina KAŠ NAG +30'. {u₂#}KUR.RA SUD₂ ina KAŠ NAG {u₂}HAR#.[LU]M.BA.ŠIR SUD₂ ina KAŠ NAG +31'. [DI]Š NA NINDA GU₇ KAŠ NAG-ma ŠA₃-MEŠ#-šu₂# in-nim-me-ru KAŠ₃-MEŠ#-šu₂ DAB.DAB-at UD.DA SA₂.SA₂ +32'. [GU]RUN UKUŠ₂.HAB EN la uk-tap-pi-tu HAD₂.DU ta-sak₃ ina KAŠ NAG +33'. [DIŠ N]A NINDA GU₇ KAŠ NAG-ma ŠA₃-šu₂ in-nim-me-ru in-ne₂#-bi-ṭu₂ ri-du-ut ir-ri TUKU UD.DA SA₂.SA₂ + +1'. ina x [...] +2'. DIŠ NA# [...] +3'. x [...] + +1'. [x] šu₂ i x [...] +2'. [DIŠ NA] mur ti# [...] +3'. NA# BI# x x GIG# [...] +4'. {u₂}ak-tam ina hi-iq# K[AŠ ...] +5'. EGIR-nu hi-iq KAŠ# x [...] +6'. DIŠ KI MIN a-šu-uš-tu₂ ŠUB.ŠUB-s[u ...] +7'. ru-pu-uš-tu NU TUKU.TUKU#-š[i ...] +8'. NU GID₂#.DA# {u₂}ap-ru-ša₂ x [...] +9'. DIŠ-niš# [x x] x x [...] +10'. [DIŠ NA x x] ma#-gal TUKU.TUKU# [...] +11'. [...] x x x [...] +1. DIŠ NA SAG.KI.DAB.BA TUKU.TUKU-ši NUMUN {u₂}UKUŠ₂.HAB NUMUN {u₂}UKUŠ₂.T[I.G]I.LA +2. NUMUN {u₂}EME UR.GI₇ NUMUN {u₂}HUR.SAG NUMUN HAB NUMUN {u₂}DILI NUMUN kiš-ša₂-ni GAZ# [SIM] mal₂-ma-liš +3. HI.HI ina A.GEŠTIN.NA tara-bak ZI₃ ŠE.SA.A ZI₃ ZIZ₂.A.AN a-na IGI ta-[ša]p-pah +4. ina KUŠ SUR SAG.DU-su tu-gal-lab LAL-ma ina-eš +5. DIŠ# KIMIN# GAZI{sar} {u₂}AB₂.DUH {šim}GUR₂.GUR₂ {šim}BULUH DUH.ŠE.GIŠ.I₃ ša x [x x x] ZI₃ GIG +6. mal₂#-ma#-liš# HI.HI DIDA SIG₅.GA SUD₂ ana ŠA₃ ŠUB ŠEG₆.GA₂ U₂.HI.A an-n[u-ti H]I.HI tara-bak LAL +7. [DIŠ KIMIN {giš}]EREN# {giš}ŠUR.MIN₃ {šim}GIR₂ GI DU₁₀.GA {šim}GUR₂.GUR₂ {ši[m}LI {giš}ER]EN.SUMUN {šim}MUG +8. [ŠIM.ŠAL {ši]m}MAN#.DU {šim}HAB {šim}BULUH ILLU {šim}BULUH T[EŠ₂.BI GAZ SIM ina GEŠT]IN ŠUR.RA tara-bak ZI₃ ŠE.SA.A +9. [ZI₃ ZIZ₂.A.AN ana] IGI# ta#-šap-pah ina KUŠ SUR-ri# [SAG.DU-su tu-gal-l]ab LAL-ma TI +10. DIŠ# KIMIN# NUMUN# {giš}IL[DAG₂] {u₂}ak#-tam# NUMUN# AB₂#.[DUH x x x x] GAZI#{sar} NUMUN {giš}HAB +11. {u₂}LAG A.ŠA₃# DIŠ#-niš# [x x x x x x x x x ŠE.SA].A ZI₃ ZIZ₃.A.AN +12. a-na IGI ta-šap-pa[h x x x x SAG.DU-s]u SAR-ab# LAL-ma TI +13. DIŠ KIMIN {u₂}HAR.HAR {u₂}[KUR.KUR x x x x {u₂}k]a-man-ti KA# A#.AB.BA ZI₃# GIG +14. DIDA SIG₅ {šim}[x x x x i]na KAŠ tara-bak LAL#-ma# TI# +15. DIŠ KIMIN {šim}GUR₂.GUR₂ {ši[m}LI x x x NUMUN?] {u₂#}ka-man-ti KA A.AB.BA [{šim}]ŠEŠ# +16. ZI₃ GIG DIŠ-niš GAZ [SIM (x x x)] ina KAŠ tara-bak LAL-ma [TI] +17. DIŠ KIMIN {šim}GUR₂.GUR₂ {šim}[LI x x x x] DIŠ-niš GAZ SIM ZI₃ GIG DIDA S[IG₅?] +18. ina KAŠ ta-la₃-aš [x x x SA]G.DU-su SAR-ab LAL₂-ma TI# +19. DIŠ KIMIN {šim}GUR₂.GUR₂ {šim#}L[I {šim.d}NIN.URT]A NUMUN {u₂}AB₂.DUH KA A.AB.BA {šim}MUG DIŠ-niš G[AZ] +20. SIM# ina KAŠ tara-bak S[AG.D]U-su SAR-ab LAL-ma TI +21. DIŠ# KIMIN# PA# {giš}GIŠIMMAR ša₂ ina N[U I]M i-nam-zu-zu TI-qi₂ +22. ina UD.DA HAD₂.A GA[Z S]IM ina A GAZI{sar} SILA₁₁-aš LAL +23. DIŠ KIMIN {u₂}ap₂-ru-ša₂ SUD₂ ina I₃# HI#.HI ILLU {giš}a-bu-ka-tu₂ ana ŠA₃ ŠUB-di +24. EN₂ A.RA.ŠE.RA MIN IZI BIL#.LI# NUMUN.KI.IB.GAR 7-šu₂ u 7-šu₂ ana ŠA₃ ŠID SAG.KI-šu₂ LAL₂ +25. DIŠ# KIMIN# {u₂#}KUR.KUR ni-kip#-ta ina NE tu-qat-tar-šu₂ +26. [{šim}GUR₂.GU]R₂ ni#-kip#-ta# {šim}LI NUMUN {u₂}AB₂.DUH KA A.AB.BA +27. [x x x x x in]a IZI tu-ša₂-ha-an LAL-i[d] +28. [x x x x x x x x KA A.AB.B]A UH₂.{d}ID₂ DIŠ-niš SUD₂# +29. {si[g₂}HE₂.ME.DA x x x (x x)] SAG.KI-šu₂ KEŠDA-as# +30. DIŠ KIMIN ni-k[ip?-ta? ... SA]G.KI-šu₂ TAG.TAG# +31. DIŠ KIMIN x [...] HI#.HI# SAG.KI#-šu₂# TAG# +32. DIŠ KIMIN [10 GIN₂ Z]A₃.HI#.LI# 10# GIN₂# Š[E.SA.A x x x x x x] LAL# +33. DIŠ# K[IMIN 10 GIN₂] ZA₃.HI.LI 10 GIN₂ I[M.BABBAR x x x x x x x x x x x x x] +34. TUKUM#.BI LU₂.U₃ SAG.KI [x x x x x x x x x x] +35. ina a-ṣi-ka ina GUB₃-ka GUB-zu [x x x x x x x x x] +36. ina {sig₂}HE₂.ME.DA KEŠDA-as₂ [x x x x x x x x x] +37. TUKUM.BI LU₂.U₃ SAG.KI D[AB-su x x x x x x x x x x] +38. HAD₂.A GAZ SIM ina KAŠ SILA₁₁-aš# [x x x x x x x x x] +39. TUKUM.BI LU₂.U₃# [x x x x x x x x x x x x x] +40. ina SAG.KI-šu₂ [x x x x x x x] +41. TUKUM#.BI# [x x x x x x x x x x x x x x] + + +47'. TUKUM#.[BI x x x x x x x x x x x x x x x x x] +48'. ina SAG.KI-šu₂ [x x x x x x] +49'. DIŠ LU₂ ZI SAG.KI T[UKU x x x x x x x x x x x x x x x x x] +50'. sah-le₂-e ARA₃-ti₃ ZI₃ ŠE#.S[A.A x x x x x x x x x x x x x] +51'. DIŠ KIMIN PA {giš}šu-nim HAD₂.A GAZ SIM ina ZI₃# G[IG x x x x x x x x x x x x x x] +52'. DIŠ KIMIN {giš}GEŠTIN KA₅.A {u₂}su-ba-lam HAD₂.A GA[Z x x x] +53'. KI ZI₃ ŠE.SA.A ina A GAZ[I{sar} x x x] +54'. DIŠ NA ZI SAG.KI TUKU-ši u šim-ma-ta₅ TUKU PA {giš}MA#.N[U x x x x x] +55'. sah-le₂-e {u₂}HAR.HAR ina KAŠ {lu₂}KURUN₂.NA tara#-bak# [x x x x] +56'. PA {u₂}UR₂.TAL₂.TAL₂ {giš.d}MAŠ KA A.AB.BA# {u₂}HAR.HAR {u₂}KUR.KUR Z[I₃? GIG?] gu#-ur# GI# +57'. gu-ur GI.ŠUL.HI HENBUR₂ GI HENBUR₂ GI.ŠUL.HI NUNUZ {giš}DIH₃ NUNUZ {giš}KIŠI₁₆# [I₃].UDU# UR.MAH +58'. u₂-paṭ {giš}KIŠI₁₆ ša₂ ina UGU KI.MAH GUB-zu TEŠ₂.BI SUD₂ ina# I₃ ŠEŠ₂ +59'. NUMUN {u₂}KI.{d}IŠKUR DIDA SIG₅.GA ina {na₄}NA.ZA₃.HI.LI SUD₂ ina KAŠ {lu₂}KURUN₂.NA tara-bak LAL +60'. DIŠ LU₂ ZI SAG.KI TUKU-ma ŠU-MIN-šu₂ GIR₃-MIN-šu₂ i-šam-ma-ma-šu₂ PA {giš}HA.LU.UB₂ {šim#}IM.MAN.DI +61'. {u₂}SU.AN.DAR ZI₃ ŠE.MUŠ₅ ZI₃ MUNU₆ {u₂}HAR.HAR {giš}GEŠTIN KA₅.A DIŠ-niš GAZ SIM ina šur-šum#-mi KAŠ tara-bak LAL-ma TI +62'. PA GI.ŠUL.HI {šim}LI {u₂}SU.AN.DAR {u₂}ak-tam {u₂}IN₆.UŠ₂ ZI₃ GU₂.TUR +63'. DIŠ#-niš GAZ SIM ina šur-šum-mi KAŠ.SAG tara-bak LAL₂#-ma TI-uṭ +64'. DIŠ NA SAG.KI-šu₂ GU₇-MIN-šu₂ ina si-pa-ri 1-šu₂ 2-šu₂ 3-šu₂ ta-ta[k-kip EN? MUD₂? GIN?-a]k ni-kip-ta₅ ina I₃ EŠ-su + +1. {tug₂}NIG₂.DARA₂.ŠU.LAL₂ {na₄}mu-ṣa# [GEŠTU? {gi]š?}DIH₃ SA₅! bi-ni!? ina GU₂-šu₂ GAR-an KU.KU {na₄}SAG#.KI# KU#.KU# {na₄}NIR₂ ina I₃# ŠEŠ₂#-su# +2. ana ZI SAG.KI nu-uh₂#-hi DUH.ŠE.GIŠ.I₃ SUMUN-MEŠ {šim}GUR₂.GUR₂ {šim}HAB {šim}BULUH GAZI{sar} ta-pa-aṣ +3. DIDA SIG₅# ZI₃.KUM ina KAŠ ŠEG₆.GA₂ tara-bak LAL +4. ana ZI SAG#.KI nu-uh₂-hi DUH.ŠE.GIŠ.I₃ {šim}GUR₂.GUR₂ {šim}BULUH DIŠ-niš GAZ AL.U₂.SA ZI₃.KUM +5. ina KAŠ DIŠ-niš ŠEG₆-šal ina TUG₂ SUR-ri LAL-su-ma TI +6. DIŠ NA SA SAG#.KI-šu₂ GIG {šim}LI {šim}GUR₂.GUR₂ A.GAR.GAR MAŠ.DA₃ ZI₃ GIG DIŠ-niš ina KAŠ tara-bak LAL-ma TI-uṭ +7. GAZI{sar} tur#-ar₂ ZI₃ GIG it-ti-šu₂ HI.HI ina I₃ u KAŠ.SAG tara-bak LAL-ma TI-uṭ +8. DIŠ LU₂ SA# SAG.KI-šu₂ DAB-su-ma GU₇-MIN-šu₂ 10 KISAL ZI₃ GIG 10 KISAL ZI₃.KUM 10 KISAL {šim}GUR₂.GUR₂ +9. 10 KISAL GAZI#{sar} 10 KISAL ZI₃ MUNU₆ 10 KISAL DUH.ŠE.GIŠ.I₃ TEŠ₂.BI HI.HI ina KAŠ ta-la₃-aš SAG.KI-šu₂ LAL +10. a-na nu!#-uh₂#-hi# ša₂ SA.HI.A ŠE.SA.A A.GAR.GAR MAŠ.DA₃ mal₂-ma-liš HI.HI ina KAŠ.SAG tara-bak LAL +11. [DIŠ LU₂ SA SAG.KI-šu₂] DAB#-su#-ma# GU₇-šu₂ u₃ i-ar₂-ru₃ +12. [...] ina KAŠ NAG +13. [...] i#-ar₂-ru₃ ŠU.BI.GEN₇.NAM +14. [DIŠ NA ...] x NINDA u KAŠ la i-mah-har LU₂ BI DINGIR-šu₂ iš-kun-šu₂ +15. [...] x la?#-bi-ri te-qeb-bir-šu₂ A ina UGU TU₅ +16. [DIŠ KIMIN ...] LAL-id SIG₂ {munus}AŠ₂.GAR₃ GIŠ₃.NU.ZU {sig₂}HE₂.ME.DA NIGIN-mi KEŠDA +17. [DIŠ KIMIN x x x x x x x MUNUS] pa#-ri-iš-tu₂ NU.NU SA MAŠ.DA₃ KI-šu₂-nu ta-pat-til +18. [x x x x x x x {n]a₄}ZA.GIN₃ {na₄}ZU₂ GE₆ E₃ ina SAG.KI-MIN-šu₂ KEŠDA +19. SAHAR?# [x x x x x x] ŠIKA SILA.LIMMU₂# ni#-kip#-ta SUD₂ ina I₃.GIŠ HI.HI ŠEŠ₂-su +20. DIŠ N[A SAG.KI ZAG]-šu₂# DAB#-su#-ma# IGI ZAG-šu₂ ER₂ u₂-kal sah-le₂-e ZI₃ ŠE.SA.A +21. L[AGAB?] x LAGAB# MUNU₆# DIŠ-niš HI.HI ina A GAZI{sar} tara-bak SAG.KI-šu₂ LAL-ma TI-uṭ +22. DIŠ NA SAG.KI GUB₃-šu₂ DAB-su-ma IGI GUB₃-šu₂ ER₂ u₂-kal sah-le₂-e {u₂}HAR.HAR GAZ SIM# +23. ina KAŠ AL.ŠEG₆.GA₂ tara-bak SAG.KI-šu₂ LAL-ma TI-uṭ# +24. DIŠ NA SAG.KI-MIN-šu₂ ṣab-ta-šu₂-ma IGI-MIN-šu₂ ER₂ u₂-kal-la sah-le₂-e {u₂}HAR.HAR GAZI{sar} +25. ZI₃ ŠE.SA.A BA.BA.ZA MUNU₆ DIŠ-niš ina {dug}UTUL₇ ina A GAZI{sar} tara-bak SAG.KI-MIN-šu₂ KEŠDA-ma TI-uṭ +26. DIŠ NA SAG.KI ZAG-šu₂ DAB-su-ma IGI ZAG-šu₂ MUD₂ u₂-kal sah-le₂-e {u₂}HAR.HAR IM.BABBAR +27. {giš}KIŠI₁₆.HAB ZI₃ ŠE.SA.A BA.BA.ZA MUNU₆ DIŠ-niš GAZ SIM ina A.GEŠTIN.NA tara-bak ŠU.BI.AŠ.AM₃ +28. [DIŠ N]A SAG#.KI GUB₃-šu₂ DAB-su-ma IGI GUB₃-šu₂ MUD₂ u₂-kal [{u₂}]KI#.KAL#.HI.RI₂.IN +29. [{u₂}S]U.AN#.DAR {šim}MUG DIŠ-niš GAZ SIM ina# [x x x x x] tara#-bak MIN +30. [x x x x x x ṣa]b-ta#-šu₂#-[ma x x x x x x x x x x x x x ŠE.S]A.A +31. [x x x x x x x x x x x x x x x x x x L]AL + + +55'. {giš}ŠUR.MIN₃ {giš#}MA₂?#.[EREŠ?.MA₂?.RA? ...] +56'. {giš}ar₂-gan-nu {giš}ba-ri#-ra#-ta₅# [...] x [...] +57'. ŠURUN GUD A.GAR.GAR MAŠ.DA₃ DIŠ-niš GA[Z SIM in]a DIDA# [SIG? tara-bak x x x x] +58'. ana IGI ta-šap-pah SAG.DU-su SAR#-ab LAL-ma {u₂}IGI-lim {u₂}IGI#.NIŠ# ina?# DIDA?# [x x x] +59'. ZI-ah {na₄}SAG.KI ina ZAG-šu₂ KEŠDA-su {u₂}ar₂-zal-la ŠIKA gul-gul LU₂.U₁₈#.LU# [x x x] +60'. ni-kip-ta₅ NUMUN {giš}MA.NU {u₂}DILI NUMUN {giš}bi-ni {u₂}AŠ.TAL₂.TAL₂ DIŠ-niš te-pe-eṣ ina I₃.GIŠ {giš}EREN HI.HI-m[a] +61'. ŠEŠ₂-su bal-ṭu₂-su-nu ina NE {giš}KIŠI₁₆ tu-qat-tar-šu₂ I₃ DU₁₀.GA SAG.KI-MIN-šu₂ EŠ-aš +62'. DIŠ NA SAG.KI ZAG-šu₂ GU₇-šu₂-ma IGI ZAG-šu₂ nap-hat u₃ ER₂ BAL-qi₂ ŠU.GIDIM.MA ša₂-ni {d}iš₈-tar₂ +63'. ana TI-šu₂ {giš}si-hu {giš}ar₂-ga-nu {giš}ba-ri-ra-ta₅ 1 GIN₂ UH₂.{d}ID₂ {u₂}IN₆.UŠ₂ +64'. GI.ŠUL.HI ina ZI₃.KUM HI.HI ina KAŠ tara-bak LAL : DIŠ KIMIN šur-šum-mi ši-iq-qi₂ šur-šum-me A.GEŠTIN.NA KALAG.GA +65'. šur-šum-mi KAŠ.SAG ZU₂.LUM.MA.DILMUN{ki} 1 GIN₂ I₃.UDU {šim}GIG ina I₃.NUN SUD₂ te-qi₂ + + +1. DIŠ NA SAG.KI GUB₃-šu₂ GU₇-šu₂-ma# IGI 150-šu₂ nap-hat u ER₂ BAL-qi₂ ZU₂.LUM.MA.DILMUN{ki} +2. U₂ a-ši-i MUD₂ {giš}EREN ina I₃ {šim}GIR₂ SUD₂ ina MUL₄ tuš-bat ina še-ri₃ NU pa-tan MAR +3. DIŠ KIMIN IM.BABBAR pu-rat-ta₅ ZI₃ MUNU₆ ZI₃ GU₂.GAL ZI₃ GU₂.TUR ZI₃ GAZI{sar} +4. GAZ SIM ina A GAZI{sar} tara-bak SAG.KI-šu₂ IGI-šu₂ LAL +5. DIŠ NA SAG.KI DAB-su-ma i-mim i#-kaṣ₃-ṣa IGI-MIN-šu₂ nu-up-pu-ha ŠU.GIDIM.MA +6. GIR₃.PAD.DU NAM.LU₂.U₁₈.LU tur-ar₂ SUD₂ ina I₃ {giš}EREN EŠ-MEŠ-su-ma TI +7. DIŠ NA SAG.KI DAB-su-ma TA {d}UTU.E₃ EN {d}UTU.ŠU₂.A GU₇-šu₂ ŠU.GIDIM₇.MA a-ši-pu ki ša₂ i-du-u +8. li-te-ep-pu-uš I₃.UDU ma-hir-te U[DU?.NITA₂? x x x x DI]Š-niš# EŠ-su {u₂}IN₆.UŠ₂ HAD₂.A +9. GAZ# SIM# ina A GAZI{sar} tara-bak Z[I₃ ŠE.SA.A? ana IGI ta-ša-pah SA]R-ab LAL-su + + +35'. [...] LAL?# [...] +36'. [... Z]I-ah {sig₂#}HE₂#.ME#.DA# [...] +37'. [... NIGIN-m]i ina SAG.KI-šu₂ u GU₂-šu₂# [KEŠDA x x x] +38'. [x x x x x x x S]AG.KI-MIN-šu₂ GU₇-MIN-šu₂ {na₄}mu-ṣa {na₄}AN.ZA[H {na₄}AN.ZAH].GE₆# +39'. [{na₄}KA.GI.N]A DAB.BA NA₄ AN.BAR {u₂}DILI 6 U₂-MEŠ ŠE[Š DIŠ]-niš SUD₂ +40'. [ina MUD₂ {giš}ERE]N HI.HI-ma SAG.KI-MIN-šu₂ IGI-MEŠ#-šu₂# u# GU₂#-su# EŠ#-MEŠ#-ma ina-eš +41'. DIŠ# NA# [ina DAB ŠU.GID]IM ZI SAG#.KI# TUKU#-MEŠ# ana# KAR#-šu₂ 10 GIN₂ {giš}EREN 10 GIN₂ {giš}ŠUR.MIN₃ +42'. 10 GIN₂ {šim}Š[EŠ 10 GIN₂] {šim}IM.DI 10 GIN₂ {giš}dup-ra-nu 10 GIN₂ ŠIM.ŠAL +43'. 10 GIN₂ {šim}G[IR₂ 10 GI]N₂ {šim}GAM.MA 10 GIN₂ {šim}LI 10 GIN₂ {šim#}GUR₂.GUR₂ +44'. 10 GIN₂ GI# D[U₁₀.GA 10 GIN₂ GAZ]I{sar#} 10 GIN₂ {šim}HAB 10 GIN₂ LAGAB MUNU₆ +45'. 10 GIN₂# DUH#.ŠE#.[GIŠ.I₃ x x 1]0 GIN₂# DIDA# SIG₅.GA 10 GIN₂ sah-le₂#-e# +46'. 10# GIN₂# qi₂#-l[ip₂ x x x 10 GI]N₂ GU₂#.GAL# 10 GIN₂ GU₂.TUR DIŠ-niš GAZ# SIM# +47'. lu# ina# K[AŠ.SAG? x x x tara]-bak# ina# KUŠ# SUR ZI₃ ZIZ₂.A.AN# +48'. ana# IGI# ta#-š[ap-pah x x x SA]R-ab# SAG.KI-MIN-šu₂ LAL-ma [ina-e]š +49'. DIŠ KIMIN {ši[m} ... {ši]m.d}MAŠ ILLU {šim}BULUH qi₂-lip₂ Z[U₂.LUM.MA] +50'. I₃.UDU ELLA[G₂ ... DIŠ-ni]š GAZ ina KUŠ SUR-ri LAL-id-ma# i[na?-eš?] +51'. DIŠ KIMIN DUH.Š[E.GIŠ.I₃ ... {ši]m}GIG# ZI₃.KUM ina šur-šum-me KAŠ SILA₁₁-aš [x x (x)] +52'. DIŠ NA SAG.K[I.DAB.BA? TUKU.TUKU?] {u₂#}ŠAKIRA# NUMUN# {u₂#}UR#.TAL₂.TAL₂ NUMUN {u₂}EME# U[R.GI₇] +53'. NUMUN {u₂}NIG₂.[GAN₂?.GAN₂? NUMUN {u₂}ap₂?-r]u?-šu₂ NUMUN {u₂}AB₂.DUH NUMUN {u₂#}MAŠ?#.HUŠ?# ša?# ana?# [x x (x)] +54'. ŠE₁₀ TU{mušen} [ša₂ {giš}GIŠIMMAR? T]I ŠE₁₀ SIM{mušen} ša₂ {giš}bi-ni TI ILLU {u₂}si-in?#-bu?#-r[a?-ti?] +55'. {šim}GUR₂.GUR₂ sa[h?-le₂?-e?] NUMUN {u₂}qu₂-ud-ri GAZI{sar} {giš}KIŠI₁₆ ta-pa-aṣ DIŠ?-n[iš? x x (x)] +56'. U₂-MEŠ ŠE[Š ina {uru]du}ŠEN.TUR ta-qal-lu U₂-MEŠ ša-šu-nu ma-la-a qa-lu-u TI# +57'. DIŠ-niš HI.HI i[na šu]r-šum-mi KAŠ ta-la₃-aš tu-gal-lab I₃.GIŠ EŠ-aš 7-šu₂ KEŠDA-su-ma +58'. ina# U₄# 4#.KAM₂# SA SAG.KI-šu₂ ta-ma-haṣ-ma TI-uṭ +59'. DIŠ KIMIN NUMUN {u₂}DI[LI NU]MUN {u₂}TAL₂.TAL₂ GAZ SIM ina A ta-la₃-aš LAL +60'. DIŠ KIMIN ŠE₁₀ TU{mušen#} SUD₂ ina KAŠ ta-la₃-aš LAL +61'. DIŠ NA SAG.KI.DAB.[BA TU]KU.TUKU IGI-MIN-šu₂ i-bar-ru-ra UZU-MIN-šu₂ i-šam-ma-mu-šu +62'. GIR₂.GIR₂-šu₂ ŠA₃-[MEŠ-šu₂ MU₂.M]U₂ ŠU-MIN-šu₂ u GIR₃-MIN-šu₂ u₂-šam-ma-ma-šu₂ u₂-zaq-qa-ta#-šu₂ +63'. bir-ka-šu₂ an-[ha? tab?-k]a e-ta-ta-na-ah NA BI GIG NU ZI DAB-su +64'. i-dan-nin-šu₂ [ana GI]G-šu₂ NU GID₂.DA hi-qa ša KAŠ {urudu}ŠEN.TUR DIRI +65'. {giš}bi-nu {u₂}[x (x)] {giš}HAŠHUR.GIŠ.GI {u₂}TAL₂.TAL₂ NUMUN {giš}ŠE.NU₂.A ana ŠA₃# ŠUB ŠEG₆-š[al?] +66'. [x x] x x x ib?# E₁₁#-šu₂#-ma# NAGA.SI.MEŠ IM.GU₂ NIG₂.NIGIN₂.NA te#-se-e[r-šu₂] + +1. {u₂}IGI-lim {u₂}IGI.NIŠ SUD₂ ina MUD₂ {giš}EREN HI.HI ŠE[Š₂-su?]-ma TI +2. DIŠ NA SAG.KI.DAB.BA TUKU.TUKU {u₂}IGI-lim {u₂}IGI.NIŠ {u₂}tar-[muš?] {u₂#}an#-ki-nu-te +3. {giš}HAŠHUR.GIŠ.GI {u₂}HAR.HAR U₂.HI.A ŠEŠ-ti DIŠ-niš ta-pa-a[ṣ? ina? {urudu}ŠEN?.TU]R? ŠUB tu-šab-šal +4. ta-ša₂-hal 10 GIN₂ LAL₃ 1/3 SILA₃ I₃ hal-ṣa ana ŠA₃ ŠUB ana DUR₂-šu₂# DUB-ma TI +5. DIŠ KIMIN {u₂}IGI-lim {u₂}IGI.NIŠ NUMUN {giš}ŠINIG NUMUN {u₂}tu-lal +6. TEŠ₂.BI SUD₂ ina GEŠTIN ŠUR ba-lu pa-tan NAG-ma TI-uṭ +7. DIŠ KIMIN ŠIM.HI.A DU₃.A.BI-šu₂-nu ina GEŠTIN ŠUR u KAŠ.SAG# tu-la-bak ŠEG₆-šal ta-ša₂-hal +8. 10 KISAL LAL₃ 1/3 SILA₃ I₃ hal-ṣa ana ŠA₃ ŠUB-di [x x x] ta#-hi-ṭa-šu₂-ma TI-uṭ +9. DIŠ KIMIN {u₂}HAR.HAR {u₂}KUR.KUR NAGA#.SI#.MEŠ# x x [x (x)] x NU# pa-tan NAG-MIN-ma TI-uṭ +10. DIŠ KIMIN {u₂}IGI-lim {u₂}IGI.NIŠ NUMUN {u₂#}x [x x x x x x SU]D₂? ina# KAŠ# ŠEG₆#-šal +11. ta-ša₂-hal 10 KISAL LAL₃ 1/3 SILA₃ [x x x x x x x x x x x T]I +12. DIŠ KIMIN {u₂}IGI-lim PA {giš}ŠE.N[U₂.A ...] +13. TEŠ₂.BI GAZ SIM ina x [...] +14. DIŠ KIMIN {giš}HAŠHUR-a-[pi ...] +15. DIŠ NA SAG.K[I.DAB.BA? TUKU.TUKU? ...] +16. {na₄}AN.ZAH.G[E₆? ...] +17. DIŠ KIMIN n[i?-kip?-ta₅? ...] +18. TEŠ₂?#.[BI? ...] + + +30'. {n[a₄}m]u-ṣa# {n[a₄} ...] +31'. U₂#.HI.A an-nu#-[ti ...] +32'. EN₂# UR#.SAG {d}ASAL.LU₂.HI# 7?#-š[u₂? ŠID ...] +33'. DIŠ NA# SAG.KI DAB-su-ma IGI-MIN#-[šu₂ ...] +34'. DIŠ-niš SUD₂ ina K[AŠ? ...] +35'. DIŠ NA# SAG.KI-šu₂ lu ša₂ ZAG l[u ša₂ GUB₃ ...] +36'. u IGI#-MIN-šu₂ a-pa-a {na₄}mu-ṣa# [...] +37'. DIŠ# NA# SAG.KI-ME-šu₂ ZI-M[EŠ ...] +38'. [sah]-le₂#-e ARA₃-MEŠ x [...] +39'. [KU]Š? MUŠ GE₆ H[AD₂.DU? ...] +40'. [DIŠ N]A SAG.KI# D[AB-su-ma pa-nu-šu i]ṣ-ṣa-nun-du# [x x x x x x x x x x x x x] +41'. {u₂#}IGI#-lim# [x x x x K]AŠ DU₁₀.GA NAG-MEŠ#-m[a x x x x x x x x x x] +42'. [x x x x x x x KEŠ]DA-su A.RI.A NAM.LU₂#.U₁₈#.L[U x x x x x x x x] +43'. [x x x x x SU]D₂ ina I₃ {giš}EREN HI.HI ŠEŠ₂-MEŠ#-ma# TI# +44'. [x x x x x x x SA.G]U₂-MEŠ-šu₂ GU₇-MEŠ-šu₂ ŠU.GIDIM.MA {giš}si-hu {giš}ar₂-ga-nu +45'. {u₂#}[ba-ri-ra-ta₅ GI.ŠU]L.HI GAZ SIM ina A GAZI{sar} tara-bak LAL-su +46'. DIŠ N[A x x x x x x] {d}UTU.E₃ EN EN.NUN.UD.ZAL.LI GU₇-šu₂ ur-rak UŠ₂ +47'. DIŠ N[A x x x x x Š]A₃ ŠA₃ GU₃.GU₃-si ŠU.GIDIM.MA ša₂-ne₂-e {d}iš-tar UŠ₂ +48'. DIŠ NA S[AG.KI.DAB.BA-ma m]a-gal BURU₈ KI#.NA₂# la# i#-na#-aš-ši UŠ₂ +49'. DIŠ NA SA[G.KI.DAB.BA-ma ma]-gal GU₃.GU₃-si SA SAG.KI-šu₂ ma#-gal# te?#-bu?#-u?# x x x x x UŠ₂# +50'. an-nu-t[u₄ x x x] x SAG.KI.DAB.BA.KAM₂ EN SA#.GU₂?# [AL?].TIL?# +51'. šum-ma SAG.KI.D[AB.BA ŠU.GI]DIM.MA ina SU NA il-ta-za-az-ma NU DU₈ +52'. DUB 2.KAM₂ [DIŠ N]A UGU-šu₂ KUM₂ u₂-kal +53'. E₂.GAL {m}AN#.ŠAR₂#-DU₃#-A# [LUGAL ŠU₂ MAN KUR AN.ŠAR₂]{ki#} ša {d}AG u {d}taš-me-tu₄ GEŠTU-MIN ra-pa-aš₂-tu₂ iš-ru-ku-šu₂ +54'. e-hu-uz-[zu IGI-MIN na-mi]r-tu₄ ni-siq ṭup-šar-ru-ti +55'. ša# [ina LUGAL-MEŠ-ni a-lik mah-ri-ia mam₂-ma] šip#-ru# šu-a-tu la i-hu-uz-zu +56'. [bul-ṭi TA m]uh-hi EN UMBIN li[q-ti BAR-MEŠ ta-hi]-zu# nak-la +57'. a-zu-gal-lu-ut {d}nin-urta u {d}gu-la ma-la ba-aš₂-m[u ina ṭup-pa-a-ni aš₂-ṭu]r as-niq IGI.KAR₂-ma +58'. a-na ta-mar-ti ši-ta-si-ia qe₂-r[eb E₂.GAL-i]a u₂#-kin +1'. NA# BI GIDIM I[M.RI.A-šu₂ DAB-su ...] +2'. {šim}ŠE.LI.BABBAR {ši[m}...] +3'. {u₂}tara-muš {giš}si-ha [...] +4'. ina A ŠIM.HI.A GAR-šu-nu [...] +5'. ta-lal NITA NINDA GID₂.DA x [...] +6'. I₃ {šim}ŠEŠ ana SAG.KI-[šu₂ ŠUB-di ...] +7'. ana KIMIN {giš}EREN {giš}ŠUR.MIN₃ G[I.DUG₃.GA ...] +8'. 8 U₂.HI.A ŠEŠ UR.BI ina KAŠ.S[AG ...] +9'. PEŠ₁₀-{d}ID₂ ku-up-ri {d}I[D₂ ...] +10'. tu-qat-tar-šu₂ hi-ib-ṣa ša x [...] +11'. DIŠ NA ina DAB-it ŠU.GIDIM.MA GEŠTU.[MIN-šu₂ i-šag-gu-ma ...] +12'. {šim}{d}MAŠ zap-pi ANŠE.KUR.RA ZI₃ [...] +13'. MUD₂ MUŠ {u₂}GUD₃ A.RI.A# [...] +14'. ŠU.SI.MEŠ-šu₂ ina GEŠTU.MIN-šu₂ i-ret-ti-m[a ...] +15'. a-šar TAB ba-ši-i {d}e-a ib-[ni ...] +16'. EGIR-šu₂ KA sa-par-ti SI GU₄ [...] +17'. DIŠ NA GIDIM DAB-su-ma GEŠTU.MIN-šu₂ i-š[ag-gu-ma {šim}BAL GI.DUG₃.GA {šim}GUR₂.GUR₂] +18'. GAZI{sar} zap-pi ANŠE.KUR.R[A PAP 5 U₂.MEŠ qu₅-taru₅ ša GEŠTU.MIN lat-ku] +19'. x x [...] x ina MUD U[D.KA.BAR ...] +20'. DIŠ NA ŠU.GIDIM.MA DAB-su-ma GEŠTU.MIN-šu₂ i-šag-gu-ma {šim}ŠEŠ {n[a₄}EŠ₃.ME.KAM₂ {na₄}AŠ.GI₃.GI₃ (...)] +21'. SUD₂ ina {sig₂}AKA₃ NIGIN-mi ina MUD₂ {giš}EREN SUD EN₂ piš-irtu ib-ni ŠID#-[nu ...] +22'. EN₂ piš-irtu ib-ni {d}e-a IM.MA.AN.NA AN.KI.A NA₄ li-iz-zur-šu₂ NA₄ li-is-kip#-šu₂# NA₄# liš#-p[i-šu₂] +23'. NA₄ li-pa-sis-su TU₆.EN₂ : EN₂ an-ni-tu₂ 3-šu₂ ana UGU lip₂-pi ŠID-nu ana ŠA₃ GEŠTU.MIN-šu₂ GAR-an +24'. ana KIMIN {šim}GUR₂.GUR₂ {u₂}HAR.HAR {u₂}KUR.KUR {u₂}ak-tam {u₂}IGI-lim {u₂}IGI-20 {u₂}tara-muš ZA₃.HI.LI SUD₂ +25'. ina I₃ {giš}EREN HI.HI ina {sig₂}AKA₃ NIGIN-mi ŠA₃ GEŠTU.MIN-šu₂ GAR-ma ina-eš : ana KIMIN GI.DUG₃ ina I₃+GIŠ SUD₂ ana ŠA₃ GEŠTU.MIN-šu₂ GAR-an +26'. ana KIMIN {šim}ŠEŠ {na₄}AŠ₂.GI₄.GI₄ {na₄}ZA.GIN₃ {na₄}SIG₇.SIG₇ 1-niš SUD₂ +27'. ina I₃ {giš}EREN HI.HI ana ŠA₃ GEŠTU.MIN-šu₂ ŠUB UZU.MIN-šu₂ ŠEŠ₂ +28'. DIŠ NA ina DAB-it ŠU.GIDIM.MA GEŠTU.MIN-šu₂ i-šag-gu-ma NUMUN u₂-ra-a-nu NUMUN {giš}MA.NU +29'. ni-kip-tu₂ NITA₂ u MUNUS zap₂-pi ANŠE.KUR.RA {tug₂}NIG₂.DARA₂.ŠU.LAL₂ ina NE GEŠTU.MIN-šu₂ tu-qat-tar +30'. DIŠ NA ina DAB-it ŠU.GIDIM.MA GEŠTU.MIN-šu₂ i-šag-gu-ma SUHUŠ {giš}MA.NU ni-kip-tu₂ {tug₂}NIG₂.DARA₂.ŠU.LAL₂ ina NE ŠA₃ GEŠTU.MIN-šu₂ SAR +31'. {šim}GUR₂.GUR₂ {šim}LI {šim}ŠEŠ {giš}EREN GI.DUG₃.GA {šim}MUG GAZI{sar} {im}KAL.GUG +32'. 8 U₂.HI.A qu₅-GUR ša GEŠTU.MIN ina NE ŠA₃ GEŠTU.MIN-šu₂ SAR +33'. {na₄}mu-ṣu₂ SI DARA₃.MAŠ GIR₃.PAD.DU NAM.LU₂.U₁₈.LU KA tam-ti₄ GIR₃.PAD.DU UGU.DUL.BI +34'. {u₂}KUR.RA ina NE# ŠA₃ GEŠTU.MIN-šu₂ tu-qat-tar +35'. kib-ri-tu {u₂}KU₆ SUHUŠ {giš}MA#.NU# a-za-pi ANŠE.KUR.RA {tug₂}NIG₂.DARA₂.ŠU.LAL₂ ina NE {giš}KIŠI₁₆ ŠA₃ GEŠTU.MIN-šu₂ tu-qat-tar# +36'. SI.DARA₃.MAŠ {na₄}ga-bi-i {u₂#}KUR#.RA# sah-le₂-e KA tam-ti₄ kib-ri-tu₂ +37'. GIR₃.PAD.DU NAM.LU₂.U₁₈#.[LU] ina NE {giš}KIŠI₁₆ ŠA₃ GEŠTU.MIN-šu₂ SAR +38'. DIŠ NA GEŠTU.MIN-šu₂ i-šag-gu-ma MU[D₂ {giš?}EREN?] a#-ra-an-di {šim}GUR₂.GUR₂ ina {sig₂}AKA₃ NIGIN-mi +39'. ana ŠA₃ A.MEŠ ŠUB-di ina NE SE[G₆]-šal ana ŠA₃ GEŠTU.MIN-šu₂ GAR-ma TI +40'. DIŠ NA GEŠTU.MIN-šu₂ i-šag-gu-ma MUD₂ {giš}EREN# KI A {giš}NU.UR₂.MA HI.HI-ma ana ŠA₃ GEŠTU.MIN-šu₂ ŠUB-ma TI +41'. %sux en₂ in-da-ra-ah ta-ra-a[h-t]i šu-maš in-da-ra-ah ta-ra-ah-ti +42'. [ti]r-ki-bi in-da-ra-a[h ta?-r]a-ah-ti tir-ki ba-su-tu₂ TU₆.EN₂ +1. %sux en₂ šu-bi [in-d]u₈ gir₃-bi in-du₈ bur#-še bur-na bur#-na#-an-na su-ri-ih su-ri-ih-e-ne# +2. su-ri-ih# gaba?# ni#-ik-ra-ah su#-ri-ih ta#-ah#-ta#-ah# TU₆.EN₂ +3. 2 KA.INIM.MA# DIŠ NA GEŠTU#.MIN#-š[u₂] i#-šag-gu-ma +4. DU₃.DU₃.BI {šim}ŠEŠ# {na₄}EŠ₃.ME.KAM₂ {na₄}AŠ₂.G[I₄.GI₄ SUD₂ x (x) in]a MUD₂ {giš}EREN HI.HI +5. EN₂ 3-šu₂ ana ŠA₃ ŠID#-nu# {sig₂}AKA₃ N[IGIN-mi ana Š]A₃ GEŠTU.MIN-šu₂ GAR-an +6. EN₂# si-in-du₈ i[b-ni] {d#}e₂#-a IM.MA#.NA# AN#.KI#.A# ib#-[ni du-up-ni gu₂-us₂]-sa# TU₆.EN₂ +7. 1# KA.INI[M.MA] DIŠ NA GEŠTU.MIN-šu₂ i#-šag-gu-ma# +8. [D]U₃.DU₃.BI {ši[m}ŠEŠ {na₄}EŠ₃.ME.KAM₂ {n]a₄}AŠ₂.GI₄.GI ni-kip#-tu# ina I₃ HI.HI ina MUL tuš-bat EN₂ 3-šu₂ +9. [ana Š]A₃ ŠID-nu {sig₂#}AKA₃# [NIGIN ana ŠA₃ GEŠTU.MIN-š]u₂ GAR#-an %sux en₂ ša-ra-zu# ša#-ra-šag₅#-ga he₂-a +10. [ur-sa]g {d}nin-urta ša-ra-šag₅#-ga he₂-a +11. [en] {d}nin#-urta# ša#-ra-šag₅-ga he₂-a +12. {d#}nin-urta nam-ba-te-ga₂-e₃-de₃ tu₆-en₂ +13. [1 K]A.INIM.MA DIŠ NA GEŠTU.MIN-šu₂# i#-šag#-gu-ma +14. [DU₃.DU₃.B]I {na₄}EŠ₃.ME.K[AM₂ (x)] x {šim}ŠEŠ {u₂#}ur#-nu-u UR#.BI# SUD₂# ina MUD₂ {giš}EREN HI#.HI# +15. [EN₂ 3-šu₂ an]a ŠA₃ ŠID-nu [ina {s]ig₂}AKA₃ NIGIN#-mi# ana ŠA₃ GEŠTU.MIN-šu₂ GAR-an +16. [EN₂ na]-pi-ir# še-ri-iš# [pa?-ta?-ar?-r]i? zu-g[a-l]i?-ir#-ri# pa-ta-hal-li pa-tar-ri +17. [su?-ma?-aš₂? p]a?#-at#-r[i pa?-ku?-un?-d]i ra-t[a-aš₂? i]k?-ki#-ri-ri ša-ra-aš tu₆-en₂ +18. [1 KA.INIM.MA DIŠ NA GEŠTU.MIN-šu₂ i-šag-g]u-ma# 3-š[u₂ ana ŠA₃ GEŠTU ZA]G-šu₂ 3-šu₂ ana ŠA₃ GEŠTU GUB₃-šu₂ MU₂# +19. [...] x x [...] x x [...] +20'. [...] +21'. [...] +22'. [en₂ nig₂-e₃ nig₂-e₃ nig₂-nam-ma us₂-su₁₃] +23'. [ki-a dim₃-ma-bi a-ri-a an-na-ke₄] +24'. [sa₇-alan-bi nig₂ an-gin₇ šu nu-te-ga₂] +25'. [hur-sag-gin₇ gul-gul sa₇-alan-bi zi-ir-zi-ir-e-de₃] +26'. [nig₂ udug har-ra-an nig₂ udug kaskal-am₃] +27'. [nig₂-ni₂-zu mu-un-ši-in-gin-na ni]g₂-ni₂#-zu# mu#-un#-ši#-in#-[gin-na] +28'. [{d}nin-urta lugal {giš}tukul-ke₄ ga]ba-zu he₂-en-ga₂#-g[a₂] +29'. [hul-dub₂ zi-an-na he₂-pa₂ z]i-ki-a he₂-pa₂# +30'. [1 KA.INIM.MA DIŠ NA GEŠTU.MIN-šu₂ i-šag-gu-ma 3-šu₂ ana ŠA₃ GEŠTU ZA]G-šu₂ 3-šu₂ ana ŠA₃ GEŠTU GUB₃-šu₂ ŠID +31'. [en₂ hu-hu-un-ti ib-ni-a-ti ib-ni-ir-r]a ša₂-na-an +32'. [ak-ka-li-ir-ri su-gar-ri ša₂-at-ri ku-uk-t]i hu-ma-at-ri su-ma-aš tu₆-en₂ +33'. [1 KA.INIM.MA DIŠ NA GEŠTU.MIN-šu₂ i-šag-gu-ma 3-šu₂ ana ŠA₃ GEŠ]TU ZAG-šu₂ li-ih-šu₂ +34'. [en₂ a-me-am-ma-an ku-um-ma-am su-um-ma-a]t-ri ki-ri-ri ku-uk-ti +35'. [ra-ša₂-na ku-uk-ti hu-un-di hu-m]a-an tu₆-en₂ +36'. [KA.INIM.MA DIŠ NA GEŠTU.MIN-šu₂ i-šag-gu-ma 3-šu₂ ana ŠA₃ GEŠTU GU]B₃-šu₂ li-ih-šu₂ +37'. [...] {u₂#}kur-ka-na-a +38'. [...] x [...] +53'. [DIŠ NA GEŠTU.MIN-šu₂ GU₇.MEŠ-šu₂ neš-ma-a he-e-si I₃.GIŠ {giš}du]p-ra#-an# {sig₂}AKA₃ SUD# 1#-tum# 2#-šu₂# 3#-šu₂# ana# ŠA₃# GEŠTU.MIN#-šu₂# GAR#-an# +54'. DIŠ N[A GIG-ma GIG-su an]a ŠA₃ GEŠTU.MIN-šu₂ ip#-pu-uš-ma neš-ma-a DUGUD 1 GIN₂ A {giš}NU.UR₂.MA# +55'. 2 [GIN₂] A# {ši[m}GIG] ° \\ I₃ {ši[m}x] ° [(x x)] HI.HI {sig₂}AKA₃ SUD ana ŠA₃ GEŠTU.MIN-šu₂ GAR-an UD.3.KAM₂ an-nam DU₃-uš# +56'. in[a UD.4.KA]M₂ LUGUD ša₂ Š[A₃ GEŠTU.MIN-šu₂] E₁₁#-ma ta-kap-par GIM MUD₂.BABBAR it-tag-ma-[ru] +57'. IM#.SAHAR#.NA₄.KUR.RA SUD₂ in[a G]I.SAG.KUD ana ŠA₃ GEŠTU.MIN-šu₂ MU₂-a[h] +58'. DIŠ NA# KUM₂ ana ŠA₃ GEŠTU.MIN-šu₂ i-pu-uš#-ma neš-mu-šu₂ DUGUD u₃ lu IR u₂-kal I₃+GIŠ {giš}dup-r[a-na] +59'. I₃+GIŠ GI.DUG₃.GA ana SAG.DU-šu₂ ŠUB-di {sig₂}AKA₃ SUD 1-šu₂ 2-šu₂ 3-šu₂ ana ŠA₃ GEŠTU.MIN-šu₂ GAR-[an] +60'. neš-mu-šu₂ BAD-te sah-le₂-e ša₂ mim-ma ana ŠA₃ NU ŠUB ina NINDA.ZIZ₂.AN.NA GU₇ +61'. DIŠ NA ina si-li-ʾ-ti-šu₂ KUM₂ ana ŠA₃ GEŠTU.MIN-šu₂ ip-pu-uš-ma GEŠTU.MIN-šu₂ DUGUD I₃ KUR.GI{m[ušen}] +62'. ana ŠA₃ GEŠTU.MIN-šu₂ ŠUB-ma neš-mu-šu₂ i-qal-lil₂ SUHUŠ {gi[š}NA]M.TAR NITA₂ tu-pa-aṣ ana ŠA₃ GEŠTU.MIN-šu₂ ŠUB-ma ina-[eš] +63'. DIŠ NA GEŠTU.MIN-šu₂ GIM ša₂ ŠU.GIDIM.MA GU₇#.MEŠ# u₃# SIG₃#.MEŠ#-šu₂# I₃+GIŠ {šim}GIG I₃+GIŠ GI.DUG₃.G[A] +64'. I₃+GIŠ {šim}LI a#-he#-e tu-raq-qa 1-niš HI.HI ana ŠA₃ GEŠTU.MIN-šu₂# ŠUB# LAG {mun}eme-sal-li₃ +65'. {sig₂#}AKA₃# NIGIN# ana ŠA₃ GEŠTU.MIN-šu₂ GAR DIDA SIG₅ ZI₃ GU₂.GAL ZI₃ GU₂.TUR ZI₃ ZIZ₂.AM₃# +66'. ZI₃ GAZI{sar} ZI₃ {giš}ere#-ni# ina KAŠ tara-bak [LAL] TI#-uṭ# +67'. DIŠ NA GEŠTU.MIN-šu₂ GI[G-ma ŠA₃ GEŠT]U.MIN-šu₂ bi-ʾ-iš SIG₃.MEŠ-su GIR₂.GIR₂-s[u x x (x)] u₂# ra# x +68'. GU₇-šu₂-ma la N[A₂-lal {ši]m}LI {šim}GUR₂.GUR₂ {šim}GIR₂ {šim}BAL [GAZI{s]ar} IM.KAL.L[A] +69'. IM.KAL#.GUG# [1-niš GAZ S]IM ina NE# {giš#.u₂}GIR₂ ŠA₃ GEŠTU.MIN-šu₂ SAR-ar₂# +70'. [x x x x (x) UD.3.K]AM₂ an-nam DU₃#-uš#-ma ina UD.4.KAM₂ ŠA₃ GEŠTU.MIN-šu₂# ta-kap-par₂-ma +71'. [GIM LUGUD i]t-tag#-ma#-ru IM.SAHAR.NA₄#.KUR#.RA SUD₂ ina {gi}SAG.KUD an[a Š]A₃ GEŠTU.MIN-šu₂ MU₂-ah# +72'. [DIŠ NA ina] GEŠTU.MIN-šu₂ MUD₂.BABBAR DU-ak MUD₂ ELLAG₂ GU₄ u MUD₂ {giš}EREN# 1-niš HI.HI ana ŠA₃ GEŠTU.MIN-šu₂ BI.IZ +1. [... a]na ŠA₃ GEŠTU.MIN-šu₂ BI.IZ A {giš} x [...] +2. [... ana ŠA₃ GEŠTU.MIN-š]u₂ BI#.IZ# A [{giš}N]U.UR₂.MA# in[a I₃ {giš}ER]EN HI.HI +3. [ana ŠA₃ GEŠTU.MIN-šu₂ B]I.IZ kam-ka-ma# ša₂ kim-ṣi# AN[ŠE x x] x ša₂# GU₂#.MURGU₂ ANŠE ina I₃ {giš}EREN HI.HI +4. [{sig₂}AKA₃ NIG]IN-mi# ana ŠA₃ GEŠTU.MIN-šu₂ GAR-an I₃ {šim}BULUH {šim#}LI# ZI₂ BIL.ZA.ZA ana ŠA₃ GEŠTU.MIN-šu₂ BI.IZ +5. [...] x-an-ni-šu₂ ina I₃ KUR.GI{mušen} HI.HI ana GEŠTU.MIN-šu₂ BI.IZ +6. [...] x ina ZI₃.KUM HI.HI ana GEŠTU.MIN-šu₂ GAR +7. [x x (x) t]u-daq-qaq ina G[I.S]AG.KUD ana ŠA₃ GEŠTU.MIN-šu₂ MU₂-ah GAZI#{sar#} ki-ma ŠE.SA.A ta-qal₃-lu +8. [ina GI.SAG.KUD ana Š]A₃ GEŠTU.MIN-šu₂ MU₂-a[h x x (x)] {giš}MI.PAR₃ tur-ar₂ SUD₂ ana ŠA₃# GEŠTU#.MIN-šu₂ MU₂-ah tu-ru-ʾ-a +9. [x-a]s-si lu bu x [x] x tu#-pa-ṣa A-šu₂ ana ŠA₃ GEŠTU.MIN-šu₂ BI.IZ# kam₂#-ka-ma ša₂ kin₃-ṣi ANŠE +10. [x x] ša₂ kal/lap-bi 1-niš HI.HI [ana ŠA₃ GEŠTU.M]IN-šu₂# GAR-an-ma NAGA.SI KUG.GAN NITA₃# u MUNUS {sig₂}AKA₃ NIGIN +11. [ana ŠA₃ GEŠT]U.MIN-šu₂ GAR-an SU[M.SIKI]L.SAR# tu-ha-sa ana ŠA₃ GEŠTU#.MIN-šu tu-na-tak +12. [DIŠ NA GE]ŠTU.MIN-šu₂ MUD₂.BABBAR i-ṣar-ru-u[r A {giš}NU.U]R₂.MA ana ŠA₃ GEŠTU.MIN-šu₂ BI.IZ U₂#.BABBAR SUD₂ +13. [ina G]I.SAG.KUD ŠA₃ GEŠTU.MIN-šu₂ MU₂-a[h I₃ {g]iš}EREN I₃ {šim}M[UG? GAM]UN{sar} SUD₂ +14. [ina I₃.NU]N HI.HI {sig₂}AKA₃ NIGIN-mi ana Š[A₃ GEŠTU.MIN-šu₂] GAR : GAMUN.G[I₆ {ši]m}ŠEŠ I₃.KU₆ +15. [U₂.KUR.R]A 1-niš HI.HI ana ŠA₃ GEŠTU.MIN-šu₂ GAR-an ZI₂ [ŠAH ina] ZI₃.KUM HI.HI [{sig₂}AKA₃ NIG]IN-mi ana ŠA₃ GEŠTU.MIN-šu₂ GAR-an# +16. [ŠIKA? {giš}N]U.UR₂.MA HAD₂.A SUD₂ ana ŠA₃ GEŠTU.MIN-šu₂ MU₂-a[h x (x) {giš}ER]EN {šim}[x (x) BIL].ZA.ZA tur-ar₂ SUD₂ +17. [ana ŠA₃ GE]ŠTU.MIN-šu₂ MU₂ I₃ {giš}ŠUR.MIN₃ {sig₂}AKA₃ SU[D ana? ŠA₃? GEŠTU?.MIN?-šu₂? GAR? U₂.K]UR.RA L[A ... SUD₂ ana Š]A₃ GEŠTU.MIN-šu₂ GAR-an +18. [KAŠ] ša {lu₂}KURUN U₂.BABBAR ta-bi-lam ana Š[A₃ GEŠTU.MIN-šu₂ GAR-an IM.S]AHAR.NA₄.[KUR.RA SUD₂ ana ŠA₃ G]EŠTU.MIN-šu₂ MU₂-ah +19. [PA {giš}b]i-ni PA {giš}U₃.SUH₅# ina# N[E SAR? ...] x [... I₃] KUR.GI{mušen} +20. [...] x GI₃#? x [... ZI₂ B]IL.ZA.ZA +21. [... GEŠT]U.MIN#-šu₂ GAR-an +22. [... {giš}NU.U]R₂.MA +23. [...] GAR-an +24. [...] x HAR +25. [...] SAR +31'. x [...] +32'. x [...] +33'. kam₂-[...] +34'. u₂ [...] +35'. DIŠ GEŠTU.MIN x [...] x [...] x {šim}GU[R₂.GUR₂ ...] +36'. A {giš}N[U.UR₂.M]A x [x] x ar ina NE {giš}ŠINIG# ta#-sa#-r[aq-ma TI] +37'. DIŠ KUG.GAN# SUD₂ [an]a ŠA₃ GEŠTU.MIN-šu₂ ta-sa-[raq-ma TI] +38'. ana KIMIN# GAZI#{sar#} GIM# ŠE#.SA#.A# ta#-qal-lu# SUD₂ ina ŠA₃ GEŠTU.MIN-šu₂ ta-s[a-raq-ma TI] +39'. DIŠ# NA# MUD₂#.BABBAR# ina# ŠA₃# GEŠTU#.MIN#-šu₂# DU#-ak# A# {giš#}NU.UR₂.MA I₃+GIŠ BARA₂.GA I₃ {giš} EREN# H[I.HI ...] +40'. A {šim}BULUH {šim}LI Z[I₂ B]IL.ZA.ZA SIG₇ ana ŠA₃ GEŠTU.MIN-šu₂ BI.IZ ŠE GI₆ [...] +41'. MUD₂ NIM 1-niš HI.HI ana ŠA₃ GE[ŠTU.MIN-šu₂ BI.IZ (TI?)] +42'. DIŠ NA ina ŠA₃ GEŠTU-šu₂ lu A.MEŠ lu MUD₂ lu MUD₂.BABBAR DU-ak ŠA₃ GEŠTU.MIN-šu₂ ta-kap-p[ar₂ ...] +43'. ina GI#.SAG#.KUD DUB ŠA₃ GEŠTU.MIN-šu₂ LUH#-si# GUR#-ma# A.GEŠTIN.NA BIL.LA₂ ana ŠA₃ GE[ŠTU.MIN-šu₂ BI.IZ ...] +44'. x x SUD₂ ina LAL₃ HI.HI ana ŠA₃ GEŠTU.MIN-šu₂ DUB {sig₂}AKA₃# NIGIN LAL₃ KUR U₂.BA[BBAR ...] x x [...] +45'. ana KIMIN NUMUN {u₂}NU.LUH.HA {sig₂}AK[A₃ NIGIN-mi ana Š]A₃ GEŠTU.MIN-šu₂ GAR-an +46'. ana KIMIN NUMUN {šim}GUR₂.GUR₂ SUD₂ {si[g₂}AKA₃ NIGIN-mi a]na ŠA₃ GEŠTU.MIN-šu₂ GAR-an +47'. ana KIMIN GAZI{sar} qa-lu-te SU[D₂ {sig₂}AKA₃ NIGIN-mi a]na ŠA₃ GEŠTU.MIN-šu₂ GAR-an +48'. DIŠ NA GEŠTU ZAG-šu₂ ina KUM₂ x x [... NA BI aš]-rat {d}UTU : {d}30 KIN-ma +49'. DUG₄.GA u GIŠ.TUK GAR [... {mun}em]e-sal-li₃ ina I₃+GIŠ ŠUR.MIN₃ +50'. I₃#.GIŠ# {šim#}GIG# u# x [... I₃.BUR?] el-lam SAG.DU-šu₂ ŠUB-di +51'. [... UD.7.K]AM₂ GUR.GUR-šum-ma TI +52'. [DIŠ NA GEŠTU GUB₃-šu₂ ina KUM₂ ... M]IN? NA BI aš-rat {d}nin-urta KIN-ma +53'. [DUG₄.GA u GIŠ.TUK GAR ...] {mun#}eme#-sal#-li₃# I₃#+GIŠ# ... I₃#+GIŠ# {šim#}GIG +54'. [SUD₂ {sig₂}AKA₃ NIGIN-mi ana ŠA₃ GEŠTU.MIN-šu₂ GAR-an I₃.BU]R el-lam an[a SAG.DU-šu₂ ŠU]B-di# +55'. [... {ši]m}LI [...] x +56'. [... UD.7.KAM₂ GU]R.GUR#-šum#-ma# TI +57'. [DIŠ NA GEŠTU ... š]u₂ NA# BI# aš-rat {d}UTU KIN-ma +58'. [DUG₄.GA u GIŠ.TUK GAR ... ina I₃#+GIŠ# {šim}L]I SUD₂ {sig₂}AKA₃ NIGIN-mi ana ŠA₃ GEŠTU.MIN-šu₂ GAR-an +59'. [I₃.BUR el-lam ana SAG.DU-šu₂ ŠUB-di sah-le₂-e] ina NINDA ZIZ₂.AM₃ GU₇ MIN +60'. [... UD.7.KA]M₂ GUR.GUR-šu₂-ma TI +61'. [DIŠ ... NA BI aš-rat {d}... KI]N-ma 7 ITI ŠAG₅.GA IGI-mar +62'. [... SUD₂ {sig₂}AKA₃ NIGIN-mi ana ŠA₃ GEŠTU.MI]N-šu₂ GAR I₃.BUR el-lam ana SAG.DU-šu₂ ŠUB-di +63'. [...] UD.7.KAM₂ GUR.GUR-šum-ma TI-uṭ +64'. [DIŠ ... G]IG UD.DA GIG NA BI ZI.GA +65'. [...] x SIG₅ IGI-mar ana TI-šu₂ +66'. [...] I₃#+GIŠ ŠUR.MIN₃ ana SAG.DU-šu₂ ŠUB-di +67'. [... UD.7.KA]M₂ GUR.GUR-šum-ma TI#-u[ṭ] +68'. [DIŠ NA GEŠTU.MIN-šu IR ana qe]r-bi#-n[u ip-hur-ma ...] x x [...] +69'. [... U]D.9#.KAM₂ ESIR? šu₂#-šu[m ...] +70'. [...] x I₃#.GIŠ# {šim#}GIG# {sig₂}AK[A₃ NIGIN-mi ana ŠA₃ GEŠTU.MIN-šu₂ GAR-an I₃ ...] +71'. [ana SAG.DU-šu ŠU]B-di# bu#-uh₂#-ra# x G[U₇ MIN ... KAŠ NAG MIN UD.7.KAM₂ GUR.GUR-šum-ma TI] +72'. [DIŠ NA GEŠTU ZAG-š]u₂ IR# ana# qer#-bi#-nu# ip#-hur#-m[a] x x x x x x x NE GAL₂-šu₂ NA BI +73'. [aš-rat {d}x KI]N-ma# SIG₅# IGI#-mar# ana TI-šu₂ GADA# ta#-ṣap#-pir I₃+GIŠ# ŠUR.MIN₃ I₃+GIŠ EREN SUD ana ŠA₃ GEŠTU.MIN-šu₂ GAR-an +74'. [...] ana# SAG#.DU#-šu₂# ŠUB# an#-nu#-u?# x?# GU₇# MIN# {u₂#}HAR#.HAR# ina KAŠ NAG MIN UD.7.KAM₂ GUR#.GUR-šum-ma TI-uṭ +75'. [DIŠ NA GEŠTU] GUB₃#-šu₂# IR# ana# qer#-bi#-nu# ip#-hur#-ma# MUD₂#.BABBAR# ŠUB-ni NA.BI aš-rat {d}EŠ₄.DAR KIN-ma SIG₅ IGI-mar# +76'. [...] x x x ša?#-šu₂?# hal-qam IGI#-mar# ana# TI#-šu₂# I₃#.GIŠ# {giš#}EREN# I₃.GIŠ I₃.GIŠ {giš}ŠUR.MIN₃ I₃.GIŠ {šim}BA[L] +77'. [I₃+GIŠ GI D]UG₃.GA# I₃+GIŠ {šim}GIG# {sig₂#}HE₂#.ME#.DA# SUD ana# ŠA₃# GEŠTU#-šu₂ GAR I₃+GIŠ {šim}GIG ana S[AG.DU-šu₂] +78'. [ŠUB] bu#-uh₂#-ra GU₇# MIN KAŠ NAG# MIN UD#.7.KAM₂ GU[R.GUR-šu]m-ma TI +79'. [DIŠ N]A? GEŠTU?#-šu₂# GU₃#.GU₃-si IM ha-sat lu?# MUD₂.BABBAR DU₃-ni aš-rat {d}[n]in-urta KIN-ma# +1. [...] +2. A {giš}NU.UR₂.MA SIG₇#.SIG₇# RA-su I₃+GIŠ SUD x [...] x SUD₂# ana# SAG.KI.MEŠ-šu₂ ŠUB DUG₃ [IGI-mar] +3. ana KIMIN MUN SUD₂ {sig₂}AKA₃ NIGIN I₃+GIŠ ŠUR.MIN₃ SUD ana ŠA₃ GEŠTU.MIN-šu₂ GAR-an I₃+GIŠ ŠUR.MIN₃ ana SAG.K[I.MEŠ-šu₂ ŠUB] +4. bah-ra GU₇ u NAG UD.3.KAM₂ an-nam DU₃-uš-ma DUG₃ [IGI-mar] +5. ana KIMIN {šim}LI SUD₂ {sig₂}AKA₃ NIGIN ana ŠA₃ GEŠTU.MIN-šu₂ GAR-an I₃ ILLU {šim}BULUH ana SA[G.KI.MEŠ-šu₂ ŠUB] +6. sah#-le₂#-e KI NINDA.ZIZ₂.AM₃ GU₇.MEŠ 3 u₄-mi an-nam DU₃.DU₃-ma [DUG₃ IGI-mar] +7. [ana KIMIN] I₃# {giš}EREN.NA SIG₂.GA.RIG₂.AK.A SUD ana# Š[A₃ GEŠTU.MIN-šu₂ GAR-an (...)] +8. [... an]a SAG.KI.MEŠ-šu₂ ŠUB.ŠUB-ma x [...] +9. [ana KIMIN I₃ {gi]š}EREN I₃+GIŠ ŠUR.MIN₃ SIG₂.GA.RIG₂.AK.A# SU[D ana ŠA₃ GEŠTU.MIN-šu₂ GAR-an (...)] +10. [ana SAG.K]I.MEŠ-šu₂ ŠUB.MEŠ {u₂}HAR.HAR G[U₇ u NAG UD.3.KAM₂ an-nam DU₃-uš-ma DUG₃ IGI-mar] +11. [DIŠ NA GEŠ]TU ZAG-šu₂ DUGUD ŠUM.ŠIR.A[Š{sar} tu-pa-ṣa ana ŠA₃ GEŠTU-šu₂ GAR-an] +12. [PA {giš} Š]INIG SIG₇-su SUD₂ ina ZI₃.K[UM₃ HI.HI ana ŠA₃ GEŠTU-šu₂ GAR-an] +13. [{giš}E]REN {šim}LI GAMUN.GI₆ SU[M{sar} SUD₂ ina I₃.NUN HI.HI {sig₂}AKA₃ SUD] +14. [an]a ŠA₃ GEŠTU-šu₂ GAR-an I₃.GI[Š ŠUR.MIN₃ {sig₂}AKA₃ SUD ana ŠA₃ GEŠTU-šu₂ GAR-an] +15. {šim#}HAB I₃ ŠAH PA {giš}MAŠ.HUŠ SIG₂ {mu[nus}AŠ₂.GAR₃ GIŠ₃ NU.ZU ta-sak₃ {sig₂}AKA₃ NIGIN-mi ana ŠA₃ GEŠTU-šu₂ GAR-an] +16. I₃+GIŠ dup-ra-na {si[g₂}AKA₃ SUD ana ŠA₃ GEŠTU-šu₂ GAR-an] +17. MUD₂ {d}NIN.KILIM.EDEN.NA# K[I I₃ {giš}EREN I₃ {giš}ŠUR.MIN₃ HI.HI ana ŠA₃ GEŠTU-šu₂ GAR-an] +18. A {giš}NU.UR₂.MA AN.ZAH.GI₆ t[u-daq-qaq ... ana ŠA₃ GEŠTU-šu₂ GAR-an] +19. BURU₅.HABRUD.DA NITA SAG.DU-s[u?? KUD-is MUD₂.MEŠ KUM₂ ana ŠA₃ GEŠTU-šu₂ tu-na-tak] +20. DIŠ NA GEŠTU GUB₃-šu₂ DUGUD {šim}ŠEŠ {( {šim}GIG )} SUD₂ [...] +21. LAL₃#.KUR# ina I₃.UDU UR.M[AH ...] +22. EGIR-šu₂ DILIM₂ A.BAR ina#? I₃#+GIŠ# x [...] +23. I₃+GIŠ EREN ŠE.MU[Š₅ ...] x x [...] +24. si-ik-ti {giš}šu-šu[m ...] U₂#.BABBAR x [...] +25. ha-si-sa-šu₂ DAB-at Z[I₃ ...] x GEŠTU-šu₂ aš gir₂ [...] x x +26. ZI₃ bu-ṭu-tu₂ LAL [...] x [... ana ŠA₃ GEŠTU-š]u₂ ŠUB +27. I₃+GIŠ ina KA-ka ana ŠA₃ GEŠ[TU-šu₂ ...] sar tum x [... DU]B-ak +28. kam₂-ma ša AŠGAB [...] U₂.BABBAR x x [ana ŠA₃ GEŠTU-šu₂] MU₂-ah +29. DIŠ NA GEŠTU.MIN-šu₂ DUGUD 1 GIN₂ A {g[iš}N]U.UR₂.MA 1 GI[N₂ A {šim}GIG ina {sig₂}AKA₃ SUD ana Š]A₃ GEŠTU-šu₂ GAR +30. 3 u₄-me an-na-a DU₃.DU₃-uš [ina] UD.4.KAM₂ : 2?-me? Š[A₃? GEŠTU.MIN]-šu₂ ta-kap-par₂ +31. IM.SAHAR.NA₄.KUR.RA SUD₂ i[na {gi}SAG.KUD ana ŠA₃ G]EŠTU.MIN-šu₂ MU₂-ah +32. {giš}šu-ru-uš {giš}NAM.TAR NI[TA₂ ...] x x [...] x-šu₂ ŠU.TI +33. SIG₇-su SUD₂ A-šu₂ x [... neš-m]u-šu₂ BAD-te +34. {šim}HAB I₃ ŠAH KA.A.A[B.BA ... {munus}AŠ₂.G]AR₃ GIŠ₃ NU.ZU +35. tur-ar₂ SUD₂ [... ana Š]A₃ GEŠTU#.MIN#-šu₂ ŠUB +36. SUM.SIKIL PA {giš}PEŠ₃ [... k]i-ma an-nam i-te-ep#-šu +37. ZAG.HI.LI NIN[DA ZIZ₂.AN.NA ...] ina KAŠ NAG-ma +38. {tug₂}BAR.SI x [...] {tug₂}DUL-šu₂ +39. x DUB# [... UD].3.KAM₂ SAR.SAR-ma TI +40. [... ana] ŠA₃ GEŠTU.MIN-šu₂ ŠUB-di +41. [... an]a ŠA₃ GEŠTU.MIN-šu₂ ŠUB-di +42. [... ana] ŠA₃ GEŠTU.MIN-šu₂ ŠUB-di +43. [... HI.H]I ana ŠA₃ GEŠTU.MIN-šu₂ tu-na-tak +44. [...] x ana ŠA₃ GEŠTU.MIN-šu₂ GAR-an +45. [... ana ŠA₃] GEŠTU.MIN-šu₂ tu-na-tak +46. [... a]na ŠA₃ GEŠTU.MIN-šu₂ ŠUB +47. [...] x x +1. DIŠ NA ZU₂.MEŠ-šu₂ GIG MUŠ.DIM₂.GURUN#.N[A ša₂ EDIN.NA U₅.MEŠ ...] +2. BABBAR ša₂ ŠA₃-šu₂ {sig₂}AKA₃ NIGIN-mi I₃ x [...] +3. SUHUŠ {giš}NAM.TAR NITA₂ SUHUŠ {u₂}KUR#.R[A ...] +4. U₂.BABBAR ILLU {šim}BULUH A.GEŠTIN.N[A ...] +5. u₂-pu-un-tu₂ ina UGU ZU₂-šu₂ G[AR? ...] +5a. x [...] +6. IM.SAHAR.NA₄.KUR.RA {gi[š}x] x [...] +7. {šim#}BULUH ZU₂.L[UM.MA ...] +8. PA {u₂}SIKIL# x [...] +9. u₂-hi-n[u? ...] +10. IM.S[AHAR.NA₄.KUR.RA ...] +11. x [...] +12. x [...] +13. [...] +14. x [...] +15. [...] +16. [...] +17. [...] +18. [...] +19. [...] +20. [...] +21. [...] +22. [x] x-š[u₂? ...] +23. [š]u-ru#-uš# {giš}x [...] +24. [x] KUM₂# ik-ka[ṣ₃-ṣi ...] +25. ana KIMIN tu-maš-[šad/ša₂-ʾ ...] +26. ana KIMIN ZI₃ SAHAR MUN[U₆ ...] +27. DUB-raq [...] +28. DIŠ NA ZU₂-šu₂ G[U₇ ...] +29. ana KIMIN BIL.ZA.ZA S[IG₇ ZI₂-su? ...] +30. ana KIMIN BIL.ZA.Z[A SIG₇ ZI₂-su? ...] +31. ana KIMIN {ši[m}x ...] +32. 2 SILA₃# x [...] +33. x [...] +40'. [... GAR-a]n +41'. [... GA]R-an +42'. [... GA]R-an +43'. [...] x ina-eš +44'. [... DUB-r]aq +45'. [... T]IN +46'. [...] x ina-ah +47'. [... ina-a]h +48'. [... T]I +49'. [... T]I? +50'. [... T]I? +51'. [... T]I? +52'. [...] LA +53'. [... GA]BA +54'. [... GA]R-an +55'. [... DUB-r]aq +56'. [... GA]R-an +57'. [... DUB-r]aq +58'. [... T]I +59'. [...] x +63'. x [...] +64'. DIŠ NA ZU₂#-š[u₂ ...] +65'. NIGIN I₃.GIŠ SU[D ...] +66'. ana KIMIN ZI₃ tur#-a[r₂? ...] +67'. ana KIMIN MA[Š₂? ...] +68'. ana# KIMIN# x [...] +69'. ina#? I₃#? [...] +70'. ana# K[IMIN# ...] +71'. ana# KIMIN# [...] +72'. ina ŠU-šu₂ x [...] +39'. x x [...] +40'. ana KIMIN {sum}S[AR ...] +41'. i-di-k[a ... i]š-tu# na# a[h? ...] +42'. ba-lit-ta₅ I₃# [...] x {sig₂}AKA₃ šu x [...] +43'. ana KIMIN MUŠ.DI[M₂.GURUN.NA ša₂ EDI]N? I₃.UDU-šu₂ [...] +44'. {na₄}KA.GI.N[A ... in]a PAD-šu₂ x [...] +45'. ana KIMIN tam-šil GAZ si x [...] x-di-im a-šar {na₄}A[D.BAR? ...] +46'. pu-ṣa bur-ru-mat ba-li[t#?-ti? ana UG]U ZU₂#-šu₂ GAR-an [...] +47'. GIM A ša ana UGU ZU₂#-šu₂# [ŠUB x] x ta#-tab#-bal#-[m]a? tam#-ši#-i# EN# TI# NU# MAR#-šu₂ TI# +48'. ana KIMIN šu-ru-uš {giš}NAM#.TAR# NI[TA₂] x na# ad# da# x A# ša₂# ana UGU ZU₂-šu₂ GIG Š[UB] +49'. ana KIMIN hu-um-bi-bi-tu₂ tu-pa-ṣ[a {si]g₂}AKA₃# NIGIN# ina# I₃# SUD ana ŠA₃ GEŠTU-šu₂ ša₂ ZU₂-šu₂ GIG ŠU[B] +50'. ana KIMIN {u₂}GAMUN.GE₆ t[a-sa]k₃ ana UGU ZU₂-šu₂ GAR-a[n] +51'. ana KIMIN {u₂}KUR.KUR t[a-sa]k₃ ana UGU ZU₂-šu₂ ŠE[Š₂] +52'. EN₂# {d#}a#-nu#-ma# {d#}a#-nu {d}a-nu pu-hur# AN#-e# {d}a-nu pu#-hur# KI-ti KI-tu₄ ib-ta-ni tul#-t[a₅] +53'. KI-tu₄ ib-ta-n[i b]u-ʾ-ša₂-nu ša₂ bu-ʾ#-ša₂#-ni KALAG-an DAB-su GIM UR.MAH nap-ša₂-ta₅ i#-ṣ[a?-bat?] +54'. ki-ma UR.BAR.RA i#-ṣa#-bat lu-ʾ-a +55'. iṣ-bat ap-pu nu-ru-ub ap-p[i? UZ]U MUR ina bi-rit ZU₂.MEŠ na-da-at {giš}GU.ZA-šu₂ +56'. sak-la im-ti-ši a-l[ak?-ta-šu₂ up-p]u-tu₂ im-ti-ši re-bit ERI-šu₂ +57'. me-tu₄ la i-sa-ha-ra# i[š?-tu KI-ti₃ {d}ku₃-bu la e-n]i-qu# UBUR# ša₂ AMA-šu₂ +58'. bu-ša-a-nu a-a# [GUR-ma a-na ṣib-t]i-šu₂ +59'. E₂.GAL x x [...] +60'. ki-ma mu-x [...] +61'. EN₂ u[l ...] +62'. EN₂# {d?#} [...] +1. [i-n]a? ma#-har {d}UTU A KUG.GA ŠUB.ŠUB EN₂ an-ni-ta 3-šu₂ [ŠID-nu ...] +2. e#-ma ŠID-u₂ LAGAB MUNU₆ ZU₂-šu₂ DIRI-ma ana UGU gul-gu[l-li ...] +3. gul-gul-lu GIG ZU₂.MU tab-li 7-šu₂ DUG₃.G[A-ma? TI?] +4. EN₂ ši it-ta-ak-ru-ma {giš}IG UZU {giš}SAG.KUL GIR₃.PAD.DU iš-tu a-a-nu# x [x x (x)] +5. GIR₃.PAD.DU UGU ZU₂ it-ta-bak KUM₂ : UGU SAG.DU it-ta-bak mu[r-ṣa] +6. man#-na lu-uš-pur ana IBILA ša₂ KUR.RA {d}AMAR.UTU li-lap-pi-tu₄ tu[l-ta₅] +7. tul#-tu₄ ki-ma šik-ke-e lit-ta-ṣi ṣer-ra-niš TU₆.E[N₂] +8. DU₃.DU₃.BI la-aš₂-ha ša₂ IM KI.GAR DU₃ ana ŠID.MEŠ# +9. ZU₂#.MEŠ-šu₂ aš₂-na-an tu-rat#-ta KI ZU₂-šu₂# +10. [G]IG-ti ZIZ₂.AN.NA GI₆ ti-ret-ti I₃.GIŠ ZU₂-šu₂ DIRI ana ŠA₃ la-aš₂-hi MU₂-ah EN₂ 3-šu₂ +11. [ŠID-n]u ana HABRUD ša₂ {d}UTU.ŠU₂.A GAR-an ina IM IN.BUBBU UŠ₂-hi# +12. [ina {n]a₄}KIŠIB {na₄}ŠUBA u {na₄}KA.GI.NA KA₂-šu₂ ta-bar-ram# +13. [EN₂ IBIL]A? E₂.MAH IBILA E₂.MAH IBILA GAL-u ša₂ {d}50 at-ta-ma [TA?] +14. [E₂?.KUR? t]u?-ri#-dam-ma ina MURUB₄ AN#-e KI {mul#}MAR.GID₂.DA GUB-az-[ma?] +15. [DUG₄?.GA? ka-li i]k?-kal#-an-ni li-is-ku-ta at-ta-ma [x?] +16. [ina ...] x-ma {uzu}UR₅.UŠ₂ {( {uzu}UR₅ )} NU NAG/GU₇ TU₆.EN₂ +17. [DU₃.DU₃.BI la?-aš₂?-ha? D]U₃-uš# ana ŠID.MEŠ ZU₂.MEŠ-šu₂ ZIZ₂.AN.NA tu-rat-t[a KI] +18. [ZU₂-šu₂ GIG-ti aš₂-na-a]n? GI₆# te-ret-ti LAL₃# u# I₃# BARA₂#.GA# ZU₂-šu₂ DIRI [ana ŠA₃] +19. [la-aš-hi MU₂-ah EN₂ 3-šu₂ ŠID ana HABR]UD {d#}UTU.ŠU₂.A GAR-a[n ...] +20. [...] x x x [...] +34'. ru [...] +35'. tak-k[u-...] +36'. mi-n[a ...] +37'. MAN TAG x [...] +38'. TA NUMUN x [...] +39'. a-na ŠA₃ Z[U₂-šu₂ ...] +40'. lup-pu-ut Z[U₂-šu₂ ...] +41'. pa-šu₂ an-na-x [...] +42'. na-ah-pi-i {( : AN ŠU₂/BAR )} GIN₇ [{kuš}A.EDIN ...] +43'. ka-inim-ma ZU₂ GIG# [...] +44'. EN₂ ZU₂ GIG ZU₂ GI[G ...] +45'. [GI]G ZU₂ x [...] +49'. x x [...] +50'. ka-in[im-ma ...] +51'. ša₂ n[a ...] +52'. EN₂ x [x] x x [...] +53'. giš [x] x ha x [...] +54'. i [x i]š? hu k[al ...] +55'. i x iš la-aš₂-l[a? ...] +56'. k[a-inim-m]a ZU₂.GIG.GA#.K[AM₂ ...] +57'. EN₂ 1#?-šu₂ ana UGU-šu₂ ŠID-n[u ...] +58'. EN₂ {d#}UTU aš-šum ZU₂.MU ša₂ ik-ka[l-an-ni ...] +59'. ša₂ ki-is-pa#-at# la ak-si-pu-šu u₃ me#-e# [la aq-qu-šu₂ ...] +60'. ZU₂ sa-h[u x k]a-a-ša₂ am-hur-ka ak-t[a-la-šu₂ u ak-ta-ab-ba-x ...] +61'. GIM a-ša₂-šu₂ [ZU₂-šu₂ la GU₇-šu₂] a-a-ši Z[U₂ la ik-kal-an-ni TU₆.EN₂] +62'. ka-inim-ma Z[U₂.GIG.GA#.KAM₂? ...] +63'. ina še-rim 3#-[šu₂ ŠID-nu ...] +64'. EN₂ TA {d}A-nim i[b-nu-u AN-e ...] +65'. eri-du₁₀ ib-nu-u gi x [...] +66'. ki-ma {mul}ni-bu-u₂ x [...] +67'. ni-zi-iq [...] +68'. ka-inim-ma ZU₂ GIG.G[A.KAM ... ku-pa-tin-ni tu-kap-pat] +69'. e-ma ku-pa-tin-n[i EN₂ ŠID-nu ...] +70'. ana UGU ZU₂ GAR-ma x [... ina-eš] +71'. EN₂ {d}A-nu x [...] +72'. iš-tu {d}a-nim i[b-nu ...] +29'. [ul-tu {d}a-nu ib-nu-u an-e an-u₂ ib-nu-u KI-tu] +30'. [er-ṣe-tu ib-nu-u ID₂.MEŠ ib-na-a a-tap-pa-ti] +31'. [... a-tap-pa-t]i ib#-na#-a?# [ru-šum-ta] +32'. [ru-šum-ta ib-na-a tul-ta₅ il-lik tul-ta₅ ana IGI {d}UTU i-ba]k-ki ana IGI {d}E₂-a il#-la#-ka?# di#-ma#-ša₂# +33'. [mi-na ta-da-na ana a-ka-li-ya mi-na]-a# ta-da-na ana mun-zu-qi₂-ya +34'. [at-tan-na-ki {giš}PEŠ₃ ba-ši-il-ta ar-ma-na]-a# {giš}HAŠHUR +35'. [ana-ku am-mi-na an-na-a {giš}PEŠ₃ ba-ši-il-ta u ar-ma-n]a-a# {giš}HAŠHUR +36'. [šu-uq-qa-an-ni-ma in bi-rit ZU₂ u l]a-aš₂-hi šu-ši-ban-ni +37'. [ša₂ ši-in-ni-ma lu-un-zu-qa da-mi-šu₂ u ša₂ la-aš₂-hi-ma l]u-uk-su-sa ku-sa-si-šu₂ +38'. [ka-inim-ma ZU₂.GIG.GA.KAM₂ DU₃.DU₃.BI KAŠ DID]A LAGAB MUNU₆ +39'. [1-niš HI.H]I? E[N₂? 3-šu₂ ana UGU ŠID-nu ana U]GU ZU₂-šu₂ GAR-an +40'. EN₂# a#-ri#-ki# [x] ni-ba-ri-qi₂ +41'. {giš}IG UZU {giš}SAG.KUL GIR₃.PAD.D[U ana UZU] e#-ru-ba GIR₃.PAD.DU iš-ši +42'. iš-šu-uk UZU [ih-pi] GIR₃.PAD.DU +43'. a-na ZU₂.MEŠ it-ta-di LIL₂?#-ta# a[na SAG.DU it-ta-d]i KUM₂# +44'. man-nu lu-uš-pur a-na {d}asal#-lu₂#-hi# DUM[U reš-ti-i ša₂ {d}E₂-a] +45'. lu-še-bi-lam-ma šam-me TI.LA# EN₂ TI.LA la/na#?-a#-d[i? ...] +46'. TU₆ ul ya-at-tu EN₂# {d}40 [u {d}asal-lu₂-hi] +47'. ši-pat {d}da-mu u# {d#}nin#-kar#-ra#-ak?# +48'. {d}gu-la TI.LA-ma NIG₂#.BA#-ki li#-qi₂#-i# TU₆.EN₂ +49'. ka-inim-ma ZU₂.GIG.GA.KAM₂ DU₃#.DU₃#.BI NU SAR! +50'. DIŠ NA gi-mer# ZU₂.MEŠ-šu₂ i-na-aš₂ : DUB.1#.KAM₂ DIŠ NA ZU₂.MEŠ-šu₂ GIG +51'. E₂.GAL {diš}AN.ŠAR₂-DU₃.A 20 ŠU₂# 20# KUR AN.ŠAR₂{ki} ša {d}AG# [u] {d#}taš-me-tu₄ GEŠTU.MIN ra-pa-aš₂-tu₄ iš-ru-ku-uš +52'. e-hu-uz-zu IGI.MIN# na-mir-tu₄ ni#-siq tup-šar-ru-ti +53'. ša ina LUGAL.MEŠ-ni a-lik mah-ri-ya mam₂-ma šip-ru# šu#-a-tu la e-hu-uz-zu +54'. bul-ṭi TA muh-hi EN UMBIN liq-ti BAR.MEŠ ta#-hi-zu nak-la +55'. a-zu-gal-lu#-ut {d}nin-urta u {d}gu-la ma-la# ba-aš₂-mu +56'. ina tup-pa-a-ni aš₂-ṭur as-niq IGI.KAR₂-ma +57'. a-na ta-mar-ti ši-ta-as#-si-ya q[e₂-re]b E₂.GAL-ya u₂-kin +1'. [x x x x] x x [...] +2'. {u₂#}IN₆#.UŠ₂# {u₂}SIKIL SIG₇-su-nu# tu#-has#-sa₃# ina x [...] +3'. 5 GIN₂ ILLU {šim}BULUH 5 GIN₂ DUH.LAL₃ ana {dug}B[UR?.ZI ...] +4'. a-šar! tar-ku-su DU₈-ar₂ TA DU₈-ru [...] +5'. DIŠ NA I₃ la-ta-ki ŠEŠ₂-ma SAG.DU-su gu-[raš?-ta₅? DIRI? ...] +6'. LUH tu-bal EGIR-šu₂ {u₂}kul₂-ba-na HAD₂.A GAZ [...] +7'. DIŠ KIMIN {u₂}IGI-lim SUD₂ ina [...] +8'. DIŠ KIMIN {u₂}LAG.GA₂ SUD₂ ina x [...] +9'. DIŠ KIMIN {u₂}TAL₂.TAL₂# [x] x [...] +10'. DIŠ NA SAG.DU-[su ...] +11'. UKUŠ₂#.HAB# [...] + +1'. [...] x x GE₆# NIM# SUD₂# x [...] +2'. {u₂#}GA#.RAŠ#{sar#} {kuš#}E.SIR SUMUN DIŠ-niš HAD₂.A tur-ar₂# [...] +3'. AN.NA A.BAR₂ AN.ZAH DIŠ-niš HI.HI 1-šu₂ 2-šu₂ 3#-[šu₂ ...] +4'. DIŠ KIMIN IM.SAHAR.NA₄.KUR.RA {u₂}LAG.GA₂ SUD₂ ina I₃ {giš}EREN HI.HI x [...] +5'. DIŠ NA ina TUR-šu₂ SAG.DU-su še-bi-te DIRI ana SIG₂ BABBAR# GE₆# SAG#.DU BURU₅#.HABRUD#.DA[{mušen} ...] +6'. IGIRA₂{mušen} : laq-laq-qa lu-u x [x x x] x [...] +7'. ina IZI ŠEG₆-šal gul-gul-la-šu₂-nu TI-qe₂ ina I₃# [...] +8'. EN₂ %sux sag-ki en-na %akk 7-šu₂ x x an# x x x x [...] +9'. EN₂ %sux sag-ki en-na %akk ŠID-nu [x x] x [...] +10'. DIŠ KIMIN SI DARA₃.MAŠ TI-qe₂ KI GIR₃.PAD#.DU# x x [...] +11'. ina IZI u₂-šar₂-rap KI I₃ x x [...] +12'. 3 UD-mi SAG.DU-su LAL₂-ma# [...] +13'. DIŠ KIMIN {u₂}MA₂.ERIŠ₄.MA₂-le-e SAG.DU ARGAB?#{mu[šen?} ...] +14'. SAG.DU BURU₅{mušen} GE₆ SAG.DU BURU₅.HABRUD.DA{mušen} SAG.DU [...] +15'. DIŠ-niš tur-ar₂ SUD₂ ina I₃.GIŠ DU₁₀.GA HI.HI SAG.DU-su SAR#-ab#-ma# x [...] +16'. DIŠ KIMIN a-a-ar₂ DINGIR DAB-bat ŠA₃-šu₂ BAD-ti TUN₂-šu₂ x šu₂ u x x [...] +17'. 2-na ŠA₃-šu₂ tu-tar te-te-kip ina KI ṣar#-hi x x x 7 UD-mi x [...] +18'. ša₂ ŠA₃-šu₂ TI-qe₂ HAD₂.A tur-ar₂# SUD₂ ina I₃.GIŠ DU₁₀.GA [...] +19'. SAG.DU-su SAR-ab 7 UD-me EŠ.MEŠ LAL₂.ME[Š ...] +20'. SIG₂# BABBAR GE₆ EN LAL₂-uš EN₂ ki-a-am ŠID-nu# [...] +1. DIŠ NA IGI-MEŠ-šu₂ LU₃.LU₃ LAL₃# BABBAR ina I₃#.[NUN 1-niš HE.HE ...] +2. e#-nu-ma IGI-MIN-šu₂ bu-ur-ṣa id-da-nag-ga-la ŠU.GI[DIM.MA ...] +3. ana# TI#-šu₂ {na₄}KA.GI.NA.DAB.BA {na₄}AN.NA {na₄}AN.Z[AH.GE₆ ...] +4. {na₄#}mu#-ṣa# {na₄}ZALAG₂ {na₄}ZA.GIN₃ {na₄}ŠUBA {na₄}BAL URUDU.NITA N[A₄ ...] +5. [NUMUN {giš}Š]INIG NUMUN {giš}MA.NU NUMUN aš₂-li NITA {na₄}as₂-ha[r ...] +6. [ta-š]a-pah ina I₃.UDU ELLAG₂ GU₄ GE₆ GIN₇ kam₂-ma ina UGU URUDU SUD₂-m[a ...] +7. [DIŠ KIMIN] NUMUN {giš}ŠINIG NUMUN {giš}MA.NU NUMUN aš₂-li# [NUMUN ...] +8. [NUMUN {šim}L]I GIN₇ qu-ta-ri IGI.MIN-šu₂ u SAG.KI [...] +9. [DIŠ NA ŠU.G]IDIM.MA DAB-su-ma i-na IGI IGI.MIN-šu₂ GIN₇ nu-ri x [...] +10. [lu-u GIN₇ (...)] x x# lu#-u GIN₇ UD₅ GAR.GAR-an NA BI Š[U?.GIDIM.MA DAB-su ...] +11. [... {ši]m}LI {šim}GUR₂.GUR₂ x [...] +12. [...] 1-niš SUD₂ x [...] +13. [...] ILLU# LI.[DUR ...] +14. [... {d}]ID₂ [...] +15. [...] x [...] +35'. [... M]AR? +36'. [... M]AR +37'. [... D]IRI +38'. [... M]AR +39'. [...] x +50'. [x (x)] x [...] +51'. ZU₂.LU[M].M[A ...] +52'. DIŠ KIMIN {giš}ŠINIG [...] +53'. EN₂ ki sa di x [...] +54'. a-da-pa-tu₄ in-x# [...] +55'. KA.INIM.MA IGI-MIN a-pa-ti IGI-MEŠ a#-[ša-ti ...] +56'. DU₃.DU₃.BI 7 ŠE ILLU LI#.[DUR ...] +57'. ina GE₆ ina UR₃ ana IGI MUL# x [...] x [...] +58'. ina še-ri₃ la-am {d#}UTU#.E₃# U₂#.HI.A an-nu#-[ti ...] +59'. x# x# ana ŠA₃ ŠUB-di IGI-MIN-šu₂ MAR EGI[R-šu₂ DILIM₂ A.BAR₂ ul DU₈-ar₂] +60'. IGI-MIN-šu₂ tu-šam-har ina A GAZI{sar} IGI-MIN-šu₂ tu-ha-pa[p ...] +61'. te-qi₂-it IGI-MIN ša ŠU.GIDIM.MA {na₄}mu-ṣa NA₄ [...] +62'. {na₄}AN.ZAH.BABBAR {na₄}AN.ZAH.GE₆ KU₃.GAN PA {giš}NAM.TAR NITA₂ P[A ...] +63'. PAP 11 NA₄.MEŠ u U₂.HI.A ŠEŠ ana A ŠUB-di ina UL tuš-bat [...] +64'. ana I₃+GIŠ ŠUB-di IGI-MIN-šu₂ ŠEŠ₂-aš ana KAŠ ŠUB-di-ma NAG# ina# G[U₂-šu₂ ina? KUŠ? GA]R-an-ma SILIM#-im +65'. an-na-nam ina ITI.1.KAM₂ UD.21.KAM₂ D[U₃-ma] i#-šal-lim# +66'. DIŠ KIMIN NA₄ SA₅ ki-ma bu-la-li IGI-MIN-šu₂ ŠEŠ₂-aš : DIŠ K[IMIN {na₄}m]u-ṣa-am KIMIN +67'. DIŠ KIMIN {na₄}kut-pa-a ina I₃.NUN SUD₂ KIMIN : DIŠ KIMIN {na₄}ZA.GIN₃ KUR.R[A ina] I₃#.NUN SUD₂ KIMIN +68'. DIŠ KIMIN {na₄}MUŠ.GIR₂ KIMIN : DIŠ KIMIN šim-bi-zi-da₄ ina G[A {munus}]U₂#.ZUG₂ SUD₂ IGI-MIN-šu₂ ŠEŠ₂-aš +69'. DIŠ KIMIN {na₄}ZU₂ GE₆ ina I₃ KUR.G[I SU]D₂ KIMIN +70'. {šim}GUR₂.GUR₂ mi-riq₂ U₂ a-ši-i {u₂}K[UR.RA GA]ZI{sar} I₃.UDU GI.MEŠ +71'. {na₄}KA.GI.NA.DAB.BA {na₄}mu-ṣa I₃.GIŠ MUŠEN#.HABRUD#? LIBIR.RA DUH.LAL₃ +72'. 11 U₂.HI.A ŠEŠ rib-ku ša ŠU.GIDIM#.MA# IGI-MIN-šu₂ MAR-MEŠ-ma TI +1'. [...] x ina# 9 U₄.K[AM? ...] +2'. UDU#.SISKUR# DU₃#-ma UZU-šu-nu [...] +3'. UGU ša GIR₃.PAD.DU LUGUD₂.DA UDU# x [...] +4'. GAMUN.GE₆ A {giš}NU.UR₂.MA {giš}x [...] +5'. 1-niš HE.HE ina LAL₃ I₃.NUN I₃.GIŠ EREN S[UD₂? ...] x [...] +6'. DIŠ NA IGI-MIN-šu₂ la ina-ṭa-la NA BI UD.DA TAB.BA# 1# GIN₂# U₅#.ARGAB#{mušen} +7'. 1/2 GIN₂ U₂.BABBAR IGI.4.GAL₂.LA {mun}eme-sal-li₃ ina LAL₃#.KUR u I₃.N[UN SUD₂ I]GI.MIN-šu₂ MAR +8'. DIŠ# NA# di-gi-il IGI.MIN-šu₂ ma-a-ṭi I₃.UDU MUŠ.GE₆# {u₂#}IN#.NU.UŠ Z[U₂.LUM.M]A? {giš}ŠINIG +9'. I₃#.UDU UR.MAH ILLU {u₂}ti-ia₂-tu UKUŠ₂#.LAGAB# {( {šim#}HAB# )} NAGA#.SI# [U₂] BABBAR {mun}eme-sal-li₃ {u₂#}GAMUN#.GE₆ +10'. [mal-m]a-liš ina SAHAR URUDU ana LAL₃ KUR.RA HE.HE SUD₂ MAR Z[A.NA te-p]u-uš {u₂}ESI NAGA.SI# IGI.MIN-šu₂ LUH-si +11'. [EGIR-šu₂ I]GI.MIN#-šu₂ MAR-ma UD?.x?.KAM₂? x [...] x ŠUB EN 7-šu₂ MAR# EGIR#-šu₂# DILIM₂# A#.BAR₂# ul# DU₈#-ar₂# +12'. [... {ši]m}LI NAGA.SI# NU.LUH.HA sah-le₂-e +13'. [... ina ...] SILA₁₁-aš LAL +14'. [...] x-ma# IGI-šu₂ +15'. [...] x x {mun#}eme#-sal#-li₃# +16'. [...] x SUD₂ +17'. [... ka-la UD-me X-šu₂ KE]ŠDA u₂-kal +18'. [... IG]I.MIN#-šu₂ MAR.MEŠ-ma TI +19'. [... ŠU] {d#}šul-pa-e₃-a {( {d#}IŠKUR# ra#-hi#-iṣ# )} +20'. [...] ŠU {d}15 +21'. [... i]na NE GAR-an +22'. [... SU]D₂? MAR.MEŠ-ma TI +23'. [...] x mi šum₄-ma la i-na-aṭ-ṭa-la ŠU {d}iš₈-tar₂ +24'. [... ina LA]L₃ u I₃.NUN SUD₂ IGI-MIN-šu₂ MAR-MEŠ-ma TI +25'. DIŠ NA ši-[li? IGI-MIN-šu₂ ...] x x x x x NU NA₂ UGU# mi-na-te-ši-na DUGUD +26'. I₃.UDU MUŠ#.GE₆ ina I₃.NUN LAL₃# KUR-e HE#.HE te-qi₂ +27'. DIŠ NA ši-li# IGI#-MIN-šu₂ šad-du-ma KI.NA₂# NU# IL₂# PA {giš}ŠE.NU₂.A PA {giš}PEŠ₃ +28'. PA {giš}MI.PAR₃# PA GI.ZU₂.LUM.MA ina A ina NININDU# UŠ₂#-ker ana ŠA₃ ŠUB.ŠUB-šu₂ +29'. A.GAR.GAR MAŠ.DA₃# ŠURUN# GU₄ 1-niš GAZ SIM KI ZI₃ ŠE.SA.A HE.HE ina A# GAZI#{sar} SILA₁₁-aš LAL {u₂}ak-tam ina KAŠ NAG-ma TI +30'. DIŠ NA# U₄# DU₃#.A.BI NU IGI.DU₈ GE₆ DU₃.A.BI IGI.DU₈# {d#}30#-lu-ur-ma-a +31'. DIŠ NA# U₄# DU₃.A.BI IGI.DU₈ GE₆ DU₃.A.BI NU IGI.DU₈# {d}30-lu#-ur#-ma-a +32'. DIŠ NA IGI#-MIN-šu₂ si-lu-ur-ma-a ma-ku-ut ga-bi-di ša ANŠE UZU la-ba-ni-šu₂ +33'. ina ŠU#.SAR# ta-šak-kak ina GU₂-šu₂ GAR-an A.GUB₂.BA.A GIN-an ina še-ri₃ {tug₂}ŠA₃.HA +34'. ana IGI# {d#}UTU LAL-aṣ NIG₂.NA {šim}LI GAR-an LU₂ šu₂-a-tu₂ ina ku-tal {tug₂}ŠA₃.HA ana IGI {d}UTU +35'. tuš-za#-as#-su MAŠ.MAŠ 7 NINDA IL₂-ši ša₂ IGI-MIN-šu₂ GIG 7 NINDA IL₂-ši-ma +36'. M[AŠ.MAŠ? a]na {lu₂}TU.RA mu-uh-ra nam-ra i-ni i-qab-bi +37'. [{lu₂}TU.R]A ana MAŠ.MAŠ mu-uh#-ra# bal-ṣa i-ni i-qab-bi +1. [DIŠ NA IGI.MIN-šu₂ si-lu-ur-ma-a m]a-ku-ut ga-bi-di ta-har-ra-aṣ +2. [... M]AŠ? {lu₂}TUR-MEŠ tu-pa-har-ma ki-a-am i-qab-bu-u +3. [...] i#-qab-bu-u I₃.NUN u I₃.GIŠ.SAG 1-niš HE.HE IGI-MIN-šu₂ MAR-MEŠ +4. [DU₃.DU₃.BI (...)] šu-a-tu ŠU.BI.GIN₇.NAM +5. [EN₂ ... še?-me-ma? mu]-uh₂-ra {d}E₂-a liš-ma-a {d}E₂-a lim-hu-ra +6. [... a-m]ur nam-ra i-ni a-mur bal-ṣa i-ni TU₆ EN₂ +7. [DU₃.DU₃.BI ...] 7#? ŠU.SI ha-še-e TI-ma EN₂ an-ni-tu₂ +8. [ŠID-nu ... ina] {giš}IG ina ŠU-šu₂ GAR-ma GU₇ +9. [...] x PA ma-ku-ut ga#-bi#-di# e#-ma# her-ṣi +10. [ta-har-ra-aṣ ...] NUNDUM#-šu₂ u₃# [...]-ma# ina#-eš# +11. [...] x GI mi-na-t[a? ...] x x [x] +12. [...] PA ŠE#.SA#?.A#? [...] +1. DILIM₂ A.BAR₂ GIN₇ NIG₂#.[SILA₁₁.GA₂?] GAR#-nu {šim}LI {šim}GUR₂.GUR₂ U₂# [...] +2. GAZI{sar} NAG[A.SI Z]A₃.HI#.LI U₂ a-ši-i PIŠ₁₀-{d}ID₂ UH₂-{d}ID₂ ES[IR ...] +3. I₃.UDU ELLAG₂ GU₄# 1#-niš# ta#-sak₃ ana ŠA₃ A.BAR₂ ŠUB-ma ŠU.SI [MAR?] +4. te-qi₂-tu ša-lim-tu ša ŠU UM.ME.A la-te-ek ba-r[i] +5. GAZI{sar#} ZA₃#.HI.LI {u₂}KUR.KUR {u₂}MAŠ.TAB.BA {šim}GUR₂.GUR₂ DUH.LAL₃ U₂.KUR.RA I₃.UDU {šim}GIG NUMUN {šim#}LI# +6. 9# U₂.HI.A rib-ku ša IGI-MIN +7. {u₂}KUR.RA sah-le₂-e GAZI{sar} {u₂}NU.LUH.HA {u₂}KUR.KUR {u₂}MAŠ.TAB.BA +8. kam-mu {šim}GUR₂.GUR₂ {u₂}HAR.HAR ina DE₃ ŠEG₆-šal ina I₃.GIŠ u DUH.LAL₃ BABBAR SUD₂ +9. 9 U₂.HI.A ša nap-šal-ti lu-ub-ki +10. {u₂}KUR.RA {u₂}KUR.KUR GAZI{sar} {u₂}MAŠ.TAB.BA {šim}SES NUMUN {šim}LI kam-mu ša₂ AŠGAB 7 U₂.HI.A +11. rib-ku ša IGI.MIN ina NE ta-qal-lu ina I₃.UDU GAB.LAL₃ u I₃.NUN SUD₂ IGI-MIN-šu₂ MAR +12. {na₄}AN.ZAH.GE₆ tuš-ku {na₄}as-har {na₄}mu-ṣa NAGA.SI {šim}GUR₂.GUR₂ U₂ BABBAR ZA₃.HI.LI +13. kam-mu PIŠ₁₀-{d}ID₂ I₃.UDU GU₄ A.GAR₅ DILIM₂ A.BAR₂ ŠU {lu₂#}A#.ZU# +14. AN.ZAH.GE₆ PIŠ₁₀-{d}ID₂ ku-up#-r[a ...] +15. {u₂}GAMUN.GE₆ GAZI{sar} Z[A₃.HI.LI ...] +16. I₃.UDU GU₄ I₃.UDU GIR₃.PAD.D[U ...] +17. it-qur-ti IR#? [...] +18. {šim#?}GUR₂#?.[GUR₂? ...] +1'. [DIŠ] x x x (x) [...] +2'. UD-ma DU₃-šu₂# [...] +3'. {u₂}ak-tam SUD₂ ina KAŠ ŠEG₆ x [...] +4'. BABBAR.HI{sar} ta-sak₃ LAL {giš}si-ha {giš}a[r-ga-nu ...] +5'. I₃.UDU ELLAG₂# SA₅ ina UD.DA ŠUB i#-n[a? DILIM₂ A.BAR₂ SUD₂ IGI-MIN-šu₂ MAR] +6'. DIŠ NA IGI-MIN-šu₂ GIG-ma u₃ DUL {šim}ŠE#.L[I? ... su-pa-la SIG₇-su] +7'. ina A.MEŠ LUH-si LAL-id GURUN {u₂}UKUŠ₂.LAGAB U₂#-[BABBAR SUD₂ ... IGI-MIN-šu₂ te-qi₂] +8'. DIŠ NA IGI-MIN-šu₂ GIG-ma UD-MEŠ ma-ʾ-du-ti NU BA[D ina KUM₂ SAG.DU-su] +9'. SAR-ab ina UD-me 3-šu₂ NIG₂.SILA₁₁.GA₂ tu-kaṣ₃-ṣa [ina I₃.NUN] +10'. DILIM₂ A.BAR₂ ta-sak₃ IGI-MIN-šu₂ [te?-qi₂?-ma? ina?-eš?] +11'. DIŠ NA IGI.MIN-šu₂ ta-bi-la₁₂ GIG SUM.SIKIL-la# u₂-haš-ša₂ ina KAŠ NAG I₃.GIŠ ana Š[A₃ IGI-MIN-šu₂ MAR-ru-ma? ...] +12'. ZI₃ NA₄ ZU₂#.LUM#.MA# tur#-ar₂# SUD₂# ina# A# GAZI#{sar#} ta#-la-aš tu-kap-pat l[a-a-am pa?-tan? u₂?-al?-lat?] +13'. BIL.ZA.ZA S[IG₇ ta-ṣa-lip] ZI₂-su# ina I₃#.[NUN HE.HE IGI-MIN-šu₂ te-qi₂] +14'. 5 SILA₄!(KISAL) ZI₃ [GU₂.GAL 6 SILA₄!(KISAL) ZI₃ GAZI{sar} 5 GI]N₂ ZA₃.HI.LI# in[a A G]AZI{sar} SI[LA₁₁-aš SAG.KI-šu₂ IGI-MIN-šu₂ LAL] +15'. E[N₂? ...] x x i-ru-p[u e-gu-ma] +16'. [... e-l]i? A?# [...] +17'. [...] +18'. [...] +19'. [...] +20'. [...] +21'. [DIŠ NA IGI-MIN-šu₂ MUD₂ DIRI-ma ur-ra u GE₆ la i-ṣal-lal-ma ... šum₄-ma Š]A₃? IGI?#-MIN?#-š[u₂? SA₅] +22'. [IGI-MIN-šu₂ DUL-ma GAZI{sar} tur-ar₂ ... ŠU]RUN UDU# ina GA {munus}U₂.ZU[G₂ SILA₁₁-aš LAL-id] +23'. [ina še-ri₃ DU₈-šu₂-ma {na₄}as₃-har ina I₃.NUN SUD₂ IGI.MIN-šu₂ MAR (...) SUHU]Š? U₂# ra#-pa#-di# ina GIR₂ ZA[BAR KUD-iṣ?] +24'. [DUR {sig₂}HE₂.MED u SI]G₂ BABBAR# NIGIN#-m[i? tar]a-kas₃# SAG.KI-MEŠ-šu₂ ki-lal₂-t[an? ...] +25'. [...] E₃-ma?# IGI-MIN-šu₂ t[e?-(eq)-qi₂] +26'. [DIŠ NA IGI.MIN-šu₂ MUD₂ šu-u]n-nu-ʾa NUMUN {giš}NIG₂.GAN₂#.GAN₂ LAL₃-KUR.RA SAHAR.KU₃.GI HE.H[E ...] +27'. [1 GIN₂ U₅.AR]GAB{mušen} SA₉ SILA₄!(KISAL) U₂-BABBAR# IGI.6.GAL₂.LA {mun}eme-sal-li₃# i[na? I₃.NUN SUD₂ IGI.MIN-šu₂ MAR] +28'. [U₂.BABBAR ta-b]i?-la₁₂ ana# ŠA₃# IGI#.MIN#-šu₂# MAR-ru ŠIM.BI.SIG₇.SIG₇ ina I₃#.[NUN ...] +29'. [ŠE₁₀ EME.ŠID] ina I₃#.UDU# [GI]R₃?.PAD#.DU# LUGUD₂#.DA SUD₂ la pa-tan [...] +30'. [5 ŠE U₂.BABBAR ina I₃.GIŠ S]UD₂ IG[I.MIN-šu₂] MAR# [U₅].ARGAB#{mušen} ina I₃.NUN S[UD₂ IGI.MIN-šu₂ MAR] +31'. [DIŠ NA IGI.MIN-šu₂ MUD₂ DIRI ŠI]M.BI.SIG₇.SIG₇# ina# I₃#.NUN# SUD₂ MAR : {u₂#}IN#.NU#.UŠ# {u₂}tar-muš₈ mal-ma-liš HE.HE i[na I₃.NUN ni-kip-tu₄ NITA₂ u MUNUS SUD₂ IGI.MIN-šu₂ MAR] +1'. [... IGI.MIN-šu₂] MAR? +2'. [... ana ŠA₃ IGI.MIN-šu₂ t]a-zar#-ri +3'. [... ZA₃.HI.L]I{sar#} U₂ a-ši-i +4'. [...] x ina um-ma-tu ina A GAZI{sar} LUH +5'. [... ta-bi-l]a₁₂ ta-ṭe-ep-pi +6'. [DIŠ NA ...] x u# I₃#.GIŠ# SUD₂# te#-te#-ne₂-eq-qi₂ +7'. [DIŠ KIMIN ...] x [x SU]D₂ MAR#-MEŠ# +8'. [DIŠ KIMIN ... U₂.BABBAR ta-b]i-la₁₂ ana# ŠA₃# IGI#.MIN#-šu₂# MU₂#-ah +9'. [DIŠ NA IGI.MIN-šu₂ GIG? ... {u₂}EME.U]R.GI₇ {u₂}IN₆.UŠ ina ZI₃.KUM HE.HE ina GEŠTIN N[A]G? +10'. [U₂.BABBAR ... {na₄}a]s-har ina I₃.NUN SUD₂ te-qi₂# +11'. [DIŠ NA IGI.MIN-šu₂ GIG ...] x-šu₂# pa-na pa-ni GAR-an tara-kas₂ +12'. [... {n]a₄}as-har ina I₃.NUN SUD₂ MAR +13'. [DIŠ NA IGI.MIN-šu₂ šik-na ša₂ MUD₂ šak-na U₂.BABBAR U₅.A]RGAB{mušen} {mun}eme-sal-li₃ {u₂}KUR.RA +14'. [{u₂}KUR.KUR {šim}GUR₂.GUR₂ I₃.UDU {šim}GIG 7 U₂.HI].A# an-nu-ti 1-niš ta-mar-raq ina ZI₂ UDU.NITA₂? +15'. [... ina A GAZ]I{sar} ta-sa-pan IGI.MIN-šu₂ MAR +16'. [3 GIN₂ U₅.ARGAB{mušen} SA₉ GIN₂ U₂.BABBAR in]a LAL₃.KUR.RA SUD₂ IGI.MIN-šu₂ MAR an-nu-u šam-mi UD.20.KAM₂ +17'. [EN₂ %sux ib-da-du numun ... %sb ina k]i?-i#-ri ba-la-ṭi +18'. [ba-la-ṭi na-ap-ši-ir ba-la]-ṭi₃ na#-ap-ši-ir +19'. [ba-ʾ-la-at ina it-ti a-ma-lik ... MU]NUS? NU# U₃.TU ak#+la₂# me#-ṣa ma-a-du TU₆.EN₂ +20'. [KA.INIM.MA IGI.MIN-šu₂] MUD₂ DIRI.MEŠ +21'. [DU₃.DU₃.BI SUHUŠ {u₂}HA SAHAR x {u₂}ZA.GIN₃.NA tara-kas₂ 14 K]A.KEŠDA# KEŠDA e-ma KEŠDA EN₂ ŠID-nu ina SAG#.KI-šu₂ tara-kas₂ +22'. [EN₂ hu-ha-hi la ba-ma hu-ha-hi la ba-ma u A.G]A.AŠ₂#.GA TIL.LA A.GA.AŠ₂.GA TIL.LA TU₆#.EN₂# +23'. [KA.INIM.MA DIŠ NA] IGI.MIN-šu₂ MUD₂# DIRI#.MEŠ# +24'. [DU₃.DU₃.BI {na₄}as₂-har ina I₃.NUN SU]D₂ ana# ŠA₃# IGI#.MIN#-šu₂# ŠUB# +25'. [EN₂ %sux igi ti-la a-ga ti-la geštu kun₂-na a-ga kun₂-n]a u₂#-hu#-ur#-sag#-gi#-na-ta +26'. [ša-hi šur-ra-ta kuš-ri-in kuš-ri-in-ni še]-e#-ru še-e-ra e-kal da-mu +27'. [da-ma i-na-ṣab SA-a-nu SA-a-nu u₂-qa-an-n]a-an ŠUB-di {d}gu-la TU₆ TI.LA en#-qu-ti +28'. [ṣi-im-de-ti li-qer-ri-bu at-ti taš-ku]n? ba-laṭ bu-ul-ṭi₂ TU₆.EN₂.E₂.NU.RU +29'. [KA.INIM.MA DIŠ NA] IGI.MIN-šu₂ MUD₂ DIRI.MEŠ +30'. [KID₃.KID₃.BI 3 ŠE NAGA.SI 3 ŠE ILLU LI.TAR 3 ŠE ŠE₁₀ EME.ŠID 1-niš SU]D₂ [ina G]A UD₅ tara-bak IGI.MIN-šu₂ LAL# +31'. [DIŠ NA IGI.MIN-šu₂ GIG-ma MUD₂ DIRI {šim}BULUH.HI.A MUD₂ ul-ta-ta-ni-ʾa MUD₂ ER₂ ina Š]A₃ IGI.MIN-šu₂ E₃#-a# +32'. [GISSU {d}LAMA IGI.MIN-šu₂ u₂-na-kap a-ši-tu ana GISSU GUR di-gal₉ DUGUD-šu₂ {giš}ŠI]NIG SIG₇#-su# tu#-ha#-sa# +33'. [ina A.GEŠTIN.NA KALA.GA tara-muk ina UL tuš-bat ina A₂.GU₂.ZI.G]A ana ŠA₃ hu-li-ia-am SUR-at +34'. [IM.SAHAR.BABBAR.KUR.RA U₂.BABBAR {mun}eme-sal-li₃ I₃.UDU tuš-ka-a {u₂}z]i-ba-a ILLU URUDU a-he-nu-u₂ SUD₂ +35'. [mal₂-ma-liš TI-qe₂ 1-niš tuš-te-mid ana ŠA₃ hu-l]i-ia#-am ša ta-aš₂-hu-tu DUB-ak +36'. [ina I₃.NUN u {na₄}ŠU.MIN₃ SILA₁₁-aš-ma SAG IGI.MIN-š]u₂ ina ŠU.SI BAD-te ana ŠA₃ IGI.MIN-šu₂ GAR-an +37'. [IGI.MIN-šu₂ DUL-ma u₂-kal IGI.MI]N-šu₂ ta-kar-ma UD.9.KAM* an-na-a DU₃.MEŠ +38'. [DIŠ KIMIN {šim}SES U₂.BABBAR {mu]n}eme-sal-li₃ ina MUD Z[ABAR ana ŠA₃ IGI].MI[N-šu₂ BUN₂] +39'. [DIŠ NA MIN ILLU URUDU U₂.BABBAR SU]D₂? [ina MUD ZABAR ana ŠA₃ IGI.MIN-šu₂ BUN₂] +40'. [DIŠ NA MIN {u₂}ur₂-ne₂-e U₂.BABBAR S]UD₂ ina# MUD# ZABA[R ana ŠA₃ IGI.MIN-šu₂ BUN₂] +41'. [EN₂ %sux igi bar igi bar-bar igi b]ar-ra bar-bar igi huš igi huš-huš igi bar-ra h[uš-huš] +42'. %sux [igi bar na₂-a igi bar d]a-a igi bar hul-a %sb IGI.MIN a-ba-tu IGI.MIN a-ša#-[tu] +43'. [... šu-h]ar-ra-te IGI.MIN GIN₇ nik-si UDU.NITA₂# MUD₂# še#-en#-a# +44'. [GIN₇ A.MEŠ ša₂ a-gala-pe-e a-la-p]a-a ŠUB-a ki-ma DUG A.GEŠTIN.NA ŠUB#-a# ṣil-la +45'. [ina be-ri-ši-na pi-ti-i]q-tu₄ pat-qat KU₄-ub {d}GIR₃ ina be-ru-ši-na it-ta-di {giš}GU.ZA-šu₂ +46'. [aš₂-šum₂ an-ni-tu ina ŠA₃ an-ni-te] la na-pa-še EN₂ ul ia#-at#-tu#-un# EN₂ {d}e-a u {d}asal-lu₂-hi +47'. [EN₂ {d}da-mu u {d}gu-l]a EN₂ {d}nin-girima₃ be-let šip-te {d}gu-la TI-ma NIG₂.BA-ki TI TU₆.EN₂ +48'. [KA.INIM.MA] IGI GIG.GA.A.KAM₂ +1. [DU₃.DU₃.BI an-nu]-u₂# ša# SIG₂# BABBAR# DUR# NU#.NU# 7# KA#.KEŠDA# KEŠDA# e-ma KEŠDA EN₂ ŠID-nu ina IGI-šu₂ TI#.LA#-ti# KEŠDA#-su# +2. [EN₂ %sux igi bar igi b]ar-bar igi bar-ra bar-bar igi huš igi huš igi bar-ra huš-huš +3. [ %sux igi bar na₂-a igi] bar da-a igi bar hul-a %sb IGI.MIN a-ba-a-tu IGI#.MIN# a#-ša-tu IGI.MIN ša MUD DIRI-a +4. [ana-ku ...] x 50 NA 50 sa-niq qa₂-bu-u₂ ša₂ {d}gu-la +5. 2#-ma# ši#-na#-m[a ah]-ha-a-tu₄ ina be₂-ru-ši-na pa-rik KUR-u₂# man-na lu-uš-pur ana DUMU.MUNUS {d}a-nim ša₂ AN-e +6. liš-ša₂-ni? tal-l[i-š]i-na {na₄}NIR₂ DUG.MEŠ-ši-na {na₄}ZA.GIN₃ eb-bu li-sa-pa-a-ni A.MEŠ A.AB.BA ta-ma-ti DAGAL-ti +7. ša ha-riš-t[u? l]a? u₂-ri-du a-na lib₃-bi mu-suk-ka-tu la LUH-u qa-te-ša₂ +8. lim-la-ni-im-m[a? l]i-ke-eṣ-ṣa-a KUM₂ ṣi-ri-ih-tu ša₂ ŠA₃ IGI.MIN-šu₂ +9. EN₂ ul ia-a[t-tu-un E]N₂ {d}40 u {d}asal-lu₂-hi EN₂# {d#}da#-mu u {d}gu-la +10. EN₂ {d}nin-gi[rima₃ be-let šip-t]e {d#}gu#-la# TI#.L[A-ma NIG₂.BA-k]i? [TI]-i# TU₆#.EN₂# +11. KA.INIM.MA [IGI GIG.GA.A.KAM₂] +12. DU₃.DU₃.BI an-nu-u₂ š[a SIG₂ SA₅ DUR NU.NU 7 KA.KEŠDA KEŠDA e-ma KEŠDA EN₂ ŠID-nu ina IGI-šu₂ GIG-ti₃ KEŠDA] +13. EN₂ %sux igi bar igi bar-bar i[gi bar-ra bar-bar igi huš igi huš-huš igi bar-ra huš-huš] +14. %sux igi-bar na₂-a igi-ba[r da-a igi-bar hul-a %sb IGI.MIN a-pa-tu IGI.MIN a-ša-tu] +15. IGI#.MIN# pur#-sit₂# MUD₂# [šu-te-eṣ-li-pa-a-tu am-min₃ tab-b]a-a# am#-min₃# taš#-ša₂#-a# +16. [am-mi₃-ni ik-kal-ki-na-ši ba-a-ṣu ša na-a-ri t]al-tal-lu-u₂ ša₂ {giš}GIŠIMMAR +17. [ša₂ ti-it-tu ni-iq-qa-ša₂ ša₂ a-ri-i IN.NU-š]u al-si-ki-na al-ka-n[i] +18. ul# al#-si#-[ki-na-ši ul ta-la-ka-ni la-am it-b]a-ki#-na#-ši# IM#.1# IM#.2# IM#.3# [IM.4 EN₂] +19. KA.INIM.MA IGI GIG.GA.[KAM₂] +20. DU₃.DU₃.BI SIG₂ SA₅ SIG₂# B[ABBAR a-he-en-na-a NU.NU] 7# u 7 KA.KEŠDA KEŠDA e-ma KEŠDA EN₂ Š[ID-nu] +21. DUR SIG₂ SA₅ ina IGI-šu₂# G[IG-ti₃ KEŠDA D]UR SIG₂ BABBAR ina IGI-šu₂ TI.LA KEŠDA-ma i[na-eš] +22. EN₂ %sux igi bar igi bar-bar igi bar-r[a bar-bar igi h]ul igi hul-hul igi bar-ra hul-h[ul] +23. ši-it-ta-ši-na DUMU.MUNUS {d}[a-ni in]a be#-ru-ši-na pi-tiq-tu₄ pat-qa[t] +24. ul il-lak a-ha-tu a-n[a le-e]t a#-ha-ti-ša₂ man-na lu-uš-pur a-na DUMU.MUNUS {d}a-ni₃ ša₂ AN#-e# +25. liš-ša₂-ni kan-ni-ši-na {na₄}N[IR₂] DUG.MEŠ-ši-na {na₄}ZA.GIN₃.DURU₅ eb-bu +26. li-is-sa-pa-ni-im-m[a] li-be-la-a IGI.MIN a-ba-ti +27. IGI.MIN a-ša₂-ti# u₃# dal-ha-a-ti TU₆#.EN₂ +28. KA#.INIM#.MA# IGI GIG.GA#.A#.KAM₂ : DU₃.DU₃.BI ŠU.BI.GIN₇.NAM# +29. EN₂ %sux igi bar igi bar-bar igi bar-ra bar-bar# igi suh₃ igi suh₃-suh₃ igi bar-ra suh₃-su[h₃] +30. ši-it-ta i-nu a-ha-tu ši-[na]-ma ina be-ru-ši-na KUR-u₂ pa-ri[k-ma] +31. UGU-nu-ši-na ki-ṣir-tu kaṣ₃#-rat# KI.TA-nu-ši-na pi-tiq-tu₂ pat-[qat] +32. a-a-u₂ IM-ši-na-a-ma a-a-u₂ NU IM-ši#-n[a-ma] +33. a-a-u₂ IM ti-bi-ši-na a-a-u₂ la-a IM ti-b[i-ši-na-ma?] +34. ša#-ar pa-ni i-kil₂ pa-ni ṣu-lu-u[m? p]a?-n[i?] a[t?-ta p]u-ṭu[r {d}AMAR?.UTU TU₆.EN₂] +35. [KA.INIM.M]A IGI GIG.GA.A.K[AM₂ : DU₃.DU₃.BI ŠU.BI.GIN₇.NAM] +36. [EN₂ %sux igi bar ig]i bar#-bar# x [...] +47. [...] x +48. [DU₃.DU₃.BI ...] a#-he#-en#-na#-a# [N]U.NU +49. [...] ina SAG.KI-šu₂ KEŠDA-su# +50. [EN₂ ...] x? IGI NU TUK-a TU₆.EN₂ +51. [DU₃.DU₃.BI ... ina SAG.KI-šu₂] ša₂ ZAG +52. [EN₂ ... %sux ta-ma-ad-r]a-aš₂ ta-ma-ad-ra-aš₂ tu₆-en₂ +53. [DU₃.DU₃.BI ... ina SAG.KI-šu₂?] ša₂ GUB₃ +54. [KA.INIM.MA IGI GIG.GA.KAM₂ DU₃.D]U₃.BI ŠU.BI.GIN₇.NA[M] +55. [EN₂ ... %sux g]ub-ba-a gub-b[a-a] +56. [{d}AMAR.UTU ip-pa-lis-su-ma ana {d}e₂-a AD-š]u₂? i-ša₂-as#-[si] +57. [mi-na-a e-pu-uš ul i-di ša ana-ku i-du-u at-ta] ti#-di# T[U₆.EN₂] +1. [DU₃.DU₃.BI SI]G₂ SA₅ SIG₂# BABBAR# 1#-[niš NU.NU 7 u 7 KA.KEŠDA KEŠDA] +2. [e-ma] KEŠDA EN₂ ŠID#-nu# i[na SAG.KI.MEŠ-šu₂ KEŠDA-ma ina-eš] +3. [EN₂ %sux i-gi t]i-la a-ga ti-la i-gi kun₂-na a#-[ga] kun₂#-n[a : ur-sag gi-na-zu gi ban₃-da-zu tu₆-en₂] +4. [KA.IN]IM.MA IGI GIG.GA.A.KA[M₂ : ] DU₃.DU₃.BI [ŠU.BI.GIN₇.NAM] +5. [EN₂ %sux pa-l]a huš# pa-la huš pa-la huš-bi# ni[g₂-gi-n]a-bi i-gi pa-la huš#-b[i tu₆-en₂] +6. [KA.INIM.MA] IGI# GIG#.GA.A.KAM₂# DU₃#.DU₃.BI ŠU#.BI.A[Š.AM₃] +7. [EN₂ i]-ni eṭ-li GIG-at# i#-n[i {munus}K]I.SIKIL GIG-at i-ni GURUŠ u {munus}KI.SIKIL man-nu u₂#-[bal-liṭ] +8. [ta-š]ap-par₂ i-le-qu-ni-ku ŠA₃# KU₃#-ti# {giš#}GIŠIMMAR# ina# pi#-i#-ka# te#-he#-pi# ina# ŠU#-ka# te#-pe#-ti[l] +9. [GURUŠ u K]I.SIKIL ina SAG.KI.MEŠ-šu₂-nu tu-ka-ṣar IGI GURUŠ u KI.SIKIL i-bal-lu-uṭ TU₆.EN₂# +10. [KA.I]NIM.MA IGI GIG.GA.A.KAM₂ DU₃.DU₃.BI ŠU.BI.AŠ.BI.AM₃ +11. %sux [e]n₂ an-na im ri-a igi lu₂-ka gig-ga ba-an-gar +12. ina ša₂-me-e ša₂-a#-ru i-zi-qam-ma ina i-in LU₂ si-im-me iš-ta-kan +13. %sux an#-ta su₃-da-ta im ri-a igi lu₂-ka gig-ga ba-an-gar : %sb iš-tu AN-e ru-qu-ti +14. %sux igi# gig#-ga gig-ga ba-an-gar +15. [...] i#-ni mar-ṣa-a-ti si-im-ma iš-ta-kan +16. %sux [lu₂-b]i igi-bi lu₃-lu₃-a igi#-bi# ba-an-suh₃#-suh₃ +17. [ša₂ LU₂ šu]-a#-tu₂# i-da-šu₂ da-al#-h[a ša₂ i-n]a-š[u₂] a-ša₂-a +18. %sux lu₂#-u₁₈#-lu#-bi# ni₂#-te#-a#-ni#-še₃# er₂# gig# i₃#-šeš₂#-šeš₂# +19. LU₂ šu-u₂ ina ra-ma-ni-šu₂ mar-ṣi-iš i-b[ak-ki] +20. %sux lu₂-bi tu-ra-a-ni {d}engur-ke₄ igi# im#-ma#-a[n?-si₃] +21. ša₂ LU₂ šu₂-a-tu₄ mu-ru-us-su {d}MIN i#-mur#-ma# +22. %sux gazi{sar} kum-ma₃ šu# u₃-me-ti +23. ka-si-i haš-lu-ti le-qe₂-ma +24. %sux tu₆-tu₆ abzu-ta u₃-me-ni-si₃ +25. ši-pat ap-si-i i-di-ma +26. %sux igi lu₂-ka u₃-me-ni-kešda +27. i-ni a-me-li ru-kus-ma +28. %sux {d}engur lu₂ šu ku₃-ga-na# igi# l[u₂-ba-ka šu tag-g]a-ni-ta +29. {d}MIN ina ŠU-š[a₂ KU₃-ti i-in a-me-li₃ ina l]a-ba#-ti-ša₂ +30. %sux im igi lu₂-k[a su₃-su₃ igi-bi-ta ba-ra-a]n-e₃ +31. ša₂-a-ru₃ ša₂ i#-[in a-me-li₃ ud-du-pu ina i-ni-šu₂ lit-t]a-ṣi +32. KA#.I[NIM.MA IGI GIG.GA].A#.KAM₂ +33. [EN₂ i-nu a-pa-tu₂ i-nu a-ša₂-tu₂ i-nu pur-si-in-di da-a-mi šu-har-ri-a-t]u₄ +1'. [KU₃.G]AN U₅-ARGAB#{mušen#} I₃#.UDU GIR₃.PAD.DA LUGUD₂.DA ša [UDU ... SUD₂ ...] +2'. [Š]IM.BI.KU₃.GI SUD₂ ina {g[i}SAG.KUD ana ŠA₃ IGI-MIN-šu₂ BUN₂] +3'. kun#-ša₂₅ SAG.DU-su KEŠDA 10 SILA₄!(KISAL) I₃+GIŠ# SA₉# SILA₄!(KISAL#) x [... ana SAG.DU-šu₂ DUB-ak ...] +4'. UD.3.KAM@v DU₃.DU₃-uš ZA₃.HI.LI tur#-ar₂# SUD₂ [...] x +5'. DIŠ NA IGI-MIN-šu₂ GIG HENBUR₂ ŠE.AM SIG₇#-su# NAGA-SI SUD₂ ina A GAZI{sar} SILA₁₁-aš# [IGI-MIN-šu₂ LAL-id] +6'. {na₄}as₃-har {na₄}tu-uš-ka#-a# SUD₂ ina I₃.UDU tu-tah-ha-ah mal-ma-liš SUD₂ ina I₃.NUN H[E.HE IGI-MIN-šu₂ MAR] +7'. DIŠ# NA IGI-MIN-šu₂ GIG 10 SI[LA₄!(KISAL) I₃.GIŠ an]a SAG-KI-MEŠ-šu₂ ŠUB.MEŠ šu-uh-ta ša AŠGAB ina KUŠ.EDIN [te-ser] +8'. [ina SA]G-KI-MEŠ-šu₂ L[AL-id ILLU URUDU {n]a₄}aš₂-har ŠIM.BI.KU₃.GI SUD₂ ina I₃.NUN HE.HE IGI-MIN-šu₂ MAR.MEŠ#-m[a? T]I? +9'. [DIŠ# NA IGI-MIN-šu₂ GIG-ma u ha-an-ṭa SAH]AR.URUDU ša ŠEN.TUR ina I₃.NUN SUD₂ IGI-MIN-šu₂ MAR GIR₂-ZABAR +10'. [ina A LUH-si SUM{sar} ta-sak₃] 1-šu₂# 2-šu₂ 3-šu₂ IGI-MIN-šu₂ MAR ZA₃.HI.LI ina šur-šum-me KAŠ SILA₁₁-aš LAL +11'. [... SAHAR.URUDU š]a ŠEN#.TUR tur-ar₂ GAZ ina I₃.NUN SIG₅-te ta-sak₃ +12'. [UD-ma DU₃-šu₂ ...] IGI-MIN-šu₂ te-qi₂ +13'. [... an]a ŠA₃# IGI-MIN-šu₂ tu-na-tak₂ {u₂}IN₆.UŠ₂ SUD₂ LAL +14'. [... ba-r]i-ra-ta₅ ina GA ta-la₃-aš LAL +15'. [... i]na DILIM₂ A.BAR₂ SUD₂ IGI-MIN-šu₂ MAR +16'. [... {š]im}ŠE#.L[I ... s]u-pa#-la# SIG₇-su +17'. [ina A.M]E[Š? ... UKU]Š₂.LAGAB U₂-BABBAR x [... t]e-qi₂?# +18'. [... IGI-M]IN-šu₂ GI[G ... ma-ʾ-d]u-ti NU BAD ina KUM₂ [...] +19'. [SAG.D]U-su SAR-a[b ... N]IG₂.SILA₁₁.GA₂ tu-kaṣ₃-ṣ[a ...] +20'. [ina] I₃#.NUN DILIM₂ A.BAR₂# t[a-sa]k₃ IGI-MIN-šu₂ t[e?-qi₂?-ma? ina?-eš?] +21'. [... I]GI-MIN-šu₂ ta-bi-la₁₂ GIG SUM.SIKI[L-l]a u₂#-haš-ša₂ ina KAŠ NAG I₃+GIŠ ana ŠA₃ IGI#-MIN#-šu₂# M[AR-ru-ma? ...] +22'. [... N]A₄ ZU₂.LUM.MA tur-ar₂ SUD₂ ina A GAZI#{sar#} ta#-la-aš tu-kap-pat la-a-am pa-tan# u₂?#-a[l-lat?] +23'. [BIL.ZA.Z]A SIG₇# ta-ṣa-lip ZI₂-su# ina# I₃.NUN HE.HE IGI-MIN-šu₂ te#-qi₂# +24'. [... GU₂.G]AL 6 SILA₄!(KISAL) ZI₃ GAZI{sar} 5 GIN₂ ZA₃.H[I.LI ina] A# GAZI#{sar#} SILA₁₁#-aš# SAG#.KI#-šu₂# IGI#-MIN#-šu₂# LAL +25'. [EN₂ x x x (x)] x lal a sar NUMUN U₂ x [x] x e-ru-pu e-gu-ma +26'. [x x] x e#-[l]i? A 3-šu₂ DUG₄.GA +27'. DIŠ N[A ... GAZI{s]ar} sah-le₂-e {u₂}MAŠ.TAB I₃.UDU {šim}GIG NUMUN {šim}LI +28'. kam-m[u ... ta-qal₃-l]u ina I₃.NUN I₃.UDU ELLAG₂ UDU.NITA₂ GAB.LAL₃ tuš-tab-bal IGI-MIN-šu₂ MAR +29'. DIŠ NA IGI-MI[N-šu₂ ... : IGI-MI]N-šu₂ GIG U₅-ARGAB{mušen} ina I₃.NUN SUD₂ MAR +30'. DIŠ NA IGI-MIN-šu₂# [GIG ... : DIŠ NA] IGI#-MIN#-šu₂# GIG# sah#-le₂#-e ina GA ŠEG₆-šal LAL +31'. DIŠ NA IGI-MIN-šu₂ MU[D₂ ...] x ri šum₄-ma ŠA₃ IGI-MIN-šu₂ SA₅ +32'. IGI-MIN-šu₂ DUL-m[a ... {munus}]U₂#.ZUG₂ SILA₁₁-aš LAL-id +33'. ina še-ri₃ DU₈-šu₂-m[a ... ina GIR₂ ZAB]AR KUD-[iṣ?] +34'. DUR {sig₂}HE₂.ME[D ...] +35'. DIŠ NA IGI-MIN-šu₂ MUD₂ šu-u[n-nu-ʾa ...] +36'. 1 GIN₂ U₅-ARGAB{mušen} S[A₉ ...] +37'. U₂-BABBAR ta-bi-la₁₂ ana ŠA₃ IGI-MI[N-šu₂ ...] +38'. ŠE₁₀ EME.ŠID ina I₃.UDU GIR₃.PAD.DU LUGUD₂.DA [...] +39'. 5 ŠE U₂-BABBAR ina I₃.GIŠ SUD₂ IGI-MIN-šu₂ MA[R ...] +40'. DIŠ NA IGI-MIN-šu₂ MUD₂ DIRI [...] +41'. {u₂}IN₆.UŠ₂ {u₂}tar-muš mal-ma-li[š ...] +42'. NA₄ BAL ina UH₂ SUD₂ MAR : ši[m?-bi?-zi?-da₄? ...] +43'. MUD₂ ša ŠA₃ ŠAH ana ŠA₃ IGI-MIN-š[u₂ tu-na-tak ...] +1'. 3 GIN₂ U₅#-[ARGAB{mušen} ...] +2'. EN₂ %sux ib-da-g[ub ... %sb ina ki-i-ri ba-la-ṭi] +3'. ba-la-ṭi n[a-ap-ši-ir ba-l]a-ṭi₃# na#-[ap-ši-ir] +4'. ba-ʾ-la-at ina it-ti [... MU]NUS? NU# U₃.TU ak-la₂ me-ṣa ma-a#-[du TU₆.EN₂] +5'. KA.INIM.[MA IG]I-MIN-šu₂ MUD₂ DI[RI-MEŠ] +6'. DU₃.DU₃.BI SUHU[Š ... 14 K]A.KEŠDA KEŠDA e-ma KEŠDA EN₂ ŠID-nu ina SAG.K[I-šu₂ ...] +7'. EN₂ h[u-ha-hi la ba-ma hu-ha-hi la ba-ma u A.GA.AŠ₂.GA TIL.L]A A.GA.AŠ₂.GA TIL.LA TU₆.E[N₂] +8'. [KA.INIM.MA DIŠ NA IGI-MIN-šu₂] MUD₂ DIRI-M[EŠ] +9'. [DU₃.DU₃.BI {na₄}as₂-har ina I₃.NUN SU]D₂? ana ŠA₃ IGI-MIN-šu₂ Š[UB] +10'. [EN₂ %sux igi ti-la a-ga ti-la geštu kun₂?-na a-ga kun₂-n]a u₂-hu#-ur#-sag#-g[i-na-ta] +11'. [ša-hi šur-ra-ta kuš-ri-in kuš-ri-in-ni] še-e-ru še-e-ra e-k[al da-mu] +12'. [da-ma i-na-ṣab SA-a-nu SA-a-nu u₂-qa-an-na-an Š]UB-di {d}gu-la TU₆ TI#.[LA en-qu-ti] +13'. [ṣi-im-de-ti li-qer-ri#-bu at-ti taš-ku-ni b]a-laṭ bu-ul-ṭi TU₆.EN₂.[E₂.NU.RU] +14'. [KA.INIM.MA DIŠ N]A IGI-MIN-šu₂ MUD₂ DI[RI-MEŠ] +15'. [KID₃.KID₃.BI 3 ŠE NAGA-SI 3 ŠE ILLU LI.TA]R 3# ŠE# ŠE₁₀# EME#.ŠID# 1#-niš# SUD₂# ina# GA# UD₅# [tara-bak IGI-MIN-šu₂ LAL] +16'. DIŠ NA IGI-MIN#-š[u₂ GIG-ma MUD₂ DIRI {šim}BULUH-HI.A MUD₂ ul-ta-t]a-ni-ʾa MUD₂ ER₂ ina ŠA₃ IGI-MIN-šu₂ E₃#-[a] +17'. GISSU {d}LAMA# IG[I-MIN-šu₂ u₂-na-kap a-ši-tu ana GISSU GU]R di-gal₉ DUGUD-šu₂ {giš}ŠINIG SIG₇-su tu-[ha-sa] +18'. ina A.GEŠTIN.NA KALA.GA tar[a-muk ina UL tuš-bat ina A₂.G]U₂.ZI.GA ana ŠA₃ hu-li-ia-am SUR#-[at] +19'. IM.SAHAR.BABBAR.KUR.RA U₂-BABBAR {mu[n}eme-sal-li₃ I₃.UD]U tuš-ka-a {u₂}zi-ba-a ILLU URUDU# a#-he#-[nu-u₂ SUD₂] +20'. mal₂-ma-liš TI-qe₂ 1-niš tuš-te-mid an[a ŠA₃ hu-li-ia-a]m ša ta-aš₂-hu-tu DUB-[ak] +21'. ina I₃.NUN u {na₄}ŠU.MIN₃# SILA₁₁#-aš!(NU#)-ma# SAG# I[GI-MIN-šu₂] ina ŠU.SI BAD-te ana ŠA₃ IGI-MIN-šu₂ GAR-[an] +22'. IGI-MIN-šu₂ DUL-ma u₂-kal IGI-MIN-šu₂ ta-kar-ma# UD#.9.KAM₂ an-na-a DU₃-[MEŠ] +23'. DIŠ KIMIN {šim#}SES U₂-BABBAR {mun}eme-sal-li₃ [ina MU]D ZABAR ana ŠA₃ IGI-MIN-šu₂ B[UN₂?] +24'. DIŠ NA MIN ILLU URUDU U₂-BABBAR SUD₂ [ina MU]D ZABAR# ana ŠA₃ IGI-MIN-šu₂ [BUN₂] +25'. DIŠ# NA MIN {u₂}ur₂-ne₂-e U₂-BABBAR SUD₂ ina# MUD# ZABAR# ana ŠA₃ IGI-MIN-šu₂ [BUN₂] +26'. EN₂ %sux igi bar igi bar-bar igi bar-ra bar-bar igi# huš# igi huš-huš igi bar-ra h[uš-huš] +27'. %sux [igi b]ar na₂#-a# igi# bar# da#-a# igi# bar# hul#-a %sb IGI-MIN a-ba-tu IGI-MIN a-[ša-tu] +28'. [... šu-h]ar-ra-tu₂ IGI-MIN ° \\ ° GIN₇ nik-si UDU.NITA₂ MUD₂ [še-en-a] +29'. [GIN₇ A.MEŠ ša₂ a-gala-pe-e] a#-la-pa-a ŠUB-a ki-ma DUG A.GEŠTIN.NA ŠUB-a [ṣil-la] +30'. [ina be-ri-ši-na pi-ti-iq-tu₄ pat-qa]t? KU₄#-ub# {d}GIR₃ ina be-ru-ši-na it-ta-[di {giš}GU.ZA-šu₂] +31'. [aš₂-šum₂ an-ni-tu ina ŠA₃ an-ni-te la na-pa-še E]N₂ ul# ia-at-tu₂-un EN₂ {d}e-a u# [{d}asal-lu₂-hi] +32'. [EN₂ {d}da-mu u {d}gu-la EN₂ {d}nin-girima₃] be#-let# EN₂ {d}gu-la TI.LA-ma NIG₂.BA-k[i TI TU₆.EN₂] +33'. [KA.INIM.MA] IGI GIG.GA.A.[KAM₂] +34'. [DU₃.DU₃.BI an-nu-u ša SIG₂ BABBAR DUR NU.NU 7 KA.KEŠDA KE]ŠDA e-ma KEŠDA EN₂ ŠID-nu ina IGI-šu₂ TI#.L[A-ti KEŠDA-su] +35'. [EN₂ ... %sux igi h]uš-huš igi bar-ra [...] +36'. [... IGI-MIN a-p]a-tu₂ IGI-MIN a-ša₂-tu₂ IGI-MIN ša MU[D DIRI-a] +37'. [ana-ku ... sa-niq qa₂-b]u-u₂ ša₂ {d}gu-la +38'. [2-ma ši-na-ma ah-ha-a-tu₄ ina be₂-ru-ši-na p]a-rik KUR-u₂ +39'. [man-na lu-uš-pur ana DUMU.MUNUS {d}a-ni]m? ša₂ AN-e +1. liš-ša₂-a-ni tal-l[i-ši]-na {na₄}NIR₂ DUG.MEŠ-ši-na {na₄}ZA.GIN₃ eb-bu li-sa-pa-a-ni A.MEŠ A.AB.BA +2. tam-ti₃ DAGAL-te ša ha-riš-tu la u₂-ri-du ana lib₃-bi mu-suk-ka-tu₂ la LUH-u qa-ti-ša₂ +3. lis-la-ni-im-ma li#-ke-eṣ-ṣa-a KUM₂ ṣi-ri-ih-tu₂ ša₂ ŠA₃ IGI-MIN-šu₂ +4. EN₂ ul ia-at-tu#-un EN₂ {d}40 u {d}asal-lu₂-hi EN₂ {d}da-mu u {d}gu-la +5. EN₂ {d}nin-girima₃ be-let šip-te {d}gu-la TI.LA-ma NIG₂.BA-ki TI-i TU₆.EN₂ +6. KA.INIM.MA IGI GIG.GA.A.KAM₂ +7. DU₃.DU₃.BI an-nu-u ša [SIG₂ S]A₅ DUR NU.NU 7 KA.KEŠDA KEŠDA e-ma KEŠDA# EN₂# ŠID-nu ina IGI-šu₂ GIG-ti₃ KEŠDA +8. EN₂ %sux igi bar ig[i ... bar-r]a bar#-bar igi huš igi huš-huš# igi bar-ra huš-huš +9. %sux igi bar n[a₂-a ...] igi bar hul-a %sb IGI-MIN a-pa-tu IGI-MIN a-ša-tu +10. IGI-MIN pur-[sit₂ MUD₂ šu-te-eṣ-li-p]a-a#-tu am-min₃ tab-ba-a am#-min₃# taš#-ša₂#-a# +11. am-mi₃-n[i ik-kal-ki-na-ši ba-a-ṣ]u ša n[a-a-ri tal-tal-lu-u₂ ša₂ {giš}GIŠIMMAR] +12. ša₂ ti-[it-tu ni-iq-qa-š]a [ša₂ a-ri-i IN.NU-šu al-si-ki-na-ši al-ka-ni] +13. ul a[l-si-ki-na-ši ul ta-la]-k[a-ni la-am it-ba-ki-na-ši IM.1 IM.2 IM.3 IM.4 EN₂] +14. KA.[INIM.MA] [IGI GIG.GA.KAM₂] +15. DU₃.DU₃.B[I SIG₂ S]A₅ SIG₂ BABBAR a-he-en-n[a NU.NU 7 u 7 KA.KEŠDA KEŠDA e-ma KEŠDA EN₂ ŠID-nu] +16. DUR S[IG₂] SA₅# ina IGI-šu₂ GIG-ti₃ [KEŠDA DUR SIG₂ BABBAR ina IGI-šu₂ TI.LA KEŠDA-ma ina-eš] +17. EN₂ %sux ig[i bar] igi# bar-bar igi bar-ra bar#-ba[r ... h]ul-hul# igi# ba[r-ra ...] +18. š[i-it-t]a-ši#-na DUMU.MUNUS {d#}[a-ni ina be-ru-ši-na pi-tiq-tu₄ pat-qat] +19. u[l? il-lak a-ha-tu a-na le-et a-ha-ti-š]a₂? man-na lu-uš-pur a#-[na DUMU.MUNUS {d}a-ni₃ ša₂ AN#-e#] +20. [liš-ša₂-a-ni kan-ni-ši-na {na₄}NIR₂ D]UG.MEŠ-ši-na {na₄}[ZA.GIN₃.DURU₅ eb-bu] +21. [li-is-sa-pa-ni-im-ma li-be-la-a IGI-MIN a-b]a-tu₂ IGI-MIN a-ša₂-ti u₃# [dal-ha-a-ti TU₆.EN₂] +22. [KA.INIM.MA] IGI GIG.[GA.A.KAM₂] +23. [DU₃.DU₃.BI] ŠU.BI.[GIN₇.NAM] +24. [EN₂ %sux igi bar igi bar-bar igi bar-ra bar-bar igi s]uh₃ igi suh₃-suh₃ igi b[ar-ra suh₃-suh₃] +25. [ši-it-ta i-nu a-ha-tu ši-na-ma in]a be-ru-ši-na KUR-u₂# [pa-rik-ma] +26. [UGU-nu-ši-na ki-ṣir-tu kaṣ₃-rat K]I.TA#-nu-ši-na pi-ti[q-tu₂ pat-qat] +27. [a-a-u₂ IM-ši-na-a-ma a-a]-u₂# NU I[M-ši-na-ma] +28. [a-a-u₂ IM ti-bi-ši-na a-a-u₂ la]-a# I[M ti-bi-ši-na-(ma?)] +29'. [KA.INIM.MA IGI GIG.GA.K]A[M₂? DU₃.DU₃.BI ŠU.BI.GIN₇.NAM] +30'. [EN₂ ... %sux gi]n₇? a a-lal-la er₂ gub-ba-[a gub-ba-a] +31'. [{d}AMAR.UTU ip-pa-lis-su-ma ana] {d#}e₂-a AD#-šu₂ i-ša₂-a[s-si] +32'. [mi-na-a e-pu-uš ul i-di ša ana-ku i-du]-u?# at-ta ti-di T[U₆.EN₂] +33'. [KA.INIM.MA IG]I GIG.GA.[KAM₂] +34'. [DU₃.DU₃.BI SIG₂ SA₅ SIG₂ BABBAR 1-niš NU.NU 7 u 7 KA.KEŠDA KEŠDA e-m]a? KEŠDA# EN₂ ŠID-nu ina SAG.K[I-MEŠ-šu₂ KEŠDA-ma ina-eš] +35'. [EN₂ %sux i-gi ti-la a-ga ti-la i-gi kun₂-n]a a-ga k[un₂?-na] +36'. [ %sux ur-sag gi-na-zu gi ban₃-da-zu tu₆-en₂] +37'. K[A.INIM.MA IGI GIG.GA.A.KAM₂ : DU₃.DU₃.BI Š]U.BI.GI[N₇.NAM] +1. EN₂# i-ni GURUŠ GIG#-at# i#-ni# {munus#}KI#.SIKIL# GIG-at i-ni GURUŠ u {munus}KI.SIKIL man-nu u₂-bal-liṭ +2. ta-šap-par₂ i-le#-qu-ni-ku ŠA₃ KU₃-ti {giš}GIŠIMMAR ina pi-i-ka te-he-pi ina ŠU-ka te-pe-til +3. GURUŠ u KI.SIKIL ina# SAG#.KI#.MEŠ#-šu₂-nu tu-ka-ṣar IGI GURUŠ u KI.SIKIL i-bal-lu-uṭ TU₆.EN₂ +4. KA.INIM.MA# IGI GIG.GA.A.KAM₂ DU₃.DU₃.BI ° \\ ° ŠU.BI.AŠ.AM₃ +5. %sux en₂ an-na im# ri-a igi lu₂-ka gig-ga ba-an-gar +6. ina ša₂-me-e ša₂-a-ru i-zi-qam-ma ina i-in LU₂ si-im-me iš-ta-kan +7. %sux an-ta su₃#-da-ta im ri-a?(MIN?) igi lu₂-ka gig-ga ba-an-gar +8. iš-tu AN-e ru-qu-ti +9. %sux igi gig-ga# gig-ga ba-an-gar : %sb ana i-ni mar-ṣa-a-ti si-im-me iš-ta-kan +10. %sux lu₂-bi igi-bi lu₃-lu₃-a : %sb ša₂ LU₂ šu-a-tu₂ i-na-šu₂ da-al-ha +11. %sux igi-bi ba#-an-suh₃#-suh₃ : %sb i-na-šu₂ a-ša₂-a +12. %sux lu₂-u₁₈#-lu#-bi ni₂-te-a-ni-še₃ er₂ gig i₃-šeš₂-šeš₂ +13. LU₂ šu#-u₂ ina ra-ma-ni-šu₂ mar-ṣi-iš i-bak-ki +14. %sux lu₂-bi# tu#-ra-a-ni {d}engur-ke₄ igi im#-ma-an-si₃ : %sb ša₂ LU₂ šu₂-a-tu₂ mu-ru-us-su {d}MIN i-mur-ma +15. %sux gazi{sar#} gaz-ga₂ šu u₃-me-ti : %sb ka-si-i haš-lu-ti le-qe₂-ma +16. %sux tu₆#-tu₆# abzu-ta u-me-ni-si₃ : %sb ši-pat ap-si-i i-di-ma +17. %sux i[gi l]u₂-ka u₃-me-ni-kešda : %sb i-ni a-me-li ru-kus-ma +18. %sux [{d}engu]r lu₂ šu ku₃-ga-na igi lu₂-ba-ka šu tag-ga-ni-ta +19. [{d}MI]N ina ŠU-ša₂ KU₃-ti i-in a-me-li₃ ina la-ba-ti-ša₂ +20. %sux [im ig]i lu₂-ka su₃-su₃ igi-bi-ta ba-ra-an-e₃ +21. [ša-a]-ru ša₂ i-in a-me-li₃ ud-du-pu ina i-ni-šu₂ lit-ta-ṣi +22. [KA.I]NIM.MA IGI GIG.GA.A.KAM₂ +23. [EN₂ i-n]u a-pa-tu₂ i-nu a-ša₂-tu₂ i-nu pur-si-in-di da-a?(MIN?)-mi šu-har-ri-a-tu₄ +24. [ši-n]a i-bak-ka-a ana IGI AMA-ši-na {d#}ma#-mi# +25. [a-m]i₃-in na-ši-ma it-ti-ni tar-ku-si a-ša₂-a d[a-a-ma u ša₂-a-ra TU₆.EN₂] +26. [KA.IN]IM.MA [IGI GIG.GA.A.KAM₂] +27. [DU₃.DU₃.BI] S[IG₂ S]A₅ SIG₂# BABBAR# a#-he#-en#-na#-a# N[U.NU ina MURUB₄-šu₂-nu lip₂-pa tal₂-pap] +28. [SIG₂ SA₅ ina I]GI-šu₂ GIG SIG₂ BABBAR ina IGI-šu₂# T[I KEŠDA-ma ina-eš] +29. [EN₂ %sux še l]a₂ še la₂ hu-tu-ul hu-tu-ul igi lal hu#-t[u-ul min igi lal-bi hu-tu-ul min] +30. [ša-at-ti p]a-na ŠE.GA ša-at-ti pa-na Š[E.GA i-ṭab₃ ŠE.GA MIN TU₆.EN₂] +31. [KA.INI]M.MA DIŠ N[A IGI-MIN-šu₂] L[U₃.LU₃] +32. D[U₃.DU₃.BI b]ir-ki# UDU# TI#-qe₂# [x x] u DUR NU.NU ana 2-šu₂ te-eṣ-ṣi-ip x [x x] +33. 7 [u 7 KA.KEŠDA KEŠDA e-ma KEŠDA E]N₂? ŠID-nu ina SAG.KI-šu₂ KEŠDA-m[a ina-eš] +34. EN₂ a[t-ti-na ... pu]r-si#-mi#-it# MUD₂ šu-har-ra-tu₂ am-mi-ni ta-aš-ša-ni ha-ma# +35. ha-an-d[a-bi-l]u? šu-ur-šu-ra e-lap?-pa-a ša ID₂ ina SILA.MEŠ kir-ba-ni +36. ina tub-ki[n₂-na]-a#-te hu-ṣa-a-ba am-mi-ni taš-ša-ni zu-un-na-ni GIN₇ MUL +37. mi-ta-q[u-ta]-ni GIN₇ nab-li la-am ik-šu-du-ki-na-ši ṣur-ru nag-la-bu +38. ša₂ {d}gu-la E[N₂ N]U DU₈ EN₂ {d}asal-lu₂-hi {d}AMAR.UTU EN₂ {d}nin-gi-rim-ma EN EN₂ +39. u {d}gu-la EN# [A.Z]U-ti i-di-ma ana-ku aš₂-ši TU₆.EN₂ +40. KA.INIM.MA ha#-a#-mu hu-ṣa-ba u mim₃-ma ša IGI-MIN šu-li-i +41. EN₂ ina šur-ri-i la-am# ba-ša-mu a-la-lu ur-da ana ma-t[i] +42. it-tu-u₂ še-er-a U₃.TU še-er-hu hab-bur-ra# +43. hab-bur-ra ka-an-na ka#-an-nu ki-iṣ-ra ki-iṣ-ru šu-bu-ul-ta šu-bu[l-t]u +44. me₂-er-a {d}UTU e-ṣi-id# {d}30 u₂-pa-har {d}UTU ina e-ṣe-di-šu₂ {d}30 ina pu-hu#-ri-šu₂ +45. ana IGI GURUŠ me-er-hu KU₄-ub# {d}UTU u {d}30 i-ši-za-nim-ma me₂-er-hu li-la-a# ša₂ ŠA₃!?-šu₂-un# +46. KA.INIM.MA me₂-er-hu ša# ŠA₃ IGI-MIN šu!?#-li-i +47. DIŠ NA IGI-MIN-šu₂ mur-din-n[i DIRI] sah-le₂-e ZI₃ [ŠE.SA.A ina] KA[Š tara]-bak LAL-id +48. x [x x (x x)] ana?# [x x x (x)] x-MEŠ# +1'. [x x x x x x x x x x x x x DU₈?].U₃?#.KAM₂?# +2'. [x x x x x x x x x x x x x x x] {u₂#}SIKIL +3'. [x x x x x x x x x x x x x x x x x] {u₂#}NU#.LUH#.HA BAR mi-ki-i +4'. [x x x x x x x x x x x x x x x x x x x x PI]Š₁₀.{d}ID₂ {na₄}mu-ṣa +5'. [x x x x x x x] {na₄#}AN#.ZAH#.GE₆# {na₄#}ZALAG₂# NA₄ AN.BAR {na₄}KA.GI.NA DAB.BA +6'. [x x x x Š]A₃ ŠUB#-di# EN₂# 7-šu₂ ŠID#-nu-ma SAG.KI-MEŠ-šu₂ +7'. [x x hu-u]p-pat# IGI-MIN-šu₂ ŠEŠ₂-MEŠ-ma SILIM-im ina-ah +8'. [x x x D]AB-su-ma SAG.KI.DAB.BA TUKU.TUKU-ši NA₄ KUG.BABBAR NA₄ KUG.SIG₁₇# {na₄}GUG +9'. [x x x {n]a₄}MUŠ.GIR₂ {na₄}SAG.DU {na₄}NIR₂ {na₄}BABBAR.DILI {na₄}ZALAG₂ {na₄}mu-ṣa +10'. [{na₄}AN.ZA]H {na₄}ŠUBA {na₄}ZU₂# GE₆ {na₄}ŠU.U NITA₂ u MUNUS {na₄}SAG.GIL.MUD +11'. [{na₄}SAG.K]I? NA₄ AN.BAR {na₄}PA ša₂ 7 GUN₃-MEŠ-ša₂ {na₄}ia₂-ni-bu# {na₄}ka-pa-ṣu +12'. [NA₄ DU₃.A.B]I? an-nu-ti ina SIG₂ {munus}AŠ₂.GAR₃ GIŠ₃.NU.ZU SA MAŠ#.DA₃ {u₂}NINNI₅ NITA₂ +13'. [NU.N]U? E₃-ak {u₂}tar#-muš# {u₂}IGI-lim {u₂}IGI.NIŠ +14'. [{giš}M]A?.NU {u₂}DILI {u₂#}ap₂#-ru#-ša₂ {u₂}ak-tam {u₂}el#-kul-la {u₂}KUR.KUR +15'. [x x] x lu {u₂}x x {u₂}HAR.LUM.BA.ŠIR {u₂}IN₆.UŠ₂ NUMUN {giš}ŠINIG +16'. [U₂ DU₃?.A?.BI?] an#-nu-ti e-ma KEŠDA ina {sig₂}HE₂.ME.DA NI[GI]N-mi +17'. [EN₂ SAG.K]I MU#.UN.DAB ŠID-nu-ma ina SAG.KI-šu₂ KEŠDA#-su# +18'. [{na₄}aš-p]u-u₂ ša₂ UD.SAKAR kul-lu-mu {na₄}MUŠ.GIR₂ {na₄#}SAG#.GIL#.MUD# +19'. [NA₄ A]N.BAR ŠUB AN {na₄#}SAG.DU {na₄}SAG.KI {na₄}ŠIM.BI.ZI.DA {na₄}lu-lu-da#-ni#-[tu₂] +20'. [{na₄}]ŠUBA SIG₇ {na₄#}ZA#.GIN₃# {na₄}GUG NA₄ BAL SA₅ NA₄# BAL GE₆ NA₄ BAL SI[G₇] +21'. [{n]a₄}ar₂-zal-la NA₄ MUŠ SA₅ {na₄}DUR₂.MI.NA {na₄}DUR₂.MI.NA.BAN₃.D[A] +22'. [{n]a₄}GI.RIM.HI.LI.BA NA₄# {giš#}MES {na₄}ŠURUN {d}GUD {na₄}KA.GI.NA DAB.BA +23'. {na₄}BABBAR.DILI {na₄}BABBAR.MIN₅ NA₄# DU₃#.A.BI GAZ SUD₂ it-ti nap-šal-ti u ṣi-in-di +24'. ša# SAG#.KI#.DAB# HI#.HI# SAG.KI-MEŠ-šu₂ ŠEŠ₂-MEŠ LAL-id +25'. NA₄ DU₃.A.BI an-nu-ti# KUG.SIG₁₇ tu-haz ina SAG.KI-šu₂ KEŠDA-su +26'. SUHUŠ {giš}DIH₃ ša₂ UGU# KI#.MAH# SUHUŠ# {giš}KIŠI₁₆ ša₂ UGU KI.MAH SI GUD ša ZAG +27'. SI# MAŠ₂ ša GUB₃ NUMUN {giš}ŠINIG NUMUN {giš}MA.NU {u₂}A.ZAL.LA +28'. 7# U₂.HI.A ṣi-in-di# ša₂# ŠU#.GIDIM.MA SAG.KI-MEŠ-šu₂ LAL-id +29'. {šim#}LI {šim}GUR₂.GUR₂ KA A.AB#.BA# PIŠ₁₀.{d}ID₂ +30'. [UH₂.{d}I]D₂? I₃#.UDU# ELLAG₂# UDU#.NITA₂?# DUH#.LAL₃ HI.HI SAG.KI-MEŠ-šu₂ LAL +31'. [...] x {giš}x x x x [...] + +1'. [x x x x x x x x x x x x x x x x x] x x +2'. [x x x x x x x x x x x x x x x x x] GIR₃#.PAD#.DU NAM.LU₂.U₁₈.LU# +3'. [x x x x x x x x x x x x x] UR#.GI₇# GE₆ SIG₂ SA.AD# +4'. [x x x x x x x x] HI#.HI ina NE SAR-šu₂ ina KUŠ +5'. %sux [x x x x x x x d]a-gan# imin#-bi {d}utu nam-tar nam-tar-ra +6'. %sux [x x x nam-ba]-luh# u-me-luh# nam-mu-un-da-MIN-bur₂-ra +7'. %sux [nam-mu-un-d]a-MIN-la₂-e# : al-li ma-da ma-da-bi +8'. %sux [{d}e]n-ki lugal# abzu-ke₄# : {d}asal-lu₂-hi dumu# eridu{ki}-ga-ke₄ +9'. %sux nam-mu-un-da-bur₂#-bur₂-re# : zi an-na he₂-pad₃ zi ki-a he₂-pad₃ +10'. KA.INIM.MA SAG.KI.DAB.BA.KAM₂ +11'. DU₃.DU₃.BI {sig₂}HE₂.ME.DA# SIG₂# BABBAR# SA# MAŠ#.DA₃ {u₂}NINNI₅ NITA₂ DIŠ-niš NU.NU 7 u 7 +12'. KEŠDA KEŠDA {u₂}DILI KA A.AB#.BA ni#-kip-ta₅ PIŠ₁₀.{d}ID₂ UH₂.{d}ID₂ SUHUŠ {giš}NAM.TAR NITA₂ +13'. NUMUN {giš}ŠINIG SI DARA₃.MAŠ gul-gul# NAM#.LU₂.U₁₈.LU U₂.HI.A an-nu-ti e-ma KEŠDA +14'. ina SIG₂ SA₅ NIGIN-mi EN₂ 7-šu₂ ŠID-nu MUD₂ {giš}EREN# TAG-at ina SAG.KI-šu₂ tara-kas₂ +15'. gul-gul LU₂.U₁₈.LU tur-ar₂ SUD₂ ina I₃# ŠEŠ₂#-su ŠE₁₀ ŠAH ME.ZE₂ ŠAH# +16'. GIR₃.PAD.DA.LUGUD₂.DA ŠAH gul-gul LU₂.U₁₈#.LU NAGA.SI SI DARA₃.MAŠ# +17'. {u₂}KUR.RA {u₂}GAMUN.GE₆ sah-le₂-e DIŠ-niš GAZ# ina I₃.UDU GUD LIBIR.RA HI#.HI# +18'. ina NE SAR-šu₂ {u₂}an-ki-nu-ti {u₂}eli-kul-la KA tam-ti₃# ni#-kip-ta₅ NUMUN {u₂}GUR₅.UŠ# +19'. PIŠ₁₀.{d}ID₂ {na₄}mu-ṣa DIŠ-niš SUD₂ ina I₃ HI.HI SAG.KI-MIN-šu₂ KI.TA UGU#-šu₂# u MURUB₄ UGU-šu₂ ŠEŠ₂-ma NA BI TI#-uṭ# +20'. %sux EN₂ sag-ki mu-un-ta-gig dab-ba sag-ki mu-un#-ta-bi-gig dab-ba# +21'. %sux sag-ki hul gig sa gig dab-ba zi {d}asal-lu₂-hi dumu# eridu#{ki#}-ga-ke₄ zi pad₃-da hun-ga₂ TU₆#.EN₂# +22'. DU₃.DU₃.BI PA {giš}GIŠIMMAR ša₂ {im}SI#.SA₂# ša₂ ina NU IM i-nam-zu-zu TI-qe₂# +23'. 7-šu₂ ana 15 7-šu₂ ana 150 ta-pat#-til 7 u 7 KEŠDA KEŠDA EN₂ 7-šu₂ ŠID#-nu# ina# SAG#.KI#-šu₂# KE[ŠDA] +24'. %sux EN₂ sag#-ki# mu#-un-dab sag si-sa₂ mu-un-dab# sag# sahar?#-ra mu-un-dab +25'. %sux mu-u[n-dab m]u-un-dab-dab a-da-pa abgal e[rid]u{ki}-ga-ke₄ +26'. %sux sag-ki# mu#-un#-dab sag sahar-ra mu-un-dab TU₆#.EN₂# E₂.NU.RU +27'. [D]U₃.DU₃.B[I {s]ig₂}HE₂.ME.DA NU.NU 7 u 7! KA.KEŠDA KEŠDA e#-ma KE[ŠDA] +28'. [{n]a₄}S[AG].DU E₃-ak EN₂ 7-šu₂ ŠID-nu ina SAG.KI-šu₂# [KEŠDA] +29'. %sux [E]N₂ a.ra tu.e a.ra ba.tu.e ti.la [x x] +30'. %sux [šu d]u₃.du₃#.meš šu ne.ne.a.meš eridu{ki}.ga mu.un.tum₂ [TU₆.EN₂] +31'. [x x x x {giš}GIŠIMM]AR ša₂ {im}SI.SA₂ ša₂ ina NU IM i-nam-zu-z[u TI-qe₂] +32'. 7# u# [x x x E]N₂ 7-šu₂ ŠID-nu ina SAG.KI-šu₂ tara#-[kas₂ x x x] +33'. %sux E[N₂ x x x x x ri].ba#.ak#.ti ti.e.[na x x x] +34'. %sux hat#.[ru.um.ma x x x x x x x x x x x x x x x] +35'. %sux k[u? x x x x x x x x x x x x x x x x] +36'. E[N₂ x x x x x x x x x x x x x x x x x x x] +37'. E[N₂ ...] + +1'. ina# UGU# GI#.[DU₈ x x x x x x x x x x x x x] +2'. GI-a-an L[U₂ x x x x x x x x x x x x x x x x x] +3'. 3-šu₂ tu-šaq-ba#-šu₂#-m[a x x x x x x x x x x x x] +4'. GIR₃.PAD.DU LU₂ kup-ra# [x x x x x x x x x x x x x x x x] +5'. MUD₂ {giš}EREN I₃.SUMUN BA[RA₂ x x x x x x x x x x x x x x x x x] +6'. %sux EN₂ sag-ki mu-un-da[b x x x x x x] +7'. %sux sag sahar-ra m[u-un-dab] x x x [x x x x x x] +8'. %sux {d}asal-lu₂-hi sag giš ra# [mu-un-da]b? mu-un-dab# [x x x x x x x x x x] +9'. DU₃.DU₃.BI {na₄}ZU₂ GE₆ [x x] NITA u MUNUS {na₄}x [x x x] +10'. {na₄}ŠUBA SIG₇ [x x] x ina SAG.KI-šu₂# [tara-kas₂] +11'. %sux EN₂ sag-ki-ni sag-ki he₂#-e[n-g]i₄-gi₄ i-bi₂-ni i-bi₂ he₂-en-g[i₄-gi₄] +12'. %sux mu-ru-ub-bi-ni mu-ru-u[b-bi h]e₂-en-gi₄-gi₄ he₂-bi-da-a-na#-mul#-la he₂-en-da#-a# [x (x)] +13'. DU₃.DU₃.BI {u₂}aš-lam# NITA₂ SA# MAŠ.DA₃ TEŠ₂.BI NU.NU 7 u 7 +14'. KA.KEŠDA KEŠDA e-ma KA#.KEŠDA EN₂ ŠID-nu# +15'. UB.PAD NITA₂# u MUNUS x HUL₂# A.ŠA₃ DAL.DAL# +16'. KI KA.KEŠDA ina {sig₂}HE₂.ME.DA# NIGIN-mi ina SAG.KI-šu₂ tara-kas₂ +17'. %sux EN₂ id₂-da-ta tir gal-gal-la-ta# tir si# d[ara₃]-maš ma[h-mah] +18'. %sux mul₄-mul₄ {giš}geštin gir₂ mu-un-kar-re# {giš}kiši₁₆# i₃#-gu₇# kal# muš#-[muš] +19'. %sux šu mu₂-mu₂-e-de₃ mul-mul kur-kur-ra# [sik]il-e du₈ i₃-ti-la tu#-ra# [x (x)] +20'. %sux du₈ nam-tag-ga lu₂-kar-ra mu-un#-sa₄#-a zag-du₈ nig₂-{giš}gag#-ti {giš}kiri₆# [x x x] +21'. %sux udug hul he₂-bad a-la₂ hul he₂-bad gidim# hul# [h]e₂-bad gal₅-la₂ hul# he₂#-bad# +22'. %sux dingir hul he₂-bad maškim₂ hul he₂-bad {d}di[m₁₀-m]e he₂-bad {d}dim₁₀-me-a he₂-bad +23'. %sux {d}dim₁₀-me-lagab he₂-bad zi an-na he₂-pad₃ zi# [k]i-a he₂-pad₃ TU₆.EN₂ +24'. KA.INIM.MA SAG#.KI.DAB.BA.KE₄ +25'. DU₃.DU₃.BI SIG₂ SA₅ SIG₂ BABBAR DIŠ-niš NU.NU {na₄#}ZALAG₂?# SI# DARA₃#.MAŠ# NA₄ ZU₂.LUM.MA E₃ +26'. 7 KA.KEŠDA KEŠDA e-ma KEŠDA EN₂ ŠID-nu ina SAG.KI#-MIN#-šu₂# tara-kas₂-ma AL.TI +27'. %sux EN₂ sag-ki-dab-ba sag-ki-dab-ba sag-ki-dab-ba nam-lu₂#-u₁₈-lu-ke₄ +28'. %sux sag-ki-dab-ba dingir-re-e-ne-ke₄ sag-ki-dab-ba tu#-ra hun-ga₂-ke₄# +29'. %sux sag-ki-dab-ba nam-lu₂-u₁₈-lu gar-ra he₂-en-hun#-ga₂# TU₆.EN₂ +30'. %sux EN₂ sag si-sa₂ mu-un-dab sag sahar-ra mu-un-dab zag gar-ra sag gar-r[a x x x x] +31'. %sux tu₆-tu₆ gar-ra he₂-en-hun-ga₂ zi an he₂-pad₃ zi ki-a he₂-pad₃# T[U₆.EN₂] +32'. 2 KA.INIM.MA SAG.KI.DAB.BA.KAM ina UGU tak-ṣi-ri ša₂ {u₂}LU₂.U₁₈.LU# Š[ID-nu] +33'. %sux EN₂ sag-ki mu-ta-bi-gig dab-ba sag-ki hul dab-ba sag gig hul# d[ab-b]a +34'. %sux zi {d}asal-lu₂-hi dumu eridu{ki}-ke₄ zi pad₃-da hun-ga₂ TU₆.EN₂ +35'. KA.INIM.MA SAG.KI.DAB#.BA.KAM# +36'. EN₂ an-ni-ta₅ ina UGU nap-šal-ti ina UD#.HUL#.GAL₂#-e 7-šu₂ ŠID-nu#-ma# +37'. SAG.KI-MIN-šu₂ MURUB₄ UGU-hi-šu₂ KI#.[TA UGU-hi-šu₂ TA]G.TAG-ma ina-ah +38'. 18 KA.INIM.MA [SAG.K]I.DAB.BA.KAM# +39'. %sux [E]N₂ sag#-du huš sag-du huš# s[ag-du huš]-huš sag %akk re-eš %sux sag-du huš +40'. %sux [lugal {d}]asar#-alim he₂-til lugal {d#}en#-k[i he₂-til lu]gal {d}asal-lu₂-hi he₂-til TU₆.EN₂# +41'. [KA.INIM.MA] SAG.KI.DAB.BA.KAM# +42'. [DU₃.DU₃.BI x x x x x x SI]G₂ BABBAR NU.NU 7 u 7 +43'. [KA.KEŠDA KEŠDA e-ma KEŠDA EN₂ ŠID-n]u ina SAG.DU-šu₂ KEŠDA# +44'. %sux [x x x x x x x x x x x {munus}aš₂-g]ar₃ giš₃-nu-zu šim-me mu-un-zu +45'. %sux [x x x x x x x (x)] TU₆.EN₂ +46'. [KA.INIM.MA SAG].KI#.[DAB.BA].KAM# + +1'. [x x x x x x x] {na₄#}HAR#.LUM#.BA#.ŠIR# SAR#-šu₂# +2'. [DIŠ NA SA]G.KI# 1[50-šu₂ x x x] ina# [U₄] 9#.KAM ša {iti}GU₄ +3'. {u₂#}IGI-lim {u₂}IG[I.NIŠ {u₂}tar]-muš {u₂}eli-kul-la +4'. {u₂#}ha-šu-ta₅ ša₂ 7 SAG.DU#-MEŠ#-ša₂# I₃.SUMUN E₂ {d}AMAR.UTU ina SA AB₂.RI.RI.GA +5'. [DU₃.D]U₃-pi₂ ina GU₂-šu₂ GAR-an {na₄}SAG.DU ina SAG.KI-šu₂ KEŠDA-su +6'. EN₂# %sux in.da ri.ti ra.ah ŠID-nu +7'. DIŠ NA GEŠTU ZAG-šu₂ TAG-su IM DIRI-at u MU₂-MEŠ U₄ 19.KAM : U₄ 9.KAM ša {iti}NE +8'. {giš}NU.UR₂.MA KU₇.KU₇ ša₂ ina UGU GIŠ-ša₂ zaq-pat A-MEŠ-ša₂ ta-še-ṣa-aʾ +9'. I₃ DUG₃.GA ana ŠA₃ GEŠTU-šu₂ ŠUB I₃ {šim}BAL ana SAG.DU-šu₂ ŠUB sil₂-qit KUM₂ GU₇-MEŠ +10'. [DIŠ] NA GEŠTU GUB₃-šu₂ TAG-su IM DIRI-at u MU₂-MEŠ U₄ 15.KAM ša {iti}KIN +11'. [I₃.U]DU KUR.GI{mušen} ŠEG₆-šal bah₃-ru-us-su ana ŠA₃ GEŠTU-MIN-šu₂ ŠUB +12'. UZU# KUR.GI{mušen} ŠEG₆-šal# GU₇ +13'. I₃# {giš}EREN ana SAG.DU-šu₂ ŠUB-di hi#-ib-ṣa ina sah-le₂-e GU₇ +14'. [DIŠ] NA KIR₄ ZAG-šu₂ TAG-su ina U₄ 1.KAM ša {iti}SIG₄ ŠU.SI GUB₃-šu₂ GAL 7 NE GAR-an +15'. [M]UŠ.DIM₂.GURUN.NA ša₂ EDIN U₅-MEŠ ina UGU KIR₄-šu₂ u₂-hap-pa +16'. [IL]LU {šim}BULUH ana GEŠTU GUB₃-šu₂ GAR-an +17'. [DIŠ] NA KIR₄ GUB₃-šu₂ TAG-su ina U₄ 11.KAM ša {iti}ŠU# +18'. [SU]M{sar} ina UGU u₂-haš-ša₂ tul-ta₅ ša₂ ŠA₃ GI +19'. [ina U]GU KIR₄-šu₂ u₂-hap-pa ŠU.SI ZAG-šu₂ 7 NE GAR-an +20'. [IL]LU {šim}BULUH ana ŠA₃ GEŠTU-MIN-šu₂ GAR-an +21'. [na]p-ša₂-la-tu₂ tak#-ṣi-ra-nu lat-ku-tu₄ ba-ru-ti ša₂ ana ŠU# šu-ṣu₂-u₂ +22'. ša₂# KA ABGAL-MEŠ-e la-bi-ru-ti ša₂ la-am A.MA₂.URU₅ +23'. ša₂# i-na šuruppak{ki} MU 2.KAM {m.d}EN.LIL₂#-ba-ni LUGAL {uru}i₃-ši-in{ki} +24'. {m#.d}EN.LIL₂-mu-bal-liṭ ABGAL NIBRU{ki} e[z-b]u la# mu-du-u mu-da-a li-kal-lim +25'. mu-du-u la mu-da-a la u₂#-[kal]-lam NIG₂.GIG {d}AMAR.UTU +26'. DIŠ NA SAG.DU-su GIG-MEŠ mat#-[qu-t]a₅? TAB UD.DA DIRI +27'. DUB# 3.KAM₂.MA DIŠ NA UGU-šu₂ KUM₂ u₂-kal +28'. [E₂.GAL {m}AN.ŠAR₂-DU₃-A MAN ŠU₂ MA]N KUR AN.ŠAR₂{ki} ša {d}AG u {d}taš-me-tu₄ GEŠTU-MIN ra-pa-aš₂-ta₅ iš-ru-ku-uš +29'. [i-hu-uz-zu IGI-MIN na-mir-tu₄ ni-siq] ṭup#-šar#-ru#-ti# +1. DIŠ NA UD.DA KUR-id# ZI# SAG#.KI# G[IG x x x x x x x] +2. ru-uš-šu ša# sip?#-pi?# ABUL?# TI-qe₂# KI# [x x x x x x x] +3. DIŠ NA MIN KUM₂ TUKU ana T[I.B]I {u₂#}ap₂?#-ru#-šu₂# ina I₃?#.[GIŠ x x x x x x x x] +4. ta-sak₃ ina KAŠ ŠEG₆#-šal# ŠEŠ₂#-su [x x x x x x x] +5. DIŠ NA MIN NINDA u KAŠ# NU i-le#-em ana T[I.BI x x x x x x x] +6. ILLU a#-bu-kat₃ KUR#-i ta#-sak₃ ina# hi#-i[q KAŠ x x x x x x x x x x] +7. DIŠ NA MIN ku-ṣu₂ hur#-ba#-šu₂ ŠUB#.ŠUB#-[su x x x x x x x x x x x] +8. ana UDUN {lu₂}se-p[i-i x x x x x x x x x] +9. DIŠ NA MIN KUM₂# TU[KU x x x x x x x x x x x x x x x] +10. ŠEŠ₂-su [x x x x x x x x x x x x x x x x x] +11. DIŠ NA MIN [x x x x x x x x x x x x x x x x x x x x x] +12. x x [x x x x x x x x x x] + +1'. ša# [ina LUGAL-MEŠ-ni a-lik mah-ri-ia mam₂-ma šip-ru šu-a-tu la e-hu-uz-zu] +2'. bul#-ṭi# T[A muh-hi EN UMBIN liq-ti BAR-MEŠ ta-hi-zu nak-la] +3'. a#-zu#-ga[l-lu-ut {d}nin-urta u {d}gu-la ma-la ba-aš₂-mu] +4'. ina ṭup-pa-a-n[i aš₂-ṭur as-niq IGI.KAR₂-ma] +5'. a-na ta-mar#-t[i ši-ta-si-ia qe₂-reb E₂.GAL-ia u₂-kin] +1'. {u₂#}HAR#.HAR# [x x x x x x x x x x x x x x x] +2'. ZI₃ GIG DIDA# S[IG₅ x x x x x x x x x x x x] +3'. {šim}GUR₂.GUR₂ {šim}LI ni#-kip#-t[a₅ x x x x x x x x x] +4'. {šim}ŠEŠ ZI₃ GIG [x x x x (x x x) x x x x x x x] +5'. {šim}GUR₂.GUR₂ {šim}LI {šim.d}NIN.URTA DIŠ-niš G[AZ x x x x x] +6'. ina KAŠ ta-la₃-aš tu-ba-har SAG.D[U-su x x x x x] +7'. {šim}GUR₂.GUR₂ {šim}LI {šim.d}NIN.URTA NUMUN {u₂}ka#-[man-ti x x x x x x] +8'. DIŠ-niš GAZ SIM ina KAŠ tara-bak SAG.DU-su [x x x x x] +9'. PA# {giš}GIŠIMMAR ša₂ ina NU IM i-nam-zu-zu TI-qe₂ ina UD.DA HAD₂.A# [x x x x x x x x x] +10'. {u₂}ap₂-ru-ša SUD₂ ina I₃ HI.HI ILLU {giš}a-bu-k[a-tu₂ x x x x] +11'. EN₂ A.RA.ŠE.RA A.RA.BA.ŠE.RA IZI BIL.L[I x x x x] +12'. 7-šu₂ u 7-šu₂ ana ŠA₃ ŠID-nu SAG.KI-šu₂ [x x (x x)] +13'. {u₂}KUR.KUR ni-kip-ta ina NE tu-qat-tar-šu₂ {šim}GUR₂.GUR₂ n[i-kip-ta x x] +14'. NUMUN {u₂}AB₂.DUH KA# A#.AB.BA {šim}ŠEŠ DIŠ-niš SUD₂ ina I[ZI x x x x x x] +15'. {na₄}mu-ṣu₂ {šim.d#}MAŠ# KA A.AB.BA UH₂#.{d#}ID₂# [DIŠ-niš] SUD₂# +16'. ina {sig₂#}HE₂.ME.DA NIGIN I₃ ŠEŠ₂ [x x x (x) KEŠ]DA-as +17'. [ni-ki]p?-[ta?] x [x x] x [...] TAG.TAG +18'. [...] x x x [...] x x I₃#.UDU# ELLAG₂ HI.HI SAG.KI-šu₂ TAG +19'. 10# GIN₂ ZA₃#.[HI].LI#{sar#} 10 GIN₂ ŠE.SA.A ina A GAZI{sar} tara-bak LAL +20'. 10 GIN₂ ZA₃.HI#.LI{sar#} 10# GIN₂ IM.BABBAR 10 GIN₂ ZI₃ ŠE.SA.A ina A GAZI{sar} tara-bak LAL +21'. TUKUM.BI LU₂ U₃ SAG.KI DAB-su ru-ša-am ša SUHUŠ {giš}IG ABUL +22'. ina a-ṣi-ka ša₂ ana GUB₃-ka GUB-zu ŠU.TI SIG₂ {munus}AŠ₂.GAR₃ GIŠ₃.NU.ZU +23'. [ina] {sig₂#}HE₂.ME.DA KEŠDA-as₂ ina SAG.KI-šu₂ KEŠDA-ma NA BI TI +24'. [TU]KUM.BI LU₂ U₃ SAG.KI DAB-su PA {giš}GIŠIMMAR ša i-nam-zu-zu TI-qe₂ +25'. [HAD₂.A] GAZ# SIM ina KAŠ SILA₁₁-aš SAG.KI-šu₂ LAL-ma NA BI TI#-uṭ# +26'. [TU]KUM.BI LU₂ U₃ SAG.KI DAB-su PA {giš}GIŠIMMAR ša ina-zu-zu TI-qe₂ +27'. ina# SAG.KI-šu₂ tara-kas₂-ma NA BI TI-uṭ +28'. TUKUM.BI LU₂ U₃ SAG.KI DAB-su {giš}DIH₃ ša ina-zu-zu ŠU.TI +29'. ina {sig₂}AKA₃ NIGIN ina {sig₂}HE₂.ME.DA tara-kas₂ ina SAG.KI-šu₂ tara-kas₂ NA BI TI-uṭ +30'. TUKUM.BI LU₂ U₃ SAG.KI DAB-su {sig₂}HE₂.ME.DA# MUNUS ša₂ MUD AL.KUD NU.NU SA MAŠ.DA₃ {u₂}NINNI₅ NITA₂ +31'. KI {sig₂}HE₂.ME.DA ta-pat-til {na₄}NIR₂ {na₄}MUŠ.GIR₂# {na₄#}BABBAR.DILI {na₄}ZU₂ GE₆ KEŠDA ina SAG.KI-šu₂ KEŠDA NA BI TI-uṭ +32'. TUKUM.BI LU₂ U₃ SAG.KI DAB-su la-aš-hi MUŠ TAB GIR₂.TAB {sig₂}HE₂.ME.DA +33'. {u₂}aš₂?#-lu# NITA₂ SA MAŠ.DA₃ DIŠ-niš NU.NU {sig₂}AKA₃ NIGIN ina SAG.KI-šu₂ tara-kas₂-ma NA BI TI-uṭ +34'. TUKUM.BI LU₂ U₃ SAG.KI DAB-su {tug₂}NIG₂.DARA₂.ŠU.LAL₂ ina DUR +35'. {sig₂}AKA₃ NIGIN-mi ina SAG.KI-šu₂ KEŠDA-ma NA BI TI-uṭ +36'. DIŠ LU₂ ZI SAG.KI TUKU u₃ ri-mu-ta₅ TUKU PA {giš}ŠE.DU₃.A HAD₂#.DU# GAZ SIM +37'. ZI₃ ŠE.MUŠ₅ sah-le₂-e ARA₃-ti₃ ZI₃ ŠE.SA.A DIŠ-niš SUD₂ ina A GAZI{sar} tara-bak LAL.LAL-ma TI +38'. [DIŠ N]A ZI SAG.KI TUKU u₃ ri-mu-ta₅ TUKU# PA {giš}šu-nim HAD₂.A GAZ SIM +39'. [ina ZI₃] GIG# sah-le₂-e# x [x x] ina A.GEŠTIN.NA tara-bak LAL-su +40'. [x x x x x x x x x x x x] GAZ# SIM# {šim}ŠEŠ +41'. [x x x x x x x x x tara]-bak# LAL +42'. [x x x x x x x x x x x x x x x x x x x Z]I₃ GIG sah-le₂-e +43'. [x x x x x x x x x x] TI +44'. [x x x x x x x x x x x x x x x x x x x x x x G]I gu-ur GI.ŠUL.HI +45'. [x x x x x x x x x x x x x x x x x x x x x x x K]I.MAH# GUB-zu +46'. [x x x x x] ŠEŠ₂ +47'. [x x x x x x x x x x x x x x x x x x x x tara-ba]k LAL +48'. [x x x x x x x x x x x x x x x x x x x x x x x x {u₂}SU.AN].DAR?# ZI₃?# + +1'. DIŠ NA [x x x x x x x x x x x x x x x x x x x x x x x] +2'. ZI₃ ŠE.S[A.A x x x x x x x x x x x x x x x x x x x x x x x] +3'. DIŠ NA SA[G.KI x x x x x x x x x x x x x x x x x x x] +4'. {giš}KIŠ[I₁₆.HAB x x x x x x x x x x x x x x x x x x x x x x] +5'. DIŠ NA SAG.KI GUB₃#-[šu₂ x x x x x x x x x x x x x x x] +6'. {u₂}SU.AN.DAR# [x x x x x x x x x x x x x x x] +7'. DIŠ NA SAG.KI-MIN-šu₂ ṣa[b-ta-šu₂-ma x x x x x x x x x x x x x x x x] +8'. DUH.ŠE.GIŠ.I₃ ša₂-bu-l[u-te x x x x x x x x x x x (x)] +9'. DIŠ NA SA SAG.KI ZA[G-šu₂ ...] +10'. {u₂}SI.SA₂ ZI₃ G[IG ...] +11'. DIŠ NA SA SAG.KI GU[B₃-šu₂ ...] +12'. {u₂}SI.SA₂ [...] +13'. DIŠ NA SA SAG.KI Z[AG-šu₂ x x x x x x x x x x x x x x x x x x] +14'. {u₂}EME UR.GI₇ i[na x x x x x x x x x x x x x x x x x x x] +15'. DIŠ NA SA SAG.K[I x x x x x x x x x x x x x] +16'. DIŠ NA SA S[AG.KI x x x x x x x x x x x x x x x x x] +17'. sah-le₂-e# [x x x x x x x x x x x x x x x x x x] +18'. DIŠ NA x [...] +19'. LAL-m[a? ...] +20'. DIŠ N[A ...] +21'. DIŠ [...] + + +1'. DIŠ# KIMIN# x [...] +2'. ZU₂.LUM SA₅# x [...] +3'. DIŠ NA SA SAG.KI-MIN-šu₂ Z[I? ...] +4'. {u₂}ŠAKIRA {u₂}EME# UR.GI₇# {u₂?#}[...] +5'. U₂ BABBAR lu-ur-pa-na {( : IM.BABBAR {na₄}NIG₂.KALAG.GA )} {na₄}as-h[ar? ...] +6'. DIŠ KIMIN KU.KU {na₄}AŠ₂.GI₄.G[I₄ ...] +7'. DIŠ KIMIN PA {giš}ŠINIG SIG₇-su# [...] +8'. ana ŠA₃ {na₄}PEŠ₄ tu x [...] +9'. DIŠ NA ina DAB GIDIM S[AG.KI-šu₂ ...] +10'. SA# IGI-MIN-šu₂ u₂-za[q-qa-su ...] +11'. [{n]a₄}mu-ṣa {na₄}x [...] +12'. [N]A₄ AN.BAR {n[a₄} ...] +13'. [E]N₂ %sux ur-sag {d}as[al-lu₂-hi ...] +14'. [DIŠ N]A SAG.KI-šu₂ D[AB-su-ma ...] +15'. [DIŠ?-ni]š? SUD₂?# [...] +23'. [x x x (x)] {u₂#}IGI#-lim# {u₂#}tar#-muš# [x x x x x x x x x x] +24'. SIG₂# BABBAR# {u₂}NINNI₅# NITA₂ NU.NU EN₂# [x x x x x x x x x] +25'. A.RI.A NAM.LU₂.U₁₈.LU SAG.KI#-šu₂# [x x x x x] +26'. ni-kip-ta₅ DIŠ-niš SUD₂ ina I₃ {giš}EREN HI.HI ŠEŠ₂.ME[Š-ma TI] +27'. DIŠ NA SAG.KI.DAB.BA-ma SA.GU₂-šu₂ GU₇.MEŠ-šu₂ ŠU.GIDIM.MA {giš}s[i-hu x x x x] +28'. {u₂}ba-ri-ra-ta₅ GI.ŠUL.HI GAZ SIM ina A GAZI{sar} [x x x x] +29'. DIŠ NA SAG.KI.DAB.BA-ma TA {d}UTU.ŠU₂.A EN EN.NUN.UD.ZAL.LI G[U₇-šu₂ x x x] +30'. DIŠ NA SAG.KI.DAB.BA-ma ŠA₃ ŠA₃-bi GU₃.GU₃-si ŠU.GIDIM š[a₂-ne₂-e x x x x] +31'. DIŠ NA SAG.KI.DAB.BA-ma ma-gal BURU₈ KI.NA₂ la i#-[na-aš-ši UŠ₂] +32'. DIŠ NA SAG.KI.DAB.BA-ma ma-gal [x x x] +33'. SA SAG.KI-šu₂ ma-gal te-bu-u₂# x [x x x x x] +34'. an#-nu-tu₄ x x x x [x x x x x x x x x x] +35'. [šum-ma SAG.KI.DAB.BA ŠU.GIDIM.MA ina SU NA il-ta-za-az-ma NU DU₈] +36'. DUB# 2#.KAM₂# DIŠ NA U[GU-šu₂ KUM₂ u₂-kal] +37'. E₂.GAL {m}AN.ŠAR₂-DU₃-A MAN ŠU₂ MAN KUR AN.ŠAR₂{ki} ša {d}AG# {d#}taš#-[me-tu₄ GEŠTUG-MIN DAGAL-tu₂ iš-ru-ku-šu₂] +38'. e-hu-uz-zu IGI#-MIN# na#-mir#-tu₄# ni#-siq# ṭup#-š[ar-ru-ti] +39'. ša ina LUGAL-MEŠ-ni a-lik mah-ri-ia mam₂-ma šip#-ru# šu₂-a-tu la! e-h[u-uz-zu] +40'. bul-ṭi TA muh-hi a-di UMBIN liq-ti BAR-MEŠ ta-hi-zu [nak-la] +41'. a#-zu-gal-lu-ut {d}nin-urta u# {d#}gu-la ma-l[a ba-aš₂-mu] +42'. ina ṭup-pa-a-ni aš₂-ṭur as-niq I[GI.KAR₂-ma] +43'. a-na ta-mar-ti ši-ta-si-ia qe₂-reb E₂.G[AL-ia u₂-kin] +1. DIŠ NA SAG ŠA₃-šu₂ GU₇-šu₂ ina ge-ši-šu ZE₂ im-ta-na-ʾa NA BI qer-be₂-na# GIG +2. SUM{sar} GA.RAŠ{sar} UZU GUD UZU ŠAH KAŠ {lu₂}KURUN₂.NA NU uš-ta-mah-har# ana TI-šu₂ +3. 1/2 SILA₃ ZA₃.HI.LI 1/2 SILA₃ {šim}LI 1/2 SILA₃ {šim}GUR₂.GUR₂ 1/2 SILA₃ NUMUN GADA 1/2 SILA₃ pa-pa-si MUNU₆# 1/2 SILA₃ {šim}IM.DI +4. 1/2 SILA₃ NUMUN {u₂}qut-ra-ti 1/2 SILA₃ GAZI{sar} 1/2 SILA₃ {giš}ŠE.NU 1/2 SILA₃ GU₂.NIG₂.AR₃.RA 1/2 SILA₃ pa-pa#-si-{d}ID₂ +5. 1/2 SILA₃ U₂ a-ši-i 1/2 SILA₃ {u₂}KUR.RA 1/2 SILA₃ ŠE₁₀ TU{mušen} 1/3 SILA₃ NUMUN {u₂}AB₂.DUH 1/3# SILA₃ e#-reš-ti A.ŠA₃ +6. 10 KISAL ILLU {šim}BULUH 10 KISAL KA A.AB.BA 1 SILA₃ ZI₃ GIG 1 SILA₃ ZU₂.LUM.MA 1 SILA₃ DIDA# SIG +7. 1# SILA₃ ZI₃.KUM TEŠ₂.BI GAZ SIM ina KAŠ GIM ra-bi-ki ta-rab-bak ina TUG₂.HI.A SUR-ri šu-lu-uš-ti 9 UD#-me# LAL +8. ina 4 UD-me DU₈-ma ta-mar šum₂-ma U₃.BU₂.BU₂.UL BABBAR ŠA₃-šu₂ i-pa-šah# +9. šum₂-ma U₃.BU₂.BU₂.UL SA₅ ŠA₃-šu₂ KUM₂ u₂-kal šum₂-ma U₃.BU₂.BU₂.UL SIG₇ UD.DA KUR-id +10. GUR.GUR-šu šum₂-ma U₃.BU₂.BU₂.UL GE₆ u₂-šam-ra-su-ma NU TI +11. ana U₃.BU₂.BU₂.UL bu-le-e {u₂}LAG A.ŠA₃ IM.GU₂ ša₂ UD.DA SA₂-kat₃ +12. GAZ SIM ina A GAZI{sar} ta-la-aš₂ LAL-id EGIR-šu₂ sah-le₂-e ina KAŠ NAG +13. UD-ma NAG-u₂ ina A {giš}šu-nu {giš}ŠINIG {u₂}ak-tam {u₂}IN₆.UŠ₂ ir-ta-na-haṣ +14. DIŠ NA ZE₂ GIG SUM{sar} SUD₂ ina A NU pa-tan NAG +15. A.GEŠTIN.NA KALAG.GA AL.US₂.SA GAZI{sar} kab-ru-ti NAG +16. KAŠ.BIR₈ NAG tu-ša₂-ʾ-raš-šu₂ +17. GAZI{sar} SUD₂ ina A NAG : MUN SUD₂ ina A NU pa-tan NAG : MUN SUD₂ ina KAŠ NU pa-tan NAG +18. ILLU a-bu-kat₃ GAZ ana ŠA₃! KAŠ₃!.BIR₈ ŠUB-di ina MUL₄ tuš-bat ina še-ri₃ LAL₃ I₃ hal-ṣa ana ŠA₃ ŠUB NAG-ma i-ar₂-ru +19. NUMUN GI.ZU₂.LUM.MA SUD₂ ina KAŠ NAG : {u₂}nam-ruq-qa SUD₂ ina KAŠ NAG +20. U₂ DILI U₂ ZE₂ ina KAŠ NAG +21. U₂ me-er-gi-ra-nu U₂ ZE₂ ina KAŠ NAG# GAZI{sar} U₂ ZE₂ ina KAŠ NAG +22. U₂ {šim}LI U₂ ZE₂ ina KAŠ NAG U₂ NU.LUH.HA U₂ ZE₂ ina KAŠ NAG +23. U₂ BAR {giš}šu-ši U₂ ZE₂ ina KAŠ NAG PA {u₂}al-la-nu U₂ ZE₂ ina KAŠ NAG +24. U₂ U₅ ARGAB{mušen} U₂ ZE₂ ina KAŠ NAG U₂ LAG MUN U₂ ZE₂ ina KAŠ NAG +25. U₂ SUM{sar} U₂ ZE₂ ina KAŠ NAG U₂ SUHUŠ {giš}NAM.TAR NITA₂ U₂ ZE₂ SUD₂ ina KAŠ NAG +26. U₂ SUHUŠ {giš}šu-ši U₂ ZE₂ ina I₃ u KAŠ NAG U₂ ṣi-ba-ru U₂ ZE₂ SUD₂ ina A NAG +27. DIŠ NA NU pa-tan ŠA₃-šu₂ ana pa-re-e e-te-ne₂-la-a UH₂ ma-gal ŠUB-MEŠ A-MEŠ ina KA-šu₂ mal-da-riš DU-ku +28. pa-nu-šu₂ iṣ-ṣa-nu-du ŠA₃-MEŠ-šu₂ MU₂.MU₂-hu MURUB₄-MIN-šu₂ kim-ṣa-šu₂ TAG.GA-MEŠ-šu₂ KUM₂ ŠED₇ IR# TUKU-MEŠ-ši +29. NINDA u KAŠ LAL A ŠED₇ ma-gal NAG i-par-ru ina DUR₂-šu₂ GIŠ₃-šu₂ SIG₇ u₂-tab-ba-kam MUŠ₂-MEŠ-šu₂ i-te-nin-nu-u +30. UZU-MEŠ-šu tab-ku mim₃-ma GU₇-ma UGU-šu₂ ul DU₁₀.GA NA BI ZE₂ sah-pa-su ana TI-šu₂ {šim}GUR₂#.[GUR₂] +31. {šim#}LI# {šim}GAM.MA 3 U₂.HI.A ŠEŠ SIG₇-su-nu# TI-qe₂# HAD₂.A SUD₂ ina GEŠTIN KALAG.GA NU pa-tan# N[AG-šu₂] +32. SI#.SA₂#-ma# SAG# ŠA₃#-šu₂ ŠA₃-šu₂ LAL#-id# bah-ra GU₇# b[ah-ra NA]G UD#.3#.KAM tuš#-t[e-še-er-ma TI] +33. DIŠ KI.MIN {u₂}a-ra-ri-a-nu SUD₂ ina KAŠ NU# pa#-tan# N[AG-šu₂ x x x] +34. DIŠ KI.MIN {u₂}sah-la-a-nu SUD₂ ina GEŠTIN KALAG.GA NU pa-tan N[AG-šu₂ KI.MIN] +35. DIŠ KI.MIN {u₂}ṣi-bu-ru SUD₂ ina GA KU₇.KU₇ NAG#-[šu₂ KI.MIN] +36. DIŠ KI.MIN HENBUR₂ {u₂}UKUŠ₂.HAB SUD₂ ina GEŠTIN LAL₃ u I₃ hal-ṣi# NAG-šu₂ K[I.MIN] +37. DIŠ KI.MIN U₂ SIG-MEŠ ša₂ KUR-e ina GEŠTIN LAL₃ u I₃ hal#-ṣi# NAG-šu₂ KI#.[MIN] +38. DIŠ NA NINDA GU₇ KAŠ NAG-ma u₂-nap-paq u IGI-MEŠ-šu₂ NIGIN-MEŠ-du NA BI GIG ZE₂# GIG ana TI-šu₂ {u₂#}[UKUŠ₂.HAB BI]L₂ +39. ša₂ {im}SI.SA₂ ina A LUH-si {šim}BULUH tu-sal-lat {u₂}NU.LUH.HA te-be₂#-er 3 U₂.HI#.A# Š[EŠ ina KA]Š SAG +40. ki pi-i mal-ma-liš tara-muk ana IGI {mul}UZ₃ GAR-an GIŠ.HUR NIGIN#-mi ina# A₂#.[GU₂.ZI.GA ša-š]u₂-nu# ta-ša₂-hal +41. NU pa-tan NAG-ma i#-lap#-pat#-su#-ma# is-sal-la-ʾ la ta-na-k[ud T]I-uṭ# [ina] UD# ŠE#.GA NAG-šu +42. [x x] x x [x x] x me# ta# x [x x u]r₂-ne₂-e {šim}BAL {u₂}KUR.KUR {giš}GEŠTIN KA₅.A +43. [x x] ina 3 SILA₃ KAŠ# ina {urudu#}ŠEN#.[TUR ŠEG₆-šal E]N ana# 2 SILA₃ i-tur-ru i-kaṣ₃-ṣa-aṣ +44. [x x ana] IGI ŠUB-di pa-na A GAZI{sar} i-š[ah]-hat EGIR-šu₂ an-na-a ana DUR₂-šu₂ DUB-ak +45. [DIŠ] KI#.MIN# {u₂}UKUŠ₂.HAB HAD₂.A GAZ SIM KI ZI₃.KU[M H]I.HI ina A GAZI{sar} tara-bak ina KUŠ SUR LAL +46. DIŠ NA ina ti-bi-šu₂ SAG.DU-su ana IGI-šu₂ iš-ta-na-da#-as-su GU₂-su MURUB₄-MIN-šu₂ kim-ṣa-šu₂ GIR₃-MIN-šu₂ GU₇-MIN-šu₂ +47. ŠA₃-šu₂ ii-ʾ-aš₂ ŠA₃-šu₂ ana pa-re-e i-te-ne₂-el#-la# IGI#-MEŠ-šu₂ iṣ-ṣa-nu-du-šu₂ NA BI ZE₂ DAB-su ana TI-šu₂ +48. [{gi]š}EREN {giš}ŠUR.MIN₃ {šim}GIR₂ GI DU₁₀ NAGA SI {šim}IM#.[DU? MUN e]me-sal-li₃ ina KAŠ tara-bak ina NINDU UŠ₂-er ana DUR₂-šu₂ DUB-ak +49. {u₂#}NU.LUH.HA {šim}LI NA₄ ZU₂.LUM.MA# ina# [{na₄}ur-ṣ]i DIŠ#-niš ARA₃.ARA₃ ina I₃.UDU HI.HI alla-nu DU₃-uš I₃.GIŠ SUD ana DUR₂-šu₂ GAR +50. [DIŠ N]A GABA-su u ša₂-šal-la-šu₂ KUM₂-MEŠ ZU₂-MEŠ-šu₂# [i-hi-la] e#-peš KA-šu₂ DUGUD NA BI ZE₂ GIG ana TI-šu₂ +51. [{šim}]GUR₂.GUR₂ {šim}LI {šim}GAM.MA MUN I[LLU LI.TA]R {u₂}KU₆ U₂ BABBAR {u₂}HAB {u₂}ak-tam +52. [{giš}HAB] {u₂#}KUR.KUR U₅ ARGAB{mušen} 12 U₂#.[HI.A ŠEŠ DIŠ]-niš# ina KAŠ ba-lu pa-tan NAG-ma BURU₈ +53. [sa]h-le₂-e {u₂}KUR.RA kam-mu ILLU LI#.[TAR {ši]m}BULUH {šim#}LI {šim}GUR₂.GUR₂ ILLU {šim}BULUH +54. [NUMUN?] {u₂#}NU.LUH.HA ZI₃ {u₂}NU.LUH.HA [{u₂}u]r₂-nu-u TI-su-nu ina KAŠ NAG#-ma BURU₈ +55. [x x x] {u₂#}KUR.KUR {u₂}NU.LUH.HA [{u₂}HAR].HAR# {šim}ŠEŠ ILLU LI.DUR# KUR#-i# UH₂#.{d#}ID₂# +56. [x x] U₂# NAM#.TI#.LA# {u₂#}GAMUN# {u₂#}[x x] {u₂#}KUR#.RA sah-le₂-e GAZI{sar} 1[7? U₂.HI.A] ŠEŠ# [KI? MIN?] +57. [ILLU L]I.TAR U₂ BABBAR U₅ ARGAB{mušen} {u₂}a[k-tam x x x {ši]m}BULUH# x x [ina KAŠ NA]G-ma BURU₈ +58. [{u₂}K]UR.KUR ILLU LI.TAR U₂ BABBAR [... NAG-m]a BURU₈ +59. [GI D]U₁₀.GA {šim}MUG GAZI{sar} U₂ BABBAR x [... ina IZ]I ŠEG₆-šal NAG-ma BURU₈ +60. [{u₂}u]r₂-nu-u {u₂}SUMUN.DAR {u₂}šib-b[u?-ra-tu₂ x x x] {u₂#}KUR.RA {šim}IM.MAN.DU +61. [GI DU₁₀.G]A an-dah-še x [x x U₂.HI.A an-nu-t]i ina KAŠ NAG-ma BURU₈ +62. [GI DU₁₀.G]A PA {u₂}[... {š]im}BULUH U₂ NAM.TI.LA ZU₂.LUM.MA +63. [... ina MU]L₄ tuš-bat ina še-ri₃ NU pa-tan NAG-ma BURU₈ +64. [...] {u₂#}[x x x] x ILLU# LI.TAR 7 U₂.HI.A ŠEŠ ina KAŠ NAG-ma BURU₈ +65. [...] x {u₂}KUR#.K[UR {šim}GUR₂.GUR₂ NA]GA SI MUN {u₂}IGI-lim {u₂}IGI-niš {u₂}tar-muš₈ +66. [{u₂}KUR.RA {na₄}ga-bi-i {u₂}ak-tam {u₂}HA]R.HAR 14 U₂#.[HI.A ŠE]Š DIŠ-niš SUD₂ ina KAŠ NAG-ma BURU₈ +67. [... 10 GIN₂ {u₂}sa]h-la#-a!-nu! 10 GIN₂ AL.U[S₂.S]A 10# GIN₂# A#.GEŠTIN#.NA KALAG.GA 10 GIN₂ KAŠ 10 GIN₂ ut-hi-ra +68. [... 10? GIN₂ {u₂}HAR.H]AR 1 GIN₂ SUM{sar} 1/2 GIN₂ M[UN 1/2 GIN₂ GA]ZI{sar} tuš-te-mid ina MUL₄ tuš-bat ina še-ri₃ +69. [... ina KA-š]u₂ u DUR₂-šu₂ SI.SA₂-ma TI x [x] x A UZU kab-ru-ti NAG-ma ina-eš +70. [DIŠ NA lu ZE₂ lu ah-ha]-za# lu# a-mur-ri-qa-nu DAB#-[su {u₂}ur₂]-ne₂?#-[e] {u₂#}KUR.KUR {u₂}GEŠTIN KA₅.A {šim}LI + +1. {šim}MUG# 3# SILA₃ KAŠ ina# ŠEN#.TUR ŠEG₆-šal# ta-ša₂-hal I₃.GIŠ ana I[GI ...] +2. {u₂}GIR₂-a-nu {u₂}mur#-gab-ri-a-nu {u₂}a-ri-hu {u₂#}[...] +3. {u₂}ṣa-ṣu-un-ta₅ {u₂#}si-si-ni ŠA₃-bi {u₂}x [...] +4. {u₂}UKUŠ₂.HAB {( : {u₂}[x] HAB )} {u₂#}HAB# {u₂}tar-muš₈ {u₂}N[U.LU]H.[HA ...] +5. HENBUR₂ {u₂}EME UR.GI₇ {( : HENBUR₂ {šim}LI )} [HEN]BUR₂ {šim}GAM.ME sah-le₂-e# [...] +6. HENBUR₂ {u₂}UKUŠ₂.HAB {u₂#}sah-la-na SUD₂ ina GE[ŠTIN ...] +7. DIŠ NA ZE₂ qid-ha lu-ba-ṭa# GIG ana TI-šu₂ {ši[m}...] +8. {u₂}tar-muš {u₂}IGI-lim {šim#}BULUH {u₂}KUR.RA ILLU {ši[m}...] +9. DIŠ NA a-ša₂-a pa-šit-ta₅ u lu-ba#-ṭi₅ GIG {u₂#}[...] +10. {u₂}KUR.RA URUDU SUMUN 7 U₂.[HI].A# ŠEŠ# DIŠ#-[niš ...] +11. DIŠ NA ZE₂ DAB-su {u₂}KUR.RA# NU# pa-tan a-he-en-n[a-a ...] +12. ina KAŠ NAG-ma KAŠ SAL.LA NAG# [...] +13. ana a-ša₂-a pa-šit-ta₅# u lu-ba-ṭi ZI-hi U₂ BABBAR ILLU LI.T[AR ...] +14. DIŠ NA pa#-šit-tu₂ DAB-su {šim}GUR₂.GUR₂ {u₂}HAR.HAR {u₂}KUR.KUR {u₂}KUR#.[RA ...] x +15. ILLU# LI.TAR {u₂}NU.LUH.HA kam₂-mu ša₂ {lu₂}AŠGAB {u₂}LAG A.ŠA₃# x [... m]a BURU₈ +16. {u₂}HAR.HAR {u₂}NU.LUH.HA ILLU LI.TAR {šim}LI {šim}GUR₂.GUR₂ 5# U₂#-[HI.A ...] ŠEŠ₂?# +17. {u₂}ak-tam {u₂}KUR.KUR NAGA SI {šim}GUR₂.GUR₂ {šim}LI ILLU LI.TAR MUN x 8# U₂#.ME# NAG# [i-ša₂-r]iš IM +18. DIŠ NA SAG.KI.DAB.BA TUKU a-ši-a pa-šit-tu₄ u lu-ba-ṭi GIG ana TI-šu₂ 15 GIN₂ {šim}GUR₂.GUR₂ 15 GIN₂ {u₂}ur₂-nu-u +19. 15 GIN₂ {u₂}KUR.KUR DIŠ-niš GAZ SIM ina I₃ KAŠ SAG tu-ša₂-ha-an ana DUR₂-šu₂ DUB ana ši-bi NAG-šu₂# +20. DIŠ NA NU pa-tan SAG ŠA₃-šu₂ i-kaṣ₃-ṣa-as-su KUM₂ ŠA₃ TUKU-MEŠ ina ge-ši-šu ZE₂ i-ar₂-ru₃ NA BI pa-šit#-ta₅# +21. tu-ga-na GIG ana TI-šu₂ {šim}GUR₂.GUR₂ {šim}LI ILLU LI.TAR {u₂}ak-tam {u₂}KUR.KUR MUN NAGA SI TI-su-nu +22. ina KAŠ SAG tara-muk ina MUL₄ tuš-bat ina še-ri₃ NU pa-tan ta-ša₂-hal NAG-ma tu-ša₂-ʾ-ra-šu-ma TI +23. DIŠ# NA ZE₂ GIG x [x x x x] +24. EN₂# ZE₂ eṭ-li ZE₂ eṭ#-li : i x [...] +25. u₂#-ri eṭ-li e-el₃ ša li-li x [...] +26. x ti ma ga-ra-aš-ga-ra-a[š ša ŠAH ...] +27. [x] an# ra ti e-zib ba mu# x x [...] +28. [KA.INIM.M]A? [...] +29. [EN₂ %sux ze₂-am₂] u₂#-[šim-gen₇ ...] +30. [...] +31. %sux [x x x] e[me ...] +32. %sux [ze₂ ni₂]-za# mu-e#-[ši-du₃-a ...] +33. %sux izi#-gen₇# te-ni!(ER)-i[b₂ ...] +34. %sux tu₆-du₁₁-ga {d}ni[n-girim₃ ...] +35. %sux {d}en-ki-ke₄ d[ag ...] +36. %sux lag mun šu u₃-[me-ti nam.šub eridu]-ki#-ga# [x x x x] +37. %sux ka-ka-na!(MA) u₃-[me-ni-gar ...] +38. %sux im!(AH)-gen₇ gu-du-ni-ta he₂-e[m-ma-ra-d]u :# bu#-lu-uh-gen₇# he₂#-[si-il-le] +39. EN₂ mar-tu mar-tu mar-tu pa#-š[it-tu₂-ma] +40. mar-tu GIM IGIRA₂#{mušen#} SIG₇ it-ta-na-al-lak a#-l[ak?-ta] +41. it-ta-na-za-az# ina gi-sal-li ša BAD₃ +42. i-da-gal a#-ki#-lum ak#-li i-da-gal ša₂-tu-u₂ ku-ru-un-ni +43. ki-i tak-ka-la ak#-la# ki-i ta-ša-ta-a ku-ru-un-ni +44. a-ma-qu₂-tak-ku-nu-šim-ma# tu-ga-ša-a ki-i GUD TU₆ EN₂ +45. EN₂ UD₅ ar-qa₂-at a-ruq# DUMU-ša a-ruq {lu₂}SIPA-ša a-ruq na-qid-sa +46. ina e-ki SIG₇ U₂-MEŠ SIG₇-MEŠ ik#-kal ina a-tap-pi a-ruq-ti A-MEŠ SIG₇-MEŠ i-šat-ti +47. i-suk-ši {giš}GIDRU ul u₂-tir-ra# pa-ni-ša : i-suk-ši kir-ba-na₇ ul u₂-šaq-qa-a re-ši-ša +48. i#-suk-ši pil₂-li {u₂}HAR.HAR# u MUN : mar-tu GIM im-ba-ri ana ša₂-ha-hi it-bi +49. EN₂# ul# ia-ut-tu EN₂ {d}e₂-a# [u {d}asal]-lu₂#-hi# EN₂# {d#}da#-mu u {d}gu-la TU₆ EN₂ +50. K[A.INIM.MA š]a pa-šit-ti D[U₃.DU₃.BI x x x x GAZ]I?{sar} pa-pi-ra DIŠ-niš SIG₃-aṣ# +51. EN₂# [x x] ŠID# [...] x x x TI#-uṭ# +52. EN₂# x [...] x ad?# +53. x [... {d}]e₂#-a# [x x l]ip-ṭur EN₂# +54. [KID₃.KID₃.BI ...] u# MUN# nu?#-hur?#-ti ŠUB-di +55. [ana Š]A₃ EN₂# Š[ID ... NU pa-ta]n NAG-ma ina-eš +56. [K]A.INIM.MA ZE₂.A.KAM +57. IG[I.4.G]AL₂.LA ILLU LI#.TAR# SUD₂# ina A NAG#-šu₂ +58. 14 P[A G]I.ZU₂.LUM.MA SUD₂ ina 5 GIN₂ I₃#.GIŠ# u KAŠ NAG-šu₂ +59. 21 {u₂#}[na]b-ruq#-qa ina 10 GIN₂ I₃.GIŠ u KAŠ NAG-šu₂ +60. 15 ŠE {u₂#}[IG]I-lim ina 1/2 SILA₃ I₃.GIŠ u KAŠ NAG-šu₂ +61. 90 {u₂}[sis-sin-n]i ŠA₃-bi ina 10 GIN₂ A NAG-šu₂ +62. IGI.4.GAL₂.[LA] U₂# ma-at-qa ina 10 GIN₂ A NAG-šu₂ +63. IGI.4.GAL₂.LA# U₂# NAM.TI.LA ina 10 GIN₂ I₃.GIŠ NAG-šu₂ +64. 1/2 GIN₂ {u₂}a-ra-ri-a-nu ina 10 GIN₂ A NAG-šu₂ +65. IGI.4.GAL₂.LA {u₂}IGI#.NIŠ ina 10 GIN₂ A NAG-šu₂ +66. IGI.4.GAL₂.LA {u₂}me-er-gi-ra-nu ina 10 GIN₂ KAŠ [NAG-šu₂] +67. DIŠ NA ZE₂ DAB-su GAZI{sar} SUD₂ ina KAŠ NAG-ma i-ar₂-ru₃ : DIŠ KI.MIN hi-qa KAŠ NAG-ma# i#-a[r₂-ru₃] +68. DIŠ KI.MIN hi-qa A.GEŠTIN.NA KALAG.GA NAG-ma# i-ar₂-ru₃ : DIŠ KI.MIN {šim}LI SUD₂ ina KAŠ# NAG-ma# i-ar₂#-ru₃ +69. DIŠ KIMIN {u₂}me-er-gi-ra-a-na SUD₂ ina A# NAG-ma i-ar₂-ru₃ : DIŠ KIMIN {u₂}IGI-lim SUD₂ ina KAŠ NAG-ma i-ar₂-ru₃ +70. DIŠ KI.MIN MUN lu ina A lu ina KAŠ NAG-ma i-ar₂-ru₃ : DIŠ KI.MIN SUM{sar} SUD₂ ina A NAG-ma i-ar₂-ru₃ + +1. DIŠ KI.MIN ILLU LI.TAR SUD₂ ina A NAG#-ma i-ar₂-ru₃ : DIŠ KI.MIN ILLU LI.TAR SUD₂ ina A tara-muk ina MUL₄ tuš-bat NAG-ma i-ar₂-ru₃ +2. DIŠ KI.MIN {u₂}UKUŠ₂.HAB {šim}BULUH {u₂}HAR.HAR ina I₃ ina MUL₄ tuš-bat NAG-ma i-ar₂-ru₃ +3. DIŠ KI.MIN {u₂}NU#.LUH.HA SUM{sar} a-he-na-a SUD₂ ina KAŠ NAG-ma i-ar₂-ru₃ +4. DIŠ NA IGI.SIG₇#.SIG₇ GIG-ma GIG-su ana ŠA₃ IGI-MIN-šu₂ E₁₁-a ŠA₃ IGI-MEŠ-šu₂ GU-MEŠ SIG₇-MEŠ ud-du-hu +5. ŠA₃-MEŠ-šu₂# na#-šu-u NINDA u KAŠ u₂-tar-ra NA BI IM DU₃.A.BI GIG u₂-za-bal-ma BA.UŠ₂ +6. DIŠ NA# IGI#.SIG₇.SIG₇ GIG#-ma SAG.DU-su pa-nu-šu₂ ka-lu ADDA-šu₂ SUHUŠ EME-šu₂ ṣa-bit ši-pir-šu₂ SUMUN-ma BA.UŠ₂ +7. DIŠ NA SU-šu₂ SIG₇ pa-nu-šu₂ SIG₇ ši-hat UZU TUKU a-mur-ri-qa-nu MU.NI +8. {šim}LI SUD₂ ina KAŠ NAG {šim}ŠE.LI SUD₂ ina KAŠ NAG {šim}ŠEŠ SUD₂ ina KAŠ NAG +9. SUHUŠ {giš}NAM.TAR NITA₂ ša₂ {im}SI.SA₂ ša₂ GURUN NU IL₂ SUD₂ ina KAŠ NAG {u₂}mur-ra-an KUR-i SUD₂ ina KAŠ# NAG# +10. {u₂}kur-ka-na₇ SUD₂# ina KAŠ NAG {u₂}IGI-lim SUD₂ ina KAŠ NAG {u₂}nam-ruq-qa SUD₂ ina KAŠ NAG# +11. {u₂}nam-ruq-qa SUD₂ ina A NAG IM.SAHAR.NA₄.KUR.RA SUD₂ ana A.MEŠ ŠUB tu-sak₆ NAG {šim}LI SUD₂ ina GA NAG +12. {šim#}ŠE#.LI SUD₂ ina GA NAG {šim}ŠEŠ SUD₂ ina GA NAG {u₂}nam-ruq-qa SUD₂ ina GA NAG +13. 5 ŠE KU.KU AN#.ZAH# ina KAŠ ŠUB ina MUL₄ tuš-bat tu-sak₆ NAG {im}KAL.LA SUD₂ ina I₃ e-re-ni u KAŠ NAG +14. NUMUN {giš}bi-ni {u₂#}SUMUN#.DAR SUD₂ ina KAŠ NAG NUMUN {giš}bi-ni SUD₂ ina KAŠ NAG +15. NUMUN {giš}bi-ni SUD₂ ina I₃# u# KAŠ# NAG# SUHUŠ {giš}šu-ši SUD₂ MIN : {u₂}IGI.NIŠ SUD₂ ina KAŠ NAG +16. SUHUŠ {giš}MA.NU SUHUŠ {giš}N[U.U]R₂.MA ina NINDU# UŠ₂-er A-MEŠ-šu-nu-ti₃ tu-sak₆ tu-kaṣ₃-ṣa NAG-ma ina-eš +17. {u₂}a-ṣu-ṣum-ta₅ {u₂}a-nu-nu-ta₅ ina qut-rin-ni tu-qat-tar-šu +18. MUD₂ {d}NIN.KA₆.EDIN ša ina {u₂}NINNI₅ GUB-zu ta-mah-har ina I₃ EŠ-MEŠ +19. I₃# SUMUN sip-pi₂ ABUL ki-lal-le-e TI ina I₃ EŠ-MEŠ +20. GIR₃-ra-am ŠUB uṣ#-ṣa-a uš-te-eš-šir ti-tur-ra na-di-ta₅ e-ti-iq# +21. {u₂}NIG₂ GIDRU SA₅ SUD₂ ina KAŠ# NAG# {šim#}GUR₂#.GUR₂# SUD₂# ina KAŠ NAG GURUN {u₂}ka-zi-ri SUD₂ ina K[AŠ NA]G +22. {u₂}HAR.HAR SUD₂ ina KAŠ NAG SU {giš}NU.UR₂.MA SUD₂ ina KAŠ# NAG# x x x x x [x x x] +23. SUHUŠ {u₂#}EME# UR.GI₇ SUD₂ ina KAŠ NAG IGI.6.GAL₂.LA# [...] +24. {u₂}IGI.NIŠ qut-ri₃ SUD₂ ina I₃# u KAŠ NAG PA# {giš#}NU.U[R₂.MA ...] +25. DIŠ NA IGI.SIG₇.SIG₇ DIRI SUHUŠ# {giš}šu-ši x x x [...] +26. ina MUL₄ tuš-bat NAG hu-bi#-bi#-ta₅# [...] +27. SUHUŠ {giš}NU.UR₂.MA ša₂# [{im}SI].SA₂# [...] +28. šum-ma ina x [...] +29. BAR {giš}NU#.UR₂#.[MA ...] +30. sah#-le₂#-[e ...] +41'. x x x x x [...] +42'. DIŠ NA IGI SIG₇.SIG₇ DI[RI ...] +43'. ta-tab-bal I₃.UDU U[KUŠ₂.HAB ...] +44'. MUŠ.DIM₂.GURUN.NA# [...] +45'. x x x [...] + +1. [DIŠ MIN x] x ina I₃.UDU UKUŠ₂.HAB# S[UD₂ ina KA]Š NAG : DIŠ MIN UZU GUD kab-ra GU₇-MEŠ ZI₃-mi NU IGI +2. [DIŠ MIN ŠE₁₀?] NAM#.LU₂.U₁₈.LU {šim}ŠEŠ ina I₃# u# KAŠ NAG : DIŠ MIN AMA A.A HAD₂.DU SUD₂ ina I₃ u KAŠ {lu₂}KURUN₂.NA NAG-ma BURU₈ +3. [DIŠ MI]N {u₂}ak-tam ILLU LI.TAR U₂ BABBAR ina I₃# u KAŠ NAG : DIŠ MIN I₃.UDU UKUŠ₂.HAB ina KAŠ NAG +4. [DIŠ M]IN {šim}ŠEŠ NUMUN {šim}LI IM.SAHAR.NA₄.KUR.RA SUD₂ ina I₃ u KAŠ NAG : DIŠ MIN HAR KUG.SIG₁₇ HUŠ.A ina ŠU-šu₂ GAR-an +5. [DIŠ N]A IGI#-MIN-šu₂ IGI.SIG₇.SIG₇ PA {giš}NU.UR₂.MA SUD₂ ina {gi}SAG.KUD ana ŠA₃ IGI-MIN-šu₂ MU₂-ah +6. [DIŠ NA IGI-MIN-š]u₂ IGI#.SIG₇.SIG₇ IGI-MEŠ-šu₂ UZU-MEŠ-šu₂ DIRI 7 MUŠ.DIM₂.GURUN.NA ri-it-ku-ba-ti +7. [x x x x T]I-qe₂# tu#-qal#-lap ina {na₄}NA.ZA₃.HI.LI SUD₂ ina DIDA HI.HI GU₇-MEŠ-ma ina-eš +8. [...] x x x sah#-le₂-e ŠE.SA.A LAL-su u DIDA HI.HI GU₇-MEŠ-ma ina-eš +9. [...] x x x x ina I₃ u KAŠ NAG-ma ina-eš +10. [...] x HU# ši#-ši#-[ta₅ ...] ina# KAŠ# NAG-šu₂ +11. [...] x ta-qal-lap x [...] NAG#-šu₂ +12. [DIŠ NA IGI-MIN-šu₂ IGI.SIG₇.SI]G₇ DIRI {u₂}LAG A.ŠA₃ SUD₂ ina KAŠ NAG an-nu#-ha#-r[a SUD₂] ina# KAŠ +13. [x x x SU]D₂ ina KAŠ ŠIKA NUNUZ GA₂.NU₁₁#{mušen} SUD₂ ina KAŠ KUG.SIG₁₇ ina SIG₂ SA₅# ina ŠU-MIN-šu₂ KEŠDA +14. DIŠ# KI#.MIN {u₂#}[x] {u₂#}ŠAKIRA U₂ SA₅ {u₂}LAL GAZ A.BI ta-ṣa-hat ina KAŠ NAG-ma ina-eš +15. DIŠ KI.MIN G[AZI]{sar} U₅ ARGAB{mušen} U₂ BABBAR ina I₃.NUN SUD₂ IGI-MIN-šu₂ te-te-ne₂-qi₂-ma ši-ši-ta₅# ZI-ah +16. DIŠ NA SU#-šu₂ SIG₇ 5 ŠE AN.ZAH SUD₂ ina I₃ u KAŠ NAG-šu₂ tu-šam-ad-ma BA.UŠ₂ +17. DIŠ NA IGI#-MIN-šu₂ a-mur-ri-qa-nu DIRI {u₂}HAB SUD₂ ina KAŠ NAG-ma ina-eš +18. DIŠ MIN SUHUŠ {giš}šu-ši tu-bal ta-sak₃ ina KAŠ tara₃-sa₃-an IGI {d}UTU NAG-ma ina-eš +19. DIŠ SUHUŠ {u₂}EME UR.GI₇ tu-bal ta-sak₃ ina KAŠ tara₃-sa₃-an NAG-ma ina-eš +20. DIŠ {u₂}an-nu-ha-ra SUD₂ ina KAŠ NAG-ma ina-eš : DIŠ NUNUZ GA₂.NU₁₁{mušen} SUD₂ ina KAŠ NAG-ma ina-eš +21. DIŠ# SUHUŠ# {giš}NU.UR₂.MA SUD₂ ina KAŠ ina MUL tuš-bat ina A₂.GU₂.ZI.GA NAG-šu₂ +22. DIŠ# NUMUN# GI#.ZU₂#.LUM#.MA SUD₂ ina KAŠ ina MUL tuš-bat ina A₂.GU₂.ZI.GA NAG-šu₂ +23. DIŠ {giš}GEŠTIN KA₅.A SUD₂ ina KAŠ# NAG-šu₂ : DIŠ {u₂}NU.LUH.HA SUD₂ ina KAŠ NAG-šu₂ +24. DIŠ SUHUŠ {giš}NAM.TAR SUD₂ ina KAŠ NAG#-šu₂# : DIŠ ILLU a#-bu#-ka-ti ta-sak₃ ina KAŠ NAG-šu₂ +25. DIŠ {u₂}MUŠ.DIM₂.GURUN.NA GAL ta-sak₃ ina# [KAŠ] u# I₃ NAG-šu₂ +26. DIŠ NA SU-šu₂ SIG₇ IGI-šu₂ SIG₇ u GE₆ SUHUŠ EME-šu₂ GE₆ ah#-h[a-z]u MU.NE +27. MUŠ.DIM₂.GURUN.NA GAL-ta ša₂ EDIN ta-sak₃ ina KAŠ NAG ah-ha-zu ša₂# ŠA₃#-šu₂# SI.SA₂-am +28. DIŠ NA ah-ha-za DIRI {šim}LI SUD₂ ina KAŠ NAG {šim}ŠE.LI BABBAR IM.SAHAR.NA₄.KUR.RA SUD₂ ina I₃ u KAŠ NAG#-ma ina-eš +29. {šim}KU₇.KU₇ SUD₂ ina KAŠ NAG {u₂}ha-še-e SUD₂ ina KAŠ NAG SUHUŠ GI.ZU₂.LUM.MA SUD₂ ina A NAG {šim}ŠEŠ SUD₂ ina GA NAG +30. DIŠ NA ah-ha-za DIRI# SUHUŠ {giš}šu-še ta-sak₃ ina KAŠ tara-muk ina MUL₄ tuš-bat NAG +31. DIŠ NA ah#-ha#-za# DIRI# {u₂#}ṣu₂#-ṣe#-em#-ta₅ {u₂}a-nu-nu-ta₅ ina qut-ri-ni tu-qat-tar-šu₂# +32. u MUD₂ KUN.DAR#.GURUN#.NA# ŠEŠ₂-su-ma ina#-[eš] +33. ru#-ša#-am ša si#-ip#-pi ABUL# ki#-lal#-le#-en TI-qe₂ ana I₃.GIŠ ŠUB-di ta-ap-ta-na#-[ša-aš] +34. gi#-ir#-ra# ŠUB# uṣ-ṣa-a-am uš#-te#-eš#-še#-er# ti-tur-ra na-di-a-am i x [x x] +35. DIŠ NA ah-ha-za DAB-su SUHUŠ {giš}NAM.TAR NITA₂ ša₂ IGI {im}SI#.SA₂ TI-qe₂ ina KAŠ NAG {u₂}HAR.[HAR? x x x x] +36. {u₂}KUR.GI.RIN₂.NA SUD₂ ina KAŠ {šim}ŠE.LI BABBAR SUD₂ ina KAŠ NAG {u₂}IGI-lim {u₂}IGI.NIŠ ina KAŠ SUHUŠ {u₂#}[x x x x x] +37. DIŠ NA# MIN IGI.SIG₇.SIG₇ {šim}LI {šim}Š[EŠ SU]D₂ ina KAŠ NU# [pa-tan NAG] +38. DIŠ NA MIN IM.SAHAR.NA₄.KUR.RA IM.SAHAR.GE₆.KUR.RA DIŠ-niš ina KAŠ tara-SUD tu#-zak#-k[a x x x x] +39. DIŠ NA MIN 15 ŠE-MEŠ AN.ZAH SUD₂ ina KAŠ tara-SUD tu-zak-ka I₃ hal-ṣa ana ŠA₃ ŠUB-di NU pa#-[tan NAG] +40. DIŠ NA MIN {im}KAL.LA SUD₂ ina I₃ u KAŠ NAG NUMUN {giš}bi-ni ina KAŠ NAG NUMUN {giš}bi-ni# [x x x x] +41. NUMUN {giš}bi-ni SUD₂ ina I₃ u KAŠ NAG SUHUŠ {giš}šu-ši ina I₃ u KAŠ NAG {u₂}IGI.NIŠ SUD₂# in[a KAŠ NA]G.MEŠ# +42. DIŠ MIN SUHUŠ {giš}šu-ši SUHUŠ {giš}NU.UR₂.MA ana A ŠUB ina NINDU UŠ₂-er E₁₁-a ta-ša₂-hal ŠED₇ NU# [pa-tan] NAG#-MEŠ +43. DIŠ NA ah-ha-zu ana IGI-MIN-šu₂ E₁₁-a-ma IGI-MIN-šu₂ GU-MEŠ SIG₇-MEŠ ud#-du-ha +44. ŠA₃-MEŠ-šu₂ na-šu-u₂ NINDA u KAŠ u₂-tar-ra NA BI u₂-za-bal-ma [NU T]I UŠ₂# +45. DIŠ NA ah-ha-zu GIG SAG.DU-su pa-nu-šu SU-šu₂ ka-la-šu₂ u₃ SUHUŠ E[ME-šu₂ DAB] +46. ana GIG šu-a-tu {lu₂}A.ZU ŠU-su NU ub-bal NA BI UŠ₂ NU [TI] +47. DIŠ NA UD.DA KUR-id ZI SAG.KI GIG ina lam DUGUD-šu₂ ana TI.BI ru-uš-ša ša sip-[pi x x x] +48. E₂.GAL {m}AN.ŠAR₂-DU₃-A MAN ŠU₂ MAN KUR AN.ŠAR₂{ki} ša {d}AG u {d}taš-me-tu₄ GEŠTU-MIN ra-pa-aš₂-tu₄ iš-ru#-[ku-uš] +49. e-hu-uz-zu IGI-MIN na-mir-tu₄ ni-siq ṭup-šar-ru#-[ti] +50. ša ina LUGAL-MEŠ-ni a-lik mah-ri-ia mam₂-ma šip-ru šu-a-tu la e-hu-uz#-z[u] +51. bul-ṭi TA muh-hi EN UMBIN liq-ti BAR-MEŠ ta-hi-zu [nak-la] +52. a-zu-gal-lu-ti {d}nin-urta u {d}gu-la ma-la ba-aš₂-m[u] +53. ina ṭup-pa-a-ni aš₂-ṭur as-niq IGI.KAR₂-m[a] +54. a-na ta-mar-ti ši-ta-as-si-ia qe₂#-reb# E₂.GAL-ia# u₂-kin# + + +26'. [... SAG.D]U?-su ŠEŠ₂-ma# T[I] +27'. [... kal-m]a-tu₄ ul i-sa-niq-[šu₂] +28'. [x x x x x x x x x x] ana# A# PU₂# š[a x] u# KU₆ NU GAL₂ ŠUB TU₅-šu₂-ma UH NU T[E-šu₂] +29'. [x x x x x x x x] ina I₃.GIŠ e-re-ni HI.HI EŠ-M[EŠ] +30'. [DIŠ NA SAG.DU-su kal-ma]-ta₅ ma-tu-uq-ta ma-li {u₂}mu-ur-ru MU.N[I] +31'. [x x x x x x x x] za-ku-ti-šu₂ i-na-pa-ah-ma TI.L[A] +32'. [x x x x] la# ba#-ši#-i {giš}URI SUD₂ ina I₃.GIŠ BARA₂! ŠEŠ₂ kal-ma-tu₂ ul ib-ba-aš₂-ši +33'. DIŠ# NA# SA[G.DU-s]u ek-ke-ta u ri-šu#-ta# DIRI PIŠ₁₀.{d}ID₂ SUD₂ ina I₃.GIŠ e-re-ni HI.HI EŠ-MEŠ-su +34'. DIŠ KI MIN PIŠ₁₀.{d#}ID₂# ta-qal-lu ina I₃.GIŠ SAG.DU-su tu-kaṣ₃-ṣa id-ra# ša₂# MUN# ta-qal-lu ina I₃ SAG.DU-su tu-kaṣ₃-ṣa +35'. DIŠ NA SAG.D[U-s]u sa-ma-nu DAB-it i-raš-ši-šum-ma i-na-sah i-na-ah EGIR#-nu GAL-bi NUMUN {u₂}EME UR.GI₇ +36'. SAHAR ŠE.GIŠ!.I₃# [SA]HAR di-ki {giš}DIH₃ SAHAR# ŠE#.GIŠ.I₃ SAHAR MUNU₆ ŠE₁₀ TU{mušen}-MEŠ ša₂ {giš}GIŠIMMAR#.KUR#.RA HAD₂.DU-ti +37'. NUMUN {u₂}DILI [SU]D₂ ina A GAZI{sar} KUM₂-ti SILA₁₁-aš SAG.DU-su SAR-ab tu-kaṣ₃-ṣa LAL +38'. ša₂ KA DUB [MIN]-i# DIŠ NA SAG.DU-su sa-ma-nu DAB-it SAHAR KUN₄ ša {na₄}pu-li ša E₂ SUM[UN] +39'. U₂ BABBAR SIG₇?.S[IG₇?]-su U₄-ma ina ŠA₃ {giš}ar₂-ga-ni GAL-bi NUMUN {u₂}EME UR.GI₇ SAHAR ŠE.GIŠ.I₃ ša₂ SUHUŠ maš-hal-ti +40'. GAZ DUH.ŠE.GIŠ#.I₃# HAD₂.A UŠ MUNU₆ ŠE₁₀ TU{mušen} ha-ṣab-ti {na₄}PEŠ₄ NUMUN {u₂}DILI 9 U₂.HI.A ŠEŠ DIŠ-niš SUD₂ +41'. SAG#.DU-su# [ina I₃.GI]Š MUD₂ {giš}EREN EŠ-MEŠ U₂.HI.A an-nu-ti ana UGU MAR LAL-su-ma TI +42'. [DIŠ N]A SAG.D[U-su x x š]um? DAB-it a-la-pa-a ša₂ IGI A-MEŠ SAHAR a-sur-re-e ša₂ ŠAH ŠE₁₀ PEŠ₂ GIŠ.KIN₂ x [x] +43'. [x x] x x [x x KU.K]U {giš#}TASKARIN KU.KU {giš}KIŠI₁₆ ša₂ ina pi-ti-iq-ti-šu₂ i-ra-bu-u₂ bar-ša SUHUŠ [x x] +44'. [x x x x x x {gi]š}sir₂-di PA {giš}bi-ni PA {giš}ŠE.NU ZI₃ GU₂.GAL ZI₃ GU₂.TUR ZI₃ ŠE.SA.A# LAL#.MEŠ#-[su-ma TI] +45'. [DIŠ NA SAG.DU-su x x x] DAB#-it a-la-pa-a ša₂ IGI A-MEŠ# [...] +46'. [...] x x x x x [...] + + + +1. [x x x {ši]m}GUR₂.GUR₂ {šim}LI {u₂}KUR#.KUR# [...] +2. [x x ŠE.S]A?.A ni-kip-ta₅ DIŠ-nis SUD₂ [...] +3. [x x a]-šu#-u₂ SAG NA# a?#-hi?#-iz?# x [...] +4. [DIŠ NA SA]G.DU-su a-š[u-u₂ DAB-it ...] +5. [x x] x {šim}GUR₂.GUR₂ {ši[m} ...] +6. [x x GAZ] SIM KI GU₂.G[AL ...] +7. [DIŠ NA] SAG#.DU-su a-š[u-u₂ DAB-it ...] +8. [x x x] {na₄}ŠU.U NI[TA₂? ...] +9. [x x] x ana K[A-šu₂ u na]-hi#-ri#-[šu₂ ...] +10. [DIŠ NA S]AG.D[U-su a-š]u-u DAB-it {š[im} ...] +11. [x x x] x [x x x l]u-u ina KAŠ.SAG NAG-šu₂# [...] +12. [DIŠ NA x x x] x SAG.DU-šu₂ DAB-it SUH[UŠ ...] +13. [x] x [x] x ba-lu pa-tan NAG-šu₂-m[a ...] +14. DIŠ NA a-šu-[u₂] lu ŠUB-tu DAB-su 10 GIN₂ sah-le₂-e k[ab-ra-ti x x x x x x x x x x x x x x x] +15. u₂-nu-u[t ŠA₃-š]u₂-nu ta-tab-bal tu-ša₂-bal ina ŠU-ka ta-pa-ša₂-aš₂# x [x x x x x x x x x x x x x] +16. DIŠ NA a-šu-u₂# [lu ŠUB-t]u DAB-su 5 GIN₂ {u₂}KUR.RA 5 GIN₂ GAZI{s[ar} x x {d]ug}UTUL₇# ta#-pal#-l[a-aš x x x x x x x] +17. IGI {dug}UTUL₇# i[na NIG₂.SILA₁₁.G]A₂ ZIZ₂.A.AN UŠ₂-hi IZI ta-šar₂-rap {gi}SA[G.KUD ta-pal-l]a-aš-ma ina MURUB₄-at {dug}BUR.ZI# ta#-sa₃#-niš# +18. x [x x x x] {gi#}SAG.KUD E₁₁-a ina KA-šu₂ GID₂-ad x [x x x ŠE]G₆-al A.UZU u UZU AL.GUR₄.RA GU₇-ma ina-eš +19. [DIŠ NA a-šu₂-u] DAB#-it {im}KAL SUD₂ ina# [x x NAG-M]EŠ-ma TI-uṭ# +20. [DIŠ NA a-šu-u₂] DAB#-it# 7#-et# u# 7#-et# ŠE-MEŠ ina N[E tu-qat-ta]r? ha-an-za-a ša₂ ŠA₃ GI DU₁₀.GA TI-qe₂# +21. [x x x x x x] an ina# KA#-šu₂ u₂-la-ʾa#-a[t-ma ana n]a-hi-ri-šu₂ in-niq-ma TI-[uṭ] +22. [x x x x x tu]r-ar₂ SUD₂ ina I₃.GIŠ u KAŠ.[SAG N]AG-ma T[I-uṭ] +23. [DIŠ NA SAG.DU]-su# a-hi-iz eriš₆-ti GAZI{sar} NUMUN {u₂}KU₆ i[na x x x] x me šu₂ ŠEŠ₂-MEŠ T[I-uṭ] +24. [x x x DI]DA SIG₅ LAL-id sah-le₂-e ARA₃-ti₃ ana U[GU MAR? x x] x GAR-an-m[a TI-uṭ] +25. [x x x x] x tu-zak ina MUL₄ tuš-bat ba-lu pa-tan NAG-šu₂ 1 SILA₃# x [x 1 SILA₃ šur-šu]m-me KAŠ SAG?# tu?#-[zak?] +26. [x x x x] iš-tu e-liš ana šap-liš tu-maš-šad UD#.[10.KAM₂] LAL#-ma TI +27. [x x x x DA]BIN ina KAŠ ta-sak₃ SAG.DU-su ŠED₇ NUMUN {u₂}KU₆ SUD₂ ina I₃ HI.HI# [ina {uru]du}ŠEN#.TUR# ŠE[G₆-šal E]Š-MEŠ-ma TI +28. [DIŠ NA a-šu-u₂] DAB-it ILLU {šim}BULUH {šim}BAL ina NE SAR-šu₂ ana na-hi-r[i-šu₂ i]n-n[iq-m]a TI +29. [DIŠ KI MIN {šim}]HAB ILLU {šim}BULUH {u₂}KUR.GI.RIN₂.NA ina IZI ŠUB na-hi-ri-šu₂ tu-qat-tar I₃.GIŠ KA KI[R₄ x x x x] MU₂-ma TI +30. [DIŠ NA a-šu-u₂] DAB-su {u₂}IGI-lim {u₂}KUR.KUR NUMUN GAZI{sar} NUMUN {u₂}AB₂.DUH U₂ MAŠ.TAB.BA ina I₃ Š[EŠ₂-su ina N]E SAR#-šu₂ +31. [EN₂ qa]r-ra#-di₃#-ia# qar#-ra#-di₃-ia TI.TI qar-ra-di₃-ia ŠU za-ah za-ah u qar-[ra-di₃-ia]-ma +32. [hu.ul.q]i hu.ul.qi ha.al.ti.ib ha.al.ti.ib ia-nu-um-ma te-ne-eš-ma [mar IMIN].NA +33. [di.hu.u]n di.hu.un du-li rap-šu-ma KUM₂-šu₂ NU i-na-a-aš# ma#-ʾ-du-ma la x [x x x] +34. [x x] a-su₁₄-u₂ ša₂ a-me-lu-ti T[U₆.EN₂] +35. [KA].INIM.MA MAŠ.TAB.BA.[KE₄] +36. [DU₃.DU₃].BI GAZI{sar} {šim}GUR₂.GUR₂ U₂ a-ši-i ina NE SAR#-šu₂ EN₂ an-ni-ta₅ 3-šu₂ ŠI[D-nu-ma TI] +37. %sux [EN₂ e]din lal edin-na edin lal edin-na edin# ki gir₃ si₃-ga edin ki g[ir₃ si₃-ga] +38. %sux [m]ul-ra ku-u₂ ma-an-du gi?#-ki?# na mul-mul-da %akk ta [EN₂] +39. [K]A.INIM.MA MAŠ.TAB.B[A.KE₄] +40. [D]U₃.DU₃.BI {u₂}AB₂.DUH ta-pa-a[ṣ ina I₃.GI]Š HI.HI EN₂ 3-šu₂ ŠID-nu ŠEŠ₂.ŠE[Š₂-ma TI] +41. U₂ a-ši-i KUD-si NU[MUN {u₂}kam-k]a-di SUD₂ ina I₃.G[IŠ ŠEŠ₂] +42. {u₂#}ka-man-ta# [SUD₂] ina I₃.GIŠ ŠEŠ₂ U₂ BABBAR SUD₂ ina I₃.GI[Š ŠEŠ₂] +43. [{u₂}ha]-šu#-u {u₂#}[HAB] sah-le₂-e {u₂}zi-bu-u U₂ BABBAR ILLU [{šim}BULUH?] +44. [x x x x] TEŠ₂#.BI ta-sak₃ ina I₃.GIŠ u KAŠ.SAG NAG-MEŠ-ma [TI] +45. [DIŠ NA a-šu-u₂ DA]B-su ana TI-šu₂ U₂ BABBAR U₅ ARGAB{mušen} MUN eme-sal-lim {u₂}KUR.RA x [x x] +46. [x x x x x] x SAG.DU-su LUH-si GUR-ma ta-bi-lam ana SAG.DU-šu₂ MAR {sig₂}AKA₃ NI[GIN x x x] +47. [x x x x x iš.k]a gi#.im#.ma# [x x x] šu#.uh.di.am x [x x x] +48. [...] +49. [x x x x x x x x x x x x x x x x x x x (x) SI]G₃-as#-su# u# SAG#.K[I.MEŠ-šu₂ x x x] +50. [x x x x x x x x x x x x x x x x x x Š]A₃ ŠID-nu ana na-hi-r[i-šu₂ DUB] +51. [x x x x x x x x x x x x ba-a]h-ra GU₇ ba-ah-ra N[AG-ma TI] +52. [x x x x x x x x x x x x x x x] {u₂#}AB₂.DUH U₂ MAŠ.TAB.BA ina I₃.GIŠ Š[EŠ₂ TI] +53. [... i]t-ta-mu-uh [x x x] +54. [...] a-ša₂-a KA x [x x x] +55. [... {u₂}]aš-lim ina NE SAR-šu₂-ma MAŠ.TAB.BA Z[I (x)] +56. [EN₂ ... giš.hur.h]ur u₂.pa.ak u₂.pa.ak T[U₆.EN₂] +57. [...] DU₃#.DU₃#.BI A {giš#}NU.UR₂.MA x [x x x] +58. [...] x ana KA-šu₂ ta-šap-pak-[ma] ina#-[eš] +59. [x x x x x x x x] x NUMUN {u₂}KU₆ {u₂}tar-muš {u₂}IGI-lim# {u₂}IGI.NIŠ ina [I₃] +60. [x x x x x x x x x x GA]R-an ina še-ri₃ SAG.DU-su LUH-si EŠ-MEŠ-ma in[a-eš] +61. [x x x x x x x x x N]A₄ UKUŠ₂.HAB GAZI{sar} BIL-ti ina I₃.GIŠ e-re-ni# HI.HI ŠE[Š₂.MEŠ] +62. [...] x KUM₂-am ana SAG.DU-šu₂ ŠUB [x x] +63. [...] x HI#.HI# tu-kaṣ₃-ṣa ina I₃.GIŠ e-re-ni {( : ina I₃.NUN )} HI.HI E[Š.MEŠ] +64. [...] in?# SAG.DU-su LUH-si NA₄ UKUŠ₂.HAB SUD₂# ina I₃.GIŠ e-re-ni [EŠ.MEŠ?] +65. [... an]a ŠA₃! ŠUB-di TA ib-taš-lu SAG.DU-su# EŠ.MEŠ ku-lil-ta₅ HA[D₂.DU] +66. [...] I₃#.UDU# BIL.ZA.ZA ina I₃.NUN HI.HI ŠEŠ₂#.MEŠ-ma SIG₂ E₃#-[a] +67. [... A.GEŠT]IN.NA KALAG.GA HI.HI# SAG.DU#-su tu-kaṣ₃-ṣa-m[a EŠ.MEŠ?] +68. [...] x x [...] x x x [x (x) SA]R?-šu₂-m[a?] ina še-ri₃ ina A KUM₂-ti SAG.DU-s[u LUH?-si?] +69. [I₃.GIŠ] e#-re-ni EŠ.MEŠ I₃.UDU UKUŠ₂.HAB# tur#-a[r₂ x x x x x x x M]AR-ru EŠ.MEŠ-ma T[I] +70. [DIŠ KI MIN I₃.GI]Š e#-re#-ni# KUM₂-am ana SAG.DU-šu₂ ŠUB : DIŠ K[IMIN x x x x x x] {giš#}GEŠTIN# KA₅#.A# SUD₂ ina I₃.GIŠ e-re-ni [EŠ.MEŠ?] +71. [DIŠ KI MIN PIŠ₁₀].{d#}ID₂# [ina l]i-ši HI.HI EŠ.MEŠ : DIŠ KIMIN PIŠ₁₀#.{d#}ID₂# ina LAL₃ KUR-i! HI.HI EŠ#.[MEŠ] +72. [DIŠ KI MIN] {u₂}IN₆.UŠ₂ SUD₂ ina I₃# EŠ.MEŠ : DIŠ KIMIN {u₂}ak-tam SUD₂ ina I₃.UDU HI.HI EŠ.MEŠ : DIŠ KIMIN {u₂}TAL₂.TAL₂ MAR ina I₃ EŠ#.[MEŠ] +73. [DIŠ KI MIN] {u₂#}KU₆ ina GA AB₂ {( : KAŠ₃ AB₂ )} SIG₃-aṣ SAG.DU-su LUH {giš}MAŠ.HUŠ tur-ar₂ SUD₂ SAG.DU-su SAR-ab I₃ EŠ.MEŠ-s[u] +74. [DIŠ KI MIN I₃.UDU UKUŠ₂].HAB NA₄ UKUŠ₂.HAB tur-ar₂# SUD₂# SAG.DU-su SAR-ab I₃ EŠ.MEŠ LAL ŠUB LAL +75. [DIŠ KI MIN x x x SU]D₂ ina I₃.GIŠ e-re-ni HI.HI EŠ.MEŠ-ma SIG₂ E₃-a +76. [DIŠ KI MIN x x x S]UD₂ SAG.DU-su EŠ.MEŠ ZI₃ GU₂.GAL ZI₃ GU₂.TUR {u₂}LAG.GA₂ SUD₂ ina A GAZI{sar} SILA₁₁-aš LAL {u₂}ak-tam NAGA.SI +77. [x x x] ina A KUM₂-ti SAG.DU-su LUH-si + + +1. DIŠ NA gu-raš-tu DIRI {u₂}KU₆ {u₂}x [... DIŠ-ni]š SUD₂ ina I₃ HI.HI E[Š.MEŠ-ma] SIG₂ E₃-[a] +2. DIŠ KI MIN {u₂}ak-tam {u₂}AB₂.DUH SUD₂ ina [... SAG.DU-s]u LUH-si BAR {giš}x [(x)] x ta#-qal-lu ARA₃-en MAR +3. DIŠ KI MIN I₃ ŠA₃ KU₆ EŠ.MEŠ [...] ud# SUD₂ M[AR] +4. DIŠ KI MIN sa-ma-na₇ ša₂ E₂.GAR₈ ta-kar-ma Š[EŠ₂ ...] x ud# ina LAL₃ KUR-i BABBAR u A LUH-ma ina-eš# +5. U₂ BABBAR {u₂}KU₆ {u₂}ak-tam 3 U₂ gu#-[raš-ti ... SAG.DU-s]u ina I₃ EŠ.MEŠ {u₂}IGI-lim {u₂}KU₆ +6. SUHUŠ {giš}MAŠ.HUŠ SUHUŠ {giš}bi-ni UZU.DIR SUD₂# [...] x ina A SAG.DU-su LUH ina I₃ EŠ.MEŠ +7. DIŠ# NA# [... SAG.DU-s]u LUH# {u₂}LAL {u₂}u₅-ra-na SUD₂ ina I₃ EŠ#.[MEŠ] +8. [...] SUD₂# ina LAL₃ KUR-i EŠ.[MEŠ] +9. [...] i#-šal-[lim] +10. [...] x [x x] + + +20'. [DIŠ KI M]IN {u₂#}LAG# GANA₂# GAZ# I₃#.UDU# A#.ZA#.LU#.LU# SUD₂# [...] +21'. [ana] ku-ra-ri ZI-hi hu-bu-uš SUN₂ ina šur-š[um-me ...] +22'. DIŠ KI MIN {u₂}LAG A.ŠA₃ ina IGI ta-kar IM.SAHAR.GE₆.KUR.R[A ...] +23'. DIŠ KI MIN NUMUN GA.RAŠ {u₂}ak-tam {u₂}ṣa-lam-ta₅ DIŠ-niš SUD₂ [...] +24'. DIŠ NA SAG.DU-su ku-ra-ra DAB-it ŠE₁₀ {d}nisaba SUD₂ ta-kar MAR# [x x x x x x x x x x] +25'. laq-laq-ta-šu₂ ta-tab-bal ina KAŠ LUH-si KU.KU {giš}TASKARIN MAR LAL ina IGI K[I.NA₂-šu₂ x x x x x x x x x x] +26'. KU.KU {giš}TASKARIN KU.KU {giš}e-lam-ma-ku KU.KU {giš}kal-mar-hi ŠE₁₀ {d}[nisaba x x x x x x x] +27'. ina šer₂-ti DU₈ SAR-ab {šim}MAN.DU {giš}EREN tur-ar₂ SUD₂ ana [...] +28'. ina A GAZI{sar} LUH-si KU.KU {giš}TASKARIN KU.KU {giš}e-lam-ma-ku KU.KU {giš}kal-mar#-[hi ...] +29'. DIŠ KI MIN SAG.DU-su tu-gal-lab I₃.HAB ŠEŠ₂ ina IGI KI.NA₂-šu₂ DU₈ SUH[UŠ ...] +30'. SUHUŠ {giš}ku-ma-hi IM.GU₂ NIG₂.NIGIN₂.NA {u₂}tar-muš NUMUN {u₂}qut-ra-te x [...] +31'. DIŠ-niš SUD₂ ina KAŠ₃ AB₂.GU₄ SAG.DU-su te-sir₂ ina KAŠ LUH-si ina A GAZI{sar} x [...] +32'. NUMUN {giš}ŠE.NU₂.A NUMUN {giš}NAM.TAR NUMUN GADA NUMUN {u₂}AB₂.DUH PA {u₂}TAL₂.TAL₂ {giš#}[DIH₃? x x x x x x x x x x] +33'. {u₂}KUR.GI.RIN₂.NA {u₂}sag-gi-la-ta₅ PA {u₂}MA₂.ERIŠ₄.MA₂.LA₂-e {u₂}[MAŠ.HUŠ x x x x x x x] +34'. HAD₂.A GAZ SIM ina A GAZI{sar} SILA₁₁-aš GUR-ma HAD₂.A GAZ SIM ina KA[Š.SAG x x x x x x x x x x x] +35'. 3# u₄#-me# NU# DU₈# ina# 4# u₄#-me# ina DU₈-ka ina KAŠ₃ KUM₂-me LUH-s[i ...] +36'. [...] x x x [...] + + +39'. [DIŠ KI MIN x] x ina# I₃#.UDU# SUD₂# x [...] +40'. [DIŠ KI MIN P]IŠ₁₀.{d}ID₂ {u₂}GAMUN.G[E₆ ...] +41'. [DIŠ KI] MIN {im}KAL SUD₂ [...] +42'. DIŠ# NA SAG.DU-su ku-ra-ra [DAB ...] +43'. {u₂#}KUR.RA sah-le₂-e {u₂}u₅#-[ra-nu ...] +44'. [I₃.GIŠ] e#-re#-ni EŠ.M[EŠ ...] +45'. [DIŠ NA ku-ra-r]a G[IG x x x x x x x x x x x] +46'. DIŠ KI MIN A.GEŠTIN.NA BIL.LA₂# [...] x x [...] +47'. ina ša-ni-i IM.GU₂.EN#.N[A ... ana K]I MIN ŠE₁₀ {d}nisaba ana x [...] +48'. DIŠ KI MIN sa-ma-na₇ te-si[r₂ ... MA]R ina I₃.NUN EŠ.MEŠ [...] +49'. DIŠ KI MIN A.GEŠTIN.NA BIL.LA₂# [... M]AR SUM{sar} SUM.SIKIL{sar} [...] +50'. DIŠ NA SAG.DU#-[su ...] x ZI₃.KUM ZI₃ GU₂.GAL IM.BABBAR ba-aš-la NAGA.SI# [...] +51'. IM.G[U₂.EN.NA? ... GA]Z SIM SAG-ka u₂-kal I₃.NUN EŠ.MEŠ LAL ŠUB {giš}GEŠTIN KA₅.A x [...] +52'. DIŠ# KI# MIN# [...] x [...] +53'. [DIŠ KI MIN x x x {šim}]LI DABIN ina A.GEŠTIN.NA HI.HI SAG.DU-su tu-kaṣ₃-ṣa UD.3.KAM# ŠUB# [...] +54'. [x x x] SAG#.DU-su LUH-si UD.3.KAM ŠUB-di SAR-ab UGU ku-ra-ri# x [...] +55'. [x x x Š]ED₇ I₃.NUN MUN tu-ba-har ina DIDA SIG u I₃#.GIŠ# e#-re#-ni [...] +56'. [...] x x tur#-ar₂ SUD₂ MAR GURUN UKUŠ₂.HAB x [...] +57'. [...] x x a# IGI GI[G ...] +58'. [...] +59'. [...] +60'. A.GEŠTIN#.NA# [...] +61'. I₃.GIŠ e-re-ni EŠ.MEŠ U₂ BABBAR# {u₂#}[...] +62'. {u₂}KU₆ MUN a-ma-ni₇ ina KAŠ₃ ANŠE u A#.G[EŠTIN.NA ...] +63'. EN₂ su.ub hi.im su.ub hi.im a na# x [...] +64'. la.ni hu.bi la.a.ni hu.bi# la#.ni# [...] +65'. DU₃.DU₃.BI {šim}er-ra UGU ku-ra-r[i ...] +66'. sa#-ma-na₇ ša₂ E₂.GAR₈ ta-[kar ...] +67'. ina# I₃.NUN SUMUN HI.HI x [...] +68'. [E]N₂ ki#.ni.ip ki.ni.ip ba ah# [...] +69'. [DU₃.DU₃].BI ina an-ṣa-ab-ti K[UG.SIG₁₇ IGI GIG ta-kaṣ₃ ...] +70'. [x x G]A.RAŠ#{sar} {u₂}ṣa-lam-ta₅ {u₂}KUR#.[RA? ...] +71'. [EN₂ ma]-mit GIM šar-ra-qi₂ ina KA₂ pil-ši# u[n? ...] +72'. [EN₂ a]-šar tab-ba-ni-i {d}e₂-a lip-šur x [...] +73'. [EN₂] at.he.ma at.he.e he.le.e.ma at.he.le [...] +74'. [DU₃].DU₃#.BI# na#-gap-pa ša₂ A.GEŠTIN.NA ta-kar qut-ra MAR x [...] +75'. [5 KA.INIM.M]A GIG.G[IR ZI?-hi?] +76'. [x x x hur.ri.i]m su.ub hur.ri.im a.la šu.uh.ta x [...] +77'. [x x x x x x a.p]i.il.lat aš kur.ba.an.ni id.ki.ia ul x [...] + +1. [...] +2. [x x x x x x x x x x x x g]i ha# ba# x x x [x x x x x x x Z]I-hi +3. [x x x x x x x x x hu-bu₄-u]š SUN₂ ŠEŠ₂ KUŠ ANŠE ina IZI tur-ar₂ SUD₂ MAR a-la-pa-a ina IZI +4. [x x x x x x x x x tur]-ar₂ IGI GIG MAR ta-ʾa-a ša₂ UDU.NITA₂ IGI GIG EŠ.MEŠ KUŠ HAD₂.A GAZ +5. [x x x T]I GUD# ID₂ ina IZI tur-ar₂ IGI GIG MAR {u₂}IGI-lim SUD₂ IGI GIG EŠ.MEŠ +6. [x x x x x x t]a-kar ina an-ṣa-ab-ti KUG.SIG₁₇ IGI GIG ta-kaṣ₃ +7. [x x x x x x x T]I.LA.KE₄ +8. [x x x x x x x x x x x si-k]i-tu₂ SAG#.D[U-su x x x x x x x] ina# UD#.4#.KAM# SAG#.DU-su + + +32'. [...] a +33'. [... LUH?]-si +34'. [... M]AR? +35'. [... M]AR? +36'. [... MA]R? + +1. DIŠ NA ŠA₃-šu₂ GIG GA {gud}AB₂ KUG.GA I₃.NUN UD.2.KAM₂ N[AG ...] +2. DIŠ NA ŠA₃-šu₂ GIG {u₂}GEŠTIN KA₅.A SUD₂# ina KAŠ NAG {u₂}IM.[DU? SUD₂ ina KAŠ NA]G +3. {u₂}šiz-ba-na₇ SUD₂ ina KAŠ# NAG 1/2 SILA₃ s[ah-le₂-e 1/2 SILA₃ NAGA].SI# +4. 1/2 SILA₃ IM.GU₂.EN.NA 1/2 SILA₃ [{giš}Š]E.NU 1/2 SILA₃ ZI₃.KUM 1/2 SILA₃ {š[im}LI 1/2 SILA₃ {šim}]GUR₂#.GUR₂ +5. 1/2 SILA₃ ZI₃ GU₂.GAL 1/2 SILA₃ ZI₃ G[U₂.TUR] 1/2 SILA₃ {u₂}SIKIL 1/2 SILA₃ {u₂}NIG₂ GIDRU# 1/2# SILA₃# {u₂#}ur₂#-ne₂#-e +6. GAZ ina KAŠ.SAG ina {urudu}Š[EN.T]UR tara-bak ina TUG₂ te-ṭer₅-ri IGI u MAŠ.SILA₃ LAL-id +7. ana KI MIN 1/3 SILA₃ sah-le₂-e 1/3 SILA₃ ŠE₁₀ TU#{mušen} 1/3 SILA₃ ŠE.SA.A 1/3 SILA₃ {šim}LI 1/3 SILA₃ {šim}GUR₂.GUR₂ +8. HI.HI ma-la na-aṣ-ma-ti tu#-šam-ṣa ina KAŠ.SAG SILA₁₁-aš LAL-id +9. ana# KI MIN 1 MA.NA PA {giš}ŠE.HAR SUD₂ ina A# GAZI{sar} ŠEG₆-šal tu-kaṣ₃-ṣa LAL-id +10. [ana K]I MIN 1/2 SILA₃ ZA₃.HI.LI 1/2 SILA₃ ŠE.SA.A SUD₂ ina A GAZI{sar#} SILA₁₁#-aš {šim}GUR₂.GUR₂ {šim}LI ana IGI ta-za-ru₃ IGI u MAŠ.SILA₃ LAL +11. [ana K]I MIN 1/2 SILA₃ ZI₃ MUNU₆ 1/2 SILA₃ ZI₃ DUH.ŠE.GIŠ.I₃ 1/2 SILA₃ ZI₃ GIG 1/2 SILA₃ {šim#}GUR₂#.GUR₂# 1/2 SILA₃ {šim}LI SUD₂ HI.HI ina A GAZI{sar} ta-la-aš LAL-id +12. [DIŠ N]A ŠA₃-šu₂ GIG PA {u₂}er-re-e HAD₂.A GAZ# SIM# ina LAL₃ KAŠ.SAG u I₃ hal-ṣi +13. [SIG₃-a]ṣ ba-lu pa-tan NAG-šu₂ ina DUR₂-šu₂# SI.SA₂-ma TI +14. DIŠ NA ŠA₃#-šu₂ GIG {šim}su-a-di tu-ha-sa ina A ŠED₇ tu#-la-bak NU pa-tan NAG +15. DIŠ NA ŠA₃#-šu₂ GIG-ma DUB₂ NUMUN GIŠ.GI.ZU₂.LUM.MA SUD₂# ina KAŠ.SAG NAG 1/2 SILA₃ sah-le₂-e 1/2 SILA₃ NAGA.SI +16. 1/2 SILA₃# ZI₃# GIG 1/2 SILA₃ ZI₃.KUM GAZ ina KAŠ.SAG [SIL]A₁₁-aš ina TUG₂ SUR IGI u MAŠ.SILA₃ LAL +17. DIŠ NA ŠA₃-šu₂ GIG {u₂}IGI-lim SUD₂ ina KAŠ.SAG tara#-muk# ina MUL₄ tuš-bat NU pa-tan NAG +18. PA {giš}ŠE.NU GAZ ina ZI₃.KUM HI.HI ina A GAZI{sar#} tara-bak ina TUG₂.HI.A SUR IGI u MAŠ.SILA₃ LAL +19. ana KI MIN GA.RAŠ{sar} pu-ut-ta TI ta-sak₃# ina# GA# NAG +20. 1/2 SILA₃ ZA₃.HI.LI 1/2 SILA₃ ŠE.SA.A ina GA SILA₁₁-aš ina TUG₂ SUR LAL +21. DIŠ NA ŠA₃-šu₂ GIG-ma ŠA₃ GIR₃.PAD.DU-šu₂ SIG₇ Š[A₃-šu₂ GI]G-MEŠ DIRI UD.DA SA₂.SA₂ +22. I₃.UD[U UK]UŠ₂.HAB ina ZI₃ ŠE.SA.A HI.HI 14 ku-pa-tin-n[i LA]L₃ SUD# u₂#-al-lat +23. 1/2# S[ILA₃ Z]A₃.HI.LI {giš}si-ha SUD₂ ina U[ZU? GU]D? GUR₄#.RA# GU₇-MEŠ +24. 1/2# [SIL]A₃ ZA₃.HI.LI ṭe₄-ne-ti₃ ina [x x x] SILA₁₁#-aš# LAL +25. D[IŠ NA Š]A₃-šu₂ GIG-ma di-ik-ša₂ TUKU-ši NINDA GU₇# K[AŠ NAG ana DUR₂?-šu₂ DUB]-ak# ru#-pu-uš-ta ina A.GAR₃ BURU₈ GIGURU₃? +26. [{u₂}]NU#.LUH.HA SUD₂ ina A NAG U₂# BABBAR?# [ina I₃?.GIŠ? tara?-bak? ana] DUR₂-šu₂ DUB-ak +27. GEŠTIN# SUR NAG {šim}LI# ŠIM#.Š[AL x x x ina {urudu}ŠE]N.TUR# tara-bak ina TUG₂ SUR LAL +28. [ana KI MIN U₂] BABBAR# ina I₃.GIŠ NAG i-ar₂-ru₃ x [x x x x x x {u₂}I]N₆.UŠ₂ {u₂}EME UR.GI₇ +29. [ina A ŠE]G₆.GA₂ tara-has₂-su A GAZI{sar} [x x x x x x GIŠIM]MAR? PA {giš}šu-še +30. [{šim}ŠE.L]I? PA {giš}ŠE.NU {šim}LI {šim}G[UR₂.GUR₂ x x x x x ina KU]Š te-ṭer₅-ri LAL +31. [ana KI MIN] {u₂#}GEŠTIN KA₅.A ina KAŠ NAG U₂ BABBAR ina I₃ NAG# x [x x x x ina] LAL₃ GU₇ +32. [A {giš}ŠE].NU A GAZI{sar} ana DUR₂-šu₂ DUB-ak PA# [x x x x] {u₂#}SIKIL +33. [P]A {u₂}ŠAKIRA PA {u₂}IN₆.UŠ₂ GAZ x [x x x x SU]R LAL +34. [ana] KI# MIN {u₂}NU.LUH.HA {u₂#}ti-ia₂-ta₅ SUD₂ ina KAŠ NAG# [U₂ BABBAR ina I₃.GIŠ tara-bak ana DUR₂-šu₂ DU]B-ak +35. [PA] {u₂#}GUR₂.UŠ PA {giš}KIŠI₁₆ PA {giš}DIH₃ ina A# [ŠEG₆.GA₂ tara-has₂-su A {giš}ŠE.NU A GAZ]I{sar} +36. [ana DU]R₂-šu₂ DUB-ak {šim}L[I {šim}GUR₂.GUR₂ x x x ina {urudu}ŠEN.TUR tara-bak ina TUG₂ te-ṭer₅-ri LAL] +37. [DIŠ N]A ŠA₃-šu₂ GIG-ma Š[A₃ ...] +38. [x x] x [x x] x [...] + + +41. ana# KI# MIN# U₂# BABBAR# x [...] x +42. {u₂}SIKIL x [x x] x x x [... ana DUR₂-šu₂ DU]B-ak +43. {šim}LI {šim#}ŠE#.LI# {šim#}GAM.MA# ILLU# {šim#}BULUH ŠIM.HI.A GAZ# ina# I₃#.UDU# H[I.HI ina KUŠ SUR] LAL +44. ana KI MIN {šim}ŠE.LI BABBAR ina KAŠ NAG#-ma i#-ar₂-ru₃ SUHUŠ {giš}NAM.TAR NITA₂ ina KAŠ NAG-ma i-ar₂-ru₃ LAL₃# [KUR.RA HAD₂].DA +45. ina A {giš}ŠE.NU tara-has₂-su A.GEŠTIN.NA I₃.GIŠ KUM₂-am ana DUR₂-šu₂ DUB-ak PA {giš}šu-še PA GIŠ.[GI.ZU₂.L]UM.MA +46. PA {u₂}ŠAKIRA PA {u₂}EME UR.GI₇ {šim}LI ZU₂.LUM.MA SUD₂ ina KAŠ HI.HI GUR-ma HAD₂.DU SIM# ina# [x x x ina KU]Š SUR LAL +47. [ana K]I MIN# {u₂}KUR.KUR ina KAŠ NAG-ma i-ar₂-ru₃ U₂ BABBAR ina I₃.GIŠ NAG-ma i-ar₂-ru₃ {u₂}PEŠ.TUR.Z[I GIŠIM]MAR +48. [{u₂}N]AM.TAL {šim}LI GAZI{sar} ina A ŠEG₆.GA₂ tara-has₂-su {šim}GUR₂.GUR₂ ta-sak₃ x [x] x +49. [KU]M₂-am I₃.GIŠ ana ŠA₃ tu-na-tak ana DUR₂-šu₂ DUB-ak PA {giš}ŠENNUR PA {giš}MA.NU PA {giš}ŠE.NU PA {g[iš}GE₆.PA]R₇ +50. x giš {šim}LI {šim}GUR₂.GUR₂ GAZ ina KAŠ HI.HI GUR-ma HAD₂.A GAZ ina I₃.UDU HI.HI ina KUŠ te-ṭer₅-ri# LAL# +51. [DIŠ N]A ŠA₃-šu₂ GIG-ma!(GIŠ) mim-ma GIG {u₂}KUR.RA {u₂}HAR.HAR {u₂}KUR.KUR {u₂}GAM[UN.G]E₆ +52. [{u₂}]ur₂#-ne₂#-e {u₂}tar-muš₈ {u₂}IGI-lim {u₂}eli-kul-la {u₂}SIKIL {u₂}im-hur-NIŠ GURUN {gi[š}DI]H₃? +53. [x] {u₂#}x x PA {u₂}UKUŠ₂.HAB SUD₂ ina KAŠ NAG ina DUR₂-šu₂ SI.SA₂ ina GE₆ ina A GAZI{sar} ŠEG₆.G[A₂] +54. [x] x x [...] x x x UZU# kab-ra ša ŠAH GU₇ [TI] +55. [...] SUD₂# ina I₃.GIŠ NU pa-tan EME-šu₂ DAB-[bat] +56. [...] x šu₂ u₂-sak₆-k[a] +57. [...] x x ina# I₃.GIŠ HI.HI ta-kan-nak-ma UD.3.KAM₂ GAR +58. [...] i#-ar₂#-ru₃ UD.7.KAM₂ NAG-MEŠ +59. [...] ina KAŠ.SAG NAG +60. [...] x PA {giš}NU.UR₂.MA +61. [...] ina# KAŠ.SAG NAG +62. [...] x ina I₃.GIŠ u KAŠ.SAG GAZ +63. [...] x x ad +64. [...] +65. [...] x +66. [... SILA₁₁]-aš +67. [... T]U₅-MEŠ#-šu₂-ma TI +68. [...] NAG-ma TI +69. [...] TI?#-uṭ# +70. [...] + + +1. [...] +2. [...] +3. x [...] +4. NA₄ Z[U₂.LUM.MA] x x [...] +5. A-MEŠ NU# NAG# A-M[EŠ ...] +6. {u₂}KUR.RA SUD₂ ina A [...] +7. BAR {giš}NU.UR₂.MA-a ša {im}SI.SA₂ ina [...] +8. SUM{sar} SIG₇-su hi-bi-iš hi-bi-iš u₂-al-lat x [...] +9. NUMUN {u₂}a-zu-ki-ra-ni SUD₂ [...] +10. 1/3 SILA₃ A.GEŠTIN.NA 1/3 SILA₃ GAZI{sar} 10 KISAL MUN 1/2 SILA₃ I₃.GIŠ BA[RA₂.GA ...] +11. A.UZU GUR₄ 5 GIN₂ MUN ana ŠA₃ ŠUB-ma NU pa#-tan# NAG : SUHUŠ# [...] +12. I₃.UDU {u₂}UKUŠ₂.HAB GAZ 1 SILA₃ A.GEŠTIN#.NA# ŠEG₆.GA₂ ana ŠA₃ ŠUB#-m[a ...] +13. {šim}LI# SUD₂ ina I₃#.GIŠ# [...] +14. DIŠ-ma UH₂ TUKU.TUKU {u₂}LAG GAN₂ SUD₂ ina A {giš}NU.UR₂.MA# ŠED₇# [ina DUR₂-šu₂] DUB#-ak#-m[a TI] +15. ša-ru-ra ša {u₂}UKUŠ₂.HAB HAD₂.DU GAZ ana ŠA₃ NIG₂.SILA₁₁.GA₂ u LAL₃ KUR-i# HI#.HI# [ŠE₁₀ T]U{muš[en}-MEŠ] +16. u₂-al-lat KAŠ.SAG ZU₂.LUM NAG {u₂}HAB SUD₂ ina I₃.GIŠ BARA₂#.GA# [NAG].NAG# +17. DIŠ NA ŠA₃-MEŠ-šu₂ MU₂.MU₂ it-ta-ne₂-bi-ṭu ŠA₃-šu ana par-re-e e-ta-ne₂-pa-aš₂ ana TI-šu₂# +18. SUM{sar} {u₂}GAMUN.GE₆ TEŠ₂.BI SUD₂ ina KAŠ.SAG NU pa-tan NAG-MEŠ TI# +19. ana KI MIN {u₂}SIKIL SIG₇-su SUD₂ KI I₃.ŠAH HI.HI NU pa-tan u₂-na-ṣab KAŠ BIL₂.LA₂ NAG T[I] +20. DIŠ NA ŠA₃-MEŠ-šu₂ MU₂.MU₂ it-te-ne₂-bi-ṭu IM ina ŠA₃-šu₂ NIGIN-ur i-le-bu I₃.UDU {u₂}UKUŠ₂.HAB ana DUR₂-šu₂ GAR#-[an] +21. {u₂}SUM{sar} {u₂}zi-ba-a SUD₂ ina KAŠ NAG-MEŠ 2 UD-me 1/2 SILA₃.TA.AM₃ I₃.GIŠ ana# DUR₂#-šu₂ DUB-ak T[I] +22. DIŠ NA ŠA₃-MEŠ-šu₂ MU₂.MU₂-hu it-te-ne₂-bi-ṭu NU pa-tan KAŠ LAL₃ bah-ra# NAG#-šu₂ i-ar₂-ru A.GEŠTIN.[NA] +23. ŠEG₆-šal {u₂}KUR.RA MUN TEŠ₂.BI SUD₂ ana ŠA₃ GAZ LAL₃ u I₃ hal-ṣa# ŠUB ana DUR₂-šu₂ DUB-ak T[I] +24. DIŠ NA ŠA₃-MEŠ-šu₂ it-te-nen-bi-ṭu₃ NU pa-tan KAŠ ina {dug}LA#.HA#.AN# NAG A.GEŠTIN.NA ŠEG₆.GA₂ {u₂}KUR.RA MUN e[me-sal-li₃] +25. ana ŠA₃ ŠUB I₃.GIŠ ana ŠA₃ tu-na-tak ana ŠA₃ na-aš-pak-ti DUB#-ak# I₃.GIŠ ina ŠU.SI GUB₃-ka -lu-šu₂ ŠEŠ₂-s[u] +26. DIŠ NA ŠA₃--šu₂ it-te-ne₂-bi-ṭu I₃.UDU UKUŠ₂#.HAB# ana DUR₂-šu₂ GAR-an SUM{sar} 7 u 7 u₂-al#-[lat] +27. SUM{sar} {u₂}GAMUN.GE₆ SUD₂ ina KAŠ NAG L[AL₃ KUR]-i# I₃.GIŠ ana DUR₂-šu₂ DUB NUMUN {u₂}a-zu-ki-ra-a-ni SUD₂ G[U₇?] +28. DIŠ-ma UH₂ TUKU.TUKU gan-ha UD.DA# KUR A {giš}NU.UR₂.MA ŠUR [NAG?] +29. GA I₃.GIŠ EME-šu₂ DAB-bat NAG# 1 SILA₃ KAŠ NAG {šim}LI SUD₂ ina KAŠ [NAG] +30. {u₂}GAMUN.GE₆{sar} SU[D₂ in]a KAŠ NAG {u₂}GAMUN.GE₆{sar} SUD₂ ina GEŠTIN NAG I₃.GIŠ u₂-a[l-lat] +31. DIŠ NA SAG ŠA₃-šu₂ KUM₂ ŠA₃#--š[u₂ M]U₂.MU₂-hu 1/2 SILA₃ {šim}HAB ina šur-šum-me KAŠ ta-r[ab-bak] +32. ina# TUG₂# TE LAL-id ana# [na-aṣ]-ma-ti GAZI{sar} ŠIM.ŠAL ta-za#-ru₃# IGI# u# MAŠ#.S[ILA₃ LAL] +33. [x x] x [x x x] x [x x x] x [x x x {ši]m}LI {šim}ŠE.LI {u₂#}HAR#.HAR# ana# KAŠ# ŠUB# +34. [x x x] x x x x GAZ# lu# ba#-hir₂ NAG#-šu₂# ina A₂ MUŠEN tu-šap-ra-šu-ma TI +35. DIŠ# NA# ŠA₃-MEŠ-šu₂ ma-gal nap-hu# NINDA#-MEŠ KAŠ-MEŠ ina KA-šu₂ GUR.GUR-ra SAG.DU-su GABA-su LAL₂-id +36. ra-bi-ik ZI₃.KUM ŠEG₆#-šal ina LAL₃-MEŠ I₃.UDU u I₃.NUN.NA GU₇-MEŠ SUM{sar} SUM.SIKIL{sar} +37. GA#.RAŠ#{sar} sah-le₂-e {u₂}u[r₂-n]e₂-e 3 UD-me NU GU₇ A NU TU₅-ma TI +38. DIŠ NA ŠA₃-MEŠ-šu₂ nap-hu x [x KU]M₂? ŠUB-MEŠ-su NINDA u KAŠ LAL UH₂ TUKU.TUKU-ši ana TI-šu₂ {u₂}IGI-lim +39. {u₂}IGI.NIŠ SUHUŠ {giš}NA[M.TAR] a#-he-nu-u₂ SUD₂ ina KAŠ NAG-šu₂ i-par-ru-ma EGIR an-ne₂-e +40. I₃ hal-ṣa u KAŠ NAG-šu₂ A GA[ZI{sa]r} u A.GEŠTIN.NA ŠEG₆-šal ana DUR₂-šu₂ DUB-ak-ma {šim}GUR₂.GUR₂ {šim}LI +41. {šim}GAM.MA PA {giš}ŠE.HAR# PA {giš}GE₆.PAR₃ PA {giš}ŠE.NU₂.A NUMUN {u₂}ur-ba-ti 7 U₂-HI-A ŠEŠ +42. TEŠ₂.BI GAZ SIM KI I₃#.UDU DUH.LAL₃ u {šim}HAB tu-sa-mah ina KUŠ.EDIN SUR LAL₂-su-ma TI +43. DIŠ NA ŠA₃-MEŠ-šu₂ nap-hu# gu-ha u UH₂ TUKU-MEŠ-ši NINDA u KAŠ LAL ana TI-šu₂ {u₂}KUR.RA sah-le₂-e DIŠ#-niš# SUD₂# +44. ina KAŠ NAG-šu₂ {u₂}ur₂#-ne₂-e ina A GAZI{sar} ŠEG₆-šal ta-ša₂-hal ŠED₇ lu ba-hir₂ ana DUR₂-šu₂ DUB TI# +45. DIŠ NA ŠA₃-MEŠ-šu₂ nap-hu# SAG ŠA₃-šu₂ ru-pu-ul-ta TUKU-MEŠ-ši ana TI-šu₂ U₅ ARGAB{mušen} {u₂}tu-lal GI.ŠUL.HI +46. PA {giš}šu-še i[na MU]D₂ EREN u A GAZI{sar} tu-ka-an LAL₃ I₃ hal-ṣa I₃.NUN u KAŠ.SAG +47. ana ŠA₃ ŠUB-d[i i]na MUL₄ tuš-bat ina še-ri₃ ta-ša₂-hal NU pa-tan NAG-ma TI +48. DIŠ NA ŠA₃-MEŠ#-š[u₂ nap]-hu ZI₃ ŠE.SA.A ZI₃ MUNU₆ NUMUN {u₂}KI.{d}IŠKUR di-ik-ta ša₂ ZU₂.LUM# +49. TEŠ₂.BI SU[D₂ NU pa-t]an GU₇-MEŠ A-MEŠ NU NAG A-MEŠ SAG ŠA₃-šu₂ tu-sa-lah₂-ma TI# +50. [DIŠ] NA ŠA₃-šu₂# [e-m]e-er 10 KISAL A {giš}ŠE.NU 10 KISAL A MUN ina LAL₃ u KAŠ [NAG] +51. [ana K]I MIN {gi[š}NU.U]R₂.MA GU₇ A {giš}NU.UR₂.MA N[AG] +52. [ana KI MI]N {ši[m}L]I? SUD₂ ina KAŠ NAG : ana KI MIN SIG₂ GAL₄.LA {munus}ŠU.GI ina MURUB₄# KA-šu₂ G[AR-an] +53. [ana KI MIN {giš}NU.U]R₂.MA PA {giš}MA₂.RI₂.IŠ.MA₂.RA SUD₂ ina A NA[G] +54. [DIŠ NA ŠA₃-šu₂ I]M ṣe-en ŠUM!(DIM₃).GAM.ME ZABAR lu GIR₂ ZABAR i-lik-ma TI +55. [SAHAR URUDU.NIG₂.KAL]AG.GA tu-uš-ṣe-en-šu₂ i-ši-hi-iq-ma TI +56. DIŠ NA ŠA₂#--šu₂# [em]-ru# 10 KISAL PA {giš}šu-nim 10 KISAL LAL₃# ana# ŠA₃# KAŠ# ŠUB# ina MUL₄ tuš-bat ina še-ri₃ NU pa-tan NAG-MEŠ-ma TI +57. DIŠ NA ŠA₃-šu₂ e[m-ru M]U₂.MU₂#-hu# ŠA₃#-šu₂# iš-ta-na-si NINDA u A GUR SUHUŠ {giš#}NAM#.TAR NITA₂ {šim}HAB ina KA-šu₂ i-na-ʾ-is +58. LAL₃ KUR-i ina K[AŠ SAG NA]G {šim}HAB ina KAŠ.SAG ŠEG₆.GA₂ ana DUR₂-šu₂ DUB-ak PA {giš}GE₆.PAR₃ {šim}LI {šim}KU₇.KU₇ +59. ILLU a-bu-k[a-ti {giš}Š]E.NU GAZ ina I₃.UDU HI.HI ina KUŠ TE# LAL ina A {giš}ŠE.NU ir-ta-na-haṣ +60. DIŠ NA ŠA₃-šu₂ [x x x x K]UM₂ ŠUB.ŠUB-su IM TUKU.TUKU NINDA A GUR# {u₂}IGI.NIŠ SUHUŠ {giš}NAM.TAR NITA₂ +61. ina KAŠ.SAG S[UD₂ NAG-šu₂ EG]IR-šu₂ I₃ hal-ṣa ina KAŠ NAG SI.SA₂ GAZI{sar} A.GEŠTIN.NA ŠEG₆-šal ana DUR₂-šu₂ DUB +62. {šim}L[I x x x {ši]m}HAB PA {giš}GE₆.PAR₃ PA {giš}ŠE.NU GAZ ina I₃.UDU HI.HI ina KUŠ TE LAL KIMIN +63. DIŠ NA ŠA₃-šu₂ x [x x x NIND]A u# A ina KA-šu₂ GUR.GUR-ra SAG.KI-MEŠ-šu₂ up#-ta-ṭa-aṭ!(TA)-ra x x x x +64. x x x [...] x x ina# I₃#.ŠAH# GU₇-MEŠ SUM{sar} SUM.SI[KIL{sar} x x x x] +65. [...] x [...] x [...] + +1. DIŠ NA ŠA₃-šu₂ e-sil SAG.DU G[U₇-šu₂ ...] +2. %sux a-ba du₁₀ u-me-ni-ir a-ba [du₁₀ u-me-ni-ir ...] +3. KA.INIM.MA LU₂ es-li D[U₃.DU₃.B]I EN₂# 3#-šu₂# ana# Š[A₃ ŠID-nu ...] +4. DIŠ NA ŠA₃-šu₂ NINDA u KAŠ la i#-mah#-har 1/3 SILA₃ A ZU₂.LUM#.MA# 1/3# SILA₃# [A] GAZI#{sar#} [x x x x x x] +5. EGIR-šu₂ AL.US₂.SA A.GEŠTIN#.NA NAG-ma KUM₂ ša₂ ŠA₃-šu₂ i-ša₂-haṭ{aṭ} im-me-si# [x x x x] +6. DIŠ NA ŠA₃-šu₂ NINDA la i-mah-har# NUMUN {giš}ŠINIG SUD₂ ina LAL₃ u I₃.NUN HI.HI ba-lu pa-tan N[AG-šu₂-ma TI] +7. DIŠ NA NINDA u KAŠ LAL-ṭu {u₂#}HAR.HAR {u₂}NU.LUH#.HA {u₂}ur₂-nu-u GAZI{sar} {u₂}ti-ia₂-ta₅ {u₂}SUMUN.DAR {u₂#}x x [x] +8. {šim}GUR₂.GUR₂ {šim}GAM.MA {šim}MAN.DU {giš}EREN {giš}EREN.SUMUN {šim}MUG ZU₂.LUM.MA LAGAB MUNU₆ MUN {giš}ŠE.[NU] +9. A.GEŠTIN.NA KALAG.GA ina# KAŠ tara-muk ina MUL₄ tuš-bat ina še-ri₃ ina {urudu}ŠEN.TUR ŠEG₆-šal 5 GIN₂ I₃ hal-ṣa ana IGI ŠUB ana DUR₂-šu₂ DU[B-ak] +10. ana ŠA₃ UTUL₂ ŠUB-ma IGI#.4#.GAL₂.LA U₂ mat-qa IGI.4.GAL₂.LA U₂ TUR mat-qu# IGI.4.GAL₂.LA {u₂}a-ra-ri-ia₂-nu# {( : {u₂}mer-gi-ra-a-nu# )} +11. 90 {u₂}si-sin-ni ŠA₃ mal-ma-liš SUD₂ ina KAŠ {lu₂}KURUN₂.NA NU pa-tan NAG-ma ina DUR₂#-šu₂# SI.SA₂-ma TI# +12. DIŠ NA ŠA₃--šu₂ ga-an-nu ga-ah-ha TUKU NINDA u A muṭ-ṭu₂ UH₂ TUKU-MEŠ-ši {u₂}KUR.RA SUD₂ ina# I₃#.GIŠ# NAG-ma i-ar₂#-[ru₃] +13. {u₂}KUR.RA sah-le₂#-e SUD₂ ina KAŠ NAG {u₂}ur₂-ne₂-e ina A ŠEG₆-šal tu-kaṣ₃-ṣa# ana# DUR₂#-šu₂ DUB-a[k] +14. PA {giš}GE₆#.PAR₃# PA {u₂}KI.{d}IŠKUR PA {giš}bi-ni {šim}LI {šim}GUR₂.GUR₂ {šim}GAM.MA {šim#}HAB {š[im}x x] +15. ina A# [ZU₂].LUM.MA tara-bak GUR-ma HAD₂.A GAZ ina I₃.UDU HI.HI ina KUŠ TE LAL ina A {giš}ŠE.NU ir-ta#-na#-[haṣ-ma TI] +16. DIŠ [NA Š]A₃-šu₂ e-ta-na-ša₂-aš-ma NINDA u KAŠ.SAG la i-mah-har MAŠ.SILA₃-MEŠ-šu₂ GU₇-MEŠ-šu₂ SAG.DU-su gi-na-a LAL [x x x] +17. U[D.7.KA]M₂ SUM{sar} SUM.SIKIL{sar} GA.RAŠ{sar} NU GU₇ ina A {giš}ŠE.NU RA-MEŠ NUMUN {u₂}UKUŠ₂.HAB NUMUN {u₂}HAR.HAR ina KAŠ N[AG-ma TI] +18. DIŠ NA# ŠA₃-šu₂ ha-ah-ha DIRI ana TI-šu₂ GI DU₁₀ {šim}BAL {šim}LI {u₂}HAR.HAR {šim}ŠE.L[I? BABBAR?] +19. i[na K]AŠ.SAG ŠUB ŠEG₆-šal ta-ša₂-hal lu ba-hir₂ 10 KISAL LAL₃ ana ŠA₃ GAZ NU pa-tan NAG-šu₂ i-ar₂-[ru₃-ma?] +20. [ina] A₂.GU₂.ZI.GA LAL₃ I₃ hal-ṣa u KAŠ TEŠ₂.BI HI.HI NU pa-tan EME-šu₂ DAB-bat NAG-šu₂ [TI] +21. DIŠ NA ha-hu# DAB-su NUMUN {u₂}SIKIL NUMUN {giš}GEŠTIN KA₅.A {u₂}AB₂.DUH {u₂}NIGIN{sar} {u₂}TAL₂.TAL₂ 5 U₂-MEŠ ŠEŠ TEŠ₂.B[I SUD₂?] +22. ina A GAZI{sar} tara#-bak# ina TUG₂.HI.A SUR SAG ŠA₃-šu₂ LAL₂-id U₂ BABBAR SUD₂ ina A-MEŠ NU pa-tan NAG T[I] +23. ana KI MIN ILLU {š[im}BUL]UH SUD₂ ina GEŠTIN ŠUR.RA NU pa-tan NAG [TI] +24. ana KI MIN {u₂}[x] x SUD₂ ina KAŠ.SAG NU pa-tan NAG [TI] +25. DIŠ NA IM ina ŠA₃#-šu₂# [NIGIN-h]ur ana TI-šu₂ SUHUŠ {u₂}EME UR.GI₇ ša ina ZI-ka {d}UTU NU IGI#.[BI] +26. HAD₂.A SUD₂ i[na KAŠ.SA]G NU pa-tan NAG T[I] +27. DIŠ NA IM ina ŠA₃-šu₂ i-le#-e[b-bu {u₂}EME U]R.GI₇ NUMUN {u₂}EME UR.GI₇ DIŠ-niš SUD₂ ina KAŠ NU pa-tan NAG TI +28. DIŠ NA IM GIM di-ik-ši ina ŠA₃#-š[u₂ TAG.MEŠ-šu₂ 1/2 GIN₂ {giš}E]REN 1/2 GIN₂ {giš}ŠUR.MIN₃ 1/3 GIN₂ {šim}GIR₂ 10 GIN₂ {giš}EREN.SUMUN +29. 10 GIN₂ MUN eme-sal-li₃ {šim}L[I x x x x x x x] ina# KAŠ.SAG ŠEG₆-šal I₃.GIŠ ana IGI ŠUB ana DUR₂-šu₂ DUB-ak +30. DIŠ NA IM ina ŠA₃-šu₂ uš-tar-ʾ-a[b i-le-he-eb ki-ib]-su-šu₂ še-pi-BI GABA-su u MAŠ.SILA₃-MEŠ-šu₂ +31. GU₇-MEŠ-šu₂ UZU-MEŠ-šu₂ u₂-šam-ma#-[mu-šu₂ u GIR₂.GI]R₂-šu₂ UZU-MIN-šu₂ ma-ṭu-u ni-ip-še DIRI SAG-MEŠ-šu₂ i-ta-na-nu-u₂ +32. KUM₂-MEŠ ina kal UD-me u₂-kil₂-š[u x x x x x x {ši]m}LI {u₂}KUR.KUR {u₂}HAR.HAR sah-le₂-e GAZI{sar} +33. MUN a-ma-ni₇ {u₂}ur₂-ne₂-e PA {giš}b[i-ni 9 U₂.HI].A# ŠEŠ TEŠ₂.BI SUD₂ ina GEŠTIN DU₁₀.GA u KAŠ.SAG ta-ra-sa-an +34. ina# GE₆# ana# IGI# MUL₄ tuš-bat ina A₂#.GU₂#.Z[I.GA ŠEG₆-šal t]a-ša₂-hal ŠED₇ 7 ŠE-MEŠ HENBUR₂ {u₂}UKUŠ₂.HAB +35. 7 ŠE-MEŠ {na₄}AN.ZAH TEŠ₂.BI SUD₂ a[na ŠA₃ GA]Z la-am {d}UTU na-pa-hi NAG-šu₂ +36. ina A₂ tu-šap-ra-šu₂ šum₄-ma DU₁₀.G[A N]U IGI-mur ana DUR₂-šu₂ DUB-ak TI +37. DIŠ NA NINDA GU₇ KAŠ NAG-ma la i-še-eb-bi ŠA₃--šu₂ MU₂.MU₂-h[u ŠA₃-šu₂ N]U IGI#-har# GIM it-ta-šu bi-sik-ta₅ GIG +38. ŠURUN GUD ina A ta-mah-ha-ah ŠEŠ₂ {giš}ZU₂.LUM.MA GA.RAŠ{sar} U[KUŠ₂?.HAB x x] x NINDA# u# KAŠ# la i-lem UD.7.KAM₂ A ša₂!(7) PU₂ i#-š[a-ti] +39. DIŠ NA hu-šah-hu DAB-su 1 SILA₃ KAŠ.SAG ina MUL₄ tuš-bat ina š[e-ri₃ x x x x] x x [x x x] +40. DIŠ NA ma-ʾ-di-iš e-na-ah-ma IM e-dip-ma NU# [...] x [x x x] +41. ina A GAZI{sar} ir-ta-na-haṣ MUN DUR₂.NU#.[LUH.HA ...] x [x x x] +42. DIŠ NA U₂ NAG-ma la i-ar₂-ru₃ ṣe-me-er a-za-pi Š[AH ...] +43. A u I₃.GIŠ ŠEG₆-šal EN ši-bi-šu₂ u₂-al-lat hi r[i ...] +44. DIŠ NA U₂ NAG-ma la ip-ru la iṣ-nu-uh NA BI ze-e-ze-na GIG ana# TI#-šu₂# {giš#}si#-[hu {giš}ar₂-ga-nu] +45. {giš}ba-ri-ra-ta₅ {šim}GUR₂.GUR₂ {šim}LI {šim}GAM.MA# {šim}GIG {giš}EN.DI ina A PU₂ [x x x x] +46. NE-su ana DUR₂-šu₂ DUB-ak 10 KISAL {šim}GUR₂#.GUR₂# ŠEŠ₂#-su-ma ŠA₃-MEŠ-šu₂ [SI.SA₂-ma TI] +47. DIŠ NA an-šu₂-tu₄ iṣ-bat-su-ma la u₂-šar-da# KAŠ.SAG ina ŠEN.TUR ŠEG₆-šal MUN ana ŠA₃ ŠUB ana DU[R₂-šu₂ DUB] +48. ŠU.SI-ka {tug₂}GADA NIGIN MUN ta-ṣap-pu DUR₂-šu₂# ta-kar SIG₂ GAL₄.LA {munus}ŠU.GI ina MURUB₄ KA-šu₂ GAR [ina-eš] +49. DIŠ NA KAŠ.SAG NAG-ma SUHUŠ-MEŠ-šu₂ pa-al-qa di#-ig#-la ma-a-ṭi ana TI-šu₂ NUMUN {u₂}SIKIL NUMUN {u₂}DILI NUMUN {giš}bi#-[ni] +50. NUMUN {u₂}am-ha-ra NUMUN {u₂}IN₆.UŠ₂ 5 U₂.HI.A ŠEŠ DIŠ#-niš SUD₂ ina GEŠTIN SIG₃-aṣ NU pa-tan NAG-ma ina-eš# +51. DIŠ NA KAŠ NAG-ma SAG.DU-su DAB.DAB-su INIM-MEŠ-šu₂# im-ta-na-aš₂-ši ina DU₁₁.DU₁₁-šu₂ u₂-pa-aš₂-šaṭ +52. ṭe₄-en-šu₂ la ṣa-bit LU₂ BI IGI-MIN-šu₂ GUB-za ana TI#-šu₂ {u₂}IGI-lim {u₂}IGI.NIŠ {u₂}tar-muš {u₂}HAR.HAR +53. {u₂}SIKIL {u₂}DILI KA A.AB.BA {u₂}NU.LUH.HA NUMUN {u₂}NIG₂#.GAN₂.GAN₂ {u₂}kam-ka-du {u₂}eli-kul-la 11 U₂.HI.A ŠEŠ +54. DIŠ-niš SUD₂ ina I₃.GIŠ u KAŠ ana IGI {d}gu-la tuš-bat ina še-ri₃ la#-am {d}UTU MU₂-hi la-am ma-am-ma iš-ši-qu-šu₂ NAG-ma ina-eš +55. DIŠ NA GABA-su GIG#-ma GIM ši-ne₂-e-ti SAHAR TUKU.TUKU#-ši ina da-ba-bi-šu₂ ik-ka-šu₂ ik-ta-ner-ru +56. u₃# ZE₂ ip-te-nar-ru NA BI bi-šit ŠA₃ GIG ana# TI-šu₂ {u₂}EME UR.GI₇ ina KAŠ NU pa-tan NAG-šu₂ +57. ina A GAZI{sar} RA-MEŠ A {giš}ŠE.NU ana DUR₂-šu₂ DUB ZI₃# GU₂.TUR {giš}ur₂-ne₂-e ina {gi}SAG.KUD ina KA-šu₂ GID₂-ad +58. {šim}HAB I₃.UDU ZU₂.LUM {šim}LI {šim}KU₇#.KU₇ DIŠ-niš HI.HI ina KUŠ SUR LAL +59. U₂ BABBAR ina I₃.GIŠ KI MIN GAZI{sar} KI MIN A {u₂#}ur₂-ne₂-e# u GAZI{sar} {šim}GUR₂.GUR₂ KI MIN {šim}LI {šim}GUR₂.GUR₂ MIN +60. PA {giš}GE₆.PAR₃ PA {giš}ŠE.NU PA# {giš#}MA.NU E₂ NIM kal-bi I₃ DIŠ-niš HI.HI ŠU.BI.AŠ.AM₃ +61. U₂ BABBAR ina I₃.GIŠ NAG-šu₂ ina A# GAZI{sar} RA-su-ma A {giš}NU.UR₂.MA ana DUR₂-šu₂ DUB-ak-ma GU₂.GAL {šim}GUR₂.GUR₂ +62. GID₂-ad-ma {šim}LI {šim#}HAB ILLU {šim}BULUH {giš}bi-nu {u₂}SIKIL DIŠ-niš SUD₂ ina I₃.UDU HI.HI GABA-su LAL-ma ina-eš +63. {u₂}EME UR.GI₇ ina KAŠ NAG ina A GAZI{sar} KI MIN GAZI{sar} {šim}LI {šim}GUR₂.GUR₂ {šim}GAM.MA# +64. ŠIM.HI.A DU₃.A.BI PA {giš}GE₆.PAR₃ PA {giš}šu-še K[I MIN] +65. DIŠ NA di-ik-šu ina GABA-šu₂ TAG.TAG-su-ma GIM ši-ne₂-ʾ-ti SAHAR i-ša₂-an-na-ʾ-šu ina g[e-ši-šu] +66. ZE₂ i-par-ru ina da-ba-bi-šu₂ ik-ka-šu ik-t[e-ne]r-ru NA BI -šit ŠA₃-bi GIG KU₆ SUM{sar} UZU G[UD UZU ŠAH] +67. u KAŠ {lu₂}KURUN₂.NA la uš-ta-mah-har ut-ta-šar [1/2 SILA₃ Z]A₃.HI#.LI 1/2 SILA₃ {šim}GUR₂.GUR₂ 1/2 SILA₃ {giš}L[I 1/2 SILA₃ NUMUN GADA] +68. 1/2 SILA₃ {giš}GIG 1/2 SILA₃ {giš}EN.DI 1/2 SILA₃ NUMUN {u₂}[qut-ra-ti] 1/2# SILA₃# GAZI{sar} 1/2 SILA₃ NUMUN {giš}ŠE.[NU 1/2 SILA₃ GU₂.NIG₂.AR₃.RA] +69. 1/2 SILA₃ BA.BA.ZA.{d}ID₂ 1/2 SILA₃ NUMUN {u₂}ka-man-[ta ...] +70. 10 KISAL ILLU {šim}BULUH 10 KISAL KA A#.A[B.BA ...] +71. 21 U₂#.HI#.[A ...] +72. šum#-m[a ...] +73. [...] + +1. [... U]D.DA SA₂.SA₂ GAZ SIM +2. [... {gi]š}bi#-nu {u₂}IN₆.UŠ₂ RA-ma TI +3. [ana KI MIN ... ina K]AŠ NU pa-tan NAG-ma TI +4. [ana KI MIN ... {u₂}NA]GA.SI TEŠ₂.BI SUD₂ ina KAŠ.SAG SILA₁₁-aš ina KUŠ SUR-ri LAL-id +5. [... SILA₁₁-a]š ina KUŠ MIN +6. [... SILA₁₁-a]š ina SAG ŠA₃-šu₂ LAL-ma TI +7. [...] x ina A.GEŠTIN.NA KALAG.GA SILA₁₁-aš SAG ŠA₃-šu₂ LAL-ma TI +8. [...] x {u₂#}KU₆# HAD₂.A GAZ SIM ina KAŠ SILA₁₁-aš KI MIN +9. [ana KI MIN x x x x x] {u₂#}HAR.HAR {u₂}KUR.KUR {u₂}GAMUN.GE₆ {u₂}tar-muš₈ +10. [x x x x x] x DIŠ#-niš SUD₂ ina KAŠ NAG um-mi ša₂ ŠA₃-šu₂ ta-ša₂-haṭ-ma TI +11. [DIŠ NA x x x x K]I UH₂#-šu₂ MUD₂ ŠUB.ŠUB-a ki-ṣir-te ŠA₃ GIG UD.DA SA₂.SA₂ ŠA₃-šu₂ qer-be₂-na₇ GIG +12. [{u₂}u]r₂-ne₂#-e# A#.GAR#.GAR# MAŠ#.DA₃ NUMUN {u₂}KI.{d}IŠKUR NUMUN {u₂}IN₆.UŠ₂ {šim}GUR₂.GUR₂ 2 KISAL KA A.AB.BA GAZ ina A PU₂ tara-bak +13. [GUR-m]a HAD₂#.A GAZ ina A ZU₂.LUM.MA ina {dug}GAN tara-bak ina TUG₂ SUR-ri SAG ŠA₃-šu₂ ur-ra u GE₆ LAL-id DU₈-šu₂-ma +14. A# PU₂# ta-hab-bu U₂ BABBAR SUD₂ ina I₃ hal-ṣa EME-šu₂ DAB-bat NAG i-ar₂-ru LAL₂-su NAG.NAG-šu₂ iš-tu NAG-u₂ +15. [1/2] SILA₃# NUMUN# {giš#}bi#-ni 1/2 SILA₃ {giš#}GEŠTIN# KA₅.A 1/2 SILA₃ {šim}LI 1/2 SILA₃ ZU₂.LUM.MA 1/2 SILA₃ ZI₃ GIG GAZ ina A GAZI{sar} tara-bak +16. [GUR-ma HA]D₂.A GAZ ina A ZU₂.LUM ina {dug}GAN tara-bak ina TUG₂.HI.A SUR-ri ur-ri u GE₆ LAL +17. [ana KI MIN] PA# {giš}NU.UR₂.MA PA {giš}GE₆.PAR₃ PA {giš}NAM.TAR NITA₂ ŠIKA NIG₂.BUN₂.NA{ku₆} ILLU {šim}BULUH GAZ +18. [ina A Z]U₂.LUM.MA ina {dug}GAN tara-bak GUR-ma HAD₂.A GAZ ina KAŠ u I₃.GIŠ ina {dug}GAN tara-bak ina TUG₂ SUR +19. ur#-ri# u GE₆ LAL-id KU.KU {u₂}ti-ia₂-ta₅ ina KAŠ NU pa-tan NAG 1/3 SILA₃ ŠE₁₀ TU{mušen}-MEŠ +20. 1/3 SILA₃ NUMUN {u₂}AB₂.DUH 1/3 SILA₃ GURUN {u₂}MAŠ.HUŠ ta-haš-šal ina A GAZI{sar} tara-bak GUR-ma HAD₂.A GAZ +21. ina A ZU₂.LUM.MA ina {dug}GAN tara-bak ina TUG₂ SUR-ri ur-ri u GE₆ LAL-id +22. ana KI MIN 1/2 SILA₃ NUMUN {u₂}DILI 1/2 SILA₃ {u₂}LAG GAN₂ SIG₇ 1/2 SILA₃ U₅ ARGAB{mušen} 1/2 SILA₃ ZI₃ ZIZ₂.A.AN +23. GAZ ina A ID₂ tara-bak GUR-ma HAD₂.A GAZ SIM ina A ZU₂.LUM.MA ina {dug}GAN tara-bak ina TUG₂ SUR-ri +24. ur-ra u GE₆ LAL-id NUMUN {giš}GEŠTIN KA₅.A ina KAŠ NU pa-tan NAG ina A ŠEG₆-šal tara-has#-su# +25. ana KI MIN ZA₃.HI.LI ina KAŠ NAG NUMUN {u₂}KI.{d}IŠKUR-ri NUMUN {giš}MA.NU NUMUN {giš}ŠINIG {šim}GUR₂.GUR₂ GAZ# +26. ina A GAZI{sar} tara-bak GUR-ma HAD₂.A GAZ ina A ZU₂.LUM.MA ina {dug}GAN tara-bak ina TUG₂.HI.A SUR-ri ur-ri u GE₆ [LA]L +27. ana KI MIN {šim}LI {šim}GUR₂.GUR₂ {šim}HAB {šim}GAM.MA {u₂}ba-ri-ra-ta₅ {šim}BULUH {giš}EREN {giš}ŠUR.[MIN₃] +28. {šim}BAL GAZ ina A GAZI{sar} tara-bak GUR-ma HAD₂.A GAZ ina A ZU₂.LUM.MA u KAŠ ina {dug}GAN tara-bak# +29. ina TUG₂.HI.A te-ṭer₅-ri ur-ra u GE₆ LAL-id IM.SAHAR.NA₄.KUR.RA ina KAŠ NAG# +30. ana KI MIN PA GIŠ.GI.ZU₂.LUM.MA PA {u₂}SIKIL PA {u₂}IN₆.UŠ₂ GURUN GA.RAŠ{sar} GURUN {giš}NU.UR₂.MA NUMUN {giš}HA.LU.UB₂# +31. PA {giš}ASAL₂ GAZ ina A GAZI{sar} ina# {dug#}GAN# tara#-bak# ina TUG₂ SUR ur-ra u GE₆ LAL ina A ŠEG₆-šal tara-has₂-su U₂# ŠEŠ# +32. ina# I₃# u# K[AŠ? N]U pa#-tan# NAG# tu-ša₂-ʾ#-[ra-š]u₂-ma!#(GIŠ) DU₁₀.GA GU₇ DU₁₀.GA NAG ka-la UD u GE₆ ina K[A₂? GU]B?.GUB +33. ina {giš}NA₂-šu₂# l[a NU₂ in]a še-ri₃ A KUM₂-ti₃ TU₅-šu₂ I₃.GIŠ KUM₂ ŠEŠ₂ UD.3.KAM₂ G[UR.GUR-š]um +34. DIŠ NA KI UH₂#-šu₂# MUD₂ ŠUB-MEŠ-a NA BI ta-aš₂-ni-qa GIG ana TI-šu₂ 1/3 SILA₃ I₃.UDU 1/3 SILA₃ ZU₂.LUM.MA# 1/3# SILA₃ {šim#}HAB# +35. 1/3 SILA₃ {šim}GUR₂#.GUR₂ 1/3 SILA₃ {šim}LI 1/3 SILA₃ {šim}BULUH# 1/3# SILA₃# DUH#.ŠE.GIŠ.I₃ 1/3 SILA₃ NUMUN {giš}bi-ni 8 U₂#.[HI.A] ŠEŠ DIŠ-niš GAZ +36. ina I₃.NUN tal-tap#-pat ina KUŠ SUR IGI u MAŠ.SILA₃ EN DU₁₀.GA-šu₃ 3 ITI#.MEŠ# LAL₂#-su-ma LAL-ta ina K[A-ka] u₂#-še-ṣa-am-ma ina-eš +37. DIŠ# NA# ki-ṣir# ŠA₃ GIG NINDA u KAŠ ŠA₃#-šu₂# la IGI-šu₂ ina KA#-šu₂# GUR.GUR TUN₃#-šu₂# i#-sa-hal#-šu₂# ana TI-[šu₂] 1/2# SILA₃ sah-le₂-e +38. [1/2 SIL]A₃ {šim#}GUR₂#.GUR₂# 1/2# SILA₃# {šim#}LI# 1/2 SILA₃ {u₂}KI.{d}IŠKUR 1/2 SILA₃ ka-si-i 1/2# SILA₃# pa#-pa-si-{d#}[ID₂] 1/2 SILA₃ {u₂}KUR.RA +39. [1/2 SILA₃ {u₂}A]B₂.DUH 1/2 SILA₃ ZU₂.LUM.MA 1/2 SILA₃ DIDA SIG 1/2 SILA₃ ZI₃ MUNU₆ 1/2# SILA₃ ZI₃ G[U₂.GA]L 1/2 SILA₃ ZI₃.KUM +40. 1/2# SILA₃# ZI₃# GIG# 1/3 SILA₃ ŠE₁₀ TU{mušen} 1/3 SILA₃ {u₂}KAM-ti GAN₂ 10 KISAL {šim}ŠEŠ 10 KISAL# KA A.AB.BA +41. [16] U₂.HI#.A# ŠEŠ DIŠ-niš GAZ SIM ina KAŠ ina {urudu}ŠEN.TUR GIM ra-bi-ki tara-bak +42. ina# KUŠ#.EDIN SUR 3 UD-me SAG ŠA₃-šu₂ LAL NINDA u KAŠ ŠA₃-šu₂ IGI-šu₂-ma ina-eš +43. [DIŠ NA] ki#-ṣir# ŠA₃-bi GIG NINDA# u# KAŠ# ŠA₃-šu₂ NU IGI-šu₂ ina KA-šu₂ GUR.GUR ip-te-ne₂-ru ana TI-šu₂ 1/2 SILA₃ A ZU₂.LUM.MA +44. [1/2 SIL]A₃ A# GAZI#{sar} 10 KISAL {u₂}KUR.RA SUD₂ ana# ŠA₃# ŠUB# ba-lu pa-tan NAG-šu₂ EGIR-šu₂ 1/3 SILA₃ AL.US₂.SA NAG# ina DUR₂-šu₂ GIŠ-ma NINDA u KAŠ ŠA₃-šu₂ KI MIN +45. [ana KI MIN M]UN KUR-i MUN a-ma-ni₇ DIŠ-niš SUD₂ ina KAŠ NU pa-tan NAG-ma ina-eš +46. [ana KI MI]N ZI₃# ŠE#.SA#.A ZI₃ HARUB!(AMAŠ) qi₂-lip₂ ZU₂.LUM.MA SUD₂ ina KAŠ 2 UD-me +47. [ba]-lu pa#-tan# NAG-šu₂ A NU NAG A SAG ŠA₃-šu₂ tu-sa-lah₂-ma ina-eš +48. [DIŠ NA NIND]A u# KAŠ ŠA₃-šu₂ NU IGI-šu₂ UZU-MEŠ-šu₂ ir-ta-nam-mu IM ina DUR₂-šu₂ NIGIN-ur₂ ana TI-šu₂ 1/2 SILA₃ A ZU₂.LUM.MA 1/2 SILA₃ A GAZI{sar} +49. [2? GIN₂? A.GEŠTIN.N]A 2 GIN₂ {u₂}KUR.RA 3 GIN₂ I₃ hal-ṣa 3 GIN₂ LAL₃ KUR-i DIŠ-niš tuš-te-mid GAZ# ina GE₆ ina IGI {mul}UZ₃ tuš-bat +50. [ina še-r]i₃ ŠEG₆#-šal ta-ša₂-hal ŠED₇ ina ŠA₃ tah-ta-na-su EGIR-šu₂ NAG A u KAŠ DIRI# {giš}si-ha {giš}ar-ga-nu +51. {giš#}LUM.HA GAZI{sar} PA GAZI{sar} NUMUN {giš}ŠE.NU₂.A ana ŠA₃ ŠUB ŠEG₆-šal ta-ša₂-hal mar-ha-ṣi tu-ša₂-at-tam-ma +52. ina# ŠA₃ RA-su I₃ SU-šu₂ EŠ-aš {giš}GEŠTIN KA₅.A {u₂}EME UR.GI₇ SUD₂ ina KAŠ NAG-šu₂ +53. PA {giš}GE₆.PAR₃ PA {giš}šu-še HAD₂.A DIŠ-niš GAZ SIM ina I₃.UDU HI.HI ina KUŠ.EDIN SUR LAL₂-su-ma ina-eš +54. DIŠ NA SAG ŠA₃-šu₂ GU₇-šu₂ ina ge-ši-šu₂ ZE₂ im-ta-na-ʾ NA BI qer-be₂-na GIG +55. DUB 2.KAM₂ DIŠ NA su-a-lam GIG ana ki-is ŠA₃ GUR +56. E₂.GAL {m}AN.ŠAR₂-DU₃.A MAN ŠU₂ MAN KUR AN.ŠAR₂{ki} ša {d}AG u {d}taš-me-tu₄ GEŠTU-MIN ra-pa-aš₂-tu₄ iš-ru-ku-uš +57. e-hu-uz-zu IGI-MIN na-mir-tu₄ ni-siq ṭup-šar-ru-ti +58. ša ina LUGAL-MEŠ-ni a-lik mah-ri-ia mam₂-ma šip-ru# šu-a-tu la e-hu-uz-zu +59. bul-ṭi TA muh-hi EN UMBIN liq-ti BAR-MEŠ ta-hi-zu nak-la +60. a-zu-gal-lu-ut {d}nin-urta u {d}gu-la ma-la ba-aš₂-mu +61. ina ṭup-pa-a-ni aš₂-ṭur as-niq IGI.KAR₂-ma +62. a-na ta-mar-ti ši-ta-si#-[ia qe₂-reb] E₂#.GAL-ia u₂-kin +1'. 7 u# [7] KA#.K[EŠDA x x x x x x x x x x x x] +2'. %sux [E]N₂ sag-ki mu-un#-[dab x x x x x x] +3'. %sux sag sahar₂-ra mu-un#-[dab x x x x x x x] +4'. %sux a#-da-pa₃ ab[gal x x x x] +5'. %sux sag-ki mu-un-dab [x x x x x x x x] +6'. [D]U₃.DU₃.BI {sig₂}HE₂#.M[E.DA x x x x x x x x x x x] +7'. [{n]a₄}SAG.DU E₃ E[N₂ x x x x x x x x x x] +8'. %sux [E]N₂ a.ra tu.e a.r[a x x x x x x x] +9'. %sux šu du₃.du₃.meš šu ne.n[e.a.meš] eridu#{ki#}.ga# mu#.un#.[tum₂ TU₆.EN₂] +10'. [D]U₃.DU₃#.BI# {giš}PA GIŠIMMAR ša₂ {im}SI#.SA₂# ša₂ ina NU IM i-n[am-zu-zu TI-qe₂] +11'. [x x x x] KEŠDA# EN₂ 7!-šu₂ ŠID-nu ina SAG.KI-šu₂ tara-kas₂-m[a TI-uṭ?] +12'. %sux [EN₂ sur.ru.g]a? su.ma.hu ma.ak.tu₂ ti.e.na ha.at#.r[u] +13'. %sux [x x x x ki.in.r]e.eš.na ha.at.ri : uk#.kiš.tum si.na.an.[na] +14'. %sux [x x x x x lu.pi.t]u? šab.ki.im : an.ta.sur.ra TU₆#.E[N₂] +15'. %sux [x x x t]u.e di.pa.ra t[u.e x x x] +16'. %sux [ha.ta].ra hat.ra TU₆#.[EN₂] +17'. %sux [x x x x x x] a#.ra ba.[še?.ra? ...] +18'. [...] x x x x [...] + +1'. %sux [x x x x x x r]a mu-un-dab# [x x x x x x x x x] +2'. [D]U₃.DU₃#.BI {na₄}ZU₂ GE₆ {n[a₄}ŠUBA x x x x x] +3'. {na₄#}NIR₂ {na₄}ŠUBA SIG₇# [x x x x x x x x x] +4'. %sux [E]N₂ sag-ki-ni sag-ki [x x x x] +5'. %sux i-bi₂-ni i-bi [x x x x] +6'. %sux [m]u-ru-ub-bi-ni mu-ru-u[b-bi x x x x] +7'. %sux he₂#-bi#-da#-a#-na#-mul#-la# he₂#-en?#-[da-a-na-mul-la x x] +1'. [...] x [...] +2'. [... a-šu]-u₂# ana SAG.DU-š[u₂ ...] +3'. [... DU₁₀.GA-t]u₄ ina SU NA GAL₂-ši ana# DAB# D[U₁₀.GA-ti ...] +4'. [... SA]G NINDU ana UGU ta-za-ru₃ LAL₂#-[su-ma ...] +5'. [... {n]a₄}MIN.BABBAR {na₄}MIN.GE₆ ta-sak₃ ina I₃#.NUN# HI.HI UGU-šu₂ ŠEŠ₂# s[a-ar-ʾi ...] +6'. [...] MUD₂-MEŠ-šu₂ TI-qe₂ UGU-šu₂ ŠEŠ₂ UR.ME.E ša₂ E₂.GAR₈ ta-sak₃# x [...] +7'. [...] ŠID-nu EN₂ E₂.NU.RU ki.in.ip ki.ni.ip ki.ni.ip šu.uh.ki.ni.ip š[i.ha.ma ...] +8'. [... a-šu]-u₂# DAL.DAL DAB-it# {šim#}GUR₂#.GUR₂ GAZI{sar} u MUN DIŠ-niš SUD₂ ina A SAG.DU-s[u ...] +9'. [... a-šu]-u₂# DAB-it# SUHUŠ# {giš}šu#-ši# GAMUN?# ina KAŠ.SAG tara#-muk ina MUL₄ tuš-bat ina še-r[i₃ ...] +10'. [...] GU₇#-ma TI {gi#}ŠA₃#.GI tur-ar₂ SUD₂ ina I₃ u KAŠ ŠEŠ₂ ša-pil-ti {giš}KI[ŠI₁₆ ...] +11'. [... a-šu]-u₂# a-hi#-iz e-riš-ti GAZI{sar} LAL₂ NUMUN {u₂}KU₆ ina I₃ SUD₂ SAG.DU-su# E[Š?.MEŠ?-ma? ...] +12'. [...] SAG#.DU#-su LAL sah-le₂-e ina KAŠ NAG ILLU {šim}BULUH ana KA-šu₂ GAR-an A ZU₂.LU[M.MA ...] +13'. [... NU] pa#-tan NAG I₃ u KAŠ NAG.NAG-ma BURU₈ 1/2 SILA₃ šur-šum-me KAŠ 1/2 SILA₃ x [...] +14'. [... A]N.TA ana KI.TA tu-maš-šad U₄ 10.KAM₂ LAL₂ SUHUŠ {giš}šu-[ši ...] +15'. [...] {u₂#}KU₆ ina I₃ SUD₂ SAG.DU-su u ka-la UZ[U-MEŠ-šu₂ ...] +16'. [... NUN]DUN-MEŠ-šu₂ MU₂-MEŠ SAG.DU-su# ana# IGI#-šu₂# GID₂#.DA#-su ŠU#.MEŠ#-[šu₂ ...] +1'. [...] x-ti +2'. [... t]e-qi₂ +3'. [...] x te-qi₂ +4'. [...] TE GI +5'. [... in]a I₃# SUD₂ KIMIN# +6'. [...] KIMIN +7'. [...] x IGI#.MEŠ#-šu₂# MAR# +8'. [...] x ku#? [... t]i? [...] x +9'. [... {na₄}AN.ZA]H?.GE₆ {na₄}mu-ṣa {na₄#}ZALAG₂# {na₄}GUG {n[a₄} x (x)] +10'. [... {na₄}A]N?.NA {na₄}MUŠ.GIR₂ NUMUN# {giš}bi-ni NUMUN {giš}MA#.NU# +11'. [... U₂.M]EŠ ŠEŠ 1-niš GAZ ta-ša-pah ina I₃.UDU ELLAG₂ GU₄ GE₆ +12'. [... IG]I.MEŠ-šu₂ ka-a-a-man-nam-ma MAR-ma ina-eš +13'. [DIŠ NA e-nu-ma bir-ṣ]a IGI#-ru# 3-šu₂ ki-a-am liq-bi ša₂ {d}+en-lil₂ u {d}nin-lil₂ +14'. [ana-ku ša₂ {d}iš-tar u {d}na-na-a] ana-ku i-qab-bi-ma TI-uṭ +15'. [DIŠ ... ana ZA]G? GUB-zu TI-qe₂ ina IZI tu-kab-ba-ab +16'. [... ina L]AL₃ I₃.NUN SUD₂ IGI.MIN-šu₂ te-eq-qi₂-ma ina-eš +17'. [... HUL bir-ṣ]i? a#-na# LU₂# NU# TE#-e# A#.GUB₂#.BA# GIN#-an# ana# ŠA₃#-bi# {giš#}ŠINIG# {u₂}IN₆.UŠ₂ +18'. [(...) {u₂}SIKIL {giš}GIŠIMMAR {gi]š}MA.NU {giš}U₃.SUH₅ {giš}HAŠHUR {giš}PEŠ₃ {giš}ŠE.NU₂.A {šim}{d}MAŠ NITA₂ u MUNUS +19'. [(...) ina UL tuš-bat ina A₂.G]U₂.ZI.GA IGI {d}UTU ina E₂ ṭa-bi TU₅-šu₂ {im}KAL {im}KAL.GUG KA.A.AB.BA +20'. [(...) ina I₃ {šim}GIR₂ HE.HE Š]E[Š₂?-s]u?-ma?# KU₃#.BABBAR# KUG#.GI i-mar-ma HUL bir-ṣi ana LU₂ NU TE +21'. [DIŠ ...] x x [{giš}ŠINIG {u₂}IN₆.UŠ₂ {giš}GIŠIMMA]R? {giš#}HAŠHUR#? {giš}PEŠ₃ {giš}U₃.SUH₅ ana ŠA₃ A PU₂ ŠUB-di-ma +22'. [(...) ina UL tuš-bat ina] A₂#.GU₂#.Z[I#.GA# ... {im}KA]L {im#}KAL#.GUG# KA.A.AB.BA ina I₃ {šim}BAL +23'. [HE.HE ŠEŠ₂-su-ma TU]G₂ DADA[G ...] HUL# bir-ṣi ana LU₂ NU TE +1'. x x [...] +2'. DIŠ NA mu-kil₂# S[AG HUL-ti₃ DAB-su ...] +3'. lu NITA lu MUNUS ina# UR₃# tu#-še#-l[i-ma ...] +4'. li-in-na#-di# ina GE₆ GIN₇ {d}UTU e#-[re-bi ...] +5'. IGI ap-ti ZI₃.DUB.DUB.BU ŠUB.ŠU[B-di ...] +6'. NU i-pet-tu-šu [...] +7'. u₃ mu-šu ša-a#-ti {giš}NA₂ ṣa-al-lu x [...] +8'. DIŠ NA mu-kil₂ SAG HUL-ti₃ DAB-su maš-qi₂-ta nar-ma-ak-t[a ...] +9'. DIŠ KIMIN KUM₂ ina SU-šu₂ la-zi-iz-ma u ma-gal i-li-hi-ib x [...] +10'. u IR TUK A SAR.MUNU₆ u KAŠ₃ a-me-lu-ti {giš}EREN {šim}L[I? ...] +11'. ina NININDU UŠ₂-er ir-ta-na-haṣ-ma 10? SILAₓ(KISAL) {giš}KIŠI₁₆ x x [...] +12'. %sux en₂ ur-sag {d}asal-lu₂-hi igi-bi he₂-p[a₃ ...] +13'. %sux ur-sag {d}ša₃-zu igi-bi h[e₂-pa₃ ...] +14'. %sux ur-sag den-ki igi#-b[i he₂-pa₃ ...] +15'. %sux ur-sag {d}nin-urta i[gi-bi he₂-pa₃ ...] +16'. %sux ad-da-mu dumu-sag {d}[...-n]a-an-d[e₂ ...] +17'. %sux dumu-mu nam-tar [...] nu-un-b[ar ...] +18'. %sux {lu₂}a#-zu# di-k[u₅ ...] nu-tar-re t[u₆-en₂] +19'. %sux ka-inim-ma# sag-hul-ha-za-[kam₂] +20'. DU₃.DU₃.BI 7 x [... i]na DUR SIG₂ SA₅ E₃-ak U₂ x [...] +21'. {u₂}IGI-l[im ...] x {u₂}SIKIL giš-kan-u₅ NUMUN {giš}ŠINI[G ...] +22'. x x [... ta-la-pa]p? ina SAG.KI-šu₂ KEŠDA-su# x [...] +23'. x [...] x x [...] +1'. EN₂# {giš#}APIN?# ṣu# x x [...] +2'. gir-giš-ša₂ e ta?# x [...] +3'. ti-i-ru A.ŠA₃ e-ri-iš la a ši# a?# [...] +4'. A#.ŠA₃ id-ra-nu [...] +5'. [x] i ša₂ ti-i-ri la ib-šu-u₂ [...] +6'. [GI]M id-ra-ni a-a u₂-še-ṣa [...] +7'. [gi]r-giš-ši a-a ib-ba-ni [...] +8'. [...] gir-[giš-šu ...] +9'. [...] x x [...] + +1. [DIŠ NA SAG.DU-su GIG-ME]Š mat-qu-ti# TAB UD.DA DIRI I₃#.[UDU x x x x x] +2. [x x x x] ina I₃ {giš}EREN# HI.HI SAG#.D[U-su x x x] +3. [DIŠ KIMIN U₂? GAR-šu₂? GIM? {giš}MA].NU {u₂}mur-ra-nu MU-šu₂ HAD₂.A SUD₂ 3-šu₂ ina# [x x x x x] +4. [x x x T]UG₂ su#-u ŠEŠ₂ z[a-ku-ti-šu₂ x x] +5. [DIŠ KIMIN] {u₂#}mur-ru MU.NI HAD₂.A SUD₂ ina A HI.HI [x x x x] +6. TUG₂# su#-u ŠEŠ₂ za-ku-ti-šu₂ MU₂-ah {u₂}IGI-lim ina I₃ {giš}EREN HI.HI [x x (x)] +7. DIŠ NA SAG.DU-su GIG-MEŠ mat-qu-ti DIRI zap#-pi# ŠAH MUN ZI₃.KUM GIR₃.PAD.DU ša₂ UDU.NITA₂ tur-ar₂ S[AG.DU-su] +8. [SA]R-ab I₃ ŠEŠ₂ MAR ina I₃.GIŠ ŠEŠ₂ U₂# BABBAR S[UD₂ MA]R šu-ru-uš UKUŠ₂.HAB HAD₂.A KUM MAR ZI₃ MUNU₆ Z[I₃.KUM] +9. [GIR₃.PAD.D]U UDU.NITA₂ DIŠ-niš tur-ar₂ SUD₂ MAR-ru GUR# an#-nu#-ha#-ru {na₄}ga-bi-i DIŠ#-niš ŠEG₆ SUD₂ ina I₃ EŠ.MEŠ M[AR? x x] +10. [x x x x] A#.GEŠTIN#.NA# ŠEŠ₂# {u₂}KUR.RA SUD₂ MAR IM.GU₂#.EN.NA ina A ZU₂.LUM.MA# S[IL]A₁₁ LAL# {giš}MAŠ.HUŠ BIL-lu I₃.NUN E[Š LAL] +11. [x x x] SUD₂# MAR# {giš}nu-ur₂-ma!-a SUD₂ MAR ŠURUN U₈.UDU.HI.A ina KAŠ SILA₁₁-aš LAL [x x] x tur#-ar₂ SUD₂ Š[EŠ₂] +12. [DIŠ NA] SAG.DU-su GIG KU₇.KU₇# DIRI# SAG.DU-su SAR-ab sah-le₂-e SUD₂ 10 GIN₂ ILLU {š[im}BULUH] 5# GIN₂ {šim}H[AB] +13. [x x] NAGA.SI {šim}GUR₂.GUR₂ {šim}LI ana ŠA₃-bi ŠUB-di ina A.GEŠTIN.NA HI.HI [x x x] LAL₂-ma TI# +14. [DIŠ KI]MIN MUN a-ma#-ni# ta-šar₂-rap# SAHAR?#.URUDU?# {na₄}ga-bi-i DIŠ-niš# tu-sa-mah ina GEŠTIN.BIL.LA₂ HI.HI LAL-su-ma UD.3.KAM NU DU₈ +15. [ina D]U₈-ka KAŠ₃# KUM₂-ta₅ LUH-si ZI₃?# BAPPIR?# MUD₂ e-re#-ni ŠEŠ₂ UD.5.KAM U₂.HI.A ŠEŠ-ma MAR LAL-su-ma TI +16. DIŠ# KIMIN {u₂}ru-uš-ru#-uš-ša U₂ BABBAR BAR {giš}NU.UR₂.MA NA₄ ZU₂.LUM.MA {u₂}LAG.GA₂ sah-le₂?#-e?# BIL?#-ti₃# GURUN# {u₂}KUR.RA +17. {u₂}NU.LUH.HA {u₂}zi-ba-a ina {na₄}ur-ṣi SUD₂ ZI₃?# BAPPIR?# MUD₂ e-re-ni EŠ.MEŠ U₂#.HI#.A# ŠEŠ# M[AR LAL-su-m]a TI +18. DIŠ KIMIN KAŠ₃?# KUM₂-tu ša GUD ina A.GEŠTIN.NA KALAG.GA SILA₁₁-aš UD.3.KAM# LAL#-su# [(x)] šid# su# x x x x +19. ana# IGI?# GIG?# GAR-an {u₂}HAB NA₄ ZU₂.LUM.MA tur-ar₂ S[UD₂ x (x)] x x ti# x MAR +20. DIŠ# K[IMIN {giš}N]U.UR₂.MA e-mi-il-ta {u₂}zi-ba#-a# [...] x x LAL₃# x x ina# IZI# tu#-ša₂#-ha#-an# +21. [(x)] x x SAG.DU-su LUH-si SAR-a[b ...] x x x ŠEŠ₂?#-ma?# TI +22. [DIŠ N]A SAG.DU-su GIG#.MEŠ# KU₇#.KU₇# DIRI# x [...] x x x x x x +23. [...] x [...] x [...] + + + +52'. DIŠ?# N[A? ...] +53'. SAG?#.DU?#-su?# x x [...] +54'. DIŠ KI[MIN NAG]A.SI GAZ SIM x x [...] +55'. DIŠ KIMIN# KAŠ₃# AB₂ KUM₂-te SAG.DU-su# x [...] +56'. DIŠ NA MURUB₄ SAG.DU-šu₂ GIR₂.GIR₂-su UGU-šu₂ x [x x x x x ŠEŠ₂] +57'. DUB 4.KAM DIŠ NA UGU-šu₂ KUM₂# u₂#-[kal] +58'. E₂.GAL {m#}aš-šur-DU₃-A MAN ŠU₂ MAN KUR aš-šur{ki} ša {d}AG u {d}taš-me#-tu₄# GEŠTU-MIN DAGAL#-tu₄ iš#-ru#-ku#-u[š?] +59'. i-hu-uz-zu IGI-MIN na-mir-tu ni-siq ṭup-šar-ru-ti +60'. ša ina LUGAL-MEŠ-ni a-lik mah-ri-ia mam₂-ma šip-ru šu-a-tu la i-hu-uz-zu +61'. bul-ṭi TA muh-hi EN UMBIN liq-ti BAR.MEŠ ta-hi-zu [nak-la] +62'. a#-zu#-gal-lu-tu₄ {d}nin-urta u {d}gu-la ma-la <> ba-aš₂#-mu# ina# DUB#.MEŠ#-ni# [aš₂-ṭur as-niq IGI.KAR₂-ma] +63'. [a-n]a ta#-mar-ti ši-ta-as-si-ia# q[e₂-reb E₂.GAL-ia u₂-kin] + +1'. %sux [E]N₂ sag-k[i-ni x x x x x x x x x x x x x x x] +2'. %sux mu-ru-ub-bi-ni# m[u-ru-ub-bi x x x x x x x x x x x x x x x x x] +3'. DU₃.DU₃.BI {u₂}aš-lam N[ITA₂ x x x x x x x x x x x x x] +4'. e-ma KA.KEŠDA EN₂ ŠID-nu# [x x x x x x x x x x x] +5'. KI KA.KEŠDA ina {sig₂}HE₂.ME.DA NI[GIN-mi x x x x x x] +6'. %sux EN₂# id₂#-da-ta tir gal-gal-l[a-ta x x x x x x] +7'. %sux [mu]l₄-mul₄ {giš}geštin gir₂ mu-un-ka[r-re x x x x x x x] +8'. %sux [šu m]u₂-mu₂#-e#-de₃# mul#-mul# [x x x x x x x x x x x x] + +1'. [x x x x x x x x x x x x x x x x x {iti}]KIN +2'. [x x x x x x x x x x x x x x x x x x x x x ŠEG₆-ša]l GU₇ +3'. [x x x x x x x x x x x x x x x x G]U₇ +D[U₃.DU₃.BI +...] +5 +KA#.INIM.MA +[x +x +x +x] +EN₂ +su.ub +hur.ri.im# +su#.[ub +...] +ša₂ +sa.ku.tu₂ +hi.si +a.pi.il.lat +aš +k[ur.ba.an.ni +...] +KA.INIM.MA +GIG.GIR +ZI-hi +DU₃.DU₃.BI +SIG₂# +SA₅# +[...] +EN₂ +ma-mit +GIM +šar-ra- +ina +KA₂ +pil-ši +un +gi +ha +ba# +[x +x +x +x +x +x +x +x +x +x +x +x] +DU₃.DU₃.BI +ina +ŠIM +IGI +GIG +ta-kar +hu-bu₄-uš +SUN₂ +[x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +IGI +GIG +MAR +{šim}ŠEŠ +ina +IZI +tur-ar₂ +IGI +GIG +[x +x +x +x +x +x +x +x +x +x +x +x +x +x] +IGI +GIG +MAR +TI +GUD +ID₂ +ina +IZI +tur-ar₂ +IGI +GI[G +x +x +x +x +x +x +x +x +x] +SUN₂ +{lu₂}KURUN₂.NA +IGI +GIG +ta-kar +[x +x +x +x +x +x +x +x +x +x +x] +2 +KA.INIM.MA +[x +x +x +x +x +x] +DIŠ# +NA +SAG.DU-su +gur-ru-ud +sah-le₂-e +si-ki-[tu₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +ina# +A +NAGA +SAG.DU-su +LUH-si +I₃.GIŠ +EŠ.MEŠ# +[x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +[DIŠ +KI +M]IN +SAG.DU-su +tu-gal-l[ab +...] +[{u₂}]HAB# +S[UD₂ +MAR +{u₂}]ZA#.[BA.LAM +...] +[x +x +x +x +x +x +x +x +x +x +x +x +a-n]a-ku# +u₂#-[ša₂-an-ni] +[x +x +x +x +x +x +x] +TI-e# +[... +LI.D]UR +ŠID-nu +[x +x +x +x +{gi}pisa]n-gen₇ +keš₂-da +[x +x +x +x +x +x +x +x +x +x +x +a-g]e₆-a +nu-tuku +[x +x +x +x +x +x +x +x +x +x +x +x +n]u-ku₄-ku₄ +[... +nig₂ +g]e₂₆-e +gen-na +dumu-gu₁₀ +[x +x +x +x +x +x +x +x +x +x +x] +šu +u-me-ti +[x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +k]a-bi-ta +u-me-ni-gar +[x +x +x +x +x +x +x +x +x +x +x +x +x +h]e₂-en-si-il-e +[x +x +x +x +x +x +x +he₂-em-ma-r]a-e₃ +[x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ina +KA]Š +NAG-ma +ina-eš +[... +Š]A₃? +GIG +[...] +ka#-keš₂#-bi# +he₂-du₈-a +[...] +ka-keš₂-bi +he₂-du₈-a +[x +x +x +x +x +x +x +x +x +x +x +x +ina +KA-š]u₂ +u₂-man-zaq-ma +ina-eš +[... +S]IG₃.SIG₃-ta +ma-la-a +rit-ta-šu₂ +[... +a]-ha-tu +mu-še-qa-at +re-ši-šu₂ +[... +na-š]i +pat-ri +TU₆ +EN₂ +[x +x +x +x +x +x +x +x +x +x +x +ana +UG]U +EN₂ +ŠUB-di +ina +KA-šu₂ +u₂-man-zaq-ma +ina-eš +[x +x +x +x +x +x +x +x +x +x +x +x +as-su]h-šu₂-ma +iṣ-ṣa-bat +ŠA₃-bi +[x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +K]I +DU₁₁.GA-ma +iṣ-ṣa-bat +ŠA₃-bi +AN +u +KI +[x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +a-na +u₂-ma]-mi# +DU₁₁.GA-ma +iṣ-ṣa-bat +ŠA₃-bi +u₂-ma-me +[x +x +x +x +x +x +x +x +x +x +x +x +x +Š]A₃-bi +{d}UTU +lip-pa-šir +[x +x +x +x +x +x +x +Š]A₃-bi# +u₂-ma-me +lip-pa-šir +[x +x +x +x +x +x +x +x +x +x +x +x +šam-ma]-ka +NAG-šu₂ +lib-luṭ +[...] +U₂# +KI +KI +MIN +KI +MIN +[...] +ŠA₃#-bu +i-re-du-šu +[... +ap-p]i? +šil-ta-hi +ša₂ +7 +KA.KEŠDA-MEŠ-šu₂ +7-šu₂ +u +7-šu₂ +[... +SAHA]R? +TA# +{urudu#}na#-ah#-bi?# +[ana? +{urud]u}na#-ah#-bi?# +[x +x +x +x +x +x +x +x +T]I-q[e₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +[x +x +x +x +x +x +x +ZI₃ +ŠE.SA].A +ina +A +GAZI{sa[r} +x +x +x +x +x +x +x +x +x +x +x] +[x +x +x +ARA₃-t]i₃ +{šim}GUR₂.GUR₂ +NA[GA.SI +x +x +x +x +x] +[x +x +MUN +em]e-sal-li₃ +mal₂-ma-liš +HI.HI +ina# +[x +x +x +x +x +x +x +x] +[x +x +ZA₃.HI].LI +1/3 +SILA₃ +ŠIKA +IM.ŠU.RIN.NA +10 +G[IN₂ +x +x +x +x +x +x] +[x +x +GAZI{s]ar} +SILA₁₁-aš +LAL-ma +UD.3.K[AM₂ +NU +DU₈] +[EGIR +na]-aṣ-ma-da-te +an-na-ti +10 +GIN₂ +ZA₃.HI.LI +ša₂ +KA# +[x +x] +[ša₂ +hul]-qu +ana +ŠA₃ +NU +ŠUB-u₂ +MUN +A.GEŠTIN.NA +NU# +[x +x +x +x] +[x +x +x +G]U₇ +5 +GIN₂ +ZA₃.HI.LI +ARA₃-ti₃ +ina +KAŠ +SIG₃-aṣ-ma +NAG#-šu₂# +u₂#-[za-ka-ma +x +x +x] +[x +x +x] +AN#.ZAH# +SUD₂ +[x +x +x +x +x +x] +[x +x +x +x +x +x] +ZA?#.BA?#.LAM?# +1/3 +SILA₃ +{u₂}[x +x +x] +[x +x +x +x +x +x +x +x +x +x +LAL]-ma +UD.3.[KAM₂ +NU +DU₈] +[x +x +x +x +x +x +x +x +x] +x +x +[x +x +x +x] +[x +x +x] +x +lu#-u₂# +ina +KAŠ.SAG +[x +x +x +x +x +x +x] +[DIŠ +NA +SA]G.KI.DAB.BA +TUKU.TUKU +[x +x +x +x] +[x +x +x +x +x +UGU-š]u₂ +KUM₂ +[x +x] +[x +x +x +x +x +x +x +x +Š]U₂? +L[UGAL? +x +x +x +x] +[x +x +x +x +x +x +x +x +x +x +x +x +x +x] +ana +TI.BI +[x +x +x +x +x +x +x +x +x +x +x +x +x +ŠEŠ₂]-su#-ma# +TI +[x +x +x +x +x +x +x +x +x +x +x +x +x] +I₃#.GIŠ# +ŠEŠ₂-MEŠ-su +{u₂}an-ki-nu-ti# +[x +x +x +x +x +x +x +x] +x +ta-na-ṣar-BI-ma +TI +[x +x +x +x +x +x +x +x +x +x +x +TI-š]u₂ +I₃.GIŠ +{šim}GUR₂.GUR₂ +ŠEŠ₂-su +[x +x +x +x +x +x +x +x +x +x +x +x] +NAG-šu₂ +ina +A₂ +tu-šap-ra-šu₂-ma +TI +[x +x +x +x +x +x +x +x +ŠUB.ŠUB-s]u +ana +TI-šu₂ +I₃.GIŠ +{u₂}ap-ru₃-ša₂ +ŠEŠ₂-su# +[x +x +x +x +x +x +x +x +{š]im}GUR₂.GUR₂ +NAG-MEŠ-ma +T[I] +[x +x +x +x +x +x +x +x +x +x +ana +T]I-šu₂ +I₃.GIŠ +{šim}GUR₂.GUR₂ +I₃.GIŠ +{šim}LI +ŠEŠ₂-[su] +[x +x +x +x +x +x +x +x +x] +i#-na!?#-qu₂ +tu-ṣar-raš!(BI)-ma +[TI] +[x +x +x +x +x +x +x +x +x +x +x] +{u₂#}ap-ru₃-ša₂ +{u₂}il₃-kul₂-la +ša₂ +PU₂# +[x +x] +[x +x +x +x +x +x +x] +ŠEŠ₂-su-m[a +TI] +[x +x +x +x +x +x +x +x +x] +tu#-bal +ta-sak₃ +ina +I₃ +HI.HI +ŠEŠ₂-MEŠ#-su#-[ma +TI] +[x +x +x +x +x +x +x +t]u-bal +ta-sak₃ +ina +I₃ +HI.HI +ŠEŠ₂-MEŠ-s[u-ma +TI] +[DIŠ +NA +x +x +x] +x +MUR-MEŠ +GIG-ma +NA +BI +ṣi-na-a[h-tu-ra] +[... +{šim}]ŠEŠ# +3 +U₂-HI.A +ša₂-šu₂-nu +x +[x +x +x] +[... +t]a-sak₃# +ina# +I₃# +x +[x +x +x] +[...] +DIŠ +NA +NINDA +GU₇ +KAŠ +NAG-ma +ŠA₃--šu₂ +in-nem-me-ru +in-ne₂?#-[bi-ṭu₂ +x +x +x +x +x +x] +UD#.DA# +SA₂.SA₂ +NA₄ +ZU₂.LUM.MA +GAZ +GIM +KAM.ZI₃.DA +tara-bak# +[x +x +x +x +x] +[... +ina] +{dug#}UTUL₇# +ŠEG₆#-[šal +...] +[...] +x +(x) +[...] +[... +i]-lu#-ru +sa-a-mu +GAZ +SAG.DU#-s[u +...] +[... +e-q]i-di +ša₂ +la +MUN +GAZ +ina +GA +H[I?.HI +...] +[...] +x +{u₂}i-lu-ru +sa-a-mu +SAG.DU-su +še +bi +[...] +[... +tu]-kaṣ₃#-ṣa +EGIR-šu₂ +e-qi-di-ma +ša +la +MUN +ana +x +[...] +[... +L]AL₂-id +SAG.DU-su +ina +{tug₂}ṣi-in-[di +...] +[...] +x +šu₂ +la +ta-ṣa-ba +[...] +[...] +x +ZI₃ +bu-ṭu-tu₂ +ina# +A +tara#-bak# +SAG.DU-su +LAL₂ +[...] +[...] +PIŠ₁₀.{d}ID₂ +NAGA.SI +U₅ +ARG[AB{mušen} +...] +[... +ŠE]Š +DIŠ-niš +ina +GISSU +HAD₂.DU +GAZ +S[IM +...] +[... +gu]-riš#-tu₂ +i-tel-l[i +...] +[...] +x +x +[x +x] +x +[...] +[NUMUN] +{u₂#}NU#.LUH#.H[A +...] +NUMUN +{u₂}AB₂.[DUH +...] +NUMUN +{u₂}u₅#-[ra-nu +...] +DIŠ +NA +ki-is +Š[A₃ +GIG +...] +ul-tu +x +[...] +DIŠ +NA +ki-is# +[ŠA₃ +GIG +...] +NUMUN +{u₂}x +[...] +ul-tu +x +[...] +x +x +x +[...] +[...] +x +[... +GUR.GU]R!?-š[u-ma +T]I +[... +NA +BI +aš-rat +{d}ni]n-urta +KIN-ma +DUG₄.GA?# +x +x-šu₂ +[... +I₃.GIŠ +{šim}G]IG +SUD +{sig₂}AKA₃ +NIGIN#-mi +[...] +x +bi# +za +te +I₃ +{šim}LI +[... +GUR.G]UR-šu-ma +TI +[... +NA +B]I +aš-rat +{d}UTU +KIN-ma +[...] +x +NIGIN#-mi# +ana# +ŠA₃?# +GEŠTU?#-[MIN?]-šu₂?# +GAR?#-[(an)] +[...] +x +[...] +[... +PI]Š₁₀.I[D₂ +x +x +x +x +x +x +x +x] +[... +NAM.L]U₂.U₁₈.L[U +x +x +x +x +x +x +x +x +x] +[...] +{giš!}EREN +T[AG-at +x +x +x +x +x +x] +[...] +ŠEŠ₂?#-su?# +Š[E₁₀? +x +x +x +x] +[... +LU₂].U₁₈?#.LU?# +[x +x +x +x +x] +[... +te-ṭer₅]-ri# +LAL# +[... +{u₂}]IGI-lim +[... +NU +pa]-tan# +NAG +[...] +ZU₂#.LUM +[... +SU]R +LAL +[...] +x +[DIŠ +NA +IGI-MIN-šu₂ +mur-di]n-ni +DIRI +sah-le₂-e +ZI₃ +ŠE.SA.A +ina +KAŠ +tara-bak +LAL +UD.3.KAM₂ +IGI.MIN-š[u₂ +NU +DU₈] +[ka-la] +UD#-me# +3#-šu₂# +KEŠDA +ina +4 +UD-mi +ina +{šim}MAN.DU +er-ri +IGI.MIN-šu₂ +ta-kad-da-ad +A +ina +Š[A₃ +IGI.MIN-šu₂ +ŠUB] +[IGI.MIN-šu₂ +t]u-šak-kal +qer-ša₂ +em-ma +1-šu₂ +2-šu₂ +3-šu₂ +IGI.MIN-šu₂ +KEŠDA +I₃.UDU +kur-sin-ni +MAŠ.DA₃ +IG[I.MIN-šu₂ +(x)] +x-pap? +[ina +EG]IR-ti₃ +ina +ir-ri +A.GAR₅ +SUD₂ +IGI.MIN-šu₂ +MAR +{giš}HAB +SUD₂ +ana +UGU +IGI.MIN-šu₂ +ta-bi-la₁₂ +MAR# +LAL +[k]a-la +UD-me +3-šu₂ +KEŠDA +u₂-kal-ma +ZI +{giš}MAŠ.HUŠ +u +{giš}šinig +NUMUN +{u₂}KI.{d}IŠKUR +[{ši]m?}LI +ŠE.SA.A +sah-le₂-e +HE.HE +ta-bi-la₁₂ +ana +UGU +SAG.DU-šu₂ +MAR +SAG.DU-su +LAL-ma +U[D.3.KAM₂ +NU +D]U₈ +ina +4 +UD-me +DU₈-šu₂-ma +SAG.DU-su +tu-gal-lab +U₂ +rib-ka +IGI.MIN-šu₂ +MAR.MEŠ +[ina-e]š +U₂.BABBAR +U₅.ARGAB{mušen} +{mun}eme-sal-li₃ +NA₄ +ga-bi-i +NAGA.SI +{šim}SES +IM.G[U₂?.EN?.NA?] +GAZI{sar} +PAP +8 +U₂.MEŠ +ṭi₅-pu +šum-ma +NA +IGI.MIN-šu₂ +UD.DA +ha-an-ṭa +u +mur-d[in-ni +DIRI] +U₂.BABBAR +NA₄ +ga-bi-i +{mun}eme-sal-li₃ +an-nu-u₂ +ṭi-[pu +ša₂ +IGI.MIN] +{šim#}GUR₂.GUR₂ +ZI₃ +ŠE.SA.A +GAZI{sar} +an-nu-u₂ +[ṭi-pu +ša₂ +IGI.MIN] +[DIŠ +N]A +IGI#.MIN#-šu₂# +GID₂#.DA#.GID₂#.DA# +u₂#-kal-la +ana +E₂ +a-hi-i +DU-ma +KA₂? +GU₃-si +ki-ma +x +[...] +[... +GID₂.D]A.GID₂-du +KIMIN# +GID₂#.DA#.GID₂#-du#-ku-nu-ma +tab-la +MIN +[...] +a-[na +E₂ +(NU?)] +e#-de-e +DU-ma +KA₂ +GU₃-si +ki-ma# +x +x +x +[...] +HI +x +[(x +x) +GI]D₂.DA.GID₂-du +KIMIN +GID₂.GID₂-ku-nu-ma +tab-la +x +[...] +DIŠ +N[A +ina +IGI.MI]N-šu₂ +li-piš-tu₄ +{šim}GUR₂.GUR₂ +{šim}LI +{šim}HAB +NUMUN +ŠI[NIG +... +SUD₂ +...] +DIŠ +NA +in[a +IG]I.MIN-šu₂ +SIG₂ +a-ṣa-at +u +IGI.MIN-šu₂ +a-ša₂-a +MUN +kam₂-ma +I₃#.UDU# +[ELLAG₂? +...] +ša₂ +UDU.NI[TA₂ +LA]L₃.KUR.RA +mal₂-ma-liš +SUD₂ +ina +I₃.NUN +HE.HE +IGI.MIN-šu₂ +MAR +ta-ma[š-aš? +...] +DIŠ +N[A +IGI.MIN]-šu₂ +UZU +a-li-ka₁₃ +DIRI-a +ana +[TI-šu₂ +...] +x +[x +NUMUN] +GI.ZU₂.LUM.MA +ina +LAL₃ +SUD₂ +MAR +x +[...] +[x +x +{n]a₄}as-har +ina +I₃.NUN +SUD₂ +MAR +x +[...] +[DIŠ +NA +IGI.M]IN-šu₂ +UZU +DU-kam₂ +DIRI-ma +u +DU-ak +ana +TI-šu₂# +x +[...] +[{ši]m}GIG +U₂.BABBAR +U₅.ARGAB{mušen} +{mu[n}eme-sal-li₃ +1-niš +SUD₂ +...] +[ina +MUD₂ +{gi]š}EREN +lu +ina +I₃+GIŠ +{giš#}EREN +HE.HE +Z[A.NA +DU₃-uš +ina +A.MEŠ +SUD₂ +IGI.MIN-šu₂ +MAR] +[DIŠ +NA +IG]I.MIN-šu₂ +UZU +u +MUD₂ +DIRI.MEŠ +{šim}S[ES? +{u₂}KUR.RA +U₂.BABBAR +I₃.UDU +{šim}GIG] +[U₅.A]RGAB{mušen} +sah-lu-u +U₂.MEŠ +an-nu-t[i +te-qit +ša₂ +UZU +DU] +[DIŠ +NA +IGI.MI]N-šu₂ +qu₃-qa-ni +DIRI.MEŠ +gu-ru-uš-ga-r[a-aš +ša +ŠAH +...] +[ina +TU]G₂ +te-sip +7 +UD-me +ina +KUN₄ +te-te-m[er +E₁₁-ma +...] +[x +x +ma]l-ma₂-l[iš +SUD₂ +x +x +x +x] +x +x +[...] +[... +ina +I₃.UDU +GIR₃.PAD].DU# +LUGUD₂#.DA +UD[U? +...] +x +x +x +[SUD₂ +MAR] +[x +x] +x +[... +ma]l₂-ma-liš +SUD₂ +ina +LAL₃ +I₃.NUN +I₃.GIŠ +{giš}EREN +SAHAR.URUDU +S[UD₂? +MAR] +DIŠ# +KIMIN# +ZI₃ +{d}[ŠE.TIR] +KI +ŠE.SA.A +SUD₂ +ana +UGU +IGI.MIN-šu₂ +DUB +DIŠ +NA +IGI.MIN-šu₂ +[... +ina +I₃.UDU +ELLAG₂ +UDU.NI]TA₂? +GAB.LAL₃ +1-niš +HE.HE +ina +I₃.UDU +GIR₃.PAD.DU +GID₂.DA +SUD₂ +te-eq-qi₂ +DIŠ +i-na +IGI +x +[x +x +x] +x +i-te-ne₂-ṭa-a +NA +BI +KIN-šu₂ +SUMUN-ma +IGI.MIN-šu₂ +ip-pa-a +ana +TI-šu₂ +1 +GI[N₂ +x +x +x +x] +x +ina +I₃.NUN +SUD₂ +IGI.MIN-šu₂ +MAR.MEŠ +DIŠ +NA +IGI.MIN-šu₂ +nu-u[p-pu-ha +... +Z]I₃ +{šim}GUR₂.GUR₂ +ZI₃ +ŠE.SA.A +GAZ +SIM +ina +KAŠ +tara-bak +IGI.MIN-šu₂ +LAL +U₂.BABBAR +NA₄ +[ga-bi-i +{mun}eme-sal-li₃] +U₂#.HI#.A +ṭi-pu +ša₂ +IGI.MIN +DIŠ +NA +IGI.MIN-šu₂ +ba[r-ra +u +ER₂ +u₂-kal-la +...] +GAB?#.L[AL₃?] +x +x +x +(x) +7 +UD-me +ina +KU[N₄ +te-te-mer +E₁₁-ma +...] +x +[...] +DIŠ# +NA# +IGI#.MIN#-šu₂# +[... +S]UD₂ +IGI#.MIN#-šu₂# +MAR# +x +[...] +DIŠ +NA +IGI.MIN-šu₂ +a[r-pa +...] +ina +I₃ +u +SAHAR.UR[UDU +ša +ŠEN.TUR +SUD₂ +IGI.MIN-šu₂ +MAR] +ŠIKA +LIBIR.RA +ša₂ +ki-ib#-š[a? +TUK-u₂] +ina# +I₃ +SAHAR.URUDU +SUD₂ +MAR +LAL₃.K[UR.RA +...] +DIŠ +NA +IGI.MIN-šu₂ +ṣu-uh-hu-ta +[GEŠTI]N.KA₅.A +SIG₇-su +tu-ha-sa +A.MEŠ-šu₂ +ina +{d[ug}UTUL₂ +tara-bak] +IGI +DUL-ma +ša₂ +AN.TA +i-[ša]l?-lu +ina +SAHAR.URUDU +u +I₃.GI[Š +SUD₂ +MAR] +DIŠ +KIMIN +ZA₃.HI.LI +ina +GA +ta#-ka#-aṣ +ina +NININDU +te-ep-pi +ma-ʾ-da +la +i-ba-x +[...] +I₃.UDU +{šim}GIG +{u₂}KUR.KU[R +N]A₄ +ga-bi-i +U₂.BABBAR +GAZI{sar} +ina +I₃.NUN +SU[D₂ +IGI.MIN-šu₂ +MAR] +[DIŠ +K]IMIN +NINDA +ši-ib-ri +t[ur-a]r₂ +SUD₂ +ki-ma +ṭi-pi +te-ṭe-e[p-pi] +[DIŠ +KIMI]N +ZI₃ +GU₂.GAL +ZI₃ +G[U₂.TUR] +ZI₃# +GAZI{sar} +sah-le-e +qa-la-a-ti +bal-ṭa-ti +ina +{dug}UTUL₂ +tara-ba[k +LAL] +DIŠ# +KIMIN# +{šim}BA[L +G]AZI{sar} +ina +GA +SUD₂ +IGI.MIN-šu₂ +[MA]R? +DIŠ +KIMIN +U₂#.BA[BBAR +A]N.ZAH.GE₆ +tur-ar₂ +ina +I₃.NUN +SUD₂ +MAR +DIŠ +KIMIN +KU₃.GAN +ina +I₃.UDU +GIR₃.PAD.DU +UDU +SUD₂ +MAR# +DIŠ +KIMIN +ZI₂ +BAL.[G]I{ku₆#} +ina +MUN +NA₂-al +EN +HAD₂.DU +GAR-an +UD-ma +HAD₂.DU +ina +I₃ +SAHAR.URUDU +SUD₂ +MAR# +DIŠ +KIMIN +Z[I₂ +x +(x +x)] +UGU +GIR₂.ZABAR +ina +I₃.NUN +SUD₂ +MAR# +x +x +[...] +DIŠ +KIMIN +U₂.BABBAR +{u₂}GEŠTIN.K[A₅.A +ina] +I₃?+GIŠ? +ŠUB +ina +ŠU.SI-ka +MAR +DIŠ +KIMIN +SAG.DU +EME.ŠID +HAD₂.DU +S[UD₂ +ina +I₃ +ŠUB +MAR +DIŠ +K]IMIN +EME.ŠID +E₂.GAR₈ +HAD₂.DU +SUD₂ +ina +ŠU.LU₂.ZABAR? +ina +NE +GAR-an +MAR +GAG.TI.TI +UDU +tur-ar₂ +SU[D₂ +(...) +U]D.3.KAM₂ +ina +mu-ša₂-li₃ +GAR +SAG.UŠ +MAR +DIŠ +NA +IGI.MIN-šu₂ +DUL?-ma +x +[x +SU]D₂? +ina +I₃.NUN +HE.HE +ana +ŠA₃ +IGI.MIN-šu₂ +tu-na-tak +UGU +ša +SUN₂-ti₃ +S[UD₂? +(...) +ina] +I₃+GIŠ +u +UGU +ša +TU{mušen} +NITA +mal-ma-liš +HE.HE +U[D.3.KAM₂ +ina +mu-ša₂-li₃ +GAR +S]AG.UŠ +ana +ŠA₃ +IGI.MIN-šu₂ +ŠUB.ŠUB-di +NUNUZ +UG[A{mušen} +SUD₂ +x +x +x +(x) +EG]IR? +E₁₁-ma +GIR₂.ZABAR +I₃.NUN +ŠEŠ₂ +x +[... +Š]U.MEŠ-ka +ina +A +LUH-si +[... +ina] +I₃#.NUN +tu-la-bak +MAR +[... +ina +mu-ša₂-li₃ +GAR-a]n +ka-a-a-nam +te-te-ne₂-qi₂# +[...] +SUD₂# +MAR +[... +a]na +I₃#+GIŠ# +tara#-bak# +IGI#.4#.GAL₂#.LA +{im}KAL.GUG +SUD₂ +MAR +[...] +x +SILAₓ!(KISAL) +ku-ut-pa-a +ina +I₃+GIŠ +EREN +SUD₂ +te-qi₂ +[...] +x +GEŠTIN.KA₅.A +SUD₂ +ina +I₃ +ina +{urudu}ŠEN.TUR +BAL-at +te-qi₂ +[... +(NUMUN) +{giš}NIG₂.GA]N₂.GAN₂# +ur₂-ne₂-e? +UR.BI +ta-sak₃ +te-qi₂ +[...] +ina +I₃ +SUD₂ +te-qi₂ +[...] +x-ta +ana +ŠA₃ +IGI.MIN-šu₂ +tu-na-tak +[... +bu-ṣi-n]i? +ša₂ +nu-ri₃ +ta-sa-rim +qut-raₓ(AG₂) +ša +nu-ri₃ +[...] +x +KI +A +NAGA.SI +IGI.MIN-šu₂ +LUH-si +[... +U₂.BABBA]R? +5?# +GIN₂ +U₅.ARGAB{mušen} +mal#-ma#-liš# +HE.HE +[... +DIL]IM₂ +A#.BAR₂# +ina +I₃ +u +SAHAR#.URUDU# +SUD₂ +MAR +[... +ina +{urudu}ŠE]N?.TUR +tu-kaṣ₃-ṣa# +ina# +{urudu}ŠEN#.TUR +HE.HE +[... +SAHAR.URUD]U +ša# +{urudu}ŠEN.TUR +ta-šam-ma-aṭ +7 +UD-mi +MAR +[...] +x +pa-ʾa-ṣu₂-te +I₃.UDU +[... +ina +ir-ri] +A#.GAR₅ +SUD₂ +te-qi₂-ma +PA +IGI.MIN-šu₂ +ik-ši +[a-na +IGI.MIN +ki-ṣa-a-ti +bul-lu-ṭu +u₃ +kap-pi +IGI.MIN-šu₂ +š]u-ṣi-i +sah-le₂-e +ki-ṣa-a-ti +ina +NININDU!(SUG) +TE-ma +[ma-ʾa-du +la +ir-ri-ra +ina +I₃.GIŠ.BUR +tara-bak +IGI.MIN-šu₂ +MA]R +URUDU +SUMUN +ina +I₃.NUN +SUD₂ +GIN₇ +rib-ki +IGI.MIN-šu₂ +MAR.MEŠ-ma +TI +[... +A?] +{u₂#}IN₆.UŠ₂ +A +{u₂}EME.UR.GI₇ +A +{u₂}GEŠTIN.KA₅.A +[...]-ti# +TI#-qe₂ +ina +SAHAR.URUDU +A +sah-le₂-e +SUD₂ +IGI#.MIN#-šu₂# +MAR# +[... +tu]r-ar₂# +ta#-pa#-a#-aṣ# +ina# +SAHAR.URUDU +SUD₂ +MAR# +[... +7 +UD-me +ina +KU]N₄ +te-tem-mer +E₁₁-ma +ina +SAHAR.URUDU +SUD₂ +MAR +[...] +ina +SAHAR.URUDU +SUD₂ +MAR +[...] +x +IGI.MEŠ-šu₂-nu +ina +{giš}DALA₂ +tu-tak₂-kap +[...] +U₂#.MEŠ# +ša# +UGA{mušen} +ana +TUR.MEŠ-šu₂ +il-qa-a +[...] +ša₂-šu +ta-sak₃ +te-qi₂ +[... +k]am-ka-di +SUD₂ +UGU +GIG.GIR +ša +kap-pi +IGI.MIN-šu₂ +[tu?-gal?-lab?] +{u₂#}BAL# +NUMUN# +U₂# +[da-a]q-qi₂-qi₂ +ŠE₁₀ +up-pu-te +gu-ra +ša₂ +GI +NUMUN +{u₂}ta-lu-pa-di +[la-a]r-si₃-ni +ša +hal-li +U₈# +ša +GUB₃ +ša +MAŠ.TAB.BA +U₃.TU +[ELLAG₂] +MAŠ₂.TUR +la-ki-i +ša +U₂ +la +na-aš#-ku# +ŠE.BAR +la +ṣa-bi-tu₂ +ina +nem-se-te +ta-qal₃#-lu# +[({giš})b]al-ta₅ +ša +MUN +{u₂}GUR₂.UŠ +{giš}GEŠTIN.KA₅#.A# +NUMUN +{u₂}NIG₂.GIDRU +ta-qal-lu +NUMUN +{u₂}EM[E.UR.GI₇] +{u₂}KUR₄.GI.RIN.NA +{u₂}gim-gi-ra +U₂.BABBAR# +[GI.DU]G₃.GA +1-niš +SUD₂ +HE.HE +ina +A +GAZI{sar} +sek-ru-t[i] +[S]ED +ta-la₃-aš +UD.15.KAM₂ +LAL.M[EŠ?] +UD.15.KAM₂ +U₂.BABBAR +UD.3.KAM₂ +te-eq-q[i₂] +[DIŠ +N]A +IGI.MIN-šu₂ +IGI.SIG₇.SIG₇ +DIRI +BAR +{giš}NU.U[R₂.M]A +SUD₂ +ina +{gi}SAG.KUD +ana +ŠA₃ +IGI.MIN-šu₂ +B[UN₂?] +[DIŠ +NA +I]GI.MIN#-šu₂ +IGI.SIG₇.SIG₇ +DIRI +ŠIKA +{giš}NU.UR₂.[M]A +ina +I₃ +SUD₂ +MAR +{mun}eme-sal-li₃ +S[UD₂? +MAR?] +[DIŠ +NA +IGI.MIN-šu₂ +G]IG-ma# +UD# +ma#-ʾ-du-ti +NU +BAD# +ina +KUM₂ +SAG-šu₂ +IGI.MIN-šu₂ +GIS[SU +DIRI?] +[... +M]I? +SAG.DU-su +tu-gal-lab# +ina# +UD#-me# +3#-šu₂# +NIG₂#.SILA₁₁.GA₂ +tu-kaṣ₃-ṣa# +NUMUN# +{u₂#}IN₆#.UŠ₂# +t[ur-ar₂] +[ina +I₃.NUN +DILIM₂] +A#.BAR₂ +SUD₂ +MAR +A +LUH-si +GAZI{sar} +UGU +IGI#.MIN#-šu₂# +GAR#? +EN#? +u₂#-za#-ku#-u₂ +GUR.G[UR] +{u₂#}[GEŠTIN?.K]A₅.A +LAL₃.KUR.RA +ina +I₃.NUN +HE.HE# +te-te-niq-q[i₂] +DIŠ +NA# +IGI#.MIN#-šu₂ +GIG-ma +ši-ši-tu +UGU +{d}LAMA +IGI.MIN#-šu₂# +a[r₂-ma]t +[E]R₂.HI.A +DU-ak +IGI.MIN-šu₂ +GISSU +DIRI-[ma] +{u₂}UKUŠ₂#.LAGAB +sah-la-na +NUMUN +{u₂}EM[E.UR.GI₇ +...] +U₂#.BABBAR +U₅.ARGAB{m[ušen}] +11! +U₂.HI#.A# +ša-šu-nu# +1?#-[niš +SUD₂ +ina +I₃.GIŠ +{giš}ER]EN +HE.HE +IGI.MIN-šu₂ +MAR-ma +TI# +DIŠ +NA +IGI.MIN-šu₂# +GIG#-m[a +ši-ši-tu +UGU +{d}LAMA +IGI.MIN-šu₂ +ar₂-mat +di-ga]l-šu# +DUGUD# +ana +BABBAR +ša +UGU +{d}LAMA +IGI.MIN-šu₂ +ZI# +{u₂}at-ka[m₂ +... +SUD₂ +... +ina +I₃] +{giš#}EREN +HE.HE +IGI.MIN-šu₂ +MAR.MES-ma +TI +DIŠ +NA +IGI.MIN-šu₂# +[GIG-ma +...] +x +di-gal-šu +DUGUD# +x +x +[... +SU]D₂ +IGI.MIN-šu₂ +MAR +[...] +x +UM +IM +DU +KU +BA[D? +...] +[... +S]UD₂ +MAR +[... +{g]iš}NAM.TAR +NIT[A₂] +[...] +x +GU₇-ma +x +[(x)] +[... +SUD₂ +ina +{gi}SAG.KUD +ana +Š]A₃ +IGI#.MIN#-šu₂# +MU₂#-ah +[... +SU]D₂? +MIN +[... +ŠUB-d]i +ana +UGU +ŠIKA +i₃-gu-le-e +[...] +x +ta-šar₂-rap +qut-ra +ša₂ +šit-ti +[... +a-he-e]n-na +IGI.MIN-šu₂ +MAR.MEŠ-ma +TI +[DIŠ +N]A +I[GI.M]IN-[šu₂ +...] +x-ma +DUGUD +ana +TI-šu₂ +ILLU +NU.LUH +ILLU +{šim#}BULUH# +{u₂#} +[... +7 +I]TI +u +8 +ITI +ZI-ha +TI +DIŠ +NA +IGI.MIN-šu₂ +ši-š[i-tu₂ +DIRI +... +1]5? +ŠE +ŠIKA +U₂.BABBAR +ina +I₃.NUN +SUD₂ +MAR +DIŠ +NA +MIN +1 +GIN₂ +U₅#.[ARGAB{mušen} +... +SUD₂ +...] +x +[x +t]a-bi-la₁₂ +MAR +DIŠ +NA +MIN +1 +GIN₂ +U₅.ARGAB#{mušen#} +ina# +I₃#.NUN# +SUD₂# +MAR# +15 +ŠE +Š[IKA +... +ina +... +S]UD₂ +MAR# +{u₂}im-hur-lim +ina +I₃.NUN +[SUD₂ +(IGI.MIN-šu₂) +MAR] +[... +1-šu₂] +2#-šu₂# +3#-šu₂# +I₃#.NUN# +SUD₂# +MAR# +[... +ina] +I₃#.NUN# +SUD₂# +ina# +ITI# +3#-šu₂# +MAR# +U₅#.ARGAB#{mušen#} +ina# +I₃#.NUN# +SUD₂# +MAR# +P[A +{giš}]bi-ni +PA +{giš}MA.NU +[ina +A.GEŠTI]N.NA +ta-la-aš +IGI.MIN-šu₂ +LAL +U₂.BABBAR +NAGA.SI +UR.TAL₂.TAL₂ +NU +pa#-tan# +[ana] +ŠA₃# +IGI.MIN-šu₂ +ta-ma-za-aʾ +[...] +x +{mun#}eme-sal-li₃ +si-ik-ti +ŠE.SA.A# +HE#.HE# +tur-ar₂ +SUD₂ +MAR +[DIŠ +... +SAH]AR.URUDU +ina +ŠA₃ +I₃.UDU +sa-a-qi₂ +M[AŠ.D]A₃ +SUD₂ +MAR +[DIŠ +... +{šim}SES +GA +{munus}U₂.ZUG₂ +ša₂ +NI]TA? +U₃.TU +SUD₂ +MAR# +LAL₃# +I₃.NUN.NA +ana +ŠA₃ +IGI.MIN-šu₂ +tu-na-tak₂ +[DIŠ +...] +x +x +[...] +IM +NU +E₃-a +[...] +x +ina +I₃.NUN +HE.HE +MAR +[...] +ta-ša-qal₃ +MAR +[... +U₅.ARGAB{m]ušen} +ta#-bi#-la₁₂# +ina# +I₃.NUN +HE.HE +KIMIN +[...] +u₂#-ba#-ni#-a-ṣi +SIG₇-su +ina +A# +LUH#-si +GAZ +A.MEŠ-šu₂-nu +[...] +HAD₂#.DU# +ši-hi-il-tu₂ +SAHAR.URUDU +mal-ma-liš +HE.HE +[ina +A +LU]H +LAL₃.KUR-e +SUD₂ +MAR +[... +ina +G]A +{munus}U₂.ZUG₂ +mal-ma-liš +HE.HE +SUD₂# +MAR +[... +A.M]EŠ-šu₂-nu +ana +{dug}BUR.ZI +[SU]R-at# +[... +EN +HAD₂.DU +GAR-an +U]D-ma +HAD₂.DU +ina +SAHAR.URUDU +I₃.NUN +SUD₂# +MAR# +[... +ana +Š]A₃ +IGI.MIN-šu₂ +tu-na-tak₂ +I₃.UDU +ina +SAHAR.URUDU +SUD₂ +MAR# +[DIŠ +... +IGI.M]IN-šu₂ +kat₂-ma +kur-ṣip-ti +A.ŠA₃ +ina +{na₄}BAR.DU₃.E +SUD₂ +ŠA₃ +IGI.MIN-šu₂ +[...] +x +{na₄}KA.GI.NA.DAB.BA +SUHUŠ +{giš}GIŠIMMAR +NITA₂ +[... +IM.SAHAR.N]A₄.KUR.RA +a-he-e +SUD₂ +MAR +[...] +x +GURUN +{u₂}UKUŠ₂.LAGAB +GAZ +ina +I₃ +SUD₂ +MAR +[... +ina +LA]L₃.KUR#.RA +I₃.NUN +MIN +[... +S]UD₂ +MAR# +[...] +SUD₂# +ina# +I₃#.N[UN +HE.HE +...] +[... +IGI.MEŠ]-šu₂-nu +ina +{giš}DALA₂ +t[u-tak₂-kap] +[...] +ina +DILIM₂ +A.BAR₂ +[SUD₂ +MAR] +[... +b]i-la-ta +HAD₂.DU +GAZ +ina +I₃.NU[N +SUD₂ +MAR] +[... +SU]D₂? +ana +ŠA₃ +IGI.MIN-šu₂ +t[u-na-tak₂] +[... +M]AR +[...] +x-ti-i +BAD +[...] +x-hap-pi +[...] +SUD₂ +MAR +[... +ina +TU]G₂? +te-sip +[... +ana +ŠA₃ +IGI.MIN-šu₂ +tu]-na-tak₂ +[...] +GIŠ +i-na-sah +[...] +x +A.GAR.GAR +MAŠ.DA₃ +[...] +ta#-sak₃ +MAR +[...] +x +[...] +x +ina +A +SUD₂ +te-qi₂ +[... +in]a +KAŠ# +ta-la₃-aš +IGI.MIN-šu₂ +LAL +[...] +te-qi₂ +[...] +x +SUD₂ +te-qi₂ +[... +in]a +I₃ +SUD₂ +te-qi₂ +[... +ina +IGI-šu₂ +G]IG +tu-mad +[... +t]a-sak₃ +te-qi₂ +[... +S]UD₂ +MAR +x +x +[...] +KEŠDA +KAŠ₃# +[...] +{u₂#}KUR.KUR +ŠA₃ +IGI.MI[N-šu₂ +... +AR]A₃-en# +DIŠ +IGI.MIN-š[u₂ +...] +ZA₃.HI.LI +U₂ +a-ši-i +[... +ina +G]A +HE.HE +MAR +a-na +nu-uh₂-hi +x +[...] +x +ina +I₃ +HE.HE +MAR +I₃.UDU +ŠIKA +MUN +ana +ŠA₃ +IGI.MI[N-šu₂ +...] +ina +I₃.GIŠ +{giš}EREN +HE.HE +MAR +{mun}me₅-SILIM +{u₂}ak-tam +SUD₂ +ina +LA[L₃ +...] +ina# +LAL₃ +BABBAR +GIR₂.ZABAR +MIN +DIŠ +NA +IGI.MIN-šu₂ +ma-di-ra +x +[...] +x-ra +U₂.BABBAR +NUMUN +GI.ZU₂.LUM.MA +U₅.ARGAB{muš[en} +...] +A.GAR₅ +ina +I₃.NUN +BIL₂ +x +[...] +DIŠ +NA +IGI.MIN-šu₂ +GISSU-ma +šam#-ha# +[...] +DIŠ +NA +IGI +ZAG-šu₂ +GISSU#-[ma +...] +ina +GIR₂.ŠU.I +š[e-e-li? +...] +DIŠ +NA +IGI +GUB₃-šu₂ +GISS[U-ma +...] +ina +GIR₂.ŠU.I +[...] +DIŠ +NA +IGI.MIN-šu₂ +GIG.GA +ZALAG#.GA# +x +[...] +UGU +ša +TI₈{mušen} +ina +GA +{munus#}U₂#?.[ZUG₂? +SUD₂? +...] +NUMUN +GI.ZU₂.LUM.MA +si-ik-t[i +ŠE.SA.A +HE.HE +...] +DIŠ +NA +{d}LAMA.MEŠ +IGI.MIN-šu₂ +GI[SSU +DIRI? +...] +[I]GI.MIN-šu₂ +MAR +DIŠ +KIMIN +ILLU +L[I.TAR +...] +[DIŠ +IG]I +LU₂# +GISSU +ṣi#-[ri-ih-ta₅ +DIRI +...] +[...] +x +x +[...] +[...]-ri#-i# +[...] +[...] +x +DIŠ +K[IMIN? +...] +[DIŠ +NA +IGI.MIN-šu₂] +x +x# +DIRI +x +[...] +[...] +x +MUD₂ +kur-ṣib-ti +GU₄ +GE₆ +u +x +[...] +[DIŠ +NA] +IGI.MIN-šu₂ +LU₃.LU₃ +LAL₃ +BABBAR +ina +I₃.[NUN +1-niš +HE.HE +...] +[DUB].2#.KAM₂ +DIŠ +NA +[IGI.MIN-šu₂ +GIG] +[E₂.GAL +{m}aš-šur-DU₃.A +LUGAL +ŠU₂ +20 +KUR +AN.ŠAR₂{ki} +ša +{d}AG +u +{d}taš-me-tu₄ +GEŠTU.MIN +ra-pa-aš₂-tu₄ +iš-ru-ku-šu₂] +[e-hu-uz-z]u +[IGI.MIN +n]a-mir#-t[u₄ +ni-siq +tup-šar-ru-ti] +ša +ina +LUGAL.MEŠ-ni +a-lik +mah-ri#-ia +mam₂#-ma# +šip#-ru# +[šu-a-tu₂ +NU +e-hu-uz-zu] +bul#-ṭi +TA +muh-hi +EN +UMBIN +liq#-ti# +BAR#.MEŠ# +ta#-h[i-zu +nak-l]a +a-zu-gal-lu-ut +{d}nin-urta +u +{d}gu-la +ma-la +ba-aš₂-mu +ina# +ṭ[up-pa-a-ni +aš₂-ṭur₃ +as-n]iq +IGI.KAR₂-ma +a#-na +ta-mar-ti +ši-ta-si-ia +qe₂-reb +E₂.GAL-ia# +u₂#-kin +DIŠ# +NA +su-a-lam +GIG +ana +ki-is +ŠA₃ +GUR-<šu₂> +šu-ru-uš# +{giš}NAM.TAR +šu-ru#-uš# +{giš}šu-še +{u₂}tar-muš +{u₂}IGI-lim +{u₂}IGI.NIŠ +{u₂}tu-lal +{u₂}ŠAKIRA# +7 +U₂.HI#.A +ŠEŠ +TEŠ₂.BI +SUD₂ +ina +KAŠ +ŠUB-di +ina +MUL +tuš-bat +ina +A₂.GU₂.ZI.GA +NU +pa-tan +NAG#-MEŠ-ma +ina-eš +DIŠ +NA +ki-is +ŠA₃ +GIG +ina +UD +ša₂-tu +{giš}MA₂.GUR₈ +U₅-šu₂ +E₁₁#-šu₂-ma +TU₆ +ki-a-am +ŠID-nu +EN₂ +E₂.NU.RU +LU +RA +GAR +dam +gal +kur +MIN +gi +{d}en.lil₂ +a₂.e# +nu.ub.zum +{d}zar-pa-ni-tu₄ +ša +igi.gal₂.la +gub.a?# +gir₃.a.ni +gub.ba +gir₃.a.ni +dur₂#.ra +du-ra +gir₃ +igi.gal₂ +gub +gir₃ +igi.gal₂ +TU₆ +EN₂ +TU₆ +an-ni-ta +ŠID-nu-ma +TI +ana +KI +MIN +UZU +{d}NIN.KILIM +HAD₂.A +ba-lu +pa-tan +NAG-ma +TI +ana +KI +MIN +šu-ru-uš +{giš}šu₂-še +ina +A-MEŠ +ba-lu +pa-tan +NAG-ma +TI +ana +KI +MIN +MUN +SUD₂ +ina +A-MEŠ +ba-lu +pa-tan +NAG-ma +TI +ana +KI +MIN +MUN +a-ma-ni₇ +SUD₂ +ba-lu +pa-tan +NAG-ma +TI +DIŠ +NA +ki-is +ŠA₃ +GIG +NA +BI +ina +UGU +GIR₃-MIN-šu₂ +tu-še-šab-šu₂ +A +GAZI{sar} +sek-ru-ti +KUM₂-ti +ana +UGU-šu₂ +DUB-ma +TI +ana +KI +MIN +ina +UGU +GIR₃-MIN-šu₂ +uk-tam-ma-as-ma +u₂-šab +A +ŠED₇ +ana +UGU +SAG-šu₂ +tu-qar-ra-ar₂ +ana +KI +MIN +SAG.DU-su +ana +šap-la-nu +GAR-an +GIR₃-MIN-šu₂ +ana +AN.TA-nu +tu-ša₂-qa +ina +me-ku-ti +TE-su +ta-ma-haṣ +ina +me-ku-ti +tu-ma-aš-<šad>-su-ma +ana +ŠA₃ +DU₁₀-ab +DU₁₁.GA +ina +ŠU.SI-ka +GAL-ti +ša +GUB₃ +14-šu₂ +GU.DU-su +TAG-at +14-šu₂ +SAG.DU-su +TAG-at +u +qaq#-qa-ra +TAG-at +ana# +KI +MIN +SUHUŠ +{giš}NAM.TAR +NITA₂ +SUHUŠ +{giš}šu-šum +{u₂}IGI-lim +{u₂#}IGI#-NIŠ +{u₂}tar-muš +{u₂#}IN#.NU#.UŠ +{u₂}EME +UR.GI₇ +SUD₂ +lu +ina +A +lu +in[a +KA]Š +NAG +DIŠ +NA +ŠA₃-šu₂ +it#-te-net-ba-aš-šum +10 +SILAₓ +{u₂#}[x +x +x] +x +10 +SILAₓ +{u₂}MA₂.ERIŠ₄.MA₂.LA₂#-e# +SUD₂ +HI.HI +[x +x +x +x +T]I +DIŠ +NA +ki-is +ŠA₃ +GIG +ŠA₃-MEŠ-šu₂ +ma-ga[l +M]U₂.MU₂-hu +mu-še-er-r[it?-ta-šu₂ +GU₇?-š]u₂ +{u₂}IGI-NIŠ +SUHUŠ +{giš}NAM.TAR +NITA₂ +a-he-en#-[na-a +GAZ? +SIM? +ina +Š]A₃? +mal#-ma#-liš# +TI#-qe₂# +ina# +K[AŠ? +NAG? +ina +A? +ŠE]D₇? +tu-la-bak +ina +MUL₄ +tuš-bat +ina +še-ri₃ +ŠEG₆#-šal# +ta#-ša₂#-hal# +ana# +DUR₂#-šu₂ +DUB-ak +SI.SA₂-m[a +TI] +{šim}GUR₂.GUR₂ +{šim}LI +{šim}GAM.MA +PA +{giš}GE₆.PAR₃ +PA +{giš}ŠE.HAR +NUMUN +{u₂}ur-ba#-ti?# +DIŠ-niš +GAZ +SIM# +KI?# +I₃?#.UDU?# +{šim#}HAB +HI.HI +ina +KUŠ.EDIN +SUR-ri +SAG +ŠA₃-šu₂ +LAL₂-ma +TI +DIŠ +NA +ki-i[s +ŠA₃ +GIG +NINDA +u +KA]Š +ŠA₃#-šu₂ +NU +IGI-har-šu₂ +ina +KA-šu₂ +GUR.GUR-ra +TUN₃-šu₂ +u₂-sa-hal-šu₂ +ip-ta-na-ru# +[UZU-MEŠ-šu₂ +ir]-ta#-nam-mu-u₂ +IM +ina +DUR₂-šu₂ +NIGIN +ŠA₃-MEŠ-šu₂ +eb-ṭu₂ +ana +TI-šu₂ +1/2 +SILA₃ +A +ZU₂.LUM.MA# +1/2# +SILA₃# +A# +GAZI#{sar} +10 +SILAₓ +A.GEŠTIN.NA +3 +GIN₂ +I₃ +hal-ṣa +2 +GIN₂ +LAL₃ +10 +GIN₂ +{u₂}KUR.RA +SUD₂ +ana +ŠA₃ +ŠUB-di +ina +GE₆ +ana +IGI +{mul}UZ₃ +tuš-bat +ina +A₂.GU₂.ZI.GA +NU +pa-tan +NAG-šu₂ +EGIR-šu₂ +1/2 +SILA₃ +ši-qa +NAG-šu₂# +ina +KA-šu₂ +u +DUR₂-šu₂ +SI.SA₂ +tu-ser-šu₂-ma +TI-uṭ +ana +KI +MIN +MUN +KUR-i +MUN +a-ma-ni₇ +TEŠ₂.BI +SUD₂ +ina +KAŠ +NU +pa-tan +NAG-šu₂ +ina +KA-šu₂ +u +DUR₂-šu₂ +SI.SA₂-ma +tu-ser-šu₂-ma +TI +ana +KI +MIN +{u₂}NU.LUH.HA +7 +ŠE-MEŠ +{u₂}IGI-lim +TEŠ₂.BI +SUD₂# +ina# +KAŠ#.SAG# +NU# +pa-tan +NAG-šu₂ +ina +KA-šu₂ +u +DUR₂-šu₂ +SI.SA₂-ma +KI +MIN +[ana +KI +MIN +Z]I₃ +ŠE#.SA.A +ZI₃ +ha-ru-be +di#-ik-ta +ZU₂.LUM.MA +TEŠ₂.BI +SUD₂ +ina +KAŠ +NU +pa-tan +2# +UD#-[me] +[NAG-MEŠ +2?] +UD#-me# +ina +A-MEŠ +NU +pa-tan +NAG-MEŠ +A-MEŠ +SAG +ŠA₃-šu₂ +tu#-s[a-lah₂-ma +TI] +[ana +KI +MIN +{urudu}ŠEN.TUR] +A# +u# +KAŠ# +DIRI-ma +{giš}s[i-ha +{giš}a]r₂-gan#-na +{giš}b[a-ri-ra-ta] +[{u₂}HAR.HAR] +{u₂#}at-kam₂ +ana# +ŠA₃# +ŠUB#-di# +[x +x +x +x +x +x +x +x +x +x] +[I₃ +{giš}EREN +ŠE]Š₂-su +1/2 +SILA₃ +sah-le₂-e +1/2 +SILA₃ +{šim}GUR₂.GUR₂ +1/2 +SILA₃# +[{šim}LI +1/2 +SILA₃] +{u₂#}qut#-ri# +1/2# +SILA₃# +GA[ZI{sar}] +[1/2 +SILA₃] +ZI₃# +MUNU₆ +1/2 +SILA₃ +ZI₃ +GU₂.GAL +1/2 +SILA₃ +ZI₃ +GU₂.TUR +1/2# +SILA₃# +pa#-pa#-si#-{d#}ID₂# +1/2 +SILA₃ +{u₂}KUR.RA +1/2 +SILA₃ +{u₂}AB₂.D[UH] +[1/2 +SIL]A₃ +ŠE₁₀ +TU#{mušen} +1/2 +SILA₃ +{u₂}KAM-ti +A.ŠA₃ +10 +GIN₂ +{šim}MAŠ +10 +GIN₂ +KA +A.AB#.BA# +1/2 +SILA₃ +ZI₃ +GIG +[1/2 +SIL]A₃ +ZU₂#.LUM#.MA +1/2 +SILA₃ +DIDA +SIG.GA +1/2 +SILA₃ +ZI₃.KUM +16 +U₂-MEŠ +an-nu-ti# +TEŠ₂.BI +GAZ +SIM +[ina +KAŠ].SAG# +ina +{urudu}ŠEN.TUR +GIM +ra-bi-ki +tara-bak +3 +UD-me +SAG +ŠA₃-šu₂ +LAL₂-id +NINDA-MEŠ# +u# +KAŠ# +ŠA₃#-šu₂ +IGI-har#-šu₂-ma +TI +[DIŠ +N]A +ŠA₃-šu₂ +ik-ta-na-su-šu₂ +{u₂}IGI-lim +NU +pa-tan +i-kal +ta-sak₃ +ina +KAŠ +NU# +pa#-tan# +NAG#-MEŠ#-ma# +TI-uṭ +[ana +K]I +MIN +{u₂}IGI.NIŠ +SUHUŠ +{u₂}šur-ne₂-e +NU +pa-tan# +GU₇-MEŠ# +SUD₂ +ina +KAŠ +NU +pa-tan +NAG-MEŠ-ma +TI-uṭ# +[ana] +KI +MIN +{u₂}ar₂-zal-la +{u₂}HAR.HAR +{šim#}GUR₂#.GUR₂# +{šim#}x +x +x +x +NU +pa-tan +KI +MIN +ana +KI +MIN +I₃.UDU +a-a-ar +DINGIR +KI +I₃.NUN.NA +u +MUN# +HI.HI +NU +pa-tan# +GU₇#-MEŠ-ma +TI +ana +KI +MIN +kak-ku-sa-kam₂# +ša₂ +PA-MEŠ-šu₂ +DAGAL-MEŠ +ina +A +GAZI#{sar#} +SUD₂ +ina +KAŠ +u# +LAL₃# +SIG₃#-aṣ# +NU# +pa#-tan# +NAG#-MEŠ-ma +TI +ana +KI +MIN +kak-ku-sa-kam₂ +ša₂ +PA#-MEŠ#-šu₂ +DAGAL-MEŠ +u +MUN +DIŠ-niš# +SUD₂# +ina# +KAŠ# +u# +LAL₃# +SIG₃-aṣ# +NU# +pa#-tan +NAG-MEŠ-ma# +TI +ana# +KI +MIN +KIŠI₁₆#.HAB# +ša₂ +PA-MEŠ-šu₂ +DAGAL-MEŠ +GIM +LU.UB₂{sar#} +ta#-sa-laq +NAG#-MEŠ# +TI# +[an]a +KI# +MIN# +SUHUŠ# +{giš#}šu#-še# +NU +pa-tan +GU₇ +SUD₂ +ina +KAŠ +NU +pa-tan +N[AG +x +x +x] +x +x +x +x +TI# +[DIŠ +NA +x +x +x +x] +x +TUKU? +UD-um +ŠA₃-šu₂ +DAB#-[šu₂ +x +x +x +x +x +NU +pa]-tan# +NAG +TI +[...] +x +[... +KA]Š? +MIN# +[...] +x +[...] +SA? +[...] +x +[...] +x +x +[DIŠ +NA +ŠA₃-š]u₂ +GU₇-šu₂ +{u₂}HAR.HAR +MUN +SUD₂ +lu +in[a +A +l]u +ina +KAŠ +lu +ina +GEŠTIN +<> +ana +ŠA₃ +ŠUB-di +NAG +DIŠ +NA +ŠA₃-šu₂ +GU₇-šu₂ +{u₂}HAR.HAR +lu +ina +A +lu +ina +KAŠ +NAG +DIŠ +NA +ŠA₃-šu₂ +GU₇-šu₂ +{u₂}ti-ia-a-ti +ina +KAŠ +NAG +{u₂}IGI-lim +ina +KAŠ +{u₂}IGI.NIŠ +ina +KAŠ +{u₂}tar-muš +ina +KAŠ +{u₂}DILI +ina +KAŠ +{u₂}GAMUN.GE₆ +ina +KAŠ +{u₂}HAB +ina +KAŠ +{u₂}HAR.HAR +lu +ina +KAŠ +lu +ina +GEŠTIN +DIŠ +NA +ŠA₃-MEŠ-šu₂ +GU₇-MEŠ-šu₂ +1/2# +SILA₃ +ZU₂.LUM.MA +1/2 +SILA₃ +NIG₂.AR₃.RA +GIG.BA +1/2 +SILA₃ +LAGAB +MUNU₆ +ina +3 +SILA₃ +KAŠ.SAG +ŠEG₆-šal +tu-kaṣ₃-ṣa +ta-ša₂-hal +I₃#.GIŠ# +ana# +IGI# +ŠUB#-di# +ana +DUR₂-šu₂ +DUB-ak +UD-ma +LU.UB₂ +SUM{sar} +GAMUN{sar#} +SUD₂# +ina +KAŠ +NAG +ana +KI +MIN +HI.I[S{sa]r?} +SUM#{sar#} +SUD₂ +ana +A +ŠUB +ina +MUL₄ +tuš-bat +NAG# +iš-tu +NAG-u₂ +NINDA.I₃.DE₂.A +ina +I₃.NUN.NA +GU₇# +ana# +KI +MIN +{u₂}NU.LUH.HA +SUD₂ +ina +KAŠ +NAG +ana +KI +MIN +{u₂}IGI-lim +SUD₂ +KI +MIN +ana +KI +MIN +{u₂#}SIKIL +SIG₇ +GU₇ +DIŠ +NA +ŠA₃-šu₂ +ka-si-šu₂ +SUM{sar} +SIG₇-su +{šim}G[UR₂.GUR₂? +T]EŠ₂.BI +SUD₂ +ina# +A +SIG₃-aṣ +NU +pa-tan +NAG-šu₂ +ZU₂.LUM.MA +lu +ina +I₃.ŠAH +[l]u +ina# +I₃.GIŠ +GU₇ +ana +KI +MIN +{šim}ŠE.LI +BABBAR +SUD₂ +ina +KAŠ# +[NU +pa-tan +NAG]-ma# +TI# +ana +KI +MIN +{u₂}IGI-lim +{u₂}IGI.NIŠ +{u₂}tar-muš +SUHUŠ +{giš}NAM#.TAR# +[NITA₂ +x +x +x +mal]-ma#-liš# +HI#.HI# +ina +KAŠ +tara₃-sa-an +ina +MUL₄ +tuš-bat +ina +še-ri₃ +ba-lu +pa-tan# +N[AG-šu₂ +A] +GAZI# +NU +NAG-šu₂ +TI +DIŠ +NA +ŠA₃-šu₂ +ik-ta-na-su-šu₂ +ŠA₃#-MEŠ-šu₂ +ma-gal +nap#-h[u] +{u₂#}HAR.HAR +GI +DU₁₀.GA +{šim}MUG +{šim}LI +ana +ŠA₃-bi +ŠUB-di +ŠEG₆-šal# +ta-ša₂-hal +lu +ba#-hir₂ +ana +DUR₂-šu₂ +DUB-ma +TI +DIŠ +NA +NINDA +GU₇ +KAŠ +NAG-ma +i-ši-bi# +ŠA₃-šu₂ +ik-ta-na-su-šu₂# +DAB-MEŠ-su +ŠA₃-MEŠ-šu₂# +MU₂.MU₂ +u +i-sil +ŠA₃-šu₂ +mu-še +KIN.NIM +GIG +ana +TI-šu₂ +{giš}e#-re-na +{giš}ŠUR.MIN₃ +GI +DU₁₀.GA +{šim}BAL +{šim}GIR₂ +{u₂}HAR.HAR +5 +U₂.HI.A +ŠEŠ +TEŠ₂.BI +ta-ka-sim +ana +KAŠ +ŠUB-di +ŠEG₆-šal +ta-ša₂-hal +LAL₃ +u +I₃#.GIŠ# +hal-ṣa +ana +ŠA₃ +ŠUB-di +lu +ba-hi#-ir# +ana +KUŠ +maš-qe₂-ti +te-si-ip +ana +DUR₂-šu₂ +DUB +TI# +[EN₂ +ŠA₃-MEŠ? +i]t-ta#-nap-ša₂-ru +ze-er +kar-šu₂# +ŠA₃.NIGIN +ku-uṣ-ṣu#-ru#-u₂?# +x +x +x +[x] +[x +x +x] +x +x +ek-le-ta +ki-i +me-e +hi-ri-ti +a-la-pa-a +na-du-u₂ +IGI-MEŠ-šu₂ +ša#-[ar +E]DIN +e-di-ip +na-di +i-ta-naq-qi₂ +ŠU +EDIN +ma-la-a +IGI-MEŠ-šu₂ +e-t[a-n]a-ba-la +ša#-pa#-tu-šu₂ +i-ta-na-pa-aṣ +ki-ma +KU₆-MEŠ +it-ta-nak-bir +ki-ma +MUŠ +e-[mur-m]a +{d}gu-la +na-di-na-at +ba-la-ṭi +NAM.LU₂.U₁₈.LU +ina +E₂ +{d}asal-lu₂-hi +u₂-bil +eṭ-lu +{d}A[MAR.UT]U +re-me₂-nu-u +ip-pa-lis-su-ma +gi-ša-ma +TI-uṭ +eṭ-lu +šum₂-ma +IM# +ina +DUR₂ +lu-ṣi +šum₂-ma +gi-ša-tu +ina +nap-ša₂-ti +li-še-ṣi +TU₆ +EN₂ +KA#.INIM#.MA +ana +ki-is +ŠA₃ +ŠID-nu +DIŠ# +[NA? +e-t]a-na#-ša₂-aš₂ +NINDA +u +KAŠ +la +i-mah-har +MAŠ.SILA₃-MIN-šu₂ +GU₇-MEŠ-šu₂ +[SAG.DU-su +g]i-na-a +LAL +I₃.NUN.NA +GU₇ +UD.7.KAM₂ +SUM{sar} +SUM.SIKIL{sar} +GA.RAŠ{sar} +NU +GU₇ +[ina +A +{giš}ŠE.NU] +RA-MEŠ-aṣ +NUMUN +{u₂}UKUŠ₂.HAB +NUMUN +{u₂}HAR#.HAR# +SUD₂ +ina +KAŠ +NAG-ma +TI +[ana +KI +MIN +x +x +x +NI]G₂.SILA₁₁#.GA₂ +HAD₂.A +SUD₂# +ina# +KAŠ# +{lu₂#}KURUN₂.NA +NAG +NUMUN +{u₂}UKUŠ₂.HAB +NUMUN +{šim}LI +NUMUN +{giš}ŠE.NU +SUD₂ +ina +KAŠ +NAG +[DI]Š +NA# +ki-is +ŠA₃ +GIG +ana# +ki-is +ŠA₃ +KUD#-si +{u₂}IGI-lim +{u₂}IGI.NIŠ +{u₂}tar-muš +{u₂#}tar#-muš₈# +{u₂#}KUR.RA +SUD₂ +ina +I₃ +u +KAŠ +NAG# +x +x +x +ina# +KAŠ# +NAG +PEŠ₂.SILA₃.GAZ +ša₂-bu-la +GU₇ +[x +x +x] +{u₂#}kak-ku-sak-ku +ša₂ +PA-MEŠ-šu₂ +DAGAL-MEŠ +{u₂}HAB +{u₂}IGI-lim +SUD₂ +[ina +I₃].KUR#.RA# +I₃ +SIKIL +NAG +MUN +ina +KAŠ +NAG +MUN +ina +A +NU +pa-tan +NAG-ma +ina-eš +[DIŠ +N]A +lib₃#-bi +lib₃-bi +GU₃.GU₃-si +{u₂}ur₂-ne₂-e# +{u₂}HAR.HAR +{u₂}ti-ia-ta₅ +{u₂#}NU#.LUH.HA +{u₂}KUR.RA +sah-le₂-e +{u₂}tar-muš₈ +{u₂#}IGI-lim +{u₂}IGI.NIŠ +{u₂}ak-tam +{u₂#}IN#.NU#.UŠ +{giš}ŠINIG# +12# +U₂#.HI#.A# +ŠEŠ +ba-lu +pa-tan +ina +KAŠ +NAG-MEŠ +DIŠ +NA +ŠA₃-šu₂ +ik-ta-na#-ar# +PA# +{giš#}ŠINIG +{u₂}IN#.NU.UŠ +GIŠ# +BUR₂# +SUD₂ +ina +KAŠ +NU +pa-tan +NAG-ma +ina-eš +SUHUŠ +{giš}šu-ši +SUHUŠ +{giš#}NAM.TAR +NITA₂ +{u₂}tar-muš₈ +{u₂#}IGI-lim +{u₂}IGI.NIŠ +{u₂}IN₆.UŠ₂ +NUMUN +{u₂}IN₆.U[Š₂] +7 +U₂#-HI-A +ki-is +ŠA₃-bi +ina +KAŠ +N[AG] +1# +GIN₂ +MUN +eme-sal-li₃ +{šim#}[GUR₂.GUR₂?] +{šim#}LI +DIŠ-niš +GAZ +[SIM?] +ina +KAŠ +ŠEG₆-šal +[x +x +ana +Š]A₃ +ŠUB#-di# +ana +DUR₂-šu₂ +D[UB-ak] +EN₂ +mi#-na-a +ma-lu-u₂ +lib#-bu#-[ka +mi-na-a +ma-lu]-u₂# +lib-bu#-[ka] +x +x +x +{d}x +x +lib#-bu#-[ka +man-nu +lu-uš-pu]r +ana# +gu#-gal# +lib#-bi#-[ka] +[liš-ša₂]-a# +[x +x +x +x +x +x +x +x +x +x +x +x +l]i-pat-ta-a +ID₂-ME[Š] +[x +x +x +x +x +x +x +x +x +li-par-ši-d]u-ma +li-ṣu-ni +zu-u₂-šu₂# +[x +x +x +x +x +x +x +x +x +x +x +x +x +x +l]i-mur +EN₂ +ul +ia-tu-un +[x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +{d#}gu-la +TI.LA +qiš-ta₅ +TI-e +EN₂ +[EN₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +G]U₇-ia +ŠA₃-bi +KI.SIKIL +ana +GAZ-ia +[x +x +x +x +x +x +x +x +x +x +x +Š]A₃-bi +GUD +ina +u₂-re-e +li-kul +[x +x +x +x +x +x +x +x +Š]A₃-bi +ŠAH +ina +a-sur-re-e# +[x +x +x +x +x +x +{d}a-sa]l-luh +u +{d}gu-[la] +[x +x +x +x +x +x +x +x +iq-b]u-nim?#-ma# +a#-na#-ku# +[u₂-ša₂-an-ni] +[x +x +x +x +x +x +x +x +x] +[... +EN₂ +ana +UG]U +LI.DUR +Š[ID-nu] +[x +x +x +x +{g]i}pisan!(E₂)-gen₇ +keš₂-d[a] +[x +x +x +x +x +x +x] +x +a# +pu₂#-gen₇# +a#-ge₆-a +nu-t[uku] +[x +x +x +x +x +x +tu]ku? +u₂ +nu-ku₄-ku₄ +a +nu-ku₄#-ku₄# +[... +n]e +{d}asal-lu₂-hi +igi +nig₂ +ge₂₆-e +gen-na +dumu-gu₁₀ +[x +x +x +x +n]e?-ke₄ +u₃ +{u₂}ha-šu-u₂ +šu +u-me-ti +na[m-šub +eridu{ki}-ga +u-m]e-ni-si₃ +lu₂-u₁₈-lu +dumu +dingir-ra-na +ka-bi-ta +u-me-ni-gar +lu₂ +du[mu? +dingir?-ra-na +še₁₀-gen₇ +he₂-du]r₂-re +bu-luh-gen₇ +<> +he₂-en-si-il-e +im-ma +gu-du-a-ni-ta +he₂-em-ma-ra-e₃# +KID₃#.[KID₃.BI +x +x +x +x +ana +UG]U +EN₂# +ŠUB-di +ina +KA-šu₂ +u₂-man-zaq-ma +ina +KAŠ +NAG-ma +ina-eš +[... +ka-ke]š₂-bi +he₂-du₈-a +[... +{d}asal-l]u₂-hi# +dumu# +eridu{ki#}-g[a-k]e₄ +ka-keš₂-bi +he₂-du₈-a +[KID₃.KID₃.BI +x +x +x +x +EN₂] +7#-šu₂ +ŠID-nu +ina +KA-šu₂ +u₂#-[man-z]aq-ma +ina-eš +EN₂# +[{d}ŠAKKAN₂ +ina +EDIN +ŠA₃-ba-šu₂] +ka-su-šu₂-ma +SAHAR +SIG₃.SIG₃-ta +ma-l[a-a +rit]-ta#-šu₂# +ul +[um-mu +pe-ta-a]t +pa-ni-šu₂ +ul +a-ha-tu +mu-š[e-qa-at +re-ši-šu₂] +ki#-[ma +DI +GI] +DA# +na-ši +pat-r[i +TU₆ +EN₂] +[KID₃.KID₃.BI] +LAG +MUN +{u₂}nu#-hur#-ta₅ +TI-qe₂ +ana +UGU +EN₂ +ŠUB-d[i +x +x +x +x +x +x +x +x +x] +[EN₂ +šam-mu +ša₂ +Š]A₃-bi +ina +KUR-i +a-ṣi-ma# +as-suh-šu-m[a +x +x +x +x +x] +[a-na +{d}UTU +D]U₁₁.GA-ma +iṣ-ṣa-bat +ŠA₃-b[i +{d}UT]U +[x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +a#-[na +NENNI? +A? +NENNI? +D]U₁₁.GA#-ma +iṣ-ṣa-bat +ŠA₃-bi +N[ENNI? +A? +NENNI? +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +a-na# +[{d}e₂-a] +EN-ia +aq-bi-ma +Š[A₃-bi +x +x +x +x +x +x +x +x +x +x] +ŠA₃-b[i +AN +u] +KI# +lip-pa-šir +Š[A₃-bi +x +x +x +x +x +x] +ŠA₃ +NENNI +[A +NEN]NI +lip-pa-šir# +[x +x +x +x +x +x +x +x +x] +NAG-šu₂# +[...] +KA.INIM#.[MA +...] +KID₃.KID₃.BI# +x +x +[...] +7-šu₂ +u +7-šu₂ +x +[...] +TA +{urudu}na-a[h-bi? +...] +ana +IGI +{d}UTU +EN₂ +7#-[šu₂ +x +x +x] +ŠID?#-nu# +[...] +ina +KI +ta-sa-rim +[x +x +x] +x +ina +GIR₃ +15# +u?# +150?# +x +[...] +ina +na-kap +GIR₃ +[15 +u] +150 +i-na-as-suk-ma +ina?#-[eš?] +EN₂ +ŠA₃ +{d}UTU +ina +KUR-i# +[x +x +G]IG-ma +U₂ +ŠA₃ +ina +ma₂-kan{ki} +a-ṣi-ma +{d}30 +[is-suh-šu] +ša₂ +{d}UTU +im-me-ru +pa#-nu#-šu₂ +{d}UTU +šam-ma +TA +KUR-i +u₂-še-ri-dam-[ma] +iš-kun-ma +ina +qaq#-qa-ri +šur-šu-šu +qaq-qa-ra +DIRI +SI-MEŠ-šu₂ +AN-e +nak-pa +iṣ-bat +ŠA₃ +{d}UTU +i[na +l]e-qi₂-šu +iṣ-bat +ŠA₃ +{d}30 +ina +DUNGU-MEŠ +iṣ-bat +ŠA₃ +GUD +ina +tar-ba-ṣi# +iṣ-bat +ŠA₃ +UDU.NITA₂# +ina# +su-pu-ri +iṣ-bat +ŠA₃ +ANŠE +ina +su-kul-li +iṣ-bat +ŠA₃ +UR.GI₇# +ina +ši-ga-ri +iṣ-bat +ŠA₃ +ŠAH +ina +er-re-ti +iṣ-bat +ŠA₃ +GURUŠ +ina +me-lul-ti +iṣ-bat +ŠA₃ +KI.SIKIL +ina +ur-ši-ša₂ +iṣ-bat +ŠA₃ +NENNI +A +NENNI +tu-mu-re-e +tu-ga-re-e +a-na +e-re-ši-šu-ma +SU-šu₂ +i-di +e-ma +iš-ku-nu +i-di +TU₆ +EN₂ +KID₃.KID₃.BI +{u₂}ur₂#-ne₂-e +{u₂}NU.LUH.HA +{u₂}ti-ia-ta₅ +GAZI{sar} +{u₂}KUR.RA +DIŠ-niš +SUD₂ +ina +KA[Š +S]IG₃-aṣ +EN₂ +ana +ŠA₃ +ŠID-nu +ina +ŠU +GUB₃-šu₂ +NAG-ma +TI +[EN₂] +šam#-mu# +[ša₂ +ŠA₃]-bi# +ina +KUR-i +a-ṣi-ma +as-suh-šu₂-ma +iṣ-ṣa-bat +ŠA₃-bi +[ana +{d}UTU] +aq#-bi-ma +iṣ-ṣa-bat +ŠA₃ +{d}UTU +[ana +AN-e +u +KI-ti₃ +aq-b]i-ma# +iṣ-ṣa-bat +Š[A₃ +A]N +u +KI +[ana +u₂-ma-mi +DU₁₁.GA-ma +iṣ]-ṣa#-bat +ŠA₃ +u₂-ma-me +a-na# +{d#}e₂#-[a +EN +ap-si +aq-bi]-ma# +ŠA₃-b[i +lip-pa-šir₃ +ŠA₃-b]i +{d}UTU +lip-pa-šir₃ +ki-m[a +ŠA₃-bi +{d}UTU +ip-pa-ša₂]-ru# +ŠA₃-b[i +AN +u +KI +lip-pa-š]ir₃ +ki-ma +ŠA₃-bi +AN +u +KI +[...] +x +x +x +KID₃.KID₃.B[I +x +x +x +x +EN₂ +7?-š]u₂ +ŠID-nu +ina +KA-šu₂ +u₂-[man-zaq-ma] +ina-eš +EN₂ +ER₂# +IR +UD +LI +AN +x +x +[x +x] +sa-bi#-tu₄ +[na]m-zi-tu₄ +a-ši-tu₄ +pi +ina +a#-mat# +{d#}AMAR#.UTU# +ina +qi₂-bit# +{d#}UTU# +LU₂ +lib-luṭ +TU₆ +EN₂ +EN₂ +IM +el-lu +ša₂ +ina +KUR-i +aš₂-bu +man-nu +ub-lak-k[a +x +x +el-l]i? +ša₂ +a-me-lu-ti +ša₂ +UZU-šu₂ +ša₂ +la +a-ka-li₃ +ša₂ +BUR₃.BUR₃-šu +ša₂ +la +x +[x +x +x] +x +IR +IM +ana +šu-bur-ri +ki-ma +ṣe-er +ka-ra-ni₇ +ta-aṣ-ṣi# +[...] +x +TU₆# +EN₂ +KID₃.KID₃.BI +{u₂}ti-ia-ta₅ +GAZI{sar} +x +[...] +x +I₃#.GIŠ# +ana# +pa-ni +ma-aš-ti-i +ta-za-ru₃ +3-šu₂ +E[N₂ +ŠID +...] +[ana +KI +MIN +...] +x +[...] +x +x +x +[...] +[...] +ti#-ia-ta₅ +GAZI#{sar#} +ta-mar-raq# +ina +KAŠ# +NAG +ana +KI +[MIN +...] +ina +I₃.GIŠ +u +KAŠ.SAG +NAG +EN₂ +e-sil +k[i-ma +na-d]i +na-pi-ih-ma +ki-ma +lu-up-pi +KA.NA +šu#-u₂# +i[na? +K]A-šu₂ +šu-u₂ +{giš}PEŠ₃ +NU +E₃-ma +TU₆ +EN₂ +KID₃.KID₃#.BI +ina +ŠU.SI +GIR₃#-ka# +GAL-ti +ša₂ +GUB₃ +EN₂ +7-šu₂ +ana +UGU +LI.DUR-šu₂ +ŠUB-ma +ina-eš +EN₂# +ŠA₃ +nam-zi-tu₄ +KAŠ +la-as-su-uh +TU₆ +EN₂ +KID₃.KID₃.BI +ina +ŠU.SI +GIR₃-ka +GAL-ti +ša₂ +150 +EN₂ +ŠUB-di +u +ina +ŠU.SI-ka +ta₅-mar-raṭ-ma +ina-eš +EN₂ +ša-ru-um-mi +ša₂-ru +ša₂-ru +IZI +DINGIR-MEŠ +at-ta₅ +ša-ru +ša +bi-rit +ze-e +u +ši-na-a-ti +at-ta₅ +tu-ṣi-a-ma +it-ti +DINGIR-MEŠ +ŠEŠ-MEŠ-ka +na#-di-a-at +{giš}GU.ZA-ka +EN₂ +KID₃.KID₃.BI +{u₂}EME +UR.GI₇ +HAD₂.A +SUD₂ +ina +I₃.GIŠ +ŠUB-di +EN₂ +ŠID-nu +ŠEŠ₂-su-ma +ina-eš +EN₂ +lib-bu-ma +ŠA₃-bu +ŠA₃-bu +da-an +ŠA₃-bu +qar-rad +GIM +UR.MAH +ma#-li# +pu-luh-ta₅ +ki-ma +UR.BAR.RA +la-ka-da +uš-šur +EN₂ +ul +ia-at-tu₂ +EN₂# +{d#}gu-la +EN₂ +a-nam-di +EN₂ +ana +DUMU.MUNUS +{d}e₂-a +a-nam-di +EN₂ +ana +DUMU.MUNUS +{d}a-nim +a-nam-di +ana +DUMU.MUNUS +DINGIR +aš-šum +mi-ni-i +aš-šum +mi-ni-i +aš-šum +ka-bat-ti +aš-šum +li-ib-bi +aš-šum +li-ib-bi +aš-šum +li-ib-bi +mar#-ṣi# +TU₆ +EN₂ +KID₃.KID₃.BI +SIG₂ +BABBAR +DUR +NU.NU +7 +KA.KEŠDA +KE[ŠDA +EN₂ +ŠID-nu +ina +EGI]R-šu₂ +KEŠDA-ma +ina#-eš# +EN₂# +a-na +li-bur-za-ni-nu +qi₂-bi#-[ma +um-ma +a-d]a-pa +ABGAL#-m[a] +TA# +at#-ta₅ +u +a-na-ku +kul-lat +KUR +ni-ti-qam-ma# +A# +PU₂# +ha#-[li-lu-ti +x +x +x +x] +[x +x +x +x +x +x +x +x +x +q]a₂-ti +mar-ṣi +ṣa-bat +EN₂ +{d}e₂-a +ŠUB-šu₂-ma +LU₂ +lib-luṭ +[EN₂] +[KID₃.KID₃.BI +{u₂}NU.LUH.H]A +{u₂}ti-ia-ta₅ +MUN +ta-mar-r[aq] +[x +x +x +x +x +x +x +x +x +x +GUB₃-š]u₂ +ina +ŠU-ka +ta-mar-raṭ +[EN₂ +...] +x +TIM +a-na +li-bur-na-din +iš-pur-an-ni +[...] +ina +a-hi +PU₂ +ša₂ +KUR-i +[...] +ul +nu-uš-ba-am-ma +[... +NENN]I +A +NENNI +ra-ši +DINGIR +ana +mah-ri-ka +[...] +x +MI +AL# +MU +TU₆ +EN₂ +[KID₃.KID₃.BI +...] +x +ša₂ +EN₂ +ana +x +x +ŠUB-u₂ +[... +te-d]e-ek-ki-šu-ma# +i#-ne#-eš# +[EN₂ +... +DU]MU +{d}UTU +ina +AN-e +u +KI-te +MIN +[KID₃.KID₃.BI +...] +NI₂#-šu₂ +ŠID-nu +[EN₂ +x +x +x +x +x] +BAL?# +IN?# +e-mur-šu₂-ma +{d}asal-lu₂-hi +ih-ba-a +A-MEŠ +ABZU +[x +x +x +x +GIM +{du]g}GAN? +ina +qa₂-ti-šu +GIŠ.HUR +ŠA₃-bi +ana +{d}e₂-a +be-li₂-šu +EN₂# +ul# +ia-tu-un +EN₂ +{d}60 +u +{d}asal-lu₂-hi +EN₂ +{d}gu-la +GAŠAN +EN₂ +TU₆ +EN₂ +KID₃.KID₃.BI +{u₂}NU.LUH.HA +MUN +TI-qe₂ +EN₂ +3-šu₂ +ana +ŠA₃ +ŠUB-ma +i-man-zaq-ma +TI +EN₂ +da-an +ŠA₃-bu +qar-rad +ŠA₃-bu +ša₂ +ŠA₃-bi +ar-ra-qa +IGI-MIN-šu₂ +pur-si-it +MUD₂ +na-ši-ma +ir-ru +sa-hi-ru-ti +ul-lu-lu +ina +a-hi-šu₂ +e-ta-šiṭ +ŠA₃-bu +e-ta-tu-ra +MIN +ana +GURUŠ +dam-qi₂ +ana +KI.SIKIL +da-me-eq-tu₄ +uš-šir₃ +GURUŠ-ma +E₂ +li-pu-uš +uš-šir₃ +KI.SIKIL +qin#-na +liq-nun +ir-ru +suh₄-hu-ru +ze-er +kar-šum +u₃ +ši-i +ri-qi₂-tu₂ +bu-up-pa-ni-ša₂ +sah-pat +liš-lim +kar-šum +ir-ri +liš-te-ši-ru-ma +ri-qi₂-tu₄ +lit-ru-uṣ +GIM +IM +ina +šu-bur-ri# +GIM# +ge-šu-ti +ina +na-piš-ti +li-ṣa-a +EN₂ +KID₃.KID₃.BI +7 +LAG +MUN +ina +ŠA₃-bi +ŠUB +EN₂ +7-šu₂ +ŠID-nu +NAG-šu₂-ma +ina-eš +EN₂# +ŠA₃-bu +ŠA₃-bu +e-ki-il +ŠA₃-bu +GIM +mu-ši-ti₃ +ma-li +nam-ri-ri +[i-n]a +qab#-li-ti +ul +i-šu +a-pa-tu₂-ma +ul +u₂-šer₃-šu +ma-am-ma +[ir]-ru# +su-hu-ru +ze-er +kar-šum +u₃ +ši-i +ri-qi₂-tu +bu-up-pa-ni-ša₂ +sah-pat +[li]-it#-ru-uṣ +kar-šu₂ +ri-qi₂-tu₂ +lit-ru-uṣ +[ki-m]a +ša₂#-a-ri +a-na +šu-bur-ri +ki-ma +ge-šu-te +a-na +ZI-MEŠ +[ki-m]a +zu-ʾ-ti +u +u₂-pa-ṭi +u +di-ma-ti# +ka#-la +SU-šu₂ +na-šal-li-la-ni +[E]N₂ +ul# +ia-ut-tu +EN₂ +{d}e₂-a +u +{d}asal#-lu₂#-hi +EN₂ +{d}da-mu +u +{d}gu-la +[EN₂] +{d#}NIN#.GIRIM₃# +EN +EN₂ +TU₆ +EN₂ +[KID₃.KID₃].BI# +ana +ŠA₃-bi +10 +LAG +MUN +<ŠUB> +7#.TA#.AM₃ +EN₂# +ŠID-nu-ma +[ina +GU]B₃-ka +KAŠ₃-šu +IGI +ina +GUB₃-šu +i-mah-har +ba#-lu# +pa#-tan# +NAG-ma +ina-eš +[EN₂] +ŠA₃#-bu#-ma +ŠA₃-bu +qar-rad +ŠA₃ +KAS₄ +ša +ŠA₃ +ze-ra +IGI-MIN-šu₂ +pur-sit₂ +da#-a#-me# +[ŠA₃-b]u +ŠA₃#-bu# +a-ia-ša₂ +ta-lak +ŠA₃-bu +a-ia-ša₂ +ta-ṣa-bur +ŠA₃-bu +[...] +x +x +x +ad# +SAHAR#.HI#.A# +x +x +[x +x +x] +[...] +x +x +[x +x] +[...] +x +pad +su +x +x +[x +x +x] +ša₂#-a#-ru# +x +[x +x +x +x +x +x +x] +i-pa-šar +pi-šir₃-šu# +[x +x +x] +lip-šur +ki +ši# +[x +x +x] +mu# +ana +KA₂ +li-še-ṣi +TU₆ +EN₂ +[KA.INIM.M]A +IM# +ša₂ +ŠA₃ +DAB-šu₂ +[KID₃.KID₃.BI] +I₃.GIŠ +ŠA₃-šu₂ +EŠ-MEŠ +EN₂ +an-ni-ta₅ +3-šu₂# +ŠID-nu +[DIŠ +NA +LI.D]UR-su +DU₈-at +{na₄}PEŠ₄ +ANŠE# +{u₂}SIKIL +{u₂}ŠAKIRA +{šim}LI +[x +x +x] +5# +U₂.HI.A +ŠEŠ +TEŠ₂.BI +SUD₂ +i[na +KA]Š +HI#.HI# +ina# +LI.DUR-šu₂ +tu-na-tak +[U₂.HI.A +Š]EŠ-ma +ina +KAŠ +SILA₁₁-aš +tara-ba[k +x +x +{u₂}IGI-lim? +{u₂}IG]I.NIŠ# +{u₂#}tar-muš +[x +x +x +x +SU]D₂ +SUR +tuš-ta-na-as-[sa₃-qam₂ +...] +TI +[ana +KI +MIN +{u₂}ṣ]i-bu-ra +{u₂}DILI +TEŠ₂#.BI# +SUD₂# +x +[...] +[ana +KI +MIN] +{u₂#}IGI-lim +SUD₂ +ina +GEŠTIN +SUR# +N[AG-ma +TI] +[DIŠ +NA +LI.DU]R-su +ŠUB-MEŠ-su +ana +TI-šu₂ +{u₂}im-hur-aš-na +SUHUŠ# +x +x +x +[x +x +x] +TI +ina +KAŠ +ina +GEŠTIN +DU₁₀.GA +NAG-MEŠ-ma +TI +DIŠ# +NA# +ŠA₃-šu₂ +GIG +GA +AB₂ +KUG.GA +I₃.NUN.NA +UD.2.KAM₂ +NAG +DUB +1.KAM₂ +DIŠ +NA +su-a-lam +GIG +ana +ki-is +ŠA₃ +GUR-<šu₂> +E₂.GAL +{m}AN.ŠAR₂-DU₃-A +LUGAL +ŠU₂ +MAN +KUR +AN.ŠAR₂{ki} +ša +{d}AG +{d}taš-me-tu₄ +GEŠTU-MIN +DAGAL-tu₄ +iš-ru-ku#-uš +e-hu-uz-zu +IGI-MIN +na-mir-tu₄ +ni-siq +ṭup-sar-ru-ti# +ša +ina +LUGAL-MEŠ-ni +a-lik +mah-ri-ia +mam₂-ma +šip-ru +šu-a-tu +la +e-hu#-uz-zu# +bul-ṭi +TA +muh-hi +EN +UMBIN +liq-ti +BAR-MEŠ +ta-hi-zu +nak-la +a-zu-gal-lu-ut +{d}nin-urta +u +{d}gu-la +ma-la +ba#-aš-mu +ina +ṭup-pa-a-ni +aš₂-ṭur +as-niq +IGI.KAR₂-ma +a-na +ta-mar-ti +ši-ta-si-ia +qe₂-reb +E₂.GAL-ia +u₂-kin +[{giš}]KIŠI₁₆#.H[AB +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +[DIŠ +N]A +SAG.KI +GUB₃#-šu₂# +[x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +{u₂}SU.AN.DAR.RA +{š[im}MUG +x +x +x +x +x +x +x +x +x +x +x +x +x] +[DIŠ +N]A +SAG.KI-MIN-šu₂ +ṣab-ta-šu₂-ma +IGI-[MIN-šu₂ +x +x +x +x +x +x +x +x +x +x +x +x +x] +[DUH.Š]E.GIŠ.I₃# +ša₂-bu-lu-te +GAZ# +S[IM +x +x +x +x +x +x +x +x +x] +[DIŠ +NA +SA +SAG].KI +ZAG#-šu₂# +ZI-ma +IGI +Z[AG-šu₂ +...] +[x +x +x +x +x +{š]im}BULUH +{š[im?} +...] +DIŠ +NA +UGU-šu₂ +KUM₂ +u₂-kal +SA +ZI +SAG.KI +TUKU-ma +IGI-MIN-šu₂ +i-BAR₃ +IGI-MIN-šu₂ +bir-ra-ta₅ +i-pi-ta₅ +i-ši-ta₅ +mur-din-na +qu₃-qa-na +a-ša₂-a +u₃ +ER₂ +ŠUB.ŠUB-a +1/3 +SILA₃ +ZA₃.HI.LI +bu-ṭu-ta₅ +ina +{na₄}KINKIN +ARA₃-en +SIM +SAG-ka +u₂-kal +ina +ŠA₃ +1/3 +SILA₃ +TI-qe₂ +ina +A +GAZI{sar} +SILA₁₁-aš +SAR-ab +LAL-ma +UD.3.KAM +NU +DU₈ +1/3 +SILA₃ +sah-le₂-e +1/3 +SILA₃ +ZI₃ +ŠE.SA.A +ina +A +GAZI{sar} +SILA₁₁-aš +SAR-ab +LAL-ma +UD.3.KAM +NU +DU₈ +sah-le₂-e +ARA₃-ti₃ +{šim}GUR₂.GUR₂ +NAGA.SI +ina +KAŠ +SILA₁₁-aš +KI# +MIN# +{šim}ŠEŠ +MUN +eme-sal-li₃ +mal₂-ma-liš +HI.HI +ina +I₃.NUN +SUD₂ +IGI-MIN#-šu₂# +te#-[qi₂] +1/3 +SILA₃ +ZA₃.HI.LI +1/3 +SILA₃ +ŠIKA +IM.ŠU.RIN.NA +10 +GIN₂ +hi-qa-ti# +[x +x +x +x] +ina +A +GAZI{sar} +SILA₁₁-aš +SAR-ab +LAL-ma +UD#.3#.K[AM +NU +DU₈] +EGIR +na-aṣ-ma-da-ti +an-na-ti +10 +GIN₂ +ZA₃.HI.LI +ša₂ +KA +ur#-ṣi# +[x +x +x +x +x +x +x] +MUN +A.GEŠTIN.NA +NU +TAG.TAG +ina +NINDA +is-sip₃-ma +GU₇ +5 +GIN₂# +[x +x +x +x +x] +ina +KAŠ.SAG +SIG₃-aṣ-ma +NAG-šu₂ +[x +x +x +x +x +x +x] +UD.1.KAM₂ +AN.ZAH +SUD₂# +[...] +10 +GIN₂ +GURUN +{giš}MAŠ.HUŠ +[x +x +x +x +x] +1/3 +SILA₃# +[x +x +x] +GAZ +SIM +ina +A +GAZI#[{sar} +SILA₁₁-aš +SA]R-ab# +LAL-ma +UD.3#.[KAM +NU +DU₈] +ŠIM.BI.ZI#.[DA +x +x +x] +ina +I₃.UDU +UR.MAH +SUD₂ +[x +x +x] +x +x +[x +x +x +x +x] +{u₂}ZA.BA.LAM +1/3 +SILA₃ +[x +x +x +x] +GAZ +SIM# +[ina +A +GAZI{sar}] +SILA₁₁#-aš +SAR-ab +LAL-ma +UD.[3.KAM +NU +DU₈] +10 +GIN₂ +ZI₃ +DUH#.ŠE#.GIŠ#.I₃# +H[AD₂.D]U +GAZ# +SIM +ina +A +GA[ZI{sar} +SILA₁₁-aš +KI +MIN] +10 +GIN₂ +ZI₃ +DUH.ŠE.GIŠ.I₃ +HAD₂.D[U +GAZ +SIM +...] +x +[...] +UD.1.KAM +GABA-su +LAL +SAG.DU-s[u +...] +ana +SAG.DU-šu₂ +DUB-ak +ina +E₂# +[ša₂ +ta-ra-na₇ +TUKU-u₂ +TUŠ-šu₂ +...] +1 +GIN₂ +U₅ +ARGAB{mušen} +1/2 +G[IN₂ +...] +1/3 +SILA₃ +NUMUN +BABBAR.HI{sar} +1/3 +SILA₃ +NUMUN +LU.[UB₂{sar?} +...] +1/3# +SILA₃ +ZI₃.KUM +10# +GIN₂# +PA# +{giš#}x +[...] +[NUM]UN? +sah?#-[le₂-e +...] +[x] +x +[...] +[... +SI]LA₁₁-aš +KI# +MIN# +IM.SAHAR#.[NA₄.KUR.RA +ina +I₃.NUN +SU]D₂ +te-qi₂ +1/3 +SILA₃ +PA +{giš}PE[Š₃ +ša +ina +{iti}BAR₂.ZAG.GAR +KUD-is +in]a +A +GAZI{sar} +SILA₁₁-aš +GUR-ma +HAD₂.A +G[AZ +SIM +x +x +x +x +x +x +SAR-a]b +LAL#-ma +KI +MIN +1/3 +SILA₃ +{u₂}HAB +1/3 +SILA₃# +N[UMUN +{u₂}KI.{d}IŠKUR +x +x +x +x +x +x +LAL]-ma# +KI# +MIN# +NAGA.SI# +[ina +I₃ +SUD₂ +ina +kip?-kip? +NITA? +HI.HI +SUD₂] +te#-qi₂# +1/3# +[...] +LAL#-ma# +KI# +MIN# +[... +LAL-m]a +KI# +MIN# +[...] +x +[...] +x +[... +te?]-qi₂?# +[...] +[...] +SUD₂# +te#-q[i₂] +[... +SILA₁₁-a]š +SAR-ab +LAL-ma +KI +[MIN] +[... +HAD₂].A +GAZ +SIM +ina +A +GAZI{sar} +SILA₁₁-aš +SAR-ab +LAL-ma +KI +[MIN] +[... +GIR₃.PAD].DA +GID₂.DA +SUD₂# +MAR +[... +ina +I₃.UDU +sa]-a-qi₂ +MAŠ.DA₃ +SUD₂ +te-qi₂ +[... +SIL]A₁₁-aš# +SAR#-ab# +LAL-ma +UD.3.KAM₂ +NU +DU₈ +[... +ina] +GA# +[SILA₁₁-aš +SA]R-ab +LAL-ma +KI +MIN +[...] +x +[ina] +LAL₃# +KUR-i +šu-hat +KU₃.SIG₁₇ +SUD₂ +MAR +[x +x +x +x +x +x +GAZ +SI]M +ina +A +GAZI{sar} +SILA₁₁-aš +SAR#-ab +LAL-ma +UD.3.KAM₂ +NU +DU₈ +[x +x +x +x +GAZ +SI]M +ina# +šur-šum-mi +KAŠ +ŠEG₆.GA₂ +SILA₁₁-aš# +SAR-ab +LAL-ma +UD.3.KAM₂ +NU +DU₈ +[x +x +x +x] +x +du-muq-ši-na +ta-tab-bal +ina# +LAL₃ +SUD₂ +te-qi₂ +[{u₂}KUR.GI.RIN₂].NA? +GAZ +SIM +ina +A +GAZI{sar} +SILA₁₁-aš +SAR-ab# +LAL-ma +UD.3.KAM₂ +NU +DU₈# +[{giš}ŠE.NU₂].A? +GAZ +SIM +ina +A +GAZI{sar} +SILA₁₁-aš +SAR-ab# +LAL-ma +UD.3.KAM₂ +NU# +DU₈ +U₅# +[ARGAB{mu]šen} +ina +LAL₃ +SUD₂# +te#-qi₂ +1/3 +SILA₃ +PA +{giš}MA₂#.[ERIŠ₄?{i]š}.MA₂.RA +GAZ +SIM +ina +A +GAZI{sar} +SILA₁₁-aš +SAR#-ab# +LAL#-[ma] +UD.3.KAM₂ +NU +DU₈ +IM.BABBAR +ba-aš-la +ina# +I₃# +sir₂-di +SILA₁₁-aš +SAR-ab +LAL₂#-ma +KI +MIN +ŠIKA# +I₃.GU.LA +ša +kib-ša₂₅# +TUKU-u₂ +ina +I₃ +SAHAR.URUDU +SUD₂ +te-qi₂ +{u₂}ZA.BA.LAM +sah-le₂-e +GAZ# +SIM# +ina +šur-šum-mi +KAŠ.SAG# +SIL[A₁₁-aš +S]AR-ab +LAL-ma +UD.3.KAM₂ +NU +DU₈ +{u₂}hal-tap-pa-na₇ +{giš}MAŠ.HUŠ +GAZ# +SIM# +ina +šur-šum-mi +KAŠ +ŠEG₆#.[G]A₂ +SILA₁₁-aš +SAR-ab +LAL-ma +UD.3.KAM₂ +NU +DU₈ +{šim}LI +{šim}GUR₂.GUR₂ +{šim}BULUH +ZA₃.HI.L[I +NA]GA.SI +LUH#-si +ina +GA +SILA₁₁-aš +SAR-ab +LAL-ma +UD.3.KAM₂ +NU +DU₈ +SAHAR.URUDU +i[na +L]AL₃ +SUD₂ +te-qi₂ +1/3# +SILA₃ +ZA₃.HI#.LI +1/3 +SILA₃ +DI[DA +... +S]ILA₁₁-aš +SAR-ab +LAL-ma +UD.3.KAM₂ +NU +DU₈ +1/3 +SILA₃ +ZA₃.HI.L[I +...] +SILA₁₁#-aš +SAR-ab +LAL-ma +UD.3.KAM₂ +NU +DU₈ +KUG.GAN +AN.Z[AH +... +S]UD₂ +MAR +1/3 +SILA₃ +ZI₃ +G[U₂.GAL? +... +SILA₁₁-aš +SAR-ab +LAL-m]a +UD.3.KAM₂ +NU +DU₈ +GAZ[I{sar}] +BIL₂-lu +GAZ# +SIM# +ina# +šur-šum-mi! +KAŠ +SILA₁₁-aš +SAR#-ab +LAL-ma +UD.3.KAM₂ +NU +DU₈ +NUMUN +[{u₂}]EME# +UR.GI₇ +SIG₇-su +tu-has₂-sa₃ +A-šu₂ +ana +{dug}BUR.ZI +SUR-at +EN +HAD₂.DU +GAR-an +UD#-[m]a +i-tab-lu +ina +I₃ +SAHAR.URUDU +SUD₂ +MAR +U₂# +BABBAR# +U₅ +ARGAB{mušen} +I₃.UDU +{šim}GIG +{šim}GAM.MA +NUMUN +{u₂}SI.SA₂ +ka-mun +{giš}ŠINIG +NUMUN +{u₂}IN.NU.UŠ +ŠE₁₀?# +UR?#.GI₇ +PA +{giš}ŠINIG +MUN +eme-sal-li₃ +{u₂}KUR.RA +{u₂}GAMUN.GE₆ +ma-la +ni-iš +IGI-MIN-ka +ŠU.TI +[t]a-pa-aṣ +ina +I₃ +SUD₂ +IGI-MIN-šu₂ +ina +NAGA.SI +LUH-si +EN +ER₂ +KUD-su +te-qi₂ +UD-ma +LAL-šu₂ +te-qi₂ +EGIR-šu₂ +[DILIM₂ +A.B]AR₂ +NU +DU₈-šu₂ +A +{giš}ŠE.NU₂.A +ŠEG₆-šal +ana +{dug}GAN +SAHAR₂ +te-sip +ina +MUL₄ +tuš-bat +ina +še-ri₃ +SAG.DU-su +[Š]EŠ₂ +A +{giš}ŠE.NU₂.A +ŠEG₆.GA₂ +ana +SAG.DU-šu₂ +tu-qar-ra-ar₂ +SAG.DU-su +kun-ša₂₅ +{sig₂}GA.RIG₂.AK.A +KEŠDA +[10? +SI]LAₓ? +I₃.GIŠ +ana +SAG.DU-šu₂ +DUB +ina +E₂ +ša₂ +ta-ra-na₇ +TUKU-u₂ +TUŠ-šu₂ +UD.3.KAM₂ +an-na₇ +DU₃.DU₃-uš +[DIŠ +NA +UG]U-šu₂ +KUM₂.KUM₂-im +IM.BABBAR +NAGA.SI +IN.GUN₃ +kib-rit +GIR₃.PAD.DA +NAGA.SI +I₃.HUL +u +I₃ +KU₆ +[DIŠ-niš] +HI#.HI +ina +NE +{giš}KIŠI₁₆ +SAG.DU-su +tu-qat-tar +[DIŠ +NA +UG]U-šu₂# +KUM₂ +TUKU-ma +IGI-MIN-šu₂ +i-bar-ru-ra +MUD₂ +u₂-kal-la +1/3 +SILA₃ +ZA₃.HI.LI +GAZ +SIM +ina# +A# +[GAZ]I{sar#} +SILA₁₁-aš +SAG.DU-su +SAR-ab +LAL-ma +UD.3.KAM₂ +NU +DU₈ +1/3 +SILA₃ +ZA₃#.HI#.LI# +1/3# +SILA₃# +ZI₃.KUM +ina +A.GEŠTIN.NA +SILA₁₁-aš +SAG.DU-su +SAR-ab +LAL-ma +UD.3.KAM₂ +NU +DU₈ +1/3 +SILA₃ +PA +{giš}PEŠ₃ +ina +GA# +SILA₁₁#-aš# +[SAR-ab +KI +MI]N +1/3# +SILA₃ +{u₂}HAB +ina +GA +SILA₁₁-aš +SAR-ab +KI +MIN +1/3 +SILA₃ +{u₂}u₅#-[ra-na +...] +ina +GA +SILA₁₁-aš +SAR-ab +KI +MIN +1/3 +SILA₃ +{u₂}ṣa-da-n[a? +...] +ina# +GA# +SILA₁₁-aš +SAR-ab +KI +MIN +{u₂}sa-ma-n[a₇ +... +ina +GA] +SILA₁₁-aš +SAR-ab +KI +MIN +[DIŠ +N]A +UGU-šu₂ +UD.DA +TAB +[... +ŠE]G₆.GA₂# +{šim}LI +{šim}GUR₂.GUR₂ +[{ši]m}BULUH +sah-le₂-e +DUH.Š[E.GIŠ.I₃ +...] +SAR-ab +KI +MIN +[DIŠ +NA +UG]U-šu₂ +UD.DA +TAB-m[a +IGI-MIN]-šu₂# +[i-bar-r]u-ra# +u₃ +MUD₂ +DIRI-a# +x +[x +x] +{šim}LI +{u₂#}NU.LUH.HA +[x +x] +x +sah#-le₂-e +{giš}MA₂#.ERIŠ₄?#.MA₂#.RA +DIŠ-niš +GAZ +SIM +ina +DIDA +HI#.HI# +S[AG?.DU-su] +LAL#-id +[1/3 +SILA₃ +ZA₃.H]I.LI# +1/3 +SILA₃ +ZI₃ +{giš}EREN# +1/3 +SILA₃ +{šim}LI# +1/3 +SILA₃ +I[M.D]I +1/3 +SILA₃ +{giš}si-hu +1/3# +S[ILA₃ +{giš}ar₂?-ga?-a]n?-nu +[... +DUH.ŠE].GIŠ#.I₃ +ZI₃ +G[U₂].GAL# +Z[I₃ +MU]NU₆ +DIDA +ŠEG₆.GA₂ +ŠU#.TI# +[... +SIL]A₃ +ŠU#.TI +ina +A +GAZI#{sar} +SILA₁₁-aš +SAR-ab +[LA]L +[DIŠ +NA +MURUB₄ +UGU-šu₂] +GIR₂#.GIR₂#-su# +SIG₂ +SAG.DU-šu₂ +GUB.GUB-za +{giš}GUR₂.GUR₂ +{g[iš}x +x] +[x +x +x +x +x +x] +SUD₂# +ina +{urudu}ŠEN.TUR +tu-ba-har +SAG.DU-su +[x +x] +[x +x +x +x +KAŠ +ṭi?-ṭ]i? +I₃.NUN.NA +ina +IZI +ŠEG₆-šal +[x +x] +[x +x +{šim}]GUR₂#.GUR₂# +{š[im}LI? +{ši]m}MUG# +{šim}ŠEŠ +KAŠ +ṭi-ṭi +I₃.NUN.NA +ina +IZI +ŠEG₆-[šal +x +x] +1?# +NINDA# +IM.BABBAR +NA[GA.SI +IN.GUN₃ +ki]b-rit +GIR₃.PAD.DU# +LU₂.U₁₈.LU +GIR₃.PAD.DU +Š[AH? +x +x] +I₃.HUL +I₃ +KU₆ +DIŠ-niš +[HI.HI +i]na +NE +{giš}KIŠI₁₆ +SAG.DU-su +[tu-qat-tar] +EN₂ +sag-ki-ni +sag-k[i +he₂-en-gi₄-g]i₄ +i-bi₂-ni +i-bi₂ +he₂-[en-gi₄-gi₄] +mu-ru-ub-bi-n[i +mu-ru]-ub#-bi +he₂-en#-g[i₄-gi₄] +he₂-en-da-a-na-mu[l-la +he₂-en-d]a-a#-na#-mul-la +[TU₆ +EN₂] +KA.INIM.MA +[DIŠ +NA +MURUB₄ +UG]U-šu₂ +u₂-zaq#-qat#-[su] +KID₃.KID₃.BI +BAR +MUŠ +tur-a[r₂ +x +x +x +x +E]N₂ +ŠID-nu +UGU-[šu₂ +x +x +x] +EN₂ +me +kug-ga +ba-da-r[a-ah +ba-da-r]a-ah +me +kug-ga +[iz-zi] +me +zi-zi +me +še-ra-š[e-ra? +x +x +x +hu-luh-h]a +gi₄-gi₄ +[TU₆ +EN₂] +EN₂ +KA-šu +GIM +KA +la +[x +x +x +x +x +x +GI]M +KA-šu +ne +x +[x] +x +[TU₆ +EN₂] +[...] +ana# +MURUB₄ +U[GU-š]u₂ +ŠID-[nu] +[...] +x +x +[(x)] +x +{u₂}KUR.[RA?] +[... +SAR]-ab# +[LAL]-ma# +UD.3.KAM₂ +NU +[DU₈] +ana# +K[I +MIN +... +ina +A +GAZ]I{sar} +SILA₁₁-aš +LAL₂-su-ma +x +[x +x] +ana +KI +MIN +{u₂#}x +[...] +x +su-pa-la₁₂ +ina +KAŠ +ta-la₃-a[š +x +x] +ana +KI +MIN +sah-le₂-e# +[... +ni-ki]p-ta₅ +ZI₃ +ŠE.SA.A +DIŠ-niš +GAZ# +SIM +ina +KAŠ +S[ILA₁₁ +x +x] +ana +KI +MIN +1/3 +SILA₃ +sah?#-[le₂-e +... +SIL]A₁₁-aš +SAR-ab +[x +x] +ana +KI +MIN +1/2 +SILA₃ +[... +S]ILA₁₁-aš +SAR-ab +[x +x] +ana +KI +MIN +1/3 +SI[LA₃ +... +GA]Z +SIM +ina +A +GAZI{sar#} +SILA₁₁#-aš +SAR-ab +[x +x] +ana +KI +MIN +{ši[m} +...] +ina +A +GAZI{sar#} +SILA₁₁#-aš# +[x +x] +ana +KI +MIN +[...] +ina +KAŠ +SILA₁₁-aš# +SAR#-ab +[x +x] +ana# +K[I +MIN +... +in]a +A +GAZI{sar} +SILA₁₁-aš +SAR-ab +L[AL?] +[ana +KI +MIN +...] +ina +A +GAZI{sar} +SILA₁₁-aš +SAR-ab +[x +x] +[ana +KI +MIN +...] +ina +A +GAZI{sar} +SILA₁₁-aš +SAR-ab +[x +x] +[ana +KI +MIN +...] +ina +šur-šum-mi +KAŠ +SILA₁₁#-aš +SAR#-ab +[x +x] +ana# +[KI +MIN +x +x +x +x +x +x +x +t]u-šam-maṭ +ina +A +GAZI{sar} +LUH-si +1/3 +SILA₃ +{giš}MAŠ.H[UŠ] +1/3?# +[SILA₃? +x +x +x +x +x +GA]Z +SIM +ina +A +GAZI{sar} +SILA₁₁-aš +SAG.DU-su +u +GABA-su +LAL +ana +K[I +MIN +x +x +x +x +x +Z]I₃.KUM +HI.HI +ina +A +GAZI{sar} +SILA₁₁-aš +LAL# +ana +K[I +MIN +x +x +x +x +Z]I₃.KUM +ina +A +GAZI{sar} +ta-la₃-aš +SAR-ab +LAL-ma +UD.3.KAM₂ +NU +DU₈ +ana +K[I +MIN +x +x +x +{giš}HA.L]U.UB₂ +2 +SILA₃.TA.AM₃ +HI.HI +ina +A +GAZI{sar} +u +KAŠ +SILA₁₁-aš +KI +MIN +ana +KI +[MIN +x +x +x] +{u₂#}su-pa-lu +ina +I₃ +sir₂-di +u +A +GAZI{sar} +SILA₁₁-aš +KI +MIN +DIŠ +N[A +SAG.DU]-su +KUM₂.KUM₂-im +SAR#-ab +ZI₃ +ZIZ₂.AN.NA +ina +A +GAZI{sar} +SILA₁₁-aš +UD.15.KAM₂ +UD.5.KAM₂ +LAL₂ +ana +K[I +MIN +IM.G]U₂ +UD.DA +SA₂.SA₂ +GAZ# +SIM +ina +A +GAZI{sar} +SILA₁₁-aš +UD.3.KAM₂ +LAL₂ +DIŠ# +[ina? +qer?-b]it? +SAG.DU-šu₂ +MU]RUB₄ +SAG.DU-šu₂ +u₂-ba-na#-tu +uṣ-ṣa +rib-ki +ina +A +GAZI{sar} +SILA₁₁-aš +I₃ +EŠ-MEŠ +LAL +a[na +KUM₂ +SA]G.DU +šu-ut-bi-i +ŠIK[A +I]M.ŠU.RIN.NA +ZI₃.KUM +ina +A +GAZI{sar} +SILA₁₁-aš +SAG.DU-su +LAL +[ana +KI +MIN +sah-le₂]-e +bu-ṭu-ta₅ +ZI₃ +ŠE.SA.A# +ina# +A# +GAZI#{sar} +SILA₁₁-aš +LAL +ana +KI +MIN +sah-le₂-e +{šim}LI +ina +A +GAZI{sar} +SILA₁₁-aš +LAL +a[na +KI +MIN +x +x] +x +HAD₂.DU +GAZ +SIM +ina +A +GAZI{sar} +SILA₁₁-aš +LAL +a[na +KI +MIN +DE₃ +ṣa]r-ba#-te +ina +A +GAZI{sar} +SILA₁₁-aš +LAL +ana +KI# +MIN# +[{u₂}hal]-tap-pa-na₇ +GURUN +{giš}MAŠ.HUŠ +ina +A +GAZI{sar} +SILA₁₁-aš +LAL +[ana +KI +MIN +{u₂}GEŠTIN +K]A₅.A +HAD₂.A +SUD₂ +ina +A +GAZI{sar} +SILA₁₁-aš +LAL# +ana# +[KI +MIN] +{u₂#}MA₂.ERIŠ₄.MA₂.RA +ina +A +GAZI{sar} +SILA₁₁-aš +LAL +[ana +KI +MIN +x +x] +x +{u₂}ZA.B[A.LAM] +ina +A +GAZI{sar} +SILA₁₁-aš +LAL +ana# +K[I +MIN +...] +DE₃ +ṣar-ba-te +ina +A +GAZI{sar} +SILA₁₁-aš +LAL +a[na +KI +MIN +... +{š]im}GUR₂.GUR₂ +ina +A +GAZI{sar} +SILA₁₁-aš +LAL +a[na +KI +MIN +... +ZI₃.KU]M +HI.HI +ina +A +GAZI{sar} +SILA₁₁-aš +LAL +a[na +KI +MIN +...] +ZI₃#.KUM# +HI.HI +ina +A +GAZI{sar} +SILA₁₁-aš +LAL +a[na +KI +MIN +... +ina +A +GAZI{sa]r} +SILA₁₁-aš +LAL +ana +KI +MIN +qi₂-lip +še-el-le-be₂-nu +ina +A +GAZI{sar} +SILA₁₁-aš +LAL +a[na +KI +MIN +... +DE₃ +ṣa]r-ba-te +ina +A +GAZI{sar} +SILA₁₁-aš +LAL# +a[na +KI +MIN +...] +ina +A +GAZI{sar} +SILA₁₁-aš +LAL +D[IŠ +...] +SAG#.DU-šu₂ +i-šah-hu-uh +ZI +SAG.KI +TUKU.TUKU +1 +G[IN₂? +...] +SAG#.DU-su +SAR-ab +tu-kaṣ₃-ṣa +LAL-ma +UD.3.KAM₂ +NU +DU₈ +ana +KI +MIN# +[...] +ZI₃# +{giš}ŠUR.MIN₃ +10 +GIN₂ +ZI₃ +{giš}MAN.DU +10 +GIN₂ +ZI₃ +{šim}LI +10 +GIN₂ +ZI₃ +{šim}GUR₂.GUR₂ +10 +GIN₂ +ZI₃ +G[AZI{sar} +10 +GIN₂ +Z]I₃ +GU₂#.GAL +10 +GIN₂ +ZI₃ +GU₂.TUR +10 +GIN₂ +BAR +ZU₂.LUM.MA +10 +GIN₂ +ZA₃.HI.LI +10 +GIN₂ +DIDA# +SIG₅# +10 +GIN₂ +ZI₃ +MUNU₆ +DIŠ-niš +HI.HI +ina +KAŠ +SILA₁₁-aš +GUR-ma +HAD₂.A +GAZ +SIM +SAG#-ka +u₂-kal +ina +ŠA₃ +1/3 +SILA₃ +TI-qe₂ +ina +A +GAZI{sar} +SILA₁₁-aš +SAR-ab +LAL-ma +KI +MIN +[ana +KI] +MIN +ZA₃.HI.LI +ARA₃-ti₃ +{šim}GUR₂.GUR₂ +NAGA.SI +DIŠ-niš +SUD₂ +ina +KAŠ +SILA₁₁-aš +SAR-ab +KI +MIN +[ana +KI +MI]N +{šim}GUR₂.GUR₂ +{šim}LI +{šim.d}NIN.URTA +NUMUN +{u₂}AB₂.DUH +KA +A.AB.BA +{šim}ŠEŠ +DIŠ-niš +SUD₂ +ina +KAŠ +SILA₁₁-aš +SAR-ab +KI +MIN +[ana +KI +MIN +{š]im}GUR₂.GUR₂ +{šim}LI +ILLU +{šim}BULUH +ZU₂.LUM +I₃.UDU +ELLAG₂ +UDU.NITA₂ +DIŠ-niš +SUD₂ +ina +KUŠ +SUR-ri +SAR-ab +KI +MIN +[DIŠ +NA +SAG.D]U-su +UD.DA +TAB-ma +u +SU-šu₂ +GU₇-šu₂ +SAG.DU-su +nu-pu-uh +PA +{giš}MES.MA₂.GAN.NA +[x +x +x +S]IM +ZI₃ +GU₂.GAL +ZI₃ +GU₂.TUR +ZI₃ +{še}IN.NU.HA +DIŠ-niš +ina +šur-šum-mi +KAŠ +SILA₁₁-aš +SAR-ab +KI +MIN +ana# +KI +[MIN +DUH.ŠE.GI]Š.I₃# +HAD₂.A-ti +{šim}GUR₂.GUR₂ +{šim}LI +ZI₃.KUM +ina +šur-šum-mi +KAŠ +SILA₁₁-aš +SAR-ab +KI +M[IN] +ana +KI# +MIN# +[x +x +{gi]š}HAR.HAR +{šim}GUR₂.GUR₂ +{šim}LI +ZI₃.KUM +ina +KAŠ +SILA₁₁-aš# +SAR#-ab# +[KI +MIN] +ana +KI +MIN +{u₂#}LAL# +HAD₂#.A# +SUD₂# +ina# +A +ŠED₇ +SILA₁₁-aš +SAR-a[b +KI +MIN] +DIŠ +NA +SAG.DU-su +KUM₂-ma# +SIG₂# +SAG.DU-šu₂ +i-šah-hu-uh +ana +KUM₂ +SAG.DU-šu₂# +[ZI-hi?] +u +SIG₂ +DU-ta₅ +GUB-zi +{u₂#}[ak-t]am +{u₂}ši-ma-ha +U₂ +BABBAR# +DIŠ#-niš# +SUD₂# +ina# +A# +HI#.HI# +SAG#.DU#-su +te-sir +UD.2.KAM +ina +SAG.DU-šu₂ +i-mit-ti₃?# +x +[x] +x +SAG#.DU#-su +LUH#-si +NUMUN +{giš}bi-ni +{u₂}kam₂-ka-da +{u₂}NIG₂.GAN₂.GAN₂ +{u₂}NIG₂.GIDRU +ŠIKA +NU[NUZ +GA.NU₁₁]{mušen#} +DIŠ-niš +SUD₂ +ina +I₃ +HI.HI +SAG.DU-su +ŠEŠ₂-aš +EN₂ +munšub₂ +al-dub₂#-b[a] +munšub₂ +al-kalag-ga +munšub₂ +al-keš₂-da-keš₂-da# +munšub₂ +nig₂-gub-ba +TU₆ +EN₂ +KA.INIM.MA +SIG₂ +SAG.D[U] +NIG₂.GUB.BA +KEŠ₂.DA.KAM₂ +DU₃.DU₃.BI +{na₄}DU₈.ŠI.A +{na₄}GUG +{na₄}ZA.GIN₃ +{n[a₄}NIR₂ +{n]a₄}BABBAR#.MIN₅# +{na₄}IGI +KU₆ +{na₄}ŠUBA +{na₄}ŠUBA +A₂.ZI.DA +{na₄}ŠUBA +A₂.GUB₃.B[U +{na₄}KUR-nu +DAB +{n]a₄}MUŠ.GIR₂ +{na₄}AŠ.GI₃.GI₃ +{na₄}UGU.AŠ.GI₃.GI₃ +13 +ni-bi +an-nu-ti +ina +{sig₂}HE₂.ME.DA +E₃-a[k +ina +SIG₂-šu₂ +KEŠ₂.D]A-ma +SIG₂ +DU-tu₂ +ik-kal-la +EN₂ +at-ta +ba!#-ra-an-gi +zi-ba-a[n-gi +ba-te-gi-ra +z]i-im-ba-ra +uz-mi-ia-aš +pa-at-ri +un-da-kur-ra +he₂-e[n?-n]a? +h[e₂-min-na +pa-ri]-ša₂# +TU₆ +EN₂ +KID₃.KID₃.BI +7 +ha-ru-be₂-e +ša₂ +{im}SI#.SA₂# +TI-qe₂ +ina +IZI +ur-ba#-te# +tur#-ar₂# +ina +I₃ +HI.HI +EN₂ +7-šu₂ +ŠID-nu +3-šu₂ +ŠEŠ₂-su +3-šu₂ +ta-hal#-l[a-s]u +e-nu-ma +ta-hal-la-ṣu-šu₂ +EN₂ +3-šu₂ +ana +UGU# +SAG#.DU-šu₂ +ŠID#-nu# +EN₂ +i-bi +gi +i#-bi# +gi# +he₂-en-z[alag₂-g]e +sag-ki +zi₂ +sag-ki +zi₂ +he₂-en-zalag₂-ge +sag-ki +iz +sag#-ki# +iz# +he₂-en-zalag₂-g[e] +še-er +zi +he₂#-e[n-zalag₂-g]e +ma-al-la₂ +i-di +mu-ra-an-gub +hul-bi +hul-hul +EN₂ +KID₃.KID₃#.[BI +SA]G.DU# +BURU₅# +K[UR.RA +S]AG.DU +IGIRA₂{mušen} +SAG.DU +BURU₅.HABRUD.DA +NITA₂ +{giš}U₄.HI.IN +{giš}GIŠIMMAR# +x +x +[x +x +x +x +x +E]N₂ +3-šu₂ +ana +ŠA₃ +ŠID-nu +EŠ-MEŠ-su-ma +SIG₂ +DU-tu₂ +ik-kal-la +lu +ša₂ +NITA₂ +lu +[ša₂ +MUNUS] +[x +x +x +x +x +x +š]u-gi# +lil +šu-gi +e-ne +šu-gi +[KID₃.KID₃.BI +7 +ha-ru-b]e₂-e +ša₂ +{im}SI.SA₂ +TI +ina +IZI +tur-ar₂ +ina +I₃ +{giš}ŠUR.MIN₃ +MUD₂ +{giš}EREN +HI.HI +EŠ-MEŠ-su-ma# +SI#.SA₂#-im# +[EN₂ +MU.UL.LU.U +HU]L.A +ša₂ +GAL₂-ma +DINGIR +ṣi-ir-ta +[ma-ni-ir-ra-an-n]i +ha-ba-re-eš +ma-ni-ir-ra-an-ni +hal-hal-la-ta +la-gu +DIM₂-ma +TI.LA.ŠE₃# +[x +x +ma +u-ba-n]a-aš +du-ru-na-aš +hu-ri-na-ah +mu-un-di-hu-na +ha-at-tu-uk +TU₆ +EN₂ +[KA.INIM.M]A +SIG₂ +KEŠ₂.DA.KAM₂ +DIŠ +NA +SIG₂ +TE-MEŠ-šu₂ +ma-gal# +i-šah-hu-uh +NA +BI +DINGIR-šu₂ +{d}iš₈-tar₃-šu₂ +KI-šu₂ +ze-nu-u +KID₃.KID₃.BI +ana +IGI +MUL +mah-re#-e# +KEŠDA +KEŠDA +ZU₂.LUM.MA +{zi₃}EŠA +DUB-aq +NINDA.I₃.DE₂.A +LAL₃ +I₃.NUN#.NA# +GAR#-an# +{udu}SISKUR +DU₃-uš +{uzu}ZAG +{uzu}M[E.HE₂ +{u]zu}KA.NE +tu-ṭah-ha +KAŠ +BAL-qi₂ +GIŠ.GAN₂ +{giš}MA₂#.EREŠ₄#{eš}.MA₂-le-e +U₅ +ARGAB{mušen} +{u₂}IGI.NIŠ +{u₂#}[IGI?-lim? +Š]E₁₀ +MA₂#.LAH₅ +KI +I₃ +HI#.HI# +ina# +IGI# +MUL +GAR-an +EN₂ +an-ni-ta₅ +3-šu₂ +ŠID-nu +at-ta +MUL +mu-nam-mir +x +[x] +x +x +x +x +qe₂-reb +AN-e +ha-iṭ +UB-MEŠ +ana-ku +NENNI +A +NENNI +ina +GE₆ +an-ne₂-e# +IGI-ka +kam₂-sa-ku +di-ni +di-in +EŠ.BAR-a-a +TAR-us +U₂.HI.A +ŠEŠ-MEŠ +lip-si-su# +lum-ni +A₂.GU₂.ZI.GA +ZALAG-ma +TE-MEŠ-šu₂ +ta-kar +ana +KI +MIN +GIŠ.GAN₂ +{giš}LU₂-a-nu +{u₂#}eli#-kul-la +{u₂}kur-ka-na-a +ša₂# +KUR# +ni#-kip#-ta₅?# +ina# +KUŠ?# +{munus#}AŠ₂#.GAR₃# +GIŠ₃.NU.ZU +ina +GU₂-šu₂ +GAR#-an# +6 +KA.INIM.MA# +SIG₂ +KEŠ₂.DA.KAM# +DIŠ +NA +UGU-šu₂ +A +u₂#-[kal +in]a +ŠU.SI-ka +GAL-ti +a-šar +A-MEŠ +u₂-kal-lu +TAG.TAG-at +šum-ma +UZU.GIŠ-šu₂ +be₂-eʾ#-š[at +A +ša +gul-gu]l-li-šu₂ +it-tar-du +BAD-ma +gul-gul-la-šu₂ +te-ser-rim +A +ša +gul-gul-li-šu₂ +tu#-[še?-lam? +TUG₂ +SIG +A +LU]H-si +I₃.GIŠ +SUD +ana +UGU +GIG +GAR-an +KU.KU +GIŠ.KIN₂ +ŠE₁₀ +BAHAR₂ +SUD₂ +ana +UGU +GIG +[MAR +UD.3?.KAM +LAL +DU₈-m]a +TUG₂ +SIG +A +LUH-si +I₃.GIŠ +SUD +ana +UGU +GIG +GAR-an +{tug₂}na-al-ti-ip-ti +[x +x +x +x +x +UD].2?#.KAM +LAL +DU₈-ma +TUG₂ +SIG +A +LUH-si +I₃.GIŠ +SUD +ana +UGU +GIG +GAR-an +[x +x +x +x +x] +x +GAZI{sar} +BIL₂-ti +KI +ZI₃ +ŠE.SA.A +HI.HI +ana +UGU +GIG +MAR +UD.1.KAM +LAL +DU₈-ma +[x +x +x +x +{ši]m}LI +GAZ +KI +ZI₃.KUM +HI.HI +ina +A +GAZI{sar} +SILA₁₁-aš +LAL +IGI +GIG +tu-gal-lab +EN +TI.LA +LAL₂ +x +[x] +x +šum₄-ma +TAG-ma +UZU.GIŠ-šu₂ +la +be₂-eʾ-šat +ana +li-mit +SAG.DU-šu₂ +NE +NA₄-MEŠ +GAR-an +EN₂ +ur#-ba#-tu₄ +ur-ba-tu₄ +ur-ba-tu₄ +sa-am-tu₄ +ZI-am-ma +ur-pa-ta +SA₅ +ik-tum₃ +IM.ŠEG₃ +SA₅ +ZI-ma# +KI-tu₂ +SA₅-tu₄ +ir-hu +A.ZI.GA +SA₅ +ZI-ma +ID₂ +SA₅-tu₄ +im-la +{lu₂}ENGAR +SA₅ +{giš}MAR# +SA₅ +{giš}DUSU +SA₅ +IL₂-ši-ma# +A-MEŠ +SA₅-MEŠ +li-is-kir +{giš}IG-ma +SA₅ +{giš}SAG.KUL-mi +S[A₅] +KA₂#-šu₂-nu +ed-la# +man-nu-um-ma +ša₂ +i-pe-et-ta-ku-nu-ši +i-ri-iš +ma-ra +i-ri-iš +ma-ra +TU₆ +EN₂ +KA.INI[M.MA +A.MEŠ +SAG.DU] +la# +ik#-kal-lu-u₂ +DU₃#.DU₃#.BI +hal-lu-ta-na-a +ša₂ +GIR₃ +E[ME₃ +x +x +x +x] +NIGIN#-mi +ana +ŠA₃ +he-pe-e-ti +GAR-an +EN₂ +7-šu₂ +ŠID-nu +ina +TUG₂ +ta-pa-ti₄-iq +[x +x +x +x] +NU#.NU +7 +KA.KEŠDA +KEŠDA +e-ma +KEŠDA +EN₂ +ŠID-nu +ina +SAG.KI-šu₂ +ta[ra-kas₂-ma] +ina-eš +DIŠ +NA +SAG.DU-su +A +u₂-kal +e-le-nu +da-d[a-ni-šu₂ +x +x +x +x +{giš}ER]EN? +hum-ṭam₂ +GAR-an-ma +A-šu₂ +ub-bal +DIŠ +NA +ab-bu-ut-ta-šu₂ +A +u₂-kal +kal +UD# +[x +x +x +x] +ina# +UD.7.KAM +LAL +ina +UD.8.KAM +ab-bu-ut-ta-šu₂ +3-šu₂ +t[e-ser?-rim? +ka-a]-a#-na-am +LAL₂ +DIŠ +NA +SAG.DU-su +še-ha +u₂-kal +[{giš}EREN? +hu]m?-ṭam₂?# +GAR-an +DIŠ +NA +SAG.DU-su +it-te-ne₂-ba-aš-šum +{n[a₄}mu-ši-tu₄ +{na₄}MU]Š.GIR₂# +{na₄}DAG.GAZ +{na₄}GUG +mar-ha-ši +{na₄}ZU₂ +GE₂ +{na₄}NIR₂ +{na₄}AN.ZA.GUL#.ME# +[{n]a₄}AMAŠ.PA.E₃ +8 +NA₄-MEŠ +an-nu-ti +ina +{sig₂}HE₂.ME.DA +SIG₂# +BABBAR +NU.NU +[E₃ +ina] +SAG.KI-MIN-šu₂ +tara-kas₂-ma +ina-eš +DIŠ +NA# +SAG#.DU#-su# +[ik-ta-n]a-aṣ-ṣa +{šim}GUR₂.GUR₂ +{š[im}L]I +{šim}MAN.DU +ŠIM.ŠAL +{šim}BAL +[x +x +x +x +x +x +{gi]š}EREN.SUMUN +{giš}si-hu +{giš}ar₂#-[gan]-nu +{u₂}ba-ri-ra-ta₅ +GI +DU₁₀ +[ana +KI +MIN +x +x] +x +ina +I₃.UDU +ELLAG₂ +UDU.NITA₂ +ša₂ +MUN +NU +ŠUB-u +ina +MUD₂ +{gi[š}ER]EN +SUD₂ +ina +KUŠ +SUR-ri +SAG.DU-su +LAL +[ana +KI +MIN +bu?-ṭu?]-ut?#-tu₄ +{šim}BULUH +{u₂}kur-ka-nu-u +qu#-ta#-ru +ša₂ +SAG.DU +[nap-šal-ti +SA]G.DU# +PIŠ₁₀.{d}ID₂ +BABBAR +u +GE₆ +ni-kip-ta +NITA₂ +u +MUNUS +{na₄}mu-ṣa# +[x +x +x +x +x +K]A +A#.AB#.BA# +[NUMUN +{giš}bi-n]i +SI +DARA₃.MAŠ +gul-gul +NAM.LU₂.U₁₈.LU +U₂-HI-A +an-nu-ti +TEŠ₂.BI +S[UD₂ +x +x +x +x +x +x] +[x +x +x] +SAG.KI-MEŠ-šu₂ +[x +x +x] +[qu₅-tar₅ +S]AG.DU +{u₂}KUR.KUR +PIŠ₁₀.{d}ID₂ +{u₂}kur-ka-na₇ +n[i-ki]p-ta# +[NITA₂ +u +MUNUS] +[DIŠ-niš +tu-d]ak-kak +ina +MUD₂ +{giš}EREN +HI.HI +ina +NE# +tu-qat#-tar#-šu# +[DIŠ +NA +SAG.D]U-su +GIG +{u₂}ṣa-ṣu-um-ta₅ +{u₂}MUR.DU₃.DU₃ +{u₂#}pi-<>-zer +[x +x +x +SI]G₇?-su +DIŠ-niš +SUD₂ +ina +A +GAZI{sar} +SILA₁₁-aš +SAG.DU-su +SAR-ab# +LAL-ma +UD.3.KAM₂ +NU +DU₈ +[DIŠ +NA +SAG.DU-s]u +DUGUD +{šim}GUR₂.GUR₂ +{šim}LI +{u₂}KUR.KUR +{šim}ŠEŠ +[KI +IL]LU +{šim}BULUH +[x +x +x +ELL]AG₂ +GUD +HI.HI +ina +KUŠ +SUR-ri +SA[R-ab +UD].5?#.KAM₂ +LAL₂ +[ana +KI +MIN +x +x +x] +x +15# +u# +150 +3.TA.AM₃ +te#-s[er?-rim? +x +x +x +ina +A +GAZI{s]ar} +SILA₁₁-aš +I₃ +ŠEŠ₂ +LAL +[... +an]a +SAG#.DU#-[šu₂ +... +DUGUD-m]a +ina +ZI-šu₂ +SAG.DU-su +[... +{na₄}N]A.ZA₃.HI.LI +SUD₂ +[... +SAG.D]U-šu₂# +i-tel-li +[ana +KI +MIN +... +HI.H]I +SAG.DU-su +EŠ-MEŠ +DIŠ# +NA# +[...] +im +HAD₂.A +GAZ +SIM +KI# +[... +LAL-s]u-ma +UD.3.KAM +NU +DU₈ +DIŠ +NA +SAG.D[U-su +... +IGI-š]u₂ +GID₂.DA-su +ŠU-MIN-šu₂ +u +GIR₃-MIN-š[u₂ +... +šim-m]a-ta₅ +TUKU-M[EŠ +ana +TI-šu₂ +{š]im}GUR₂.GUR₂ +{šim}LI +{u₂#}[KUR.KUR +...] +{giš#}ILDAG₂ +GAZI{s[ar} +Z]I₃ +ŠE.SA.A +DIDA +S[IG₅ +... +in]a +A +GAZ{sa[r} +S]ILA₁₁-aš +SAG.DU-s[u +... +LAL₂-m]a +UD.7.KAM₂ +NU +DU₈ +ana +KI +MIN +{u₂}x +[... +ŠEŠ₂?]-MEŠ#-ma +ina-eš +DIŠ +NA +MURUB₄ +SAG.[DU-šu₂ +...] +i#-ta-na-ah +GAZ +ŠA₃ +TUKU-MEŠ-ši +EL[LAG₂?-šu₂ +... +i]k-ta-ner-ru +ana +GIG +Z[I-hi +... +DID]A +SIG₅?# +GAZI#{sar} +ZI₃ +ŠE.S[A.A +... +LAL]-id +[...] +x +[...] +[...] +[...] +[...] +x +[... +in]a? +A?# +G[AZI?{sar} +SILA₁₁-aš? +...] +ana# +[KI? +MIN? +...] +x +{giš}ŠINIG +NUMUN# +{u₂#}A[B₂?.DUH +...] +x +[... +K]AŠ.SAG +lu +ina +GEŠTIN +NAG# +[...] +D[IŠ +NA +SAG.K]I.DAB#.BA# +TUKU.TUKU +NUMUN +{u₂#}UKUŠ₂#.HAB# +[DUB +1.KA]M₂ +DIŠ +NA +UGU-šu₂ +KUM₂ +u₂-kal +E₂.GAL +{m}AN.ŠAR₂-DU₃#-A +LUGAL +ŠU₂ +MAN +KUR +AN.ŠAR₂{ki} +ša +{d}AG +u +{d}taš-me-tu₄# +GEŠTU-MIN +ra-pa-aš₂-tu +iš-ru-ku-šu₂ +e-hu-uz-zu +IGI#-MIN# +na-mir#-tu +ni-siq +ṭup#-šar-ru-ti +ša +ina +LUGAL-MEŠ-ni +a-lik +mah-ri-i[a +ma]m₂-ma +šip-ru +šu-a-tu +la +i-hu-uz-zu +bul-ṭi +TA +muh-hi +EN +UMBIN +liq-ti +BAR#-[MEŠ +ta-h]i-zu# +nak#-la# +a#-zu#-gal#-lu#-ti# +{d#}nin#-urta# +u +{d}gu-la +ma!-la +ba-aš₂-mu +ina +ṭup-pa-a-ni +aš₂-ṭur +as-niq +IGI.KAR₂-ma +a-na +ta-mar-ti +ši-ta-si-ia +qe₂-reb +E₂.GAL-ia +u₂-kin +[DIŠ +NA +x +x] +x +u₂#-tan#-ne₂#-eh#-šu₂# +x +[...] +[{u₂}I]GI-lim +{u₂}IGI.NIŠ# +[...] +[DIŠ +KI +MIN] +{u₂#}HAR.HAR +{u₂}ur₂-ne₂-e +{ši[m}...] +[DIŠ +KI +MIN] +{u₂#}HAR.LUM.BA.ŠIR +[...] +[DIŠ +N]A +SAG +ŠA₃-šu₂ +u₂-ṣar-rap-šu₂ +na-piš +KIRI₄-šu₂ +DUGUD# +NA# +[BI +...] +DIŠ# +NA +SAG +ŠA₃-šu₂ +i-ha-maṭ-su +i-dak-ka-su +UH₂-su# +x +[...] +UD#.DA# +SA₂.SA₂ +I₃.GIŠ +BARA₂.GA +ina +A +NU +pa-tan +NAG.NAG-šu₂ +[...] +{šim#}LI +{šim}GUR₂.GUR₂ +ILLU +{šim}BULUH +PA +{giš}bi-ni +PA +{u₂}IN₆.UŠ₂# +[...] +DIŠ# +NA# +MURUB₄# +MAŠ.SILA₃-MIN-šu₂ +u₂-ha-maṭ-su +KI +UH₂-šu₂ +MUD₂ +ŠUB.ŠUB +ana +UD.DA# +[...] +{šim#}LI +{šim}GUR₂.GUR₂ +ZA₃.HI.LI +[...] +PA# +GI#.ZU₂.LUM.MA +IM.GU₂.EN. +GAZ +ina +KAŠ +SILA₁₁-aš +x +[...] +DIŠ# +NA# +NINDA +GU₇ +KAŠ +NAG-ma +SAG +ŠA₃-šu₂ +i-kaṣ₃-ṣa-su +ŠA₃-šu₂ +MU₂.M[U₂ +...] +[UD].DA# +SA₂.SA₂ +{u₂}ak-tam +{u₂}IGI-lim +{u₂}tar-m[uš +...] +[DIŠ +KI +MIN] +I₃#.GIŠ +BARA₂.GA +EME-šu₂ +DAB-bat +[...] +[DIŠ +NA +it-ta]-na#-ša#-aš# +a#-šu#-uš#-tu₄# +ŠUB#.ŠUB#-[su +x +x +x +x +x +x +x +x +x +x +x +x +x] +[UD.DA +SA₂.S]A₂ +{giš}GEŠTIN +KA₅.A +SUD₂ +ina +KAŠ +NAG +UZU +GUR₄#.RA# +GU₇# +{š[im}LI +{š]im}HAB# +ina# +KAŠ# +NAG# +ina# +KAŠ# +ŠEG₆#-šal# +ana# +DUR₂#-[šu₂ +DUB] +[DIŠ +KI +MIN +GE]ŠTIN +KA₅.A +SUD₂ +ina +KAŠ +NAG +IM.GU₂.EN.NA +A.GAR.GAR +MAŠ.DA₃ +PA +{giš#}KIŠI₁₆#-ha-ah +PA +GI.ZU₂.LUM.M[A] +[g]u-ur +GI.ŠUL.HI +ZI₃ +GIG +DUH.ŠE.GIŠ.I₃ +ta-sak₃ +ina +KAŠ +ta-la₃-aš +ina +TUG₂ +te-ṭer-ri +L[AL] +[DIŠ +KI +MI]N +{u₂}ak-tam +SUD₂ +ina +KAŠ.SAG +NAG# +[DIŠ +NA +i]t-ta-na-ša-aš +a-šu-uš-tu₄ +ŠUB.ŠUB-su +di-ik-ša +TAG.TAG-su +UH₂-šu₂ +ma-a-da# +[NAG].NAG +UD.DA +SA₂.SA₂ +{u₂}IGI-lim +{u₂}šiz-ba-na₇ +{šim}ŠE.LI +BABBAR +SUD₂ +ina +KAŠ# +N[AG] +[DIŠ] +NA# +NINDA# +GU₇# +KAŠ +NAG-ma +ŠA₃-šu₂ +in-nin-me-er +nap-hu +A +ma-gal +NAG +UD.DA +SA₂.SA₂ +{u₂#}[IGI-lim] +[{u₂}]IGI-NIŠ +{u₂}tar-muš +{šim}GAM.MA +{u₂}ti-ia₂-ta₅ +{u₂}HAR.HAR +SUD₂ +ina +KAŠ +NU +pa-t[an +NAG] +[IM].GU₂#.EN.NA +A.GAR.GAR +MAŠ.DA₃ +{šim}LI +{šim}GUR₂.GUR₂ +ZA₃.HI.LI +PA +{gi[š}GEŠ]TIN +K[A₅.A +x +x +x] +[g]u-ur# +{giš}GI.ŠUL.HI +ZI₃ +GIG +DUH.ŠE.GIŠ.I₃# +SUD₂# +ina +KAŠ +SILA₁₁-aš# +i[na +TU]G₂ +SUR#-r[i +LAL-su-ma +TI] +[{u₂}a]k-tam +SUD₂ +ina +KAŠ +NAG +UZU +GUR₄.RA +GU₇ +ŠA₃-šu₂ +i-ar₂#-[ru₃ +x +x +x +SU]D₂ +ina +KAŠ +NAG +{u₂#}IGI#-lim# +SUD₂# +[ina +I₃.GI]Š +BARA₂.GA +NAG +IM.GU₂.EN.NA +SUD₂ +ina +KAŠ +NA[G +{u₂}ti]-ia₂#-ta₅ +SUD₂ +ina +KAŠ +NAG +[DIŠ] +NA# +NINDA +GU₇ +KAŠ +NAG-ma +ŠA₃-šu₂ +in-nim-me-ru +nap-hu +[A +ma-gal +NA]G +UD.DA +SA₂.SA₂ +GURUN# +UKUŠ₂.HAB +EN +la +uk-tap-pi-tu +HAD₂#.DU# +[ta-sa]k₃ +ina +KAŠ +NAG +{u₂#}KUR.RA +SUD₂ +ina +KAŠ +NAG +{u₂}HAR#.[LU]M.BA.ŠIR +SUD₂ +ina +KAŠ +NAG +[DI]Š +NA +NINDA +GU₇ +KAŠ +NAG-ma +ŠA₃-MEŠ#-šu₂# +in-nim-me-ru +KAŠ₃-MEŠ#-šu₂ +DAB.DAB-at +UD.DA +SA₂.SA₂ +[GU]RUN +UKUŠ₂.HAB +EN +la +uk-tap-pi-tu +HAD₂.DU +ta-sak₃ +ina +KAŠ +NAG +[DIŠ +N]A +NINDA +GU₇ +KAŠ +NAG-ma +ŠA₃-šu₂ +in-nim-me-ru +in-ne₂#-bi-ṭu₂ +ri-du-ut +ir-ri +TUKU +UD.DA +SA₂.SA₂ +ina +x +[...] +DIŠ +NA# +[...] +x +[...] +[x] +šu₂ +i +x +[...] +[DIŠ +NA] +mur +ti# +[...] +NA# +BI# +x +x +GIG# +[...] +{u₂}ak-tam +ina +hi-iq# +K[AŠ +...] +EGIR-nu +hi-iq +KAŠ# +x +[...] +DIŠ +KI +MIN +a-šu-uš-tu₂ +ŠUB.ŠUB-s[u +...] +ru-pu-uš-tu +NU +TUKU.TUKU#-š[i +...] +NU +GID₂#.DA# +{u₂}ap-ru-ša₂ +x +[...] +DIŠ-niš# +[x +x] +x +x +[...] +[DIŠ +NA +x +x] +ma#-gal +TUKU.TUKU# +[...] +[...] +x +x +x +[...] +DIŠ +NA +SAG.KI.DAB.BA +TUKU.TUKU-ši +NUMUN +{u₂}UKUŠ₂.HAB +NUMUN +{u₂}UKUŠ₂.T[I.G]I.LA +NUMUN +{u₂}EME +UR.GI₇ +NUMUN +{u₂}HUR.SAG +NUMUN +HAB +NUMUN +{u₂}DILI +NUMUN +kiš-ša₂-ni +GAZ# +[SIM] +mal₂-ma-liš +HI.HI +ina +A.GEŠTIN.NA +tara-bak +ZI₃ +ŠE.SA.A +ZI₃ +ZIZ₂.A.AN +a-na +IGI +ta-[ša]p-pah +ina +KUŠ +SUR +SAG.DU-su +tu-gal-lab +LAL-ma +ina-eš +DIŠ# +KIMIN# +GAZI{sar} +{u₂}AB₂.DUH +{šim}GUR₂.GUR₂ +{šim}BULUH +DUH.ŠE.GIŠ.I₃ +ša +x +[x +x +x] +ZI₃ +GIG +mal₂#-ma#-liš# +HI.HI +DIDA +SIG₅.GA +SUD₂ +ana +ŠA₃ +ŠUB +ŠEG₆.GA₂ +U₂.HI.A +an-n[u-ti +H]I.HI +tara-bak +LAL +[DIŠ +KIMIN +{giš}]EREN# +{giš}ŠUR.MIN₃ +{šim}GIR₂ +GI +DU₁₀.GA +{šim}GUR₂.GUR₂ +{ši[m}LI +{giš}ER]EN.SUMUN +{šim}MUG +[ŠIM.ŠAL +{ši]m}MAN#.DU +{šim}HAB +{šim}BULUH +ILLU +{šim}BULUH +T[EŠ₂.BI +GAZ +SIM +ina +GEŠT]IN +ŠUR.RA +tara-bak +ZI₃ +ŠE.SA.A +[ZI₃ +ZIZ₂.A.AN +ana] +IGI# +ta#-šap-pah +ina +KUŠ +SUR-ri# +[SAG.DU-su +tu-gal-l]ab +LAL-ma +TI +DIŠ# +KIMIN# +NUMUN# +{giš}IL[DAG₂] +{u₂}ak#-tam# +NUMUN# +AB₂#.[DUH +x +x +x +x] +GAZI#{sar} +NUMUN +{giš}HAB +{u₂}LAG +A.ŠA₃# +DIŠ#-niš# +[x +x +x +x +x +x +x +x +x +ŠE.SA].A +ZI₃ +ZIZ₃.A.AN +a-na +IGI +ta-šap-pa[h +x +x +x +x +SAG.DU-s]u +SAR-ab# +LAL-ma +TI +DIŠ +KIMIN +{u₂}HAR.HAR +{u₂}[KUR.KUR +x +x +x +x +{u₂}k]a-man-ti +KA# +A#.AB.BA +ZI₃# +GIG +DIDA +SIG₅ +{šim}[x +x +x +x +i]na +KAŠ +tara-bak +LAL#-ma# +TI# +DIŠ +KIMIN +{šim}GUR₂.GUR₂ +{ši[m}LI +x +x +x +NUMUN?] +{u₂#}ka-man-ti +KA +A.AB.BA +[{šim}]ŠEŠ# +ZI₃ +GIG +DIŠ-niš +GAZ +[SIM +(x +x +x)] +ina +KAŠ +tara-bak +LAL-ma +[TI] +DIŠ +KIMIN +{šim}GUR₂.GUR₂ +{šim}[LI +x +x +x +x] +DIŠ-niš +GAZ +SIM +ZI₃ +GIG +DIDA +S[IG₅?] +ina +KAŠ +ta-la₃-aš +[x +x +x +SA]G.DU-su +SAR-ab +LAL₂-ma +TI# +DIŠ +KIMIN +{šim}GUR₂.GUR₂ +{šim#}L[I +{šim.d}NIN.URT]A +NUMUN +{u₂}AB₂.DUH +KA +A.AB.BA +{šim}MUG +DIŠ-niš +G[AZ] +SIM# +ina +KAŠ +tara-bak +S[AG.D]U-su +SAR-ab +LAL-ma +TI +DIŠ# +KIMIN# +PA# +{giš}GIŠIMMAR +ša₂ +ina +N[U +I]M +i-nam-zu-zu +TI-qi₂ +ina +UD.DA +HAD₂.A +GA[Z +S]IM +ina +A +GAZI{sar} +SILA₁₁-aš +LAL +DIŠ +KIMIN +{u₂}ap₂-ru-ša₂ +SUD₂ +ina +I₃# +HI#.HI +ILLU +{giš}a-bu-ka-tu₂ +ana +ŠA₃ +ŠUB-di +EN₂ +A.RA.ŠE.RA +MIN +IZI +BIL#.LI# +NUMUN.KI.IB.GAR +7-šu₂ +u +7-šu₂ +ana +ŠA₃ +ŠID +SAG.KI-šu₂ +LAL₂ +DIŠ# +KIMIN# +{u₂#}KUR.KUR +ni-kip#-ta +ina +NE +tu-qat-tar-šu₂ +[{šim}GUR₂.GU]R₂ +ni#-kip#-ta# +{šim}LI +NUMUN +{u₂}AB₂.DUH +KA +A.AB.BA +[x +x +x +x +x +in]a +IZI +tu-ša₂-ha-an +LAL-i[d] +[x +x +x +x +x +x +x +x +KA +A.AB.B]A +UH₂.{d}ID₂ +DIŠ-niš +SUD₂# +{si[g₂}HE₂.ME.DA +x +x +x +(x +x)] +SAG.KI-šu₂ +KEŠDA-as# +DIŠ +KIMIN +ni-k[ip?-ta? +... +SA]G.KI-šu₂ +TAG.TAG# +DIŠ +KIMIN +x +[...] +HI#.HI# +SAG.KI#-šu₂# +TAG# +DIŠ +KIMIN +[10 +GIN₂ +Z]A₃.HI#.LI# +10# +GIN₂# +Š[E.SA.A +x +x +x +x +x +x] +LAL# +DIŠ# +K[IMIN +10 +GIN₂] +ZA₃.HI.LI +10 +GIN₂ +I[M.BABBAR +x +x +x +x +x +x +x +x +x +x +x +x +x] +TUKUM#.BI +LU₂.U₃ +SAG.KI +[x +x +x +x +x +x +x +x +x +x] +ina +a-ṣi-ka +ina +GUB₃-ka +GUB-zu +[x +x +x +x +x +x +x +x +x] +ina +{sig₂}HE₂.ME.DA +KEŠDA-as₂ +[x +x +x +x +x +x +x +x +x] +TUKUM.BI +LU₂.U₃ +SAG.KI +D[AB-su +x +x +x +x +x +x +x +x +x +x] +HAD₂.A +GAZ +SIM +ina +KAŠ +SILA₁₁-aš# +[x +x +x +x +x +x +x +x +x] +TUKUM.BI +LU₂.U₃# +[x +x +x +x +x +x +x +x +x +x +x +x +x] +ina +SAG.KI-šu₂ +[x +x +x +x +x +x +x] +TUKUM#.BI# +[x +x +x +x +x +x +x +x +x +x +x +x +x +x] +TUKUM#.[BI +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +ina +SAG.KI-šu₂ +[x +x +x +x +x +x] +DIŠ +LU₂ +ZI +SAG.KI +T[UKU +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +sah-le₂-e +ARA₃-ti₃ +ZI₃ +ŠE#.S[A.A +x +x +x +x +x +x +x +x +x +x +x +x +x] +DIŠ +KIMIN +PA +{giš}šu-nim +HAD₂.A +GAZ +SIM +ina +ZI₃# +G[IG +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +DIŠ +KIMIN +{giš}GEŠTIN +KA₅.A +{u₂}su-ba-lam +HAD₂.A +GA[Z +x +x +x] +KI +ZI₃ +ŠE.SA.A +ina +A +GAZ[I{sar} +x +x +x] +DIŠ +NA +ZI +SAG.KI +TUKU-ši +u +šim-ma-ta₅ +TUKU +PA +{giš}MA#.N[U +x +x +x +x +x] +sah-le₂-e +{u₂}HAR.HAR +ina +KAŠ +{lu₂}KURUN₂.NA +tara#-bak# +[x +x +x +x] +PA +{u₂}UR₂.TAL₂.TAL₂ +{giš.d}MAŠ +KA +A.AB.BA# +{u₂}HAR.HAR +{u₂}KUR.KUR +Z[I₃? +GIG?] +gu#-ur# +GI# +gu-ur +GI.ŠUL.HI +HENBUR₂ +GI +HENBUR₂ +GI.ŠUL.HI +NUNUZ +{giš}DIH₃ +NUNUZ +{giš}KIŠI₁₆# +[I₃].UDU# +UR.MAH +u₂-paṭ +{giš}KIŠI₁₆ +ša₂ +ina +UGU +KI.MAH +GUB-zu +TEŠ₂.BI +SUD₂ +ina# +I₃ +ŠEŠ₂ +NUMUN +{u₂}KI.{d}IŠKUR +DIDA +SIG₅.GA +ina +{na₄}NA.ZA₃.HI.LI +SUD₂ +ina +KAŠ +{lu₂}KURUN₂.NA +tara-bak +LAL +DIŠ +LU₂ +ZI +SAG.KI +TUKU-ma +ŠU-MIN-šu₂ +GIR₃-MIN-šu₂ +i-šam-ma-ma-šu₂ +PA +{giš}HA.LU.UB₂ +{šim#}IM.MAN.DI +{u₂}SU.AN.DAR +ZI₃ +ŠE.MUŠ₅ +ZI₃ +MUNU₆ +{u₂}HAR.HAR +{giš}GEŠTIN +KA₅.A +DIŠ-niš +GAZ +SIM +ina +šur-šum#-mi +KAŠ +tara-bak +LAL-ma +TI +PA +GI.ŠUL.HI +{šim}LI +{u₂}SU.AN.DAR +{u₂}ak-tam +{u₂}IN₆.UŠ₂ +ZI₃ +GU₂.TUR +DIŠ#-niš +GAZ +SIM +ina +šur-šum-mi +KAŠ.SAG +tara-bak +LAL₂#-ma +TI-uṭ +DIŠ +NA +SAG.KI-šu₂ +GU₇-MIN-šu₂ +ina +si-pa-ri +1-šu₂ +2-šu₂ +3-šu₂ +ta-ta[k-kip +EN? +MUD₂? +GIN?-a]k +ni-kip-ta₅ +ina +I₃ +EŠ-su +{tug₂}NIG₂.DARA₂.ŠU.LAL₂ +{na₄}mu-ṣa# +[GEŠTU? +{gi]š?}DIH₃ +SA₅! +bi-ni!? +ina +GU₂-šu₂ +GAR-an +KU.KU +{na₄}SAG#.KI# +KU#.KU# +{na₄}NIR₂ +ina +I₃# +ŠEŠ₂#-su# +ana +ZI +SAG.KI +nu-uh₂#-hi +DUH.ŠE.GIŠ.I₃ +SUMUN-MEŠ +{šim}GUR₂.GUR₂ +{šim}HAB +{šim}BULUH +GAZI{sar} +ta-pa-aṣ +DIDA +SIG₅# +ZI₃.KUM +ina +KAŠ +ŠEG₆.GA₂ +tara-bak +LAL +ana +ZI +SAG#.KI +nu-uh₂-hi +DUH.ŠE.GIŠ.I₃ +{šim}GUR₂.GUR₂ +{šim}BULUH +DIŠ-niš +GAZ +AL.U₂.SA +ZI₃.KUM +ina +KAŠ +DIŠ-niš +ŠEG₆-šal +ina +TUG₂ +SUR-ri +LAL-su-ma +TI +DIŠ +NA +SA +SAG#.KI-šu₂ +GIG +{šim}LI +{šim}GUR₂.GUR₂ +A.GAR.GAR +MAŠ.DA₃ +ZI₃ +GIG +DIŠ-niš +ina +KAŠ +tara-bak +LAL-ma +TI-uṭ +GAZI{sar} +tur#-ar₂ +ZI₃ +GIG +it-ti-šu₂ +HI.HI +ina +I₃ +u +KAŠ.SAG +tara-bak +LAL-ma +TI-uṭ +DIŠ +LU₂ +SA# +SAG.KI-šu₂ +DAB-su-ma +GU₇-MIN-šu₂ +10 +KISAL +ZI₃ +GIG +10 +KISAL +ZI₃.KUM +10 +KISAL +{šim}GUR₂.GUR₂ +10 +KISAL +GAZI#{sar} +10 +KISAL +ZI₃ +MUNU₆ +10 +KISAL +DUH.ŠE.GIŠ.I₃ +TEŠ₂.BI +HI.HI +ina +KAŠ +ta-la₃-aš +SAG.KI-šu₂ +LAL +a-na +nu!#-uh₂#-hi# +ša₂ +SA.HI.A +ŠE.SA.A +A.GAR.GAR +MAŠ.DA₃ +mal₂-ma-liš +HI.HI +ina +KAŠ.SAG +tara-bak +LAL +[DIŠ +LU₂ +SA +SAG.KI-šu₂] +DAB#-su#-ma# +GU₇-šu₂ +u₃ +i-ar₂-ru₃ +[...] +ina +KAŠ +NAG +[...] +i#-ar₂-ru₃ +ŠU.BI.GEN₇.NAM +[DIŠ +NA +...] +x +NINDA +u +KAŠ +la +i-mah-har +LU₂ +BI +DINGIR-šu₂ +iš-kun-šu₂ +[...] +x +la?#-bi-ri +te-qeb-bir-šu₂ +A +ina +UGU +TU₅ +[DIŠ +KIMIN +...] +LAL-id +SIG₂ +{munus}AŠ₂.GAR₃ +GIŠ₃.NU.ZU +{sig₂}HE₂.ME.DA +NIGIN-mi +KEŠDA +[DIŠ +KIMIN +x +x +x +x +x +x +x +MUNUS] +pa#-ri-iš-tu₂ +NU.NU +SA +MAŠ.DA₃ +KI-šu₂-nu +ta-pat-til +[x +x +x +x +x +x +x +{n]a₄}ZA.GIN₃ +{na₄}ZU₂ +GE₆ +E₃ +ina +SAG.KI-MIN-šu₂ +KEŠDA +SAHAR?# +[x +x +x +x +x +x] +ŠIKA +SILA.LIMMU₂# +ni#-kip#-ta +SUD₂ +ina +I₃.GIŠ +HI.HI +ŠEŠ₂-su +DIŠ +N[A +SAG.KI +ZAG]-šu₂# +DAB#-su#-ma# +IGI +ZAG-šu₂ +ER₂ +u₂-kal +sah-le₂-e +ZI₃ +ŠE.SA.A +L[AGAB?] +x +LAGAB# +MUNU₆# +DIŠ-niš +HI.HI +ina +A +GAZI{sar} +tara-bak +SAG.KI-šu₂ +LAL-ma +TI-uṭ +DIŠ +NA +SAG.KI +GUB₃-šu₂ +DAB-su-ma +IGI +GUB₃-šu₂ +ER₂ +u₂-kal +sah-le₂-e +{u₂}HAR.HAR +GAZ +SIM# +ina +KAŠ +AL.ŠEG₆.GA₂ +tara-bak +SAG.KI-šu₂ +LAL-ma +TI-uṭ# +DIŠ +NA +SAG.KI-MIN-šu₂ +ṣab-ta-šu₂-ma +IGI-MIN-šu₂ +ER₂ +u₂-kal-la +sah-le₂-e +{u₂}HAR.HAR +GAZI{sar} +ZI₃ +ŠE.SA.A +BA.BA.ZA +MUNU₆ +DIŠ-niš +ina +{dug}UTUL₇ +ina +A +GAZI{sar} +tara-bak +SAG.KI-MIN-šu₂ +KEŠDA-ma +TI-uṭ +DIŠ +NA +SAG.KI +ZAG-šu₂ +DAB-su-ma +IGI +ZAG-šu₂ +MUD₂ +u₂-kal +sah-le₂-e +{u₂}HAR.HAR +IM.BABBAR +{giš}KIŠI₁₆.HAB +ZI₃ +ŠE.SA.A +BA.BA.ZA +MUNU₆ +DIŠ-niš +GAZ +SIM +ina +A.GEŠTIN.NA +tara-bak +ŠU.BI.AŠ.AM₃ +[DIŠ +N]A +SAG#.KI +GUB₃-šu₂ +DAB-su-ma +IGI +GUB₃-šu₂ +MUD₂ +u₂-kal +[{u₂}]KI#.KAL#.HI.RI₂.IN +[{u₂}S]U.AN#.DAR +{šim}MUG +DIŠ-niš +GAZ +SIM +ina# +[x +x +x +x +x] +tara#-bak +MIN +[x +x +x +x +x +x +ṣa]b-ta#-šu₂#-[ma +x +x +x +x +x +x +x +x +x +x +x +x +x +ŠE.S]A.A +[x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +L]AL +{giš}ŠUR.MIN₃ +{giš#}MA₂?#.[EREŠ?.MA₂?.RA? +...] +{giš}ar₂-gan-nu +{giš}ba-ri#-ra#-ta₅# +[...] +x +[...] +ŠURUN +GUD +A.GAR.GAR +MAŠ.DA₃ +DIŠ-niš +GA[Z +SIM +in]a +DIDA# +[SIG? +tara-bak +x +x +x +x] +ana +IGI +ta-šap-pah +SAG.DU-su +SAR#-ab +LAL-ma +{u₂}IGI-lim +{u₂}IGI#.NIŠ# +ina?# +DIDA?# +[x +x +x] +ZI-ah +{na₄}SAG.KI +ina +ZAG-šu₂ +KEŠDA-su +{u₂}ar₂-zal-la +ŠIKA +gul-gul +LU₂.U₁₈#.LU# +[x +x +x] +ni-kip-ta₅ +NUMUN +{giš}MA.NU +{u₂}DILI +NUMUN +{giš}bi-ni +{u₂}AŠ.TAL₂.TAL₂ +DIŠ-niš +te-pe-eṣ +ina +I₃.GIŠ +{giš}EREN +HI.HI-m[a] +ŠEŠ₂-su +bal-ṭu₂-su-nu +ina +NE +{giš}KIŠI₁₆ +tu-qat-tar-šu₂ +I₃ +DU₁₀.GA +SAG.KI-MIN-šu₂ +EŠ-aš +DIŠ +NA +SAG.KI +ZAG-šu₂ +GU₇-šu₂-ma +IGI +ZAG-šu₂ +nap-hat +u₃ +ER₂ +BAL-qi₂ +ŠU.GIDIM.MA +ša₂-ni +{d}iš₈-tar₂ +ana +TI-šu₂ +{giš}si-hu +{giš}ar₂-ga-nu +{giš}ba-ri-ra-ta₅ +1 +GIN₂ +UH₂.{d}ID₂ +{u₂}IN₆.UŠ₂ +GI.ŠUL.HI +ina +ZI₃.KUM +HI.HI +ina +KAŠ +tara-bak +LAL +DIŠ +KIMIN +šur-šum-mi +ši-iq-qi₂ +šur-šum-me +A.GEŠTIN.NA +KALAG.GA +šur-šum-mi +KAŠ.SAG +ZU₂.LUM.MA.DILMUN{ki} +1 +GIN₂ +I₃.UDU +{šim}GIG +ina +I₃.NUN +SUD₂ +te-qi₂ +DIŠ +NA +SAG.KI +GUB₃-šu₂ +GU₇-šu₂-ma# +IGI +150-šu₂ +nap-hat +u +ER₂ +BAL-qi₂ +ZU₂.LUM.MA.DILMUN{ki} +U₂ +a-ši-i +MUD₂ +{giš}EREN +ina +I₃ +{šim}GIR₂ +SUD₂ +ina +MUL₄ +tuš-bat +ina +še-ri₃ +NU +pa-tan +MAR +DIŠ +KIMIN +IM.BABBAR +pu-rat-ta₅ +ZI₃ +MUNU₆ +ZI₃ +GU₂.GAL +ZI₃ +GU₂.TUR +ZI₃ +GAZI{sar} +GAZ +SIM +ina +A +GAZI{sar} +tara-bak +SAG.KI-šu₂ +IGI-šu₂ +LAL +DIŠ +NA +SAG.KI +DAB-su-ma +i-mim +i#-kaṣ₃-ṣa +IGI-MIN-šu₂ +nu-up-pu-ha +ŠU.GIDIM.MA +GIR₃.PAD.DU +NAM.LU₂.U₁₈.LU +tur-ar₂ +SUD₂ +ina +I₃ +{giš}EREN +EŠ-MEŠ-su-ma +TI +DIŠ +NA +SAG.KI +DAB-su-ma +TA +{d}UTU.E₃ +EN +{d}UTU.ŠU₂.A +GU₇-šu₂ +ŠU.GIDIM₇.MA +a-ši-pu +ki +ša₂ +i-du-u +li-te-ep-pu-uš +I₃.UDU +ma-hir-te +U[DU?.NITA₂? +x +x +x +x +DI]Š-niš# +EŠ-su +{u₂}IN₆.UŠ₂ +HAD₂.A +GAZ# +SIM# +ina +A +GAZI{sar} +tara-bak +Z[I₃ +ŠE.SA.A? +ana +IGI +ta-ša-pah +SA]R-ab +LAL-su +[...] +LAL?# +[...] +[... +Z]I-ah +{sig₂#}HE₂#.ME#.DA# +[...] +[... +NIGIN-m]i +ina +SAG.KI-šu₂ +u +GU₂-šu₂# +[KEŠDA +x +x +x] +[x +x +x +x +x +x +x +S]AG.KI-MIN-šu₂ +GU₇-MIN-šu₂ +{na₄}mu-ṣa +{na₄}AN.ZA[H +{na₄}AN.ZAH].GE₆# +[{na₄}KA.GI.N]A +DAB.BA +NA₄ +AN.BAR +{u₂}DILI +6 +U₂-MEŠ +ŠE[Š +DIŠ]-niš +SUD₂ +[ina +MUD₂ +{giš}ERE]N +HI.HI-ma +SAG.KI-MIN-šu₂ +IGI-MEŠ#-šu₂# +u# +GU₂#-su# +EŠ#-MEŠ#-ma +ina-eš +DIŠ# +NA# +[ina +DAB +ŠU.GID]IM +ZI +SAG#.KI# +TUKU#-MEŠ# +ana# +KAR#-šu₂ +10 +GIN₂ +{giš}EREN +10 +GIN₂ +{giš}ŠUR.MIN₃ +10 +GIN₂ +{šim}Š[EŠ +10 +GIN₂] +{šim}IM.DI +10 +GIN₂ +{giš}dup-ra-nu +10 +GIN₂ +ŠIM.ŠAL +10 +GIN₂ +{šim}G[IR₂ +10 +GI]N₂ +{šim}GAM.MA +10 +GIN₂ +{šim}LI +10 +GIN₂ +{šim#}GUR₂.GUR₂ +10 +GIN₂ +GI# +D[U₁₀.GA +10 +GIN₂ +GAZ]I{sar#} +10 +GIN₂ +{šim}HAB +10 +GIN₂ +LAGAB +MUNU₆ +10 +GIN₂# +DUH#.ŠE#.[GIŠ.I₃ +x +x +1]0 +GIN₂# +DIDA# +SIG₅.GA +10 +GIN₂ +sah-le₂#-e# +10# +GIN₂# +qi₂#-l[ip₂ +x +x +x +10 +GI]N₂ +GU₂#.GAL# +10 +GIN₂ +GU₂.TUR +DIŠ-niš +GAZ# +SIM# +lu# +ina# +K[AŠ.SAG? +x +x +x +tara]-bak# +ina# +KUŠ# +SUR +ZI₃ +ZIZ₂.A.AN# +ana# +IGI# +ta#-š[ap-pah +x +x +x +SA]R-ab# +SAG.KI-MIN-šu₂ +LAL-ma +[ina-e]š +DIŠ +KIMIN +{ši[m} +... +{ši]m.d}MAŠ +ILLU +{šim}BULUH +qi₂-lip₂ +Z[U₂.LUM.MA] +I₃.UDU +ELLA[G₂ +... +DIŠ-ni]š +GAZ +ina +KUŠ +SUR-ri +LAL-id-ma# +i[na?-eš?] +DIŠ +KIMIN +DUH.Š[E.GIŠ.I₃ +... +{ši]m}GIG# +ZI₃.KUM +ina +šur-šum-me +KAŠ +SILA₁₁-aš +[x +x +(x)] +DIŠ +NA +SAG.K[I.DAB.BA? +TUKU.TUKU?] +{u₂#}ŠAKIRA# +NUMUN# +{u₂#}UR#.TAL₂.TAL₂ +NUMUN +{u₂}EME# +U[R.GI₇] +NUMUN +{u₂}NIG₂.[GAN₂?.GAN₂? +NUMUN +{u₂}ap₂?-r]u?-šu₂ +NUMUN +{u₂}AB₂.DUH +NUMUN +{u₂#}MAŠ?#.HUŠ?# +ša?# +ana?# +[x +x +(x)] +ŠE₁₀ +TU{mušen} +[ša₂ +{giš}GIŠIMMAR? +T]I +ŠE₁₀ +SIM{mušen} +ša₂ +{giš}bi-ni +TI +ILLU +{u₂}si-in?#-bu?#-r[a?-ti?] +{šim}GUR₂.GUR₂ +sa[h?-le₂?-e?] +NUMUN +{u₂}qu₂-ud-ri +GAZI{sar} +{giš}KIŠI₁₆ +ta-pa-aṣ +DIŠ?-n[iš? +x +x +(x)] +U₂-MEŠ +ŠE[Š +ina +{uru]du}ŠEN.TUR +ta-qal-lu +U₂-MEŠ +ša-šu-nu +ma-la-a +qa-lu-u +TI# +DIŠ-niš +HI.HI +i[na +šu]r-šum-mi +KAŠ +ta-la₃-aš +tu-gal-lab +I₃.GIŠ +EŠ-aš +7-šu₂ +KEŠDA-su-ma +ina# +U₄# +4#.KAM₂# +SA +SAG.KI-šu₂ +ta-ma-haṣ-ma +TI-uṭ +DIŠ +KIMIN +NUMUN +{u₂}DI[LI +NU]MUN +{u₂}TAL₂.TAL₂ +GAZ +SIM +ina +A +ta-la₃-aš +LAL +DIŠ +KIMIN +ŠE₁₀ +TU{mušen#} +SUD₂ +ina +KAŠ +ta-la₃-aš +LAL +DIŠ +NA +SAG.KI.DAB.[BA +TU]KU.TUKU +IGI-MIN-šu₂ +i-bar-ru-ra +UZU-MIN-šu₂ +i-šam-ma-mu-šu +GIR₂.GIR₂-šu₂ +ŠA₃-[MEŠ-šu₂ +MU₂.M]U₂ +ŠU-MIN-šu₂ +u +GIR₃-MIN-šu₂ +u₂-šam-ma-ma-šu₂ +u₂-zaq-qa-ta#-šu₂ +bir-ka-šu₂ +an-[ha? +tab?-k]a +e-ta-ta-na-ah +NA +BI +GIG +NU +ZI +DAB-su +i-dan-nin-šu₂ +[ana +GI]G-šu₂ +NU +GID₂.DA +hi-qa +ša +KAŠ +{urudu}ŠEN.TUR +DIRI +{giš}bi-nu +{u₂}[x +(x)] +{giš}HAŠHUR.GIŠ.GI +{u₂}TAL₂.TAL₂ +NUMUN +{giš}ŠE.NU₂.A +ana +ŠA₃# +ŠUB +ŠEG₆-š[al?] +[x +x] +x +x +x +ib?# +E₁₁#-šu₂#-ma# +NAGA.SI.MEŠ +IM.GU₂ +NIG₂.NIGIN₂.NA +te#-se-e[r-šu₂] +{u₂}IGI-lim +{u₂}IGI.NIŠ +SUD₂ +ina +MUD₂ +{giš}EREN +HI.HI +ŠE[Š₂-su?]-ma +TI +DIŠ +NA +SAG.KI.DAB.BA +TUKU.TUKU +{u₂}IGI-lim +{u₂}IGI.NIŠ +{u₂}tar-[muš?] +{u₂#}an#-ki-nu-te +{giš}HAŠHUR.GIŠ.GI +{u₂}HAR.HAR +U₂.HI.A +ŠEŠ-ti +DIŠ-niš +ta-pa-a[ṣ? +ina? +{urudu}ŠEN?.TU]R? +ŠUB +tu-šab-šal +ta-ša₂-hal +10 +GIN₂ +LAL₃ +1/3 +SILA₃ +I₃ +hal-ṣa +ana +ŠA₃ +ŠUB +ana +DUR₂-šu₂# +DUB-ma +TI +DIŠ +KIMIN +{u₂}IGI-lim +{u₂}IGI.NIŠ +NUMUN +{giš}ŠINIG +NUMUN +{u₂}tu-lal +TEŠ₂.BI +SUD₂ +ina +GEŠTIN +ŠUR +ba-lu +pa-tan +NAG-ma +TI-uṭ +DIŠ +KIMIN +ŠIM.HI.A +DU₃.A.BI-šu₂-nu +ina +GEŠTIN +ŠUR +u +KAŠ.SAG# +tu-la-bak +ŠEG₆-šal +ta-ša₂-hal +10 +KISAL +LAL₃ +1/3 +SILA₃ +I₃ +hal-ṣa +ana +ŠA₃ +ŠUB-di +[x +x +x] +ta#-hi-ṭa-šu₂-ma +TI-uṭ +DIŠ +KIMIN +{u₂}HAR.HAR +{u₂}KUR.KUR +NAGA#.SI#.MEŠ# +x +x +[x +(x)] +x +NU# +pa-tan +NAG-MIN-ma +TI-uṭ +DIŠ +KIMIN +{u₂}IGI-lim +{u₂}IGI.NIŠ +NUMUN +{u₂#}x +[x +x +x +x +x +x +SU]D₂? +ina# +KAŠ# +ŠEG₆#-šal +ta-ša₂-hal +10 +KISAL +LAL₃ +1/3 +SILA₃ +[x +x +x +x +x +x +x +x +x +x +x +T]I +DIŠ +KIMIN +{u₂}IGI-lim +PA +{giš}ŠE.N[U₂.A +...] +TEŠ₂.BI +GAZ +SIM +ina +x +[...] +DIŠ +KIMIN +{giš}HAŠHUR-a-[pi +...] +DIŠ +NA +SAG.K[I.DAB.BA? +TUKU.TUKU? +...] +{na₄}AN.ZAH.G[E₆? +...] +DIŠ +KIMIN +n[i?-kip?-ta₅? +...] +TEŠ₂?#.[BI? +...] +{n[a₄}m]u-ṣa# +{n[a₄} +...] +U₂#.HI.A +an-nu#-[ti +...] +EN₂# +UR#.SAG +{d}ASAL.LU₂.HI# +7?#-š[u₂? +ŠID +...] +DIŠ +NA# +SAG.KI +DAB-su-ma +IGI-MIN#-[šu₂ +...] +DIŠ-niš +SUD₂ +ina +K[AŠ? +...] +DIŠ +NA# +SAG.KI-šu₂ +lu +ša₂ +ZAG +l[u +ša₂ +GUB₃ +...] +u +IGI#-MIN-šu₂ +a-pa-a +{na₄}mu-ṣa# +[...] +DIŠ# +NA# +SAG.KI-ME-šu₂ +ZI-M[EŠ +...] +[sah]-le₂#-e +ARA₃-MEŠ +x +[...] +[KU]Š? +MUŠ +GE₆ +H[AD₂.DU? +...] +[DIŠ +N]A +SAG.KI# +D[AB-su-ma +pa-nu-šu +i]ṣ-ṣa-nun-du# +[x +x +x +x +x +x +x +x +x +x +x +x +x] +{u₂#}IGI#-lim# +[x +x +x +x +K]AŠ +DU₁₀.GA +NAG-MEŠ#-m[a +x +x +x +x +x +x +x +x +x +x] +[x +x +x +x +x +x +x +KEŠ]DA-su +A.RI.A +NAM.LU₂#.U₁₈#.L[U +x +x +x +x +x +x +x +x] +[x +x +x +x +x +SU]D₂ +ina +I₃ +{giš}EREN +HI.HI +ŠEŠ₂-MEŠ#-ma# +TI# +[x +x +x +x +x +x +x +SA.G]U₂-MEŠ-šu₂ +GU₇-MEŠ-šu₂ +ŠU.GIDIM.MA +{giš}si-hu +{giš}ar₂-ga-nu +{u₂#}[ba-ri-ra-ta₅ +GI.ŠU]L.HI +GAZ +SIM +ina +A +GAZI{sar} +tara-bak +LAL-su +DIŠ +N[A +x +x +x +x +x +x] +{d}UTU.E₃ +EN +EN.NUN.UD.ZAL.LI +GU₇-šu₂ +ur-rak +UŠ₂ +DIŠ +N[A +x +x +x +x +x +Š]A₃ +ŠA₃ +GU₃.GU₃-si +ŠU.GIDIM.MA +ša₂-ne₂-e +{d}iš-tar +UŠ₂ +DIŠ +NA +S[AG.KI.DAB.BA-ma +m]a-gal +BURU₈ +KI#.NA₂# +la# +i#-na#-aš-ši +UŠ₂ +DIŠ +NA +SA[G.KI.DAB.BA-ma +ma]-gal +GU₃.GU₃-si +SA +SAG.KI-šu₂ +ma#-gal# +te?#-bu?#-u?# +x +x +x +x +x +UŠ₂# +an-nu-t[u₄ +x +x +x] +x +SAG.KI.DAB.BA.KAM₂ +EN +SA#.GU₂?# +[AL?].TIL?# +šum-ma +SAG.KI.D[AB.BA +ŠU.GI]DIM.MA +ina +SU +NA +il-ta-za-az-ma +NU +DU₈ +DUB +2.KAM₂ +[DIŠ +N]A +UGU-šu₂ +KUM₂ +u₂-kal +E₂.GAL +{m}AN#.ŠAR₂#-DU₃#-A# +[LUGAL +ŠU₂ +MAN +KUR +AN.ŠAR₂]{ki#} +ša +{d}AG +u +{d}taš-me-tu₄ +GEŠTU-MIN +ra-pa-aš₂-tu₂ +iš-ru-ku-šu₂ +e-hu-uz-[zu +IGI-MIN +na-mi]r-tu₄ +ni-siq +ṭup-šar-ru-ti +ša# +[ina +LUGAL-MEŠ-ni +a-lik +mah-ri-ia +mam₂-ma] +šip#-ru# +šu-a-tu +la +i-hu-uz-zu +[bul-ṭi +TA +m]uh-hi +EN +UMBIN +li[q-ti +BAR-MEŠ +ta-hi]-zu# +nak-la +a-zu-gal-lu-ut +{d}nin-urta +u +{d}gu-la +ma-la +ba-aš₂-m[u +ina +ṭup-pa-a-ni +aš₂-ṭu]r +as-niq +IGI.KAR₂-ma +a-na +ta-mar-ti +ši-ta-si-ia +qe₂-r[eb +E₂.GAL-i]a +u₂#-kin +NA# +BI +GIDIM +I[M.RI.A-šu₂ +DAB-su +...] +{šim}ŠE.LI.BABBAR +{ši[m}...] +{u₂}tara-muš +{giš}si-ha +[...] +ina +A +ŠIM.HI.A +GAR-šu-nu +[...] +ta-lal +NITA +NINDA +GID₂.DA +x +[...] +I₃ +{šim}ŠEŠ +ana +SAG.KI-[šu₂ +ŠUB-di +...] +ana +KIMIN +{giš}EREN +{giš}ŠUR.MIN₃ +G[I.DUG₃.GA +...] +8 +U₂.HI.A +ŠEŠ +UR.BI +ina +KAŠ.S[AG +...] +PEŠ₁₀-{d}ID₂ +ku-up-ri +{d}I[D₂ +...] +tu-qat-tar-šu₂ +hi-ib-ṣa +ša +x +[...] +DIŠ +NA +ina +DAB-it +ŠU.GIDIM.MA +GEŠTU.[MIN-šu₂ +i-šag-gu-ma +...] +{šim}{d}MAŠ +zap-pi +ANŠE.KUR.RA +ZI₃ +[...] +MUD₂ +MUŠ +{u₂}GUD₃ +A.RI.A# +[...] +ŠU.SI.MEŠ-šu₂ +ina +GEŠTU.MIN-šu₂ +i-ret-ti-m[a +...] +a-šar +TAB +ba-ši-i +{d}e-a +ib-[ni +...] +EGIR-šu₂ +KA +sa-par-ti +SI +GU₄ +[...] +DIŠ +NA +GIDIM +DAB-su-ma +GEŠTU.MIN-šu₂ +i-š[ag-gu-ma +{šim}BAL +GI.DUG₃.GA +{šim}GUR₂.GUR₂] +GAZI{sar} +zap-pi +ANŠE.KUR.R[A +PAP +5 +U₂.MEŠ +qu₅-taru₅ +ša +GEŠTU.MIN +lat-ku] +x +x +[...] +x +ina +MUD +U[D.KA.BAR +...] +DIŠ +NA +ŠU.GIDIM.MA +DAB-su-ma +GEŠTU.MIN-šu₂ +i-šag-gu-ma +{šim}ŠEŠ +{n[a₄}EŠ₃.ME.KAM₂ +{na₄}AŠ.GI₃.GI₃ +(...)] +SUD₂ +ina +{sig₂}AKA₃ +NIGIN-mi +ina +MUD₂ +{giš}EREN +SUD +EN₂ +piš-irtu +ib-ni +ŠID#-[nu +...] +EN₂ +piš-irtu +ib-ni +{d}e-a +IM.MA.AN.NA +AN.KI.A +NA₄ +li-iz-zur-šu₂ +NA₄ +li-is-kip#-šu₂# +NA₄# +liš#-p[i-šu₂] +NA₄ +li-pa-sis-su +TU₆.EN₂ +EN₂ +an-ni-tu₂ +3-šu₂ +ana +UGU +lip₂-pi +ŠID-nu +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +ana +KIMIN +{šim}GUR₂.GUR₂ +{u₂}HAR.HAR +{u₂}KUR.KUR +{u₂}ak-tam +{u₂}IGI-lim +{u₂}IGI-20 +{u₂}tara-muš +ZA₃.HI.LI +SUD₂ +ina +I₃ +{giš}EREN +HI.HI +ina +{sig₂}AKA₃ +NIGIN-mi +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-ma +ina-eš +ana +KIMIN +GI.DUG₃ +ina +I₃+GIŠ +SUD₂ +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +ana +KIMIN +{šim}ŠEŠ +{na₄}AŠ₂.GI₄.GI₄ +{na₄}ZA.GIN₃ +{na₄}SIG₇.SIG₇ +1-niš +SUD₂ +ina +I₃ +{giš}EREN +HI.HI +ana +ŠA₃ +GEŠTU.MIN-šu₂ +ŠUB +UZU.MIN-šu₂ +ŠEŠ₂ +DIŠ +NA +ina +DAB-it +ŠU.GIDIM.MA +GEŠTU.MIN-šu₂ +i-šag-gu-ma +NUMUN +u₂-ra-a-nu +NUMUN +{giš}MA.NU +ni-kip-tu₂ +NITA₂ +u +MUNUS +zap₂-pi +ANŠE.KUR.RA +{tug₂}NIG₂.DARA₂.ŠU.LAL₂ +ina +NE +GEŠTU.MIN-šu₂ +tu-qat-tar +DIŠ +NA +ina +DAB-it +ŠU.GIDIM.MA +GEŠTU.MIN-šu₂ +i-šag-gu-ma +SUHUŠ +{giš}MA.NU +ni-kip-tu₂ +{tug₂}NIG₂.DARA₂.ŠU.LAL₂ +ina +NE +ŠA₃ +GEŠTU.MIN-šu₂ +SAR +{šim}GUR₂.GUR₂ +{šim}LI +{šim}ŠEŠ +{giš}EREN +GI.DUG₃.GA +{šim}MUG +GAZI{sar} +{im}KAL.GUG +8 +U₂.HI.A +qu₅-GUR +ša +GEŠTU.MIN +ina +NE +ŠA₃ +GEŠTU.MIN-šu₂ +SAR +{na₄}mu-ṣu₂ +SI +DARA₃.MAŠ +GIR₃.PAD.DU +NAM.LU₂.U₁₈.LU +KA +tam-ti₄ +GIR₃.PAD.DU +UGU.DUL.BI +{u₂}KUR.RA +ina +NE# +ŠA₃ +GEŠTU.MIN-šu₂ +tu-qat-tar +kib-ri-tu +{u₂}KU₆ +SUHUŠ +{giš}MA#.NU# +a-za-pi +ANŠE.KUR.RA +{tug₂}NIG₂.DARA₂.ŠU.LAL₂ +ina +NE +{giš}KIŠI₁₆ +ŠA₃ +GEŠTU.MIN-šu₂ +tu-qat-tar# +SI.DARA₃.MAŠ +{na₄}ga-bi-i +{u₂#}KUR#.RA# +sah-le₂-e +KA +tam-ti₄ +kib-ri-tu₂ +GIR₃.PAD.DU +NAM.LU₂.U₁₈#.[LU] +ina +NE +{giš}KIŠI₁₆ +ŠA₃ +GEŠTU.MIN-šu₂ +SAR +DIŠ +NA +GEŠTU.MIN-šu₂ +i-šag-gu-ma +MU[D₂ +{giš?}EREN?] +a#-ra-an-di +{šim}GUR₂.GUR₂ +ina +{sig₂}AKA₃ +NIGIN-mi +ana +ŠA₃ +A.MEŠ +ŠUB-di +ina +NE +SE[G₆]-šal +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-ma +TI +DIŠ +NA +GEŠTU.MIN-šu₂ +i-šag-gu-ma +MUD₂ +{giš}EREN# +KI +A +{giš}NU.UR₂.MA +HI.HI-ma +ana +ŠA₃ +GEŠTU.MIN-šu₂ +ŠUB-ma +TI +en₂ +in-da-ra-ah +ta-ra-a[h-t]i +šu-maš +in-da-ra-ah +ta-ra-ah-ti +[ti]r-ki-bi +in-da-ra-a[h +ta?-r]a-ah-ti +tir-ki +ba-su-tu₂ +TU₆.EN₂ +en₂ +šu-bi +[in-d]u₈ +gir₃-bi +in-du₈ +bur#-še +bur-na +bur#-na#-an-na +su-ri-ih +su-ri-ih-e-ne# +su-ri-ih# +gaba?# +ni#-ik-ra-ah +su#-ri-ih +ta#-ah#-ta#-ah# +TU₆.EN₂ +2 +KA.INIM.MA# +DIŠ +NA +GEŠTU#.MIN#-š[u₂] +i#-šag-gu-ma +DU₃.DU₃.BI +{šim}ŠEŠ# +{na₄}EŠ₃.ME.KAM₂ +{na₄}AŠ₂.G[I₄.GI₄ +SUD₂ +x +(x) +in]a +MUD₂ +{giš}EREN +HI.HI +EN₂ +3-šu₂ +ana +ŠA₃ +ŠID#-nu# +{sig₂}AKA₃ +N[IGIN-mi +ana +Š]A₃ +GEŠTU.MIN-šu₂ +GAR-an +EN₂# +si-in-du₈ +i[b-ni] +{d#}e₂#-a +IM.MA#.NA# +AN#.KI#.A# +ib#-[ni +du-up-ni +gu₂-us₂]-sa# +TU₆.EN₂ +1# +KA.INI[M.MA] +DIŠ +NA +GEŠTU.MIN-šu₂ +i#-šag-gu-ma# +[D]U₃.DU₃.BI +{ši[m}ŠEŠ +{na₄}EŠ₃.ME.KAM₂ +{n]a₄}AŠ₂.GI₄.GI +ni-kip#-tu# +ina +I₃ +HI.HI +ina +MUL +tuš-bat +EN₂ +3-šu₂ +[ana +Š]A₃ +ŠID-nu +{sig₂#}AKA₃# +[NIGIN +ana +ŠA₃ +GEŠTU.MIN-š]u₂ +GAR#-an +en₂ +ša-ra-zu# +ša#-ra-šag₅#-ga +he₂-a +[ur-sa]g +{d}nin-urta +ša-ra-šag₅#-ga +he₂-a +[en] +{d}nin#-urta# +ša#-ra-šag₅-ga +he₂-a +{d#}nin-urta +nam-ba-te-ga₂-e₃-de₃ +tu₆-en₂ +[1 +K]A.INIM.MA +DIŠ +NA +GEŠTU.MIN-šu₂# +i#-šag#-gu-ma +[DU₃.DU₃.B]I +{na₄}EŠ₃.ME.K[AM₂ +(x)] +x +{šim}ŠEŠ +{u₂#}ur#-nu-u +UR#.BI# +SUD₂# +ina +MUD₂ +{giš}EREN +HI#.HI# +[EN₂ +3-šu₂ +an]a +ŠA₃ +ŠID-nu +[ina +{s]ig₂}AKA₃ +NIGIN#-mi# +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +[EN₂ +na]-pi-ir# +še-ri-iš# +[pa?-ta?-ar?-r]i? +zu-g[a-l]i?-ir#-ri# +pa-ta-hal-li +pa-tar-ri +[su?-ma?-aš₂? +p]a?#-at#-r[i +pa?-ku?-un?-d]i +ra-t[a-aš₂? +i]k?-ki#-ri-ri +ša-ra-aš +tu₆-en₂ +[1 +KA.INIM.MA +DIŠ +NA +GEŠTU.MIN-šu₂ +i-šag-g]u-ma# +3-š[u₂ +ana +ŠA₃ +GEŠTU +ZA]G-šu₂ +3-šu₂ +ana +ŠA₃ +GEŠTU +GUB₃-šu₂ +MU₂# +[...] +x +x +[...] +x +x +[...] +[...] +[...] +[en₂ +nig₂-e₃ +nig₂-e₃ +nig₂-nam-ma +us₂-su₁₃] +[ki-a +dim₃-ma-bi +a-ri-a +an-na-ke₄] +[sa₇-alan-bi +nig₂ +an-gin₇ +šu +nu-te-ga₂] +[hur-sag-gin₇ +gul-gul +sa₇-alan-bi +zi-ir-zi-ir-e-de₃] +[nig₂ +udug +har-ra-an +nig₂ +udug +kaskal-am₃] +[nig₂-ni₂-zu +mu-un-ši-in-gin-na +ni]g₂-ni₂#-zu# +mu#-un#-ši#-in#-[gin-na] +[{d}nin-urta +lugal +{giš}tukul-ke₄ +ga]ba-zu +he₂-en-ga₂#-g[a₂] +[hul-dub₂ +zi-an-na +he₂-pa₂ +z]i-ki-a +he₂-pa₂# +[1 +KA.INIM.MA +DIŠ +NA +GEŠTU.MIN-šu₂ +i-šag-gu-ma +3-šu₂ +ana +ŠA₃ +GEŠTU +ZA]G-šu₂ +3-šu₂ +ana +ŠA₃ +GEŠTU +GUB₃-šu₂ +ŠID +[en₂ +hu-hu-un-ti +ib-ni-a-ti +ib-ni-ir-r]a +ša₂-na-an +[ak-ka-li-ir-ri +su-gar-ri +ša₂-at-ri +ku-uk-t]i +hu-ma-at-ri +su-ma-aš +tu₆-en₂ +[1 +KA.INIM.MA +DIŠ +NA +GEŠTU.MIN-šu₂ +i-šag-gu-ma +3-šu₂ +ana +ŠA₃ +GEŠ]TU +ZAG-šu₂ +li-ih-šu₂ +[en₂ +a-me-am-ma-an +ku-um-ma-am +su-um-ma-a]t-ri +ki-ri-ri +ku-uk-ti +[ra-ša₂-na +ku-uk-ti +hu-un-di +hu-m]a-an +tu₆-en₂ +[KA.INIM.MA +DIŠ +NA +GEŠTU.MIN-šu₂ +i-šag-gu-ma +3-šu₂ +ana +ŠA₃ +GEŠTU +GU]B₃-šu₂ +li-ih-šu₂ +[...] +{u₂#}kur-ka-na-a +[...] +x +[...] +[DIŠ +NA +GEŠTU.MIN-šu₂ +GU₇.MEŠ-šu₂ +neš-ma-a +he-e-si +I₃.GIŠ +{giš}du]p-ra#-an# +{sig₂}AKA₃ +SUD# +1#-tum# +2#-šu₂# +3#-šu₂# +ana# +ŠA₃# +GEŠTU.MIN#-šu₂# +GAR#-an# +DIŠ +N[A +GIG-ma +GIG-su +an]a +ŠA₃ +GEŠTU.MIN-šu₂ +ip#-pu-uš-ma +neš-ma-a +DUGUD +1 +GIN₂ +A +{giš}NU.UR₂.MA# +2 +[GIN₂] +A# +{ši[m}GIG] +I₃ +{ši[m}x] +[(x +x)] +HI.HI +{sig₂}AKA₃ +SUD +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +UD.3.KAM₂ +an-nam +DU₃-uš# +in[a +UD.4.KA]M₂ +LUGUD +ša₂ +Š[A₃ +GEŠTU.MIN-šu₂] +E₁₁#-ma +ta-kap-par +GIM +MUD₂.BABBAR +it-tag-ma-[ru] +IM#.SAHAR#.NA₄.KUR.RA +SUD₂ +in[a +G]I.SAG.KUD +ana +ŠA₃ +GEŠTU.MIN-šu₂ +MU₂-a[h] +DIŠ +NA# +KUM₂ +ana +ŠA₃ +GEŠTU.MIN-šu₂ +i-pu-uš#-ma +neš-mu-šu₂ +DUGUD +u₃ +lu +IR +u₂-kal +I₃+GIŠ +{giš}dup-r[a-na] +I₃+GIŠ +GI.DUG₃.GA +ana +SAG.DU-šu₂ +ŠUB-di +{sig₂}AKA₃ +SUD +1-šu₂ +2-šu₂ +3-šu₂ +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-[an] +neš-mu-šu₂ +BAD-te +sah-le₂-e +ša₂ +mim-ma +ana +ŠA₃ +NU +ŠUB +ina +NINDA.ZIZ₂.AN.NA +GU₇ +DIŠ +NA +ina +si-li-ʾ-ti-šu₂ +KUM₂ +ana +ŠA₃ +GEŠTU.MIN-šu₂ +ip-pu-uš-ma +GEŠTU.MIN-šu₂ +DUGUD +I₃ +KUR.GI{m[ušen}] +ana +ŠA₃ +GEŠTU.MIN-šu₂ +ŠUB-ma +neš-mu-šu₂ +i-qal-lil₂ +SUHUŠ +{gi[š}NA]M.TAR +NITA₂ +tu-pa-aṣ +ana +ŠA₃ +GEŠTU.MIN-šu₂ +ŠUB-ma +ina-[eš] +DIŠ +NA +GEŠTU.MIN-šu₂ +GIM +ša₂ +ŠU.GIDIM.MA +GU₇#.MEŠ# +u₃# +SIG₃#.MEŠ#-šu₂# +I₃+GIŠ +{šim}GIG +I₃+GIŠ +GI.DUG₃.G[A] +I₃+GIŠ +{šim}LI +a#-he#-e +tu-raq-qa +1-niš +HI.HI +ana +ŠA₃ +GEŠTU.MIN-šu₂# +ŠUB# +LAG +{mun}eme-sal-li₃ +{sig₂#}AKA₃# +NIGIN# +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR +DIDA +SIG₅ +ZI₃ +GU₂.GAL +ZI₃ +GU₂.TUR +ZI₃ +ZIZ₂.AM₃# +ZI₃ +GAZI{sar} +ZI₃ +{giš}ere#-ni# +ina +KAŠ +tara-bak +[LAL] +TI#-uṭ# +DIŠ +NA +GEŠTU.MIN-šu₂ +GI[G-ma +ŠA₃ +GEŠT]U.MIN-šu₂ +bi-ʾ-iš +SIG₃.MEŠ-su +GIR₂.GIR₂-s[u +x +x +(x)] +u₂# +ra# +x +GU₇-šu₂-ma +la +N[A₂-lal +{ši]m}LI +{šim}GUR₂.GUR₂ +{šim}GIR₂ +{šim}BAL +[GAZI{s]ar} +IM.KAL.L[A] +IM.KAL#.GUG# +[1-niš +GAZ +S]IM +ina +NE# +{giš#.u₂}GIR₂ +ŠA₃ +GEŠTU.MIN-šu₂ +SAR-ar₂# +[x +x +x +x +(x) +UD.3.K]AM₂ +an-nam +DU₃#-uš#-ma +ina +UD.4.KAM₂ +ŠA₃ +GEŠTU.MIN-šu₂# +ta-kap-par₂-ma +[GIM +LUGUD +i]t-tag#-ma#-ru +IM.SAHAR.NA₄#.KUR#.RA +SUD₂ +ina +{gi}SAG.KUD +an[a +Š]A₃ +GEŠTU.MIN-šu₂ +MU₂-ah# +[DIŠ +NA +ina] +GEŠTU.MIN-šu₂ +MUD₂.BABBAR +DU-ak +MUD₂ +ELLAG₂ +GU₄ +u +MUD₂ +{giš}EREN# +1-niš +HI.HI +ana +ŠA₃ +GEŠTU.MIN-šu₂ +BI.IZ +[... +a]na +ŠA₃ +GEŠTU.MIN-šu₂ +BI.IZ +A +{giš} +x +[...] +[... +ana +ŠA₃ +GEŠTU.MIN-š]u₂ +BI#.IZ# +A +[{giš}N]U.UR₂.MA# +in[a +I₃ +{giš}ER]EN +HI.HI +[ana +ŠA₃ +GEŠTU.MIN-šu₂ +B]I.IZ +kam-ka-ma# +ša₂ +kim-ṣi# +AN[ŠE +x +x] +x +ša₂# +GU₂#.MURGU₂ +ANŠE +ina +I₃ +{giš}EREN +HI.HI +[{sig₂}AKA₃ +NIG]IN-mi# +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +I₃ +{šim}BULUH +{šim#}LI# +ZI₂ +BIL.ZA.ZA +ana +ŠA₃ +GEŠTU.MIN-šu₂ +BI.IZ +[...] +x-an-ni-šu₂ +ina +I₃ +KUR.GI{mušen} +HI.HI +ana +GEŠTU.MIN-šu₂ +BI.IZ +[...] +x +ina +ZI₃.KUM +HI.HI +ana +GEŠTU.MIN-šu₂ +GAR +[x +x +(x) +t]u-daq-qaq +ina +G[I.S]AG.KUD +ana +ŠA₃ +GEŠTU.MIN-šu₂ +MU₂-ah +GAZI#{sar#} +ki-ma +ŠE.SA.A +ta-qal₃-lu +[ina +GI.SAG.KUD +ana +Š]A₃ +GEŠTU.MIN-šu₂ +MU₂-a[h +x +x +(x)] +{giš}MI.PAR₃ +tur-ar₂ +SUD₂ +ana +ŠA₃# +GEŠTU#.MIN-šu₂ +MU₂-ah +tu-ru-ʾ-a +[x-a]s-si +lu +bu +x +[x] +x +tu#-pa-ṣa +A-šu₂ +ana +ŠA₃ +GEŠTU.MIN-šu₂ +BI.IZ# +kam₂#-ka-ma +ša₂ +kin₃-ṣi +ANŠE +[x +x] +ša₂ +kal/lap-bi +1-niš +HI.HI +[ana +ŠA₃ +GEŠTU.M]IN-šu₂# +GAR-an-ma +NAGA.SI +KUG.GAN +NITA₃# +u +MUNUS +{sig₂}AKA₃ +NIGIN +[ana +ŠA₃ +GEŠT]U.MIN-šu₂ +GAR-an +SU[M.SIKI]L.SAR# +tu-ha-sa +ana +ŠA₃ +GEŠTU#.MIN-šu +tu-na-tak +[DIŠ +NA +GE]ŠTU.MIN-šu₂ +MUD₂.BABBAR +i-ṣar-ru-u[r +A +{giš}NU.U]R₂.MA +ana +ŠA₃ +GEŠTU.MIN-šu₂ +BI.IZ +U₂#.BABBAR +SUD₂ +[ina +G]I.SAG.KUD +ŠA₃ +GEŠTU.MIN-šu₂ +MU₂-a[h +I₃ +{g]iš}EREN +I₃ +{šim}M[UG? +GAM]UN{sar} +SUD₂ +[ina +I₃.NU]N +HI.HI +{sig₂}AKA₃ +NIGIN-mi +ana +Š[A₃ +GEŠTU.MIN-šu₂] +GAR +GAMUN.G[I₆ +{ši]m}ŠEŠ +I₃.KU₆ +[U₂.KUR.R]A +1-niš +HI.HI +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +ZI₂ +[ŠAH +ina] +ZI₃.KUM +HI.HI +[{sig₂}AKA₃ +NIG]IN-mi +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an# +[ŠIKA? +{giš}N]U.UR₂.MA +HAD₂.A +SUD₂ +ana +ŠA₃ +GEŠTU.MIN-šu₂ +MU₂-a[h +x +(x) +{giš}ER]EN +{šim}[x +(x) +BIL].ZA.ZA +tur-ar₂ +SUD₂ +[ana +ŠA₃ +GE]ŠTU.MIN-šu₂ +MU₂ +I₃ +{giš}ŠUR.MIN₃ +{sig₂}AKA₃ +SU[D +ana? +ŠA₃? +GEŠTU?.MIN?-šu₂? +GAR? +U₂.K]UR.RA +L[A +... +SUD₂ +ana +Š]A₃ +GEŠTU.MIN-šu₂ +GAR-an +[KAŠ] +ša +{lu₂}KURUN +U₂.BABBAR +ta-bi-lam +ana +Š[A₃ +GEŠTU.MIN-šu₂ +GAR-an +IM.S]AHAR.NA₄.[KUR.RA +SUD₂ +ana +ŠA₃ +G]EŠTU.MIN-šu₂ +MU₂-ah +[PA +{giš}b]i-ni +PA +{giš}U₃.SUH₅# +ina# +N[E +SAR? +...] +x +[... +I₃] +KUR.GI{mušen} +[...] +x +GI₃#? +x +[... +ZI₂ +B]IL.ZA.ZA +[... +GEŠT]U.MIN#-šu₂ +GAR-an +[... +{giš}NU.U]R₂.MA +[...] +GAR-an +[...] +x +HAR +[...] +SAR +x +[...] +x +[...] +kam₂-[...] +u₂ +[...] +DIŠ +GEŠTU.MIN +x +[...] +x +[...] +x +{šim}GU[R₂.GUR₂ +...] +A +{giš}N[U.UR₂.M]A +x +[x] +x +ar +ina +NE +{giš}ŠINIG# +ta#-sa#-r[aq-ma +TI] +DIŠ +KUG.GAN# +SUD₂ +[an]a +ŠA₃ +GEŠTU.MIN-šu₂ +ta-sa-[raq-ma +TI] +ana +KIMIN# +GAZI#{sar#} +GIM# +ŠE#.SA#.A# +ta#-qal-lu# +SUD₂ +ina +ŠA₃ +GEŠTU.MIN-šu₂ +ta-s[a-raq-ma +TI] +DIŠ# +NA# +MUD₂#.BABBAR# +ina# +ŠA₃# +GEŠTU#.MIN#-šu₂# +DU#-ak# +A# +{giš#}NU.UR₂.MA +I₃+GIŠ +BARA₂.GA +I₃ +{giš} +EREN# +H[I.HI +...] +A +{šim}BULUH +{šim}LI +Z[I₂ +B]IL.ZA.ZA +SIG₇ +ana +ŠA₃ +GEŠTU.MIN-šu₂ +BI.IZ +ŠE +GI₆ +[...] +MUD₂ +NIM +1-niš +HI.HI +ana +ŠA₃ +GE[ŠTU.MIN-šu₂ +BI.IZ +(TI?)] +DIŠ +NA +ina +ŠA₃ +GEŠTU-šu₂ +lu +A.MEŠ +lu +MUD₂ +lu +MUD₂.BABBAR +DU-ak +ŠA₃ +GEŠTU.MIN-šu₂ +ta-kap-p[ar₂ +...] +ina +GI#.SAG#.KUD +DUB +ŠA₃ +GEŠTU.MIN-šu₂ +LUH#-si# +GUR#-ma# +A.GEŠTIN.NA +BIL.LA₂ +ana +ŠA₃ +GE[ŠTU.MIN-šu₂ +BI.IZ +...] +x +x +SUD₂ +ina +LAL₃ +HI.HI +ana +ŠA₃ +GEŠTU.MIN-šu₂ +DUB +{sig₂}AKA₃# +NIGIN +LAL₃ +KUR +U₂.BA[BBAR +...] +x +x +[...] +ana +KIMIN +NUMUN +{u₂}NU.LUH.HA +{sig₂}AK[A₃ +NIGIN-mi +ana +Š]A₃ +GEŠTU.MIN-šu₂ +GAR-an +ana +KIMIN +NUMUN +{šim}GUR₂.GUR₂ +SUD₂ +{si[g₂}AKA₃ +NIGIN-mi +a]na +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +ana +KIMIN +GAZI{sar} +qa-lu-te +SU[D₂ +{sig₂}AKA₃ +NIGIN-mi +a]na +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +DIŠ +NA +GEŠTU +ZAG-šu₂ +ina +KUM₂ +x +x +[... +NA +BI +aš]-rat +{d}UTU +{d}30 +KIN-ma +DUG₄.GA +u +GIŠ.TUK +GAR +[... +{mun}em]e-sal-li₃ +ina +I₃+GIŠ +ŠUR.MIN₃ +I₃#.GIŠ# +{šim#}GIG# +u# +x +[... +I₃.BUR?] +el-lam +SAG.DU-šu₂ +ŠUB-di +[... +UD.7.K]AM₂ +GUR.GUR-šum-ma +TI +[DIŠ +NA +GEŠTU +GUB₃-šu₂ +ina +KUM₂ +... +M]IN? +NA +BI +aš-rat +{d}nin-urta +KIN-ma +[DUG₄.GA +u +GIŠ.TUK +GAR +...] +{mun#}eme#-sal#-li₃# +I₃#+GIŠ# +... +I₃#+GIŠ# +{šim#}GIG +[SUD₂ +{sig₂}AKA₃ +NIGIN-mi +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +I₃.BU]R +el-lam +an[a +SAG.DU-šu₂ +ŠU]B-di# +[... +{ši]m}LI +[...] +x +[... +UD.7.KAM₂ +GU]R.GUR#-šum#-ma# +TI +[DIŠ +NA +GEŠTU +... +š]u₂ +NA# +BI# +aš-rat +{d}UTU +KIN-ma +[DUG₄.GA +u +GIŠ.TUK +GAR +... +ina +I₃#+GIŠ# +{šim}L]I +SUD₂ +{sig₂}AKA₃ +NIGIN-mi +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +[I₃.BUR +el-lam +ana +SAG.DU-šu₂ +ŠUB-di +sah-le₂-e] +ina +NINDA +ZIZ₂.AM₃ +GU₇ +MIN +[... +UD.7.KA]M₂ +GUR.GUR-šu₂-ma +TI +[DIŠ +... +NA +BI +aš-rat +{d}... +KI]N-ma +7 +ITI +ŠAG₅.GA +IGI-mar +[... +SUD₂ +{sig₂}AKA₃ +NIGIN-mi +ana +ŠA₃ +GEŠTU.MI]N-šu₂ +GAR +I₃.BUR +el-lam +ana +SAG.DU-šu₂ +ŠUB-di +[...] +UD.7.KAM₂ +GUR.GUR-šum-ma +TI-uṭ +[DIŠ +... +G]IG +UD.DA +GIG +NA +BI +ZI.GA +[...] +x +SIG₅ +IGI-mar +ana +TI-šu₂ +[...] +I₃#+GIŠ +ŠUR.MIN₃ +ana +SAG.DU-šu₂ +ŠUB-di +[... +UD.7.KA]M₂ +GUR.GUR-šum-ma +TI#-u[ṭ] +[DIŠ +NA +GEŠTU.MIN-šu +IR +ana +qe]r-bi#-n[u +ip-hur-ma +...] +x +x +[...] +[... +U]D.9#.KAM₂ +ESIR? +šu₂#-šu[m +...] +[...] +x +I₃#.GIŠ# +{šim#}GIG# +{sig₂}AK[A₃ +NIGIN-mi +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +I₃ +...] +[ana +SAG.DU-šu +ŠU]B-di# +bu#-uh₂#-ra# +x +G[U₇ +MIN +... +KAŠ +NAG +MIN +UD.7.KAM₂ +GUR.GUR-šum-ma +TI] +[DIŠ +NA +GEŠTU +ZAG-š]u₂ +IR# +ana# +qer#-bi#-nu# +ip#-hur#-m[a] +x +x +x +x +x +x +x +NE +GAL₂-šu₂ +NA +BI +[aš-rat +{d}x +KI]N-ma# +SIG₅# +IGI#-mar# +ana +TI-šu₂ +GADA# +ta#-ṣap#-pir +I₃+GIŠ# +ŠUR.MIN₃ +I₃+GIŠ +EREN +SUD +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +[...] +ana# +SAG#.DU#-šu₂# +ŠUB# +an#-nu#-u?# +x?# +GU₇# +MIN# +{u₂#}HAR#.HAR# +ina +KAŠ +NAG +MIN +UD.7.KAM₂ +GUR#.GUR-šum-ma +TI-uṭ +[DIŠ +NA +GEŠTU] +GUB₃#-šu₂# +IR# +ana# +qer#-bi#-nu# +ip#-hur#-ma# +MUD₂#.BABBAR# +ŠUB-ni +NA.BI +aš-rat +{d}EŠ₄.DAR +KIN-ma +SIG₅ +IGI-mar# +[...] +x +x +x +ša?#-šu₂?# +hal-qam +IGI#-mar# +ana# +TI#-šu₂# +I₃#.GIŠ# +{giš#}EREN# +I₃.GIŠ +I₃.GIŠ +{giš}ŠUR.MIN₃ +I₃.GIŠ +{šim}BA[L] +[I₃+GIŠ +GI +D]UG₃.GA# +I₃+GIŠ +{šim}GIG# +{sig₂#}HE₂#.ME#.DA# +SUD +ana# +ŠA₃# +GEŠTU#-šu₂ +GAR +I₃+GIŠ +{šim}GIG +ana +S[AG.DU-šu₂] +[ŠUB] +bu#-uh₂#-ra +GU₇# +MIN +KAŠ +NAG# +MIN +UD#.7.KAM₂ +GU[R.GUR-šu]m-ma +TI +[DIŠ +N]A? +GEŠTU?#-šu₂# +GU₃#.GU₃-si +IM +ha-sat +lu?# +MUD₂.BABBAR +DU₃-ni +aš-rat +{d}[n]in-urta +KIN-ma# +[...] +A +{giš}NU.UR₂.MA +SIG₇#.SIG₇# +RA-su +I₃+GIŠ +SUD +x +[...] +x +SUD₂# +ana# +SAG.KI.MEŠ-šu₂ +ŠUB +DUG₃ +[IGI-mar] +ana +KIMIN +MUN +SUD₂ +{sig₂}AKA₃ +NIGIN +I₃+GIŠ +ŠUR.MIN₃ +SUD +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +I₃+GIŠ +ŠUR.MIN₃ +ana +SAG.K[I.MEŠ-šu₂ +ŠUB] +bah-ra +GU₇ +u +NAG +UD.3.KAM₂ +an-nam +DU₃-uš-ma +DUG₃ +[IGI-mar] +ana +KIMIN +{šim}LI +SUD₂ +{sig₂}AKA₃ +NIGIN +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +I₃ +ILLU +{šim}BULUH +ana +SA[G.KI.MEŠ-šu₂ +ŠUB] +sah#-le₂#-e +KI +NINDA.ZIZ₂.AM₃ +GU₇.MEŠ +3 +u₄-mi +an-nam +DU₃.DU₃-ma +[DUG₃ +IGI-mar] +[ana +KIMIN] +I₃# +{giš}EREN.NA +SIG₂.GA.RIG₂.AK.A +SUD +ana# +Š[A₃ +GEŠTU.MIN-šu₂ +GAR-an +(...)] +[... +an]a +SAG.KI.MEŠ-šu₂ +ŠUB.ŠUB-ma +x +[...] +[ana +KIMIN +I₃ +{gi]š}EREN +I₃+GIŠ +ŠUR.MIN₃ +SIG₂.GA.RIG₂.AK.A# +SU[D +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +(...)] +[ana +SAG.K]I.MEŠ-šu₂ +ŠUB.MEŠ +{u₂}HAR.HAR +G[U₇ +u +NAG +UD.3.KAM₂ +an-nam +DU₃-uš-ma +DUG₃ +IGI-mar] +[DIŠ +NA +GEŠ]TU +ZAG-šu₂ +DUGUD +ŠUM.ŠIR.A[Š{sar} +tu-pa-ṣa +ana +ŠA₃ +GEŠTU-šu₂ +GAR-an] +[PA +{giš} +Š]INIG +SIG₇-su +SUD₂ +ina +ZI₃.K[UM₃ +HI.HI +ana +ŠA₃ +GEŠTU-šu₂ +GAR-an] +[{giš}E]REN +{šim}LI +GAMUN.GI₆ +SU[M{sar} +SUD₂ +ina +I₃.NUN +HI.HI +{sig₂}AKA₃ +SUD] +[an]a +ŠA₃ +GEŠTU-šu₂ +GAR-an +I₃.GI[Š +ŠUR.MIN₃ +{sig₂}AKA₃ +SUD +ana +ŠA₃ +GEŠTU-šu₂ +GAR-an] +{šim#}HAB +I₃ +ŠAH +PA +{giš}MAŠ.HUŠ +SIG₂ +{mu[nus}AŠ₂.GAR₃ +GIŠ₃ +NU.ZU +ta-sak₃ +{sig₂}AKA₃ +NIGIN-mi +ana +ŠA₃ +GEŠTU-šu₂ +GAR-an] +I₃+GIŠ +dup-ra-na +{si[g₂}AKA₃ +SUD +ana +ŠA₃ +GEŠTU-šu₂ +GAR-an] +MUD₂ +{d}NIN.KILIM.EDEN.NA# +K[I +I₃ +{giš}EREN +I₃ +{giš}ŠUR.MIN₃ +HI.HI +ana +ŠA₃ +GEŠTU-šu₂ +GAR-an] +A +{giš}NU.UR₂.MA +AN.ZAH.GI₆ +t[u-daq-qaq +... +ana +ŠA₃ +GEŠTU-šu₂ +GAR-an] +BURU₅.HABRUD.DA +NITA +SAG.DU-s[u?? +KUD-is +MUD₂.MEŠ +KUM₂ +ana +ŠA₃ +GEŠTU-šu₂ +tu-na-tak] +DIŠ +NA +GEŠTU +GUB₃-šu₂ +DUGUD +{šim}ŠEŠ +{šim}GIG +SUD₂ +[...] +LAL₃#.KUR# +ina +I₃.UDU +UR.M[AH +...] +EGIR-šu₂ +DILIM₂ +A.BAR +ina#? +I₃#+GIŠ# +x +[...] +I₃+GIŠ +EREN +ŠE.MU[Š₅ +...] +x +x +[...] +si-ik-ti +{giš}šu-šu[m +...] +U₂#.BABBAR +x +[...] +ha-si-sa-šu₂ +DAB-at +Z[I₃ +...] +x +GEŠTU-šu₂ +aš +gir₂ +[...] +x +x +ZI₃ +bu-ṭu-tu₂ +LAL +[...] +x +[... +ana +ŠA₃ +GEŠTU-š]u₂ +ŠUB +I₃+GIŠ +ina +KA-ka +ana +ŠA₃ +GEŠ[TU-šu₂ +...] +sar +tum +x +[... +DU]B-ak +kam₂-ma +ša +AŠGAB +[...] +U₂.BABBAR +x +x +[ana +ŠA₃ +GEŠTU-šu₂] +MU₂-ah +DIŠ +NA +GEŠTU.MIN-šu₂ +DUGUD +1 +GIN₂ +A +{g[iš}N]U.UR₂.MA +1 +GI[N₂ +A +{šim}GIG +ina +{sig₂}AKA₃ +SUD +ana +Š]A₃ +GEŠTU-šu₂ +GAR +3 +u₄-me +an-na-a +DU₃.DU₃-uš +[ina] +UD.4.KAM₂ +2?-me? +Š[A₃? +GEŠTU.MIN]-šu₂ +ta-kap-par₂ +IM.SAHAR.NA₄.KUR.RA +SUD₂ +i[na +{gi}SAG.KUD +ana +ŠA₃ +G]EŠTU.MIN-šu₂ +MU₂-ah +{giš}šu-ru-uš +{giš}NAM.TAR +NI[TA₂ +...] +x +x +[...] +x-šu₂ +ŠU.TI +SIG₇-su +SUD₂ +A-šu₂ +x +[... +neš-m]u-šu₂ +BAD-te +{šim}HAB +I₃ +ŠAH +KA.A.A[B.BA +... +{munus}AŠ₂.G]AR₃ +GIŠ₃ +NU.ZU +tur-ar₂ +SUD₂ +[... +ana +Š]A₃ +GEŠTU#.MIN#-šu₂ +ŠUB +SUM.SIKIL +PA +{giš}PEŠ₃ +[... +k]i-ma +an-nam +i-te-ep#-šu +ZAG.HI.LI +NIN[DA +ZIZ₂.AN.NA +...] +ina +KAŠ +NAG-ma +{tug₂}BAR.SI +x +[...] +{tug₂}DUL-šu₂ +x +DUB# +[... +UD].3.KAM₂ +SAR.SAR-ma +TI +[... +ana] +ŠA₃ +GEŠTU.MIN-šu₂ +ŠUB-di +[... +an]a +ŠA₃ +GEŠTU.MIN-šu₂ +ŠUB-di +[... +ana] +ŠA₃ +GEŠTU.MIN-šu₂ +ŠUB-di +[... +HI.H]I +ana +ŠA₃ +GEŠTU.MIN-šu₂ +tu-na-tak +[...] +x +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +[... +ana +ŠA₃] +GEŠTU.MIN-šu₂ +tu-na-tak +[... +a]na +ŠA₃ +GEŠTU.MIN-šu₂ +ŠUB +[...] +x +x +DIŠ +NA +ZU₂.MEŠ-šu₂ +GIG +MUŠ.DIM₂.GURUN#.N[A +ša₂ +EDIN.NA +U₅.MEŠ +...] +BABBAR +ša₂ +ŠA₃-šu₂ +{sig₂}AKA₃ +NIGIN-mi +I₃ +x +[...] +SUHUŠ +{giš}NAM.TAR +NITA₂ +SUHUŠ +{u₂}KUR#.R[A +...] +U₂.BABBAR +ILLU +{šim}BULUH +A.GEŠTIN.N[A +...] +u₂-pu-un-tu₂ +ina +UGU +ZU₂-šu₂ +G[AR? +...] +x +[...] +IM.SAHAR.NA₄.KUR.RA +{gi[š}x] +x +[...] +{šim#}BULUH +ZU₂.L[UM.MA +...] +PA +{u₂}SIKIL# +x +[...] +u₂-hi-n[u? +...] +IM.S[AHAR.NA₄.KUR.RA +...] +x +[...] +x +[...] +[...] +x +[...] +[...] +[...] +[...] +[...] +[...] +[...] +[...] +[x] +x-š[u₂? +...] +[š]u-ru#-uš# +{giš}x +[...] +[x] +KUM₂# +ik-ka[ṣ₃-ṣi +...] +ana +KIMIN +tu-maš-[šad/ša₂-ʾ +...] +ana +KIMIN +ZI₃ +SAHAR +MUN[U₆ +...] +DUB-raq +[...] +DIŠ +NA +ZU₂-šu₂ +G[U₇ +...] +ana +KIMIN +BIL.ZA.ZA +S[IG₇ +ZI₂-su? +...] +ana +KIMIN +BIL.ZA.Z[A +SIG₇ +ZI₂-su? +...] +ana +KIMIN +{ši[m}x +...] +2 +SILA₃# +x +[...] +x +[...] +[... +GAR-a]n +[... +GA]R-an +[... +GA]R-an +[...] +x +ina-eš +[... +DUB-r]aq +[... +T]IN +[...] +x +ina-ah +[... +ina-a]h +[... +T]I +[... +T]I? +[... +T]I? +[... +T]I? +[...] +LA +[... +GA]BA +[... +GA]R-an +[... +DUB-r]aq +[... +GA]R-an +[... +DUB-r]aq +[... +T]I +[...] +x +x +[...] +DIŠ +NA +ZU₂#-š[u₂ +...] +NIGIN +I₃.GIŠ +SU[D +...] +ana +KIMIN +ZI₃ +tur#-a[r₂? +...] +ana +KIMIN +MA[Š₂? +...] +ana# +KIMIN# +x +[...] +ina#? +I₃#? +[...] +ana# +K[IMIN# +...] +ana# +KIMIN# +[...] +ina +ŠU-šu₂ +x +[...] +x +x +[...] +ana +KIMIN +{sum}S[AR +...] +i-di-k[a +... +i]š-tu# +na# +a[h? +...] +ba-lit-ta₅ +I₃# +[...] +x +{sig₂}AKA₃ +šu +x +[...] +ana +KIMIN +MUŠ.DI[M₂.GURUN.NA +ša₂ +EDI]N? +I₃.UDU-šu₂ +[...] +{na₄}KA.GI.N[A +... +in]a +PAD-šu₂ +x +[...] +ana +KIMIN +tam-šil +GAZ +si +x +[...] +x-di-im +a-šar +{na₄}A[D.BAR? +...] +pu-ṣa +bur-ru-mat +ba-li[t#?-ti? +ana +UG]U +ZU₂#-šu₂ +GAR-an +[...] +GIM +A +ša +ana +UGU +ZU₂#-šu₂# +[ŠUB +x] +x +ta#-tab#-bal#-[m]a? +tam#-ši#-i# +EN# +TI# +NU# +MAR#-šu₂ +TI# +ana +KIMIN +šu-ru-uš +{giš}NAM#.TAR# +NI[TA₂] +x +na# +ad# +da# +x +A# +ša₂# +ana +UGU +ZU₂-šu₂ +GIG +Š[UB] +ana +KIMIN +hu-um-bi-bi-tu₂ +tu-pa-ṣ[a +{si]g₂}AKA₃# +NIGIN# +ina# +I₃# +SUD +ana +ŠA₃ +GEŠTU-šu₂ +ša₂ +ZU₂-šu₂ +GIG +ŠU[B] +ana +KIMIN +{u₂}GAMUN.GE₆ +t[a-sa]k₃ +ana +UGU +ZU₂-šu₂ +GAR-a[n] +ana +KIMIN +{u₂}KUR.KUR +t[a-sa]k₃ +ana +UGU +ZU₂-šu₂ +ŠE[Š₂] +EN₂# +{d#}a#-nu#-ma# +{d#}a#-nu +{d}a-nu +pu-hur# +AN#-e# +{d}a-nu +pu#-hur# +KI-ti +KI-tu₄ +ib-ta-ni +tul#-t[a₅] +KI-tu₄ +ib-ta-n[i +b]u-ʾ-ša₂-nu +ša₂ +bu-ʾ#-ša₂#-ni +KALAG-an +DAB-su +GIM +UR.MAH +nap-ša₂-ta₅ +i#-ṣ[a?-bat?] +ki-ma +UR.BAR.RA +i#-ṣa#-bat +lu-ʾ-a +iṣ-bat +ap-pu +nu-ru-ub +ap-p[i? +UZ]U +MUR +ina +bi-rit +ZU₂.MEŠ +na-da-at +{giš}GU.ZA-šu₂ +sak-la +im-ti-ši +a-l[ak?-ta-šu₂ +up-p]u-tu₂ +im-ti-ši +re-bit +ERI-šu₂ +me-tu₄ +la +i-sa-ha-ra# +i[š?-tu +KI-ti₃ +{d}ku₃-bu +la +e-n]i-qu# +UBUR# +ša₂ +AMA-šu₂ +bu-ša-a-nu +a-a# +[GUR-ma +a-na +ṣib-t]i-šu₂ +E₂.GAL +x +x +[...] +ki-ma +mu-x +[...] +EN₂ +u[l +...] +EN₂# +{d?#} +[...] +[i-n]a? +ma#-har +{d}UTU +A +KUG.GA +ŠUB.ŠUB +EN₂ +an-ni-ta +3-šu₂ +[ŠID-nu +...] +e#-ma +ŠID-u₂ +LAGAB +MUNU₆ +ZU₂-šu₂ +DIRI-ma +ana +UGU +gul-gu[l-li +...] +gul-gul-lu +GIG +ZU₂.MU +tab-li +7-šu₂ +DUG₃.G[A-ma? +TI?] +EN₂ +ši +it-ta-ak-ru-ma +{giš}IG +UZU +{giš}SAG.KUL +GIR₃.PAD.DU +iš-tu +a-a-nu# +x +[x +x +(x)] +GIR₃.PAD.DU +UGU +ZU₂ +it-ta-bak +KUM₂ +UGU +SAG.DU +it-ta-bak +mu[r-ṣa] +man#-na +lu-uš-pur +ana +IBILA +ša₂ +KUR.RA +{d}AMAR.UTU +li-lap-pi-tu₄ +tu[l-ta₅] +tul#-tu₄ +ki-ma +šik-ke-e +lit-ta-ṣi +ṣer-ra-niš +TU₆.E[N₂] +DU₃.DU₃.BI +la-aš₂-ha +ša₂ +IM +KI.GAR +DU₃ +ana +ŠID.MEŠ# +ZU₂#.MEŠ-šu₂ +aš₂-na-an +tu-rat#-ta +KI +ZU₂-šu₂# +[G]IG-ti +ZIZ₂.AN.NA +GI₆ +ti-ret-ti +I₃.GIŠ +ZU₂-šu₂ +DIRI +ana +ŠA₃ +la-aš₂-hi +MU₂-ah +EN₂ +3-šu₂ +[ŠID-n]u +ana +HABRUD +ša₂ +{d}UTU.ŠU₂.A +GAR-an +ina +IM +IN.BUBBU +UŠ₂-hi# +[ina +{n]a₄}KIŠIB +{na₄}ŠUBA +u +{na₄}KA.GI.NA +KA₂-šu₂ +ta-bar-ram# +[EN₂ +IBIL]A? +E₂.MAH +IBILA +E₂.MAH +IBILA +GAL-u +ša₂ +{d}50 +at-ta-ma +[TA?] +[E₂?.KUR? +t]u?-ri#-dam-ma +ina +MURUB₄ +AN#-e +KI +{mul#}MAR.GID₂.DA +GUB-az-[ma?] +[DUG₄?.GA? +ka-li +i]k?-kal#-an-ni +li-is-ku-ta +at-ta-ma +[x?] +[ina +...] +x-ma +{uzu}UR₅.UŠ₂ +{uzu}UR₅ +NU +NAG/GU₇ +TU₆.EN₂ +[DU₃.DU₃.BI +la?-aš₂?-ha? +D]U₃-uš# +ana +ŠID.MEŠ +ZU₂.MEŠ-šu₂ +ZIZ₂.AN.NA +tu-rat-t[a +KI] +[ZU₂-šu₂ +GIG-ti +aš₂-na-a]n? +GI₆# +te-ret-ti +LAL₃# +u# +I₃# +BARA₂#.GA# +ZU₂-šu₂ +DIRI +[ana +ŠA₃] +[la-aš-hi +MU₂-ah +EN₂ +3-šu₂ +ŠID +ana +HABR]UD +{d#}UTU.ŠU₂.A +GAR-a[n +...] +[...] +x +x +x +[...] +ru +[...] +tak-k[u-...] +mi-n[a +...] +MAN +TAG +x +[...] +TA +NUMUN +x +[...] +a-na +ŠA₃ +Z[U₂-šu₂ +...] +lup-pu-ut +Z[U₂-šu₂ +...] +pa-šu₂ +an-na-x +[...] +na-ah-pi-i +AN +ŠU₂/BAR +GIN₇ +[{kuš}A.EDIN +...] +ka-inim-ma +ZU₂ +GIG# +[...] +EN₂ +ZU₂ +GIG +ZU₂ +GI[G +...] +[GI]G +ZU₂ +x +[...] +x +x +[...] +ka-in[im-ma +...] +ša₂ +n[a +...] +EN₂ +x +[x] +x +x +[...] +giš +[x] +x +ha +x +[...] +i +[x +i]š? +hu +k[al +...] +i +x +iš +la-aš₂-l[a? +...] +k[a-inim-m]a +ZU₂.GIG.GA#.K[AM₂ +...] +EN₂ +1#?-šu₂ +ana +UGU-šu₂ +ŠID-n[u +...] +EN₂ +{d#}UTU +aš-šum +ZU₂.MU +ša₂ +ik-ka[l-an-ni +...] +ša₂ +ki-is-pa#-at# +la +ak-si-pu-šu +u₃ +me#-e# +[la +aq-qu-šu₂ +...] +ZU₂ +sa-h[u +x +k]a-a-ša₂ +am-hur-ka +ak-t[a-la-šu₂ +u +ak-ta-ab-ba-x +...] +GIM +a-ša₂-šu₂ +[ZU₂-šu₂ +la +GU₇-šu₂] +a-a-ši +Z[U₂ +la +ik-kal-an-ni +TU₆.EN₂] +ka-inim-ma +Z[U₂.GIG.GA#.KAM₂? +...] +ina +še-rim +3#-[šu₂ +ŠID-nu +...] +EN₂ +TA +{d}A-nim +i[b-nu-u +AN-e +...] +eri-du₁₀ +ib-nu-u +gi +x +[...] +ki-ma +{mul}ni-bu-u₂ +x +[...] +ni-zi-iq +[...] +ka-inim-ma +ZU₂ +GIG.G[A.KAM +... +ku-pa-tin-ni +tu-kap-pat] +e-ma +ku-pa-tin-n[i +EN₂ +ŠID-nu +...] +ana +UGU +ZU₂ +GAR-ma +x +[... +ina-eš] +EN₂ +{d}A-nu +x +[...] +iš-tu +{d}a-nim +i[b-nu +...] +[ul-tu +{d}a-nu +ib-nu-u +an-e +an-u₂ +ib-nu-u +KI-tu] +[er-ṣe-tu +ib-nu-u +ID₂.MEŠ +ib-na-a +a-tap-pa-ti] +[... +a-tap-pa-t]i +ib#-na#-a?# +[ru-šum-ta] +[ru-šum-ta +ib-na-a +tul-ta₅ +il-lik +tul-ta₅ +ana +IGI +{d}UTU +i-ba]k-ki +ana +IGI +{d}E₂-a +il#-la#-ka?# +di#-ma#-ša₂# +[mi-na +ta-da-na +ana +a-ka-li-ya +mi-na]-a# +ta-da-na +ana +mun-zu-qi₂-ya +[at-tan-na-ki +{giš}PEŠ₃ +ba-ši-il-ta +ar-ma-na]-a# +{giš}HAŠHUR +[ana-ku +am-mi-na +an-na-a +{giš}PEŠ₃ +ba-ši-il-ta +u +ar-ma-n]a-a# +{giš}HAŠHUR +[šu-uq-qa-an-ni-ma +in +bi-rit +ZU₂ +u +l]a-aš₂-hi +šu-ši-ban-ni +[ša₂ +ši-in-ni-ma +lu-un-zu-qa +da-mi-šu₂ +u +ša₂ +la-aš₂-hi-ma +l]u-uk-su-sa +ku-sa-si-šu₂ +[ka-inim-ma +ZU₂.GIG.GA.KAM₂ +DU₃.DU₃.BI +KAŠ +DID]A +LAGAB +MUNU₆ +[1-niš +HI.H]I? +E[N₂? +3-šu₂ +ana +UGU +ŠID-nu +ana +U]GU +ZU₂-šu₂ +GAR-an +EN₂# +a#-ri#-ki# +[x] +ni-ba-ri-qi₂ +{giš}IG +UZU +{giš}SAG.KUL +GIR₃.PAD.D[U +ana +UZU] +e#-ru-ba +GIR₃.PAD.DU +iš-ši +iš-šu-uk +UZU +[ih-pi] +GIR₃.PAD.DU +a-na +ZU₂.MEŠ +it-ta-di +LIL₂?#-ta# +a[na +SAG.DU +it-ta-d]i +KUM₂# +man-nu +lu-uš-pur +a-na +{d}asal#-lu₂#-hi# +DUM[U +reš-ti-i +ša₂ +{d}E₂-a] +lu-še-bi-lam-ma +šam-me +TI.LA# +EN₂ +TI.LA +la/na#?-a#-d[i? +...] +TU₆ +ul +ya-at-tu +EN₂# +{d}40 +[u +{d}asal-lu₂-hi] +ši-pat +{d}da-mu +u# +{d#}nin#-kar#-ra#-ak?# +{d}gu-la +TI.LA-ma +NIG₂#.BA#-ki +li#-qi₂#-i# +TU₆.EN₂ +ka-inim-ma +ZU₂.GIG.GA.KAM₂ +DU₃#.DU₃#.BI +NU +SAR! +DIŠ +NA +gi-mer# +ZU₂.MEŠ-šu₂ +i-na-aš₂ +DUB.1#.KAM₂ +DIŠ +NA +ZU₂.MEŠ-šu₂ +GIG +E₂.GAL +{diš}AN.ŠAR₂-DU₃.A +20 +ŠU₂# +20# +KUR +AN.ŠAR₂{ki} +ša +{d}AG# +[u] +{d#}taš-me-tu₄ +GEŠTU.MIN +ra-pa-aš₂-tu₄ +iš-ru-ku-uš +e-hu-uz-zu +IGI.MIN# +na-mir-tu₄ +ni#-siq +tup-šar-ru-ti +ša +ina +LUGAL.MEŠ-ni +a-lik +mah-ri-ya +mam₂-ma +šip-ru# +šu#-a-tu +la +e-hu-uz-zu +bul-ṭi +TA +muh-hi +EN +UMBIN +liq-ti +BAR.MEŠ +ta#-hi-zu +nak-la +a-zu-gal-lu#-ut +{d}nin-urta +u +{d}gu-la +ma-la# +ba-aš₂-mu +ina +tup-pa-a-ni +aš₂-ṭur +as-niq +IGI.KAR₂-ma +a-na +ta-mar-ti +ši-ta-as#-si-ya +q[e₂-re]b +E₂.GAL-ya +u₂-kin +[x +x +x +x] +x +x +[...] +{u₂#}IN₆#.UŠ₂# +{u₂}SIKIL +SIG₇-su-nu# +tu#-has#-sa₃# +ina +x +[...] +5 +GIN₂ +ILLU +{šim}BULUH +5 +GIN₂ +DUH.LAL₃ +ana +{dug}B[UR?.ZI +...] +a-šar! +tar-ku-su +DU₈-ar₂ +TA +DU₈-ru +[...] +DIŠ +NA +I₃ +la-ta-ki +ŠEŠ₂-ma +SAG.DU-su +gu-[raš?-ta₅? +DIRI? +...] +LUH +tu-bal +EGIR-šu₂ +{u₂}kul₂-ba-na +HAD₂.A +GAZ +[...] +DIŠ +KIMIN +{u₂}IGI-lim +SUD₂ +ina +[...] +DIŠ +KIMIN +{u₂}LAG.GA₂ +SUD₂ +ina +x +[...] +DIŠ +KIMIN +{u₂}TAL₂.TAL₂# +[x] +x +[...] +DIŠ +NA +SAG.DU-[su +...] +UKUŠ₂#.HAB# +[...] +[...] +x +x +GE₆# +NIM# +SUD₂# +x +[...] +{u₂#}GA#.RAŠ#{sar#} +{kuš#}E.SIR +SUMUN +DIŠ-niš +HAD₂.A +tur-ar₂# +[...] +AN.NA +A.BAR₂ +AN.ZAH +DIŠ-niš +HI.HI +1-šu₂ +2-šu₂ +3#-[šu₂ +...] +DIŠ +KIMIN +IM.SAHAR.NA₄.KUR.RA +{u₂}LAG.GA₂ +SUD₂ +ina +I₃ +{giš}EREN +HI.HI +x +[...] +DIŠ +NA +ina +TUR-šu₂ +SAG.DU-su +še-bi-te +DIRI +ana +SIG₂ +BABBAR# +GE₆# +SAG#.DU +BURU₅#.HABRUD#.DA[{mušen} +...] +IGIRA₂{mušen} +laq-laq-qa +lu-u +x +[x +x +x] +x +[...] +ina +IZI +ŠEG₆-šal +gul-gul-la-šu₂-nu +TI-qe₂ +ina +I₃# +[...] +EN₂ +sag-ki +en-na +7-šu₂ +x +x +an# +x +x +x +x +[...] +EN₂ +sag-ki +en-na +ŠID-nu +[x +x] +x +[...] +DIŠ +KIMIN +SI +DARA₃.MAŠ +TI-qe₂ +KI +GIR₃.PAD#.DU# +x +x +[...] +ina +IZI +u₂-šar₂-rap +KI +I₃ +x +x +[...] +3 +UD-mi +SAG.DU-su +LAL₂-ma# +[...] +DIŠ +KIMIN +{u₂}MA₂.ERIŠ₄.MA₂-le-e +SAG.DU +ARGAB?#{mu[šen?} +...] +SAG.DU +BURU₅{mušen} +GE₆ +SAG.DU +BURU₅.HABRUD.DA{mušen} +SAG.DU +[...] +DIŠ-niš +tur-ar₂ +SUD₂ +ina +I₃.GIŠ +DU₁₀.GA +HI.HI +SAG.DU-su +SAR#-ab#-ma# +x +[...] +DIŠ +KIMIN +a-a-ar₂ +DINGIR +DAB-bat +ŠA₃-šu₂ +BAD-ti +TUN₂-šu₂ +x +šu₂ +u +x +x +[...] +2-na +ŠA₃-šu₂ +tu-tar +te-te-kip +ina +KI +ṣar#-hi +x +x +x +7 +UD-mi +x +[...] +ša₂ +ŠA₃-šu₂ +TI-qe₂ +HAD₂.A +tur-ar₂# +SUD₂ +ina +I₃.GIŠ +DU₁₀.GA +[...] +SAG.DU-su +SAR-ab +7 +UD-me +EŠ.MEŠ +LAL₂.ME[Š +...] +SIG₂# +BABBAR +GE₆ +EN +LAL₂-uš +EN₂ +ki-a-am +ŠID-nu# +[...] +DIŠ +NA +IGI-MEŠ-šu₂ +LU₃.LU₃ +LAL₃# +BABBAR +ina +I₃#.[NUN +1-niš +HE.HE +...] +e#-nu-ma +IGI-MIN-šu₂ +bu-ur-ṣa +id-da-nag-ga-la +ŠU.GI[DIM.MA +...] +ana# +TI#-šu₂ +{na₄}KA.GI.NA.DAB.BA +{na₄}AN.NA +{na₄}AN.Z[AH.GE₆ +...] +{na₄#}mu#-ṣa# +{na₄}ZALAG₂ +{na₄}ZA.GIN₃ +{na₄}ŠUBA +{na₄}BAL +URUDU.NITA +N[A₄ +...] +[NUMUN +{giš}Š]INIG +NUMUN +{giš}MA.NU +NUMUN +aš₂-li +NITA +{na₄}as₂-ha[r +...] +[ta-š]a-pah +ina +I₃.UDU +ELLAG₂ +GU₄ +GE₆ +GIN₇ +kam₂-ma +ina +UGU +URUDU +SUD₂-m[a +...] +[DIŠ +KIMIN] +NUMUN +{giš}ŠINIG +NUMUN +{giš}MA.NU +NUMUN +aš₂-li# +[NUMUN +...] +[NUMUN +{šim}L]I +GIN₇ +qu-ta-ri +IGI.MIN-šu₂ +u +SAG.KI +[...] +[DIŠ +NA +ŠU.G]IDIM.MA +DAB-su-ma +i-na +IGI +IGI.MIN-šu₂ +GIN₇ +nu-ri +x +[...] +[lu-u +GIN₇ +(...)] +x +x# +lu#-u +GIN₇ +UD₅ +GAR.GAR-an +NA +BI +Š[U?.GIDIM.MA +DAB-su +...] +[... +{ši]m}LI +{šim}GUR₂.GUR₂ +x +[...] +[...] +1-niš +SUD₂ +x +[...] +[...] +ILLU# +LI.[DUR +...] +[... +{d}]ID₂ +[...] +[...] +x +[...] +[... +M]AR? +[... +M]AR +[... +D]IRI +[... +M]AR +[...] +x +[x +(x)] +x +[...] +ZU₂.LU[M].M[A +...] +DIŠ +KIMIN +{giš}ŠINIG +[...] +EN₂ +ki +sa +di +x +[...] +a-da-pa-tu₄ +in-x# +[...] +KA.INIM.MA +IGI-MIN +a-pa-ti +IGI-MEŠ +a#-[ša-ti +...] +DU₃.DU₃.BI +7 +ŠE +ILLU +LI#.[DUR +...] +ina +GE₆ +ina +UR₃ +ana +IGI +MUL# +x +[...] +x +[...] +ina +še-ri₃ +la-am +{d#}UTU#.E₃# +U₂#.HI.A +an-nu#-[ti +...] +x# +x# +ana +ŠA₃ +ŠUB-di +IGI-MIN-šu₂ +MAR +EGI[R-šu₂ +DILIM₂ +A.BAR₂ +ul +DU₈-ar₂] +IGI-MIN-šu₂ +tu-šam-har +ina +A +GAZI{sar} +IGI-MIN-šu₂ +tu-ha-pa[p +...] +te-qi₂-it +IGI-MIN +ša +ŠU.GIDIM.MA +{na₄}mu-ṣa +NA₄ +[...] +{na₄}AN.ZAH.BABBAR +{na₄}AN.ZAH.GE₆ +KU₃.GAN +PA +{giš}NAM.TAR +NITA₂ +P[A +...] +PAP +11 +NA₄.MEŠ +u +U₂.HI.A +ŠEŠ +ana +A +ŠUB-di +ina +UL +tuš-bat +[...] +ana +I₃+GIŠ +ŠUB-di +IGI-MIN-šu₂ +ŠEŠ₂-aš +ana +KAŠ +ŠUB-di-ma +NAG# +ina# +G[U₂-šu₂ +ina? +KUŠ? +GA]R-an-ma +SILIM#-im +an-na-nam +ina +ITI.1.KAM₂ +UD.21.KAM₂ +D[U₃-ma] +i#-šal-lim# +DIŠ +KIMIN +NA₄ +SA₅ +ki-ma +bu-la-li +IGI-MIN-šu₂ +ŠEŠ₂-aš +DIŠ +K[IMIN +{na₄}m]u-ṣa-am +KIMIN +DIŠ +KIMIN +{na₄}kut-pa-a +ina +I₃.NUN +SUD₂ +KIMIN +DIŠ +KIMIN +{na₄}ZA.GIN₃ +KUR.R[A +ina] +I₃#.NUN +SUD₂ +KIMIN +DIŠ +KIMIN +{na₄}MUŠ.GIR₂ +KIMIN +DIŠ +KIMIN +šim-bi-zi-da₄ +ina +G[A +{munus}]U₂#.ZUG₂ +SUD₂ +IGI-MIN-šu₂ +ŠEŠ₂-aš +DIŠ +KIMIN +{na₄}ZU₂ +GE₆ +ina +I₃ +KUR.G[I +SU]D₂ +KIMIN +{šim}GUR₂.GUR₂ +mi-riq₂ +U₂ +a-ši-i +{u₂}K[UR.RA +GA]ZI{sar} +I₃.UDU +GI.MEŠ +{na₄}KA.GI.NA.DAB.BA +{na₄}mu-ṣa +I₃.GIŠ +MUŠEN#.HABRUD#? +LIBIR.RA +DUH.LAL₃ +11 +U₂.HI.A +ŠEŠ +rib-ku +ša +ŠU.GIDIM#.MA# +IGI-MIN-šu₂ +MAR-MEŠ-ma +TI +[...] +x +ina# +9 +U₄.K[AM? +...] +UDU#.SISKUR# +DU₃#-ma +UZU-šu-nu +[...] +UGU +ša +GIR₃.PAD.DU +LUGUD₂.DA +UDU# +x +[...] +GAMUN.GE₆ +A +{giš}NU.UR₂.MA +{giš}x +[...] +1-niš +HE.HE +ina +LAL₃ +I₃.NUN +I₃.GIŠ +EREN +S[UD₂? +...] +x +[...] +DIŠ +NA +IGI-MIN-šu₂ +la +ina-ṭa-la +NA +BI +UD.DA +TAB.BA# +1# +GIN₂# +U₅#.ARGAB#{mušen} +1/2 +GIN₂ +U₂.BABBAR +IGI.4.GAL₂.LA +{mun}eme-sal-li₃ +ina +LAL₃#.KUR +u +I₃.N[UN +SUD₂ +I]GI.MIN-šu₂ +MAR +DIŠ# +NA# +di-gi-il +IGI.MIN-šu₂ +ma-a-ṭi +I₃.UDU +MUŠ.GE₆# +{u₂#}IN#.NU.UŠ +Z[U₂.LUM.M]A? +{giš}ŠINIG +I₃#.UDU +UR.MAH +ILLU +{u₂}ti-ia₂-tu +UKUŠ₂#.LAGAB# +{šim#}HAB# +NAGA#.SI# +[U₂] +BABBAR +{mun}eme-sal-li₃ +{u₂#}GAMUN#.GE₆ +[mal-m]a-liš +ina +SAHAR +URUDU +ana +LAL₃ +KUR.RA +HE.HE +SUD₂ +MAR +Z[A.NA +te-p]u-uš +{u₂}ESI +NAGA.SI# +IGI.MIN-šu₂ +LUH-si +[EGIR-šu₂ +I]GI.MIN#-šu₂ +MAR-ma +UD?.x?.KAM₂? +x +[...] +x +ŠUB +EN +7-šu₂ +MAR# +EGIR#-šu₂# +DILIM₂# +A#.BAR₂# +ul# +DU₈#-ar₂# +[... +{ši]m}LI +NAGA.SI# +NU.LUH.HA +sah-le₂-e +[... +ina +...] +SILA₁₁-aš +LAL +[...] +x-ma# +IGI-šu₂ +[...] +x +x +{mun#}eme#-sal#-li₃# +[...] +x +SUD₂ +[... +ka-la +UD-me +X-šu₂ +KE]ŠDA +u₂-kal +[... +IG]I.MIN#-šu₂ +MAR.MEŠ-ma +TI +[... +ŠU] +{d#}šul-pa-e₃-a +{d#}IŠKUR# +ra#-hi#-iṣ# +[...] +ŠU +{d}15 +[... +i]na +NE +GAR-an +[... +SU]D₂? +MAR.MEŠ-ma +TI +[...] +x +mi +šum₄-ma +la +i-na-aṭ-ṭa-la +ŠU +{d}iš₈-tar₂ +[... +ina +LA]L₃ +u +I₃.NUN +SUD₂ +IGI-MIN-šu₂ +MAR-MEŠ-ma +TI +DIŠ +NA +ši-[li? +IGI-MIN-šu₂ +...] +x +x +x +x +x +NU +NA₂ +UGU# +mi-na-te-ši-na +DUGUD +I₃.UDU +MUŠ#.GE₆ +ina +I₃.NUN +LAL₃# +KUR-e +HE#.HE +te-qi₂ +DIŠ +NA +ši-li# +IGI#-MIN-šu₂ +šad-du-ma +KI.NA₂# +NU# +IL₂# +PA +{giš}ŠE.NU₂.A +PA +{giš}PEŠ₃ +PA +{giš}MI.PAR₃# +PA +GI.ZU₂.LUM.MA +ina +A +ina +NININDU# +UŠ₂#-ker +ana +ŠA₃ +ŠUB.ŠUB-šu₂ +A.GAR.GAR +MAŠ.DA₃# +ŠURUN# +GU₄ +1-niš +GAZ +SIM +KI +ZI₃ +ŠE.SA.A +HE.HE +ina +A# +GAZI#{sar} +SILA₁₁-aš +LAL +{u₂}ak-tam +ina +KAŠ +NAG-ma +TI +DIŠ +NA# +U₄# +DU₃#.A.BI +NU +IGI.DU₈ +GE₆ +DU₃.A.BI +IGI.DU₈# +{d#}30#-lu-ur-ma-a +DIŠ +NA# +U₄# +DU₃.A.BI +IGI.DU₈ +GE₆ +DU₃.A.BI +NU +IGI.DU₈# +{d}30-lu#-ur#-ma-a +DIŠ +NA +IGI#-MIN-šu₂ +si-lu-ur-ma-a +ma-ku-ut +ga-bi-di +ša +ANŠE +UZU +la-ba-ni-šu₂ +ina +ŠU#.SAR# +ta-šak-kak +ina +GU₂-šu₂ +GAR-an +A.GUB₂.BA.A +GIN-an +ina +še-ri₃ +{tug₂}ŠA₃.HA +ana +IGI# +{d#}UTU +LAL-aṣ +NIG₂.NA +{šim}LI +GAR-an +LU₂ +šu₂-a-tu₂ +ina +ku-tal +{tug₂}ŠA₃.HA +ana +IGI +{d}UTU +tuš-za#-as#-su +MAŠ.MAŠ +7 +NINDA +IL₂-ši +ša₂ +IGI-MIN-šu₂ +GIG +7 +NINDA +IL₂-ši-ma +M[AŠ.MAŠ? +a]na +{lu₂}TU.RA +mu-uh-ra +nam-ra +i-ni +i-qab-bi +[{lu₂}TU.R]A +ana +MAŠ.MAŠ +mu-uh#-ra# +bal-ṣa +i-ni +i-qab-bi +[DIŠ +NA +IGI.MIN-šu₂ +si-lu-ur-ma-a +m]a-ku-ut +ga-bi-di +ta-har-ra-aṣ +[... +M]AŠ? +{lu₂}TUR-MEŠ +tu-pa-har-ma +ki-a-am +i-qab-bu-u +[...] +i#-qab-bu-u +I₃.NUN +u +I₃.GIŠ.SAG +1-niš +HE.HE +IGI-MIN-šu₂ +MAR-MEŠ +[DU₃.DU₃.BI +(...)] +šu-a-tu +ŠU.BI.GIN₇.NAM +[EN₂ +... +še?-me-ma? +mu]-uh₂-ra +{d}E₂-a +liš-ma-a +{d}E₂-a +lim-hu-ra +[... +a-m]ur +nam-ra +i-ni +a-mur +bal-ṣa +i-ni +TU₆ +EN₂ +[DU₃.DU₃.BI +...] +7#? +ŠU.SI +ha-še-e +TI-ma +EN₂ +an-ni-tu₂ +[ŠID-nu +... +ina] +{giš}IG +ina +ŠU-šu₂ +GAR-ma +GU₇ +[...] +x +PA +ma-ku-ut +ga#-bi#-di# +e#-ma# +her-ṣi +[ta-har-ra-aṣ +...] +NUNDUM#-šu₂ +u₃# +[...]-ma# +ina#-eš# +[...] +x +GI +mi-na-t[a? +...] +x +x +[x] +[...] +PA +ŠE#.SA#?.A#? +[...] +DILIM₂ +A.BAR₂ +GIN₇ +NIG₂#.[SILA₁₁.GA₂?] +GAR#-nu +{šim}LI +{šim}GUR₂.GUR₂ +U₂# +[...] +GAZI{sar} +NAG[A.SI +Z]A₃.HI#.LI +U₂ +a-ši-i +PIŠ₁₀-{d}ID₂ +UH₂-{d}ID₂ +ES[IR +...] +I₃.UDU +ELLAG₂ +GU₄# +1#-niš# +ta#-sak₃ +ana +ŠA₃ +A.BAR₂ +ŠUB-ma +ŠU.SI +[MAR?] +te-qi₂-tu +ša-lim-tu +ša +ŠU +UM.ME.A +la-te-ek +ba-r[i] +GAZI{sar#} +ZA₃#.HI.LI +{u₂}KUR.KUR +{u₂}MAŠ.TAB.BA +{šim}GUR₂.GUR₂ +DUH.LAL₃ +U₂.KUR.RA +I₃.UDU +{šim}GIG +NUMUN +{šim#}LI# +9# +U₂.HI.A +rib-ku +ša +IGI-MIN +{u₂}KUR.RA +sah-le₂-e +GAZI{sar} +{u₂}NU.LUH.HA +{u₂}KUR.KUR +{u₂}MAŠ.TAB.BA +kam-mu +{šim}GUR₂.GUR₂ +{u₂}HAR.HAR +ina +DE₃ +ŠEG₆-šal +ina +I₃.GIŠ +u +DUH.LAL₃ +BABBAR +SUD₂ +9 +U₂.HI.A +ša +nap-šal-ti +lu-ub-ki +{u₂}KUR.RA +{u₂}KUR.KUR +GAZI{sar} +{u₂}MAŠ.TAB.BA +{šim}SES +NUMUN +{šim}LI +kam-mu +ša₂ +AŠGAB +7 +U₂.HI.A +rib-ku +ša +IGI.MIN +ina +NE +ta-qal-lu +ina +I₃.UDU +GAB.LAL₃ +u +I₃.NUN +SUD₂ +IGI-MIN-šu₂ +MAR +{na₄}AN.ZAH.GE₆ +tuš-ku +{na₄}as-har +{na₄}mu-ṣa +NAGA.SI +{šim}GUR₂.GUR₂ +U₂ +BABBAR +ZA₃.HI.LI +kam-mu +PIŠ₁₀-{d}ID₂ +I₃.UDU +GU₄ +A.GAR₅ +DILIM₂ +A.BAR₂ +ŠU +{lu₂#}A#.ZU# +AN.ZAH.GE₆ +PIŠ₁₀-{d}ID₂ +ku-up#-r[a +...] +{u₂}GAMUN.GE₆ +GAZI{sar} +Z[A₃.HI.LI +...] +I₃.UDU +GU₄ +I₃.UDU +GIR₃.PAD.D[U +...] +it-qur-ti +IR#? +[...] +{šim#?}GUR₂#?.[GUR₂? +...] +[DIŠ] +x +x +x +(x) +[...] +UD-ma +DU₃-šu₂# +[...] +{u₂}ak-tam +SUD₂ +ina +KAŠ +ŠEG₆ +x +[...] +BABBAR.HI{sar} +ta-sak₃ +LAL +{giš}si-ha +{giš}a[r-ga-nu +...] +I₃.UDU +ELLAG₂# +SA₅ +ina +UD.DA +ŠUB +i#-n[a? +DILIM₂ +A.BAR₂ +SUD₂ +IGI-MIN-šu₂ +MAR] +DIŠ +NA +IGI-MIN-šu₂ +GIG-ma +u₃ +DUL +{šim}ŠE#.L[I? +... +su-pa-la +SIG₇-su] +ina +A.MEŠ +LUH-si +LAL-id +GURUN +{u₂}UKUŠ₂.LAGAB +U₂#-[BABBAR +SUD₂ +... +IGI-MIN-šu₂ +te-qi₂] +DIŠ +NA +IGI-MIN-šu₂ +GIG-ma +UD-MEŠ +ma-ʾ-du-ti +NU +BA[D +ina +KUM₂ +SAG.DU-su] +SAR-ab +ina +UD-me +3-šu₂ +NIG₂.SILA₁₁.GA₂ +tu-kaṣ₃-ṣa +[ina +I₃.NUN] +DILIM₂ +A.BAR₂ +ta-sak₃ +IGI-MIN-šu₂ +[te?-qi₂?-ma? +ina?-eš?] +DIŠ +NA +IGI.MIN-šu₂ +ta-bi-la₁₂ +GIG +SUM.SIKIL-la# +u₂-haš-ša₂ +ina +KAŠ +NAG +I₃.GIŠ +ana +Š[A₃ +IGI-MIN-šu₂ +MAR-ru-ma? +...] +ZI₃ +NA₄ +ZU₂#.LUM#.MA# +tur#-ar₂# +SUD₂# +ina# +A# +GAZI#{sar#} +ta#-la-aš +tu-kap-pat +l[a-a-am +pa?-tan? +u₂?-al?-lat?] +BIL.ZA.ZA +S[IG₇ +ta-ṣa-lip] +ZI₂-su# +ina +I₃#.[NUN +HE.HE +IGI-MIN-šu₂ +te-qi₂] +5 +SILA₄!(KISAL) +ZI₃ +[GU₂.GAL +6 +SILA₄!(KISAL) +ZI₃ +GAZI{sar} +5 +GI]N₂ +ZA₃.HI.LI# +in[a +A +G]AZI{sar} +SI[LA₁₁-aš +SAG.KI-šu₂ +IGI-MIN-šu₂ +LAL] +E[N₂? +...] +x +x +i-ru-p[u +e-gu-ma] +[... +e-l]i? +A?# +[...] +[...] +[...] +[...] +[...] +[DIŠ +NA +IGI-MIN-šu₂ +MUD₂ +DIRI-ma +ur-ra +u +GE₆ +la +i-ṣal-lal-ma +... +šum₄-ma +Š]A₃? +IGI?#-MIN?#-š[u₂? +SA₅] +[IGI-MIN-šu₂ +DUL-ma +GAZI{sar} +tur-ar₂ +... +ŠU]RUN +UDU# +ina +GA +{munus}U₂.ZU[G₂ +SILA₁₁-aš +LAL-id] +[ina +še-ri₃ +DU₈-šu₂-ma +{na₄}as₃-har +ina +I₃.NUN +SUD₂ +IGI.MIN-šu₂ +MAR +(...) +SUHU]Š? +U₂# +ra#-pa#-di# +ina +GIR₂ +ZA[BAR +KUD-iṣ?] +[DUR +{sig₂}HE₂.MED +u +SI]G₂ +BABBAR# +NIGIN#-m[i? +tar]a-kas₃# +SAG.KI-MEŠ-šu₂ +ki-lal₂-t[an? +...] +[...] +E₃-ma?# +IGI-MIN-šu₂ +t[e?-(eq)-qi₂] +[DIŠ +NA +IGI.MIN-šu₂ +MUD₂ +šu-u]n-nu-ʾa +NUMUN +{giš}NIG₂.GAN₂#.GAN₂ +LAL₃-KUR.RA +SAHAR.KU₃.GI +HE.H[E +...] +[1 +GIN₂ +U₅.AR]GAB{mušen} +SA₉ +SILA₄!(KISAL) +U₂-BABBAR# +IGI.6.GAL₂.LA +{mun}eme-sal-li₃# +i[na? +I₃.NUN +SUD₂ +IGI.MIN-šu₂ +MAR] +[U₂.BABBAR +ta-b]i?-la₁₂ +ana# +ŠA₃# +IGI#.MIN#-šu₂# +MAR-ru +ŠIM.BI.SIG₇.SIG₇ +ina +I₃#.[NUN +...] +[ŠE₁₀ +EME.ŠID] +ina +I₃#.UDU# +[GI]R₃?.PAD#.DU# +LUGUD₂#.DA +SUD₂ +la +pa-tan +[...] +[5 +ŠE +U₂.BABBAR +ina +I₃.GIŠ +S]UD₂ +IG[I.MIN-šu₂] +MAR# +[U₅].ARGAB#{mušen} +ina +I₃.NUN +S[UD₂ +IGI.MIN-šu₂ +MAR] +[DIŠ +NA +IGI.MIN-šu₂ +MUD₂ +DIRI +ŠI]M.BI.SIG₇.SIG₇# +ina# +I₃#.NUN# +SUD₂ +MAR +{u₂#}IN#.NU#.UŠ# +{u₂}tar-muš₈ +mal-ma-liš +HE.HE +i[na +I₃.NUN +ni-kip-tu₄ +NITA₂ +u +MUNUS +SUD₂ +IGI.MIN-šu₂ +MAR] +[... +IGI.MIN-šu₂] +MAR? +[... +ana +ŠA₃ +IGI.MIN-šu₂ +t]a-zar#-ri +[... +ZA₃.HI.L]I{sar#} +U₂ +a-ši-i +[...] +x +ina +um-ma-tu +ina +A +GAZI{sar} +LUH +[... +ta-bi-l]a₁₂ +ta-ṭe-ep-pi +[DIŠ +NA +...] +x +u# +I₃#.GIŠ# +SUD₂# +te#-te#-ne₂-eq-qi₂ +[DIŠ +KIMIN +...] +x +[x +SU]D₂ +MAR#-MEŠ# +[DIŠ +KIMIN +... +U₂.BABBAR +ta-b]i-la₁₂ +ana# +ŠA₃# +IGI#.MIN#-šu₂# +MU₂#-ah +[DIŠ +NA +IGI.MIN-šu₂ +GIG? +... +{u₂}EME.U]R.GI₇ +{u₂}IN₆.UŠ +ina +ZI₃.KUM +HE.HE +ina +GEŠTIN +N[A]G? +[U₂.BABBAR +... +{na₄}a]s-har +ina +I₃.NUN +SUD₂ +te-qi₂# +[DIŠ +NA +IGI.MIN-šu₂ +GIG +...] +x-šu₂# +pa-na +pa-ni +GAR-an +tara-kas₂ +[... +{n]a₄}as-har +ina +I₃.NUN +SUD₂ +MAR +[DIŠ +NA +IGI.MIN-šu₂ +šik-na +ša₂ +MUD₂ +šak-na +U₂.BABBAR +U₅.A]RGAB{mušen} +{mun}eme-sal-li₃ +{u₂}KUR.RA +[{u₂}KUR.KUR +{šim}GUR₂.GUR₂ +I₃.UDU +{šim}GIG +7 +U₂.HI].A# +an-nu-ti +1-niš +ta-mar-raq +ina +ZI₂ +UDU.NITA₂? +[... +ina +A +GAZ]I{sar} +ta-sa-pan +IGI.MIN-šu₂ +MAR +[3 +GIN₂ +U₅.ARGAB{mušen} +SA₉ +GIN₂ +U₂.BABBAR +in]a +LAL₃.KUR.RA +SUD₂ +IGI.MIN-šu₂ +MAR +an-nu-u +šam-mi +UD.20.KAM₂ +[EN₂ +ib-da-du +numun +... +ina +k]i?-i#-ri +ba-la-ṭi +[ba-la-ṭi +na-ap-ši-ir +ba-la]-ṭi₃ +na#-ap-ši-ir +[ba-ʾ-la-at +ina +it-ti +a-ma-lik +... +MU]NUS? +NU# +U₃.TU +ak#+la₂# +me#-ṣa +ma-a-du +TU₆.EN₂ +[KA.INIM.MA +IGI.MIN-šu₂] +MUD₂ +DIRI.MEŠ +[DU₃.DU₃.BI +SUHUŠ +{u₂}HA +SAHAR +x +{u₂}ZA.GIN₃.NA +tara-kas₂ +14 +K]A.KEŠDA# +KEŠDA +e-ma +KEŠDA +EN₂ +ŠID-nu +ina +SAG#.KI-šu₂ +tara-kas₂ +[EN₂ +hu-ha-hi +la +ba-ma +hu-ha-hi +la +ba-ma +u +A.G]A.AŠ₂#.GA +TIL.LA +A.GA.AŠ₂.GA +TIL.LA +TU₆#.EN₂# +[KA.INIM.MA +DIŠ +NA] +IGI.MIN-šu₂ +MUD₂# +DIRI#.MEŠ# +[DU₃.DU₃.BI +{na₄}as₂-har +ina +I₃.NUN +SU]D₂ +ana# +ŠA₃# +IGI#.MIN#-šu₂# +ŠUB# +[EN₂ +igi +ti-la +a-ga +ti-la +geštu +kun₂-na +a-ga +kun₂-n]a +u₂#-hu#-ur#-sag#-gi#-na-ta +[ša-hi +šur-ra-ta +kuš-ri-in +kuš-ri-in-ni +še]-e#-ru +še-e-ra +e-kal +da-mu +[da-ma +i-na-ṣab +SA-a-nu +SA-a-nu +u₂-qa-an-n]a-an +ŠUB-di +{d}gu-la +TU₆ +TI.LA +en#-qu-ti +[ṣi-im-de-ti +li-qer-ri-bu +at-ti +taš-ku]n? +ba-laṭ +bu-ul-ṭi₂ +TU₆.EN₂.E₂.NU.RU +[KA.INIM.MA +DIŠ +NA] +IGI.MIN-šu₂ +MUD₂ +DIRI.MEŠ +[KID₃.KID₃.BI +3 +ŠE +NAGA.SI +3 +ŠE +ILLU +LI.TAR +3 +ŠE +ŠE₁₀ +EME.ŠID +1-niš +SU]D₂ +[ina +G]A +UD₅ +tara-bak +IGI.MIN-šu₂ +LAL# +[DIŠ +NA +IGI.MIN-šu₂ +GIG-ma +MUD₂ +DIRI +{šim}BULUH.HI.A +MUD₂ +ul-ta-ta-ni-ʾa +MUD₂ +ER₂ +ina +Š]A₃ +IGI.MIN-šu₂ +E₃#-a# +[GISSU +{d}LAMA +IGI.MIN-šu₂ +u₂-na-kap +a-ši-tu +ana +GISSU +GUR +di-gal₉ +DUGUD-šu₂ +{giš}ŠI]NIG +SIG₇#-su# +tu#-ha#-sa# +[ina +A.GEŠTIN.NA +KALA.GA +tara-muk +ina +UL +tuš-bat +ina +A₂.GU₂.ZI.G]A +ana +ŠA₃ +hu-li-ia-am +SUR-at +[IM.SAHAR.BABBAR.KUR.RA +U₂.BABBAR +{mun}eme-sal-li₃ +I₃.UDU +tuš-ka-a +{u₂}z]i-ba-a +ILLU +URUDU +a-he-nu-u₂ +SUD₂ +[mal₂-ma-liš +TI-qe₂ +1-niš +tuš-te-mid +ana +ŠA₃ +hu-l]i-ia#-am +ša +ta-aš₂-hu-tu +DUB-ak +[ina +I₃.NUN +u +{na₄}ŠU.MIN₃ +SILA₁₁-aš-ma +SAG +IGI.MIN-š]u₂ +ina +ŠU.SI +BAD-te +ana +ŠA₃ +IGI.MIN-šu₂ +GAR-an +[IGI.MIN-šu₂ +DUL-ma +u₂-kal +IGI.MI]N-šu₂ +ta-kar-ma +UD.9.KAM* +an-na-a +DU₃.MEŠ +[DIŠ +KIMIN +{šim}SES +U₂.BABBAR +{mu]n}eme-sal-li₃ +ina +MUD +Z[ABAR +ana +ŠA₃ +IGI].MI[N-šu₂ +BUN₂] +[DIŠ +NA +MIN +ILLU +URUDU +U₂.BABBAR +SU]D₂? +[ina +MUD +ZABAR +ana +ŠA₃ +IGI.MIN-šu₂ +BUN₂] +[DIŠ +NA +MIN +{u₂}ur₂-ne₂-e +U₂.BABBAR +S]UD₂ +ina# +MUD# +ZABA[R +ana +ŠA₃ +IGI.MIN-šu₂ +BUN₂] +[EN₂ +igi +bar +igi +bar-bar +igi +b]ar-ra +bar-bar +igi +huš +igi +huš-huš +igi +bar-ra +h[uš-huš] +[igi +bar +na₂-a +igi +bar +d]a-a +igi +bar +hul-a +IGI.MIN +a-ba-tu +IGI.MIN +a-ša#-[tu] +[... +šu-h]ar-ra-te +IGI.MIN +GIN₇ +nik-si +UDU.NITA₂# +MUD₂# +še#-en#-a# +[GIN₇ +A.MEŠ +ša₂ +a-gala-pe-e +a-la-p]a-a +ŠUB-a +ki-ma +DUG +A.GEŠTIN.NA +ŠUB#-a# +ṣil-la +[ina +be-ri-ši-na +pi-ti-i]q-tu₄ +pat-qat +KU₄-ub +{d}GIR₃ +ina +be-ru-ši-na +it-ta-di +{giš}GU.ZA-šu₂ +[aš₂-šum₂ +an-ni-tu +ina +ŠA₃ +an-ni-te] +la +na-pa-še +EN₂ +ul +ia#-at#-tu#-un# +EN₂ +{d}e-a +u +{d}asal-lu₂-hi +[EN₂ +{d}da-mu +u +{d}gu-l]a +EN₂ +{d}nin-girima₃ +be-let +šip-te +{d}gu-la +TI-ma +NIG₂.BA-ki +TI +TU₆.EN₂ +[KA.INIM.MA] +IGI +GIG.GA.A.KAM₂ +[DU₃.DU₃.BI +an-nu]-u₂# +ša# +SIG₂# +BABBAR# +DUR# +NU#.NU# +7# +KA#.KEŠDA# +KEŠDA# +e-ma +KEŠDA +EN₂ +ŠID-nu +ina +IGI-šu₂ +TI#.LA#-ti# +KEŠDA#-su# +[EN₂ +igi +bar +igi +b]ar-bar +igi +bar-ra +bar-bar +igi +huš +igi +huš +igi +bar-ra +huš-huš +igi +bar +na₂-a +igi] +bar +da-a +igi +bar +hul-a +IGI.MIN +a-ba-a-tu +IGI#.MIN# +a#-ša-tu +IGI.MIN +ša +MUD +DIRI-a +[ana-ku +...] +x +50 +NA +50 +sa-niq +qa₂-bu-u₂ +ša₂ +{d}gu-la +2#-ma# +ši#-na#-m[a +ah]-ha-a-tu₄ +ina +be₂-ru-ši-na +pa-rik +KUR-u₂# +man-na +lu-uš-pur +ana +DUMU.MUNUS +{d}a-nim +ša₂ +AN-e +liš-ša₂-ni? +tal-l[i-š]i-na +{na₄}NIR₂ +DUG.MEŠ-ši-na +{na₄}ZA.GIN₃ +eb-bu +li-sa-pa-a-ni +A.MEŠ +A.AB.BA +ta-ma-ti +DAGAL-ti +ša +ha-riš-t[u? +l]a? +u₂-ri-du +a-na +lib₃-bi +mu-suk-ka-tu +la +LUH-u +qa-te-ša₂ +lim-la-ni-im-m[a? +l]i-ke-eṣ-ṣa-a +KUM₂ +ṣi-ri-ih-tu +ša₂ +ŠA₃ +IGI.MIN-šu₂ +EN₂ +ul +ia-a[t-tu-un +E]N₂ +{d}40 +u +{d}asal-lu₂-hi +EN₂# +{d#}da#-mu +u +{d}gu-la +EN₂ +{d}nin-gi[rima₃ +be-let +šip-t]e +{d#}gu#-la# +TI#.L[A-ma +NIG₂.BA-k]i? +[TI]-i# +TU₆#.EN₂# +KA.INIM.MA +[IGI +GIG.GA.A.KAM₂] +DU₃.DU₃.BI +an-nu-u₂ +š[a +SIG₂ +SA₅ +DUR +NU.NU +7 +KA.KEŠDA +KEŠDA +e-ma +KEŠDA +EN₂ +ŠID-nu +ina +IGI-šu₂ +GIG-ti₃ +KEŠDA] +EN₂ +igi +bar +igi +bar-bar +i[gi +bar-ra +bar-bar +igi +huš +igi +huš-huš +igi +bar-ra +huš-huš] +igi-bar +na₂-a +igi-ba[r +da-a +igi-bar +hul-a +IGI.MIN +a-pa-tu +IGI.MIN +a-ša-tu] +IGI#.MIN# +pur#-sit₂# +MUD₂# +[šu-te-eṣ-li-pa-a-tu +am-min₃ +tab-b]a-a# +am#-min₃# +taš#-ša₂#-a# +[am-mi₃-ni +ik-kal-ki-na-ši +ba-a-ṣu +ša +na-a-ri +t]al-tal-lu-u₂ +ša₂ +{giš}GIŠIMMAR +[ša₂ +ti-it-tu +ni-iq-qa-ša₂ +ša₂ +a-ri-i +IN.NU-š]u +al-si-ki-na +al-ka-n[i] +ul# +al#-si#-[ki-na-ši +ul +ta-la-ka-ni +la-am +it-b]a-ki#-na#-ši# +IM#.1# +IM#.2# +IM#.3# +[IM.4 +EN₂] +KA.INIM.MA +IGI +GIG.GA.[KAM₂] +DU₃.DU₃.BI +SIG₂ +SA₅ +SIG₂# +B[ABBAR +a-he-en-na-a +NU.NU] +7# +u +7 +KA.KEŠDA +KEŠDA +e-ma +KEŠDA +EN₂ +Š[ID-nu] +DUR +SIG₂ +SA₅ +ina +IGI-šu₂# +G[IG-ti₃ +KEŠDA +D]UR +SIG₂ +BABBAR +ina +IGI-šu₂ +TI.LA +KEŠDA-ma +i[na-eš] +EN₂ +igi +bar +igi +bar-bar +igi +bar-r[a +bar-bar +igi +h]ul +igi +hul-hul +igi +bar-ra +hul-h[ul] +ši-it-ta-ši-na +DUMU.MUNUS +{d}[a-ni +in]a +be#-ru-ši-na +pi-tiq-tu₄ +pat-qa[t] +ul +il-lak +a-ha-tu +a-n[a +le-e]t +a#-ha-ti-ša₂ +man-na +lu-uš-pur +a-na +DUMU.MUNUS +{d}a-ni₃ +ša₂ +AN#-e# +liš-ša₂-ni +kan-ni-ši-na +{na₄}N[IR₂] +DUG.MEŠ-ši-na +{na₄}ZA.GIN₃.DURU₅ +eb-bu +li-is-sa-pa-ni-im-m[a] +li-be-la-a +IGI.MIN +a-ba-ti +IGI.MIN +a-ša₂-ti# +u₃# +dal-ha-a-ti +TU₆#.EN₂ +KA#.INIM#.MA# +IGI +GIG.GA#.A#.KAM₂ +DU₃.DU₃.BI +ŠU.BI.GIN₇.NAM# +EN₂ +igi +bar +igi +bar-bar +igi +bar-ra +bar-bar# +igi +suh₃ +igi +suh₃-suh₃ +igi +bar-ra +suh₃-su[h₃] +ši-it-ta +i-nu +a-ha-tu +ši-[na]-ma +ina +be-ru-ši-na +KUR-u₂ +pa-ri[k-ma] +UGU-nu-ši-na +ki-ṣir-tu +kaṣ₃#-rat# +KI.TA-nu-ši-na +pi-tiq-tu₂ +pat-[qat] +a-a-u₂ +IM-ši-na-a-ma +a-a-u₂ +NU +IM-ši#-n[a-ma] +a-a-u₂ +IM +ti-bi-ši-na +a-a-u₂ +la-a +IM +ti-b[i-ši-na-ma?] +ša#-ar +pa-ni +i-kil₂ +pa-ni +ṣu-lu-u[m? +p]a?-n[i?] +a[t?-ta +p]u-ṭu[r +{d}AMAR?.UTU +TU₆.EN₂] +[KA.INIM.M]A +IGI +GIG.GA.A.K[AM₂ +DU₃.DU₃.BI +ŠU.BI.GIN₇.NAM] +[EN₂ +igi +bar +ig]i +bar#-bar# +x +[...] +[...] +x +[DU₃.DU₃.BI +...] +a#-he#-en#-na#-a# +[N]U.NU +[...] +ina +SAG.KI-šu₂ +KEŠDA-su# +[EN₂ +...] +x? +IGI +NU +TUK-a +TU₆.EN₂ +[DU₃.DU₃.BI +... +ina +SAG.KI-šu₂] +ša₂ +ZAG +[EN₂ +... +ta-ma-ad-r]a-aš₂ +ta-ma-ad-ra-aš₂ +tu₆-en₂ +[DU₃.DU₃.BI +... +ina +SAG.KI-šu₂?] +ša₂ +GUB₃ +[KA.INIM.MA +IGI +GIG.GA.KAM₂ +DU₃.D]U₃.BI +ŠU.BI.GIN₇.NA[M] +[EN₂ +... +g]ub-ba-a +gub-b[a-a] +[{d}AMAR.UTU +ip-pa-lis-su-ma +ana +{d}e₂-a +AD-š]u₂? +i-ša₂-as#-[si] +[mi-na-a +e-pu-uš +ul +i-di +ša +ana-ku +i-du-u +at-ta] +ti#-di# +T[U₆.EN₂] +[DU₃.DU₃.BI +SI]G₂ +SA₅ +SIG₂# +BABBAR# +1#-[niš +NU.NU +7 +u +7 +KA.KEŠDA +KEŠDA] +[e-ma] +KEŠDA +EN₂ +ŠID#-nu# +i[na +SAG.KI.MEŠ-šu₂ +KEŠDA-ma +ina-eš] +[EN₂ +i-gi +t]i-la +a-ga +ti-la +i-gi +kun₂-na +a#-[ga] +kun₂#-n[a +ur-sag +gi-na-zu +gi +ban₃-da-zu +tu₆-en₂] +[KA.IN]IM.MA +IGI +GIG.GA.A.KA[M₂ +DU₃.DU₃.BI +[ŠU.BI.GIN₇.NAM] +[EN₂ +pa-l]a +huš# +pa-la +huš +pa-la +huš-bi# +ni[g₂-gi-n]a-bi +i-gi +pa-la +huš#-b[i +tu₆-en₂] +[KA.INIM.MA] +IGI# +GIG#.GA.A.KAM₂# +DU₃#.DU₃.BI +ŠU#.BI.A[Š.AM₃] +[EN₂ +i]-ni +eṭ-li +GIG-at# +i#-n[i +{munus}K]I.SIKIL +GIG-at +i-ni +GURUŠ +u +{munus}KI.SIKIL +man-nu +u₂#-[bal-liṭ] +[ta-š]ap-par₂ +i-le-qu-ni-ku +ŠA₃# +KU₃#-ti# +{giš#}GIŠIMMAR# +ina# +pi#-i#-ka# +te#-he#-pi# +ina# +ŠU#-ka# +te#-pe#-ti[l] +[GURUŠ +u +K]I.SIKIL +ina +SAG.KI.MEŠ-šu₂-nu +tu-ka-ṣar +IGI +GURUŠ +u +KI.SIKIL +i-bal-lu-uṭ +TU₆.EN₂# +[KA.I]NIM.MA +IGI +GIG.GA.A.KAM₂ +DU₃.DU₃.BI +ŠU.BI.AŠ.BI.AM₃ +[e]n₂ +an-na +im +ri-a +igi +lu₂-ka +gig-ga +ba-an-gar +ina +ša₂-me-e +ša₂-a#-ru +i-zi-qam-ma +ina +i-in +LU₂ +si-im-me +iš-ta-kan +an#-ta +su₃-da-ta +im +ri-a +igi +lu₂-ka +gig-ga +ba-an-gar +iš-tu +AN-e +ru-qu-ti +igi# +gig#-ga +gig-ga +ba-an-gar +[...] +i#-ni +mar-ṣa-a-ti +si-im-ma +iš-ta-kan +[lu₂-b]i +igi-bi +lu₃-lu₃-a +igi#-bi# +ba-an-suh₃#-suh₃ +[ša₂ +LU₂ +šu]-a#-tu₂# +i-da-šu₂ +da-al#-h[a +ša₂ +i-n]a-š[u₂] +a-ša₂-a +lu₂#-u₁₈#-lu#-bi# +ni₂#-te#-a#-ni#-še₃# +er₂# +gig# +i₃#-šeš₂#-šeš₂# +LU₂ +šu-u₂ +ina +ra-ma-ni-šu₂ +mar-ṣi-iš +i-b[ak-ki] +lu₂-bi +tu-ra-a-ni +{d}engur-ke₄ +igi# +im#-ma#-a[n?-si₃] +ša₂ +LU₂ +šu₂-a-tu₄ +mu-ru-us-su +{d}MIN +i#-mur#-ma# +gazi{sar} +kum-ma₃ +šu# +u₃-me-ti +ka-si-i +haš-lu-ti +le-qe₂-ma +tu₆-tu₆ +abzu-ta +u₃-me-ni-si₃ +ši-pat +ap-si-i +i-di-ma +igi +lu₂-ka +u₃-me-ni-kešda +i-ni +a-me-li +ru-kus-ma +{d}engur +lu₂ +šu +ku₃-ga-na# +igi# +l[u₂-ba-ka +šu +tag-g]a-ni-ta +{d}MIN +ina +ŠU-š[a₂ +KU₃-ti +i-in +a-me-li₃ +ina +l]a-ba#-ti-ša₂ +im +igi +lu₂-k[a +su₃-su₃ +igi-bi-ta +ba-ra-a]n-e₃ +ša₂-a-ru₃ +ša₂ +i#-[in +a-me-li₃ +ud-du-pu +ina +i-ni-šu₂ +lit-t]a-ṣi +KA#.I[NIM.MA +IGI +GIG.GA].A#.KAM₂ +[EN₂ +i-nu +a-pa-tu₂ +i-nu +a-ša₂-tu₂ +i-nu +pur-si-in-di +da-a-mi +šu-har-ri-a-t]u₄ +[KU₃.G]AN +U₅-ARGAB#{mušen#} +I₃#.UDU +GIR₃.PAD.DA +LUGUD₂.DA +ša +[UDU +... +SUD₂ +...] +[Š]IM.BI.KU₃.GI +SUD₂ +ina +{g[i}SAG.KUD +ana +ŠA₃ +IGI-MIN-šu₂ +BUN₂] +kun#-ša₂₅ +SAG.DU-su +KEŠDA +10 +SILA₄!(KISAL) +I₃+GIŠ# +SA₉# +SILA₄!(KISAL#) +x +[... +ana +SAG.DU-šu₂ +DUB-ak +...] +UD.3.KAM@v +DU₃.DU₃-uš +ZA₃.HI.LI +tur#-ar₂# +SUD₂ +[...] +x +DIŠ +NA +IGI-MIN-šu₂ +GIG +HENBUR₂ +ŠE.AM +SIG₇#-su# +NAGA-SI +SUD₂ +ina +A +GAZI{sar} +SILA₁₁-aš# +[IGI-MIN-šu₂ +LAL-id] +{na₄}as₃-har +{na₄}tu-uš-ka#-a# +SUD₂ +ina +I₃.UDU +tu-tah-ha-ah +mal-ma-liš +SUD₂ +ina +I₃.NUN +H[E.HE +IGI-MIN-šu₂ +MAR] +DIŠ# +NA +IGI-MIN-šu₂ +GIG +10 +SI[LA₄!(KISAL) +I₃.GIŠ +an]a +SAG-KI-MEŠ-šu₂ +ŠUB.MEŠ +šu-uh-ta +ša +AŠGAB +ina +KUŠ.EDIN +[te-ser] +[ina +SA]G-KI-MEŠ-šu₂ +L[AL-id +ILLU +URUDU +{n]a₄}aš₂-har +ŠIM.BI.KU₃.GI +SUD₂ +ina +I₃.NUN +HE.HE +IGI-MIN-šu₂ +MAR.MEŠ#-m[a? +T]I? +[DIŠ# +NA +IGI-MIN-šu₂ +GIG-ma +u +ha-an-ṭa +SAH]AR.URUDU +ša +ŠEN.TUR +ina +I₃.NUN +SUD₂ +IGI-MIN-šu₂ +MAR +GIR₂-ZABAR +[ina +A +LUH-si +SUM{sar} +ta-sak₃] +1-šu₂# +2-šu₂ +3-šu₂ +IGI-MIN-šu₂ +MAR +ZA₃.HI.LI +ina +šur-šum-me +KAŠ +SILA₁₁-aš +LAL +[... +SAHAR.URUDU +š]a +ŠEN#.TUR +tur-ar₂ +GAZ +ina +I₃.NUN +SIG₅-te +ta-sak₃ +[UD-ma +DU₃-šu₂ +...] +IGI-MIN-šu₂ +te-qi₂ +[... +an]a +ŠA₃# +IGI-MIN-šu₂ +tu-na-tak₂ +{u₂}IN₆.UŠ₂ +SUD₂ +LAL +[... +ba-r]i-ra-ta₅ +ina +GA +ta-la₃-aš +LAL +[... +i]na +DILIM₂ +A.BAR₂ +SUD₂ +IGI-MIN-šu₂ +MAR +[... +{š]im}ŠE#.L[I +... +s]u-pa#-la# +SIG₇-su +[ina +A.M]E[Š? +... +UKU]Š₂.LAGAB +U₂-BABBAR +x +[... +t]e-qi₂?# +[... +IGI-M]IN-šu₂ +GI[G +... +ma-ʾ-d]u-ti +NU +BAD +ina +KUM₂ +[...] +[SAG.D]U-su +SAR-a[b +... +N]IG₂.SILA₁₁.GA₂ +tu-kaṣ₃-ṣ[a +...] +[ina] +I₃#.NUN +DILIM₂ +A.BAR₂# +t[a-sa]k₃ +IGI-MIN-šu₂ +t[e?-qi₂?-ma? +ina?-eš?] +[... +I]GI-MIN-šu₂ +ta-bi-la₁₂ +GIG +SUM.SIKI[L-l]a +u₂#-haš-ša₂ +ina +KAŠ +NAG +I₃+GIŠ +ana +ŠA₃ +IGI#-MIN#-šu₂# +M[AR-ru-ma? +...] +[... +N]A₄ +ZU₂.LUM.MA +tur-ar₂ +SUD₂ +ina +A +GAZI#{sar#} +ta#-la-aš +tu-kap-pat +la-a-am +pa-tan# +u₂?#-a[l-lat?] +[BIL.ZA.Z]A +SIG₇# +ta-ṣa-lip +ZI₂-su# +ina# +I₃.NUN +HE.HE +IGI-MIN-šu₂ +te#-qi₂# +[... +GU₂.G]AL +6 +SILA₄!(KISAL) +ZI₃ +GAZI{sar} +5 +GIN₂ +ZA₃.H[I.LI +ina] +A# +GAZI#{sar#} +SILA₁₁#-aš# +SAG#.KI#-šu₂# +IGI#-MIN#-šu₂# +LAL +[EN₂ +x +x +x +(x)] +x +lal +a +sar +NUMUN +U₂ +x +[x] +x +e-ru-pu +e-gu-ma +[x +x] +x +e#-[l]i? +A +3-šu₂ +DUG₄.GA +DIŠ +N[A +... +GAZI{s]ar} +sah-le₂-e +{u₂}MAŠ.TAB +I₃.UDU +{šim}GIG +NUMUN +{šim}LI +kam-m[u +... +ta-qal₃-l]u +ina +I₃.NUN +I₃.UDU +ELLAG₂ +UDU.NITA₂ +GAB.LAL₃ +tuš-tab-bal +IGI-MIN-šu₂ +MAR +DIŠ +NA +IGI-MI[N-šu₂ +... +IGI-MI]N-šu₂ +GIG +U₅-ARGAB{mušen} +ina +I₃.NUN +SUD₂ +MAR +DIŠ +NA +IGI-MIN-šu₂# +[GIG +... +DIŠ +NA] +IGI#-MIN#-šu₂# +GIG# +sah#-le₂#-e +ina +GA +ŠEG₆-šal +LAL +DIŠ +NA +IGI-MIN-šu₂ +MU[D₂ +...] +x +ri +šum₄-ma +ŠA₃ +IGI-MIN-šu₂ +SA₅ +IGI-MIN-šu₂ +DUL-m[a +... +{munus}]U₂#.ZUG₂ +SILA₁₁-aš +LAL-id +ina +še-ri₃ +DU₈-šu₂-m[a +... +ina +GIR₂ +ZAB]AR +KUD-[iṣ?] +DUR +{sig₂}HE₂.ME[D +...] +DIŠ +NA +IGI-MIN-šu₂ +MUD₂ +šu-u[n-nu-ʾa +...] +1 +GIN₂ +U₅-ARGAB{mušen} +S[A₉ +...] +U₂-BABBAR +ta-bi-la₁₂ +ana +ŠA₃ +IGI-MI[N-šu₂ +...] +ŠE₁₀ +EME.ŠID +ina +I₃.UDU +GIR₃.PAD.DU +LUGUD₂.DA +[...] +5 +ŠE +U₂-BABBAR +ina +I₃.GIŠ +SUD₂ +IGI-MIN-šu₂ +MA[R +...] +DIŠ +NA +IGI-MIN-šu₂ +MUD₂ +DIRI +[...] +{u₂}IN₆.UŠ₂ +{u₂}tar-muš +mal-ma-li[š +...] +NA₄ +BAL +ina +UH₂ +SUD₂ +MAR +ši[m?-bi?-zi?-da₄? +...] +MUD₂ +ša +ŠA₃ +ŠAH +ana +ŠA₃ +IGI-MIN-š[u₂ +tu-na-tak +...] +3 +GIN₂ +U₅#-[ARGAB{mušen} +...] +EN₂ +ib-da-g[ub +... +ina +ki-i-ri +ba-la-ṭi] +ba-la-ṭi +n[a-ap-ši-ir +ba-l]a-ṭi₃# +na#-[ap-ši-ir] +ba-ʾ-la-at +ina +it-ti +[... +MU]NUS? +NU# +U₃.TU +ak-la₂ +me-ṣa +ma-a#-[du +TU₆.EN₂] +KA.INIM.[MA +IG]I-MIN-šu₂ +MUD₂ +DI[RI-MEŠ] +DU₃.DU₃.BI +SUHU[Š +... +14 +K]A.KEŠDA +KEŠDA +e-ma +KEŠDA +EN₂ +ŠID-nu +ina +SAG.K[I-šu₂ +...] +EN₂ +h[u-ha-hi +la +ba-ma +hu-ha-hi +la +ba-ma +u +A.GA.AŠ₂.GA +TIL.L]A +A.GA.AŠ₂.GA +TIL.LA +TU₆.E[N₂] +[KA.INIM.MA +DIŠ +NA +IGI-MIN-šu₂] +MUD₂ +DIRI-M[EŠ] +[DU₃.DU₃.BI +{na₄}as₂-har +ina +I₃.NUN +SU]D₂? +ana +ŠA₃ +IGI-MIN-šu₂ +Š[UB] +[EN₂ +igi +ti-la +a-ga +ti-la +geštu +kun₂?-na +a-ga +kun₂-n]a +u₂-hu#-ur#-sag#-g[i-na-ta] +[ša-hi +šur-ra-ta +kuš-ri-in +kuš-ri-in-ni] +še-e-ru +še-e-ra +e-k[al +da-mu] +[da-ma +i-na-ṣab +SA-a-nu +SA-a-nu +u₂-qa-an-na-an +Š]UB-di +{d}gu-la +TU₆ +TI#.[LA +en-qu-ti] +[ṣi-im-de-ti +li-qer-ri#-bu +at-ti +taš-ku-ni +b]a-laṭ +bu-ul-ṭi +TU₆.EN₂.[E₂.NU.RU] +[KA.INIM.MA +DIŠ +N]A +IGI-MIN-šu₂ +MUD₂ +DI[RI-MEŠ] +[KID₃.KID₃.BI +3 +ŠE +NAGA-SI +3 +ŠE +ILLU +LI.TA]R +3# +ŠE# +ŠE₁₀# +EME#.ŠID# +1#-niš# +SUD₂# +ina# +GA# +UD₅# +[tara-bak +IGI-MIN-šu₂ +LAL] +DIŠ +NA +IGI-MIN#-š[u₂ +GIG-ma +MUD₂ +DIRI +{šim}BULUH-HI.A +MUD₂ +ul-ta-t]a-ni-ʾa +MUD₂ +ER₂ +ina +ŠA₃ +IGI-MIN-šu₂ +E₃#-[a] +GISSU +{d}LAMA# +IG[I-MIN-šu₂ +u₂-na-kap +a-ši-tu +ana +GISSU +GU]R +di-gal₉ +DUGUD-šu₂ +{giš}ŠINIG +SIG₇-su +tu-[ha-sa] +ina +A.GEŠTIN.NA +KALA.GA +tar[a-muk +ina +UL +tuš-bat +ina +A₂.G]U₂.ZI.GA +ana +ŠA₃ +hu-li-ia-am +SUR#-[at] +IM.SAHAR.BABBAR.KUR.RA +U₂-BABBAR +{mu[n}eme-sal-li₃ +I₃.UD]U +tuš-ka-a +{u₂}zi-ba-a +ILLU +URUDU# +a#-he#-[nu-u₂ +SUD₂] +mal₂-ma-liš +TI-qe₂ +1-niš +tuš-te-mid +an[a +ŠA₃ +hu-li-ia-a]m +ša +ta-aš₂-hu-tu +DUB-[ak] +ina +I₃.NUN +u +{na₄}ŠU.MIN₃# +SILA₁₁#-aš!(NU#)-ma# +SAG# +I[GI-MIN-šu₂] +ina +ŠU.SI +BAD-te +ana +ŠA₃ +IGI-MIN-šu₂ +GAR-[an] +IGI-MIN-šu₂ +DUL-ma +u₂-kal +IGI-MIN-šu₂ +ta-kar-ma# +UD#.9.KAM₂ +an-na-a +DU₃-[MEŠ] +DIŠ +KIMIN +{šim#}SES +U₂-BABBAR +{mun}eme-sal-li₃ +[ina +MU]D +ZABAR +ana +ŠA₃ +IGI-MIN-šu₂ +B[UN₂?] +DIŠ +NA +MIN +ILLU +URUDU +U₂-BABBAR +SUD₂ +[ina +MU]D +ZABAR# +ana +ŠA₃ +IGI-MIN-šu₂ +[BUN₂] +DIŠ# +NA +MIN +{u₂}ur₂-ne₂-e +U₂-BABBAR +SUD₂ +ina# +MUD# +ZABAR# +ana +ŠA₃ +IGI-MIN-šu₂ +[BUN₂] +EN₂ +igi +bar +igi +bar-bar +igi +bar-ra +bar-bar +igi# +huš# +igi +huš-huš +igi +bar-ra +h[uš-huš] +[igi +b]ar +na₂#-a# +igi# +bar# +da#-a# +igi# +bar# +hul#-a +IGI-MIN +a-ba-tu +IGI-MIN +a-[ša-tu] +[... +šu-h]ar-ra-tu₂ +IGI-MIN +GIN₇ +nik-si +UDU.NITA₂ +MUD₂ +[še-en-a] +[GIN₇ +A.MEŠ +ša₂ +a-gala-pe-e] +a#-la-pa-a +ŠUB-a +ki-ma +DUG +A.GEŠTIN.NA +ŠUB-a +[ṣil-la] +[ina +be-ri-ši-na +pi-ti-iq-tu₄ +pat-qa]t? +KU₄#-ub# +{d}GIR₃ +ina +be-ru-ši-na +it-ta-[di +{giš}GU.ZA-šu₂] +[aš₂-šum₂ +an-ni-tu +ina +ŠA₃ +an-ni-te +la +na-pa-še +E]N₂ +ul# +ia-at-tu₂-un +EN₂ +{d}e-a +u# +[{d}asal-lu₂-hi] +[EN₂ +{d}da-mu +u +{d}gu-la +EN₂ +{d}nin-girima₃] +be#-let# +EN₂ +{d}gu-la +TI.LA-ma +NIG₂.BA-k[i +TI +TU₆.EN₂] +[KA.INIM.MA] +IGI +GIG.GA.A.[KAM₂] +[DU₃.DU₃.BI +an-nu-u +ša +SIG₂ +BABBAR +DUR +NU.NU +7 +KA.KEŠDA +KE]ŠDA +e-ma +KEŠDA +EN₂ +ŠID-nu +ina +IGI-šu₂ +TI#.L[A-ti +KEŠDA-su] +[EN₂ +... +igi +h]uš-huš +igi +bar-ra +[...] +[... +IGI-MIN +a-p]a-tu₂ +IGI-MIN +a-ša₂-tu₂ +IGI-MIN +ša +MU[D +DIRI-a] +[ana-ku +... +sa-niq +qa₂-b]u-u₂ +ša₂ +{d}gu-la +[2-ma +ši-na-ma +ah-ha-a-tu₄ +ina +be₂-ru-ši-na +p]a-rik +KUR-u₂ +[man-na +lu-uš-pur +ana +DUMU.MUNUS +{d}a-ni]m? +ša₂ +AN-e +liš-ša₂-a-ni +tal-l[i-ši]-na +{na₄}NIR₂ +DUG.MEŠ-ši-na +{na₄}ZA.GIN₃ +eb-bu +li-sa-pa-a-ni +A.MEŠ +A.AB.BA +tam-ti₃ +DAGAL-te +ša +ha-riš-tu +la +u₂-ri-du +ana +lib₃-bi +mu-suk-ka-tu₂ +la +LUH-u +qa-ti-ša₂ +lis-la-ni-im-ma +li#-ke-eṣ-ṣa-a +KUM₂ +ṣi-ri-ih-tu₂ +ša₂ +ŠA₃ +IGI-MIN-šu₂ +EN₂ +ul +ia-at-tu#-un +EN₂ +{d}40 +u +{d}asal-lu₂-hi +EN₂ +{d}da-mu +u +{d}gu-la +EN₂ +{d}nin-girima₃ +be-let +šip-te +{d}gu-la +TI.LA-ma +NIG₂.BA-ki +TI-i +TU₆.EN₂ +KA.INIM.MA +IGI +GIG.GA.A.KAM₂ +DU₃.DU₃.BI +an-nu-u +ša +[SIG₂ +S]A₅ +DUR +NU.NU +7 +KA.KEŠDA +KEŠDA +e-ma +KEŠDA# +EN₂# +ŠID-nu +ina +IGI-šu₂ +GIG-ti₃ +KEŠDA +EN₂ +igi +bar +ig[i +... +bar-r]a +bar#-bar +igi +huš +igi +huš-huš# +igi +bar-ra +huš-huš +igi +bar +n[a₂-a +...] +igi +bar +hul-a +IGI-MIN +a-pa-tu +IGI-MIN +a-ša-tu +IGI-MIN +pur-[sit₂ +MUD₂ +šu-te-eṣ-li-p]a-a#-tu +am-min₃ +tab-ba-a +am#-min₃# +taš#-ša₂#-a# +am-mi₃-n[i +ik-kal-ki-na-ši +ba-a-ṣ]u +ša +n[a-a-ri +tal-tal-lu-u₂ +ša₂ +{giš}GIŠIMMAR] +ša₂ +ti-[it-tu +ni-iq-qa-š]a +[ša₂ +a-ri-i +IN.NU-šu +al-si-ki-na-ši +al-ka-ni] +ul +a[l-si-ki-na-ši +ul +ta-la]-k[a-ni +la-am +it-ba-ki-na-ši +IM.1 +IM.2 +IM.3 +IM.4 +EN₂] +KA.[INIM.MA] +[IGI +GIG.GA.KAM₂] +DU₃.DU₃.B[I +SIG₂ +S]A₅ +SIG₂ +BABBAR +a-he-en-n[a +NU.NU +7 +u +7 +KA.KEŠDA +KEŠDA +e-ma +KEŠDA +EN₂ +ŠID-nu] +DUR +S[IG₂] +SA₅# +ina +IGI-šu₂ +GIG-ti₃ +[KEŠDA +DUR +SIG₂ +BABBAR +ina +IGI-šu₂ +TI.LA +KEŠDA-ma +ina-eš] +EN₂ +ig[i +bar] +igi# +bar-bar +igi +bar-ra +bar#-ba[r +... +h]ul-hul# +igi# +ba[r-ra +...] +š[i-it-t]a-ši#-na +DUMU.MUNUS +{d#}[a-ni +ina +be-ru-ši-na +pi-tiq-tu₄ +pat-qat] +u[l? +il-lak +a-ha-tu +a-na +le-et +a-ha-ti-š]a₂? +man-na +lu-uš-pur +a#-[na +DUMU.MUNUS +{d}a-ni₃ +ša₂ +AN#-e#] +[liš-ša₂-a-ni +kan-ni-ši-na +{na₄}NIR₂ +D]UG.MEŠ-ši-na +{na₄}[ZA.GIN₃.DURU₅ +eb-bu] +[li-is-sa-pa-ni-im-ma +li-be-la-a +IGI-MIN +a-b]a-tu₂ +IGI-MIN +a-ša₂-ti +u₃# +[dal-ha-a-ti +TU₆.EN₂] +[KA.INIM.MA] +IGI +GIG.[GA.A.KAM₂] +[DU₃.DU₃.BI] +ŠU.BI.[GIN₇.NAM] +[EN₂ +igi +bar +igi +bar-bar +igi +bar-ra +bar-bar +igi +s]uh₃ +igi +suh₃-suh₃ +igi +b[ar-ra +suh₃-suh₃] +[ši-it-ta +i-nu +a-ha-tu +ši-na-ma +in]a +be-ru-ši-na +KUR-u₂# +[pa-rik-ma] +[UGU-nu-ši-na +ki-ṣir-tu +kaṣ₃-rat +K]I.TA#-nu-ši-na +pi-ti[q-tu₂ +pat-qat] +[a-a-u₂ +IM-ši-na-a-ma +a-a]-u₂# +NU +I[M-ši-na-ma] +[a-a-u₂ +IM +ti-bi-ši-na +a-a-u₂ +la]-a# +I[M +ti-bi-ši-na-(ma?)] +[KA.INIM.MA +IGI +GIG.GA.K]A[M₂? +DU₃.DU₃.BI +ŠU.BI.GIN₇.NAM] +[EN₂ +... +gi]n₇? +a +a-lal-la +er₂ +gub-ba-[a +gub-ba-a] +[{d}AMAR.UTU +ip-pa-lis-su-ma +ana] +{d#}e₂-a +AD#-šu₂ +i-ša₂-a[s-si] +[mi-na-a +e-pu-uš +ul +i-di +ša +ana-ku +i-du]-u?# +at-ta +ti-di +T[U₆.EN₂] +[KA.INIM.MA +IG]I +GIG.GA.[KAM₂] +[DU₃.DU₃.BI +SIG₂ +SA₅ +SIG₂ +BABBAR +1-niš +NU.NU +7 +u +7 +KA.KEŠDA +KEŠDA +e-m]a? +KEŠDA# +EN₂ +ŠID-nu +ina +SAG.K[I-MEŠ-šu₂ +KEŠDA-ma +ina-eš] +[EN₂ +i-gi +ti-la +a-ga +ti-la +i-gi +kun₂-n]a +a-ga +k[un₂?-na] +ur-sag +gi-na-zu +gi +ban₃-da-zu +tu₆-en₂] +K[A.INIM.MA +IGI +GIG.GA.A.KAM₂ +DU₃.DU₃.BI +Š]U.BI.GI[N₇.NAM] +EN₂# +i-ni +GURUŠ +GIG#-at# +i#-ni# +{munus#}KI#.SIKIL# +GIG-at +i-ni +GURUŠ +u +{munus}KI.SIKIL +man-nu +u₂-bal-liṭ +ta-šap-par₂ +i-le#-qu-ni-ku +ŠA₃ +KU₃-ti +{giš}GIŠIMMAR +ina +pi-i-ka +te-he-pi +ina +ŠU-ka +te-pe-til +GURUŠ +u +KI.SIKIL +ina# +SAG#.KI#.MEŠ#-šu₂-nu +tu-ka-ṣar +IGI +GURUŠ +u +KI.SIKIL +i-bal-lu-uṭ +TU₆.EN₂ +KA.INIM.MA# +IGI +GIG.GA.A.KAM₂ +DU₃.DU₃.BI +ŠU.BI.AŠ.AM₃ +en₂ +an-na +im# +ri-a +igi +lu₂-ka +gig-ga +ba-an-gar +ina +ša₂-me-e +ša₂-a-ru +i-zi-qam-ma +ina +i-in +LU₂ +si-im-me +iš-ta-kan +an-ta +su₃#-da-ta +im +ri-a?(MIN?) +igi +lu₂-ka +gig-ga +ba-an-gar +iš-tu +AN-e +ru-qu-ti +igi +gig-ga# +gig-ga +ba-an-gar +ana +i-ni +mar-ṣa-a-ti +si-im-me +iš-ta-kan +lu₂-bi +igi-bi +lu₃-lu₃-a +ša₂ +LU₂ +šu-a-tu₂ +i-na-šu₂ +da-al-ha +igi-bi +ba#-an-suh₃#-suh₃ +i-na-šu₂ +a-ša₂-a +lu₂-u₁₈#-lu#-bi +ni₂-te-a-ni-še₃ +er₂ +gig +i₃-šeš₂-šeš₂ +LU₂ +šu#-u₂ +ina +ra-ma-ni-šu₂ +mar-ṣi-iš +i-bak-ki +lu₂-bi# +tu#-ra-a-ni +{d}engur-ke₄ +igi +im#-ma-an-si₃ +ša₂ +LU₂ +šu₂-a-tu₂ +mu-ru-us-su +{d}MIN +i-mur-ma +gazi{sar#} +gaz-ga₂ +šu +u₃-me-ti +ka-si-i +haš-lu-ti +le-qe₂-ma +tu₆#-tu₆# +abzu-ta +u-me-ni-si₃ +ši-pat +ap-si-i +i-di-ma +i[gi +l]u₂-ka +u₃-me-ni-kešda +i-ni +a-me-li +ru-kus-ma +[{d}engu]r +lu₂ +šu +ku₃-ga-na +igi +lu₂-ba-ka +šu +tag-ga-ni-ta +[{d}MI]N +ina +ŠU-ša₂ +KU₃-ti +i-in +a-me-li₃ +ina +la-ba-ti-ša₂ +[im +ig]i +lu₂-ka +su₃-su₃ +igi-bi-ta +ba-ra-an-e₃ +[ša-a]-ru +ša₂ +i-in +a-me-li₃ +ud-du-pu +ina +i-ni-šu₂ +lit-ta-ṣi +[KA.I]NIM.MA +IGI +GIG.GA.A.KAM₂ +[EN₂ +i-n]u +a-pa-tu₂ +i-nu +a-ša₂-tu₂ +i-nu +pur-si-in-di +da-a?(MIN?)-mi +šu-har-ri-a-tu₄ +[ši-n]a +i-bak-ka-a +ana +IGI +AMA-ši-na +{d#}ma#-mi# +[a-m]i₃-in +na-ši-ma +it-ti-ni +tar-ku-si +a-ša₂-a +d[a-a-ma +u +ša₂-a-ra +TU₆.EN₂] +[KA.IN]IM.MA +[IGI +GIG.GA.A.KAM₂] +[DU₃.DU₃.BI] +S[IG₂ +S]A₅ +SIG₂# +BABBAR# +a#-he#-en#-na#-a# +N[U.NU +ina +MURUB₄-šu₂-nu +lip₂-pa +tal₂-pap] +[SIG₂ +SA₅ +ina +I]GI-šu₂ +GIG +SIG₂ +BABBAR +ina +IGI-šu₂# +T[I +KEŠDA-ma +ina-eš] +[EN₂ +še +l]a₂ +še +la₂ +hu-tu-ul +hu-tu-ul +igi +lal +hu#-t[u-ul +min +igi +lal-bi +hu-tu-ul +min] +[ša-at-ti +p]a-na +ŠE.GA +ša-at-ti +pa-na +Š[E.GA +i-ṭab₃ +ŠE.GA +MIN +TU₆.EN₂] +[KA.INI]M.MA +DIŠ +N[A +IGI-MIN-šu₂] +L[U₃.LU₃] +D[U₃.DU₃.BI +b]ir-ki# +UDU# +TI#-qe₂# +[x +x] +u +DUR +NU.NU +ana +2-šu₂ +te-eṣ-ṣi-ip +x +[x +x] +7 +[u +7 +KA.KEŠDA +KEŠDA +e-ma +KEŠDA +E]N₂? +ŠID-nu +ina +SAG.KI-šu₂ +KEŠDA-m[a +ina-eš] +EN₂ +a[t-ti-na +... +pu]r-si#-mi#-it# +MUD₂ +šu-har-ra-tu₂ +am-mi-ni +ta-aš-ša-ni +ha-ma# +ha-an-d[a-bi-l]u? +šu-ur-šu-ra +e-lap?-pa-a +ša +ID₂ +ina +SILA.MEŠ +kir-ba-ni +ina +tub-ki[n₂-na]-a#-te +hu-ṣa-a-ba +am-mi-ni +taš-ša-ni +zu-un-na-ni +GIN₇ +MUL +mi-ta-q[u-ta]-ni +GIN₇ +nab-li +la-am +ik-šu-du-ki-na-ši +ṣur-ru +nag-la-bu +ša₂ +{d}gu-la +E[N₂ +N]U +DU₈ +EN₂ +{d}asal-lu₂-hi +{d}AMAR.UTU +EN₂ +{d}nin-gi-rim-ma +EN +EN₂ +u +{d}gu-la +EN# +[A.Z]U-ti +i-di-ma +ana-ku +aš₂-ši +TU₆.EN₂ +KA.INIM.MA +ha#-a#-mu +hu-ṣa-ba +u +mim₃-ma +ša +IGI-MIN +šu-li-i +EN₂ +ina +šur-ri-i +la-am# +ba-ša-mu +a-la-lu +ur-da +ana +ma-t[i] +it-tu-u₂ +še-er-a +U₃.TU +še-er-hu +hab-bur-ra# +hab-bur-ra +ka-an-na +ka#-an-nu +ki-iṣ-ra +ki-iṣ-ru +šu-bu-ul-ta +šu-bu[l-t]u +me₂-er-a +{d}UTU +e-ṣi-id# +{d}30 +u₂-pa-har +{d}UTU +ina +e-ṣe-di-šu₂ +{d}30 +ina +pu-hu#-ri-šu₂ +ana +IGI +GURUŠ +me-er-hu +KU₄-ub# +{d}UTU +u +{d}30 +i-ši-za-nim-ma +me₂-er-hu +li-la-a# +ša₂ +ŠA₃!?-šu₂-un# +KA.INIM.MA +me₂-er-hu +ša# +ŠA₃ +IGI-MIN +šu!?#-li-i +DIŠ +NA +IGI-MIN-šu₂ +mur-din-n[i +DIRI] +sah-le₂-e +ZI₃ +[ŠE.SA.A +ina] +KA[Š +tara]-bak +LAL-id +x +[x +x +(x +x)] +ana?# +[x +x +x +(x)] +x-MEŠ# +[x +x +x +x +x +x +x +x +x +x +x +x +x +DU₈?].U₃?#.KAM₂?# +[x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +{u₂#}SIKIL +[x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +{u₂#}NU#.LUH#.HA +BAR +mi-ki-i +[x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +PI]Š₁₀.{d}ID₂ +{na₄}mu-ṣa +[x +x +x +x +x +x +x] +{na₄#}AN#.ZAH#.GE₆# +{na₄#}ZALAG₂# +NA₄ +AN.BAR +{na₄}KA.GI.NA +DAB.BA +[x +x +x +x +Š]A₃ +ŠUB#-di# +EN₂# +7-šu₂ +ŠID#-nu-ma +SAG.KI-MEŠ-šu₂ +[x +x +hu-u]p-pat# +IGI-MIN-šu₂ +ŠEŠ₂-MEŠ-ma +SILIM-im +ina-ah +[x +x +x +D]AB-su-ma +SAG.KI.DAB.BA +TUKU.TUKU-ši +NA₄ +KUG.BABBAR +NA₄ +KUG.SIG₁₇# +{na₄}GUG +[x +x +x +{n]a₄}MUŠ.GIR₂ +{na₄}SAG.DU +{na₄}NIR₂ +{na₄}BABBAR.DILI +{na₄}ZALAG₂ +{na₄}mu-ṣa +[{na₄}AN.ZA]H +{na₄}ŠUBA +{na₄}ZU₂# +GE₆ +{na₄}ŠU.U +NITA₂ +u +MUNUS +{na₄}SAG.GIL.MUD +[{na₄}SAG.K]I? +NA₄ +AN.BAR +{na₄}PA +ša₂ +7 +GUN₃-MEŠ-ša₂ +{na₄}ia₂-ni-bu# +{na₄}ka-pa-ṣu +[NA₄ +DU₃.A.B]I? +an-nu-ti +ina +SIG₂ +{munus}AŠ₂.GAR₃ +GIŠ₃.NU.ZU +SA +MAŠ#.DA₃ +{u₂}NINNI₅ +NITA₂ +[NU.N]U? +E₃-ak +{u₂}tar#-muš# +{u₂}IGI-lim +{u₂}IGI.NIŠ +[{giš}M]A?.NU +{u₂}DILI +{u₂#}ap₂#-ru#-ša₂ +{u₂}ak-tam +{u₂}el#-kul-la +{u₂}KUR.KUR +[x +x] +x +lu +{u₂}x +x +{u₂}HAR.LUM.BA.ŠIR +{u₂}IN₆.UŠ₂ +NUMUN +{giš}ŠINIG +[U₂ +DU₃?.A?.BI?] +an#-nu-ti +e-ma +KEŠDA +ina +{sig₂}HE₂.ME.DA +NI[GI]N-mi +[EN₂ +SAG.K]I +MU#.UN.DAB +ŠID-nu-ma +ina +SAG.KI-šu₂ +KEŠDA#-su# +[{na₄}aš-p]u-u₂ +ša₂ +UD.SAKAR +kul-lu-mu +{na₄}MUŠ.GIR₂ +{na₄#}SAG#.GIL#.MUD# +[NA₄ +A]N.BAR +ŠUB +AN +{na₄#}SAG.DU +{na₄}SAG.KI +{na₄}ŠIM.BI.ZI.DA +{na₄}lu-lu-da#-ni#-[tu₂] +[{na₄}]ŠUBA +SIG₇ +{na₄#}ZA#.GIN₃# +{na₄}GUG +NA₄ +BAL +SA₅ +NA₄# +BAL +GE₆ +NA₄ +BAL +SI[G₇] +[{n]a₄}ar₂-zal-la +NA₄ +MUŠ +SA₅ +{na₄}DUR₂.MI.NA +{na₄}DUR₂.MI.NA.BAN₃.D[A] +[{n]a₄}GI.RIM.HI.LI.BA +NA₄# +{giš#}MES +{na₄}ŠURUN +{d}GUD +{na₄}KA.GI.NA +DAB.BA +{na₄}BABBAR.DILI +{na₄}BABBAR.MIN₅ +NA₄# +DU₃#.A.BI +GAZ +SUD₂ +it-ti +nap-šal-ti +u +ṣi-in-di +ša# +SAG#.KI#.DAB# +HI#.HI# +SAG.KI-MEŠ-šu₂ +ŠEŠ₂-MEŠ +LAL-id +NA₄ +DU₃.A.BI +an-nu-ti# +KUG.SIG₁₇ +tu-haz +ina +SAG.KI-šu₂ +KEŠDA-su +SUHUŠ +{giš}DIH₃ +ša₂ +UGU# +KI#.MAH# +SUHUŠ# +{giš}KIŠI₁₆ +ša₂ +UGU +KI.MAH +SI +GUD +ša +ZAG +SI# +MAŠ₂ +ša +GUB₃ +NUMUN +{giš}ŠINIG +NUMUN +{giš}MA.NU +{u₂}A.ZAL.LA +7# +U₂.HI.A +ṣi-in-di# +ša₂# +ŠU#.GIDIM.MA +SAG.KI-MEŠ-šu₂ +LAL-id +{šim#}LI +{šim}GUR₂.GUR₂ +KA +A.AB#.BA# +PIŠ₁₀.{d}ID₂ +[UH₂.{d}I]D₂? +I₃#.UDU# +ELLAG₂# +UDU#.NITA₂?# +DUH#.LAL₃ +HI.HI +SAG.KI-MEŠ-šu₂ +LAL +[...] +x +{giš}x +x +x +x +[...] +[x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +x +x +[x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +GIR₃#.PAD#.DU +NAM.LU₂.U₁₈.LU# +[x +x +x +x +x +x +x +x +x +x +x +x +x] +UR#.GI₇# +GE₆ +SIG₂ +SA.AD# +[x +x +x +x +x +x +x +x] +HI#.HI +ina +NE +SAR-šu₂ +ina +KUŠ +[x +x +x +x +x +x +x +d]a-gan# +imin#-bi +{d}utu +nam-tar +nam-tar-ra +[x +x +x +nam-ba]-luh# +u-me-luh# +nam-mu-un-da-MIN-bur₂-ra +[nam-mu-un-d]a-MIN-la₂-e# +al-li +ma-da +ma-da-bi +[{d}e]n-ki +lugal# +abzu-ke₄# +{d}asal-lu₂-hi +dumu# +eridu{ki}-ga-ke₄ +nam-mu-un-da-bur₂#-bur₂-re# +zi +an-na +he₂-pad₃ +zi +ki-a +he₂-pad₃ +KA.INIM.MA +SAG.KI.DAB.BA.KAM₂ +DU₃.DU₃.BI +{sig₂}HE₂.ME.DA# +SIG₂# +BABBAR# +SA# +MAŠ#.DA₃ +{u₂}NINNI₅ +NITA₂ +DIŠ-niš +NU.NU +7 +u +7 +KEŠDA +KEŠDA +{u₂}DILI +KA +A.AB#.BA +ni#-kip-ta₅ +PIŠ₁₀.{d}ID₂ +UH₂.{d}ID₂ +SUHUŠ +{giš}NAM.TAR +NITA₂ +NUMUN +{giš}ŠINIG +SI +DARA₃.MAŠ +gul-gul# +NAM#.LU₂.U₁₈.LU +U₂.HI.A +an-nu-ti +e-ma +KEŠDA +ina +SIG₂ +SA₅ +NIGIN-mi +EN₂ +7-šu₂ +ŠID-nu +MUD₂ +{giš}EREN# +TAG-at +ina +SAG.KI-šu₂ +tara-kas₂ +gul-gul +LU₂.U₁₈.LU +tur-ar₂ +SUD₂ +ina +I₃# +ŠEŠ₂#-su +ŠE₁₀ +ŠAH +ME.ZE₂ +ŠAH# +GIR₃.PAD.DA.LUGUD₂.DA +ŠAH +gul-gul +LU₂.U₁₈#.LU +NAGA.SI +SI +DARA₃.MAŠ# +{u₂}KUR.RA +{u₂}GAMUN.GE₆ +sah-le₂-e +DIŠ-niš +GAZ# +ina +I₃.UDU +GUD +LIBIR.RA +HI#.HI# +ina +NE +SAR-šu₂ +{u₂}an-ki-nu-ti +{u₂}eli-kul-la +KA +tam-ti₃# +ni#-kip-ta₅ +NUMUN +{u₂}GUR₅.UŠ# +PIŠ₁₀.{d}ID₂ +{na₄}mu-ṣa +DIŠ-niš +SUD₂ +ina +I₃ +HI.HI +SAG.KI-MIN-šu₂ +KI.TA +UGU#-šu₂# +u +MURUB₄ +UGU-šu₂ +ŠEŠ₂-ma +NA +BI +TI#-uṭ# +EN₂ +sag-ki +mu-un-ta-gig +dab-ba +sag-ki +mu-un#-ta-bi-gig +dab-ba# +sag-ki +hul +gig +sa +gig +dab-ba +zi +{d}asal-lu₂-hi +dumu# +eridu#{ki#}-ga-ke₄ +zi +pad₃-da +hun-ga₂ +TU₆#.EN₂# +DU₃.DU₃.BI +PA +{giš}GIŠIMMAR +ša₂ +{im}SI#.SA₂# +ša₂ +ina +NU +IM +i-nam-zu-zu +TI-qe₂# +7-šu₂ +ana +15 +7-šu₂ +ana +150 +ta-pat#-til +7 +u +7 +KEŠDA +KEŠDA +EN₂ +7-šu₂ +ŠID#-nu# +ina# +SAG#.KI#-šu₂# +KE[ŠDA] +EN₂ +sag#-ki# +mu#-un-dab +sag +si-sa₂ +mu-un-dab# +sag# +sahar?#-ra +mu-un-dab +mu-u[n-dab +m]u-un-dab-dab +a-da-pa +abgal +e[rid]u{ki}-ga-ke₄ +sag-ki# +mu#-un#-dab +sag +sahar-ra +mu-un-dab +TU₆#.EN₂# +E₂.NU.RU +[D]U₃.DU₃.B[I +{s]ig₂}HE₂.ME.DA +NU.NU +7 +u +7! +KA.KEŠDA +KEŠDA +e#-ma +KE[ŠDA] +[{n]a₄}S[AG].DU +E₃-ak +EN₂ +7-šu₂ +ŠID-nu +ina +SAG.KI-šu₂# +[KEŠDA] +[E]N₂ +a.ra +tu.e +a.ra +ba.tu.e +ti.la +[x +x] +[šu +d]u₃.du₃#.meš +šu +ne.ne.a.meš +eridu{ki}.ga +mu.un.tum₂ +[TU₆.EN₂] +[x +x +x +x +{giš}GIŠIMM]AR +ša₂ +{im}SI.SA₂ +ša₂ +ina +NU +IM +i-nam-zu-z[u +TI-qe₂] +7# +u# +[x +x +x +E]N₂ +7-šu₂ +ŠID-nu +ina +SAG.KI-šu₂ +tara#-[kas₂ +x +x +x] +E[N₂ +x +x +x +x +x +ri].ba#.ak#.ti +ti.e.[na +x +x +x] +hat#.[ru.um.ma +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +k[u? +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +E[N₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +E[N₂ +...] +ina# +UGU# +GI#.[DU₈ +x +x +x +x +x +x +x +x +x +x +x +x +x] +GI-a-an +L[U₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +3-šu₂ +tu-šaq-ba#-šu₂#-m[a +x +x +x +x +x +x +x +x +x +x +x +x] +GIR₃.PAD.DU +LU₂ +kup-ra# +[x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +MUD₂ +{giš}EREN +I₃.SUMUN +BA[RA₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +EN₂ +sag-ki +mu-un-da[b +x +x +x +x +x +x] +sag +sahar-ra +m[u-un-dab] +x +x +x +[x +x +x +x +x +x] +{d}asal-lu₂-hi +sag +giš +ra# +[mu-un-da]b? +mu-un-dab# +[x +x +x +x +x +x +x +x +x +x] +DU₃.DU₃.BI +{na₄}ZU₂ +GE₆ +[x +x] +NITA +u +MUNUS +{na₄}x +[x +x +x] +{na₄}ŠUBA +SIG₇ +[x +x] +x +ina +SAG.KI-šu₂# +[tara-kas₂] +EN₂ +sag-ki-ni +sag-ki +he₂#-e[n-g]i₄-gi₄ +i-bi₂-ni +i-bi₂ +he₂-en-g[i₄-gi₄] +mu-ru-ub-bi-ni +mu-ru-u[b-bi +h]e₂-en-gi₄-gi₄ +he₂-bi-da-a-na#-mul#-la +he₂-en-da#-a# +[x +(x)] +DU₃.DU₃.BI +{u₂}aš-lam# +NITA₂ +SA# +MAŠ.DA₃ +TEŠ₂.BI +NU.NU +7 +u +7 +KA.KEŠDA +KEŠDA +e-ma +KA#.KEŠDA +EN₂ +ŠID-nu# +UB.PAD +NITA₂# +u +MUNUS +x +HUL₂# +A.ŠA₃ +DAL.DAL# +KI +KA.KEŠDA +ina +{sig₂}HE₂.ME.DA# +NIGIN-mi +ina +SAG.KI-šu₂ +tara-kas₂ +EN₂ +id₂-da-ta +tir +gal-gal-la-ta# +tir +si# +d[ara₃]-maš +ma[h-mah] +mul₄-mul₄ +{giš}geštin +gir₂ +mu-un-kar-re# +{giš}kiši₁₆# +i₃#-gu₇# +kal# +muš#-[muš] +šu +mu₂-mu₂-e-de₃ +mul-mul +kur-kur-ra# +[sik]il-e +du₈ +i₃-ti-la +tu#-ra# +[x +(x)] +du₈ +nam-tag-ga +lu₂-kar-ra +mu-un#-sa₄#-a +zag-du₈ +nig₂-{giš}gag#-ti +{giš}kiri₆# +[x +x +x] +udug +hul +he₂-bad +a-la₂ +hul +he₂-bad +gidim# +hul# +[h]e₂-bad +gal₅-la₂ +hul# +he₂#-bad# +dingir +hul +he₂-bad +maškim₂ +hul +he₂-bad +{d}di[m₁₀-m]e +he₂-bad +{d}dim₁₀-me-a +he₂-bad +{d}dim₁₀-me-lagab +he₂-bad +zi +an-na +he₂-pad₃ +zi# +[k]i-a +he₂-pad₃ +TU₆.EN₂ +KA.INIM.MA +SAG#.KI.DAB.BA.KE₄ +DU₃.DU₃.BI +SIG₂ +SA₅ +SIG₂ +BABBAR +DIŠ-niš +NU.NU +{na₄#}ZALAG₂?# +SI# +DARA₃#.MAŠ# +NA₄ +ZU₂.LUM.MA +E₃ +7 +KA.KEŠDA +KEŠDA +e-ma +KEŠDA +EN₂ +ŠID-nu +ina +SAG.KI#-MIN#-šu₂# +tara-kas₂-ma +AL.TI +EN₂ +sag-ki-dab-ba +sag-ki-dab-ba +sag-ki-dab-ba +nam-lu₂#-u₁₈-lu-ke₄ +sag-ki-dab-ba +dingir-re-e-ne-ke₄ +sag-ki-dab-ba +tu#-ra +hun-ga₂-ke₄# +sag-ki-dab-ba +nam-lu₂-u₁₈-lu +gar-ra +he₂-en-hun#-ga₂# +TU₆.EN₂ +EN₂ +sag +si-sa₂ +mu-un-dab +sag +sahar-ra +mu-un-dab +zag +gar-ra +sag +gar-r[a +x +x +x +x] +tu₆-tu₆ +gar-ra +he₂-en-hun-ga₂ +zi +an +he₂-pad₃ +zi +ki-a +he₂-pad₃# +T[U₆.EN₂] +2 +KA.INIM.MA +SAG.KI.DAB.BA.KAM +ina +UGU +tak-ṣi-ri +ša₂ +{u₂}LU₂.U₁₈.LU# +Š[ID-nu] +EN₂ +sag-ki +mu-ta-bi-gig +dab-ba +sag-ki +hul +dab-ba +sag +gig +hul# +d[ab-b]a +zi +{d}asal-lu₂-hi +dumu +eridu{ki}-ke₄ +zi +pad₃-da +hun-ga₂ +TU₆.EN₂ +KA.INIM.MA +SAG.KI.DAB#.BA.KAM# +EN₂ +an-ni-ta₅ +ina +UGU +nap-šal-ti +ina +UD#.HUL#.GAL₂#-e +7-šu₂ +ŠID-nu#-ma# +SAG.KI-MIN-šu₂ +MURUB₄ +UGU-hi-šu₂ +KI#.[TA +UGU-hi-šu₂ +TA]G.TAG-ma +ina-ah +18 +KA.INIM.MA +[SAG.K]I.DAB.BA.KAM# +[E]N₂ +sag#-du +huš +sag-du +huš# +s[ag-du +huš]-huš +sag +re-eš +sag-du +huš +[lugal +{d}]asar#-alim +he₂-til +lugal +{d#}en#-k[i +he₂-til +lu]gal +{d}asal-lu₂-hi +he₂-til +TU₆.EN₂# +[KA.INIM.MA] +SAG.KI.DAB.BA.KAM# +[DU₃.DU₃.BI +x +x +x +x +x +x +SI]G₂ +BABBAR +NU.NU +7 +u +7 +[KA.KEŠDA +KEŠDA +e-ma +KEŠDA +EN₂ +ŠID-n]u +ina +SAG.DU-šu₂ +KEŠDA# +[x +x +x +x +x +x +x +x +x +x +x +{munus}aš₂-g]ar₃ +giš₃-nu-zu +šim-me +mu-un-zu +[x +x +x +x +x +x +x +(x)] +TU₆.EN₂ +[KA.INIM.MA +SAG].KI#.[DAB.BA].KAM# +[x +x +x +x +x +x +x] +{na₄#}HAR#.LUM#.BA#.ŠIR# +SAR#-šu₂# +[DIŠ +NA +SA]G.KI# +1[50-šu₂ +x +x +x] +ina# +[U₄] +9#.KAM +ša +{iti}GU₄ +{u₂#}IGI-lim +{u₂}IG[I.NIŠ +{u₂}tar]-muš +{u₂}eli-kul-la +{u₂#}ha-šu-ta₅ +ša₂ +7 +SAG.DU#-MEŠ#-ša₂# +I₃.SUMUN +E₂ +{d}AMAR.UTU +ina +SA +AB₂.RI.RI.GA +[DU₃.D]U₃-pi₂ +ina +GU₂-šu₂ +GAR-an +{na₄}SAG.DU +ina +SAG.KI-šu₂ +KEŠDA-su +EN₂# +in.da +ri.ti +ra.ah +ŠID-nu +DIŠ +NA +GEŠTU +ZAG-šu₂ +TAG-su +IM +DIRI-at +u +MU₂-MEŠ +U₄ +19.KAM +U₄ +9.KAM +ša +{iti}NE +{giš}NU.UR₂.MA +KU₇.KU₇ +ša₂ +ina +UGU +GIŠ-ša₂ +zaq-pat +A-MEŠ-ša₂ +ta-še-ṣa-aʾ +I₃ +DUG₃.GA +ana +ŠA₃ +GEŠTU-šu₂ +ŠUB +I₃ +{šim}BAL +ana +SAG.DU-šu₂ +ŠUB +sil₂-qit +KUM₂ +GU₇-MEŠ +[DIŠ] +NA +GEŠTU +GUB₃-šu₂ +TAG-su +IM +DIRI-at +u +MU₂-MEŠ +U₄ +15.KAM +ša +{iti}KIN +[I₃.U]DU +KUR.GI{mušen} +ŠEG₆-šal +bah₃-ru-us-su +ana +ŠA₃ +GEŠTU-MIN-šu₂ +ŠUB +UZU# +KUR.GI{mušen} +ŠEG₆-šal# +GU₇ +I₃# +{giš}EREN +ana +SAG.DU-šu₂ +ŠUB-di +hi#-ib-ṣa +ina +sah-le₂-e +GU₇ +[DIŠ] +NA +KIR₄ +ZAG-šu₂ +TAG-su +ina +U₄ +1.KAM +ša +{iti}SIG₄ +ŠU.SI +GUB₃-šu₂ +GAL +7 +NE +GAR-an +[M]UŠ.DIM₂.GURUN.NA +ša₂ +EDIN +U₅-MEŠ +ina +UGU +KIR₄-šu₂ +u₂-hap-pa +[IL]LU +{šim}BULUH +ana +GEŠTU +GUB₃-šu₂ +GAR-an +[DIŠ] +NA +KIR₄ +GUB₃-šu₂ +TAG-su +ina +U₄ +11.KAM +ša +{iti}ŠU# +[SU]M{sar} +ina +UGU +u₂-haš-ša₂ +tul-ta₅ +ša₂ +ŠA₃ +GI +[ina +U]GU +KIR₄-šu₂ +u₂-hap-pa +ŠU.SI +ZAG-šu₂ +7 +NE +GAR-an +[IL]LU +{šim}BULUH +ana +ŠA₃ +GEŠTU-MIN-šu₂ +GAR-an +[na]p-ša₂-la-tu₂ +tak#-ṣi-ra-nu +lat-ku-tu₄ +ba-ru-ti +ša₂ +ana +ŠU# +šu-ṣu₂-u₂ +ša₂# +KA +ABGAL-MEŠ-e +la-bi-ru-ti +ša₂ +la-am +A.MA₂.URU₅ +ša₂# +i-na +šuruppak{ki} +MU +2.KAM +{m.d}EN.LIL₂#-ba-ni +LUGAL +{uru}i₃-ši-in{ki} +{m#.d}EN.LIL₂-mu-bal-liṭ +ABGAL +NIBRU{ki} +e[z-b]u +la# +mu-du-u +mu-da-a +li-kal-lim +mu-du-u +la +mu-da-a +la +u₂#-[kal]-lam +NIG₂.GIG +{d}AMAR.UTU +DIŠ +NA +SAG.DU-su +GIG-MEŠ +mat#-[qu-t]a₅? +TAB +UD.DA +DIRI +DUB# +3.KAM₂.MA +DIŠ +NA +UGU-šu₂ +KUM₂ +u₂-kal +[E₂.GAL +{m}AN.ŠAR₂-DU₃-A +MAN +ŠU₂ +MA]N +KUR +AN.ŠAR₂{ki} +ša +{d}AG +u +{d}taš-me-tu₄ +GEŠTU-MIN +ra-pa-aš₂-ta₅ +iš-ru-ku-uš +[i-hu-uz-zu +IGI-MIN +na-mir-tu₄ +ni-siq] +ṭup#-šar#-ru#-ti# +DIŠ +NA +UD.DA +KUR-id# +ZI# +SAG#.KI# +G[IG +x +x +x +x +x +x +x] +ru-uš-šu +ša# +sip?#-pi?# +ABUL?# +TI-qe₂# +KI# +[x +x +x +x +x +x +x] +DIŠ +NA +MIN +KUM₂ +TUKU +ana +T[I.B]I +{u₂#}ap₂?#-ru#-šu₂# +ina +I₃?#.[GIŠ +x +x +x +x +x +x +x +x] +ta-sak₃ +ina +KAŠ +ŠEG₆#-šal# +ŠEŠ₂#-su +[x +x +x +x +x +x +x] +DIŠ +NA +MIN +NINDA +u +KAŠ# +NU +i-le#-em +ana +T[I.BI +x +x +x +x +x +x +x] +ILLU +a#-bu-kat₃ +KUR#-i +ta#-sak₃ +ina# +hi#-i[q +KAŠ +x +x +x +x +x +x +x +x +x +x] +DIŠ +NA +MIN +ku-ṣu₂ +hur#-ba#-šu₂ +ŠUB#.ŠUB#-[su +x +x +x +x +x +x +x +x +x +x +x] +ana +UDUN +{lu₂}se-p[i-i +x +x +x +x +x +x +x +x +x] +DIŠ +NA +MIN +KUM₂# +TU[KU +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +ŠEŠ₂-su +[x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +DIŠ +NA +MIN +[x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +x +x +[x +x +x +x +x +x +x +x +x +x] +ša# +[ina +LUGAL-MEŠ-ni +a-lik +mah-ri-ia +mam₂-ma +šip-ru +šu-a-tu +la +e-hu-uz-zu] +bul#-ṭi# +T[A +muh-hi +EN +UMBIN +liq-ti +BAR-MEŠ +ta-hi-zu +nak-la] +a#-zu#-ga[l-lu-ut +{d}nin-urta +u +{d}gu-la +ma-la +ba-aš₂-mu] +ina +ṭup-pa-a-n[i +aš₂-ṭur +as-niq +IGI.KAR₂-ma] +a-na +ta-mar#-t[i +ši-ta-si-ia +qe₂-reb +E₂.GAL-ia +u₂-kin] +{u₂#}HAR#.HAR# +[x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +ZI₃ +GIG +DIDA# +S[IG₅ +x +x +x +x +x +x +x +x +x +x +x +x] +{šim}GUR₂.GUR₂ +{šim}LI +ni#-kip#-t[a₅ +x +x +x +x +x +x +x +x +x] +{šim}ŠEŠ +ZI₃ +GIG +[x +x +x +x +(x +x +x) +x +x +x +x +x +x +x] +{šim}GUR₂.GUR₂ +{šim}LI +{šim.d}NIN.URTA +DIŠ-niš +G[AZ +x +x +x +x +x] +ina +KAŠ +ta-la₃-aš +tu-ba-har +SAG.D[U-su +x +x +x +x +x] +{šim}GUR₂.GUR₂ +{šim}LI +{šim.d}NIN.URTA +NUMUN +{u₂}ka#-[man-ti +x +x +x +x +x +x] +DIŠ-niš +GAZ +SIM +ina +KAŠ +tara-bak +SAG.DU-su +[x +x +x +x +x] +PA# +{giš}GIŠIMMAR +ša₂ +ina +NU +IM +i-nam-zu-zu +TI-qe₂ +ina +UD.DA +HAD₂.A# +[x +x +x +x +x +x +x +x +x] +{u₂}ap₂-ru-ša +SUD₂ +ina +I₃ +HI.HI +ILLU +{giš}a-bu-k[a-tu₂ +x +x +x +x] +EN₂ +A.RA.ŠE.RA +A.RA.BA.ŠE.RA +IZI +BIL.L[I +x +x +x +x] +7-šu₂ +u +7-šu₂ +ana +ŠA₃ +ŠID-nu +SAG.KI-šu₂ +[x +x +(x +x)] +{u₂}KUR.KUR +ni-kip-ta +ina +NE +tu-qat-tar-šu₂ +{šim}GUR₂.GUR₂ +n[i-kip-ta +x +x] +NUMUN +{u₂}AB₂.DUH +KA# +A#.AB.BA +{šim}ŠEŠ +DIŠ-niš +SUD₂ +ina +I[ZI +x +x +x +x +x +x] +{na₄}mu-ṣu₂ +{šim.d#}MAŠ# +KA +A.AB.BA +UH₂#.{d#}ID₂# +[DIŠ-niš] +SUD₂# +ina +{sig₂#}HE₂.ME.DA +NIGIN +I₃ +ŠEŠ₂ +[x +x +x +(x) +KEŠ]DA-as +[ni-ki]p?-[ta?] +x +[x +x] +x +[...] +TAG.TAG +[...] +x +x +x +[...] +x +x +I₃#.UDU# +ELLAG₂ +HI.HI +SAG.KI-šu₂ +TAG +10# +GIN₂ +ZA₃#.[HI].LI#{sar#} +10 +GIN₂ +ŠE.SA.A +ina +A +GAZI{sar} +tara-bak +LAL +10 +GIN₂ +ZA₃.HI#.LI{sar#} +10# +GIN₂ +IM.BABBAR +10 +GIN₂ +ZI₃ +ŠE.SA.A +ina +A +GAZI{sar} +tara-bak +LAL +TUKUM.BI +LU₂ +U₃ +SAG.KI +DAB-su +ru-ša-am +ša +SUHUŠ +{giš}IG +ABUL +ina +a-ṣi-ka +ša₂ +ana +GUB₃-ka +GUB-zu +ŠU.TI +SIG₂ +{munus}AŠ₂.GAR₃ +GIŠ₃.NU.ZU +[ina] +{sig₂#}HE₂.ME.DA +KEŠDA-as₂ +ina +SAG.KI-šu₂ +KEŠDA-ma +NA +BI +TI +[TU]KUM.BI +LU₂ +U₃ +SAG.KI +DAB-su +PA +{giš}GIŠIMMAR +ša +i-nam-zu-zu +TI-qe₂ +[HAD₂.A] +GAZ# +SIM +ina +KAŠ +SILA₁₁-aš +SAG.KI-šu₂ +LAL-ma +NA +BI +TI#-uṭ# +[TU]KUM.BI +LU₂ +U₃ +SAG.KI +DAB-su +PA +{giš}GIŠIMMAR +ša +ina-zu-zu +TI-qe₂ +ina# +SAG.KI-šu₂ +tara-kas₂-ma +NA +BI +TI-uṭ +TUKUM.BI +LU₂ +U₃ +SAG.KI +DAB-su +{giš}DIH₃ +ša +ina-zu-zu +ŠU.TI +ina +{sig₂}AKA₃ +NIGIN +ina +{sig₂}HE₂.ME.DA +tara-kas₂ +ina +SAG.KI-šu₂ +tara-kas₂ +NA +BI +TI-uṭ +TUKUM.BI +LU₂ +U₃ +SAG.KI +DAB-su +{sig₂}HE₂.ME.DA# +MUNUS +ša₂ +MUD +AL.KUD +NU.NU +SA +MAŠ.DA₃ +{u₂}NINNI₅ +NITA₂ +KI +{sig₂}HE₂.ME.DA +ta-pat-til +{na₄}NIR₂ +{na₄}MUŠ.GIR₂# +{na₄#}BABBAR.DILI +{na₄}ZU₂ +GE₆ +KEŠDA +ina +SAG.KI-šu₂ +KEŠDA +NA +BI +TI-uṭ +TUKUM.BI +LU₂ +U₃ +SAG.KI +DAB-su +la-aš-hi +MUŠ +TAB +GIR₂.TAB +{sig₂}HE₂.ME.DA +{u₂}aš₂?#-lu# +NITA₂ +SA +MAŠ.DA₃ +DIŠ-niš +NU.NU +{sig₂}AKA₃ +NIGIN +ina +SAG.KI-šu₂ +tara-kas₂-ma +NA +BI +TI-uṭ +TUKUM.BI +LU₂ +U₃ +SAG.KI +DAB-su +{tug₂}NIG₂.DARA₂.ŠU.LAL₂ +ina +DUR +{sig₂}AKA₃ +NIGIN-mi +ina +SAG.KI-šu₂ +KEŠDA-ma +NA +BI +TI-uṭ +DIŠ +LU₂ +ZI +SAG.KI +TUKU +u₃ +ri-mu-ta₅ +TUKU +PA +{giš}ŠE.DU₃.A +HAD₂#.DU# +GAZ +SIM +ZI₃ +ŠE.MUŠ₅ +sah-le₂-e +ARA₃-ti₃ +ZI₃ +ŠE.SA.A +DIŠ-niš +SUD₂ +ina +A +GAZI{sar} +tara-bak +LAL.LAL-ma +TI +[DIŠ +N]A +ZI +SAG.KI +TUKU +u₃ +ri-mu-ta₅ +TUKU# +PA +{giš}šu-nim +HAD₂.A +GAZ +SIM +[ina +ZI₃] +GIG# +sah-le₂-e# +x +[x +x] +ina +A.GEŠTIN.NA +tara-bak +LAL-su +[x +x +x +x +x +x +x +x +x +x +x +x] +GAZ# +SIM# +{šim}ŠEŠ +[x +x +x +x +x +x +x +x +x +tara]-bak# +LAL +[x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +Z]I₃ +GIG +sah-le₂-e +[x +x +x +x +x +x +x +x +x +x] +TI +[x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +G]I +gu-ur +GI.ŠUL.HI +[x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +K]I.MAH# +GUB-zu +[x +x +x +x +x] +ŠEŠ₂ +[x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +tara-ba]k +LAL +[x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +{u₂}SU.AN].DAR?# +ZI₃?# +DIŠ +NA +[x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +ZI₃ +ŠE.S[A.A +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +DIŠ +NA +SA[G.KI +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +{giš}KIŠ[I₁₆.HAB +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +DIŠ +NA +SAG.KI +GUB₃#-[šu₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +{u₂}SU.AN.DAR# +[x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +DIŠ +NA +SAG.KI-MIN-šu₂ +ṣa[b-ta-šu₂-ma +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +DUH.ŠE.GIŠ.I₃ +ša₂-bu-l[u-te +x +x +x +x +x +x +x +x +x +x +x +(x)] +DIŠ +NA +SA +SAG.KI +ZA[G-šu₂ +...] +{u₂}SI.SA₂ +ZI₃ +G[IG +...] +DIŠ +NA +SA +SAG.KI +GU[B₃-šu₂ +...] +{u₂}SI.SA₂ +[...] +DIŠ +NA +SA +SAG.KI +Z[AG-šu₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +{u₂}EME +UR.GI₇ +i[na +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +DIŠ +NA +SA +SAG.K[I +x +x +x +x +x +x +x +x +x +x +x +x +x] +DIŠ +NA +SA +S[AG.KI +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +sah-le₂-e# +[x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +DIŠ +NA +x +[...] +LAL-m[a? +...] +DIŠ +N[A +...] +DIŠ +[...] +DIŠ# +KIMIN# +x +[...] +ZU₂.LUM +SA₅# +x +[...] +DIŠ +NA +SA +SAG.KI-MIN-šu₂ +Z[I? +...] +{u₂}ŠAKIRA +{u₂}EME# +UR.GI₇# +{u₂?#}[...] +U₂ +BABBAR +lu-ur-pa-na +IM.BABBAR +{na₄}NIG₂.KALAG.GA +{na₄}as-h[ar? +...] +DIŠ +KIMIN +KU.KU +{na₄}AŠ₂.GI₄.G[I₄ +...] +DIŠ +KIMIN +PA +{giš}ŠINIG +SIG₇-su# +[...] +ana +ŠA₃ +{na₄}PEŠ₄ +tu +x +[...] +DIŠ +NA +ina +DAB +GIDIM +S[AG.KI-šu₂ +...] +SA# +IGI-MIN-šu₂ +u₂-za[q-qa-su +...] +[{n]a₄}mu-ṣa +{na₄}x +[...] +[N]A₄ +AN.BAR +{n[a₄} +...] +[E]N₂ +ur-sag +{d}as[al-lu₂-hi +...] +[DIŠ +N]A +SAG.KI-šu₂ +D[AB-su-ma +...] +[DIŠ?-ni]š? +SUD₂?# +[...] +[x +x +x +(x)] +{u₂#}IGI#-lim# +{u₂#}tar#-muš# +[x +x +x +x +x +x +x +x +x +x] +SIG₂# +BABBAR# +{u₂}NINNI₅# +NITA₂ +NU.NU +EN₂# +[x +x +x +x +x +x +x +x +x] +A.RI.A +NAM.LU₂.U₁₈.LU +SAG.KI#-šu₂# +[x +x +x +x +x] +ni-kip-ta₅ +DIŠ-niš +SUD₂ +ina +I₃ +{giš}EREN +HI.HI +ŠEŠ₂.ME[Š-ma +TI] +DIŠ +NA +SAG.KI.DAB.BA-ma +SA.GU₂-šu₂ +GU₇.MEŠ-šu₂ +ŠU.GIDIM.MA +{giš}s[i-hu +x +x +x +x] +{u₂}ba-ri-ra-ta₅ +GI.ŠUL.HI +GAZ +SIM +ina +A +GAZI{sar} +[x +x +x +x] +DIŠ +NA +SAG.KI.DAB.BA-ma +TA +{d}UTU.ŠU₂.A +EN +EN.NUN.UD.ZAL.LI +G[U₇-šu₂ +x +x +x] +DIŠ +NA +SAG.KI.DAB.BA-ma +ŠA₃ +ŠA₃-bi +GU₃.GU₃-si +ŠU.GIDIM +š[a₂-ne₂-e +x +x +x +x] +DIŠ +NA +SAG.KI.DAB.BA-ma +ma-gal +BURU₈ +KI.NA₂ +la +i#-[na-aš-ši +UŠ₂] +DIŠ +NA +SAG.KI.DAB.BA-ma +ma-gal +[x +x +x] +SA +SAG.KI-šu₂ +ma-gal +te-bu-u₂# +x +[x +x +x +x +x] +an#-nu-tu₄ +x +x +x +x +[x +x +x +x +x +x +x +x +x +x] +[šum-ma +SAG.KI.DAB.BA +ŠU.GIDIM.MA +ina +SU +NA +il-ta-za-az-ma +NU +DU₈] +DUB# +2#.KAM₂# +DIŠ +NA +U[GU-šu₂ +KUM₂ +u₂-kal] +E₂.GAL +{m}AN.ŠAR₂-DU₃-A +MAN +ŠU₂ +MAN +KUR +AN.ŠAR₂{ki} +ša +{d}AG# +{d#}taš#-[me-tu₄ +GEŠTUG-MIN +DAGAL-tu₂ +iš-ru-ku-šu₂] +e-hu-uz-zu +IGI#-MIN# +na#-mir#-tu₄# +ni#-siq# +ṭup#-š[ar-ru-ti] +ša +ina +LUGAL-MEŠ-ni +a-lik +mah-ri-ia +mam₂-ma +šip#-ru# +šu₂-a-tu +la! +e-h[u-uz-zu] +bul-ṭi +TA +muh-hi +a-di +UMBIN +liq-ti +BAR-MEŠ +ta-hi-zu +[nak-la] +a#-zu-gal-lu-ut +{d}nin-urta +u# +{d#}gu-la +ma-l[a +ba-aš₂-mu] +ina +ṭup-pa-a-ni +aš₂-ṭur +as-niq +I[GI.KAR₂-ma] +a-na +ta-mar-ti +ši-ta-si-ia +qe₂-reb +E₂.G[AL-ia +u₂-kin] +DIŠ +NA +SAG +ŠA₃-šu₂ +GU₇-šu₂ +ina +ge-ši-šu +ZE₂ +im-ta-na-ʾa +NA +BI +qer-be₂-na# +GIG +SUM{sar} +GA.RAŠ{sar} +UZU +GUD +UZU +ŠAH +KAŠ +{lu₂}KURUN₂.NA +NU +uš-ta-mah-har# +ana +TI-šu₂ +1/2 +SILA₃ +ZA₃.HI.LI +1/2 +SILA₃ +{šim}LI +1/2 +SILA₃ +{šim}GUR₂.GUR₂ +1/2 +SILA₃ +NUMUN +GADA +1/2 +SILA₃ +pa-pa-si +MUNU₆# +1/2 +SILA₃ +{šim}IM.DI +1/2 +SILA₃ +NUMUN +{u₂}qut-ra-ti +1/2 +SILA₃ +GAZI{sar} +1/2 +SILA₃ +{giš}ŠE.NU +1/2 +SILA₃ +GU₂.NIG₂.AR₃.RA +1/2 +SILA₃ +pa-pa#-si-{d}ID₂ +1/2 +SILA₃ +U₂ +a-ši-i +1/2 +SILA₃ +{u₂}KUR.RA +1/2 +SILA₃ +ŠE₁₀ +TU{mušen} +1/3 +SILA₃ +NUMUN +{u₂}AB₂.DUH +1/3# +SILA₃ +e#-reš-ti +A.ŠA₃ +10 +KISAL +ILLU +{šim}BULUH +10 +KISAL +KA +A.AB.BA +1 +SILA₃ +ZI₃ +GIG +1 +SILA₃ +ZU₂.LUM.MA +1 +SILA₃ +DIDA# +SIG +1# +SILA₃ +ZI₃.KUM +TEŠ₂.BI +GAZ +SIM +ina +KAŠ +GIM +ra-bi-ki +ta-rab-bak +ina +TUG₂.HI.A +SUR-ri +šu-lu-uš-ti +9 +UD#-me# +LAL +ina +4 +UD-me +DU₈-ma +ta-mar +šum₂-ma +U₃.BU₂.BU₂.UL +BABBAR +ŠA₃-šu₂ +i-pa-šah# +šum₂-ma +U₃.BU₂.BU₂.UL +SA₅ +ŠA₃-šu₂ +KUM₂ +u₂-kal +šum₂-ma +U₃.BU₂.BU₂.UL +SIG₇ +UD.DA +KUR-id +GUR.GUR-šu +šum₂-ma +U₃.BU₂.BU₂.UL +GE₆ +u₂-šam-ra-su-ma +NU +TI +ana +U₃.BU₂.BU₂.UL +bu-le-e +{u₂}LAG +A.ŠA₃ +IM.GU₂ +ša₂ +UD.DA +SA₂-kat₃ +GAZ +SIM +ina +A +GAZI{sar} +ta-la-aš₂ +LAL-id +EGIR-šu₂ +sah-le₂-e +ina +KAŠ +NAG +UD-ma +NAG-u₂ +ina +A +{giš}šu-nu +{giš}ŠINIG +{u₂}ak-tam +{u₂}IN₆.UŠ₂ +ir-ta-na-haṣ +DIŠ +NA +ZE₂ +GIG +SUM{sar} +SUD₂ +ina +A +NU +pa-tan +NAG +A.GEŠTIN.NA +KALAG.GA +AL.US₂.SA +GAZI{sar} +kab-ru-ti +NAG +KAŠ.BIR₈ +NAG +tu-ša₂-ʾ-raš-šu₂ +GAZI{sar} +SUD₂ +ina +A +NAG +MUN +SUD₂ +ina +A +NU +pa-tan +NAG +MUN +SUD₂ +ina +KAŠ +NU +pa-tan +NAG +ILLU +a-bu-kat₃ +GAZ +ana +ŠA₃! +KAŠ₃!.BIR₈ +ŠUB-di +ina +MUL₄ +tuš-bat +ina +še-ri₃ +LAL₃ +I₃ +hal-ṣa +ana +ŠA₃ +ŠUB +NAG-ma +i-ar₂-ru +NUMUN +GI.ZU₂.LUM.MA +SUD₂ +ina +KAŠ +NAG +{u₂}nam-ruq-qa +SUD₂ +ina +KAŠ +NAG +U₂ +DILI +U₂ +ZE₂ +ina +KAŠ +NAG +U₂ +me-er-gi-ra-nu +U₂ +ZE₂ +ina +KAŠ +NAG# +GAZI{sar} +U₂ +ZE₂ +ina +KAŠ +NAG +U₂ +{šim}LI +U₂ +ZE₂ +ina +KAŠ +NAG +U₂ +NU.LUH.HA +U₂ +ZE₂ +ina +KAŠ +NAG +U₂ +BAR +{giš}šu-ši +U₂ +ZE₂ +ina +KAŠ +NAG +PA +{u₂}al-la-nu +U₂ +ZE₂ +ina +KAŠ +NAG +U₂ +U₅ +ARGAB{mušen} +U₂ +ZE₂ +ina +KAŠ +NAG +U₂ +LAG +MUN +U₂ +ZE₂ +ina +KAŠ +NAG +U₂ +SUM{sar} +U₂ +ZE₂ +ina +KAŠ +NAG +U₂ +SUHUŠ +{giš}NAM.TAR +NITA₂ +U₂ +ZE₂ +SUD₂ +ina +KAŠ +NAG +U₂ +SUHUŠ +{giš}šu-ši +U₂ +ZE₂ +ina +I₃ +u +KAŠ +NAG +U₂ +ṣi-ba-ru +U₂ +ZE₂ +SUD₂ +ina +A +NAG +DIŠ +NA +NU +pa-tan +ŠA₃-šu₂ +ana +pa-re-e +e-te-ne₂-la-a +UH₂ +ma-gal +ŠUB-MEŠ +A-MEŠ +ina +KA-šu₂ +mal-da-riš +DU-ku +pa-nu-šu₂ +iṣ-ṣa-nu-du +ŠA₃-MEŠ-šu₂ +MU₂.MU₂-hu +MURUB₄-MIN-šu₂ +kim-ṣa-šu₂ +TAG.GA-MEŠ-šu₂ +KUM₂ +ŠED₇ +IR# +TUKU-MEŠ-ši +NINDA +u +KAŠ +LAL +A +ŠED₇ +ma-gal +NAG +i-par-ru +ina +DUR₂-šu₂ +GIŠ₃-šu₂ +SIG₇ +u₂-tab-ba-kam +MUŠ₂-MEŠ-šu₂ +i-te-nin-nu-u +UZU-MEŠ-šu +tab-ku +mim₃-ma +GU₇-ma +UGU-šu₂ +ul +DU₁₀.GA +NA +BI +ZE₂ +sah-pa-su +ana +TI-šu₂ +{šim}GUR₂#.[GUR₂] +{šim#}LI# +{šim}GAM.MA +3 +U₂.HI.A +ŠEŠ +SIG₇-su-nu# +TI-qe₂# +HAD₂.A +SUD₂ +ina +GEŠTIN +KALAG.GA +NU +pa-tan# +N[AG-šu₂] +SI#.SA₂#-ma# +SAG# +ŠA₃#-šu₂ +ŠA₃-šu₂ +LAL#-id# +bah-ra +GU₇# +b[ah-ra +NA]G +UD#.3#.KAM +tuš#-t[e-še-er-ma +TI] +DIŠ +KI.MIN +{u₂}a-ra-ri-a-nu +SUD₂ +ina +KAŠ +NU# +pa#-tan# +N[AG-šu₂ +x +x +x] +DIŠ +KI.MIN +{u₂}sah-la-a-nu +SUD₂ +ina +GEŠTIN +KALAG.GA +NU +pa-tan +N[AG-šu₂ +KI.MIN] +DIŠ +KI.MIN +{u₂}ṣi-bu-ru +SUD₂ +ina +GA +KU₇.KU₇ +NAG#-[šu₂ +KI.MIN] +DIŠ +KI.MIN +HENBUR₂ +{u₂}UKUŠ₂.HAB +SUD₂ +ina +GEŠTIN +LAL₃ +u +I₃ +hal-ṣi# +NAG-šu₂ +K[I.MIN] +DIŠ +KI.MIN +U₂ +SIG-MEŠ +ša₂ +KUR-e +ina +GEŠTIN +LAL₃ +u +I₃ +hal#-ṣi# +NAG-šu₂ +KI#.[MIN] +DIŠ +NA +NINDA +GU₇ +KAŠ +NAG-ma +u₂-nap-paq +u +IGI-MEŠ-šu₂ +NIGIN-MEŠ-du +NA +BI +GIG +ZE₂# +GIG +ana +TI-šu₂ +{u₂#}[UKUŠ₂.HAB +BI]L₂ +ša₂ +{im}SI.SA₂ +ina +A +LUH-si +{šim}BULUH +tu-sal-lat +{u₂}NU.LUH.HA +te-be₂#-er +3 +U₂.HI#.A# +Š[EŠ +ina +KA]Š +SAG +ki +pi-i +mal-ma-liš +tara-muk +ana +IGI +{mul}UZ₃ +GAR-an +GIŠ.HUR +NIGIN#-mi +ina# +A₂#.[GU₂.ZI.GA +ša-š]u₂-nu# +ta-ša₂-hal +NU +pa-tan +NAG-ma +i#-lap#-pat#-su#-ma# +is-sal-la-ʾ +la +ta-na-k[ud +T]I-uṭ# +[ina] +UD# +ŠE#.GA +NAG-šu +[x +x] +x +x +[x +x] +x +me# +ta# +x +[x +x +u]r₂-ne₂-e +{šim}BAL +{u₂}KUR.KUR +{giš}GEŠTIN +KA₅.A +[x +x] +ina +3 +SILA₃ +KAŠ# +ina +{urudu#}ŠEN#.[TUR +ŠEG₆-šal +E]N +ana# +2 +SILA₃ +i-tur-ru +i-kaṣ₃-ṣa-aṣ +[x +x +ana] +IGI +ŠUB-di +pa-na +A +GAZI{sar} +i-š[ah]-hat +EGIR-šu₂ +an-na-a +ana +DUR₂-šu₂ +DUB-ak +[DIŠ] +KI#.MIN# +{u₂}UKUŠ₂.HAB +HAD₂.A +GAZ +SIM +KI +ZI₃.KU[M +H]I.HI +ina +A +GAZI{sar} +tara-bak +ina +KUŠ +SUR +LAL +DIŠ +NA +ina +ti-bi-šu₂ +SAG.DU-su +ana +IGI-šu₂ +iš-ta-na-da#-as-su +GU₂-su +MURUB₄-MIN-šu₂ +kim-ṣa-šu₂ +GIR₃-MIN-šu₂ +GU₇-MIN-šu₂ +ŠA₃-šu₂ +ii-ʾ-aš₂ +ŠA₃-šu₂ +ana +pa-re-e +i-te-ne₂-el#-la# +IGI#-MEŠ-šu₂ +iṣ-ṣa-nu-du-šu₂ +NA +BI +ZE₂ +DAB-su +ana +TI-šu₂ +[{gi]š}EREN +{giš}ŠUR.MIN₃ +{šim}GIR₂ +GI +DU₁₀ +NAGA +SI +{šim}IM#.[DU? +MUN +e]me-sal-li₃ +ina +KAŠ +tara-bak +ina +NINDU +UŠ₂-er +ana +DUR₂-šu₂ +DUB-ak +{u₂#}NU.LUH.HA +{šim}LI +NA₄ +ZU₂.LUM.MA# +ina# +[{na₄}ur-ṣ]i +DIŠ#-niš +ARA₃.ARA₃ +ina +I₃.UDU +HI.HI +alla-nu +DU₃-uš +I₃.GIŠ +SUD +ana +DUR₂-šu₂ +GAR +[DIŠ +N]A +GABA-su +u +ša₂-šal-la-šu₂ +KUM₂-MEŠ +ZU₂-MEŠ-šu₂# +[i-hi-la] +e#-peš +KA-šu₂ +DUGUD +NA +BI +ZE₂ +GIG +ana +TI-šu₂ +[{šim}]GUR₂.GUR₂ +{šim}LI +{šim}GAM.MA +MUN +I[LLU +LI.TA]R +{u₂}KU₆ +U₂ +BABBAR +{u₂}HAB +{u₂}ak-tam +[{giš}HAB] +{u₂#}KUR.KUR +U₅ +ARGAB{mušen} +12 +U₂#.[HI.A +ŠEŠ +DIŠ]-niš# +ina +KAŠ +ba-lu +pa-tan +NAG-ma +BURU₈ +[sa]h-le₂-e +{u₂}KUR.RA +kam-mu +ILLU +LI#.[TAR +{ši]m}BULUH +{šim#}LI +{šim}GUR₂.GUR₂ +ILLU +{šim}BULUH +[NUMUN?] +{u₂#}NU.LUH.HA +ZI₃ +{u₂}NU.LUH.HA +[{u₂}u]r₂-nu-u +TI-su-nu +ina +KAŠ +NAG#-ma +BURU₈ +[x +x +x] +{u₂#}KUR.KUR +{u₂}NU.LUH.HA +[{u₂}HAR].HAR# +{šim}ŠEŠ +ILLU +LI.DUR# +KUR#-i# +UH₂#.{d#}ID₂# +[x +x] +U₂# +NAM#.TI#.LA# +{u₂#}GAMUN# +{u₂#}[x +x] +{u₂#}KUR#.RA +sah-le₂-e +GAZI{sar} +1[7? +U₂.HI.A] +ŠEŠ# +[KI? +MIN?] +[ILLU +L]I.TAR +U₂ +BABBAR +U₅ +ARGAB{mušen} +{u₂}a[k-tam +x +x +x +{ši]m}BULUH# +x +x +[ina +KAŠ +NA]G-ma +BURU₈ +[{u₂}K]UR.KUR +ILLU +LI.TAR +U₂ +BABBAR +[... +NAG-m]a +BURU₈ +[GI +D]U₁₀.GA +{šim}MUG +GAZI{sar} +U₂ +BABBAR +x +[... +ina +IZ]I +ŠEG₆-šal +NAG-ma +BURU₈ +[{u₂}u]r₂-nu-u +{u₂}SUMUN.DAR +{u₂}šib-b[u?-ra-tu₂ +x +x +x] +{u₂#}KUR.RA +{šim}IM.MAN.DU +[GI +DU₁₀.G]A +an-dah-še +x +[x +x +U₂.HI.A +an-nu-t]i +ina +KAŠ +NAG-ma +BURU₈ +[GI +DU₁₀.G]A +PA +{u₂}[... +{š]im}BULUH +U₂ +NAM.TI.LA +ZU₂.LUM.MA +[... +ina +MU]L₄ +tuš-bat +ina +še-ri₃ +NU +pa-tan +NAG-ma +BURU₈ +[...] +{u₂#}[x +x +x] +x +ILLU# +LI.TAR +7 +U₂.HI.A +ŠEŠ +ina +KAŠ +NAG-ma +BURU₈ +[...] +x +{u₂}KUR#.K[UR +{šim}GUR₂.GUR₂ +NA]GA +SI +MUN +{u₂}IGI-lim +{u₂}IGI-niš +{u₂}tar-muš₈ +[{u₂}KUR.RA +{na₄}ga-bi-i +{u₂}ak-tam +{u₂}HA]R.HAR +14 +U₂#.[HI.A +ŠE]Š +DIŠ-niš +SUD₂ +ina +KAŠ +NAG-ma +BURU₈ +[... +10 +GIN₂ +{u₂}sa]h-la#-a!-nu! +10 +GIN₂ +AL.U[S₂.S]A +10# +GIN₂# +A#.GEŠTIN#.NA +KALAG.GA +10 +GIN₂ +KAŠ +10 +GIN₂ +ut-hi-ra +[... +10? +GIN₂ +{u₂}HAR.H]AR +1 +GIN₂ +SUM{sar} +1/2 +GIN₂ +M[UN +1/2 +GIN₂ +GA]ZI{sar} +tuš-te-mid +ina +MUL₄ +tuš-bat +ina +še-ri₃ +[... +ina +KA-š]u₂ +u +DUR₂-šu₂ +SI.SA₂-ma +TI +x +[x] +x +A +UZU +kab-ru-ti +NAG-ma +ina-eš +[DIŠ +NA +lu +ZE₂ +lu +ah-ha]-za# +lu# +a-mur-ri-qa-nu +DAB#-[su +{u₂}ur₂]-ne₂?#-[e] +{u₂#}KUR.KUR +{u₂}GEŠTIN +KA₅.A +{šim}LI +{šim}MUG# +3# +SILA₃ +KAŠ +ina# +ŠEN#.TUR +ŠEG₆-šal# +ta-ša₂-hal +I₃.GIŠ +ana +I[GI +...] +{u₂}GIR₂-a-nu +{u₂}mur#-gab-ri-a-nu +{u₂}a-ri-hu +{u₂#}[...] +{u₂}ṣa-ṣu-un-ta₅ +{u₂#}si-si-ni +ŠA₃-bi +{u₂}x +[...] +{u₂}UKUŠ₂.HAB +{u₂}[x] +HAB +{u₂#}HAB# +{u₂}tar-muš₈ +{u₂}N[U.LU]H.[HA +...] +HENBUR₂ +{u₂}EME +UR.GI₇ +HENBUR₂ +{šim}LI +[HEN]BUR₂ +{šim}GAM.ME +sah-le₂-e# +[...] +HENBUR₂ +{u₂}UKUŠ₂.HAB +{u₂#}sah-la-na +SUD₂ +ina +GE[ŠTIN +...] +DIŠ +NA +ZE₂ +qid-ha +lu-ba-ṭa# +GIG +ana +TI-šu₂ +{ši[m}...] +{u₂}tar-muš +{u₂}IGI-lim +{šim#}BULUH +{u₂}KUR.RA +ILLU +{ši[m}...] +DIŠ +NA +a-ša₂-a +pa-šit-ta₅ +u +lu-ba#-ṭi₅ +GIG +{u₂#}[...] +{u₂}KUR.RA +URUDU +SUMUN +7 +U₂.[HI].A# +ŠEŠ# +DIŠ#-[niš +...] +DIŠ +NA +ZE₂ +DAB-su +{u₂}KUR.RA# +NU# +pa-tan +a-he-en-n[a-a +...] +ina +KAŠ +NAG-ma +KAŠ +SAL.LA +NAG# +[...] +ana +a-ša₂-a +pa-šit-ta₅# +u +lu-ba-ṭi +ZI-hi +U₂ +BABBAR +ILLU +LI.T[AR +...] +DIŠ +NA +pa#-šit-tu₂ +DAB-su +{šim}GUR₂.GUR₂ +{u₂}HAR.HAR +{u₂}KUR.KUR +{u₂}KUR#.[RA +...] +x +ILLU# +LI.TAR +{u₂}NU.LUH.HA +kam₂-mu +ša₂ +{lu₂}AŠGAB +{u₂}LAG +A.ŠA₃# +x +[... +m]a +BURU₈ +{u₂}HAR.HAR +{u₂}NU.LUH.HA +ILLU +LI.TAR +{šim}LI +{šim}GUR₂.GUR₂ +5# +U₂#-[HI.A +...] +ŠEŠ₂?# +{u₂}ak-tam +{u₂}KUR.KUR +NAGA +SI +{šim}GUR₂.GUR₂ +{šim}LI +ILLU +LI.TAR +MUN +x +8# +U₂#.ME# +NAG# +[i-ša₂-r]iš +IM +DIŠ +NA +SAG.KI.DAB.BA +TUKU +a-ši-a +pa-šit-tu₄ +u +lu-ba-ṭi +GIG +ana +TI-šu₂ +15 +GIN₂ +{šim}GUR₂.GUR₂ +15 +GIN₂ +{u₂}ur₂-nu-u +15 +GIN₂ +{u₂}KUR.KUR +DIŠ-niš +GAZ +SIM +ina +I₃ +KAŠ +SAG +tu-ša₂-ha-an +ana +DUR₂-šu₂ +DUB +ana +ši-bi +NAG-šu₂# +DIŠ +NA +NU +pa-tan +SAG +ŠA₃-šu₂ +i-kaṣ₃-ṣa-as-su +KUM₂ +ŠA₃ +TUKU-MEŠ +ina +ge-ši-šu +ZE₂ +i-ar₂-ru₃ +NA +BI +pa-šit#-ta₅# +tu-ga-na +GIG +ana +TI-šu₂ +{šim}GUR₂.GUR₂ +{šim}LI +ILLU +LI.TAR +{u₂}ak-tam +{u₂}KUR.KUR +MUN +NAGA +SI +TI-su-nu +ina +KAŠ +SAG +tara-muk +ina +MUL₄ +tuš-bat +ina +še-ri₃ +NU +pa-tan +ta-ša₂-hal +NAG-ma +tu-ša₂-ʾ-ra-šu-ma +TI +DIŠ# +NA +ZE₂ +GIG +x +[x +x +x +x] +EN₂# +ZE₂ +eṭ-li +ZE₂ +eṭ#-li +i +x +[...] +u₂#-ri +eṭ-li +e-el₃ +ša +li-li +x +[...] +x +ti +ma +ga-ra-aš-ga-ra-a[š +ša +ŠAH +...] +[x] +an# +ra +ti +e-zib +ba +mu# +x +x +[...] +[KA.INIM.M]A? +[...] +[EN₂ +ze₂-am₂] +u₂#-[šim-gen₇ +...] +[...] +[x +x +x] +e[me +...] +[ze₂ +ni₂]-za# +mu-e#-[ši-du₃-a +...] +izi#-gen₇# +te-ni!(ER)-i[b₂ +...] +tu₆-du₁₁-ga +{d}ni[n-girim₃ +...] +{d}en-ki-ke₄ +d[ag +...] +lag +mun +šu +u₃-[me-ti +nam.šub +eridu]-ki#-ga# +[x +x +x +x] +ka-ka-na!(MA) +u₃-[me-ni-gar +...] +im!(AH)-gen₇ +gu-du-ni-ta +he₂-e[m-ma-ra-d]u +bu#-lu-uh-gen₇# +he₂#-[si-il-le] +EN₂ +mar-tu +mar-tu +mar-tu +pa#-š[it-tu₂-ma] +mar-tu +GIM +IGIRA₂#{mušen#} +SIG₇ +it-ta-na-al-lak +a#-l[ak?-ta] +it-ta-na-za-az# +ina +gi-sal-li +ša +BAD₃ +i-da-gal +a#-ki#-lum +ak#-li +i-da-gal +ša₂-tu-u₂ +ku-ru-un-ni +ki-i +tak-ka-la +ak#-la# +ki-i +ta-ša-ta-a +ku-ru-un-ni +a-ma-qu₂-tak-ku-nu-šim-ma# +tu-ga-ša-a +ki-i +GUD +TU₆ +EN₂ +EN₂ +UD₅ +ar-qa₂-at +a-ruq# +DUMU-ša +a-ruq +{lu₂}SIPA-ša +a-ruq +na-qid-sa +ina +e-ki +SIG₇ +U₂-MEŠ +SIG₇-MEŠ +ik#-kal +ina +a-tap-pi +a-ruq-ti +A-MEŠ +SIG₇-MEŠ +i-šat-ti +i-suk-ši +{giš}GIDRU +ul +u₂-tir-ra# +pa-ni-ša +i-suk-ši +kir-ba-na₇ +ul +u₂-šaq-qa-a +re-ši-ša +i#-suk-ši +pil₂-li +{u₂}HAR.HAR# +u +MUN +mar-tu +GIM +im-ba-ri +ana +ša₂-ha-hi +it-bi +EN₂# +ul# +ia-ut-tu +EN₂ +{d}e₂-a# +[u +{d}asal]-lu₂#-hi# +EN₂# +{d#}da#-mu +u +{d}gu-la +TU₆ +EN₂ +K[A.INIM.MA +š]a +pa-šit-ti +D[U₃.DU₃.BI +x +x +x +x +GAZ]I?{sar} +pa-pi-ra +DIŠ-niš +SIG₃-aṣ# +EN₂# +[x +x] +ŠID# +[...] +x +x +x +TI#-uṭ# +EN₂# +x +[...] +x +ad?# +x +[... +{d}]e₂#-a# +[x +x +l]ip-ṭur +EN₂# +[KID₃.KID₃.BI +...] +u# +MUN# +nu?#-hur?#-ti +ŠUB-di +[ana +Š]A₃ +EN₂# +Š[ID +... +NU +pa-ta]n +NAG-ma +ina-eš +[K]A.INIM.MA +ZE₂.A.KAM +IG[I.4.G]AL₂.LA +ILLU +LI#.TAR# +SUD₂# +ina +A +NAG#-šu₂ +14 +P[A +G]I.ZU₂.LUM.MA +SUD₂ +ina +5 +GIN₂ +I₃#.GIŠ# +u +KAŠ +NAG-šu₂ +21 +{u₂#}[na]b-ruq#-qa +ina +10 +GIN₂ +I₃.GIŠ +u +KAŠ +NAG-šu₂ +15 +ŠE +{u₂#}[IG]I-lim +ina +1/2 +SILA₃ +I₃.GIŠ +u +KAŠ +NAG-šu₂ +90 +{u₂}[sis-sin-n]i +ŠA₃-bi +ina +10 +GIN₂ +A +NAG-šu₂ +IGI.4.GAL₂.[LA] +U₂# +ma-at-qa +ina +10 +GIN₂ +A +NAG-šu₂ +IGI.4.GAL₂.LA# +U₂# +NAM.TI.LA +ina +10 +GIN₂ +I₃.GIŠ +NAG-šu₂ +1/2 +GIN₂ +{u₂}a-ra-ri-a-nu +ina +10 +GIN₂ +A +NAG-šu₂ +IGI.4.GAL₂.LA +{u₂}IGI#.NIŠ +ina +10 +GIN₂ +A +NAG-šu₂ +IGI.4.GAL₂.LA +{u₂}me-er-gi-ra-nu +ina +10 +GIN₂ +KAŠ +[NAG-šu₂] +DIŠ +NA +ZE₂ +DAB-su +GAZI{sar} +SUD₂ +ina +KAŠ +NAG-ma +i-ar₂-ru₃ +DIŠ +KI.MIN +hi-qa +KAŠ +NAG-ma# +i#-a[r₂-ru₃] +DIŠ +KI.MIN +hi-qa +A.GEŠTIN.NA +KALAG.GA +NAG-ma# +i-ar₂-ru₃ +DIŠ +KI.MIN +{šim}LI +SUD₂ +ina +KAŠ# +NAG-ma# +i-ar₂#-ru₃ +DIŠ +KIMIN +{u₂}me-er-gi-ra-a-na +SUD₂ +ina +A# +NAG-ma +i-ar₂-ru₃ +DIŠ +KIMIN +{u₂}IGI-lim +SUD₂ +ina +KAŠ +NAG-ma +i-ar₂-ru₃ +DIŠ +KI.MIN +MUN +lu +ina +A +lu +ina +KAŠ +NAG-ma +i-ar₂-ru₃ +DIŠ +KI.MIN +SUM{sar} +SUD₂ +ina +A +NAG-ma +i-ar₂-ru₃ +DIŠ +KI.MIN +ILLU +LI.TAR +SUD₂ +ina +A +NAG#-ma +i-ar₂-ru₃ +DIŠ +KI.MIN +ILLU +LI.TAR +SUD₂ +ina +A +tara-muk +ina +MUL₄ +tuš-bat +NAG-ma +i-ar₂-ru₃ +DIŠ +KI.MIN +{u₂}UKUŠ₂.HAB +{šim}BULUH +{u₂}HAR.HAR +ina +I₃ +ina +MUL₄ +tuš-bat +NAG-ma +i-ar₂-ru₃ +DIŠ +KI.MIN +{u₂}NU#.LUH.HA +SUM{sar} +a-he-na-a +SUD₂ +ina +KAŠ +NAG-ma +i-ar₂-ru₃ +DIŠ +NA +IGI.SIG₇#.SIG₇ +GIG-ma +GIG-su +ana +ŠA₃ +IGI-MIN-šu₂ +E₁₁-a +ŠA₃ +IGI-MEŠ-šu₂ +GU-MEŠ +SIG₇-MEŠ +ud-du-hu +ŠA₃-MEŠ-šu₂# +na#-šu-u +NINDA +u +KAŠ +u₂-tar-ra +NA +BI +IM +DU₃.A.BI +GIG +u₂-za-bal-ma +BA.UŠ₂ +DIŠ +NA# +IGI#.SIG₇.SIG₇ +GIG#-ma +SAG.DU-su +pa-nu-šu₂ +ka-lu +ADDA-šu₂ +SUHUŠ +EME-šu₂ +ṣa-bit +ši-pir-šu₂ +SUMUN-ma +BA.UŠ₂ +DIŠ +NA +SU-šu₂ +SIG₇ +pa-nu-šu₂ +SIG₇ +ši-hat +UZU +TUKU +a-mur-ri-qa-nu +MU.NI +{šim}LI +SUD₂ +ina +KAŠ +NAG +{šim}ŠE.LI +SUD₂ +ina +KAŠ +NAG +{šim}ŠEŠ +SUD₂ +ina +KAŠ +NAG +SUHUŠ +{giš}NAM.TAR +NITA₂ +ša₂ +{im}SI.SA₂ +ša₂ +GURUN +NU +IL₂ +SUD₂ +ina +KAŠ +NAG +{u₂}mur-ra-an +KUR-i +SUD₂ +ina +KAŠ# +NAG# +{u₂}kur-ka-na₇ +SUD₂# +ina +KAŠ +NAG +{u₂}IGI-lim +SUD₂ +ina +KAŠ +NAG +{u₂}nam-ruq-qa +SUD₂ +ina +KAŠ +NAG# +{u₂}nam-ruq-qa +SUD₂ +ina +A +NAG +IM.SAHAR.NA₄.KUR.RA +SUD₂ +ana +A.MEŠ +ŠUB +tu-sak₆ +NAG +{šim}LI +SUD₂ +ina +GA +NAG +{šim#}ŠE#.LI +SUD₂ +ina +GA +NAG +{šim}ŠEŠ +SUD₂ +ina +GA +NAG +{u₂}nam-ruq-qa +SUD₂ +ina +GA +NAG +5 +ŠE +KU.KU +AN#.ZAH# +ina +KAŠ +ŠUB +ina +MUL₄ +tuš-bat +tu-sak₆ +NAG +{im}KAL.LA +SUD₂ +ina +I₃ +e-re-ni +u +KAŠ +NAG +NUMUN +{giš}bi-ni +{u₂#}SUMUN#.DAR +SUD₂ +ina +KAŠ +NAG +NUMUN +{giš}bi-ni +SUD₂ +ina +KAŠ +NAG +NUMUN +{giš}bi-ni +SUD₂ +ina +I₃# +u# +KAŠ# +NAG# +SUHUŠ +{giš}šu-ši +SUD₂ +MIN +{u₂}IGI.NIŠ +SUD₂ +ina +KAŠ +NAG +SUHUŠ +{giš}MA.NU +SUHUŠ +{giš}N[U.U]R₂.MA +ina +NINDU# +UŠ₂-er +A-MEŠ-šu-nu-ti₃ +tu-sak₆ +tu-kaṣ₃-ṣa +NAG-ma +ina-eš +{u₂}a-ṣu-ṣum-ta₅ +{u₂}a-nu-nu-ta₅ +ina +qut-rin-ni +tu-qat-tar-šu +MUD₂ +{d}NIN.KA₆.EDIN +ša +ina +{u₂}NINNI₅ +GUB-zu +ta-mah-har +ina +I₃ +EŠ-MEŠ +I₃# +SUMUN +sip-pi₂ +ABUL +ki-lal-le-e +TI +ina +I₃ +EŠ-MEŠ +GIR₃-ra-am +ŠUB +uṣ#-ṣa-a +uš-te-eš-šir +ti-tur-ra +na-di-ta₅ +e-ti-iq# +{u₂}NIG₂ +GIDRU +SA₅ +SUD₂ +ina +KAŠ# +NAG# +{šim#}GUR₂#.GUR₂# +SUD₂# +ina +KAŠ +NAG +GURUN +{u₂}ka-zi-ri +SUD₂ +ina +K[AŠ +NA]G +{u₂}HAR.HAR +SUD₂ +ina +KAŠ +NAG +SU +{giš}NU.UR₂.MA +SUD₂ +ina +KAŠ# +NAG# +x +x +x +x +x +[x +x +x] +SUHUŠ +{u₂#}EME# +UR.GI₇ +SUD₂ +ina +KAŠ +NAG +IGI.6.GAL₂.LA# +[...] +{u₂}IGI.NIŠ +qut-ri₃ +SUD₂ +ina +I₃# +u +KAŠ +NAG +PA# +{giš#}NU.U[R₂.MA +...] +DIŠ +NA +IGI.SIG₇.SIG₇ +DIRI +SUHUŠ# +{giš}šu-ši +x +x +x +[...] +ina +MUL₄ +tuš-bat +NAG +hu-bi#-bi#-ta₅# +[...] +SUHUŠ +{giš}NU.UR₂.MA +ša₂# +[{im}SI].SA₂# +[...] +šum-ma +ina +x +[...] +BAR +{giš}NU#.UR₂#.[MA +...] +sah#-le₂#-[e +...] +x +x +x +x +x +[...] +DIŠ +NA +IGI +SIG₇.SIG₇ +DI[RI +...] +ta-tab-bal +I₃.UDU +U[KUŠ₂.HAB +...] +MUŠ.DIM₂.GURUN.NA# +[...] +x +x +x +[...] +[DIŠ +MIN +x] +x +ina +I₃.UDU +UKUŠ₂.HAB# +S[UD₂ +ina +KA]Š +NAG +DIŠ +MIN +UZU +GUD +kab-ra +GU₇-MEŠ +ZI₃-mi +NU +IGI +[DIŠ +MIN +ŠE₁₀?] +NAM#.LU₂.U₁₈.LU +{šim}ŠEŠ +ina +I₃# +u# +KAŠ +NAG +DIŠ +MIN +AMA +A.A +HAD₂.DU +SUD₂ +ina +I₃ +u +KAŠ +{lu₂}KURUN₂.NA +NAG-ma +BURU₈ +[DIŠ +MI]N +{u₂}ak-tam +ILLU +LI.TAR +U₂ +BABBAR +ina +I₃# +u +KAŠ +NAG +DIŠ +MIN +I₃.UDU +UKUŠ₂.HAB +ina +KAŠ +NAG +[DIŠ +M]IN +{šim}ŠEŠ +NUMUN +{šim}LI +IM.SAHAR.NA₄.KUR.RA +SUD₂ +ina +I₃ +u +KAŠ +NAG +DIŠ +MIN +HAR +KUG.SIG₁₇ +HUŠ.A +ina +ŠU-šu₂ +GAR-an +[DIŠ +N]A +IGI#-MIN-šu₂ +IGI.SIG₇.SIG₇ +PA +{giš}NU.UR₂.MA +SUD₂ +ina +{gi}SAG.KUD +ana +ŠA₃ +IGI-MIN-šu₂ +MU₂-ah +[DIŠ +NA +IGI-MIN-š]u₂ +IGI#.SIG₇.SIG₇ +IGI-MEŠ-šu₂ +UZU-MEŠ-šu₂ +DIRI +7 +MUŠ.DIM₂.GURUN.NA +ri-it-ku-ba-ti +[x +x +x +x +T]I-qe₂# +tu#-qal#-lap +ina +{na₄}NA.ZA₃.HI.LI +SUD₂ +ina +DIDA +HI.HI +GU₇-MEŠ-ma +ina-eš +[...] +x +x +x +sah#-le₂-e +ŠE.SA.A +LAL-su +u +DIDA +HI.HI +GU₇-MEŠ-ma +ina-eš +[...] +x +x +x +x +ina +I₃ +u +KAŠ +NAG-ma +ina-eš +[...] +x +HU# +ši#-ši#-[ta₅ +...] +ina# +KAŠ# +NAG-šu₂ +[...] +x +ta-qal-lap +x +[...] +NAG#-šu₂ +[DIŠ +NA +IGI-MIN-šu₂ +IGI.SIG₇.SI]G₇ +DIRI +{u₂}LAG +A.ŠA₃ +SUD₂ +ina +KAŠ +NAG +an-nu#-ha#-r[a +SUD₂] +ina# +KAŠ +[x +x +x +SU]D₂ +ina +KAŠ +ŠIKA +NUNUZ +GA₂.NU₁₁#{mušen} +SUD₂ +ina +KAŠ +KUG.SIG₁₇ +ina +SIG₂ +SA₅# +ina +ŠU-MIN-šu₂ +KEŠDA +DIŠ# +KI#.MIN +{u₂#}[x] +{u₂#}ŠAKIRA +U₂ +SA₅ +{u₂}LAL +GAZ +A.BI +ta-ṣa-hat +ina +KAŠ +NAG-ma +ina-eš +DIŠ +KI.MIN +G[AZI]{sar} +U₅ +ARGAB{mušen} +U₂ +BABBAR +ina +I₃.NUN +SUD₂ +IGI-MIN-šu₂ +te-te-ne₂-qi₂-ma +ši-ši-ta₅# +ZI-ah +DIŠ +NA +SU#-šu₂ +SIG₇ +5 +ŠE +AN.ZAH +SUD₂ +ina +I₃ +u +KAŠ +NAG-šu₂ +tu-šam-ad-ma +BA.UŠ₂ +DIŠ +NA +IGI#-MIN-šu₂ +a-mur-ri-qa-nu +DIRI +{u₂}HAB +SUD₂ +ina +KAŠ +NAG-ma +ina-eš +DIŠ +MIN +SUHUŠ +{giš}šu-ši +tu-bal +ta-sak₃ +ina +KAŠ +tara₃-sa₃-an +IGI +{d}UTU +NAG-ma +ina-eš +DIŠ +SUHUŠ +{u₂}EME +UR.GI₇ +tu-bal +ta-sak₃ +ina +KAŠ +tara₃-sa₃-an +NAG-ma +ina-eš +DIŠ +{u₂}an-nu-ha-ra +SUD₂ +ina +KAŠ +NAG-ma +ina-eš +DIŠ +NUNUZ +GA₂.NU₁₁{mušen} +SUD₂ +ina +KAŠ +NAG-ma +ina-eš +DIŠ# +SUHUŠ# +{giš}NU.UR₂.MA +SUD₂ +ina +KAŠ +ina +MUL +tuš-bat +ina +A₂.GU₂.ZI.GA +NAG-šu₂ +DIŠ# +NUMUN# +GI#.ZU₂#.LUM#.MA +SUD₂ +ina +KAŠ +ina +MUL +tuš-bat +ina +A₂.GU₂.ZI.GA +NAG-šu₂ +DIŠ +{giš}GEŠTIN +KA₅.A +SUD₂ +ina +KAŠ# +NAG-šu₂ +DIŠ +{u₂}NU.LUH.HA +SUD₂ +ina +KAŠ +NAG-šu₂ +DIŠ +SUHUŠ +{giš}NAM.TAR +SUD₂ +ina +KAŠ +NAG#-šu₂# +DIŠ +ILLU +a#-bu#-ka-ti +ta-sak₃ +ina +KAŠ +NAG-šu₂ +DIŠ +{u₂}MUŠ.DIM₂.GURUN.NA +GAL +ta-sak₃ +ina# +[KAŠ] +u# +I₃ +NAG-šu₂ +DIŠ +NA +SU-šu₂ +SIG₇ +IGI-šu₂ +SIG₇ +u +GE₆ +SUHUŠ +EME-šu₂ +GE₆ +ah#-h[a-z]u +MU.NE +MUŠ.DIM₂.GURUN.NA +GAL-ta +ša₂ +EDIN +ta-sak₃ +ina +KAŠ +NAG +ah-ha-zu +ša₂# +ŠA₃#-šu₂# +SI.SA₂-am +DIŠ +NA +ah-ha-za +DIRI +{šim}LI +SUD₂ +ina +KAŠ +NAG +{šim}ŠE.LI +BABBAR +IM.SAHAR.NA₄.KUR.RA +SUD₂ +ina +I₃ +u +KAŠ +NAG#-ma +ina-eš +{šim}KU₇.KU₇ +SUD₂ +ina +KAŠ +NAG +{u₂}ha-še-e +SUD₂ +ina +KAŠ +NAG +SUHUŠ +GI.ZU₂.LUM.MA +SUD₂ +ina +A +NAG +{šim}ŠEŠ +SUD₂ +ina +GA +NAG +DIŠ +NA +ah-ha-za +DIRI# +SUHUŠ +{giš}šu-še +ta-sak₃ +ina +KAŠ +tara-muk +ina +MUL₄ +tuš-bat +NAG +DIŠ +NA +ah#-ha#-za# +DIRI# +{u₂#}ṣu₂#-ṣe#-em#-ta₅ +{u₂}a-nu-nu-ta₅ +ina +qut-ri-ni +tu-qat-tar-šu₂# +u +MUD₂ +KUN.DAR#.GURUN#.NA# +ŠEŠ₂-su-ma +ina#-[eš] +ru#-ša#-am +ša +si#-ip#-pi +ABUL# +ki#-lal#-le#-en +TI-qe₂ +ana +I₃.GIŠ +ŠUB-di +ta-ap-ta-na#-[ša-aš] +gi#-ir#-ra# +ŠUB# +uṣ-ṣa-a-am +uš#-te#-eš#-še#-er# +ti-tur-ra +na-di-a-am +i +x +[x +x] +DIŠ +NA +ah-ha-za +DAB-su +SUHUŠ +{giš}NAM.TAR +NITA₂ +ša₂ +IGI +{im}SI#.SA₂ +TI-qe₂ +ina +KAŠ +NAG +{u₂}HAR.[HAR? +x +x +x +x] +{u₂}KUR.GI.RIN₂.NA +SUD₂ +ina +KAŠ +{šim}ŠE.LI +BABBAR +SUD₂ +ina +KAŠ +NAG +{u₂}IGI-lim +{u₂}IGI.NIŠ +ina +KAŠ +SUHUŠ +{u₂#}[x +x +x +x +x] +DIŠ +NA# +MIN +IGI.SIG₇.SIG₇ +{šim}LI +{šim}Š[EŠ +SU]D₂ +ina +KAŠ +NU# +[pa-tan +NAG] +DIŠ +NA +MIN +IM.SAHAR.NA₄.KUR.RA +IM.SAHAR.GE₆.KUR.RA +DIŠ-niš +ina +KAŠ +tara-SUD +tu#-zak#-k[a +x +x +x +x] +DIŠ +NA +MIN +15 +ŠE-MEŠ +AN.ZAH +SUD₂ +ina +KAŠ +tara-SUD +tu-zak-ka +I₃ +hal-ṣa +ana +ŠA₃ +ŠUB-di +NU +pa#-[tan +NAG] +DIŠ +NA +MIN +{im}KAL.LA +SUD₂ +ina +I₃ +u +KAŠ +NAG +NUMUN +{giš}bi-ni +ina +KAŠ +NAG +NUMUN +{giš}bi-ni# +[x +x +x +x] +NUMUN +{giš}bi-ni +SUD₂ +ina +I₃ +u +KAŠ +NAG +SUHUŠ +{giš}šu-ši +ina +I₃ +u +KAŠ +NAG +{u₂}IGI.NIŠ +SUD₂# +in[a +KAŠ +NA]G.MEŠ# +DIŠ +MIN +SUHUŠ +{giš}šu-ši +SUHUŠ +{giš}NU.UR₂.MA +ana +A +ŠUB +ina +NINDU +UŠ₂-er +E₁₁-a +ta-ša₂-hal +ŠED₇ +NU# +[pa-tan] +NAG#-MEŠ +DIŠ +NA +ah-ha-zu +ana +IGI-MIN-šu₂ +E₁₁-a-ma +IGI-MIN-šu₂ +GU-MEŠ +SIG₇-MEŠ +ud#-du-ha +ŠA₃-MEŠ-šu₂ +na-šu-u₂ +NINDA +u +KAŠ +u₂-tar-ra +NA +BI +u₂-za-bal-ma +[NU +T]I +UŠ₂# +DIŠ +NA +ah-ha-zu +GIG +SAG.DU-su +pa-nu-šu +SU-šu₂ +ka-la-šu₂ +u₃ +SUHUŠ +E[ME-šu₂ +DAB] +ana +GIG +šu-a-tu +{lu₂}A.ZU +ŠU-su +NU +ub-bal +NA +BI +UŠ₂ +NU +[TI] +DIŠ +NA +UD.DA +KUR-id +ZI +SAG.KI +GIG +ina +lam +DUGUD-šu₂ +ana +TI.BI +ru-uš-ša +ša +sip-[pi +x +x +x] +E₂.GAL +{m}AN.ŠAR₂-DU₃-A +MAN +ŠU₂ +MAN +KUR +AN.ŠAR₂{ki} +ša +{d}AG +u +{d}taš-me-tu₄ +GEŠTU-MIN +ra-pa-aš₂-tu₄ +iš-ru#-[ku-uš] +e-hu-uz-zu +IGI-MIN +na-mir-tu₄ +ni-siq +ṭup-šar-ru#-[ti] +ša +ina +LUGAL-MEŠ-ni +a-lik +mah-ri-ia +mam₂-ma +šip-ru +šu-a-tu +la +e-hu-uz#-z[u] +bul-ṭi +TA +muh-hi +EN +UMBIN +liq-ti +BAR-MEŠ +ta-hi-zu +[nak-la] +a-zu-gal-lu-ti +{d}nin-urta +u +{d}gu-la +ma-la +ba-aš₂-m[u] +ina +ṭup-pa-a-ni +aš₂-ṭur +as-niq +IGI.KAR₂-m[a] +a-na +ta-mar-ti +ši-ta-as-si-ia +qe₂#-reb# +E₂.GAL-ia# +u₂-kin# +[... +SAG.D]U?-su +ŠEŠ₂-ma# +T[I] +[... +kal-m]a-tu₄ +ul +i-sa-niq-[šu₂] +[x +x +x +x +x +x +x +x +x +x] +ana# +A# +PU₂# +š[a +x] +u# +KU₆ +NU +GAL₂ +ŠUB +TU₅-šu₂-ma +UH +NU +T[E-šu₂] +[x +x +x +x +x +x +x +x] +ina +I₃.GIŠ +e-re-ni +HI.HI +EŠ-M[EŠ] +[DIŠ +NA +SAG.DU-su +kal-ma]-ta₅ +ma-tu-uq-ta +ma-li +{u₂}mu-ur-ru +MU.N[I] +[x +x +x +x +x +x +x +x] +za-ku-ti-šu₂ +i-na-pa-ah-ma +TI.L[A] +[x +x +x +x] +la# +ba#-ši#-i +{giš}URI +SUD₂ +ina +I₃.GIŠ +BARA₂! +ŠEŠ₂ +kal-ma-tu₂ +ul +ib-ba-aš₂-ši +DIŠ# +NA# +SA[G.DU-s]u +ek-ke-ta +u +ri-šu#-ta# +DIRI +PIŠ₁₀.{d}ID₂ +SUD₂ +ina +I₃.GIŠ +e-re-ni +HI.HI +EŠ-MEŠ-su +DIŠ +KI +MIN +PIŠ₁₀.{d#}ID₂# +ta-qal-lu +ina +I₃.GIŠ +SAG.DU-su +tu-kaṣ₃-ṣa +id-ra# +ša₂# +MUN# +ta-qal-lu +ina +I₃ +SAG.DU-su +tu-kaṣ₃-ṣa +DIŠ +NA +SAG.D[U-s]u +sa-ma-nu +DAB-it +i-raš-ši-šum-ma +i-na-sah +i-na-ah +EGIR#-nu +GAL-bi +NUMUN +{u₂}EME +UR.GI₇ +SAHAR +ŠE.GIŠ!.I₃# +[SA]HAR +di-ki +{giš}DIH₃ +SAHAR# +ŠE#.GIŠ.I₃ +SAHAR +MUNU₆ +ŠE₁₀ +TU{mušen}-MEŠ +ša₂ +{giš}GIŠIMMAR#.KUR#.RA +HAD₂.DU-ti +NUMUN +{u₂}DILI +[SU]D₂ +ina +A +GAZI{sar} +KUM₂-ti +SILA₁₁-aš +SAG.DU-su +SAR-ab +tu-kaṣ₃-ṣa +LAL +ša₂ +KA +DUB +[MIN]-i# +DIŠ +NA +SAG.DU-su +sa-ma-nu +DAB-it +SAHAR +KUN₄ +ša +{na₄}pu-li +ša +E₂ +SUM[UN] +U₂ +BABBAR +SIG₇?.S[IG₇?]-su +U₄-ma +ina +ŠA₃ +{giš}ar₂-ga-ni +GAL-bi +NUMUN +{u₂}EME +UR.GI₇ +SAHAR +ŠE.GIŠ.I₃ +ša₂ +SUHUŠ +maš-hal-ti +GAZ +DUH.ŠE.GIŠ#.I₃# +HAD₂.A +UŠ +MUNU₆ +ŠE₁₀ +TU{mušen} +ha-ṣab-ti +{na₄}PEŠ₄ +NUMUN +{u₂}DILI +9 +U₂.HI.A +ŠEŠ +DIŠ-niš +SUD₂ +SAG#.DU-su# +[ina +I₃.GI]Š +MUD₂ +{giš}EREN +EŠ-MEŠ +U₂.HI.A +an-nu-ti +ana +UGU +MAR +LAL-su-ma +TI +[DIŠ +N]A +SAG.D[U-su +x +x +š]um? +DAB-it +a-la-pa-a +ša₂ +IGI +A-MEŠ +SAHAR +a-sur-re-e +ša₂ +ŠAH +ŠE₁₀ +PEŠ₂ +GIŠ.KIN₂ +x +[x] +[x +x] +x +x +[x +x +KU.K]U +{giš#}TASKARIN +KU.KU +{giš}KIŠI₁₆ +ša₂ +ina +pi-ti-iq-ti-šu₂ +i-ra-bu-u₂ +bar-ša +SUHUŠ +[x +x] +[x +x +x +x +x +x +{gi]š}sir₂-di +PA +{giš}bi-ni +PA +{giš}ŠE.NU +ZI₃ +GU₂.GAL +ZI₃ +GU₂.TUR +ZI₃ +ŠE.SA.A# +LAL#.MEŠ#-[su-ma +TI] +[DIŠ +NA +SAG.DU-su +x +x +x] +DAB#-it +a-la-pa-a +ša₂ +IGI +A-MEŠ# +[...] +[...] +x +x +x +x +x +[...] +[x +x +x +{ši]m}GUR₂.GUR₂ +{šim}LI +{u₂}KUR#.KUR# +[...] +[x +x +ŠE.S]A?.A +ni-kip-ta₅ +DIŠ-nis +SUD₂ +[...] +[x +x +a]-šu#-u₂ +SAG +NA# +a?#-hi?#-iz?# +x +[...] +[DIŠ +NA +SA]G.DU-su +a-š[u-u₂ +DAB-it +...] +[x +x] +x +{šim}GUR₂.GUR₂ +{ši[m} +...] +[x +x +GAZ] +SIM +KI +GU₂.G[AL +...] +[DIŠ +NA] +SAG#.DU-su +a-š[u-u₂ +DAB-it +...] +[x +x +x] +{na₄}ŠU.U +NI[TA₂? +...] +[x +x] +x +ana +K[A-šu₂ +u +na]-hi#-ri#-[šu₂ +...] +[DIŠ +NA +S]AG.D[U-su +a-š]u-u +DAB-it +{š[im} +...] +[x +x +x] +x +[x +x +x +l]u-u +ina +KAŠ.SAG +NAG-šu₂# +[...] +[DIŠ +NA +x +x +x] +x +SAG.DU-šu₂ +DAB-it +SUH[UŠ +...] +[x] +x +[x] +x +ba-lu +pa-tan +NAG-šu₂-m[a +...] +DIŠ +NA +a-šu-[u₂] +lu +ŠUB-tu +DAB-su +10 +GIN₂ +sah-le₂-e +k[ab-ra-ti +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +u₂-nu-u[t +ŠA₃-š]u₂-nu +ta-tab-bal +tu-ša₂-bal +ina +ŠU-ka +ta-pa-ša₂-aš₂# +x +[x +x +x +x +x +x +x +x +x +x +x +x +x] +DIŠ +NA +a-šu-u₂# +[lu +ŠUB-t]u +DAB-su +5 +GIN₂ +{u₂}KUR.RA +5 +GIN₂ +GAZI{s[ar} +x +x +{d]ug}UTUL₇# +ta#-pal#-l[a-aš +x +x +x +x +x +x +x] +IGI +{dug}UTUL₇# +i[na +NIG₂.SILA₁₁.G]A₂ +ZIZ₂.A.AN +UŠ₂-hi +IZI +ta-šar₂-rap +{gi}SA[G.KUD +ta-pal-l]a-aš-ma +ina +MURUB₄-at +{dug}BUR.ZI# +ta#-sa₃#-niš# +x +[x +x +x +x] +{gi#}SAG.KUD +E₁₁-a +ina +KA-šu₂ +GID₂-ad +x +[x +x +x +ŠE]G₆-al +A.UZU +u +UZU +AL.GUR₄.RA +GU₇-ma +ina-eš +[DIŠ +NA +a-šu₂-u] +DAB#-it +{im}KAL +SUD₂ +ina# +[x +x +NAG-M]EŠ-ma +TI-uṭ# +[DIŠ +NA +a-šu-u₂] +DAB#-it# +7#-et# +u# +7#-et# +ŠE-MEŠ +ina +N[E +tu-qat-ta]r? +ha-an-za-a +ša₂ +ŠA₃ +GI +DU₁₀.GA +TI-qe₂# +[x +x +x +x +x +x] +an +ina# +KA#-šu₂ +u₂-la-ʾa#-a[t-ma +ana +n]a-hi-ri-šu₂ +in-niq-ma +TI-[uṭ] +[x +x +x +x +x +tu]r-ar₂ +SUD₂ +ina +I₃.GIŠ +u +KAŠ.[SAG +N]AG-ma +T[I-uṭ] +[DIŠ +NA +SAG.DU]-su# + +a-hi-iz +eriš₆-ti +GAZI{sar} +NUMUN +{u₂}KU₆ +i[na +x +x +x] +x +me +šu₂ +ŠEŠ₂-MEŠ +T[I-uṭ] +[x +x +x +DI]DA +SIG₅ +LAL-id +sah-le₂-e +ARA₃-ti₃ +ana +U[GU +MAR? +x +x] +x +GAR-an-m[a +TI-uṭ] +[x +x +x +x] +x +tu-zak +ina +MUL₄ +tuš-bat +ba-lu +pa-tan +NAG-šu₂ +1 +SILA₃# +x +[x +1 +SILA₃ +šur-šu]m-me +KAŠ +SAG?# +tu?#-[zak?] +[x +x +x +x] +iš-tu +e-liš +ana +šap-liš +tu-maš-šad +UD#.[10.KAM₂] +LAL#-ma +TI +[x +x +x +x +DA]BIN +ina +KAŠ +ta-sak₃ +SAG.DU-su +ŠED₇ +NUMUN +{u₂}KU₆ +SUD₂ +ina +I₃ +HI.HI# +[ina +{uru]du}ŠEN#.TUR# +ŠE[G₆-šal +E]Š-MEŠ-ma +TI +[DIŠ +NA +a-šu-u₂] +DAB-it +ILLU +{šim}BULUH +{šim}BAL +ina +NE +SAR-šu₂ +ana +na-hi-r[i-šu₂ +i]n-n[iq-m]a +TI +[DIŠ +KI +MIN +{šim}]HAB +ILLU +{šim}BULUH +{u₂}KUR.GI.RIN₂.NA +ina +IZI +ŠUB +na-hi-ri-šu₂ +tu-qat-tar +I₃.GIŠ +KA +KI[R₄ +x +x +x +x] +MU₂-ma +TI +[DIŠ +NA +a-šu-u₂] +DAB-su +{u₂}IGI-lim +{u₂}KUR.KUR +NUMUN +GAZI{sar} +NUMUN +{u₂}AB₂.DUH +U₂ +MAŠ.TAB.BA +ina +I₃ +Š[EŠ₂-su +ina +N]E +SAR#-šu₂ +[EN₂ +qa]r-ra#-di₃#-ia# +qar#-ra#-di₃-ia +TI.TI +qar-ra-di₃-ia +ŠU +za-ah +za-ah +u +qar-[ra-di₃-ia]-ma +[hu.ul.q]i +hu.ul.qi +ha.al.ti.ib +ha.al.ti.ib +ia-nu-um-ma +te-ne-eš-ma +[mar +IMIN].NA +[di.hu.u]n +di.hu.un +du-li +rap-šu-ma +KUM₂-šu₂ +NU +i-na-a-aš# +ma#-ʾ-du-ma +la +x +[x +x +x] +[x +x] +a-su₁₄-u₂ +ša₂ +a-me-lu-ti +T[U₆.EN₂] +[KA].INIM.MA +MAŠ.TAB.BA.[KE₄] +[DU₃.DU₃].BI +GAZI{sar} +{šim}GUR₂.GUR₂ +U₂ +a-ši-i +ina +NE +SAR#-šu₂ +EN₂ +an-ni-ta₅ +3-šu₂ +ŠI[D-nu-ma +TI] +[EN₂ +e]din +lal +edin-na +edin +lal +edin-na +edin# +ki +gir₃ +si₃-ga +edin +ki +g[ir₃ +si₃-ga] +[m]ul-ra +ku-u₂ +ma-an-du +gi?#-ki?# +na +mul-mul-da +ta +[EN₂] +[K]A.INIM.MA +MAŠ.TAB.B[A.KE₄] +[D]U₃.DU₃.BI +{u₂}AB₂.DUH +ta-pa-a[ṣ +ina +I₃.GI]Š +HI.HI +EN₂ +3-šu₂ +ŠID-nu +ŠEŠ₂.ŠE[Š₂-ma +TI] +U₂ +a-ši-i +KUD-si +NU[MUN +{u₂}kam-k]a-di +SUD₂ +ina +I₃.G[IŠ +ŠEŠ₂] +{u₂#}ka-man-ta# +[SUD₂] +ina +I₃.GIŠ +ŠEŠ₂ +U₂ +BABBAR +SUD₂ +ina +I₃.GI[Š +ŠEŠ₂] +[{u₂}ha]-šu#-u +{u₂#}[HAB] +sah-le₂-e +{u₂}zi-bu-u +U₂ +BABBAR +ILLU +[{šim}BULUH?] +[x +x +x +x] +TEŠ₂#.BI +ta-sak₃ +ina +I₃.GIŠ +u +KAŠ.SAG +NAG-MEŠ-ma +[TI] +[DIŠ +NA +a-šu-u₂ +DA]B-su +ana +TI-šu₂ +U₂ +BABBAR +U₅ +ARGAB{mušen} +MUN +eme-sal-lim +{u₂}KUR.RA +x +[x +x] +[x +x +x +x +x] +x +SAG.DU-su +LUH-si +GUR-ma +ta-bi-lam +ana +SAG.DU-šu₂ +MAR +{sig₂}AKA₃ +NI[GIN +x +x +x] +[x +x +x +x +x +iš.k]a +gi#.im#.ma# +[x +x +x] +šu#.uh.di.am +x +[x +x +x] +[...] +[x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +(x) +SI]G₃-as#-su# +u# +SAG#.K[I.MEŠ-šu₂ +x +x +x] +[x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +Š]A₃ +ŠID-nu +ana +na-hi-r[i-šu₂ +DUB] +[x +x +x +x +x +x +x +x +x +x +x +x +ba-a]h-ra +GU₇ +ba-ah-ra +N[AG-ma +TI] +[x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +{u₂#}AB₂.DUH +U₂ +MAŠ.TAB.BA +ina +I₃.GIŠ +Š[EŠ₂ +TI] +[... +i]t-ta-mu-uh +[x +x +x] +[...] +a-ša₂-a +KA +x +[x +x +x] +[... +{u₂}]aš-lim +ina +NE +SAR-šu₂-ma +MAŠ.TAB.BA +Z[I +(x)] +[EN₂ +... +giš.hur.h]ur +u₂.pa.ak +u₂.pa.ak +T[U₆.EN₂] +[...] +DU₃#.DU₃#.BI +A +{giš#}NU.UR₂.MA +x +[x +x +x] +[...] +x +ana +KA-šu₂ +ta-šap-pak-[ma] +ina#-[eš] +[x +x +x +x +x +x +x +x] +x +NUMUN +{u₂}KU₆ +{u₂}tar-muš +{u₂}IGI-lim# +{u₂}IGI.NIŠ +ina +[I₃] +[x +x +x +x +x +x +x +x +x +x +GA]R-an +ina +še-ri₃ +SAG.DU-su +LUH-si +EŠ-MEŠ-ma +in[a-eš] +[x +x +x +x +x +x +x +x +x +N]A₄ +UKUŠ₂.HAB +GAZI{sar} +BIL-ti +ina +I₃.GIŠ +e-re-ni# +HI.HI +ŠE[Š₂.MEŠ] +[...] +x +KUM₂-am +ana +SAG.DU-šu₂ +ŠUB +[x +x] +[...] +x +HI#.HI# +tu-kaṣ₃-ṣa +ina +I₃.GIŠ +e-re-ni +ina +I₃.NUN +HI.HI +E[Š.MEŠ] +[...] +in?# +SAG.DU-su +LUH-si +NA₄ +UKUŠ₂.HAB +SUD₂# +ina +I₃.GIŠ +e-re-ni +[EŠ.MEŠ?] +[... +an]a +ŠA₃! +ŠUB-di +TA +ib-taš-lu +SAG.DU-su# +EŠ.MEŠ +ku-lil-ta₅ +HA[D₂.DU] +[...] +I₃#.UDU# +BIL.ZA.ZA +ina +I₃.NUN +HI.HI +ŠEŠ₂#.MEŠ-ma +SIG₂ +E₃#-[a] +[... +A.GEŠT]IN.NA +KALAG.GA +HI.HI# +SAG.DU#-su +tu-kaṣ₃-ṣa-m[a +EŠ.MEŠ?] +[...] +x +x +[...] +x +x +x +[x +(x) +SA]R?-šu₂-m[a?] +ina +še-ri₃ +ina +A +KUM₂-ti +SAG.DU-s[u +LUH?-si?] +[I₃.GIŠ] +e#-re-ni +EŠ.MEŠ +I₃.UDU +UKUŠ₂.HAB# +tur#-a[r₂ +x +x +x +x +x +x +x +M]AR-ru +EŠ.MEŠ-ma +T[I] +[DIŠ +KI +MIN +I₃.GI]Š +e#-re#-ni# +KUM₂-am +ana +SAG.DU-šu₂ +ŠUB +DIŠ +K[IMIN +x +x +x +x +x +x] +{giš#}GEŠTIN# +KA₅#.A# +SUD₂ +ina +I₃.GIŠ +e-re-ni +[EŠ.MEŠ?] +[DIŠ +KI +MIN +PIŠ₁₀].{d#}ID₂# +[ina +l]i-ši +HI.HI +EŠ.MEŠ +DIŠ +KIMIN +PIŠ₁₀#.{d#}ID₂# +ina +LAL₃ +KUR-i! +HI.HI +EŠ#.[MEŠ] +[DIŠ +KI +MIN] +{u₂}IN₆.UŠ₂ +SUD₂ +ina +I₃# +EŠ.MEŠ +DIŠ +KIMIN +{u₂}ak-tam +SUD₂ +ina +I₃.UDU +HI.HI +EŠ.MEŠ +DIŠ +KIMIN +{u₂}TAL₂.TAL₂ +MAR +ina +I₃ +EŠ#.[MEŠ] +[DIŠ +KI +MIN] +{u₂#}KU₆ +ina +GA +AB₂ +KAŠ₃ +AB₂ +SIG₃-aṣ +SAG.DU-su +LUH +{giš}MAŠ.HUŠ +tur-ar₂ +SUD₂ +SAG.DU-su +SAR-ab +I₃ +EŠ.MEŠ-s[u] +[DIŠ +KI +MIN +I₃.UDU +UKUŠ₂].HAB +NA₄ +UKUŠ₂.HAB +tur-ar₂# +SUD₂# +SAG.DU-su +SAR-ab +I₃ +EŠ.MEŠ +LAL +ŠUB +LAL +[DIŠ +KI +MIN +x +x +x +SU]D₂ +ina +I₃.GIŠ +e-re-ni +HI.HI +EŠ.MEŠ-ma +SIG₂ +E₃-a +[DIŠ +KI +MIN +x +x +x +S]UD₂ +SAG.DU-su +EŠ.MEŠ +ZI₃ +GU₂.GAL +ZI₃ +GU₂.TUR +{u₂}LAG.GA₂ +SUD₂ +ina +A +GAZI{sar} +SILA₁₁-aš +LAL +{u₂}ak-tam +NAGA.SI +[x +x +x] +ina +A +KUM₂-ti +SAG.DU-su +LUH-si +DIŠ +NA +gu-raš-tu +DIRI +{u₂}KU₆ +{u₂}x +[... +DIŠ-ni]š +SUD₂ +ina +I₃ +HI.HI +E[Š.MEŠ-ma] +SIG₂ +E₃-[a] +DIŠ +KI +MIN +{u₂}ak-tam +{u₂}AB₂.DUH +SUD₂ +ina +[... +SAG.DU-s]u +LUH-si +BAR +{giš}x +[(x)] +x +ta#-qal-lu +ARA₃-en +MAR +DIŠ +KI +MIN +I₃ +ŠA₃ +KU₆ +EŠ.MEŠ +[...] +ud# +SUD₂ +M[AR] +DIŠ +KI +MIN +sa-ma-na₇ +ša₂ +E₂.GAR₈ +ta-kar-ma +Š[EŠ₂ +...] +x +ud# +ina +LAL₃ +KUR-i +BABBAR +u +A +LUH-ma +ina-eš# +U₂ +BABBAR +{u₂}KU₆ +{u₂}ak-tam +3 +U₂ +gu#-[raš-ti +... +SAG.DU-s]u +ina +I₃ +EŠ.MEŠ +{u₂}IGI-lim +{u₂}KU₆ +SUHUŠ +{giš}MAŠ.HUŠ +SUHUŠ +{giš}bi-ni +UZU.DIR +SUD₂# +[...] +x +ina +A +SAG.DU-su +LUH +ina +I₃ +EŠ.MEŠ +DIŠ# +NA# +[... +SAG.DU-s]u +LUH# +{u₂}LAL +{u₂}u₅-ra-na +SUD₂ +ina +I₃ +EŠ#.[MEŠ] +[...] +SUD₂# +ina +LAL₃ +KUR-i +EŠ.[MEŠ] +[...] +i#-šal-[lim] +[...] +x +[x +x] +[DIŠ +KI +M]IN +{u₂#}LAG# +GANA₂# +GAZ# +I₃#.UDU# +A#.ZA#.LU#.LU# +SUD₂# +[...] +[ana] +ku-ra-ri +ZI-hi +hu-bu-uš +SUN₂ +ina +šur-š[um-me +...] +DIŠ +KI +MIN +{u₂}LAG +A.ŠA₃ +ina +IGI +ta-kar +IM.SAHAR.GE₆.KUR.R[A +...] +DIŠ +KI +MIN +NUMUN +GA.RAŠ +{u₂}ak-tam +{u₂}ṣa-lam-ta₅ +DIŠ-niš +SUD₂ +[...] +DIŠ +NA +SAG.DU-su +ku-ra-ra +DAB-it +ŠE₁₀ +{d}nisaba +SUD₂ +ta-kar +MAR# +[x +x +x +x +x +x +x +x +x +x] +laq-laq-ta-šu₂ +ta-tab-bal +ina +KAŠ +LUH-si +KU.KU +{giš}TASKARIN +MAR +LAL +ina +IGI +K[I.NA₂-šu₂ +x +x +x +x +x +x +x +x +x +x] +KU.KU +{giš}TASKARIN +KU.KU +{giš}e-lam-ma-ku +KU.KU +{giš}kal-mar-hi +ŠE₁₀ +{d}[nisaba +x +x +x +x +x +x +x] +ina +šer₂-ti +DU₈ +SAR-ab +{šim}MAN.DU +{giš}EREN +tur-ar₂ +SUD₂ +ana +[...] +ina +A +GAZI{sar} +LUH-si +KU.KU +{giš}TASKARIN +KU.KU +{giš}e-lam-ma-ku +KU.KU +{giš}kal-mar#-[hi +...] +DIŠ +KI +MIN +SAG.DU-su +tu-gal-lab +I₃.HAB +ŠEŠ₂ +ina +IGI +KI.NA₂-šu₂ +DU₈ +SUH[UŠ +...] +SUHUŠ +{giš}ku-ma-hi +IM.GU₂ +NIG₂.NIGIN₂.NA +{u₂}tar-muš +NUMUN +{u₂}qut-ra-te +x +[...] +DIŠ-niš +SUD₂ +ina +KAŠ₃ +AB₂.GU₄ +SAG.DU-su +te-sir₂ +ina +KAŠ +LUH-si +ina +A +GAZI{sar} +x +[...] +NUMUN +{giš}ŠE.NU₂.A +NUMUN +{giš}NAM.TAR +NUMUN +GADA +NUMUN +{u₂}AB₂.DUH +PA +{u₂}TAL₂.TAL₂ +{giš#}[DIH₃? +x +x +x +x +x +x +x +x +x +x] +{u₂}KUR.GI.RIN₂.NA +{u₂}sag-gi-la-ta₅ +PA +{u₂}MA₂.ERIŠ₄.MA₂.LA₂-e +{u₂}[MAŠ.HUŠ +x +x +x +x +x +x +x] +HAD₂.A +GAZ +SIM +ina +A +GAZI{sar} +SILA₁₁-aš +GUR-ma +HAD₂.A +GAZ +SIM +ina +KA[Š.SAG +x +x +x +x +x +x +x +x +x +x +x] +3# +u₄#-me# +NU# +DU₈# +ina# +4# +u₄#-me# +ina +DU₈-ka +ina +KAŠ₃ +KUM₂-me +LUH-s[i +...] +[...] +x +x +x +[...] +[DIŠ +KI +MIN +x] +x +ina# +I₃#.UDU# +SUD₂# +x +[...] +[DIŠ +KI +MIN +P]IŠ₁₀.{d}ID₂ +{u₂}GAMUN.G[E₆ +...] +[DIŠ +KI] +MIN +{im}KAL +SUD₂ +[...] +DIŠ# +NA +SAG.DU-su +ku-ra-ra +[DAB +...] +{u₂#}KUR.RA +sah-le₂-e +{u₂}u₅#-[ra-nu +...] +[I₃.GIŠ] +e#-re#-ni +EŠ.M[EŠ +...] +[DIŠ +NA +ku-ra-r]a +G[IG +x +x +x +x +x +x +x +x +x +x +x] +DIŠ +KI +MIN +A.GEŠTIN.NA +BIL.LA₂# +[...] +x +x +[...] +ina +ša-ni-i +IM.GU₂.EN#.N[A +... +ana +K]I +MIN +ŠE₁₀ +{d}nisaba +ana +x +[...] +DIŠ +KI +MIN +sa-ma-na₇ +te-si[r₂ +... +MA]R +ina +I₃.NUN +EŠ.MEŠ +[...] +DIŠ +KI +MIN +A.GEŠTIN.NA +BIL.LA₂# +[... +M]AR +SUM{sar} +SUM.SIKIL{sar} +[...] +DIŠ +NA +SAG.DU#-[su +...] +x +ZI₃.KUM +ZI₃ +GU₂.GAL +IM.BABBAR +ba-aš-la +NAGA.SI# +[...] +IM.G[U₂.EN.NA? +... +GA]Z +SIM +SAG-ka +u₂-kal +I₃.NUN +EŠ.MEŠ +LAL +ŠUB +{giš}GEŠTIN +KA₅.A +x +[...] +DIŠ# +KI# +MIN# +[...] +x +[...] +[DIŠ +KI +MIN +x +x +x +{šim}]LI +DABIN +ina +A.GEŠTIN.NA +HI.HI +SAG.DU-su +tu-kaṣ₃-ṣa +UD.3.KAM# +ŠUB# +[...] +[x +x +x] +SAG#.DU-su +LUH-si +UD.3.KAM +ŠUB-di +SAR-ab +UGU +ku-ra-ri# +x +[...] +[x +x +x +Š]ED₇ +I₃.NUN +MUN +tu-ba-har +ina +DIDA +SIG +u +I₃#.GIŠ# +e#-re#-ni +[...] +[...] +x +x +tur#-ar₂ +SUD₂ +MAR +GURUN +UKUŠ₂.HAB +x +[...] +[...] +x +x +a# +IGI +GI[G +...] +[...] +[...] +A.GEŠTIN#.NA# +[...] +I₃.GIŠ +e-re-ni +EŠ.MEŠ +U₂ +BABBAR# +{u₂#}[...] +{u₂}KU₆ +MUN +a-ma-ni₇ +ina +KAŠ₃ +ANŠE +u +A#.G[EŠTIN.NA +...] +EN₂ +su.ub +hi.im +su.ub +hi.im +a +na# +x +[...] +la.ni +hu.bi +la.a.ni +hu.bi# +la#.ni# +[...] +DU₃.DU₃.BI +{šim}er-ra +UGU +ku-ra-r[i +...] +sa#-ma-na₇ +ša₂ +E₂.GAR₈ +ta-[kar +...] +ina# +I₃.NUN +SUMUN +HI.HI +x +[...] +[E]N₂ +ki#.ni.ip +ki.ni.ip +ba +ah# +[...] +[DU₃.DU₃].BI +ina +an-ṣa-ab-ti +K[UG.SIG₁₇ +IGI +GIG +ta-kaṣ₃ +...] +[x +x +G]A.RAŠ#{sar} +{u₂}ṣa-lam-ta₅ +{u₂}KUR#.[RA? +...] +[EN₂ +ma]-mit +GIM +šar-ra-qi₂ +ina +KA₂ +pil-ši# +u[n? +...] +[EN₂ +a]-šar +tab-ba-ni-i +{d}e₂-a +lip-šur +x +[...] +[EN₂] +at.he.ma +at.he.e +he.le.e.ma +at.he.le +[...] +[DU₃].DU₃#.BI# +na#-gap-pa +ša₂ +A.GEŠTIN.NA +ta-kar +qut-ra +MAR +x +[...] +[5 +KA.INIM.M]A +GIG.G[IR +ZI?-hi?] +[x +x +x +hur.ri.i]m +su.ub +hur.ri.im +a.la +šu.uh.ta +x +[...] +[x +x +x +x +x +x +a.p]i.il.lat +aš +kur.ba.an.ni +id.ki.ia +ul +x +[...] +[...] +[x +x +x +x +x +x +x +x +x +x +x +x +g]i +ha# +ba# +x +x +x +[x +x +x +x +x +x +x +Z]I-hi +[x +x +x +x +x +x +x +x +x +hu-bu₄-u]š +SUN₂ +ŠEŠ₂ +KUŠ +ANŠE +ina +IZI +tur-ar₂ +SUD₂ +MAR +a-la-pa-a +ina +IZI +[x +x +x +x +x +x +x +x +x +tur]-ar₂ +IGI +GIG +MAR +ta-ʾa-a +ša₂ +UDU.NITA₂ +IGI +GIG +EŠ.MEŠ +KUŠ +HAD₂.A +GAZ +[x +x +x +T]I +GUD# +ID₂ +ina +IZI +tur-ar₂ +IGI +GIG +MAR +{u₂}IGI-lim +SUD₂ +IGI +GIG +EŠ.MEŠ +[x +x +x +x +x +x +t]a-kar +ina +an-ṣa-ab-ti +KUG.SIG₁₇ +IGI +GIG +ta-kaṣ₃ +[x +x +x +x +x +x +x +T]I.LA.KE₄ +[x +x +x +x +x +x +x +x +x +x +x +si-k]i-tu₂ +SAG#.D[U-su +x +x +x +x +x +x +x] +ina# +UD#.4#.KAM# +SAG#.DU-su +[...] +a +[... +LUH?]-si +[... +M]AR? +[... +M]AR? +[... +MA]R? +DIŠ +NA +ŠA₃-šu₂ +GIG +GA +{gud}AB₂ +KUG.GA +I₃.NUN +UD.2.KAM₂ +N[AG +...] +DIŠ +NA +ŠA₃-šu₂ +GIG +{u₂}GEŠTIN +KA₅.A +SUD₂# +ina +KAŠ +NAG +{u₂}IM.[DU? +SUD₂ +ina +KAŠ +NA]G +{u₂}šiz-ba-na₇ +SUD₂ +ina +KAŠ# +NAG +1/2 +SILA₃ +s[ah-le₂-e +1/2 +SILA₃ +NAGA].SI# +1/2 +SILA₃ +IM.GU₂.EN.NA +1/2 +SILA₃ +[{giš}Š]E.NU +1/2 +SILA₃ +ZI₃.KUM +1/2 +SILA₃ +{š[im}LI +1/2 +SILA₃ +{šim}]GUR₂#.GUR₂ +1/2 +SILA₃ +ZI₃ +GU₂.GAL +1/2 +SILA₃ +ZI₃ +G[U₂.TUR] +1/2 +SILA₃ +{u₂}SIKIL +1/2 +SILA₃ +{u₂}NIG₂ +GIDRU# +1/2# +SILA₃# +{u₂#}ur₂#-ne₂#-e +GAZ +ina +KAŠ.SAG +ina +{urudu}Š[EN.T]UR +tara-bak +ina +TUG₂ +te-ṭer₅-ri +IGI +u +MAŠ.SILA₃ +LAL-id +ana +KI +MIN +1/3 +SILA₃ +sah-le₂-e +1/3 +SILA₃ +ŠE₁₀ +TU#{mušen} +1/3 +SILA₃ +ŠE.SA.A +1/3 +SILA₃ +{šim}LI +1/3 +SILA₃ +{šim}GUR₂.GUR₂ +HI.HI +ma-la +na-aṣ-ma-ti +tu#-šam-ṣa +ina +KAŠ.SAG +SILA₁₁-aš +LAL-id +ana# +KI +MIN +1 +MA.NA +PA +{giš}ŠE.HAR +SUD₂ +ina +A# +GAZI{sar} +ŠEG₆-šal +tu-kaṣ₃-ṣa +LAL-id +[ana +K]I +MIN +1/2 +SILA₃ +ZA₃.HI.LI +1/2 +SILA₃ +ŠE.SA.A +SUD₂ +ina +A +GAZI{sar#} +SILA₁₁#-aš +{šim}GUR₂.GUR₂ +{šim}LI +ana +IGI +ta-za-ru₃ +IGI +u +MAŠ.SILA₃ +LAL +[ana +K]I +MIN +1/2 +SILA₃ +ZI₃ +MUNU₆ +1/2 +SILA₃ +ZI₃ +DUH.ŠE.GIŠ.I₃ +1/2 +SILA₃ +ZI₃ +GIG +1/2 +SILA₃ +{šim#}GUR₂#.GUR₂# +1/2 +SILA₃ +{šim}LI +SUD₂ +HI.HI +ina +A +GAZI{sar} +ta-la-aš +LAL-id +[DIŠ +N]A +ŠA₃-šu₂ +GIG +PA +{u₂}er-re-e +HAD₂.A +GAZ# +SIM# +ina +LAL₃ +KAŠ.SAG +u +I₃ +hal-ṣi +[SIG₃-a]ṣ +ba-lu +pa-tan +NAG-šu₂ +ina +DUR₂-šu₂# +SI.SA₂-ma +TI +DIŠ +NA +ŠA₃#-šu₂ +GIG +{šim}su-a-di +tu-ha-sa +ina +A +ŠED₇ +tu#-la-bak +NU +pa-tan +NAG +DIŠ +NA +ŠA₃#-šu₂ +GIG-ma +DUB₂ +NUMUN +GIŠ.GI.ZU₂.LUM.MA +SUD₂# +ina +KAŠ.SAG +NAG +1/2 +SILA₃ +sah-le₂-e +1/2 +SILA₃ +NAGA.SI +1/2 +SILA₃# +ZI₃# +GIG +1/2 +SILA₃ +ZI₃.KUM +GAZ +ina +KAŠ.SAG +[SIL]A₁₁-aš +ina +TUG₂ +SUR +IGI +u +MAŠ.SILA₃ +LAL +DIŠ +NA +ŠA₃-šu₂ +GIG +{u₂}IGI-lim +SUD₂ +ina +KAŠ.SAG +tara#-muk# +ina +MUL₄ +tuš-bat +NU +pa-tan +NAG +PA +{giš}ŠE.NU +GAZ +ina +ZI₃.KUM +HI.HI +ina +A +GAZI{sar#} +tara-bak +ina +TUG₂.HI.A +SUR +IGI +u +MAŠ.SILA₃ +LAL +ana +KI +MIN +GA.RAŠ{sar} +pu-ut-ta +TI +ta-sak₃# +ina# +GA# +NAG +1/2 +SILA₃ +ZA₃.HI.LI +1/2 +SILA₃ +ŠE.SA.A +ina +GA +SILA₁₁-aš +ina +TUG₂ +SUR +LAL +DIŠ +NA +ŠA₃-šu₂ +GIG-ma +ŠA₃ +GIR₃.PAD.DU-šu₂ +SIG₇ +Š[A₃-šu₂ +GI]G-MEŠ +DIRI +UD.DA +SA₂.SA₂ +I₃.UD[U +UK]UŠ₂.HAB +ina +ZI₃ +ŠE.SA.A +HI.HI +14 +ku-pa-tin-n[i +LA]L₃ +SUD# +u₂#-al-lat +1/2# +S[ILA₃ +Z]A₃.HI.LI +{giš}si-ha +SUD₂ +ina +U[ZU? +GU]D? +GUR₄#.RA# +GU₇-MEŠ +1/2# +[SIL]A₃ +ZA₃.HI.LI +ṭe₄-ne-ti₃ +ina +[x +x +x] +SILA₁₁#-aš# +LAL +D[IŠ +NA +Š]A₃-šu₂ +GIG-ma +di-ik-ša₂ +TUKU-ši +NINDA +GU₇# +K[AŠ +NAG +ana +DUR₂?-šu₂ +DUB]-ak# +ru#-pu-uš-ta +ina +A.GAR₃ +BURU₈ +GIGURU₃? +[{u₂}]NU#.LUH.HA +SUD₂ +ina +A +NAG +U₂# +BABBAR?# +[ina +I₃?.GIŠ? +tara?-bak? +ana] +DUR₂-šu₂ +DUB-ak +GEŠTIN# +SUR +NAG +{šim}LI# +ŠIM#.Š[AL +x +x +x +ina +{urudu}ŠE]N.TUR# +tara-bak +ina +TUG₂ +SUR +LAL +[ana +KI +MIN +U₂] +BABBAR# +ina +I₃.GIŠ +NAG +i-ar₂-ru₃ +x +[x +x +x +x +x +x +{u₂}I]N₆.UŠ₂ +{u₂}EME +UR.GI₇ +[ina +A +ŠE]G₆.GA₂ +tara-has₂-su +A +GAZI{sar} +[x +x +x +x +x +x +GIŠIM]MAR? +PA +{giš}šu-še +[{šim}ŠE.L]I? +PA +{giš}ŠE.NU +{šim}LI +{šim}G[UR₂.GUR₂ +x +x +x +x +x +ina +KU]Š +te-ṭer₅-ri +LAL +[ana +KI +MIN] +{u₂#}GEŠTIN +KA₅.A +ina +KAŠ +NAG +U₂ +BABBAR +ina +I₃ +NAG# +x +[x +x +x +x +ina] +LAL₃ +GU₇ +[A +{giš}ŠE].NU +A +GAZI{sar} +ana +DUR₂-šu₂ +DUB-ak +PA# +[x +x +x +x] +{u₂#}SIKIL +[P]A +{u₂}ŠAKIRA +PA +{u₂}IN₆.UŠ₂ +GAZ +x +[x +x +x +x +SU]R +LAL +[ana] +KI# +MIN +{u₂}NU.LUH.HA +{u₂#}ti-ia₂-ta₅ +SUD₂ +ina +KAŠ +NAG# +[U₂ +BABBAR +ina +I₃.GIŠ +tara-bak +ana +DUR₂-šu₂ +DU]B-ak +[PA] +{u₂#}GUR₂.UŠ +PA +{giš}KIŠI₁₆ +PA +{giš}DIH₃ +ina +A# +[ŠEG₆.GA₂ +tara-has₂-su +A +{giš}ŠE.NU +A +GAZ]I{sar} +[ana +DU]R₂-šu₂ +DUB-ak +{šim}L[I +{šim}GUR₂.GUR₂ +x +x +x +ina +{urudu}ŠEN.TUR +tara-bak +ina +TUG₂ +te-ṭer₅-ri +LAL] +[DIŠ +N]A +ŠA₃-šu₂ +GIG-ma +Š[A₃ +...] +[x +x] +x +[x +x] +x +[...] +ana# +KI# +MIN# +U₂# +BABBAR# +x +[...] +x +{u₂}SIKIL +x +[x +x] +x +x +x +[... +ana +DUR₂-šu₂ +DU]B-ak +{šim}LI +{šim#}ŠE#.LI# +{šim#}GAM.MA# +ILLU# +{šim#}BULUH +ŠIM.HI.A +GAZ# +ina# +I₃#.UDU# +H[I.HI +ina +KUŠ +SUR] +LAL +ana +KI +MIN +{šim}ŠE.LI +BABBAR +ina +KAŠ +NAG#-ma +i#-ar₂-ru₃ +SUHUŠ +{giš}NAM.TAR +NITA₂ +ina +KAŠ +NAG-ma +i-ar₂-ru₃ +LAL₃# +[KUR.RA +HAD₂].DA +ina +A +{giš}ŠE.NU +tara-has₂-su +A.GEŠTIN.NA +I₃.GIŠ +KUM₂-am +ana +DUR₂-šu₂ +DUB-ak +PA +{giš}šu-še +PA +GIŠ.[GI.ZU₂.L]UM.MA +PA +{u₂}ŠAKIRA +PA +{u₂}EME +UR.GI₇ +{šim}LI +ZU₂.LUM.MA +SUD₂ +ina +KAŠ +HI.HI +GUR-ma +HAD₂.DU + +SIM# +ina# +[x +x +x +ina +KU]Š +SUR +LAL +[ana +K]I +MIN# +{u₂}KUR.KUR +ina +KAŠ +NAG-ma +i-ar₂-ru₃ +U₂ +BABBAR +ina +I₃.GIŠ +NAG-ma +i-ar₂-ru₃ +{u₂}PEŠ.TUR.Z[I +GIŠIM]MAR +[{u₂}N]AM.TAL +{šim}LI +GAZI{sar} +ina +A +ŠEG₆.GA₂ +tara-has₂-su +{šim}GUR₂.GUR₂ +ta-sak₃ +x +[x] +x +[KU]M₂-am +I₃.GIŠ +ana +ŠA₃ +tu-na-tak +ana +DUR₂-šu₂ +DUB-ak +PA +{giš}ŠENNUR +PA +{giš}MA.NU +PA +{giš}ŠE.NU +PA +{g[iš}GE₆.PA]R₇ +x +giš +{šim}LI +{šim}GUR₂.GUR₂ +GAZ +ina +KAŠ +HI.HI +GUR-ma +HAD₂.A +GAZ +ina +I₃.UDU +HI.HI +ina +KUŠ +te-ṭer₅-ri# +LAL# +[DIŠ +N]A +ŠA₃-šu₂ +GIG-ma!(GIŠ) +mim-ma +GIG +{u₂}KUR.RA +{u₂}HAR.HAR +{u₂}KUR.KUR +{u₂}GAM[UN.G]E₆ +[{u₂}]ur₂#-ne₂#-e +{u₂}tar-muš₈ +{u₂}IGI-lim +{u₂}eli-kul-la +{u₂}SIKIL +{u₂}im-hur-NIŠ +GURUN +{gi[š}DI]H₃? +[x] +{u₂#}x +x +PA +{u₂}UKUŠ₂.HAB +SUD₂ +ina +KAŠ +NAG +ina +DUR₂-šu₂ +SI.SA₂ +ina +GE₆ +ina +A +GAZI{sar} +ŠEG₆.G[A₂] +[x] +x +x +[...] +x +x +x +UZU# +kab-ra +ša +ŠAH +GU₇ +[TI] +[...] +SUD₂# +ina +I₃.GIŠ +NU +pa-tan +EME-šu₂ +DAB-[bat] +[...] +x +šu₂ +u₂-sak₆-k[a] +[...] +x +x +ina# +I₃.GIŠ +HI.HI +ta-kan-nak-ma +UD.3.KAM₂ +GAR +[...] +i#-ar₂#-ru₃ +UD.7.KAM₂ +NAG-MEŠ +[...] +ina +KAŠ.SAG +NAG +[...] +x +PA +{giš}NU.UR₂.MA +[...] +ina# +KAŠ.SAG +NAG +[...] +x +ina +I₃.GIŠ +u +KAŠ.SAG +GAZ +[...] +x +x +ad +[...] +[...] +x +[... +SILA₁₁]-aš +[... +T]U₅-MEŠ#-šu₂-ma +TI +[...] +NAG-ma +TI +[...] +TI?#-uṭ# +[...] +[...] +[...] +x +[...] +NA₄ +Z[U₂.LUM.MA] +x +x +[...] +A-MEŠ +NU# +NAG# +A-M[EŠ +...] +{u₂}KUR.RA +SUD₂ +ina +A +[...] +BAR +{giš}NU.UR₂.MA-a +ša +{im}SI.SA₂ +ina +[...] +SUM{sar} +SIG₇-su +hi-bi-iš +hi-bi-iš +u₂-al-lat +x +[...] +NUMUN +{u₂}a-zu-ki-ra-ni +SUD₂ +[...] +1/3 +SILA₃ +A.GEŠTIN.NA +1/3 +SILA₃ +GAZI{sar} +10 +KISAL +MUN +1/2 +SILA₃ +I₃.GIŠ +BA[RA₂.GA +...] +A.UZU +GUR₄ +5 +GIN₂ +MUN +ana +ŠA₃ +ŠUB-ma +NU +pa#-tan# +NAG +SUHUŠ# +[...] +I₃.UDU +{u₂}UKUŠ₂.HAB +GAZ +1 +SILA₃ +A.GEŠTIN#.NA# +ŠEG₆.GA₂ +ana +ŠA₃ +ŠUB#-m[a +...] +{šim}LI# +SUD₂ +ina +I₃#.GIŠ# +[...] +DIŠ-ma +UH₂ +TUKU.TUKU +{u₂}LAG +GAN₂ +SUD₂ +ina +A +{giš}NU.UR₂.MA# +ŠED₇# +[ina +DUR₂-šu₂] +DUB#-ak#-m[a +TI] +ša-ru-ra +ša +{u₂}UKUŠ₂.HAB +HAD₂.DU +GAZ +ana +ŠA₃ +NIG₂.SILA₁₁.GA₂ +u +LAL₃ +KUR-i# +HI#.HI# +[ŠE₁₀ +T]U{muš[en}-MEŠ] +u₂-al-lat +KAŠ.SAG +ZU₂.LUM +NAG +{u₂}HAB +SUD₂ +ina +I₃.GIŠ +BARA₂#.GA# +[NAG].NAG# +DIŠ +NA +ŠA₃-MEŠ-šu₂ +MU₂.MU₂ +it-ta-ne₂-bi-ṭu +ŠA₃-šu +ana +par-re-e +e-ta-ne₂-pa-aš₂ +ana +TI-šu₂# +SUM{sar} +{u₂}GAMUN.GE₆ +TEŠ₂.BI +SUD₂ +ina +KAŠ.SAG +NU +pa-tan +NAG-MEŠ +TI# +ana +KI +MIN +{u₂}SIKIL +SIG₇-su +SUD₂ +KI +I₃.ŠAH +HI.HI +NU +pa-tan +u₂-na-ṣab +KAŠ +BIL₂.LA₂ +NAG +T[I] +DIŠ +NA +ŠA₃-MEŠ-šu₂ +MU₂.MU₂ +it-te-ne₂-bi-ṭu +IM +ina +ŠA₃-šu₂ +NIGIN-ur +i-le-bu +I₃.UDU +{u₂}UKUŠ₂.HAB +ana +DUR₂-šu₂ +GAR#-[an] +{u₂}SUM{sar} +{u₂}zi-ba-a +SUD₂ +ina +KAŠ +NAG-MEŠ +2 +UD-me +1/2 +SILA₃.TA.AM₃ +I₃.GIŠ +ana# +DUR₂#-šu₂ +DUB-ak +T[I] +DIŠ +NA +ŠA₃-MEŠ-šu₂ +MU₂.MU₂-hu +it-te-ne₂-bi-ṭu +NU +pa-tan +KAŠ +LAL₃ +bah-ra# +NAG#-šu₂ +i-ar₂-ru +A.GEŠTIN.[NA] +ŠEG₆-šal +{u₂}KUR.RA +MUN +TEŠ₂.BI +SUD₂ +ana +ŠA₃ +GAZ +LAL₃ +u +I₃ +hal-ṣa# +ŠUB +ana +DUR₂-šu₂ +DUB-ak +T[I] +DIŠ +NA +ŠA₃-MEŠ-šu₂ +it-te-nen-bi-ṭu₃ +NU +pa-tan +KAŠ +ina +{dug}LA#.HA#.AN# +NAG +A.GEŠTIN.NA +ŠEG₆.GA₂ +{u₂}KUR.RA +MUN +e[me-sal-li₃] +ana +ŠA₃ +ŠUB +I₃.GIŠ +ana +ŠA₃ +tu-na-tak +ana +ŠA₃ +na-aš-pak-ti +DUB#-ak# +I₃.GIŠ +ina +ŠU.SI +GUB₃-ka +-lu-šu₂ +ŠEŠ₂-s[u] +DIŠ +NA +ŠA₃--šu₂ +it-te-ne₂-bi-ṭu +I₃.UDU +UKUŠ₂#.HAB# +ana +DUR₂-šu₂ +GAR-an +SUM{sar} +7 +u +7 +u₂-al#-[lat] +SUM{sar} +{u₂}GAMUN.GE₆ +SUD₂ +ina +KAŠ +NAG +L[AL₃ +KUR]-i# +I₃.GIŠ +ana +DUR₂-šu₂ +DUB +NUMUN +{u₂}a-zu-ki-ra-a-ni +SUD₂ +G[U₇?] +DIŠ-ma +UH₂ +TUKU.TUKU +gan-ha +UD.DA# +KUR +A +{giš}NU.UR₂.MA +ŠUR +[NAG?] +GA +I₃.GIŠ +EME-šu₂ +DAB-bat +NAG# +1 +SILA₃ +KAŠ +NAG +{šim}LI +SUD₂ +ina +KAŠ +[NAG] +{u₂}GAMUN.GE₆{sar} +SU[D₂ +in]a +KAŠ +NAG +{u₂}GAMUN.GE₆{sar} +SUD₂ +ina +GEŠTIN +NAG +I₃.GIŠ +u₂-a[l-lat] +DIŠ +NA +SAG +ŠA₃-šu₂ +KUM₂ +ŠA₃#--š[u₂ +M]U₂.MU₂-hu +1/2 +SILA₃ +{šim}HAB +ina +šur-šum-me +KAŠ +ta-r[ab-bak] +ina# +TUG₂# +TE +LAL-id +ana# +[na-aṣ]-ma-ti +GAZI{sar} +ŠIM.ŠAL +ta-za#-ru₃# +IGI# +u# +MAŠ#.S[ILA₃ +LAL] +[x +x] +x +[x +x +x] +x +[x +x +x] +x +[x +x +x +{ši]m}LI +{šim}ŠE.LI +{u₂#}HAR#.HAR# +ana# +KAŠ# +ŠUB# +[x +x +x] +x +x +x +x +GAZ# +lu# +ba#-hir₂ +NAG#-šu₂# +ina +A₂ +MUŠEN +tu-šap-ra-šu-ma +TI +DIŠ# +NA# +ŠA₃-MEŠ-šu₂ +ma-gal +nap-hu# +NINDA#-MEŠ +KAŠ-MEŠ +ina +KA-šu₂ +GUR.GUR-ra +SAG.DU-su +GABA-su +LAL₂-id +ra-bi-ik +ZI₃.KUM +ŠEG₆#-šal +ina +LAL₃-MEŠ +I₃.UDU +u +I₃.NUN.NA +GU₇-MEŠ +SUM{sar} +SUM.SIKIL{sar} +GA#.RAŠ#{sar} +sah-le₂-e +{u₂}u[r₂-n]e₂-e +3 +UD-me +NU +GU₇ +A +NU +TU₅-ma +TI +DIŠ +NA +ŠA₃-MEŠ-šu₂ +nap-hu +x +[x +KU]M₂? +ŠUB-MEŠ-su +NINDA +u +KAŠ +LAL +UH₂ +TUKU.TUKU-ši +ana +TI-šu₂ +{u₂}IGI-lim +{u₂}IGI.NIŠ +SUHUŠ +{giš}NA[M.TAR] +a#-he-nu-u₂ +SUD₂ +ina +KAŠ +NAG-šu₂ +i-par-ru-ma +EGIR +an-ne₂-e +I₃ +hal-ṣa +u +KAŠ +NAG-šu₂ +A +GA[ZI{sa]r} +u +A.GEŠTIN.NA +ŠEG₆-šal +ana +DUR₂-šu₂ +DUB-ak-ma +{šim}GUR₂.GUR₂ +{šim}LI +{šim}GAM.MA +PA +{giš}ŠE.HAR# +PA +{giš}GE₆.PAR₃ +PA +{giš}ŠE.NU₂.A +NUMUN +{u₂}ur-ba-ti +7 +U₂-HI-A +ŠEŠ +TEŠ₂.BI +GAZ +SIM +KI +I₃#.UDU +DUH.LAL₃ +u +{šim}HAB +tu-sa-mah +ina +KUŠ.EDIN +SUR +LAL₂-su-ma +TI +DIŠ +NA +ŠA₃-MEŠ-šu₂ +nap-hu# +gu-ha +u +UH₂ +TUKU-MEŠ-ši +NINDA +u +KAŠ +LAL +ana +TI-šu₂ +{u₂}KUR.RA +sah-le₂-e +DIŠ#-niš# +SUD₂# +ina +KAŠ +NAG-šu₂ +{u₂}ur₂#-ne₂-e +ina +A +GAZI{sar} +ŠEG₆-šal +ta-ša₂-hal +ŠED₇ +lu +ba-hir₂ +ana +DUR₂-šu₂ +DUB +TI# +DIŠ +NA +ŠA₃-MEŠ-šu₂ +nap-hu# +SAG +ŠA₃-šu₂ +ru-pu-ul-ta +TUKU-MEŠ-ši +ana +TI-šu₂ +U₅ +ARGAB{mušen} +{u₂}tu-lal +GI.ŠUL.HI +PA +{giš}šu-še +i[na +MU]D₂ +EREN +u +A +GAZI{sar} +tu-ka-an +LAL₃ +I₃ +hal-ṣa +I₃.NUN +u +KAŠ.SAG +ana +ŠA₃ +ŠUB-d[i +i]na +MUL₄ +tuš-bat +ina +še-ri₃ +ta-ša₂-hal +NU +pa-tan +NAG-ma +TI +DIŠ +NA +ŠA₃-MEŠ#-š[u₂ +nap]-hu +ZI₃ +ŠE.SA.A +ZI₃ +MUNU₆ +NUMUN +{u₂}KI.{d}IŠKUR +di-ik-ta +ša₂ +ZU₂.LUM# +TEŠ₂.BI +SU[D₂ +NU +pa-t]an +GU₇-MEŠ +A-MEŠ +NU +NAG +A-MEŠ +SAG +ŠA₃-šu₂ +tu-sa-lah₂-ma +TI# +[DIŠ] +NA +ŠA₃-šu₂# +[e-m]e-er +10 +KISAL +A +{giš}ŠE.NU +10 +KISAL +A +MUN +ina +LAL₃ +u +KAŠ +[NAG] +[ana +K]I +MIN +{gi[š}NU.U]R₂.MA +GU₇ +A +{giš}NU.UR₂.MA +N[AG] +[ana +KI +MI]N +{ši[m}L]I? +SUD₂ +ina +KAŠ +NAG +ana +KI +MIN +SIG₂ +GAL₄.LA +{munus}ŠU.GI +ina +MURUB₄# +KA-šu₂ +G[AR-an] +[ana +KI +MIN +{giš}NU.U]R₂.MA +PA +{giš}MA₂.RI₂.IŠ.MA₂.RA +SUD₂ +ina +A +NA[G] +[DIŠ +NA +ŠA₃-šu₂ +I]M +ṣe-en +ŠUM!(DIM₃).GAM.ME +ZABAR +lu +GIR₂ +ZABAR +i-lik-ma +TI +[SAHAR +URUDU.NIG₂.KAL]AG.GA +tu-uš-ṣe-en-šu₂ +i-ši-hi-iq-ma +TI +DIŠ +NA +ŠA₂#--šu₂# +[em]-ru# +10 +KISAL +PA +{giš}šu-nim +10 +KISAL +LAL₃# +ana# +ŠA₃# +KAŠ# +ŠUB# +ina +MUL₄ +tuš-bat +ina +še-ri₃ +NU +pa-tan +NAG-MEŠ-ma +TI +DIŠ +NA +ŠA₃-šu₂ +e[m-ru +M]U₂.MU₂#-hu# +ŠA₃#-šu₂# +iš-ta-na-si +NINDA +u +A +GUR +SUHUŠ +{giš#}NAM#.TAR +NITA₂ +{šim}HAB +ina +KA-šu₂ +i-na-ʾ-is +LAL₃ +KUR-i +ina +K[AŠ +SAG +NA]G +{šim}HAB +ina +KAŠ.SAG +ŠEG₆.GA₂ +ana +DUR₂-šu₂ +DUB-ak +PA +{giš}GE₆.PAR₃ +{šim}LI +{šim}KU₇.KU₇ +ILLU +a-bu-k[a-ti +{giš}Š]E.NU +GAZ +ina +I₃.UDU +HI.HI +ina +KUŠ +TE# +LAL +ina +A +{giš}ŠE.NU +ir-ta-na-haṣ +DIŠ +NA +ŠA₃-šu₂ +[x +x +x +x +K]UM₂ +ŠUB.ŠUB-su +IM +TUKU.TUKU +NINDA +A +GUR# +{u₂}IGI.NIŠ +SUHUŠ +{giš}NAM.TAR +NITA₂ +ina +KAŠ.SAG +S[UD₂ +NAG-šu₂ +EG]IR-šu₂ +I₃ +hal-ṣa +ina +KAŠ +NAG +SI.SA₂ +GAZI{sar} +A.GEŠTIN.NA +ŠEG₆-šal +ana +DUR₂-šu₂ +DUB +{šim}L[I +x +x +x +{ši]m}HAB +PA +{giš}GE₆.PAR₃ +PA +{giš}ŠE.NU +GAZ +ina +I₃.UDU +HI.HI +ina +KUŠ +TE +LAL +KIMIN +DIŠ +NA +ŠA₃-šu₂ +x +[x +x +x +NIND]A +u# +A +ina +KA-šu₂ +GUR.GUR-ra +SAG.KI-MEŠ-šu₂ +up#-ta-ṭa-aṭ!(TA)-ra +x +x +x +x +x +x +x +[...] +x +x +ina# +I₃#.ŠAH# +GU₇-MEŠ +SUM{sar} +SUM.SI[KIL{sar} +x +x +x +x] +[...] +x +[...] +x +[...] +DIŠ +NA +ŠA₃-šu₂ +e-sil +SAG.DU +G[U₇-šu₂ +...] +a-ba +du₁₀ +u-me-ni-ir +a-ba +[du₁₀ +u-me-ni-ir +...] +KA.INIM.MA +LU₂ +es-li +D[U₃.DU₃.B]I +EN₂# +3#-šu₂# +ana# +Š[A₃ +ŠID-nu +...] +DIŠ +NA +ŠA₃-šu₂ +NINDA +u +KAŠ +la +i#-mah#-har +1/3 +SILA₃ +A +ZU₂.LUM#.MA# +1/3# +SILA₃# +[A] +GAZI#{sar#} +[x +x +x +x +x +x] +EGIR-šu₂ +AL.US₂.SA +A.GEŠTIN#.NA +NAG-ma +KUM₂ +ša₂ +ŠA₃-šu₂ +i-ša₂-haṭ{aṭ} +im-me-si# +[x +x +x +x] +DIŠ +NA +ŠA₃-šu₂ +NINDA +la +i-mah-har# +NUMUN +{giš}ŠINIG +SUD₂ +ina +LAL₃ +u +I₃.NUN +HI.HI +ba-lu +pa-tan +N[AG-šu₂-ma +TI] +DIŠ +NA +NINDA +u +KAŠ +LAL-ṭu +{u₂#}HAR.HAR +{u₂}NU.LUH#.HA +{u₂}ur₂-nu-u +GAZI{sar} +{u₂}ti-ia₂-ta₅ +{u₂}SUMUN.DAR +{u₂#}x +x +[x] +{šim}GUR₂.GUR₂ +{šim}GAM.MA +{šim}MAN.DU +{giš}EREN +{giš}EREN.SUMUN +{šim}MUG +ZU₂.LUM.MA +LAGAB +MUNU₆ +MUN +{giš}ŠE.[NU] +A.GEŠTIN.NA +KALAG.GA +ina# +KAŠ +tara-muk +ina +MUL₄ +tuš-bat +ina +še-ri₃ +ina +{urudu}ŠEN.TUR +ŠEG₆-šal +5 +GIN₂ +I₃ +hal-ṣa +ana +IGI +ŠUB +ana +DUR₂-šu₂ +DU[B-ak] +ana +ŠA₃ +UTUL₂ +ŠUB-ma +IGI#.4#.GAL₂.LA +U₂ +mat-qa +IGI.4.GAL₂.LA +U₂ +TUR +mat-qu# +IGI.4.GAL₂.LA +{u₂}a-ra-ri-ia₂-nu# +{u₂}mer-gi-ra-a-nu# +90 +{u₂}si-sin-ni +ŠA₃ +mal-ma-liš +SUD₂ +ina +KAŠ +{lu₂}KURUN₂.NA +NU +pa-tan +NAG-ma +ina +DUR₂#-šu₂# +SI.SA₂-ma +TI# +DIŠ +NA +ŠA₃--šu₂ +ga-an-nu +ga-ah-ha +TUKU +NINDA +u +A +muṭ-ṭu₂ +UH₂ +TUKU-MEŠ-ši +{u₂}KUR.RA +SUD₂ +ina# +I₃#.GIŠ# +NAG-ma +i-ar₂#-[ru₃] +{u₂}KUR.RA +sah-le₂#-e +SUD₂ +ina +KAŠ +NAG +{u₂}ur₂-ne₂-e +ina +A +ŠEG₆-šal +tu-kaṣ₃-ṣa# +ana# +DUR₂#-šu₂ +DUB-a[k] +PA +{giš}GE₆#.PAR₃# +PA +{u₂}KI.{d}IŠKUR +PA +{giš}bi-ni +{šim}LI +{šim}GUR₂.GUR₂ +{šim}GAM.MA +{šim#}HAB +{š[im}x +x] +ina +A# +[ZU₂].LUM.MA +tara-bak +GUR-ma +HAD₂.A +GAZ +ina +I₃.UDU +HI.HI +ina +KUŠ +TE +LAL +ina +A +{giš}ŠE.NU +ir-ta#-na#-[haṣ-ma +TI] +DIŠ +[NA +Š]A₃-šu₂ +e-ta-na-ša₂-aš-ma +NINDA +u +KAŠ.SAG +la +i-mah-har +MAŠ.SILA₃-MEŠ-šu₂ +GU₇-MEŠ-šu₂ +SAG.DU-su +gi-na-a +LAL +[x +x +x] +U[D.7.KA]M₂ +SUM{sar} +SUM.SIKIL{sar} +GA.RAŠ{sar} +NU +GU₇ +ina +A +{giš}ŠE.NU +RA-MEŠ +NUMUN +{u₂}UKUŠ₂.HAB +NUMUN +{u₂}HAR.HAR +ina +KAŠ +N[AG-ma +TI] +DIŠ +NA# +ŠA₃-šu₂ +ha-ah-ha +DIRI +ana +TI-šu₂ +GI +DU₁₀ +{šim}BAL +{šim}LI +{u₂}HAR.HAR +{šim}ŠE.L[I? +BABBAR?] +i[na +K]AŠ.SAG +ŠUB +ŠEG₆-šal +ta-ša₂-hal +lu +ba-hir₂ +10 +KISAL +LAL₃ +ana +ŠA₃ +GAZ +NU +pa-tan +NAG-šu₂ +i-ar₂-[ru₃-ma?] +[ina] +A₂.GU₂.ZI.GA +LAL₃ +I₃ +hal-ṣa +u +KAŠ +TEŠ₂.BI +HI.HI +NU +pa-tan +EME-šu₂ +DAB-bat +NAG-šu₂ +[TI] +DIŠ +NA +ha-hu# +DAB-su +NUMUN +{u₂}SIKIL +NUMUN +{giš}GEŠTIN +KA₅.A +{u₂}AB₂.DUH +{u₂}NIGIN{sar} +{u₂}TAL₂.TAL₂ +5 +U₂-MEŠ +ŠEŠ +TEŠ₂.B[I +SUD₂?] +ina +A +GAZI{sar} +tara#-bak# +ina +TUG₂.HI.A +SUR +SAG +ŠA₃-šu₂ +LAL₂-id +U₂ +BABBAR +SUD₂ +ina +A-MEŠ +NU +pa-tan +NAG +T[I] +ana +KI +MIN +ILLU +{š[im}BUL]UH +SUD₂ +ina +GEŠTIN +ŠUR.RA +NU +pa-tan +NAG +[TI] +ana +KI +MIN +{u₂}[x] +x +SUD₂ +ina +KAŠ.SAG +NU +pa-tan +NAG +[TI] +DIŠ +NA +IM +ina +ŠA₃#-šu₂# +[NIGIN-h]ur +ana +TI-šu₂ +SUHUŠ +{u₂}EME +UR.GI₇ +ša +ina +ZI-ka +{d}UTU +NU +IGI#.[BI] +HAD₂.A +SUD₂ +i[na +KAŠ.SA]G +NU +pa-tan +NAG +T[I] +DIŠ +NA +IM +ina +ŠA₃-šu₂ +i-le#-e[b-bu +{u₂}EME +U]R.GI₇ +NUMUN +{u₂}EME +UR.GI₇ +DIŠ-niš +SUD₂ +ina +KAŠ +NU +pa-tan +NAG +TI +DIŠ +NA +IM +GIM +di-ik-ši +ina +ŠA₃#-š[u₂ +TAG.MEŠ-šu₂ +1/2 +GIN₂ +{giš}E]REN +1/2 +GIN₂ +{giš}ŠUR.MIN₃ +1/3 +GIN₂ +{šim}GIR₂ +10 +GIN₂ +{giš}EREN.SUMUN +10 +GIN₂ +MUN +eme-sal-li₃ +{šim}L[I +x +x +x +x +x +x +x] +ina# +KAŠ.SAG +ŠEG₆-šal +I₃.GIŠ +ana +IGI +ŠUB +ana +DUR₂-šu₂ +DUB-ak +DIŠ +NA +IM +ina +ŠA₃-šu₂ +uš-tar-ʾ-a[b +i-le-he-eb +ki-ib]-su-šu₂ +še-pi-BI +GABA-su +u +MAŠ.SILA₃-MEŠ-šu₂ +GU₇-MEŠ-šu₂ +UZU-MEŠ-šu₂ +u₂-šam-ma#-[mu-šu₂ +u +GIR₂.GI]R₂-šu₂ +UZU-MIN-šu₂ +ma-ṭu-u +ni-ip-še +DIRI +SAG-MEŠ-šu₂ +i-ta-na-nu-u₂ +KUM₂-MEŠ +ina +kal +UD-me +u₂-kil₂-š[u +x +x +x +x +x +x +{ši]m}LI +{u₂}KUR.KUR +{u₂}HAR.HAR +sah-le₂-e +GAZI{sar} +MUN +a-ma-ni₇ +{u₂}ur₂-ne₂-e +PA +{giš}b[i-ni +9 +U₂.HI].A# +ŠEŠ +TEŠ₂.BI +SUD₂ +ina +GEŠTIN +DU₁₀.GA +u +KAŠ.SAG +ta-ra-sa-an +ina# +GE₆# +ana# +IGI# +MUL₄ +tuš-bat +ina +A₂#.GU₂#.Z[I.GA +ŠEG₆-šal +t]a-ša₂-hal +ŠED₇ +7 +ŠE-MEŠ +HENBUR₂ +{u₂}UKUŠ₂.HAB +7 +ŠE-MEŠ +{na₄}AN.ZAH +TEŠ₂.BI +SUD₂ +a[na +ŠA₃ +GA]Z +la-am +{d}UTU +na-pa-hi +NAG-šu₂ +ina +A₂ +tu-šap-ra-šu₂ +šum₄-ma +DU₁₀.G[A +N]U +IGI-mur +ana +DUR₂-šu₂ +DUB-ak +TI +DIŠ +NA +NINDA +GU₇ +KAŠ +NAG-ma +la +i-še-eb-bi +ŠA₃--šu₂ +MU₂.MU₂-h[u +ŠA₃-šu₂ +N]U +IGI#-har# +GIM +it-ta-šu +bi-sik-ta₅ +GIG +ŠURUN +GUD +ina +A +ta-mah-ha-ah +ŠEŠ₂ +{giš}ZU₂.LUM.MA +GA.RAŠ{sar} +U[KUŠ₂?.HAB +x +x] +x +NINDA# +u# +KAŠ# +la +i-lem +UD.7.KAM₂ +A +ša₂!(7) +PU₂ +i#-š[a-ti] +DIŠ +NA +hu-šah-hu +DAB-su +1 +SILA₃ +KAŠ.SAG +ina +MUL₄ +tuš-bat +ina +š[e-ri₃ +x +x +x +x] +x +x +[x +x +x] +DIŠ +NA +ma-ʾ-di-iš +e-na-ah-ma +IM +e-dip-ma +NU# +[...] +x +[x +x +x] +ina +A +GAZI{sar} +ir-ta-na-haṣ +MUN +DUR₂.NU#.[LUH.HA +...] +x +[x +x +x] +DIŠ +NA +U₂ +NAG-ma +la +i-ar₂-ru₃ +ṣe-me-er +a-za-pi +Š[AH +...] +A +u +I₃.GIŠ +ŠEG₆-šal +EN +ši-bi-šu₂ +u₂-al-lat +hi +r[i +...] +DIŠ +NA +U₂ +NAG-ma +la +ip-ru +la +iṣ-nu-uh +NA +BI +ze-e-ze-na +GIG +ana# +TI#-šu₂# +{giš#}si#-[hu +{giš}ar₂-ga-nu] +{giš}ba-ri-ra-ta₅ +{šim}GUR₂.GUR₂ +{šim}LI +{šim}GAM.MA# +{šim}GIG +{giš}EN.DI +ina +A +PU₂ +[x +x +x +x] +NE-su +ana +DUR₂-šu₂ +DUB-ak +10 +KISAL +{šim}GUR₂#.GUR₂# +ŠEŠ₂#-su-ma +ŠA₃-MEŠ-šu₂ +[SI.SA₂-ma +TI] +DIŠ +NA +an-šu₂-tu₄ +iṣ-bat-su-ma +la +u₂-šar-da# +KAŠ.SAG +ina +ŠEN.TUR +ŠEG₆-šal +MUN +ana +ŠA₃ +ŠUB +ana +DU[R₂-šu₂ +DUB] +ŠU.SI-ka +{tug₂}GADA +NIGIN +MUN +ta-ṣap-pu +DUR₂-šu₂# +ta-kar +SIG₂ +GAL₄.LA +{munus}ŠU.GI +ina +MURUB₄ +KA-šu₂ +GAR +[ina-eš] +DIŠ +NA +KAŠ.SAG +NAG-ma +SUHUŠ-MEŠ-šu₂ +pa-al-qa +di#-ig#-la +ma-a-ṭi +ana +TI-šu₂ +NUMUN +{u₂}SIKIL +NUMUN +{u₂}DILI +NUMUN +{giš}bi#-[ni] +NUMUN +{u₂}am-ha-ra +NUMUN +{u₂}IN₆.UŠ₂ +5 +U₂.HI.A +ŠEŠ +DIŠ#-niš +SUD₂ +ina +GEŠTIN +SIG₃-aṣ +NU +pa-tan +NAG-ma +ina-eš# +DIŠ +NA +KAŠ +NAG-ma +SAG.DU-su +DAB.DAB-su +INIM-MEŠ-šu₂# +im-ta-na-aš₂-ši +ina +DU₁₁.DU₁₁-šu₂ +u₂-pa-aš₂-šaṭ +ṭe₄-en-šu₂ +la +ṣa-bit +LU₂ +BI +IGI-MIN-šu₂ +GUB-za +ana +TI#-šu₂ +{u₂}IGI-lim +{u₂}IGI.NIŠ +{u₂}tar-muš +{u₂}HAR.HAR +{u₂}SIKIL +{u₂}DILI +KA +A.AB.BA +{u₂}NU.LUH.HA +NUMUN +{u₂}NIG₂#.GAN₂.GAN₂ +{u₂}kam-ka-du +{u₂}eli-kul-la +11 +U₂.HI.A +ŠEŠ +DIŠ-niš +SUD₂ +ina +I₃.GIŠ +u +KAŠ +ana +IGI +{d}gu-la +tuš-bat +ina +še-ri₃ +la#-am +{d}UTU +MU₂-hi +la-am +ma-am-ma +iš-ši-qu-šu₂ +NAG-ma +ina-eš +DIŠ +NA +GABA-su +GIG#-ma +GIM +ši-ne₂-e-ti +SAHAR +TUKU.TUKU#-ši +ina +da-ba-bi-šu₂ +ik-ka-šu₂ +ik-ta-ner-ru +u₃# +ZE₂ +ip-te-nar-ru +NA +BI +bi-šit +ŠA₃ +GIG +ana# +TI-šu₂ +{u₂}EME +UR.GI₇ +ina +KAŠ +NU +pa-tan +NAG-šu₂ +ina +A +GAZI{sar} +RA-MEŠ +A +{giš}ŠE.NU +ana +DUR₂-šu₂ +DUB +ZI₃# +GU₂.TUR +{giš}ur₂-ne₂-e +ina +{gi}SAG.KUD +ina +KA-šu₂ +GID₂-ad +{šim}HAB +I₃.UDU +ZU₂.LUM +{šim}LI +{šim}KU₇#.KU₇ +DIŠ-niš +HI.HI +ina +KUŠ +SUR +LAL +U₂ +BABBAR +ina +I₃.GIŠ +KI +MIN +GAZI{sar} +KI +MIN +A +{u₂#}ur₂-ne₂-e# +u +GAZI{sar} +{šim}GUR₂.GUR₂ +KI +MIN +{šim}LI +{šim}GUR₂.GUR₂ +MIN +PA +{giš}GE₆.PAR₃ +PA +{giš}ŠE.NU +PA# +{giš#}MA.NU +E₂ +NIM +kal-bi +I₃ +DIŠ-niš +HI.HI +ŠU.BI.AŠ.AM₃ +U₂ +BABBAR +ina +I₃.GIŠ +NAG-šu₂ +ina +A# +GAZI{sar} +RA-su-ma +A +{giš}NU.UR₂.MA +ana +DUR₂-šu₂ +DUB-ak-ma +GU₂.GAL +{šim}GUR₂.GUR₂ +GID₂-ad-ma +{šim}LI +{šim#}HAB +ILLU +{šim}BULUH +{giš}bi-nu +{u₂}SIKIL +DIŠ-niš +SUD₂ +ina +I₃.UDU +HI.HI +GABA-su +LAL-ma +ina-eš +{u₂}EME +UR.GI₇ +ina +KAŠ +NAG +ina +A +GAZI{sar} +KI +MIN +GAZI{sar} +{šim}LI +{šim}GUR₂.GUR₂ +{šim}GAM.MA# +ŠIM.HI.A +DU₃.A.BI +PA +{giš}GE₆.PAR₃ +PA +{giš}šu-še +K[I +MIN] +DIŠ +NA +di-ik-šu +ina +GABA-šu₂ +TAG.TAG-su-ma +GIM +ši-ne₂-ʾ-ti +SAHAR +i-ša₂-an-na-ʾ-šu +ina +g[e-ši-šu] +ZE₂ +i-par-ru +ina +da-ba-bi-šu₂ +ik-ka-šu +ik-t[e-ne]r-ru +NA +BI +-šit +ŠA₃-bi +GIG +KU₆ +SUM{sar} +UZU +G[UD +UZU +ŠAH] +u +KAŠ +{lu₂}KURUN₂.NA +la +uš-ta-mah-har +ut-ta-šar +[1/2 +SILA₃ +Z]A₃.HI#.LI +1/2 +SILA₃ +{šim}GUR₂.GUR₂ +1/2 +SILA₃ +{giš}L[I +1/2 +SILA₃ +NUMUN +GADA] +1/2 +SILA₃ +{giš}GIG +1/2 +SILA₃ +{giš}EN.DI +1/2 +SILA₃ +NUMUN +{u₂}[qut-ra-ti] +1/2# +SILA₃# +GAZI{sar} +1/2 +SILA₃ +NUMUN +{giš}ŠE.[NU +1/2 +SILA₃ +GU₂.NIG₂.AR₃.RA] +1/2 +SILA₃ +BA.BA.ZA.{d}ID₂ +1/2 +SILA₃ +NUMUN +{u₂}ka-man-[ta +...] +10 +KISAL +ILLU +{šim}BULUH +10 +KISAL +KA +A#.A[B.BA +...] +21 +U₂#.HI#.[A +...] +šum#-m[a +...] +[...] +[... +U]D.DA +SA₂.SA₂ +GAZ +SIM +[... +{gi]š}bi#-nu +{u₂}IN₆.UŠ₂ +RA-ma +TI +[ana +KI +MIN +... +ina +K]AŠ +NU +pa-tan +NAG-ma +TI +[ana +KI +MIN +... +{u₂}NA]GA.SI +TEŠ₂.BI +SUD₂ +ina +KAŠ.SAG +SILA₁₁-aš +ina +KUŠ +SUR-ri +LAL-id +[... +SILA₁₁-a]š +ina +KUŠ +MIN +[... +SILA₁₁-a]š +ina +SAG +ŠA₃-šu₂ +LAL-ma +TI +[...] +x +ina +A.GEŠTIN.NA +KALAG.GA +SILA₁₁-aš +SAG +ŠA₃-šu₂ +LAL-ma +TI +[...] +x +{u₂#}KU₆# +HAD₂.A +GAZ +SIM +ina +KAŠ +SILA₁₁-aš +KI +MIN +[ana +KI +MIN +x +x +x +x +x] +{u₂#}HAR.HAR +{u₂}KUR.KUR +{u₂}GAMUN.GE₆ +{u₂}tar-muš₈ +[x +x +x +x +x] +x +DIŠ#-niš +SUD₂ +ina +KAŠ +NAG +um-mi +ša₂ +ŠA₃-šu₂ +ta-ša₂-haṭ-ma +TI +[DIŠ +NA +x +x +x +x +K]I +UH₂#-šu₂ +MUD₂ +ŠUB.ŠUB-a +ki-ṣir-te +ŠA₃ +GIG +UD.DA +SA₂.SA₂ +ŠA₃-šu₂ +qer-be₂-na₇ +GIG +[{u₂}u]r₂-ne₂#-e# +A#.GAR#.GAR# +MAŠ#.DA₃ +NUMUN +{u₂}KI.{d}IŠKUR +NUMUN +{u₂}IN₆.UŠ₂ +{šim}GUR₂.GUR₂ +2 +KISAL +KA +A.AB.BA +GAZ +ina +A +PU₂ +tara-bak +[GUR-m]a +HAD₂#.A +GAZ +ina +A +ZU₂.LUM.MA +ina +{dug}GAN +tara-bak +ina +TUG₂ +SUR-ri +SAG +ŠA₃-šu₂ +ur-ra +u +GE₆ +LAL-id +DU₈-šu₂-ma +A# +PU₂# +ta-hab-bu +U₂ +BABBAR +SUD₂ +ina +I₃ +hal-ṣa +EME-šu₂ +DAB-bat +NAG +i-ar₂-ru +LAL₂-su +NAG.NAG-šu₂ +iš-tu +NAG-u₂ +[1/2] +SILA₃# +NUMUN# +{giš#}bi#-ni +1/2 +SILA₃ +{giš#}GEŠTIN# +KA₅.A +1/2 +SILA₃ +{šim}LI +1/2 +SILA₃ +ZU₂.LUM.MA +1/2 +SILA₃ +ZI₃ +GIG +GAZ +ina +A +GAZI{sar} +tara-bak +[GUR-ma +HA]D₂.A +GAZ +ina +A +ZU₂.LUM +ina +{dug}GAN +tara-bak +ina +TUG₂.HI.A +SUR-ri +ur-ri +u +GE₆ +LAL +[ana +KI +MIN] +PA# +{giš}NU.UR₂.MA +PA +{giš}GE₆.PAR₃ +PA +{giš}NAM.TAR +NITA₂ +ŠIKA +NIG₂.BUN₂.NA{ku₆} +ILLU +{šim}BULUH +GAZ +[ina +A +Z]U₂.LUM.MA +ina +{dug}GAN +tara-bak +GUR-ma +HAD₂.A +GAZ +ina +KAŠ +u +I₃.GIŠ +ina +{dug}GAN +tara-bak +ina +TUG₂ +SUR +ur#-ri# +u +GE₆ +LAL-id +KU.KU +{u₂}ti-ia₂-ta₅ +ina +KAŠ +NU +pa-tan +NAG +1/3 +SILA₃ +ŠE₁₀ +TU{mušen}-MEŠ +1/3 +SILA₃ +NUMUN +{u₂}AB₂.DUH +1/3 +SILA₃ +GURUN +{u₂}MAŠ.HUŠ +ta-haš-šal +ina +A +GAZI{sar} +tara-bak +GUR-ma +HAD₂.A +GAZ +ina +A +ZU₂.LUM.MA +ina +{dug}GAN +tara-bak +ina +TUG₂ +SUR-ri +ur-ri +u +GE₆ +LAL-id +ana +KI +MIN +1/2 +SILA₃ +NUMUN +{u₂}DILI +1/2 +SILA₃ +{u₂}LAG +GAN₂ +SIG₇ +1/2 +SILA₃ +U₅ +ARGAB{mušen} +1/2 +SILA₃ +ZI₃ +ZIZ₂.A.AN +GAZ +ina +A +ID₂ +tara-bak +GUR-ma +HAD₂.A +GAZ +SIM +ina +A +ZU₂.LUM.MA +ina +{dug}GAN +tara-bak +ina +TUG₂ +SUR-ri +ur-ra +u +GE₆ +LAL-id +NUMUN +{giš}GEŠTIN +KA₅.A +ina +KAŠ +NU +pa-tan +NAG +ina +A +ŠEG₆-šal +tara-has#-su# +ana +KI +MIN +ZA₃.HI.LI +ina +KAŠ +NAG +NUMUN +{u₂}KI.{d}IŠKUR-ri +NUMUN +{giš}MA.NU +NUMUN +{giš}ŠINIG +{šim}GUR₂.GUR₂ +GAZ# +ina +A +GAZI{sar} +tara-bak +GUR-ma +HAD₂.A +GAZ +ina +A +ZU₂.LUM.MA +ina +{dug}GAN +tara-bak +ina +TUG₂.HI.A +SUR-ri +ur-ri +u +GE₆ +[LA]L +ana +KI +MIN +{šim}LI +{šim}GUR₂.GUR₂ +{šim}HAB +{šim}GAM.MA +{u₂}ba-ri-ra-ta₅ +{šim}BULUH +{giš}EREN +{giš}ŠUR.[MIN₃] +{šim}BAL +GAZ +ina +A +GAZI{sar} +tara-bak +GUR-ma +HAD₂.A +GAZ +ina +A +ZU₂.LUM.MA +u +KAŠ +ina +{dug}GAN +tara-bak# +ina +TUG₂.HI.A +te-ṭer₅-ri +ur-ra +u +GE₆ +LAL-id +IM.SAHAR.NA₄.KUR.RA +ina +KAŠ +NAG# +ana +KI +MIN +PA +GIŠ.GI.ZU₂.LUM.MA +PA +{u₂}SIKIL +PA +{u₂}IN₆.UŠ₂ +GURUN +GA.RAŠ{sar} +GURUN +{giš}NU.UR₂.MA +NUMUN +{giš}HA.LU.UB₂# +PA +{giš}ASAL₂ +GAZ +ina +A +GAZI{sar} +ina# +{dug#}GAN# +tara#-bak# +ina +TUG₂ +SUR +ur-ra +u +GE₆ +LAL +ina +A +ŠEG₆-šal +tara-has₂-su +U₂# +ŠEŠ# +ina# +I₃# +u# +K[AŠ? +N]U +pa#-tan# +NAG# +tu-ša₂-ʾ#-[ra-š]u₂-ma!#(GIŠ) +DU₁₀.GA +GU₇ +DU₁₀.GA +NAG +ka-la +UD +u +GE₆ +ina +K[A₂? +GU]B?.GUB +ina +{giš}NA₂-šu₂# +l[a +NU₂ +in]a +še-ri₃ +A +KUM₂-ti₃ +TU₅-šu₂ +I₃.GIŠ +KUM₂ +ŠEŠ₂ +UD.3.KAM₂ +G[UR.GUR-š]um +DIŠ +NA +KI +UH₂#-šu₂# +MUD₂ +ŠUB-MEŠ-a +NA +BI +ta-aš₂-ni-qa +GIG +ana +TI-šu₂ +1/3 +SILA₃ +I₃.UDU +1/3 +SILA₃ +ZU₂.LUM.MA# +1/3# +SILA₃ +{šim#}HAB# +1/3 +SILA₃ +{šim}GUR₂#.GUR₂ +1/3 +SILA₃ +{šim}LI +1/3 +SILA₃ +{šim}BULUH# +1/3# +SILA₃# +DUH#.ŠE.GIŠ.I₃ +1/3 +SILA₃ +NUMUN +{giš}bi-ni +8 +U₂#.[HI.A] +ŠEŠ +DIŠ-niš +GAZ +ina +I₃.NUN +tal-tap#-pat +ina +KUŠ +SUR +IGI +u +MAŠ.SILA₃ +EN +DU₁₀.GA-šu₃ +3 +ITI#.MEŠ# +LAL₂#-su-ma +LAL-ta +ina +K[A-ka] +u₂#-še-ṣa-am-ma +ina-eš +DIŠ# +NA# +ki-ṣir# +ŠA₃ +GIG +NINDA +u +KAŠ +ŠA₃#-šu₂# +la +IGI-šu₂ +ina +KA#-šu₂# +GUR.GUR +TUN₃#-šu₂# +i#-sa-hal#-šu₂# +ana +TI-[šu₂] +1/2# +SILA₃ +sah-le₂-e +[1/2 +SIL]A₃ +{šim#}GUR₂#.GUR₂# +1/2# +SILA₃# +{šim#}LI# +1/2 +SILA₃ +{u₂}KI.{d}IŠKUR +1/2 +SILA₃ +ka-si-i +1/2# +SILA₃# +pa#-pa-si-{d#}[ID₂] +1/2 +SILA₃ +{u₂}KUR.RA +[1/2 +SILA₃ +{u₂}A]B₂.DUH +1/2 +SILA₃ +ZU₂.LUM.MA +1/2 +SILA₃ +DIDA +SIG +1/2 +SILA₃ +ZI₃ +MUNU₆ +1/2# +SILA₃ +ZI₃ +G[U₂.GA]L +1/2 +SILA₃ +ZI₃.KUM +1/2# +SILA₃# +ZI₃# +GIG# +1/3 +SILA₃ +ŠE₁₀ +TU{mušen} +1/3 +SILA₃ +{u₂}KAM-ti +GAN₂ +10 +KISAL +{šim}ŠEŠ +10 +KISAL# +KA +A.AB.BA +[16] +U₂.HI#.A# +ŠEŠ +DIŠ-niš +GAZ +SIM +ina +KAŠ +ina +{urudu}ŠEN.TUR +GIM +ra-bi-ki +tara-bak +ina# +KUŠ#.EDIN +SUR +3 +UD-me +SAG +ŠA₃-šu₂ +LAL +NINDA +u +KAŠ +ŠA₃-šu₂ +IGI-šu₂-ma +ina-eš +[DIŠ +NA] +ki#-ṣir# +ŠA₃-bi +GIG +NINDA# +u# +KAŠ# +ŠA₃-šu₂ +NU +IGI-šu₂ +ina +KA-šu₂ +GUR.GUR +ip-te-ne₂-ru +ana +TI-šu₂ +1/2 +SILA₃ +A +ZU₂.LUM.MA +[1/2 +SIL]A₃ +A# +GAZI#{sar} +10 +KISAL +{u₂}KUR.RA +SUD₂ +ana# +ŠA₃# +ŠUB# +ba-lu +pa-tan +NAG-šu₂ +EGIR-šu₂ +1/3 +SILA₃ +AL.US₂.SA +NAG# +ina +DUR₂-šu₂ +GIŠ-ma +NINDA +u +KAŠ +ŠA₃-šu₂ +KI +MIN +[ana +KI +MIN +M]UN +KUR-i +MUN +a-ma-ni₇ +DIŠ-niš +SUD₂ +ina +KAŠ +NU +pa-tan +NAG-ma +ina-eš +[ana +KI +MI]N +ZI₃# +ŠE#.SA#.A +ZI₃ +HARUB!(AMAŠ) +qi₂-lip₂ +ZU₂.LUM.MA +SUD₂ +ina +KAŠ +2 +UD-me +[ba]-lu +pa#-tan# +NAG-šu₂ +A +NU +NAG +A +SAG +ŠA₃-šu₂ +tu-sa-lah₂-ma +ina-eš +[DIŠ +NA +NIND]A +u# +KAŠ +ŠA₃-šu₂ +NU +IGI-šu₂ +UZU-MEŠ-šu₂ +ir-ta-nam-mu +IM +ina +DUR₂-šu₂ +NIGIN-ur₂ +ana +TI-šu₂ +1/2 +SILA₃ +A +ZU₂.LUM.MA +1/2 +SILA₃ +A +GAZI{sar} +[2? +GIN₂? +A.GEŠTIN.N]A +2 +GIN₂ +{u₂}KUR.RA +3 +GIN₂ +I₃ +hal-ṣa +3 +GIN₂ +LAL₃ +KUR-i +DIŠ-niš +tuš-te-mid +GAZ# +ina +GE₆ +ina +IGI +{mul}UZ₃ +tuš-bat +[ina +še-r]i₃ +ŠEG₆#-šal +ta-ša₂-hal +ŠED₇ +ina +ŠA₃ +tah-ta-na-su +EGIR-šu₂ +NAG +A +u +KAŠ +DIRI# +{giš}si-ha +{giš}ar-ga-nu +{giš#}LUM.HA +GAZI{sar} +PA +GAZI{sar} +NUMUN +{giš}ŠE.NU₂.A +ana +ŠA₃ +ŠUB +ŠEG₆-šal +ta-ša₂-hal +mar-ha-ṣi +tu-ša₂-at-tam-ma +ina# +ŠA₃ +RA-su +I₃ +SU-šu₂ +EŠ-aš +{giš}GEŠTIN +KA₅.A +{u₂}EME +UR.GI₇ +SUD₂ +ina +KAŠ +NAG-šu₂ +PA +{giš}GE₆.PAR₃ +PA +{giš}šu-še +HAD₂.A +DIŠ-niš +GAZ +SIM +ina +I₃.UDU +HI.HI +ina +KUŠ.EDIN +SUR +LAL₂-su-ma +ina-eš +DIŠ +NA +SAG +ŠA₃-šu₂ +GU₇-šu₂ +ina +ge-ši-šu₂ +ZE₂ +im-ta-na-ʾ +NA +BI +qer-be₂-na +GIG +DUB +2.KAM₂ +DIŠ +NA +su-a-lam +GIG +ana +ki-is +ŠA₃ +GUR +E₂.GAL +{m}AN.ŠAR₂-DU₃.A +MAN +ŠU₂ +MAN +KUR +AN.ŠAR₂{ki} +ša +{d}AG +u +{d}taš-me-tu₄ +GEŠTU-MIN +ra-pa-aš₂-tu₄ +iš-ru-ku-uš +e-hu-uz-zu +IGI-MIN +na-mir-tu₄ +ni-siq +ṭup-šar-ru-ti +ša +ina +LUGAL-MEŠ-ni +a-lik +mah-ri-ia +mam₂-ma +šip-ru# +šu-a-tu +la +e-hu-uz-zu +bul-ṭi +TA +muh-hi +EN +UMBIN +liq-ti +BAR-MEŠ +ta-hi-zu +nak-la +a-zu-gal-lu-ut +{d}nin-urta +u +{d}gu-la +ma-la +ba-aš₂-mu +ina +ṭup-pa-a-ni +aš₂-ṭur +as-niq +IGI.KAR₂-ma +a-na +ta-mar-ti +ši-ta-si#-[ia +qe₂-reb] +E₂#.GAL-ia +u₂-kin +7 +u# +[7] +KA#.K[EŠDA +x +x +x +x +x +x +x +x +x +x +x +x] +[E]N₂ +sag-ki +mu-un#-[dab +x +x +x +x +x +x] +sag +sahar₂-ra +mu-un#-[dab +x +x +x +x +x +x +x] +a#-da-pa₃ +ab[gal +x +x +x +x] +sag-ki +mu-un-dab +[x +x +x +x +x +x +x +x] +[D]U₃.DU₃.BI +{sig₂}HE₂#.M[E.DA +x +x +x +x +x +x +x +x +x +x +x] +[{n]a₄}SAG.DU +E₃ +E[N₂ +x +x +x +x +x +x +x +x +x +x] +[E]N₂ +a.ra +tu.e +a.r[a +x +x +x +x +x +x +x] +šu +du₃.du₃.meš +šu +ne.n[e.a.meš] +eridu#{ki#}.ga# +mu#.un#.[tum₂ +TU₆.EN₂] +[D]U₃.DU₃#.BI# +{giš}PA +GIŠIMMAR +ša₂ +{im}SI#.SA₂# +ša₂ +ina +NU +IM +i-n[am-zu-zu +TI-qe₂] +[x +x +x +x] +KEŠDA# +EN₂ +7!-šu₂ +ŠID-nu +ina +SAG.KI-šu₂ +tara-kas₂-m[a +TI-uṭ?] +[EN₂ +sur.ru.g]a? +su.ma.hu +ma.ak.tu₂ +ti.e.na +ha.at#.r[u] +[x +x +x +x +ki.in.r]e.eš.na +ha.at.ri +uk#.kiš.tum +si.na.an.[na] +[x +x +x +x +x +lu.pi.t]u? +šab.ki.im +an.ta.sur.ra +TU₆#.E[N₂] +[x +x +x +t]u.e +di.pa.ra +t[u.e +x +x +x] +[ha.ta].ra +hat.ra +TU₆#.[EN₂] +[x +x +x +x +x +x] +a#.ra +ba.[še?.ra? +...] +[...] +x +x +x +x +[...] +[x +x +x +x +x +x +r]a +mu-un-dab# +[x +x +x +x +x +x +x +x +x] +[D]U₃.DU₃#.BI +{na₄}ZU₂ +GE₆ +{n[a₄}ŠUBA +x +x +x +x +x] +{na₄#}NIR₂ +{na₄}ŠUBA +SIG₇# +[x +x +x +x +x +x +x +x +x] +[E]N₂ +sag-ki-ni +sag-ki +[x +x +x +x] +i-bi₂-ni +i-bi +[x +x +x +x] +[m]u-ru-ub-bi-ni +mu-ru-u[b-bi +x +x +x +x] +he₂#-bi#-da#-a#-na#-mul#-la# +he₂#-en?#-[da-a-na-mul-la +x +x] +[...] +x +[...] +[... +a-šu]-u₂# +ana +SAG.DU-š[u₂ +...] +[... +DU₁₀.GA-t]u₄ +ina +SU +NA +GAL₂-ši +ana# +DAB# +D[U₁₀.GA-ti +...] +[... +SA]G +NINDU +ana +UGU +ta-za-ru₃ +LAL₂#-[su-ma +...] +[... +{n]a₄}MIN.BABBAR +{na₄}MIN.GE₆ +ta-sak₃ +ina +I₃#.NUN# +HI.HI +UGU-šu₂ +ŠEŠ₂# +s[a-ar-ʾi +...] +[...] +MUD₂-MEŠ-šu₂ +TI-qe₂ +UGU-šu₂ +ŠEŠ₂ +UR.ME.E +ša₂ +E₂.GAR₈ +ta-sak₃# +x +[...] +[...] +ŠID-nu +EN₂ +E₂.NU.RU +ki.in.ip +ki.ni.ip +ki.ni.ip +šu.uh.ki.ni.ip +š[i.ha.ma +...] +[... +a-šu]-u₂# +DAL.DAL +DAB-it# +{šim#}GUR₂#.GUR₂ +GAZI{sar} +u +MUN +DIŠ-niš +SUD₂ +ina +A +SAG.DU-s[u +...] +[... +a-šu]-u₂# +DAB-it# +SUHUŠ# +{giš}šu#-ši# +GAMUN?# +ina +KAŠ.SAG +tara#-muk +ina +MUL₄ +tuš-bat +ina +še-r[i₃ +...] +[...] +GU₇#-ma +TI +{gi#}ŠA₃#.GI +tur-ar₂ +SUD₂ +ina +I₃ +u +KAŠ +ŠEŠ₂ +ša-pil-ti +{giš}KI[ŠI₁₆ +...] +[... +a-šu]-u₂# +a-hi#-iz +e-riš-ti +GAZI{sar} +LAL₂ +NUMUN +{u₂}KU₆ +ina +I₃ +SUD₂ +SAG.DU-su# +E[Š?.MEŠ?-ma? +...] +[...] +SAG#.DU#-su +LAL +sah-le₂-e +ina +KAŠ +NAG +ILLU +{šim}BULUH +ana +KA-šu₂ +GAR-an +A +ZU₂.LU[M.MA +...] +[... +NU] +pa#-tan +NAG +I₃ +u +KAŠ +NAG.NAG-ma +BURU₈ +1/2 +SILA₃ +šur-šum-me +KAŠ +1/2 +SILA₃ +x +[...] +[... +A]N.TA +ana +KI.TA +tu-maš-šad +U₄ +10.KAM₂ +LAL₂ +SUHUŠ +{giš}šu-[ši +...] +[...] +{u₂#}KU₆ +ina +I₃ +SUD₂ +SAG.DU-su +u +ka-la +UZ[U-MEŠ-šu₂ +...] +[... +NUN]DUN-MEŠ-šu₂ +MU₂-MEŠ +SAG.DU-su# +ana# +IGI#-šu₂# +GID₂#.DA#-su +ŠU#.MEŠ#-[šu₂ +...] +[...] +x-ti +[... +t]e-qi₂ +[...] +x +te-qi₂ +[...] +TE +GI +[... +in]a +I₃# +SUD₂ +KIMIN# +[...] +KIMIN +[...] +x +IGI#.MEŠ#-šu₂# +MAR# +[...] +x +ku#? +[... +t]i? +[...] +x +[... +{na₄}AN.ZA]H?.GE₆ +{na₄}mu-ṣa +{na₄#}ZALAG₂# +{na₄}GUG +{n[a₄} +x +(x)] +[... +{na₄}A]N?.NA +{na₄}MUŠ.GIR₂ +NUMUN# +{giš}bi-ni +NUMUN +{giš}MA#.NU# +[... +U₂.M]EŠ +ŠEŠ +1-niš +GAZ +ta-ša-pah +ina +I₃.UDU +ELLAG₂ +GU₄ +GE₆ +[... +IG]I.MEŠ-šu₂ +ka-a-a-man-nam-ma +MAR-ma +ina-eš +[DIŠ +NA +e-nu-ma +bir-ṣ]a +IGI#-ru# +3-šu₂ +ki-a-am +liq-bi +ša₂ +{d}+en-lil₂ +u +{d}nin-lil₂ +[ana-ku +ša₂ +{d}iš-tar +u +{d}na-na-a] +ana-ku +i-qab-bi-ma +TI-uṭ +[DIŠ +... +ana +ZA]G? +GUB-zu +TI-qe₂ +ina +IZI +tu-kab-ba-ab +[... +ina +L]AL₃ +I₃.NUN +SUD₂ +IGI.MIN-šu₂ +te-eq-qi₂-ma +ina-eš +[... +HUL +bir-ṣ]i? +a#-na# +LU₂# +NU# +TE#-e# +A#.GUB₂#.BA# +GIN#-an# +ana# +ŠA₃#-bi# +{giš#}ŠINIG# +{u₂}IN₆.UŠ₂ +[(...) +{u₂}SIKIL +{giš}GIŠIMMAR +{gi]š}MA.NU +{giš}U₃.SUH₅ +{giš}HAŠHUR +{giš}PEŠ₃ +{giš}ŠE.NU₂.A +{šim}{d}MAŠ +NITA₂ +u +MUNUS +[(...) +ina +UL +tuš-bat +ina +A₂.G]U₂.ZI.GA +IGI +{d}UTU +ina +E₂ +ṭa-bi +TU₅-šu₂ +{im}KAL +{im}KAL.GUG +KA.A.AB.BA +[(...) +ina +I₃ +{šim}GIR₂ +HE.HE +Š]E[Š₂?-s]u?-ma?# +KU₃#.BABBAR# +KUG#.GI +i-mar-ma +HUL +bir-ṣi +ana +LU₂ +NU +TE +[DIŠ +...] +x +x +[{giš}ŠINIG +{u₂}IN₆.UŠ₂ +{giš}GIŠIMMA]R? +{giš#}HAŠHUR#? +{giš}PEŠ₃ +{giš}U₃.SUH₅ +ana +ŠA₃ +A +PU₂ +ŠUB-di-ma +[(...) +ina +UL +tuš-bat +ina] +A₂#.GU₂#.Z[I#.GA# +... +{im}KA]L +{im#}KAL#.GUG# +KA.A.AB.BA +ina +I₃ +{šim}BAL +[HE.HE +ŠEŠ₂-su-ma +TU]G₂ +DADA[G +...] +HUL# +bir-ṣi +ana +LU₂ +NU +TE +x +x +[...] +DIŠ +NA +mu-kil₂# +S[AG +HUL-ti₃ +DAB-su +...] +lu +NITA +lu +MUNUS +ina# +UR₃# +tu#-še#-l[i-ma +...] +li-in-na#-di# +ina +GE₆ +GIN₇ +{d}UTU +e#-[re-bi +...] +IGI +ap-ti +ZI₃.DUB.DUB.BU +ŠUB.ŠU[B-di +...] +NU +i-pet-tu-šu +[...] +u₃ +mu-šu +ša-a#-ti +{giš}NA₂ +ṣa-al-lu +x +[...] +DIŠ +NA +mu-kil₂ +SAG +HUL-ti₃ +DAB-su +maš-qi₂-ta +nar-ma-ak-t[a +...] +DIŠ +KIMIN +KUM₂ +ina +SU-šu₂ +la-zi-iz-ma +u +ma-gal +i-li-hi-ib +x +[...] +u +IR +TUK +A +SAR.MUNU₆ +u +KAŠ₃ +a-me-lu-ti +{giš}EREN +{šim}L[I? +...] +ina +NININDU +UŠ₂-er +ir-ta-na-haṣ-ma +10? +SILAₓ(KISAL) +{giš}KIŠI₁₆ +x +x +[...] +en₂ +ur-sag +{d}asal-lu₂-hi +igi-bi +he₂-p[a₃ +...] +ur-sag +{d}ša₃-zu +igi-bi +h[e₂-pa₃ +...] +ur-sag +den-ki +igi#-b[i +he₂-pa₃ +...] +ur-sag +{d}nin-urta +i[gi-bi +he₂-pa₃ +...] +ad-da-mu +dumu-sag +{d}[...-n]a-an-d[e₂ +...] +dumu-mu +nam-tar +[...] +nu-un-b[ar +...] +{lu₂}a#-zu# +di-k[u₅ +...] +nu-tar-re +t[u₆-en₂] +ka-inim-ma# +sag-hul-ha-za-[kam₂] +DU₃.DU₃.BI +7 +x +[... +i]na +DUR +SIG₂ +SA₅ +E₃-ak +U₂ +x +[...] +{u₂}IGI-l[im +...] +x +{u₂}SIKIL +giš-kan-u₅ +NUMUN +{giš}ŠINI[G +...] +x +x +[... +ta-la-pa]p? +ina +SAG.KI-šu₂ +KEŠDA-su# +x +[...] +x +[...] +x +x +[...] +EN₂# +{giš#}APIN?# +ṣu# +x +x +[...] +gir-giš-ša₂ +e +ta?# +x +[...] +ti-i-ru +A.ŠA₃ +e-ri-iš +la +a +ši# +a?# +[...] +A#.ŠA₃ +id-ra-nu +[...] +[x] +i +ša₂ +ti-i-ri +la +ib-šu-u₂ +[...] +[GI]M +id-ra-ni +a-a +u₂-še-ṣa +[...] +[gi]r-giš-ši +a-a +ib-ba-ni +[...] +[...] +gir-[giš-šu +...] +[...] +x +x +[...] +[DIŠ +NA +SAG.DU-su +GIG-ME]Š +mat-qu-ti# +TAB +UD.DA +DIRI +I₃#.[UDU +x +x +x +x +x] +[x +x +x +x] +ina +I₃ +{giš}EREN# +HI.HI +SAG#.D[U-su +x +x +x] +[DIŠ +KIMIN +U₂? +GAR-šu₂? +GIM? +{giš}MA].NU +{u₂}mur-ra-nu +MU-šu₂ +HAD₂.A +SUD₂ +3-šu₂ +ina# +[x +x +x +x +x] +[x +x +x +T]UG₂ +su#-u +ŠEŠ₂ +z[a-ku-ti-šu₂ +x +x] +[DIŠ +KIMIN] +{u₂#}mur-ru +MU.NI +HAD₂.A +SUD₂ +ina +A +HI.HI +[x +x +x +x] +TUG₂# +su#-u +ŠEŠ₂ +za-ku-ti-šu₂ +MU₂-ah +{u₂}IGI-lim +ina +I₃ +{giš}EREN +HI.HI +[x +x +(x)] +DIŠ +NA +SAG.DU-su +GIG-MEŠ +mat-qu-ti +DIRI +zap#-pi# +ŠAH +MUN +ZI₃.KUM +GIR₃.PAD.DU +ša₂ +UDU.NITA₂ +tur-ar₂ +S[AG.DU-su] +[SA]R-ab +I₃ +ŠEŠ₂ +MAR +ina +I₃.GIŠ +ŠEŠ₂ +U₂# +BABBAR +S[UD₂ +MA]R +šu-ru-uš +UKUŠ₂.HAB +HAD₂.A +KUM +MAR +ZI₃ +MUNU₆ +Z[I₃.KUM] +[GIR₃.PAD.D]U +UDU.NITA₂ +DIŠ-niš +tur-ar₂ +SUD₂ +MAR-ru +GUR# +an#-nu#-ha#-ru +{na₄}ga-bi-i +DIŠ#-niš +ŠEG₆ +SUD₂ +ina +I₃ +EŠ.MEŠ +M[AR? +x +x] +[x +x +x +x] +A#.GEŠTIN#.NA# +ŠEŠ₂# +{u₂}KUR.RA +SUD₂ +MAR +IM.GU₂#.EN.NA +ina +A +ZU₂.LUM.MA# +S[IL]A₁₁ +LAL# +{giš}MAŠ.HUŠ +BIL-lu +I₃.NUN +E[Š +LAL] +[x +x +x] +SUD₂# +MAR# +{giš}nu-ur₂-ma!-a +SUD₂ +MAR +ŠURUN +U₈.UDU.HI.A +ina +KAŠ +SILA₁₁-aš +LAL +[x +x] +x +tur#-ar₂ +SUD₂ +Š[EŠ₂] +[DIŠ +NA] +SAG.DU-su +GIG +KU₇.KU₇# +DIRI# +SAG.DU-su +SAR-ab +sah-le₂-e +SUD₂ +10 +GIN₂ +ILLU +{š[im}BULUH] +5# +GIN₂ +{šim}H[AB] +[x +x] +NAGA.SI +{šim}GUR₂.GUR₂ +{šim}LI +ana +ŠA₃-bi +ŠUB-di +ina +A.GEŠTIN.NA +HI.HI +[x +x +x] +LAL₂-ma +TI# +[DIŠ +KI]MIN +MUN +a-ma#-ni# +ta-šar₂-rap# +SAHAR?#.URUDU?# +{na₄}ga-bi-i +DIŠ-niš# +tu-sa-mah +ina +GEŠTIN.BIL.LA₂ +HI.HI +LAL-su-ma +UD.3.KAM +NU +DU₈ +[ina +D]U₈-ka +KAŠ₃# +KUM₂-ta₅ +LUH-si +ZI₃?# +BAPPIR?# +MUD₂ +e-re#-ni +ŠEŠ₂ +UD.5.KAM +U₂.HI.A +ŠEŠ-ma +MAR +LAL-su-ma +TI +DIŠ# +KIMIN +{u₂}ru-uš-ru#-uš-ša +U₂ +BABBAR +BAR +{giš}NU.UR₂.MA +NA₄ +ZU₂.LUM.MA +{u₂}LAG.GA₂ +sah-le₂?#-e?# +BIL?#-ti₃# +GURUN# +{u₂}KUR.RA +{u₂}NU.LUH.HA +{u₂}zi-ba-a +ina +{na₄}ur-ṣi +SUD₂ +ZI₃?# +BAPPIR?# +MUD₂ +e-re-ni +EŠ.MEŠ +U₂#.HI#.A# +ŠEŠ# +M[AR +LAL-su-m]a +TI +DIŠ +KIMIN +KAŠ₃?# +KUM₂-tu +ša +GUD +ina +A.GEŠTIN.NA +KALAG.GA +SILA₁₁-aš +UD.3.KAM# +LAL#-su# +[(x)] +šid# +su# +x +x +x +x +ana# +IGI?# +GIG?# +GAR-an +{u₂}HAB +NA₄ +ZU₂.LUM.MA +tur-ar₂ +S[UD₂ +x +(x)] +x +x +ti# +x +MAR +DIŠ# +K[IMIN +{giš}N]U.UR₂.MA +e-mi-il-ta +{u₂}zi-ba#-a# +[...] +x +x +LAL₃# +x +x +ina# +IZI# +tu#-ša₂#-ha#-an# +[(x)] +x +x +SAG.DU-su +LUH-si +SAR-a[b +...] +x +x +x +ŠEŠ₂?#-ma?# +TI +[DIŠ +N]A +SAG.DU-su +GIG#.MEŠ# +KU₇#.KU₇# +DIRI# +x +[...] +x +x +x +x +x +x +[...] +x +[...] +x +[...] +DIŠ?# +N[A? +...] +SAG?#.DU?#-su?# +x +x +[...] +DIŠ +KI[MIN +NAG]A.SI +GAZ +SIM +x +x +[...] +DIŠ +KIMIN# +KAŠ₃# +AB₂ +KUM₂-te +SAG.DU-su# +x +[...] +DIŠ +NA +MURUB₄ +SAG.DU-šu₂ +GIR₂.GIR₂-su +UGU-šu₂ +x +[x +x +x +x +x +ŠEŠ₂] +DUB +4.KAM +DIŠ +NA +UGU-šu₂ +KUM₂# +u₂#-[kal] +E₂.GAL +{m#}aš-šur-DU₃-A +MAN +ŠU₂ +MAN +KUR +aš-šur{ki} +ša +{d}AG +u +{d}taš-me#-tu₄# +GEŠTU-MIN +DAGAL#-tu₄ +iš#-ru#-ku#-u[š?] +i-hu-uz-zu +IGI-MIN +na-mir-tu +ni-siq +ṭup-šar-ru-ti +ša +ina +LUGAL-MEŠ-ni +a-lik +mah-ri-ia +mam₂-ma +šip-ru +šu-a-tu +la +i-hu-uz-zu +bul-ṭi +TA +muh-hi +EN +UMBIN +liq-ti +BAR.MEŠ +ta-hi-zu +[nak-la] +a#-zu#-gal-lu-tu₄ +{d}nin-urta +u +{d}gu-la +ma-la +<> +ba-aš₂#-mu# +ina# +DUB#.MEŠ#-ni# +[aš₂-ṭur +as-niq +IGI.KAR₂-ma] +[a-n]a +ta#-mar-ti +ši-ta-as-si-ia# +q[e₂-reb +E₂.GAL-ia +u₂-kin] +[E]N₂ +sag-k[i-ni +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +mu-ru-ub-bi-ni# +m[u-ru-ub-bi +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x] +DU₃.DU₃.BI +{u₂}aš-lam +N[ITA₂ +x +x +x +x +x +x +x +x +x +x +x +x +x] +e-ma +KA.KEŠDA +EN₂ +ŠID-nu# +[x +x +x +x +x +x +x +x +x +x +x] +KI +KA.KEŠDA +ina +{sig₂}HE₂.ME.DA +NI[GIN-mi +x +x +x +x +x +x] +EN₂# +id₂#-da-ta +tir +gal-gal-l[a-ta +x +x +x +x +x +x] +[mu]l₄-mul₄ +{giš}geštin +gir₂ +mu-un-ka[r-re +x +x +x +x +x +x +x] +[šu +m]u₂-mu₂#-e#-de₃# +mul#-mul# +[x +x +x +x +x +x +x +x +x +x +x +x] +[x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +{iti}]KIN +[x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ŠEG₆-ša]l +GU₇ +[x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +G]U₇ diff --git a/tf/0.3/atfpost.tf b/tf/0.3/atfpost.tf new file mode 100644 index 0000000..4f2b649 --- /dev/null +++ b/tf/0.3/atfpost.tf @@ -0,0 +1,3694 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=cluster characters that follow a sign or word +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=str +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +4 ] +12 ] +21 ] +37 ] +50 ] +57 > +77 ] +107 ] +132 ] +153 ] +172 ] +182 ] +214 ] +247 ] +250 ] +257 ] +] +262 ] +266 ] +281 ] +286 ] +293 ] +298 ] +306 ] +322 ] +338 ] +343 ] +360 ] +381 ] +401 ] +416 ] +438 ] +444 ] +448 ] +455 ] +476 ] +484 ] +494 ] +506 ] +523 ] +549 ] +575 ] +606 ] +632 ] +646 ] +667 ] +673 ] +680 ] +689 ] +705 ] +712 ] +724 ] +740 ] +750 ] +766 ] +771 ] +781 ] +785 ] +801 ] +805 ] +822 ] +826 ] +835 ] +837 ] +853 ] +855 ] +870 ] +874 ] +895 ] +898 ] +907 ] +913 ] +923 ] +934 ] +940 ] +949 ] +955 ] +958 ] +971 ] +974 ] +983 ] +990 ] +993 ] +1002 ] +1007 ] +1022 ] +1039 ] +1055 ] +1073 ] +1093 ] +1112 ] +1133 ] +1153 ] +1159 ] +1171 ] +1183 ] +1192 ] +1200 ] +1211 ] +1223 ] +1230 ] +1234 ] +1243 ] +1256 ] +1264 ] +1276 ] +1281 ] +1293 ] +1295 ] +1307 ] +1309 ] +1316 ] +] +1327 > +1342 ] +1362 ] +1364 ] +1369 ] +] +1372 ) +] +1375 ] +1385 ] +1388 ] +1398 ] +] +1413 ] +1415 ] +1429 ] +1431 ] +1441 ] +] +1449 ] +] +1464 ] +] +1474 ] +1476 ] +1485 ] +1487 ] +1493 ] +] +1498 ] +1500 ] +] +1506 ] +1511 ] +1517 ] +1524 ] +1528 ] +1535 ] +1539 ] +1543 ] +1547 ] +] +1552 ] +1555 ] +1562 ] +1575 ] +1581 ] +1592 ] +1598 ] +1605 ] +1612 ] +1615 ] +] +1618 ] +1620 ] +1629 ] +1632 ] +1643 ] +] +1654 ] +] +1662 ] +1664 ] +1671 ] +1674 ] +1678 ] +1683 ] +1686 ] +1690 ] +1692 ] +1700 ] +1722 ] +1724 ] +1753 ] +1757 ] +1784 ] +1788 ] +1813 ] +1829 )} +1835 ] +1863 ] +1886 ] +1907 ] +1931 ] +1949 ] +1966 ] +1968 ] +1992 ] +1995 ] +2009 ] +2013 ] +2027 ] +2031 ) +] +2045 ] +2050 ] +2066 ] +2070 ] +2090 ] +2094 ] +2113 ] +2117 ] +2128 ] +2131 ] +2142 ] +2145 ] +2155 ] +2159 ] +2173 ] +] +2188 ] +2191 ] +2212 ] +2215 ] +2233 ] +2235 ] +2249 ] +2253 ] +2268 ] +2270 ] +2283 ] +2286 ] +2293 ] +2296 ] +2302 ] +2307 ] +2312 ] +2314 ] +2317 ] +2332 ] +2338 ] +2361 ] +2387 ] +2414 ] +2435 ] +2462 ] +2483 ] +2485 ] +2489 ) +2500 ] +2502 ] +2509 ] +2515 ] +2523 ] +2536 ] +2545 ] +2555 ] +2565 ] +2580 ] +2588 ] +2597 ] +2620 ] +2628 ] +2643 ] +2645 ] +2651 ] +2660 ] +2662 ] +2668 ] +2687 ] +2692 ] +2700 ] +2705 ] +2733 ] +2759 ] +2769 )} +] +2780 ] +2804 ] +2828 ) +] +2849 ] +2868 ) +] +2891 ] +2908 ) +] +2919 ] +2927 ] +2940 ] +2949 ] +2953 ] +2967 ] +2981 ] +2999 ) +3002 ] +3013 ] +3019 ] +3033 ] +3045 ] +3058 ] +3070 ] +3083 ] +3096 ] +3109 ] +3120 ] +3150 ] +3180 ] +3198 ] +3212 ] +3222 )} +3229 ] +3245 ] +3256 ] +3262 ] +3274 ] +3287 ] +3295 ] +3310 ] +3316 ] +3334 ] +3349 ] +3374 ) +] +3397 ] +3410 ] +3423 ] +] +3432 ] +3443 ] +3445 ] +3457 ] +3468 ] +3471 ] +3482 ] +3493 ] +3499 ] +3516 ] +3518 ] +3541 ] +3545 ] +3566 ] +3569 ] +3582 ] +3600 ] +] +3611 ] +3623 ] +3628 ] +3643 ] +3671 ] +3691 ] +3710 ] +3719 ] +3724 ] +3731 ] +3733 ] +3736 ] +3739 ] +] +3745 ] +3753 ] +3760 ] +3764 ] +3772 ] +3785 ] +3795 ] +3797 ] +3799 ] +3815 ] +3832 ] +3852 ] +3855 ] +3879 ] +3891 ) +] +3896 ] +3906 ] +3924 ] +3933 ] +3952 ] +3961 ] +3981 ] +3991 ] +4003 ] +4021 ] +4024 ] +4029 ] +4037 ] +4045 ] +4055 ] +4072 ] +4088 ] +4096 ] +4109 ] +4116 ] +4124 ] +4137 ] +4154 ] +4173 ] +4188 ] +4196 ] +4209 ] +4216 ] +4218 ] +4225 ] +4228 ] +4236 ] +] +4243 ] +4245 ] +4255 ] +4257 ] +4265 ] +4267 ] +] +4273 ] +4277 ] +4282 ] +4291 ] +4294 ] +4299 ] +4306 ] +4310 ] +4312 ] +4320 ] +4329 ] +4332 ] +4338 ] +4347 ] +4351 ] +4356 ] +4360 ] +4363 ] +4372 ] +4378 ] +4388 ] +4398 ] +4414 ] +4432 ] +4448 ] +4462 ] +4470 ] +4480 ] +4488 ] +4496 ] +4504 ] +4509 ] +4520 ] +4531 ] +4545 ] +4556 ] +] +4566 ] +4568 ] +4576 ] +] +4580 ] +] +4584 ] +] +4589 ] +4594 ] +4599 ] +] +4610 ] +4612 ] +4627 ] +] +4636 ] +4668 ] +4672 ] +4675 ] +4683 ] +4705 ] +4721 ] +4747 ] +4755 ° +4778 > +4902 )} +5080 > +5152 ] +5169 ] +5186 ] +5198 ] +5208 ] +5225 ] +5236 ] +5260 ] +5312 ] +5338 ] +5505 ] +5529 ] +5532 ] +5552 ] +5558 ] +5568 ] +5575 ] +5578 ] +5595 ] +5599 ] +5620 ] +5628 ] +5631 ] +5665 ] +5668 ] +5697 ] +5723 ] +5755 ] +5784 ] +5810 ] +5940 ] +5960 ] +5971 ] +5986 ] +5990 ] +5993 ] +5997 ] +5999 ] +6001 ] +6003 ] +6010 ] +6021 ] +6027 >> +6169 ] +6237 ] +6256 ] +6274 ] +6297 ] +6320 ] +6341 ] +6475 ] +6494 ] +6497 ] +6522 ] +6542 ] +6567 ] +6594 ] +6644 ] +6665 ] +6690 ] +6714 ] +6733 )} +6742 ] +6766 )} +6791 ] +6810 ] +6815 )} +6832 ] +6943 ] +6954 ] +6963 ] +6969 ] +6977 ] +6984 ] +6999 ] +7003 ] +7017 ] +7023 ] +7025 ] +7039 ] +7044 ] +7057 ] +7079 ] +7101 ] +7126 ] +7146 ] +7163 ] +7179 ] +7184 ] +7194 ] +7203 ] +7212 ] +7216 ] +7220 ] +7225 ] +7229 ] +7236 ] +7246 ] +7253 ] +7264 ] +7284 ] +7302 ] +7328 ] +7333 >> +7360 ] +7380 ] +7388 ] +7394 ] +7408 ] +7418 ] +7429 ] +7441 ] +7449 ] +7463 ] +7467 ] +7474 ] +7477 ] +7499 ] +7504 ] +7520 ] +7525 ] +7534 ] +7550 ] +7556 ] +7582 ] +7587 ] +7604 ] +7608 ] +7620 ] +7624 ] +7636 ] +7639 ] +7643 ] +7649 ] +7656 ] +7662 ] +7672 ] +7675 ] +7683 ] +7691 ] +7697 ] +7705 ] +7715 ] +7731 ] +7752 ] +7780 ] +7910 ] +7924 ] +7928 ] +7947 ] +7964 ] +7970 ] +7980 ] +7996 ] +8004 ] +8018 ] +8027 ] +8035 ] +8048 ] +8057 ] +8069 ] +8073 ] +8079 )} +8114 ] +8137 ] +8155 ] +8169 ] +8187 ] +8191 ] +8193 ] +8197 ] +] +8213 ] +8227 ] +8242 ] +8505 ] +8525 ] +8528 ] +8552 ] +8563 ] +8579 ] +8586 ] +8594 ] +8606 ] +8614 ] +8627 ] +8635 ] +8643 ] +8653 ] +8663 ] +8674 ] +8684 ] +8697 ] +8707 ] +8729 ] +8961 ] +8979 ] +9001 ] +9014 ] +9033 ] +9054 ] +9076 ] +9085 ] +9093 > +9102 ] +9121 ] +9144 ] +9162 ] +9174 ] +] +9179 ] +] +9188 ] +9199 ] +9208 ] +9215 ] +9226 ] +9234 ] +9252 ] +9267 ] +9277 ] +9290 ] +9304 ] +9313 ] +9321 ] +9327 ] +9336 ] +9339 ] +9349 ] +9353 ] +9372 ] +9414 > +9542 ] +9566 ] +9568 ] +9587 ] +9607 ] +9609 ] +9633 ] +9635 ] +9652 ] +9656 ] +9665 ] +9671 ] +9674 ] +9823 ] +9846 ] +9861 ] +9886 ] +9906 ] +9921 ] +9928 ] +9939 ] +9945 ] +9954 ] +9962 ] +9969 ] +9978 ] +9985 ] +9996 ] +10002 ] +10013 ] +10022 ] +10032 ] +10044 ] +10046 ] +10056 ] +10073 ] +10082 ] +10097 ] +10108 ] +] +10113 ] +] +10116 ] +10118 ] +10130 ] +10147 ] +10166 ] +10190 ] +10205 ] +10210 ] +10217 ] +10220 ] +10222 ] +10225 ] +10227 ] +] +10231 ] +10234 ] +10240 ] +10242 ] +10257 ] +10260 ] +10270 ] +10279 ] +10291 ] +10295 ] +10301 ] +10303 ] +10320 ] +10341 ] +10363 ] +10380 ] +10401 ] +10422 ] +10435 ] +10449 ] +10505 ] +10530 ] +10552 ] +10572 ] +10587 ] +10604 ] +10621 ] +10635 ] +10643 ] +10665 ] +10688 ] +10748 ] +10778 ] +10805 ] +10833 ] +10861 ] +10885 ] +10900 ] +10926 ] +10984 ] +11005 ] +11021 ] +11036 ] +11044 ] +11051 ] +11058 ] +11067 ] +11074 ] +11081 ] +11085 ] +11093 ] +11101 ] +11121 ] +11128 ] +11145 ] +11158 ] +11162 ] +11166 ] +11169 ] +11176 ] +11187 ] +11192 ] +11208 ] +11214 ] +11227 ] +11234 ] +11243 ] +11246 ] +11251 ] +11266 ] +11275 ] +11288 ] +11297 ] +11306 ] +11316 ] +11325 ] +11332 ] +11338 ] +11348 ] +11354 ] +11361 ] +11366 ] +11378 ] +11385 ] +11396 ] +11402 ] +11416 ] +11420 ] +11433 ] +11438 ] +11441 ] +] +11446 ] +11448 ] +] +11452 ] +11456 ] +11458 ] +11460 ] +11466 ] +11473 ] +11482 ] +11488 ] +11499 ] +11508 ] +11522 ] +11533 ] +11538 ] +11546 ] +11551 ] +11559 ] +11570 ] +11575 ] +11583 ] +11587 ] +11595 ] +11600 ] +11608 ] +11612 ] +11622 ] +11626 ] +11636 ] +11640 ] +11651 ] +11662 ] +11676 ] +11685 ] +11708 ] +11726 ] +11752 ] +11775 ] +11795 ] +11818 )} +11824 ] +11844 ] +11849 ] +11852 )} +11873 ] +11880 ] +11900 ] +11936 ] +11953 ] +11968 ] +11988 ] +12003 ] +12020 ] +12025 ] +12037 ] +12053 ] +12068 ] +12081 ] +12100 ] +12127 ] +12140 ] +12149 ] +12164 ] +12183 ] +12212 ] +12277 ] +12302 ] +12336 ] +12365 ] +12391 ] +12421 ] +12443 ] +12449 ] +12466 ] +12483 ] +12505 ] +12514 ] +12544 ] +12569 ] +12587 ] +12609 ] +12630 ] +12652 ] +12681 ] +12704 ] +12721 ] +12726 ] +12769 ] +12798 ] +12818 ] +12825 ] +12843 ] +12848 ] +12871 ] +12893 ] +12900 ] +12915 ] +12948 ] +12962 ] +12989 ] +13012 ] +13079 ] +13106 ] +13133 ] +13243 ] +13270 ] +13297 ] +13323 ] +13348 ] +13371 ] +13398 ] +13423 ] +13518 ] +13555 ] +13575 ] +13600 ] +13619 ] +13642 ] +13667 ] +13688 ] +13704 ] +13724 ] +13744 ] +13764 ] +13781 ] +13788 ] +13802 ] +13810 ] +13823 ] +13839 ] +13853 ] +13872 ] +13894 ] +13901 ] +13925 ] +13928 ] +13935 ] +13938 ] +13951 ] +13955 ] +13959 ] +13976 ] +13991 >> +13996 ] +14023 ] +14036 ] +14042 ] +14052 ] +14061 ] +14078 ] +14085 ] +14091 ] +14100 ] +14107 ] +14117 ] +14125 ] +14134 ] +14148 ] +14161 ] +14168 ] +14176 ] +14181 ] +14188 ] +14192 ] +14199 ] +14211 ] +14222 ] +14235 ] +14244 ] +14253 ] +14255 ] +14257 ] +] +] +] +14263 ] +14269 ] +14273 ] +14281 ] +14284 ] +14290 ] +14294 ] +14305 ] +14370 ] +14394 ] +14446 ] +14454 ] +14456 ] +14461 ] +14464 ] +14473 ] +14476 ] +14482 ] +14484 ] +14499 ] +14516 ] +14533 ] +14550 ] +14571 ] +14580 ] +14589 > +14596 ] +14615 ] +] +14629 ] +14632 ] +14641 ] +14645 ] +14668 ] +14672 ] +14687 ] +14699 ] +14703 ] +14728 ] +] +14752 ] +14755 ] +14766 ] +14789 ] +14809 ] +] +14835 ] +] +14858 ] +] +14878 ] +14883 ] +] +14902 ] +14908 ] +14910 ] +14928 ] +14938 ] +14951 ] +14958 ] +14976 ] +14993 ] +15006 ] +15013 ] +15037 ] +15054 ] +15083 ] +15086 ] +15088 ] +15090 ] +15094 ] +15096 ] +15099 ] +15105 ] +15113 ] +15120 ] +15131 ] +15140 ] +15149 ] +15153 ] +15156 ] +15160 ] +15165 ] +] +15170 ] +15188 ] +15209 ] +15233 ] +15268 ] +15291 ] +15298 ] +15314 ] +15320 ] +15335 ] +15348 ] +15362 ] +15370 ] +15380 ] +15402 ] +15420 ] +15439 ] +15455 ] +15472 ] +15481 ] +15491 ] +15498 ] +15509 ] +15517 ] +15526 ] +15544 ] +15557 ] +15564 ] +15579 ] +15592 ] +15662 ] +15681 ] +15688 ] +15700 ] +15715 ] +15727 ] +15735 ] +15746 ] +15759 ] +15764 ] +15784 ] +15800 ] +15818 ] +15834 ] +15852 ] +15869 ] +15886 ] +15897 ] +15913 ] +15934 ] +15944 ] +15967 ] +15989 ] +16016 ] +16032 ] +16044 ] +16065 ] +16082 ] +16102 ] +16123 ] +16283 ] +16301 ] +16534 ] +16544 ] +16548 ] +16558 ] +16574 ] +16589 ] +16615 ] +16638 ] +16657 ] +16676 ] +16694 ] +16853 ] +16867 ] +16874 ] +16888 ] +16898 ] +16916 ] +16936 ] +16947 ] +16957 ] +16959 ] +16971 ] +16979 ] +17002 ] +17025 ] +17055 ] +17346 ] +17372 ] +17378 ] +17380 ] +17382 ] +17388 ] +17391 ] +17402 ] +17410 ] +17425 ] +17430 ] +17442 ] +17448 ] +17472 ] +17495 ] +17514 ] +17534 ] +17552 ] +17570 ] +17588 ] +17605 ] +17614 ] +17619 ] +17629 ] +17635 ] +17645 ] +17653 ] +17666 ] +17674 ] +17686 ] +17695 ] +17709 ] +17716 ] +17731 ] +17737 ] +17754 ] +17759 ] +17782 ] +17820 ] +17850 ] +17874 ] +17898 ] +17916 ] +17934 ] +17951 ] +17953 ] +17972 ] +17988 ] +18007 ] +18033 ] +18127 ] +18149 ] +18176 ] +18201 ] +18212 ] +18219 ] +18226 ] +18235 ] +18240 ] +18246 ] +18249 ] +18253 ] +18256 ] +18263 ] +18274 ] +18285 ] +18291 ] +18303 ] +18314 ] +18323 ] +] +18330 ] +] +18336 ] +18338 ] +18347 ] +18363 ] +18371 ] +18386 ] +18394 ] +18410 ] +18416 ] +18435 ] +18457 ] +18476 ] +18498 ] +18520 ] +18538 ] +18563 ] +18573 ] +18582 ] +18598 ] +18616 ] +18643 ] +18662 ] +18676 ] +18685 ] +18712 ] +18731 ] +18743 ] +18749 ] +18756 ] +18765 ] +18773 ] +18783 ] +18794 ] +18805 ] +18814 ] +18824 ] +18840 ] +18850 ] +18858 ] +18871 ] +18883 ] +18892 ] +18913 ] +18931 ] +18934 ] +18941 ] +18967 ] +18986 ] +19015 ] +19345 ] +19366 ] +19387 ] +19434 ] +19445 ] +19453 ] +19467 ] +19513 ] +19533 ) +] +19552 ] +19563 ] +19579 ] +19586 ] +19596 ] +19605 ] +19624 ] +19634 ] +19648 ] +19658 ] +19680 ] +19694 ] +19699 ] +19719 ] +19724 ] +19736 ] +19745 ] +19748 ] +19761 ] +19767 ] +19771 ] +19791 ] +19798 ] +19808 ] +19811 ] +19814 ] +] +] +19826 ] +19837 ] +19847 ] +19861 ] +19870 ] +19880 ] +19888 ] +19896 ] +19901 ] +19909 ] +19932 ] +19954 ] +19971 ] +19998 ] +20017 ] +20035 ] +20056 ] +20061 ] +20067 ] +20069 ] +20087 ] +20112 ] +20133 ] +20136 ] +20139 ° +20141 ] +20164 ] +20170 ] +20182 ] +20190 ] +20199 ] +20226 ] +20253 ] +20300 ] +20316 ] +20330 ] +20355 ] +20412 ] +20423 ] +20437 ] +20447 ] +20457 ] +20460 ] +20467 ] +20483 ) +20486 ] +20506 ] +20521 ] +20529 ] +20556 ] +20566 ] +20572 ] +20577 ] +20583 ] +20591 ] +20601 ] +20615 ] +20640 ] +20658 ] +20672 ) +] +20678 ] +20702 ] +20710 ] +20729 ] +20734 ] +20756 ] +20768 ] +20785 ] +20791 ] +20806 ] +20818 ] +20831 ] +20841 ] +20846 ] +20851 ] +20862 ] +20867 ] +20873 ] +20887 ] +20894 ] +20905 ] +20919 ) +20921 ] +20924 ) +] +20933 ] +20951 ] +20957 ] +20963 ] +20980 ] +20987 ] +20994 ] +21003 ] +21006 ] +21010 ] +21016 ] +21020 ] +21028 ] +21030 ] +21033 ] +21036 ] +21039 ] +21041 ] +21043 ] +21045 ] +21050 ] +21052 ] +21057 ] +21062 ] +21064 ] +21075 ] +21080 ] +21089 ] +21111 ] +21137 ] +21144 ] +21157 ] +21171 ] +21195 ] +21221 ] +21242 ] +21245 ] +21258 ] +21275 ] +21294 ] +21313 ] +21330 ] +21346 ] +21357 ] +21371 ] +21387 ] +21412 ] +21419 ] +21422 ] +21424 ] +21430 ] +21439 ] +21459 ] +21484 ] +21494 ] +21508 ] +21525 ] +21538 ] +21550 ] +21558 ] +21566 ] +21580 ] +21586 ] +21594 ] +21600 ] +21603 ] +21605 ] +21611 ] +] +21630 ] +21635 ] +21654 ] +21659 ] +21667 ] +21684 ] +21711 ] +21741 ] +21768 ] +21795 ] +21799 ] +21822 ] +] +21837 ] +21841 ] +21858 ] +21862 ] +21876 ] +21887 ] +21916 ] +21932 ] +21957 ] +21977 ] +21979 ] +21997 ] +21999 ] +22008 ] +22012 ] +22031 ] +22034 ] +22055 ] +22058 ] +22074 ] +22077 ] +22091 ] +22093 ] +22108 ] +] +22127 ] +22154 ] +22168 ] +22190 ] +22208 ] +22227 ] +22237 )} +22239 ] +22247 ] +22257 ] +22263 ] +22266 ] +22273 ] +22277 ] +22285 ] +22291 ] +22299 ] +22305 ] +22316 ] +22321 ] +22327 ] +22335 ] +22348 ] +22361 ] +22374 ] +22383 ] +22400 ] +22413 ] +22416 ] +22429 ] +22444 ] +22453 ] +22464 ] +22479 ] +22488 ] +22495 ] +22503 ] +22511 ] +22519 ] +22528 ] +22537 ] +22548 ] +22556 ] +22562 ] +22580 ] +22591 ] +22601 ] +22610 ] +22620 ] +22622 ] +22629 ] +22631 ] +22637 ] +22642 ] +22646 ] +22652 ] +22654 ] +22656 ] +] +22659 ] +] +] +] +] +] +] +] +] +22670 ] +] +22676 ] +] +22682 ] +22690 ] +22696 ] +22699 ] +22705 ] +22714 ] +22723 ] +22728 ] +22732 ] +22734 ] +22737 ] +22739 ] +22742 ] +22744 ] +22750 ] +22752 ] +] +22759 ] +22761 ] +22763 ] +22765 ] +22767 ] +] +22771 ] +22773 ] +22777 ] +22779 ] +22783 ] +22785 ] +] +22789 ] +22794 ] +22799 ] +22805 ] +22809 ] +22813 ] +22816 ] +22819 ] +22822 ] +22827 ] +22830 ] +22835 ] +22840 ] +22844 ] +22849 ] +22855 ] +22863 ] +22867 ] +22873 ] +22877 ] +22885 ] +22894 ] +22904 ] +22909 ] +22918 ] +22923 ] +22941 ] +22954 ] +22965 ] +22979 ] +22986 ] +22992 ] +22999 ] +23004 ] +23033 ] +23039 ] +23060 ] +23081 ] +23105 ] +23130 ] +23147 ] +23153 ] +23158 ] +23161 ] +23164 ] +23166 ] +23184 ] +23200 ] +23214 ] +23239 ] +23257 ] +23276 ] +23291 ] +23318 ] +23343 ] +23360 ] +23375 ] +23390 ] +23393 ] +23408 ] +23413 ] +23424 ] +23426 ] +23433 )} +23445 ] +23459 ] +23466 ] +23480 ] +23491 ] +23498 ] +] +23503 ] +23505 ] +23508 ] +23511 ] +23515 ] +23519 ] +23525 ] +23531 ] +23537 ] +23545 )} +23550 ] +23556 ] +23562 ] +] +23566 ] +23569 ] +23573 ] +23576 ] +23579 ] +23582 ] +23584 ] +23588 ] +23591 ] +23594 ] +23601 ] +23604 ] +23609 ] +23618 ] +23631 ] +23649 ] +23654 ] +23670 ] +23679 ] +23690 ] +23698 ] +23706 ] +23717 ] +23725 ] +23733 ] +23737 ] +23752 ] +23762 ] +23771 ] +23777 ] +23785 ] +23802 ] +23817 ] +23822 ] +23828 ] +23846 ] +23870 ] +23892 ] +23913 ] +23928 ] +23953 ] +23972 ] +23978 ] +23987 ] +23996 ] +24011 ] +24025 ] +24043 ] +24063 ] +24080 ] +24093 ] +24168 ] +24276 ] +24285 ] +24288 ] +24302 ] +24316 ] +24327 ] +24343 ] +24356 ] +24364 ] +24373 ] +24379 ] +24381 ] +24387 ] +24390 ] +24392 ] +24399 ] +24414 ] +24431 ] +24450 ] +24473 ] +24485 ] +24487 ] +24501 ] +24516 ] +24525 ] +24527 ] +24541 ] +24551 ] +24560 ] +24573 ] +24587 ] +24607 ] +24627 ] +24648 ] +24664 ] +24677 ] +24690 ] +24707 ] +24725 ] +24742 ] +24758 ] +24761 ] +24773 ] +24775 ] +24791 ] +24793 ] +24805 ] +24808 ] +24819 ] +24823 ] +24838 ] +24842 ] +24859 ] +24861 ] +24867 ] +] +24873 ] +] +24878 ] +24880 ] +24882 ] +] +24885 ] +24887 ] +24889 ] +24891 ] +24893 ] +] +24897 ] +24899 ] +24901 ] +24903 ] +24908 ] +24914 ] +24921 ] +24935 ] +24944 ] +24953 ] +24955 ] +24970 ] +24988 ] +25005 ] +25019 ] +25036 ] +25054 ] +25076 ] +25092 ] +25114 ] +25137 ] +25157 ] +25175 ] +25189 ] +25230 ] +25236 ] +25244 ] +25254 ] +25264 ] +25277 ] +25279 ] +25320 ] +25345 ] +25360 )} +25363 ] +25373 ] +25389 ] +25402 ] +25411 ] +25427 ] +25439 ] +25443 ] +25448 ] +25455 ] +25465 ] +25469 ] +25477 ] +25487 )} +] +25493 ] +25498 ] +25503 ] +25520 ] +25539 ] +25779 ] +25795 ] +25819 ] +25830 ] +25845 ] +25868 ] +25881 ] +25898 ] +25914 ] +25930 ] +25939 ] +25956 ] +25960 ] +25964 ] +25970 ] +25973 ] +] +25979 ] +25986 ] +25995 ] +26000 ] +26014 ] +26031 ] +26047 ] +26230 ] +26239 ] +26248 ] +26253 ] +26257 ] +] +26262 ) +] +26268 ] +26277 ] +26291 ] +26309 ] +26327 ] +26347 ] +26367 ] +26383 ] +26396 ] +26425 ] +26451 ] +26458 ] +26470 ] +26482 ] +26488 ] +26498 ] +26500 ] +26508 ] +26511 ] +26513 ] +] +] +] +] +26538 ] +26542 ] +26553 ] +26563 ] +26581 ) +] +26591 ] +26597 ] +26601 ] +26610 ] +] +26618 ) +] +26627 ] +26643 ] +26647 ] +26668 ] +26672 ] +26688 ] +26691 ] +26695 ] +26704 ] +26712 ] +26715 ] +26717 ] +26727 ] +26735 ] +26770 ] +26774 ] +26782 ] +26788 ] +26794 ] +26808 ] +26815 ] +26828 ] +26831 ] +26840 ] +26858 ] +26875 ] +26889 ] +26901 ] +26923 ] +26944 ] +26961 ] +26979 ] +27003 ] +27017 ] +27034 ] +27052 ] +27071 ] +27101 ] +27118 ] +27134 ] +27155 ] +27175 ] +27199 ] +27223 ] +27238 ] +27264 ] +27266 ] +27296 ] +27322 ] +27344 ] +27370 ] +27393 ] +27416 ] +27437 ] +27456 ] +27465 ] +27468 ] +27476 ] +27485 ] +27495 ] +27504 ] +27512 ] +27525 ] +27532 ] +27547 ] +27550 ] +27574 ] +27595 ] +27624 ] +27651 ] +27673 ] +27683 ] +27713 ] +27733 ] +27760 ] +27779 ] +27811 ] +27843 ] +27866 ] +27887 ] +27910 ] +27919 ] +] +27931 ] +27959 ] +27980 ] +28002 ] +28018 ] +28040 ] +28061 ] +28068 ] +28083 ] +28095 ] +28102 ] +28116 ] +28128 ] +28138 ] +28149 ] +28162 ] +28170 ] +28181 ] +28190 ] +28200 ] +28228 ] +28245 ] +28303 ] +28313 ] +28324 ] +28343 ] +28359 ] +28378 ] +28390 ] +] +28394 ] +28400 ] +28403 ] +28416 ] +28420 ] +28424 ] +] +28430 ] +28436 ] +28438 ] +28446 ] +28461 ] +28469 ] +28485 ] +28496 ] +28501 ] +28504 ] +28509 ] +28523 ] +28527 ] +28544 ] +28548 ] +28552 ] +28565 ] +28567 ] +28580 ] +28584 ] +28595 ] +28609 ] +28611 ] +28618 ] +28625 ] +28628 ] +28639 ] +28648 ] +28651 ] +28663 ] +28665 ] +28674 ] +28689 ] +28691 ] +28715 ] +28718 ] +28741 ] +28756 ] +28823 ] +28837 ] +28851 ] +28862 ] +] +28894 ] +28908 ] +28984 ] +29000 ] +29015 ] +29034 ] +29041 ] +29068 ] +29070 ] +29085 ] +] +29100 ] +29121 ] +29134 ] +29160 ] +29189 ] +29200 ] +29216 ] +29218 ] +29226 ] +29245 ] +29257 ] +29279 ] +29304 ] +29321 ] +29328 ] +29343 ] +29353 ] +29363 ] +29367 ] +29376 ] +29382 ] +29386 ] +29392 ] +29398 ] +29400 ] +29405 ] +29411 ] +] +29419 ] +29427 ] +29429 ] +29438 ] +29455 ] +29457 ] +29481 ] +29484 ] +29503 ] +29514 ] +29531 ] +29539 ] +29548 ] +29551 ] +29561 ] +29580 ] +29606 ] +29626 ] +29645 ] +29661 ] +29677 ] +29679 ] +29684 ] +29695 ] +29702 ] +29713 ] +29725 ] +29738 ] +29746 ] +29756 ] +29768 ] +29781 ] +29787 ] +29799 ] +29808 ] +29813 ] +29822 ] +29834 ] +29838 ] +29843 ] +29850 ] +29863 ] +29883 ] +29891 ] +29899 ] +29902 ] +29912 ] +29918 ] +29933 ] +29940 ] +29952 ] +29962 ] +29979 ] +29989 ] +30003 ] +30012 ] +30017 ] +30023 ] +30035 ] +30052 ] +30069 ] +30080 ] +30095 ] +30106 ] +30121 ] +30131 ] +30144 ] +30158 ] +30174 ] +30181 ] +30195 ] +30207 ] +30228 ] +30240 ] +30247 ] +30257 ] +30264 ] +30283 ] +30304 ] +30306 ] +30326 ] +30329 ] +30333 ° +30342 ] +30350 ] +30366 ] +30377 ] +30393 ] +30408 ] +30422 ] +30434 ] +30449 ] +30452 ] +30457 ] +30473 ] +30487 ] +30491 ] +30496 ] +30501 ] +30513 ] +30520 ] +30540 ] +30554 ] +30564 ] +30691 ] +30717 ] +30734 ] +30758 ] +30781 ] +30792 ] +30800 ] +30815 ] +30824 ] +30842 ] +30845 ] +30849 ] +30854 ] +30874 ] +30876 ] +30895 ] +30898 ] +30908 ] +30913 ] +30916 ] +30933 ] +30947 ] +30962 ] +30973 ] +30982 ] +30997 ] +31010 ] +31013 ] +31018 ] +31021 ] +31025 ] +31038 ] +31046 ] +31058 ] +31067 ] +31077 ] +31086 ] +31096 ] +31102 ] +31114 ] +31121 ] +31135 ] +31138 ] +31149 ] +31158 ] +31167 ] +31181 ] +31188 ] +31192 ] +31195 ] +31214 ] +31227 ] +31240 ] +31244 ] +31255 ] +31268 ] +31271 ] +31357 ° +31567 ] +31583 ] +31599 ] +31616 ] +31629 ] +31648 ] +31657 ] +31681 ] +31695 ] +31717 ] +31719 ] +31725 ] +31728 ] +31730 ] +31747 ] +31751 ] +31763 ] +31766 ] +31787 ] +31791 ] +31808 ] +31810 ] +31816 ] +31818 ] +31822 ] +31828 ] +31842 ] +31852 ] +31862 ] +31868 ] +31890 ] +31910 ] +31932 ] +31955 ] +31979 ] +32025 ] +32061 ] +32138 ] +32146 ] +32148 ] +32156 ] +32161 ] +32177 ] +32194 ] +32213 ] +32242 ] +32254 ] +32274 ] +32290 ] +32305 ] +32326 ] +32344 ] +32362 ] +32384 ] +32403 ] +32416 ] +32435 ] +32455 ] +32471 ] +32486 ] +32502 ] +32522 ] +] +32539 ] +] +32556 ] +] +32692 ] +32707 ] +32714 ] +32732 ] +32751 ] +32771 ] +32785 ] +32801 ] +32816 ] +32831 ] +32844 ] +33166 ] +33188 ] +33216 ] +33219 ] +33233 ] +] +] +33248 ] +] +33262 ] +33264 ] +33279 ] +33285 ] +33299 ] +33305 ] +33318 ] +33325 ] +33334 ] +33353 ] +33370 ] +33390 ] +33392 ] +33410 ] +33431 ] +33450 ] +33472 ] +33495 ] +33507 ] +33513 ] +33522 ] +33532 ] +33545 ] +33553 ] +33561 ] +33566 ] +33573 ] +33582 ] +33592 ] +33602 ] +33618 ] +33684 ] +33687 ] +33703 ] +33714 ] +33723 ] +33745 ] +33757 ] +33774 ] +33795 ] +33924 ] +33943 ] +33964 ] +33983 ] +34040 ] +34050 ] +34054 ] +34063 ] +34072 ] +34083 ] +34094 ] +34109 ] +34124 ] +34143 ] +34159 ] +34165 ] +34168 ] +34177 ] +34187 ] +34193 ] +34195 ] +34208 ] +34237 ] +34326 ] +34346 ] +34386 ] +34409 ] +34424 ] +34433 ] +34447 ] +34460 ] +34474 ] +34484 ] +34550 ] +34570 ] +34586 ] +34611 ] +34644 ] +34665 ] +34682 ] +34690 ] +34705 ] +34720 ] +34740 ] +34762 ] +34784 ] +34799 ] +34819 ] +34838 ] +34862 ] +34874 ] +34897 ] +34913 ] +34930 ] +34942 ] +34958 ] +34976 ] +34992 ] +35009 ] +35020 ) +35027 ] +35044 ] +35060 ] +35080 ] +35096 ] +35123 ] +35142 ] +35159 ] +35175 ] +35195 ] +35216 ] +35231 ] +35244 ) +] +35248 ] +] +35252 ] +35254 ] +35257 ] +35261 ] +35276 ] +35349 ] +35365 ] +35384 ] +35400 ] +35638 ] +35657 ] +35664 ] +35684 ] +35698 ] +35720 ] +35734 ] +35758 ] +35787 ] +35795 ] +35818 ] +35846 ] +35874 ] +35901 ] +35924 ] +35949 ] +35970 ] +35989 ] +36015 ] +36035 ] +36043 ] +36049 ] +36057 ] +36061 ] +36086 ] +36110 ] +36128 ] +36150 ] +36171 ] +36175 ] +36178 ] +36181 ] +36183 ] +36189 ] +36194 ] +36203 ] +36211 ] +36224 )} +36228 ] +36237 ] +36245 ] +36252 ] +36261 ] +36270 ] +] +36276 ] +] +36281 ] +] +36289 ] +36291 ] +36298 ] +36300 ] +36302 ] +36306 ] +36322 ] +36339 ] +36354 ] +36370 ] +36393 ] +36411 ] +36434 ] +36456 ] +36474 ] +36486 ] +36501 ] +36518 ] +36537 ] +36547 ] +36576 ] +36591 ] +36613 ] +36630 ] +36647 ] +36659 ] +36675 ] +37339 ] +37366 ] +37382 ] +37391 ] +37411 ] +37431 ] +37447 ] +37466 ] +37486 ] +37515 ] +37542 ] +37568 ] +37591 ] +37593 ] +37600 ] +37604 ] +37611 ] +37624 ] +37635 ] +37648 ] +37658 ] +37670 ] +37683 ] +37759 ] +37774 ] +37803 ] +37825 ] +37840 ] +37853 ] +37864 ] +37875 ] +37887 ] +37898 ] +37909 ] +37919 ] +37930 ] +37943 ] +37952 ] +37965 ] +37974 ] +37986 ] +37989 ] +37991 ] +38004 ] +38010 ] +38014 ] +38023 ] +38026 ] +38037 ] +38044 ] +38057 ] +38067 ] +38079 ] +38087 ] +38091 ] +38102 ] +38114 ] +38118 ] +38133 ] +38141 ] +38164 ] +38170 ] +38183 ] +38191 ] +38212 ] +38224 ] +38239 ] +38248 ] +38265 ] +38276 ] +38278 ] +38306 ] +38322 ] +38336 ] +38342 ] +)} +38351 ] +38353 ] +38362 )} +] +38370 ] +38382 ] +38396 ] +38410 ] +38425 ] +38433 ] +38438 ] +38455 ] +38464 ] +38483 ] +38503 ] +38523 ] +38544 ] +38570 ] +38722 ] +38733 ] +38744 ] +38756 ] +] +38767 ] +38770 ] +] +38774 ] +38778 ] +] +38782 ] +38784 ] +38786 ] +38793 ] +38799 ] +38806 ] +38812 ] +38821 ] +38827 ] +38835 ] +38846 ] +38855 ] +38866 ] +38880 ] +39048 ] +39064 ] +39075 ] +39086 ] +39088 ] +39096 ] +39101 ] +39106 ] +39112 ] +39121 ] +39127 ] +39132 ] +39140 ] +39152 ] +39168 ] +39183 ] +39199 ] +39211 ] +39280 ] +39307 ] +39772 ] +39885 ] +39909 ] +39923 ] +39940 ] +39954 ] +39964 ] +39972 ] +39974 ] +39979 ] +39985 ] +39989 ] +39995 ] +40002 ] +40010 ] +40015 ] +40019 ] +40023 ] +40032 ] +40049 ] +40081 ] +40106 ] +40137 ] +40165 ] +40190 ] +40211 ] +40232 ] +40245 ] +40251 ] +40256 ] +40262 ] +40272 ] +40286 ] +40292 ] +40317 ] +40339 ] +40566 ] +40587 ] +40727 ] +40752 ] +40776 ] +40805 ] +40836 ] +40847 ] +40853 ] +40879 ] +40906 ] +40933 ] +40959 ] +40987 ] +41031 ] +41054 ] +41072 ] +41098 ] +41130 ] +41145 ] +41167 ] +41183 ] +41200 ] +41212 ] +41234 ] +41238 ] +41241 ] +41247 ] +41257 ] +41262 ] +41274 ] +41282 ] +41292 ] +41299 ] +41312 ] +41320 ] +41331 ] +41335 ] +41360 ] +41421 ] +41451 ] +41477 ] +41498 ] +41518 ] +41522 ] +41581 ] +41601 ] +41607 ] +41630 ] +41632 ] +41638 ] +41660 ] +41667 ] +41692 ] +41700 ] +41711 ] +] +41718 ] +41725 ] +41733 ] +41737 ] +41745 ] +41748 ] +41757 ] +41760 ] +41768 ] +41770 ] +41776 ] +41779 ] +41784 ] +41786 ] +41795 ] +41798 ] +41803 ] +41805 ] +41811 ] +41815 ] +41818 ] +41822 ] +41827 ] +41830 ] +41835 ] +41842 ] +41847 ] +41855 ] +] +41858 ] +41867 ] +41872 ] +41900 ] +41905 ] +41933 ] +41941 ] +41955 ] +41967 ] +41974 ] +41989 ] +42005 ] +42020 ] +42037 ] +42047 ] +42055 ] +42069 ] +42086 ] +42097 ] +42105 ] +42111 ] +42120 ] +42123 ] +42127 ] +42131 > +42145 ] +42152 ] +42156 ] +42169 ] +42175 ] +42179 ] +42200 ] +42205 ] +42209 ] +42222 ] +42230 ] +42248 ] +42253 ] +42261 ] +42278 ] +42280 ] +42285 ] +42312 ] +42320 ] +42345 ] +42349 ] +42372 ] +42376 ] +42397 ] +42401 ] +42425 ] +42427 ] +42437 ] +] +42444 ] +42446 ] +42470 ] +42472 ] +42489 ] +] +42504 ] +] +42511 ] +] +42523 ] +42534 ] +42544 ] +42550 ] +42555 ] +42566 ] +42568 ] +42572 ] +42584 ] +42588 ] +42602 ] +42608 ] +42627 ] +42632 ] +42654 ] +42661 ] +42667 ] +42675 ] +] +42696 ) +] +42707 ] +42726 ] +42734 ] +42748 ] +42756 ] +42771 ] +42783 ] +42785 ] +42791 ] +] +42800 ] +42802 ] +42814 ] +42819 ] +42827 ] +] +42840 ] +] +42849 ] +42851 ] +42859 ] +42874 ] +42885 ] +42899 ] +42909 ] +42925 ] +] +42936 ] +] +42953 )} +42957 ] +] +42976 ] +42978 ] +42995 ] +] +43012 ] +43015 ] +43029 ] +] +43033 ] +43038 ) +] +43041 ] +43053 ] +43055 ] +43074 ] +43079 ] +43084 ] +43103 ] +43116 ] +43120 ] +43124 ] +43143 ] +43146 ] +43179 ] +43182 ] +43190 )} +43211 ] +43217 ] +43242 ] +43263 ] +43293 ] +43317 ] +43325 ] +43328 ] +43343 ] +43349 ] +43365 ] +43368 ] +43382 ] +43411 ] +43432 ] +43449 ] +43461 ] +] +43469 ] +] +43473 ] +] +43477 ] +43482 ] +43494 ] +] +43509 ] +43526 ] +43543 ] +43570 ] +43602 ] +43629 ] +43645 ] +43669 ] +43689 ] +43709 ] +43731 ] +43762 ] +43789 ] +43819 ] +43838 ] +] +43843 ] +43849 ] +43856 ] +43860 ] +43866 ] +43868 ] +43873 ] +43883 ] +43894 ] +43896 ] +43902 ] +43907 ] +43919 ] +43928 ] +43931 ] +43942 ] +43949 ] +43959 ] +43965 ] +43975 ] +43981 ] +43987 ] +44001 ] +44007 ] +44024 ] +44028 ] +44030 ] +44037 ] +44056 ] +44059 ] +44077 ] +44081 ] +44097 ] +] +44109 ] +] +44116 ] +] +] +44122 ] +44133 ] +44147 ] +44160 ] +44172 ] +44183 ] +44192 ] +44200 ] +] +44210 ] +44212 ] +44225 ] +44228 ] +44238 ] +44240 ] +44251 ] +44253 ] +44265 ] +] +44280 ] +] +44297 ] +44301 ] +44305 ] +44311 ] +44323 ] +44331 ] +44344 ] +44346 ] +44359 ] +44372 ] +44385 ] +44411 ] +44433 ] +44457 ] +44477 ] +44492 ] +44503 ] +44513 ] +44516 ] +44519 ] +44521 ] +44523 ] +44541 ] +44561 ] +44579 ] +44592 ] +44607 ] +44621 ] +44647 ] +44734 ] +44771 ] +44815 ] +44837 ] +44916 ] +45023 ] +45032 ] +45046 ] +45054 ] +45063 ] +45070 ] +45080 ] +45086 ] +45102 ] +45113 ] +45128 ] +45145 ] +45156 ] +45173 ] +45181 ] +45195 ] +45202 ] +45218 ] +45225 ] +45243 ] +45248 ] +45262 ] +45265 ] +45278 ] +45280 ] +45305 ] +45307 ] +45329 ] +45332 ] +45355 ] +45357 ] +45363 ] +45365 ] +45368 ] +45370 ] +45379 ] +45385 ] +45393 ] +45417 ] +45448 ] +45478 ] +45502 > +45509 ] +45513 ] +45539 ] +45541 ] +45560 ] +45562 ] +45590 ] +45620 ] +45639 ] +] +45662 ] +] +45687 ] +] +45691 ] +45701 ] +] +45713 ] +] +45719 ] +] +45736 ] +45745 ] +45750 ] +45757 ] +45762 ] +45771 ] +45775 ] +] +45779 ] +45782 ] +45787 ] +45791 ] +45794 ] +45797 ] +] +45800 ] +45804 ] +45807 ] +45814 ] +45821 ] +45833 ] +45848 ] +45857 ] +45879 ] +45896 ] +45914 ] +45921 ] +45940 ] +45944 ] +45967 ] +45969 ] +45986 ] +46054 ] +46085 ] +46113 ] +46141 ] +46165 ] +46197 ] +46223 > +46227 ] +46231 > +46254 ] +46265 ] +46282 ] +46299 ] +46317 ] +46323 ] +46338 ] +46346 > +46348 ] +46363 ] +46371 ] +46385 ] +46387 ] +46391 ] +46395 ] +46400 ] +46413 ] +46490 ] +46511 ] +46535 ] +46562 ] +46719 ] +46741 ] +46762 ] +46786 ] +46803 ] +46808 ] +46824 ] +46826 ] +46830 ] +46838 ] +46841 ] +46843 ] +46863 ] +46869 ] +46881 ] +46886 ] +46903 ] +46919 > +46921 ] +46956 ] +46989 ] +47017 ] +47046 ] +47070 ] +47096 ] +47125 ] +47150 ] +47166 ] +] +47169 ] +47171 ] +47183 ] +47198 ] +47207 ] +47215 ] +47237 ] +47245 ] +47270 ] +47298 ] +47329 ] +47354 ] +47389 ] +47426 )} +47457 > +47486 ] +47512 ] +47538 ] +47541 ] +47570 ] +47573 ] +47605 ] +47608 ] +47638 ] +47662 ] +47664 ] +47689 ] +] +47714 ] +47744 ] +47771 ] +47777 ] +47787 ] +47792 ] +47802 ] +47810 ] +47827 ] +47833 ] +47838 ] +47851 ] +47885 ] +47916 ] +47947 ] +47973 ] +48008 ] +48035 ] +48066 ] +48088 ] +48108 ] +48130 > +48137 ] +48167 ] +48183 ] +48205 ] +48210 ] +48226 ] +48230 ] +48244 ] +48248 ] +48265 ] +48281 ] +48310 ] +48335 ] +48357 ] +48385 ] +48412 ] +48443 ] +48848 ] +48876 ] +48891 ] +48895 > +48906 ] +48923 ] +48941 ] +48960 ] +48979 ] +48996 ] +49008 ] +49013 ] +49016 ] +] +49020 ] +49027 ] +49041 ] +49053 ] +49071 ] +49077 ] +49085 ] +49101 ] +49122 ] +49139 ] +49163 ] +49186 ] +49219 ] +49279 ] +49317 ] +49342 ] +49368 ] +49603 ] +49628 ] +49740 ] +49748 ] +49763 ] +49771 ] +49788 ] +49857 ] +49889 ] +49924 ] +49933 ] +49962 ] +49973 ] +49996 ] +50030 ] +50073 ] +50108 ] +50151 ] +50172 ] +50190 ] +50211 ] +50252 ] +50284 ] +50550 ] +50558 ] +50572 ] +] +50584 ] +50597 ] +50605 ] +50618 ] +] +50636 ] +] +50651 ] +] +50665 ] +50674 ] +50682 ] +] +50702 ] +50706 ] +50721 ] +50725 ] +50737 ] +50744 ] +50757 ] +50765 ] +50775 ] +50779 ] +50788 ] +50790 ] +50795 ] +50801 ] +50807 ] +] +50813 ] +50821 ] +50833 ] +] +50846 ] +50860 ] +] +50870 ] +50879 ] +] +50892 ] +50908 ] +] +50911 ] +50914 ] +50920 ] +50924 ] +50935 ] +50937 ] +50947 ] +50949 ] +50968 ] +] +50987 ] +] +51012 ] +51015 ] +51036 ] +51039 ] +51060 ] +] +51081 ] +51084 ] +51107 ] +] +51131 ] +51133 ] +51155 ] +51157 ] +51173 ] +] +51189 ] +51191 ] +51208 ] +] +51213 ] +51215 ] +51219 ] +51223 ] +51227 ] +51229 ] +51235 ] +51239 ] +] +51245 ] +51256 ] +51259 ] +51274 ] +51289 ] +51308 ] +51336 ] +51348 ] +51361 ] +51377 ] +51397 ) +51402 ] +51422 ) +51429 ] +51450 ) +51458 ] +51475 ] +51484 ] +51499 ) +51504 ] +51511 ] +51528 ] +51530 ] +51540 ] +51550 ] +51561 ] +51574 ] +51585 ] +51591 ] +51604 ] +51621 ] +51640 ] +51657 ] +51673 ] +51685 ] +51695 ] +51704 ] +51714 ] +51722 ] +51725 ] +51730 ] +51734 ] +51740 ] +51745 ] +51753 ] +51760 ] +51768 ] +51772 ] +51782 ] +51788 ] +51796 ] +51798 ] +51801 ] +51808 ] +51815 ] +51828 ] +51834 ] +] +51845 ] +] +51855 ] +] +51864 ] +] +51869 ] +] +51873 ] +51881 ] +51895 ] +51899 ] +51911 ] +51919 ] +51937 ] +51941 ] +51950 ] +51952 ] +51968 ] +51990 ] +52018 ] +] +52031 ] +52044 ] +52047 ] +52076 ] +52080 ] +52109 ] +52112 ] +52133 ] +52138 ] +52140 ] +52161 ] +52165 ] +52167 ] +52188 ] +52193 ] +52227 ] +52313 ] +52335 ] +52357 ] +52366 ] +52377 ] +52389 ] +52399 ] +52407 ] +52417 ] +52424 ] +52426 ] +52428 ] +52434 ] +52440 ] +52443 ] +52449 ] +52460 ] +52478 ] +52488 ] +52518 ] +52571 ] +52587 >> +52601 ] +52603 ] +52618 ] +52620 ] +52638 ] +52664 ] +52684 ] +52702 ] +52718 ] +52733 ] +] +52749 ] +52751 ] +52768 ] +52787 ] +52811 ] +52829 ] diff --git a/tf/0.3/atfpre.tf b/tf/0.3/atfpre.tf new file mode 100644 index 0000000..a3e4a09 --- /dev/null +++ b/tf/0.3/atfpre.tf @@ -0,0 +1,3856 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=cluster characters that precede a sign or word +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=str +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +[ +9 [ +20 [ +33 [ +50 [ +57 < +66 [ +91 [ +119 [ +144 [ +162 [ +177 [ +196 [ +227 [ +248 [ +256 [ +258 [ +260 [ +264 [ +268 [ +284 [ +287 [ +296 [ +301 %sux [ +310 %sux [ +326 %sux [ +341 %sux [ +350 %sux [ +365 %sux [ +388 %sux [ +406 %sux [ +418 [ +443 [ +448 %sux [ +455 %sux [ +462 [ +483 [ +493 [ +504 [ +511 [ +536 [ +557 [ +587 [ +619 [ +639 [ +654 [ +673 [ +680 [ +687 [ +704 [ +711 [ +716 [ +725 [ +741 [ +755 [ +767 [ +775 [ +782 [ +794 [ +802 [ +816 [ +823 [ +833 [ +836 [ +852 [ +854 [ +867 [ +871 [ +890 [ +896 [ +902 [ +908 [ +921 [ +924 [ +938 [ +941 [ +952 [ +956 [ +965 [ +972 [ +980 [ +984 [ +992 [ +994 [ +1003 [ +1009 [ +1026 [ +1043 [ +1066 [ +1081 [ +1101 [ +1123 [ +1145 [ +1159 [ +[ +1183 [ +[ +1200 [ +[ +1222 [ +1224 [ +1233 [ +1235 [ +1255 [ +1257 [ +1274 [ +1277 [ +1291 [ +1294 [ +1305 [ +1308 [ +1314 [ +1317 [ +1327 < +1335 [ +1358 [ +1363 [ +1368 [ +1370 [ +1372 ( +[ +[ +1384 [ +1386 [ +1396 [ +1399 [ +1413 [ +[ +1429 [ +[ +1440 [ +1442 [ +1449 [ +[ +1464 [ +[ +1472 [ +1475 [ +1484 [ +1486 [ +1492 [ +1494 [ +1497 [ +1500 [ +[ +1505 [ +1510 [ +1515 [ +1522 [ +1528 [ +1533 [ +1539 [ +1543 [ +1547 [ +[ +1550 [ +1553 [ +1556 [ +1571 [ +1581 [ +1590 [ +1596 [ +1605 [ +1612 [ +1615 [( +[ +1618 [ +[ +1621 [ +1630 [ +1634 [ +1644 [ +1647 [ +1655 [ +1658 [ +1663 [ +1667 [ +1672 [ +1677 [ +1681 [ +1686 [ +1689 [ +1692 [ +1694 [ +1720 [ +1723 [ +1749 [ +1754 [ +1781 [ +1784 ( +1787 [ +1813 [ +1827 {( +1835 [ +1859 [ +1885 [ +1905 [ +1929 [ +1946 [ +1962 [ +1967 [ +1992 [ +[ +2009 [ +2011 [ +2013 ( +2027 [ +2030 [( +2045 [ +2047 [ +2063 [ +2069 [ +2089 [ +2093 [ +2111 [ +2115 [ +2126 [ +2130 [ +2142 [ +[ +2155 [ +[ +2173 [ +[ +2181 [ +2189 [ +2201 [ +2213 [ +2224 [ +2234 [ +2244 [ +2250 [ +2264 [ +2269 [ +2280 [ +2284 [ +2288 [ +2296 [ +[ +2306 [ +2311 [ +2313 [ +2316 [ +2331 [ +2337 [ +2355 [ +2385 [ +2410 [ +2431 [ +2456 [ +2476 [ +2485 [ +2489 ( +2494 [ +2502 [ +2508 [ +2515 [ +2521 [ +2528 [ +2543 [ +2553 [ +2565 [ +2577 [ +2588 [ +2595 [ +2620 [ +2627 [ +2639 [ +2644 [ +2650 [ +2659 [ +2661 [ +2667 [ +2686 [ +2691 [ +2700 [ +2704 [ +2733 [ +2756 [ +2758 ( +2768 {( +2770 [ +2778 [ +2797 [ +2827 [ +( +2848 [ +2867 [ +( +2883 [ +2902 [ +2908 ( +2918 [ +2926 [ +2934 [ +2949 [ +2952 [ +2967 [ +2981 [ +2998 [ +( +3013 [ +3019 [ +3030 [ +3045 [ +3056 [ +3069 [ +3080 [ +3094 [ +3109 [ +3117 [ +3133 [ +3164 [ +3197 [ +3212 [ +3219 {( +3228 [ +3240 [ +3256 [ +3262 [ +3274 [ +3287 [ +3294 [ +3308 [ +3315 [ +3333 [ +3349 [ +3374 [( +3395 [ +3409 [ +3423 [ +[ +3432 [ +3443 [ +[ +3456 [ +3468 [ +[ +3482 [ +3492 [ +3494 [ +3515 [ +3517 [ +3540 [ +3542 [ +3566 [ +3568 [ +3582 [ +3599 [ +3601 [ +3611 [ +3620 [ +3628 [ +3637 [ +3658 [ +3686 [ +3708 [ +3718 [ +3724 [ +3730 [ +3732 [ +3735 [ +3739 [ +[ +3745 [( +[ +3759 [ +3762 [ +3772 [ +3782 [ +3794 [ +3796 [ +3798 [ +3813 [ +3828 [ +3848 [ +3854 [ +3875 [ +3888 [ +( +3894 [ +3905 [ +3923 [ +3931 [ +3952 [ +3961 [ +3979 [ +3990 [ +3994 [ +4020 [ +4024 [ +4029 [ +4037 [ +4042 [ +4055 [ +4072 [ +4086 [ +4094 [ +4107 [ +4116 [ +4118 [ +4135 [ +4151 [ +4173 [ +4185 [ +4196 [ +4207 [ +4215 [ +4218 [ +4222 [ +4226 [ +4234 [ +4237 [ +4242 [ +4244 [ +4253 [ +4256 [ +4263 [ +4266 [ +4268 [ +4273 [ +4277 [ +4280 [ +4285 [ +4294 [ +4299 [ +4306 [ +4310 [ +4312 [ +4319 [ +4329 [ +4332 [ +4337 [ +4343 [ +4350 [ +4355 [ +4360 [ +4363 [ +4369 [ +4377 [ +4386 [ +4398 [ +4412 [ +4431 [ +4448 [ +4461 [ +4470 [ +4480 [ +4487 [ +4493 [ +4502 [ +4509 [ +4520 [ +4529 [ +4539 [ +4554 [ +4557 [ +4564 [ +4567 [ +4572 [ +4577 [ +4580 [ +[ +4584 [ +[ +4588 [ +4590 [ +4599 [ +[ +4610 [ +[ +4622 [ +4628 [ +4633 [ +4637 [ +4669 [ +4673 [ +4677 [ +4698 [ +4718 [ +4740 [ +4756 °\\ +4778 < +4862 %sux +4879 %akk +4885 %sux +4900 {( +4907 %sux +4910 %akk +5080 < +5151 [ +5167 [ +5182 [ +5197 [ +5204 [ +5220 [ +5232 [ +5259 [ +5307 [ +5335 [ +5502 [ +5529 [ +[ +5549 [ +5553 [ +5565 [ +5572 [ +5576 [ +5586 [ +5596 [ +5616 [ +5627 [ +5629 [ +5665 [ +[ +5695 [ +5722 [ +5754 [ +5783 [ +5810 [ +5940 [ +5957 [ +5966 [ +5979 [ +5990 [ +5992 [ +5997 [ +5999 [ +6001 [ +6003 [ +6007 [ +6019 [ +6027 << +6168 [ +6235 [ +6256 [ +6271 [ +6293 [ +6318 [ +6341 [ +6472 [ +6494 [ +[ +6521 [ +6541 [ +6566 [ +6593 [ +6642 [ +6662 [ +6686 [ +6708 [ +6730 {( +6742 [ +6763 {( +6789 [ +6809 [ +6813 {( +6831 [ +6943 [ +6954 [ +6962 [ +6969 [ +6974 [ +6983 [ +6994 [ +7003 [ +7012 [ +7023 [ +[ +7027 [ +7044 [ +[ +7065 [ +7086 [ +7112 [ +7135 [ +7155 [ +7171 [ +7184 [ +[ +7200 [ +7204 [ +7213 [ +7219 [ +7221 %sux [ +7229 [ +%sux [ +7246 [ +%sux [ +7263 %sux [ +7280 %sux [ +7296 %sux [ +7320 %sux +[ +7333 << +7353 [ +7378 %sux [ +7385 %sux [ +7393 [ +7401 [ +7417 [ +7423 [ +7439 [ +7445 [ +7458 [ +7465 [ +7472 [ +7475 [ +7490 [ +7500 [ +7515 [ +7521 [ +7532 [ +7535 [ +7552 [ +7564 [ +7585 [ +7593 [ +7606 [ +7613 [ +7623 [ +7628 [ +7639 [ +7642 [ +7649 [ +7656 [ +7660 [ +7669 [ +7675 [ +7681 [ +7691 [ +7696 [ +7705 [ +7713 [ +7729 [ +7752 [ +7779 [ +7909 [ +7924 [ +7927 [ +7945 [ +7957 [ +7969 [ +7973 [ +7991 [ +7999 [ +8011 [ +8021 [ +8035 [ +8041 [ +8055 [ +8068 [ +8073 [ +8079 {( +8110 [ +8135 [ +8155 [ +8169 [ +8185 [ +8188 [ +8193 [ +8197 [ +[ +8212 [ +8224 [ +8241 [ +8500 [ +8521 [ +8528 [ +8546 [ +8554 [ +8579 [ +[ +8594 [ +[ +8613 [ +8627 [ +8635 [ +8642 [ +8653 [ +8660 [ +8672 [ +8682 [ +8694 [ +8702 [ +8724 [ +8960 [ +8979 [ +9001 [ +9013 [ +9032 [ +9054 [ +9076 [ +9084 [ +9093 < +9101 [ +9121 [ +9143 [ +9162 [ +9172 [ +9175 [ +9178 [ +9180 [ +9186 [ +9193 [ +9206 [ +9213 [ +9224 [ +9232 [ +9249 [ +9265 [ +9276 [ +9287 [ +9297 [ +9309 [ +9319 [ +9323 [ +9336 [ +[ +9347 [ +9350 [ +9370 [ +9414 < +9542 [ +9544 [ +9567 [ +9573 [ +9593 [ +9608 [ +9619 [ +9634 [ +9643 [ +9653 [ +9663 [ +9666 [ +9673 [ +9823 [ +9843 [ +9859 [ +9880 [ +9902 [ +9915 [ +9928 [ +9935 [ +9943 [ +9951 [ +9960 [ +9966 [ +9976 [ +9981 [ +9993 [ +9999 [ +10010 [ +10021 [ +10027 [ +10041 [ +10046 [ +10055 [ +10065 [ +10081 [ +10095 [ +10108 [ +[ +10111 [ +10114 [ +10116 [ +[ +10124 [ +10138 [ +10157 [ +10179 [ +10196 [ +10210 [ +10215 [ +10220 [ +10222 [ +10224 [ +10227 [ +[ +10231 [ +[ +10240 [ +[ +10257 [ +[ +10266 [ +10278 [ +10290 [ +10293 [ +10301 [ +10303 [ +10313 [ +10336 [ +10360 [ +10377 [ +10399 [ +10421 [ +10434 [ +10449 [ +10503 [ +10530 [ +10551 [ +10571 [ +10585 [ +10603 [ +10619 [ +10627 [ +10642 [ +10665 [ +10688 [ +10748 [ +10776 [ +10805 [ +10832 [ +10859 [ +10884 [ +10898 [ +10926 [ +10981 [ +11003 [ +11020 [ +11033 [ +11043 [ +11050 [ +11058 [ +11064 [ +11072 [ +11079 [ +11083 [ +11092 [ +11100 [ +11119 [ +11124 [ +11144 [ +11154 [ +11160 [ +11166 [ +11168 [ +11175 [ +11187 [ +[ +11206 [ +11209 [ +11226 [ +11228 [ +11242 [ +11244 [ +11249 [ +11264 [ +11271 [ +11286 [ +11295 [ +11304 [ +11307 %sux +11312 [ +11323 [ +11326 %sux +11330 [ +11337 [ +11339 %sux +11344 [ +11353 [ +11358 [ +11366 [ +11373 [ +11382 [ +11386 %sux +11392 [ +11401 [ +11403 %sux +11409 [ +11419 [ +11427 [ +11438 [ +11440 [ +11442 [ +11445 [ +11448 [ +[ +11452 [( +11456 [ +[ +11460 [ +11466 [ +11468 [ +11481 [ +11488 [ +11497 [ +11506 [ +11520 [ +11530 [ +11537 [ +11545 [ +11550 [ +11557 [ +11569 [ +11574 [ +11582 [ +11587 [ +11594 [ +11597 [ +11608 [ +[ +11621 [ +11623 [ +11635 [ +11637 [ +11650 [ +11653 [ +11676 [ +11679 [ +11701 [ +11720 [ +11745 [ +11772 [ +11793 [ +11815 {( +11821 [ +11842 [ +11848 {([ +11871 [ +11879 [ +11896 [ +11932 [ +11949 [ +11967 [ +11983 [ +12002 [ +12016 [ +12024 [ +12035 [ +12049 [ +12063 [ +12078 [ +12093 [ +12122 [ +12137 [ +12148 [ +12163 [ +12183 [ +12208 [ +12276 [ +12300 [ +12333 [ +12362 [ +12388 [ +12418 [ +12443 [ +12447 [ +12465 [ +12481 [ +12504 [ +12513 [ +12544 [ +12567 [ +12583 %sux +12587 [ +12592 %sux +12609 [ +12628 [ +12647 [ +12676 [ +12698 [ +12720 [ +12722 [ +12768 [ +12788 %sux +12797 [ +12815 %sux +12818 [ +12823 [ +12842 [ +12846 [ +12866 [ +12892 [ +12894 %sux [ +12909 [ +12943 [ +12957 [ +12984 [ +13010 [ +13077 [ +13104 [ +13133 [ +13242 [ +13266 [ +13292 [ +13317 [ +13343 [ +13367 [ +13394 [ +13423 [ +13518 [ +13550 [ +13571 [ +13597 [ +13617 [ +13634 [ +13664 [ +13684 [ +13702 [ +13719 [ +13744 [ +13763 [ +13779 [ +13787 [ +13796 [ +13810 [ +13819 [ +13838 [ +13849 [ +13869 [ +13889 [ +13898 [ +13919 [ +13926 [ +13933 [ +13936 [ +13950 [ +13953 [ +13956 [ +13973 [ +13990 << +13993 [ +14019 [ +14035 [ +14039 [ +14050 [ +14056 [ +14070 [ +14084 [ +14088 [ +14098 [ +14105 [ +14112 [ +14125 [ +14132 [ +14144 [ +14158 [ +14164 [ +14174 [ +14180 [ +14186 [ +14191 [ +14196 [ +14210 [ +14220 [ +14232 [ +14241 [ +14250 [ +14255 [ +14257 [ +[ +[ +[ +14262 [ +14265 [ +14271 [ +14279 [ +14283 [ +14290 [ +[ +14303 [ +14369 [ +14392 [ +14443 [ +14454 [ +[ +14461 [ +[ +14472 [ +14474 [ +14482 [ +[ +14498 [ +14516 [ +14533 [ +14550 [ +14571 [ +14580 [ +14589 < +14596 [ +14614 [ +14616 [ +14628 [ +14630 [ +14641 [ +[ +14655 [ +14669 [ +14685 [ +14698 [ +14700 [ +14728 [ +[ +14752 [ +[ +14764 [ +14789 [ +14809 [ +[ +14834 [ +14836 [ +14857 [ +14859 [ +14877 [ +14879 [ +14884 [ +14901 [ +14904 [ +14909 [ +14924 [ +14936 [ +14949 [ +14958 [ +14973 [ +14992 [ +15006 [ +15013 [ +15037 [ +15053 [ +15083 [ +15086 [ +15088 [ +15090 [ +15094 [ +[ +15099 [ +15105 [ +15112 [ +15120 [ +15130 [ +15139 [ +15149 [ +15152 [ +15156 [ +[ +15165 [ +[ +15170 [ +15187 [ +15209 [ +15233 [ +15266 [ +15289 [ +15296 [ +15311 [ +15318 [ +15330 [ +15344 [ +15357 [ +15370 [ +15376 [ +15392 [ +15413 [ +15432 [ +15451 [ +15467 [ +15481 [ +15488 [ +( +15498 [ +15505 [ +15517 [ +15523 [ +15540 [ +15557 [ +15563 [ +15578 [ +15591 [ +15660 [ +15676 [ +15688 [ +[ +15707 [ +15714 ( +15724 [ +15735 [ +15744 [ +15751 [ +15762 [ +15770 [ +15791 [ +15810 [ +15826 [ +15841 [ +15861 [ +15874 [ +15891 [ +15900 [ +15917 [ +15939 [ +15950 [ +15975 [ +16002 [ +16029 [ +16040 [ +16060 [ +16079 [ +16101 [ +16123 [ +16278 [ +16300 [ +16529 [ +16544 [ +16548 [ +16556 [ +16574 [ +16587 [ +16606 [ +16631 [ +16652 [ +16673 [ +16694 [ +16852 [ +16867 [ +16873 [ +16884 [ +16892 [ +16901 [ +16918 [ +16944 [ +16957 [ +16959 [ +16969 [ +16973 [ +17000 [ +17023 [ +17055 [ +17340 [ +17363 [ +17378 [ +17380 [ +[ +17388 [ +[ +17399 [ +17403 [ +17422 [ +17427 [ +17441 [ +17445 [ +17469 [ +17493 [ +17512 [ +17530 [ +17548 [ +17565 [ +17583 [ +17600 [ +17613 [ +17617 [ +17627 [ +17632 [ +17644 [ +17649 [ +17664 [ +17666 ( +17670 [ +17685 [ +17690 [ +17707 [ +17709 ( +17713 [ +17730 [ +17735 [ +17751 [ +17754 ( +17757 [ +17781 [ +17819 [ +17849 [ +17871 [ +17896 [ +17915 [ +17933 [ +( +17951 [ +[ +17971 [ +17987 [ +18007 [ +18029 [ +18125 [ +18148 [ +( +18170 [ +18190 [ +18210 [ +18219 [ +18225 [ +18230 [ +18239 [ +18243 [ +18248 [ +18252 [ +18255 [ +18262 [ +18272 [ +18284 [ +18290 [ +18300 [ +18314 [ +18322 [ +18324 [ +18330 [ +[ +18334 [ +18337 [ +18341 [ +18351 [ +18367 [ +18376 [ +18387 [ +18402 [ +18411 [ +18427 [ +18452 [ +18470 [ +18492 [ +18515 [ +18533 [ +18560 [ +18573 [ +18579 [ +18597 [ +18611 [ +18639 [ +18652 [ +18673 [ +18680 [ +18705 [ +18728 [ +18737 [ +18748 [ +18756 [ +18765 [ +18773 [ +18780 [ +18791 [ +18804 [ +18813 [ +18824 [ +18834 [ +18850 [ +18858 [ +18870 [ +18882 [ +18892 [ +18903 [ +18920 [ +18934 [ +18938 [ +18959 [ +18967 ( +18985 [ +19014 [ +19345 [ +19364 [ +19387 [ +19426 %sux +19433 [ +19445 [ +19451 [ +19463 %sux +19466 [ +19513 [ +19529 [ +19533 ( +19549 [ +19562 [ +19574 [ +19585 [ +19596 [ +19599 [ +19623 [ +19629 [ +19637 %sux +19647 [ +19658 [ +19679 [ +19692 [ +19698 [ +( +19716 [ +19723 [ +19735 [ +19742 [ +19747 [ +19758 [ +19763 [ +19769 [ +19780 [ +19794 [ +19808 [ +19811 [ +19814 [ +[ +[ +[ +19827 [ +19838 [ +19848 [ +19862 [ +19871 [ +19887 [ +19889 [ +19901 [ +[ +19914 [ +19942 [ +19958 [ +19981 [ +20004 [ +20025 [ +20039 [ +20061 [ +20067 [ +20069 [ +[ +20107 [ +20133 [ +20135 [ +20137 °\\ +[ +20140 [( +20161 [ +20167 [ +20182 [ +20189 [ +20199 [ +20225 [ +20253 [ +20300 [ +20315 [ +20330 [ +20355 [ +20412 [ +20420 [ +20434 [ +20437 ( +20445 [ +20456 [ +20460 [ +20464 [ +20479 [ +20483 ( +20504 [ +20520 [ +20527 [ +20555 [ +20566 [ +[ +20576 [ +20580 [ +20586 [ +20599 [ +20613 [ +20640 [ +20658 [ +20670 [ +20672 ( +20677 [ +20697 [ +20707 [ +20710 ( +20728 [ +20734 [ +20755 [ +20765 [ +20783 [ +20790 [ +20804 [ +20814 [ +20830 [ +20839 [ +20845 [ +20849 [ +20859 [ +20866 [ +20871 [ +20886 [ +20892 [ +20903 [ +20917 [ +20919 ( +20923 [ +( +20931 [ +20943 [ +20953 [ +20963 [ +20973 [ +20982 [ +20992 [ +21001 [ +21005 [ +21010 [ +21014 [ +21019 [ +21025 [ +21030 [ +21033 [ +21036 [ +21039 [ +21041 [ +21043 [ +21045 [ +21050 [ +21052 [ +21055 [ +21060 [ +21064 [ +21073 [ +21080 [ +21087 [ +21108 [ +21135 [ +21143 [ +21157 [ +21166 [ +21171 ( +21194 [ +21216 [ +21241 [ +21245 [ +21254 [ +21271 [ +21289 [ +21310 [ +21328 [ +21344 [ +21354 [ +21363 [ +21381 [ +21399 [ +21415 [ +21421 [ +21424 [ +21426 [ +21435 [ +21448 [ +21472 [ +21491 [ +21500 [ +21516 [ +21538 [ +21548 [ +21558 [ +21566 [ +21577 [ +21586 [ +[ +21596 [ +21603 [ +[ +21610 [ +21612 [ +21619 [ +21631 [ +21641 [ +21655 [ +21667 [ +21680 [ +21711 [ +21739 [ +21768 [ +21795 [ +[ +21820 [ +21823 [ +21835 [ +21840 [ +21858 [ +21862 [ +21876 [ +21886 [ +21913 [ +21931 [ +21953 [ +21975 [ +21978 [ +21991 [ +21997 ( +[ +22008 [ +[ +22023 [ +22031 ( +[ +22042 [ +22056 [ +22064 [ +22075 [ +22083 [ +22092 [ +22098 [ +22109 [ +22116 [ +22137 [ +22160 [ +22175 [ +22199 [ +22215 [ +22236 {( +22239 [ +22246 [ +22257 [ +22262 [ +22266 [ +22272 [ +22277 [ +22284 [ +22291 [ +22299 [ +22301 [ +22314 [ +22320 [ +22327 [ +22332 [ +22347 [ +22352 [ +22374 [ +22381 [ +22394 [ +22412 [ +22416 [ +22427 [ +22439 [ +22451 [ +22463 [ +22475 [ +22488 [ +22494 [ +22502 [ +22510 [ +22518 [ +22526 [ +22537 [ +22546 [ +22555 [ +22562 [ +22574 [ +22591 [ +22600 [ +22609 [ +22619 [ +22622 [ +22628 [ +22631 [ +22635 [ +22642 [ +22645 [ +22648 [ +22654 [ +22656 [ +[ +22659 [ +[ +[ +[ +[ +[ +[ +[ +[ +22669 [ +22671 [ +22676 [ +[ +22680 [ +22687 [ +22695 [ +22699 [ +22704 [ +22711 [ +22719 [ +22726 [ +22732 [ +22734 [ +[ +22738 [ +22741 [ +22744 [ +22748 [ +22751 [ +22753 [ +22757 [ +22760 [ +22762 [ +22764 [ +22766 [ +22768 [ +22770 [ +22772 [ +22775 [ +22778 [ +22781 [ +22784 [ +22786 [ +22789 [ +22793 [ +22798 [ +22804 [ +22808 [ +22813 [ +22816 [ +22818 [ +22822 [ +22827 [ +22830 [ +22834 [ +22838 [ +22843 [ +22849 [ +22855 [ +22859 [ +22867 [ +22871 [ +22877 [ +22885 [ +22892 [ +22901 [ +22909 [ +22917 [ +22923 [ +22941 [ +22954 [ +22964 [ +22979 [ +22985 [ +22992 [ +22998 [ +23004 [ +23033 [ +23038 [ +23059 [ +23080 [ +23101 [ +23121 [ +23142 [ +23153 [ +23158 [ +23160 [ +23164 [ +[ +23182 [ +23198 [ +23212 [ +23237 [ +23239 ( +23256 [ +23275 [ +23291 [ +23318 [ +23342 [ +23359 [ +23374 [ +23390 [ +[ +23408 [ +[ +23424 [ +[ +23432 {( +23439 [ +23458 [ +23460 [ +23479 [ +23481 [ +23497 [ +23499 [ +23503 [ +23505 [ +23507 [ +23510 [ +23515 [ +23519 [ +23523 [ +23529 [ +23537 [ +23542 {( +23547 [ +23556 [ +23561 [ +23563 [ +23566 [ +23569 [ +23571 [ +23575 [ +23579 [ +23582 [ +23584 [ +23588 [ +23590 [ +23593 [ +23600 [ +23602 [ +23608 [ +23617 [ +23628 [ +23645 [ +23652 [ +23661 [ +23675 [ +23683 [ +23694 [ +23703 [ +23712 [ +23725 [ +23733 [ +23737 [ +23743 [ +23758 [ +23769 [ +23777 [ +23783 [ +23786 [ +23803 [ +23818 [ +23826 [ +23829 [ +23859 [ +23880 [ +23896 [ +23917 [ +23935 [ +23961 [ +23975 [ +23979 [ +23996 [ +24009 [ +24024 [ +24038 [ +24056 [ +24079 [ +24089 [ +24168 [ +24275 [ +24282 [ +24288 [ +24302 [ +24314 [ +24327 [ +24340 [ +24356 [ +24364 [ +24373 [ +24379 [ +24381 [ +24386 [ +24390 [ +24392 [ +24399 [ +24414 [ +24430 [ +24450 [ +24472 [ +24483 [ +24487 [ +24501 [ +24503 %sux +24507 %akk +24516 [ +24518 %sux +24522 %akk +24524 [ +24527 [ +24541 [ +24551 [ +24560 [ +24572 [ +24587 [ +24607 [ +24627 [ +24648 [ +24664 [ +24676 [ +24690 [ +24702 [ +24723 [ +24740 [ +24757 [ +24759 [ +24772 [ +24774 [ +24790 [ +24792 [ +24804 [ +24806 [ +24819 [ +[ +24838 [ +[ +24842 ( +24854 [ +24860 [ +24867 [ +[ +24873 [ +[ +24877 [ +24879 [ +24882 [ +[ +24885 [ +[ +24888 [ +24890 [ +24892 [ +24894 [ +24896 [ +( +24899 [ +24901 [ +[ +24908 [ +24914 [ +24921 [ +24933 [ +24943 [ +24953 [ +24955 [ +24969 [ +24981 [ +25004 [ +25019 [ +25035 [ +25054 [ +25072 [ +25091 [ +25112 [ +25136 [ +25156 [ +25174 [ +25187 [ +25230 [ +25235 [ +25244 [ +25254 [ +25264 [ +25276 [ +25279 [ +25318 [ +25343 [ +25359 {( +25363 [ +25372 [ +25386 [ +25400 [ +25411 [ +25426 [ +25437 [ +25443 [ +25448 [ +25455 [ +25458 [ +25468 [ +25476 [ +25483 {( +25488 [ +25492 [ +25497 [ +25503 [ +25518 [ +25535 [ +25777 [ +25793 [ +25809 [ +25829 [ +25845 [ +25865 [ +25868 ( +25876 [ +25896 [ +25911 [ +25927 [ +25939 [ +25952 [ +25960 [ +25964 [ +25969 [ +25973 [ +[ +25979 [ +25985 [ +25995 [ +25998 [ +26013 [ +26031 [ +26047 [ +26229 [ +26236 [ +26247 [ +26253 [ +26256 [ +26258 [ +26262 ( +[ +26268 [ +26277 [ +26288 [ +26301 [ +26321 [ +26340 [ +26362 [ +26381 [ +26392 [ +26418 [ +26444 [ +26455 [ +26463 [ +26474 [ +26486 [ +26490 [ +26499 [ +26505 [ +26509 [ +26513 [ +[ +[ +[ +[ +[ +26541 [ +26543 [ +26559 [ +26564 [ +26581 ( +26589 [ +26592 [ +26600 [ +26609 [ +26611 [ +26617 [ +( +26620 [ +26642 [ +26644 [ +26661 [ +26669 [ +26687 [ +26689 [ +26695 [ +26704 [ +[ +26713 [ +26717 [ +26723 [ +26728 [ +26757 [ +26771 [ +26776 [ +26785 [ +26794 [ +26805 [ +26813 [ +26826 [ +26830 [ +26834 [ +26849 [ +26871 [ +26883 [ +26900 [ +26909 [ +26932 [ +26958 [ +26970 [ +26996 [ +%sux +27002 %sb +27009 [ +27023 [ +27047 [ +27056 [ +27086 [ +27114 [ +27125 [ +27141 [ +%sux +27163 [ +27185 [ +27212 [ +27234 [ +27245 [ +27265 [ +27274 [ +27302 [ +27328 [ +27353 [ +27380 [ +27403 [ +27429 [ +27450 [ +27462 [ +27466 [ +27469 [ +27477 [ +27486 [ +27498 [ +27505 [ +%sux +27524 [ +27526 %sux [ +27538 %sb +27547 [ +[ +27564 [ +27588 [ +27615 [ +27644 [ +27671 [ +27679 [ +27709 [ +%sux +27729 [%sux +27741 %sb +27758 [ +27778 [ +27810 [ +27842 [ +27865 [ +27884 [ +27906 [ +27915 [ +27920 [ +27927 [ +27938 [ +27961 %sux +27966 [ +27981 %sux +27986 [ +27993 %sb +28008 [ +28025 [ +28047 [ +28068 [ +28072 [ +28093 [ +28102 [ +28109 [ +28127 [ +28135 [ +28148 [ +28151 %sux +28158 [ +28170 [ +28179 [ +28190 [ +28198 [ +28228 [ +28245 [ +28284 %sux +28303 [ +28313 [ +28323 [ +28343 [ +28358 [ +28375 [ +28389 [ +28391 [ +[ +28395 [ +28401 [ +28408 [ +28417 [ +%sux +28424 [ +[ +28427 [ +28436 [ +28438 [ +28445 [ +28454 [ +28464 [ +28466 %sux +28478 [ +28488 [ +28501 [ +[ +28504 %sux +28508 [ +28510 [ +28527 [ +[ +28547 [ +28549 [ +28557 [ +28566 [ +28572 [ +28581 [ +%sux +28595 [ +28597 [ +28610 [ +28617 [ +28622 [ +28626 [ +%sux +28637 [ +28646 [ +28649 [ +28662 [ +28664 [ +28672 [ +28688 [ +28690 [ +28715 [ +[ +28740 [ +28756 %sux [ +28791 %sux +28808 %sb +28815 %sux +28823 [ +28836 %sux [ +28849 [ +28859 [ +28863 [ +28867 %sux +28893 [ +28895 %sux +28907 [ +28923 %sux +28940 %sux +28956 %sux +28971 %sux +28979 [ +28991 [ +29004 %sux +29007 [ +29022 [ +29037 [ +29044 [ +29069 [ +29082 [ +29086 [ +29092 [ +29114 [ +29134 [ +29156 [ +29184 [ +29197 [ +29215 [ +29217 [ +29222 [ +29244 [ +29246 [ +29272 [ +29301 [ +29317 [ +29327 [ +29341 [ +29352 [ +29362 [ +29365 [ +29372 [ +29381 [ +29384 [ +29388 [ +29398 [ +[ +29403 [ +29410 [ +29412 [ +29418 [ +29423 [ +29428 [ +29437 [ +29452 [ +29456 [ +29480 [ +29482 [ +29501 [ +29512 [ +29527 [ +29531 ( +29539 [ +29547 [ +29551 [ +29558 [ +29576 [ +29601 [ +29622 [ +29644 [ +29659 [ +29673 [ +29679 [ +29683 [ +29692 [ +29701 [ +29711 [ +29725 [ +29737 [ +29746 [ +29755 [ +29764 [ +29777 [ +29785 [ +29789 %sux +29791 [ +29793 %sb +29803 [ +29811 [ +29821 [ +29832 [ +29837 [ +29842 [ +29847 [ +29861 [ +29865 [ +29891 [ +[ +29902 [ +[ +29918 [ +[ +%sux +29938 [ +29941 [ +29960 [ +29963 [ +29986 [ +29990 [ +30010 [ +30013 [ +30022 [ +30024 [ +30047 [ +30057 [ +30080 [ +30084 [ +30105 [ +30113 [ +30131 [ +30139 [ +30156 [ +30169 [ +30181 [ +30193 [ +30207 [ +30228 [ +30239 [ +30247 [ +30256 [ +30264 [ +30283 [ +30285 %sux +30303 [ +30305 %sux [ +30317 %sb +30325 [ +30327 [ +30334 °\\ +30340 [ +30343 [ +30365 [ +30367 [ +30389 [ +30394 [ +30419 [ +30423 [ +30446 [ +30450 [ +30457 [ +[ +30484 [ +30488 [ +30490 %sux +30496 [ +[ +30511 [ +30514 [ +30526 [ +30544 [ +30563 [ +30690 [ +30712 %sux +30714 [ +30730 %sux +30732 [ +30739 %sb +30752 [ +30773 [ +30783 [ +30795 [ +30801 [ +30817 [ +30825 [ +30844 [ +30846 [ +30852 [ +30860 [ +30876 [ +30883 [ +30897 %sux [ +30906 [ +30911 [ +30914 [ +30922 [ +30934 [ +30954 [ +30963 [ +30978 [ +30983 [ +31005 [ +31011 [ +31016 [ +31019 [ +31024 [ +31026 [ +%sux +31043 [ +31047 [ +31065 [ +31068 [ +31083 [ +31087 [ +31099 [ +31103 [ +31116 [ +31121 ( +[ +31136 [ +31138 %sux +31146 [ +31150 [ +31166 [ +31168 [ +31187 [ +31189 [ +31195 [ +[ +31221 [ +31228 [ +%sux +31243 [ +31245 [%sux +31256 [ +31270 [ +31358 °\\ +31362 %sux +31397 %sux +31420 %sux +31429 %sb +31442 %sux +31450 %sb +31461 %sux +31468 %sb +31474 %sux +31502 %sux +31517 %sb +31531 %sux +31540 %sb +31549 %sux +31558 %sb +31566 %sux [ +31574 %sb +31582 %sux [ +31598 [ +31615 %sux [ +31628 [ +31647 [ +31655 [ +31680 [ +31694 [ +31709 [ +31718 [ +31721 [ +31726 [ +31729 [ +31738 [ +31748 [ +31759 [ +31764 [ +%sux +31778 [ +31788 [ +31800 [ +31809 [ +31813 [ +31817 [ +31819 [ +31827 [ +31841 [ +31844 [ +31860 [ +31864 [ +31888 [ +31909 [ +31931 [ +31954 [ +31978 [ +32025 [ +32060 [ +32137 [ +32143 [ +32147 [ +32153 [ +32155 ( +32158 [ +32161 ( +32164 [ +32180 [ +32197 [ +32222 [ +32248 [ +32270 [ +32287 [ +32302 [ +32323 [ +32342 [ +32360 [ +32381 [ +32402 [ +32415 [ +32434 [ +32452 [ +32469 [ +32484 [ +32501 [ +32522 [ +[ +32539 [ +[ +32556 [ +[ +32690 [ +32707 [ +32714 [ +32716 [ +32735 [ +32759 [ +32778 [ +32794 %sux [ +32812 %sux [ +32828 %sux [ +32843 %sux [ +32859 %sux +33078 %sux +33096 %sux +33166 [ +%sux +33185 %sux +[ +33200 %sux +33216 [ +33218 [ +33233 [ +[ +[ +33248 [ +%sux [ +33261 [ +33263 %sux [ +33278 [ +33280 [ +33297 [ +33302 [ +33315 [ +33319 %sux [ +33331 [ +33335 %sux +[ +33354 %sux [ +33371 [ +33391 [ +33397 [ +33414 [ +33438 [ +33457 [ +33478 [ +33496 %sux +33501 [ +33508 %sux +33511 [ +33517 [ +33523 %sux +33530 [ +33536 [ +33552 [ +33559 [ +33565 [ +33572 [ +33574 %sux +33581 [ +33591 [ +33593 %sux +33600 [ +33617 [ +( +33673 %sux +33684 [ +33686 [ +33688 %sux +33703 [ +%sux +33714 [ +33722 [ +( +%sux +33743 [ +33746 %sux +33757 [ +33764 %sux +33773 [ +33783 %sux +33795 [ +33850 %sux +33868 %sux +33886 %sux +33902 %sux +33920 [ +33925 %sux +33942 [ +33963 [ +33965 %sux +33982 [ +33984 %sux +34036 [ +34049 [ +34054 %sux [ +34061 [ +34066 %akk +34068 %sux +34071 %sux [ +34080 [ +34092 [ +34100 [ +34116 [ +34130 %sux [ +34152 %sux [ +34159 ( +34162 [ +34167 [ +34171 [ +34185 [ +34189 [ +34195 [ +34205 [ +34236 [ +34254 %sux +34326 [ +34345 [ +34386 [ +34409 [ +34424 [ +34433 [ +34447 [ +34459 [ +34474 [ +34484 [ +34549 [ +34570 [ +34585 [ +34602 [ +34634 [ +34658 [ +34676 [ +34689 [ +34697 [ +34714 [ +34732 [ +34751 [ +34773 [ +34789 [ +34804 [ +34822 [ +34842 [ +34865 [ +34877 [ +34900 [ +34916 [ +34935 [ +34947 [ +34962 [ +34980 [ +35000 [ +35014 [ +35018 ( +35039 [ +35054 [ +35073 [ +35092 [ +35115 [ +35137 [ +35155 [ +35172 [ +35174 ( +35191 [ +35210 [ +35230 [ +35241 [ +35244 ( +35247 [ +35249 [ +35251 [ +35254 [ +35257 [ +35261 [ +35276 [ +35349 [ +35365 [ +35383 [ +35400 [ +35637 [ +35656 [ +35663 [ +35673 [ +35689 [ +35701 [ +35725 [ +35736 [ +35764 [ +35791 [ +35797 [ +35820 [ +35852 [ +35877 [ +35904 [ +35926 [ +35955 [ +35975 [ +35996 [ +36022 [ +36035 ( +36041 [ +36048 [ +36055 [ +36061 [ +36067 [ +36091 [ +36115 [ +36132 [ +36154 [ +36175 [ +36177 [ +36180 [ +36183 [ +36189 [ +36194 [ +36202 [ +36211 [ +36218 {( +36227 [ +36236 [ +36245 [ +36252 [ +36258 [ +36267 [ +36271 [ +36276 [ +[ +36280 [ +36282 [ +%sux +36286 [ +36290 [ +36295 [ +36299 [ +36302 [ +[ +36306 ( +36313 [ +36331 [ +36350 [ +36368 [ +36388 [ +36408 [ +36430 [ +36450 [ +36471 [ +36484 [ +36497 [ +36509 [ +36519 [ +36543 [ +36567 [ +36589 [ +36611 [ +36629 [ +36644 [ +36657 [ +36672 [ +37339 [ +37365 [ +37380 [ +37387 [ +37407 [ +37428 [ +37445 [ +37465 [ +37486 [ +37513 [ +37540 [ +37564 [ +37590 [ +37593 [ +37599 [ +37603 [ +37609 [ +37623 [ +37632 [ +37646 [ +37658 [ +37670 [ +37682 [ +37759 [ +37772 [ +37801 [ +37824 [ +37838 [ +37853 [ +37862 [ +37874 [ +37884 [ +37898 [ +37908 [ +37919 [ +37929 [ +37941 [ +37951 [ +37964 [ +37973 [ +37983 [ +37988 [ +37990 [ +37999 [ +38008 [ +38013 [ +38021 [ +38025 [ +38035 [ +38043 [ +38052 [ +38065 [ +38072 [ +38085 [ +38090 [ +38100 [ +38114 [ +38116 [ +38133 [ +38137 [ +38153 [ +38168 [ +38179 [ +38190 [ +38207 [ +38220 [ +38236 [ +38248 [ +38259 [ +38274 [ +38278 [ +38305 [ +38322 [ +38336 [ +38340 {( +38342 [ +38350 [ +38352 [ +38359 {( +38363 [ +38370 [ +38381 [ +38395 [ +38409 [ +38425 [ +38433 [ +38437 [ +38453 [ +38464 [ +38482 [ +38502 [ +38522 [ +38542 [ +38568 [ +38719 [ +38733 [ +38744 [ +38753 [ +38757 [ +38767 [ +[ +38771 [ +[ +%sux +38776 [ +38779 [ +%sux [ +38783 [ +38785 %sux [ +38790 [ +38794 %sux +38798 [ +38800 %sux +38804 [ +38807 %sux +38811 [ +38813 %sux +38817 [ +38824 [ +38828 %sux +38832 [ +38836 %sux +38843 [ +38853 [ +38864 [ +38879 [ +39046 [ +39061 [ +39068 [ +39085 [ +39088 [ +39096 [ +39100 [ +39104 [ +39109 [ +39120 [ +39123 [ +39132 [ +39138 [ +39151 [ +39168 [ +39183 [ +39197 [ +39211 [ +39279 [ +39306 [ +39771 [ +39884 [ +39907 [ +39923 [ +39938 [ +39954 [ +39964 [ +39971 [ +39974 [ +39979 [ +39984 [ +39988 [ +39995 [ +40001 [ +40008 [ +40015 [ +40019 [ +40021 [ +40030 [ +40047 [ +40080 [ +40105 [ +40136 [ +40161 [ +40186 [ +40211 [ +40232 [ +40245 [ +40250 [ +40256 [ +40262 [ +40265 [ +40285 [ +40289 [ +40317 [ +40339 [ +40566 [ +40586 [ +40727 [ +40751 [ +40775 [ +40801 [ +40832 [ +40846 [ +40851 [ +40875 [ +40905 [ +40930 [ +40957 [ +40986 [ +41030 [ +41052 [ +41072 [ +41095 [ +41129 [ +41145 [ +41167 [ +41182 [ +41200 [ +41212 [ +41232 [ +41238 [ +[ +41247 [ +[ +41261 [ +41273 [ +41275 [ +41292 [ +[ +41312 [ +[ +41331 [ +[ +41358 [ +41420 [ +41451 [ +41477 [ +41498 [ +41518 [ +41522 [ +41579 [ +41600 [ +41603 [ +41630 [ +[ +41635 [ +41659 [ +41661 [ +41690 [ +41693 [ +41711 [ +[ +41718 [ +41722 [ +41733 [ +[ +41745 [ +[ +41757 [ +[ +41764 [ +41769 [ +41775 [ +41777 [ +41783 [ +41785 [ +41791 [ +41796 [ +41802 [ +41804 [ +41808 [ +41814 [ +41816 [ +41819 [ +41826 [ +41828 [ +41832 [ +41842 [ +[ +41854 [ +41856 [ +41858 [ +41866 [ +41872 [ +41883 [ +41903 [ +41921 [ +41939 [ +41952 [ +41959 [ +41971 [ +41985 [ +42002 [ +42017 [ +42033 [ +42044 [ +42051 [ +42066 [ +42081 [ +42094 [ +42105 [ +[ +42119 [ +42122 [ +42124 [ +42129 < +42142 [ +42151 [ +42153 [ +42166 [ +42173 [ +42176 [ +42196 [ +42205 [ +[ +42221 [ +42226 [ +42247 [ +42251 [ +42257 [ +42276 [ +42279 [ +42282 [ +42308 [ +42316 [ +42342 [ +42348 [ +42370 [ +42374 [ +42396 [ +42399 [ +42423 [ +42426 [ +42436 [ +42438 [ +42444 [ +[ +42467 [ +42471 %sux [ +42487 [ +42490 %sux [ +42503 %akk +[ +[ +42510 [ +42512 [ +42520 [ +42532 [ +42541 [ +42549 [ +42555 [ +42565 [ +42567 [ +42572 [ +42583 [ +42585 [ +42602 [ +[ +42626 [ +42628 [ +42651 [ +42655 [ +42665 [ +42673 [ +42676 [ +[ +42696 ( +42702 [ +42708 [ +42732 [ +42735 [ +42754 [ +42757 [ +42782 [ +42784 [ +42789 [ +42792 [ +42798 [ +42801 [ +42813 [ +( +[ +42826 [ +42828 [ +42838 [ +42841 [ +42849 [ +42851 [ +[ +42874 [ +[ +42898 [ +42900 [ +42924 [ +42926 [ +42935 [ +42937 [ +42950 {( +42956 [ +42958 [ +42975 [ +42977 [ +42994 [ +42996 [ +43012 [ +[ +43027 [ +43030 [ +43033 [ +43037 [ +( +43041 [ +43051 [ +43054 [ +43066 [ +43079 [ +[ +43097 [ +43115 [ +43117 [ +43123 [ +43143 [ +[ +43179 [ +[ +43188 {( +43211 [ +[ +43236 [ +43257 [ +43291 [ +43315 [ +43323 [ +43328 [ +43340 [ +43349 [( +43365 [ +43368 [ +43381 [ +43406 [ +43432 [ +43446 [ +43461 [ +[ +43469 [ +[ +43473 [ +[ +43476 [ +43480 [ +43494 [ +[ +43507 [ +43525 [ +43543 [ +43561 [ +43590 [ +43622 [ +43645 [ +43668 [ +43688 [ +43709 [ +43731 [ +43752 [ +43781 [ +43807 [ +43837 [ +43839 [ +43843 [ +43846 [ +43856 [ +[ +43865 [ +43867 [ +43873 [ +43882 [ +43892 [ +43895 [ +43901 [ +43903 [ +43908 [ +43928 [ +43931 [ +43939 [ +43949 [ +43957 [ +43965 [ +43974 [ +43981 [ +43986 [ +44001 [ +44003 [ +44024 [ +44028 [ +44030 [ +[ +44056 [ +[ +44077 [ +[ +44097 [ +[ +44109 [ +[ +44115 [ +44117 [ +[ +44122 [ +44133 [ +44145 [ +44160 [ +44172 [ +44182 [ +44191 [ +44200 [ +[ +44210 [ +[ +44219 [ +44226 [ +44237 [ +44239 [ +44250 [ +44252 [ +44265 [ +[ +44280 [ +[ +44297 [ +[ +44303 [ +44306 [ +44323 [ +[ +44344 [ +44346 [ +[ +44365 [ +44374 [ +44402 [ +44430 [ +44451 [ +44470 [ +44480 [ +44495 [ +44513 [ +44515 [ +44518 [ +44520 [ +44522 [ +44540 [ +44557 [ +44573 [ +44591 [ +44602 [ +44620 [ +44646 [ +44733 [ +44770 [ +44814 [ +44836 [ +44916 [ +45021 [ +45031 [ +45045 [ +45053 [ +45062 [ +45070 [ +45078 [ +45084 [ +45097 [ +45113 [ +45123 [ +45139 [ +45153 [ +45166 [ +45179 [ +45189 [ +45200 [ +45210 [ +45223 [ +45239 [ +45246 [ +45259 [ +45265 [ +45274 [ +45280 [ +45295 [ +45307 [ +45319 [ +45331 [ +45337 [ +45356 [ +45362 [ +45364 [ +45367 [ +45370 [ +45379 [ +45384 [ +45389 [ +45413 [ +45446 [ +45476 [ +45502 < +45505 [ +45512 [ +45538 [ +45540 [ +45560 [ +45562 [ +45588 [ +45619 [ +45638 [ +45640 [ +45661 [ +45663 [ +45687 [ +[ +45691 [ +45701 [ +[ +45713 [ +[ +45719 [ +[ +45736 [ +45745 [ +45750 [ +45757 [ +45762 [ +45771 [ +45775 [ +[ +45778 [ +45781 [ +45787 [ +45791 [ +45794 [ +45797 [ +[ +45800 [ +45802 [ +45807 [ +45813 [ +45821 [ +45833 [ +45848 [ +45857 [ +45877 [ +45896 [ +45913 [ +45921 [ +45938 [ +45943 [ +45966 [ +45968 [ +45986 [ +46054 [ +46085 [ +46113 [ +46141 [ +46165 [ +46195 [ +46223 < +46227 [ +46231 < +46254 [ +46264 [ +46282 [ +46299 [ +46317 [ +46322 [ +46337 [ +46346 < +[ +46362 [ +46370 [ +46384 [ +46386 [ +46389 [ +46393 [ +46397 [ +46411 [ +46489 [ +46510 [ +46534 [ +46561 [ +46718 [ +46740 [ +46761 [ +46783 [ +46803 [ +46807 [ +46824 [ +[ +46828 [ +46838 [ +[ +46842 [ +46862 [ +46864 [ +46881 [ +[ +46900 [ +46919 < +46921 [ +46954 [ +46987 [ +47014 [ +47042 [ +47067 [ +47092 [ +47122 [ +47150 [ +47161 [ +47167 [ +47169 [ +47171 [ +47181 [ +47184 %sux +47193 [ +47205 [ +47212 [ +47237 [ +47240 [ +47267 [ +47295 [ +47329 [ +47354 [ +47388 [ +47420 {( +47457 < +47486 [ +47512 [ +47536 [ +47541 [ +47568 [ +47572 [ +47603 [ +47606 [ +47636 [ +47661 [ +47663 [ +47688 [ +47690 [ +47714 [ +47743 [ +47771 [ +47776 [ +47787 [ +47792 [ +47802 [ +47809 [ +47827 [ +47831 [ +47838 [ +47847 [ +47877 [ +47909 [ +47941 [ +47969 [ +48001 [ +48031 [ +48062 [ +48086 [ +48107 [ +48130 < +48134 [ +48164 [ +48182 [ +48200 [ +48208 [ +48226 [ +48228 [ +48242 [ +48246 [ +48264 [ +48280 [ +48306 [ +48332 [ +48354 [ +48383 [ +48411 [ +48443 [ +48847 [ +48874 [ +48890 [ +48895 < +48904 [ +48920 [ +48936 [ +48958 [ +48972 [ +48995 [ +49006 [ +49012 [ +49015 [ +49017 [ +49019 [ +49026 [ +49036 [ +49048 [ +49069 [ +49075 [ +49085 [ +49101 [ +49115 [ +49135 [ +49157 [ +49185 [ +49218 [ +49278 [ +49315 [ +49340 [ +49366 [ +49603 [ +49628 [ +49739 [ +49747 [ +49762 [ +49769 [ +49786 [ +49856 [ +49888 [ +49924 [ +49931 [ +49962 [ +49969 [ +49995 [ +50030 [ +50072 [ +50106 [ +50148 [ +50170 [ +50190 [ +50209 [ +50248 [ +50282 [ +50548 [ +50558 [ +50560 [ +50573 %sux [ +50578 [ +50585 %sux +50590 [ +50598 %sux +50601 [ +50606 %sux +50611 [ +50619 [ +50624 [ +50637 [ +50641 [ +50652 %sux [ +50658 [ +50666 %sux +50672 [ +50680 [ +50683 [ +50698 [ +50703 [ +50719 [ +50722 %sux [ +50737 [ +%sux [ +50757 [ +%sux [ +50775 [ +%sux [ +50784 [ +50789 %sux [ +50795 [ +%sux [ +50805 [ +50808 [ +50813 [ +50815 %sux [ +50825 [ +50834 [ +50840 [ +50852 [ +50861 %sux [ +50867 [ +50871 %sux +50876 [ +50880 %sux [ +50887 [ +50893 %sux +50902 [ +50909 [ +50911 [ +[ +50919 [ +50921 [ +50932 [ +50936 [ +50945 [ +50948 [ +50965 [ +50969 [ +50987 [ +[ +51009 [ +51013 [ +51035 [ +51037 [ +51059 [ +51061 [ +51080 [ +51082 [ +51104 [ +51108 [ +51129 [ +51132 [ +51155 [ +[ +51172 [ +51174 [ +51186 [ +51190 [ +51207 [ +51209 [ +51212 [ +51215 [ +51219 [ +51222 [ +51227 [ +51229 [ +51235 [ +51238 [ +51240 [ +51242 [ +51254 [ +51256 ( +[ +51272 [ +51288 [ +51302 [ +51326 [ +51345 [ +51359 [ +51374 [ +51397 [( +51422 [( +51450 [( +51474 [ +51478 [ +51499 [( +51507 [ +51523 [ +51529 [ +51540 [ +51545 [ +51559 [ +51572 [ +51583 [ +51591 [ +51604 [ +51620 [ +51640 [ +51656 [ +51673 [ +%sux +51684 [ +51686 %sux +51693 [ +51696 %sux +51701 [ +51705 %sux +51710 [ +51715 %sux +51721 [ +51724 [ +51726 %sux +51730 [ +51733 [ +51735 %sux +51739 [ +51744 [ +51746 %sux +51753 [ +51759 [ +51768 [ +51771 [ +51781 [ +51785 [ +51796 [ +51798 [ +51801 [ +51808 [ +51815 [ +51828 [ +51834 [ +[ +51845 [ +[ +51855 [ +[ +51864 [ +[ +51867 [ +51870 [ +51873 [ +51875 [ +51890 [ +51896 [ +51907 [ +51912 [ +51933 [ +51938 [ +51945 [ +51951 [ +51965 [ +51988 [ +51990 ( +52016 [ +52019 [ +52030 [ +52043 [ +52045 [ +52074 [ +52077 [ +52108 [ +52110 [ +52132 [ +52138 [ +[ +52160 [ +52165 [ +[ +52186 [ +52192 [ +52226 [ +52310 [ +52335 [( +52355 [ +52357 ( +52364 [ +52377 [ +52389 [( +52398 [ +52406 [ +52417 [ +52424 [ +52426 [ +52428 [ +52433 [ +52440 [ +52442 [ +52449 [ +52460 [ +52473 [ +52488 [ +52518 [ +52570 [ +52586 << +52595 [ +52602 [ +52612 [ +52620 %sux [ +52622 [ +52639 %sux +52644 [ +52671 [ +52692 [ +52711 [ +52719 %sux +52726 [ +52734 %sux [ +52741 [ +52750 %sux [ +52757 [ +52770 [ +52789 [ +52813 [ diff --git a/tf/0.3/col.tf b/tf/0.3/col.tf new file mode 100644 index 0000000..685708d --- /dev/null +++ b/tf/0.3/col.tf @@ -0,0 +1,2948 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=ATF column number +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=int +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +59362 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +59437 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +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 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +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 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +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 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +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 +59905 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +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 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +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 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +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 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +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 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +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 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +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 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +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 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +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 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +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 +60820 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +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 +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 +1 +1 +1 +1 +1 +1 +1 +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 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +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 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +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 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +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 +1 +1 +1 +1 +1 +1 +1 +1 +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 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +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 +61441 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +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 +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 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +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 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +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 +1 +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 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +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 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +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 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +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 +1 +1 +1 +1 +1 +1 +1 +62289 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 +62344 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +4 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 diff --git a/tf/0.3/collated.tf b/tf/0.3/collated.tf new file mode 100644 index 0000000..49359d9 --- /dev/null +++ b/tf/0.3/collated.tf @@ -0,0 +1,11 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=whether a sign is collated (*) +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=int +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +27444 1 diff --git a/tf/0.3/collection.tf b/tf/0.3/collection.tf new file mode 100644 index 0000000..eca7c00 --- /dev/null +++ b/tf/0.3/collection.tf @@ -0,0 +1,44 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=collection name from metadata field "collection" +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=str +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +59226 Kuyunjik + +Kuyunjik +Kuyunjik +Kuyunjik +Kuyunjik +Kuyunjik +Kuyunjik +Kuyunjik +Kuyunjik +Kuyunjik +Kuyunjik +Kuyunjik +Kuyunjik +Kuyunjik +Kuyunjik +Kuyunjik +Kuyunjik +Kuyunjik +Kuyunjik +Kuyunjik +Kuyunjik +Kuyunjik +Kuyunjik +Kuyunjik +Kuyunjik +Kuyunjik +Kuyunjik +Kuyunjik +Kuyunjik +Kuyunjik +Kuyunjik +Kuyunjik +Kuyunjik diff --git a/tf/0.3/colofon.tf b/tf/0.3/colofon.tf new file mode 100644 index 0000000..35607e7 --- /dev/null +++ b/tf/0.3/colofon.tf @@ -0,0 +1,18 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=colofon comment to a line +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=str +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +59375 colophon +60155 colophon +60406 colophon +60801 colophon +61418 colophon +61435 colophon +61539 colophon +62374 colophon diff --git a/tf/0.3/comment.tf b/tf/0.3/comment.tf new file mode 100644 index 0000000..fbb327a --- /dev/null +++ b/tf/0.3/comment.tf @@ -0,0 +1,24 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=comment to a line +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=str +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +59699 (approximately 10 missing lines) +60084 (erased line) +60255 (approximately 5 missing lines) +60307 (approximately 23 missing lines) +60331 (approximately 25 missing lines) +60384 (approximately 11 missing lines) +61527 (approximately 7 missing lines) +61781 (approximately 25 missing lines) +61804 (approximately 30 missing lines) +61896 (approximately 9 missing lines) +61915 (approximately 2 missing lines) +61965 (approximately 23 missing lines) +62011 (2 missing lines) +62369 (approximately 51 missing lines) diff --git a/tf/0.3/damage.tf b/tf/0.3/damage.tf new file mode 100644 index 0000000..f22e7d4 --- /dev/null +++ b/tf/0.3/damage.tf @@ -0,0 +1,4485 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=whether a sign is damaged +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=int +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +6 1 +18 1 +1 +48 1 +1 +65 1 +183 1 +215 1 +226 1 +259 1 +263 1 +282 1 +1 +295 1 +449 1 +1 +1 +607 1 +647 1 +674 1 +681 1 +706 1 +1 +1 +1 +1 +713 1 +1 +1 +793 1 +851 1 +866 1 +887 1 +1 +1 +899 1 +1 +914 1 +1 +1 +960 1 +1 +1040 1 +1 +1056 1 +1 +1065 1 +1144 1 +1193 1 +1 +1212 1 +1221 1 +1244 1 +1253 1 +1 +1296 1 +1310 1 +1 +1 +1334 1 +1343 1 +1 +1357 1 +1365 1 +1 +1 +1376 1 +1383 1 +1416 1 +1456 1 +1458 1 +1 +1488 1 +1502 1 +1 +1 +1514 1 +1532 1 +1567 1 +1579 1 +1583 1 +1607 1 +1 +1 +1 +1 +1613 1 +1 +1656 1 +1 +1665 1 +1 +1675 1 +1 +1684 1 +1687 1 +1725 1 +1 +1 +1 +1811 1 +1950 1 +1969 1 +1 +1 +1 +1 +1 +1 +1 +1998 1 +1 +1 +1 +1 +2014 1 +2023 1 +2087 1 +1 +2171 1 +2197 1 +2303 1 +1 +2333 1 +1 +2463 1 +1 +2484 1 +2503 1 +1 +1 +1 +1 +2510 1 +1 +1 +1 +2542 1 +2546 1 +2605 1 +1 +2669 1 +2688 1 +1 +2703 1 +2728 1 +2734 1 +2753 1 +2767 1 +2928 1 +2948 1 +2950 1 +2954 1 +1 +1 +1 +1 +1 +1 +2983 1 +3003 1 +3059 1 +3064 1 +1 +1 +3071 1 +1 +3076 1 +1 +3087 1 +1 +3090 1 +3097 1 +3121 1 +3199 1 +3213 1 +1 +3224 1 +1 +1 +1 +3230 1 +1 +1 +1 +1 +1 +3239 1 +3275 1 +1 +1 +3311 1 +1 +1 +1 +3340 1 +3359 1 +1 +3372 1 +1 +3384 1 +1 +3408 1 +3472 1 +3500 1 +1 +1 +3507 1 +3524 1 +1 +1 +1 +1 +1 +1 +3535 1 +1 +1 +1 +1 +3546 1 +3556 1 +1 +1 +1 +1 +1 +1 +1 +3567 1 +3578 1 +3584 1 +1 +1 +3597 1 +1 +3613 1 +3624 1 +3631 1 +1 +3635 1 +1 +3651 1 +3656 1 +1 +3672 1 +1 +3683 1 +3692 1 +3707 1 +3715 1 +3754 1 +1 +1 +1 +3810 1 +1 +1 +3847 1 +3865 1 +1 +1 +1 +1 +1 +1 +1 +3880 1 +3897 1 +1 +1 +1 +1 +1 +1 +1 +3907 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +3950 1 +1 +3953 1 +3963 1 +3972 1 +1 +1 +4007 1 +1 +4046 1 +1 +1 +1 +4056 1 +1 +1 +4064 1 +1 +4073 1 +1 +4105 1 +4117 1 +4133 1 +1 +4150 1 +4210 1 +4217 1 +4219 1 +1 +1 +4307 1 +4321 1 +4362 1 +4364 1 +4373 1 +4433 1 +4478 1 +1 +4486 1 +4517 1 +1 +4527 1 +1 +4569 1 +4571 1 +4582 1 +1 +4596 1 +4629 1 +4676 1 +4692 1 +4694 1 +1 +1 +1 +4706 1 +4713 1 +1 +1 +1 +1 +4739 1 +4751 1 +4764 1 +1 +4767 1 +4781 1 +4786 1 +1 +4804 1 +4807 1 +4829 1 +4849 1 +4875 1 +4889 1 +4898 1 +5112 1 +5117 1 +5132 1 +1 +5138 1 +1 +1 +5158 1 +5166 1 +5177 1 +1 +5219 1 +5226 1 +1 +1 +1 +1 +1 +5247 1 +1 +1 +1 +1 +1 +1 +5280 1 +1 +5285 1 +1 +1 +1 +1 +5313 1 +5334 1 +5339 1 +5362 1 +5364 1 +1 +1 +1 +5418 1 +5482 1 +1 +1 +1 +1 +5506 1 +5513 1 +5527 1 +1 +5533 1 +1 +5548 1 +5559 1 +1 +1 +5569 1 +5579 1 +5582 1 +1 +1 +1 +5615 1 +5621 1 +1 +1 +5625 1 +1 +5632 1 +5647 1 +1 +1 +1 +1 +1 +1 +5670 1 +5688 1 +1 +5698 1 +1 +5717 1 +5724 1 +5744 1 +1 +1 +1 +5750 1 +5775 1 +1 +1 +1 +1 +1 +5796 1 +5798 1 +5809 1 +5820 1 +1 +1 +1 +5847 1 +5852 1 +1 +5863 1 +5872 1 +1 +5877 1 +1 +1 +1 +1 +1 +1 +1 +5896 1 +1 +5904 1 +1 +1 +1 +1 +1 +5911 1 +1 +1 +5917 1 +5919 1 +5922 1 +1 +5933 1 +1 +5937 1 +1 +1 +5941 1 +1 +1 +1 +1 +1 +5965 1 +5978 1 +5987 1 +5994 1 +6109 1 +6140 1 +1 +1 +1 +1 +1 +6158 1 +1 +6170 1 +1 +6180 1 +6193 1 +1 +1 +6219 1 +6240 1 +6257 1 +6270 1 +6275 1 +1 +6291 1 +1 +6298 1 +1 +1 +1 +6317 1 +6321 1 +6335 1 +6340 1 +6342 1 +6358 1 +6363 1 +6380 1 +6387 1 +6393 1 +6410 1 +6447 1 +1 +6457 1 +1 +6471 1 +6476 1 +6483 1 +6488 1 +1 +1 +6520 1 +6545 1 +1 +6613 1 +6632 1 +1 +6641 1 +6645 1 +6700 1 +1 +6715 1 +6719 1 +1 +1 +1 +6743 1 +6748 1 +6752 1 +6764 1 +1 +1 +1 +6775 1 +6779 1 +1 +6792 1 +6811 1 +1 +6833 1 +6843 1 +6851 1 +1 +6864 1 +6873 1 +1 +1 +6878 1 +1 +1 +1 +1 +6898 1 +1 +1 +1 +6904 1 +6907 1 +1 +6924 1 +6931 1 +6945 1 +6955 1 +6961 1 +6964 1 +6978 1 +1 +6986 1 +6992 1 +1 +7000 1 +7002 1 +7010 1 +1 +7018 1 +1 +1 +1 +1 +7026 1 +7064 1 +7102 1 +7170 1 +7195 1 +1 +1 +1 +1 +7239 1 +1 +1 +1 +7261 1 +1 +7351 1 +1 +7361 1 +7389 1 +1 +7392 1 +7409 1 +7416 1 +7422 1 +7442 1 +1 +7464 1 +7468 1 +7481 1 +1 +7511 1 +7551 1 +7557 1 +7584 1 +7609 1 +7627 1 +7638 1 +7641 1 +7646 1 +7668 1 +7673 1 +1 +7687 1 +1 +1 +7704 1 +7712 1 +7738 1 +1 +7757 1 +7798 1 +7803 1 +1 +7820 1 +7889 1 +7925 1 +1 +7929 1 +7948 1 +7965 1 +7981 1 +7988 1 +1 +1 +7997 1 +8019 1 +8061 1 +8071 1 +8081 1 +1 +1 +1 +1 +8088 1 +1 +1 +8154 1 +8157 1 +8171 1 +1 +1 +8199 1 +8202 1 +1 +8206 1 +8208 1 +8239 1 +1 +8254 1 +8259 1 +1 +8277 1 +8354 1 +8403 1 +1 +8423 1 +1 +8485 1 +1 +8509 1 +1 +1 +8520 1 +8527 1 +8529 1 +1 +8542 1 +1 +1 +1 +8656 1 +8678 1 +1 +1 +1 +8698 1 +8708 1 +1 +8746 1 +1 +8860 1 +8908 1 +1 +8941 1 +8962 1 +8980 1 +9002 1 +9015 1 +9044 1 +1 +9055 1 +9065 1 +1 +9077 1 +1 +1 +9086 1 +9094 1 +1 +9097 1 +9113 1 +1 +1 +1 +9122 1 +1 +9140 1 +1 +1 +9145 1 +1 +9166 1 +1 +1 +1 +9189 1 +1 +1 +9205 1 +9212 1 +9216 1 +9227 1 +9246 1 +9258 1 +9268 1 +9278 1 +1 +1 +9305 1 +1 +9332 1 +1 +1 +9340 1 +9346 1 +9366 1 +9384 1 +1 +9442 1 +9458 1 +9478 1 +9480 1 +9511 1 +9543 1 +9571 1 +1 +9637 1 +9642 1 +9658 1 +1 +9802 1 +1 +9820 1 +1 +1 +9842 1 +9857 1 +1 +9878 1 +1 +9901 1 +9927 1 +9942 1 +9950 1 +9955 1 +9959 1 +9965 1 +9998 1 +10003 1 +10017 1 +1 +1 +1 +10023 1 +10064 1 +10099 1 +10103 1 +1 +1 +1 +10110 1 +10120 1 +1 +10123 1 +10167 1 +10178 1 +10191 1 +1 +1 +10195 1 +10206 1 +1 +10209 1 +10211 1 +1 +1 +1 +10218 1 +1 +10226 1 +10229 1 +1 +10264 1 +10280 1 +1 +1 +10292 1 +10304 1 +10327 1 +10342 1 +10350 1 +10372 1 +10391 1 +10398 1 +10412 1 +10418 1 +10420 1 +10425 1 +1 +10433 1 +10446 1 +1 +1 +10460 1 +1 +10468 1 +10472 1 +10478 1 +10495 1 +1 +10502 1 +10522 1 +1 +10529 1 +10554 1 +10577 1 +10580 1 +10605 1 +10646 1 +1 +1 +10655 1 +10666 1 +10687 1 +10698 1 +1 +10723 1 +1 +10886 1 +10901 1 +10924 1 +1 +10927 1 +10945 1 +1 +1 +10949 1 +1 +10978 1 +1 +1 +10986 1 +11002 1 +11022 1 +1 +11052 1 +11082 1 +11086 1 +11090 1 +11096 1 +11103 1 +11107 1 +1 +1 +11117 1 +1 +11122 1 +11129 1 +11135 1 +11140 1 +11153 1 +11163 1 +11167 1 +11173 1 +1 +11177 1 +11181 1 +11193 1 +1 +1 +11215 1 +11247 1 +1 +11252 1 +11267 1 +1 +11279 1 +11333 1 +11336 1 +11349 1 +1 +11364 1 +1 +11443 1 +11459 1 +11461 1 +11467 1 +11486 1 +11505 1 +11516 1 +11529 1 +11564 1 +1 +11579 1 +1 +1 +11591 1 +1 +11596 1 +11646 1 +11648 1 +11652 1 +11678 1 +11718 1 +11776 1 +11800 1 +11829 1 +11841 1 +11855 1 +11908 1 +1 +1 +1 +11954 1 +11965 1 +1 +11999 1 +1 +1 +12004 1 +12034 1 +12082 1 +1 +12136 1 +12150 1 +12165 1 +12182 1 +12184 1 +12213 1 +12233 1 +1 +12253 1 +12416 1 +12422 1 +12445 1 +1 +12462 1 +1 +1 +12470 1 +1 +1 +1 +1 +1 +12490 1 +1 +12503 1 +12512 1 +12520 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +12542 1 +12546 1 +1 +12549 1 +12570 1 +12586 1 +12597 1 +12631 1 +1 +12692 1 +12727 1 +12740 1 +1 +12747 1 +1 +1 +1 +12767 1 +12782 1 +1 +12786 1 +1 +12792 1 +1 +1 +12812 1 +1 +1 +12822 1 +12841 1 +12844 1 +1 +12863 1 +12901 1 +12939 1 +1 +1 +1 +12983 1 +13024 1 +13049 1 +1 +13066 1 +1 +1 +1 +13091 1 +1 +13103 1 +13107 1 +13111 1 +1 +1 +1 +13155 1 +13178 1 +13201 1 +1 +13210 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +13226 1 +1 +13231 1 +13235 1 +13241 1 +13265 1 +13291 1 +13349 1 +13448 1 +1 +13473 1 +13495 1 +13502 1 +13519 1 +13523 1 +13556 1 +1 +13561 1 +1 +13576 1 +13601 1 +13663 1 +13668 1 +13689 1 +13705 1 +13725 1 +13742 1 +1 +13759 1 +13775 1 +1 +1 +1 +13809 1 +13854 1 +13863 1 +1 +13873 1 +13888 1 +13895 1 +1 +1 +13952 1 +13968 1 +13970 1 +1 +1 +13988 1 +14011 1 +14053 1 +14063 1 +1 +14069 1 +14086 1 +1 +14108 1 +14123 1 +1 +14131 1 +14173 1 +14177 1 +14212 1 +14223 1 +14245 1 +1 +14264 1 +14270 1 +14277 1 +1 +14289 1 +14295 1 +1 +14300 1 +1 +1 +14318 1 +14334 1 +14349 1 +1 +14352 1 +14356 1 +14391 1 +14395 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +14448 1 +1 +1 +1 +1 +14460 1 +14465 1 +14477 1 +14496 1 +1 +14500 1 +14514 1 +14517 1 +1 +14534 1 +14549 1 +14551 1 +1 +1 +14570 1 +14572 1 +14581 1 +1 +14597 1 +1 +14617 1 +14633 1 +14646 1 +1 +1 +1 +1 +1 +1 +1 +1 +14682 1 +1 +1 +14688 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +14720 1 +1 +14763 1 +14788 1 +14808 1 +14811 1 +1 +1 +14833 1 +14860 1 +14885 1 +14895 1 +1 +14900 1 +14903 1 +14923 1 +14932 1 +1 +1 +1 +14952 1 +14959 1 +14981 1 +14990 1 +1 +14997 1 +15005 1 +15021 1 +1 +15028 1 +15067 1 +15085 1 +15098 1 +15100 1 +1 +15104 1 +15111 1 +15118 1 +15138 1 +15142 1 +1 +15151 1 +15161 1 +15164 1 +15208 1 +15248 1 +1 +15271 1 +1 +1 +15299 1 +15321 1 +15349 1 +1 +15356 1 +15366 1 +1 +1 +15372 1 +1 +1 +1 +15381 1 +15389 1 +1 +1 +15422 1 +15442 1 +1 +15446 1 +15459 1 +1 +1 +15473 1 +15482 1 +15533 1 +15539 1 +15558 1 +15571 1 +1 +1 +15608 1 +1 +15628 1 +1 +15646 1 +1 +1 +15652 1 +15663 1 +1 +1 +15706 1 +15720 1 +15731 1 +15736 1 +1 +15739 1 +1 +1 +15747 1 +1 +1 +1 +15760 1 +1 +15785 1 +15860 1 +15873 1 +15898 1 +1 +15916 1 +15974 1 +16001 1 +16059 1 +16077 1 +1 +16094 1 +16103 1 +1 +1 +16122 1 +16124 1 +16141 1 +16190 1 +16216 1 +16243 1 +16255 1 +16299 1 +16314 1 +1 +1 +1 +16321 1 +1 +1 +16329 1 +16350 1 +16362 1 +16401 1 +16429 1 +16451 1 +16476 1 +16503 1 +1 +1 +16535 1 +1 +1 +16549 1 +16576 1 +16616 1 +16651 1 +16660 1 +1 +1 +16677 1 +1 +1 +1 +16696 1 +1 +16737 1 +16751 1 +16854 1 +16868 1 +1 +16875 1 +16883 1 +16889 1 +16899 1 +1 +16942 1 +1 +16954 1 +1 +1 +16972 1 +16988 1 +16996 1 +1 +1 +1 +17021 1 +1 +17190 1 +17269 1 +17347 1 +17355 1 +1 +17379 1 +17384 1 +1 +1 +1 +17398 1 +17426 1 +17457 1 +1 +1 +1 +1 +1 +1 +17467 1 +1 +17474 1 +1 +1 +1 +1 +1 +17524 1 +17529 1 +17535 1 +17545 1 +1 +1 +17553 1 +1 +17560 1 +1 +1 +1 +1 +17571 1 +1 +17579 1 +1 +1 +1 +17589 1 +1 +1 +17596 1 +1 +1 +1 +17606 1 +17643 1 +17654 1 +17675 1 +1 +1 +1 +1 +17684 1 +17702 1 +1 +1 +1 +1 +17728 1 +1 +17776 1 +17801 1 +1 +1 +1 +17836 1 +17890 1 +17948 1 +17957 1 +1 +1 +1 +17969 1 +18008 1 +1 +18055 1 +18103 1 +18128 1 +18143 1 +1 +1 +18151 1 +18168 1 +18177 1 +1 +1 +18247 1 +18254 1 +18257 1 +18261 1 +18264 1 +1 +18270 1 +1 +18276 1 +18283 1 +18293 1 +18305 1 +18313 1 +18315 1 +1 +18325 1 +18340 1 +18350 1 +18364 1 +1 +1 +18375 1 +18400 1 +1 +18424 1 +1 +1 +18451 1 +18523 1 +1 +1 +1 +1 +18547 1 +1 +1 +1 +1 +18557 1 +18571 1 +1 +18574 1 +18607 1 +1 +1 +1 +18617 1 +18651 1 +18663 1 +1 +18686 1 +18732 1 +18734 1 +18857 1 +18984 1 +19010 1 +1 +1 +1 +19281 1 +19296 1 +1 +19319 1 +19327 1 +1 +1 +19344 1 +19367 1 +19408 1 +19472 1 +19476 1 +1 +19487 1 +19490 1 +1 +1 +19496 1 +19499 1 +1 +1 +1 +19508 1 +19511 1 +1 +19514 1 +19522 1 +19545 1 +1 +19558 1 +19564 1 +1 +19568 1 +1 +1 +1 +1 +1 +19580 1 +19583 1 +19592 1 +19595 1 +19610 1 +1 +19627 1 +1 +19635 1 +19640 1 +1 +19643 1 +19654 1 +19660 1 +1 +1 +19668 1 +19687 1 +1 +1 +19703 1 +1 +19707 1 +1 +1 +19714 1 +1 +19726 1 +1 +19738 1 +19741 1 +19749 1 +1 +19761 1 +1 +19772 1 +19792 1 +19807 1 +19881 1 +1 +1 +1 +1 +1 +19900 1 +19913 1 +20062 1 +20088 1 +1 +20092 1 +1 +1 +1 +1 +1 +1 +1 +1 +20102 1 +1 +1 +1 +20117 1 +20131 1 +20134 1 +20160 1 +20171 1 +20183 1 +1 +20201 1 +20210 1 +20341 1 +1 +1 +1 +1 +1 +20360 1 +1 +20374 1 +1 +20381 1 +1 +1 +20400 1 +20406 1 +1 +20413 1 +1 +20438 1 +1 +20462 1 +1 +20469 1 +1 +20478 1 +20489 1 +1 +20499 1 +20507 1 +1 +20512 1 +1 +20526 1 +20543 1 +20573 1 +1 +20579 1 +20595 1 +20598 1 +20603 1 +1 +20616 1 +20627 1 +1 +20687 1 +1 +20718 1 +1 +20736 1 +20747 1 +1 +20769 1 +20777 1 +20792 1 +20798 1 +20827 1 +20902 1 +20999 1 +1 +21012 1 +21021 1 +21070 1 +1 +1 +21078 1 +21091 1 +1 +1 +1 +1 +1 +1 +1 +21100 1 +21112 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +21134 1 +21197 1 +1 +21205 1 +1 +1 +1 +21236 1 +21338 1 +1 +1 +1 +1 +21388 1 +1 +1 +1 +1 +1 +21395 1 +1 +1 +21420 1 +21431 1 +1 +1 +21440 1 +1 +21456 1 +1 +21567 1 +21585 1 +21595 1 +21606 1 +21609 1 +21614 1 +1 +1 +1 +21636 1 +1 +1 +1 +21660 1 +1 +1 +1 +1 +1 +1 +21685 1 +1 +1 +1 +21692 1 +1 +1 +21697 1 +21712 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +21733 1 +21742 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +21767 1 +21772 1 +1 +21776 1 +1 +1 +1 +1 +1 +1 +1 +1 +21800 1 +21804 1 +1 +1 +1 +1 +21810 1 +1 +1 +21824 1 +1 +21827 1 +21830 1 +21832 1 +21842 1 +1 +1 +21850 1 +21861 1 +21868 1 +1 +21878 1 +1 +21958 1 +1 +21980 1 +21990 1 +22022 1 +22128 1 +22174 1 +22240 1 +1 +22253 1 +1 +1 +22274 1 +22454 1 +1 +22470 1 +22493 1 +22573 1 +22599 1 +22632 1 +22640 1 +22672 1 +1 +22678 1 +22730 1 +22792 1 +22803 1 +22810 1 +1 +22814 1 +1 +22817 1 +1 +22820 1 +1 +22841 1 +1 +22848 1 +22901 1 +22905 1 +22915 1 +1 +22920 1 +1 +1 +22924 1 +1 +1 +1 +1 +1 +1 +22932 1 +22939 1 +1 +22943 1 +1 +1 +22947 1 +1 +22966 1 +1 +1 +1 +23005 1 +1 +1 +1 +1 +1 +1 +23017 1 +1 +1 +23023 1 +1 +23032 1 +23045 1 +1 +23058 1 +23066 1 +1 +23120 1 +23131 1 +1 +23141 1 +23162 1 +1 +23167 1 +23185 1 +23235 1 +23258 1 +23277 1 +23305 1 +1 +23313 1 +23317 1 +23358 1 +23373 1 +23394 1 +23399 1 +23402 1 +23414 1 +23446 1 +23467 1 +23471 1 +1 +1 +1 +1 +23492 1 +23555 1 +23607 1 +23611 1 +23620 1 +23635 1 +1 +23643 1 +1 +23696 1 +23702 1 +23823 1 +1 +1 +23853 1 +1 +1 +1 +1 +1 +23871 1 +23893 1 +23914 1 +23992 1 +1 +1 +1 +24012 1 +24036 1 +1 +24044 1 +24053 1 +1 +1 +24072 1 +24077 1 +1 +24086 1 +24099 1 +1 +1 +1 +1 +1 +24111 1 +1 +24114 1 +1 +1 +24126 1 +1 +24134 1 +24143 1 +24159 1 +1 +24167 1 +24169 1 +24188 1 +24192 1 +24211 1 +1 +24231 1 +24239 1 +24249 1 +24272 1 +24289 1 +1 +1 +24296 1 +1 +1 +1 +24378 1 +24388 1 +1 +24395 1 +1 +1 +24400 1 +1 +1 +1 +1 +24413 1 +24429 1 +24465 1 +1 +1 +24469 1 +1 +24500 1 +24511 1 +24537 1 +1 +24559 1 +24571 1 +24603 1 +1 +1 +24639 1 +24657 1 +24678 1 +24689 1 +24698 1 +24701 1 +24708 1 +24726 1 +1 +24743 1 +1 +1 +24803 1 +24844 1 +1 +24875 1 +24920 1 +24932 1 +24942 1 +24951 1 +24961 1 +1 +1 +1 +24968 1 +24971 1 +1 +25070 1 +1 +25079 1 +25093 1 +25095 1 +25138 1 +25158 1 +25206 1 +1 +25221 1 +1 +25232 1 +25237 1 +1 +1 +25252 1 +25294 1 +1 +1 +1 +1 +25314 1 +25324 1 +1 +25338 1 +1 +1 +25348 1 +25357 1 +1 +1 +1 +1 +1 +25369 1 +1 +25394 1 +25403 1 +25417 1 +1 +1 +1 +1 +1 +1 +1 +1 +25430 1 +25445 1 +25451 1 +1 +1 +1 +25470 1 +25478 1 +25483 1 +1 +1 +1 +1 +25547 1 +25556 1 +25561 1 +25564 1 +25571 1 +1 +25579 1 +1 +1 +25593 1 +25602 1 +1 +25614 1 +1 +25629 1 +1 +25644 1 +1 +1 +25657 1 +1 +1 +25665 1 +1 +25678 1 +25681 1 +1 +25687 1 +25709 1 +1 +25732 1 +1 +25758 1 +1 +25800 1 +1 +25846 1 +25915 1 +25945 1 +1 +1 +1 +1 +25957 1 +25959 1 +25961 1 +1 +1 +25976 1 +1 +1 +25984 1 +25987 1 +25994 1 +26001 1 +26018 1 +1 +1 +1 +26049 1 +1 +26073 1 +1 +1 +26218 1 +1 +1 +26228 1 +26252 1 +26254 1 +1 +26267 1 +26294 1 +26300 1 +26320 1 +26339 1 +26408 1 +26428 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +26460 1 +26462 1 +26485 1 +26512 1 +26539 1 +1 +26554 1 +26583 1 +1 +1 +1 +26598 1 +1 +26602 1 +26613 1 +26633 1 +26652 1 +26660 1 +26674 1 +1 +1 +1 +1 +26686 1 +26693 1 +1 +26696 1 +1 +1 +26716 1 +26718 1 +26738 1 +1 +1 +1 +26745 1 +1 +1 +1 +26783 1 +26789 1 +26817 1 +1 +1 +1 +1 +1 +26832 1 +1 +26842 1 +1 +1 +1 +1 +1 +26870 1 +26882 1 +26891 1 +26945 1 +27004 1 +27019 1 +27035 1 +27038 1 +1 +1 +27072 1 +27081 1 +27102 1 +27112 1 +1 +27122 1 +1 +1 +27135 1 +1 +1 +1 +1 +1 +27156 1 +1 +1 +1 +1 +27176 1 +27209 1 +27273 1 +27300 1 +1 +27323 1 +1 +1 +1 +1 +27394 1 +27496 1 +1 +27546 1 +27559 1 +1 +1 +1 +1 +27584 1 +1 +27631 1 +1 +1 +1 +27684 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +27704 1 +1 +1 +1 +1 +27747 1 +1 +1 +27774 1 +1 +1 +1 +27791 1 +27895 1 +1 +1 +27911 1 +1 +1 +1 +27921 1 +1 +1 +28003 1 +1 +1 +1 +1 +28019 1 +1 +1 +1 +1 +1 +28069 1 +1 +1 +28084 1 +1 +1 +1 +1 +1 +1 +1 +1 +28108 1 +28117 1 +28134 1 +28182 1 +28201 1 +28218 1 +1 +28259 1 +1 +28265 1 +28267 1 +1 +1 +28272 1 +1 +28282 1 +28293 1 +28332 1 +1 +28357 1 +28379 1 +28421 1 +1 +28431 1 +1 +1 +1 +1 +28444 1 +28526 1 +28545 1 +1 +28554 1 +1 +1 +28570 1 +1 +28594 1 +28596 1 +28629 1 +28636 1 +28645 1 +28652 1 +1 +28656 1 +1 +28660 1 +28670 1 +1 +28687 1 +28698 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +28739 1 +28775 1 +28791 1 +28815 1 +1 +28824 1 +28843 1 +1 +28847 1 +28852 1 +1 +28858 1 +28867 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +28904 1 +1 +1 +28920 1 +1 +1 +28927 1 +28977 1 +1 +29001 1 +29021 1 +29036 1 +29042 1 +29072 1 +1 +1 +29101 1 +29110 1 +1 +29131 1 +1 +29145 1 +1 +29155 1 +29167 1 +1 +29190 1 +29243 1 +29246 1 +29281 1 +29305 1 +29329 1 +29364 1 +29368 1 +1 +29383 1 +29413 1 +29417 1 +29439 1 +29449 1 +1 +1 +29466 1 +1 +1 +29478 1 +1 +29485 1 +29490 1 +1 +29499 1 +1 +29515 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +29550 1 +29621 1 +29627 1 +1 +1 +1 +1 +1 +29662 1 +29784 1 +29809 1 +1 +29823 1 +29831 1 +29935 1 +1 +1 +29985 1 +29996 1 +30036 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +30056 1 +30079 1 +30083 1 +30130 1 +30153 1 +1 +1 +30188 1 +1 +30191 1 +1 +30220 1 +1 +30231 1 +30258 1 +30265 1 +30275 1 +1 +1 +30295 1 +1 +30307 1 +1 +1 +1 +1 +1 +1 +1 +1 +30351 1 +30378 1 +1 +30409 1 +30418 1 +30435 1 +1 +30483 1 +30617 1 +30636 1 +30701 1 +1 +30718 1 +30724 1 +30759 1 +30766 1 +1 +1 +1 +1 +30877 1 +30899 1 +30905 1 +30909 1 +1 +30917 1 +30921 1 +30953 1 +30961 1 +1 +31004 1 +31064 1 +31078 1 +31097 1 +31115 1 +31159 1 +31162 1 +31182 1 +31215 1 +31272 1 +31276 1 +1 +1 +1 +1 +1 +1 +31301 1 +31327 1 +1 +1 +1 +31349 1 +31365 1 +31399 1 +31422 1 +31463 1 +31465 1 +31475 1 +1 +31489 1 +31503 1 +1 +31512 1 +31532 1 +31549 1 +1 +31691 1 +1 +1 +31731 1 +1 +1 +1 +1 +1 +1 +31758 1 +31777 1 +31823 1 +1 +1 +1 +31869 1 +1 +1 +31885 1 +31911 1 +31977 1 +31993 1 +1 +32014 1 +32039 1 +32046 1 +32069 1 +32086 1 +32096 1 +32112 1 +32116 1 +32123 1 +32127 1 +32157 1 +32163 1 +32178 1 +1 +32195 1 +32214 1 +1 +1 +32255 1 +1 +1 +1 +1 +1 +32275 1 +1 +1 +32280 1 +32291 1 +32320 1 +32348 1 +32376 1 +32397 1 +32407 1 +1 +32420 1 +1 +1 +32428 1 +32456 1 +32467 1 +32472 1 +32482 1 +1 +32497 1 +1 +1 +1 +32506 1 +32520 1 +1 +32526 1 +1 +1 +32534 1 +32563 1 +1 +32582 1 +1 +32597 1 +1 +1 +1 +1 +1 +32617 1 +32632 1 +1 +1 +1 +32646 1 +32661 1 +32667 1 +1 +1 +32678 1 +32685 1 +1 +32693 1 +1 +1 +1 +1 +1 +32752 1 +1 +32758 1 +32772 1 +1 +32777 1 +32786 1 +32802 1 +1 +32817 1 +32820 1 +32834 1 +32846 1 +32848 1 +32854 1 +32863 1 +32865 1 +32891 1 +1 +1 +1 +1 +32913 1 +32915 1 +32936 1 +1 +32962 1 +32980 1 +1 +32987 1 +32997 1 +33003 1 +33015 1 +33022 1 +1 +33039 1 +1 +33046 1 +33066 1 +1 +33076 1 +1 +33090 1 +33095 1 +33109 1 +1 +1 +33119 1 +1 +33129 1 +1 +33140 1 +33150 1 +33160 1 +1 +1 +1 +1 +1 +33168 1 +1 +1 +33178 1 +1 +1 +33196 1 +33201 1 +1 +1 +33211 1 +1 +33231 1 +33247 1 +33265 1 +33300 1 +1 +33314 1 +33326 1 +1 +33335 1 +33394 1 +1 +1 +33436 1 +1 +33456 1 +33529 1 +33535 1 +33571 1 +33580 1 +33610 1 +1 +33615 1 +1 +33624 1 +33626 1 +33641 1 +33645 1 +33648 1 +33652 1 +33656 1 +33664 1 +33681 1 +33683 1 +33696 1 +33698 1 +1 +1 +1 +1 +33713 1 +33720 1 +1 +33732 1 +1 +33739 1 +33742 1 +33755 1 +1 +33761 1 +1 +1 +33794 1 +33804 1 +33820 1 +1 +1 +1 +1 +33842 1 +1 +1 +33864 1 +33881 1 +33885 1 +33898 1 +1 +33941 1 +33962 1 +33981 1 +34005 1 +34007 1 +34018 1 +1 +1 +34025 1 +1 +34035 1 +34053 1 +34055 1 +34060 1 +34073 1 +34078 1 +1 +34091 1 +34099 1 +34129 1 +34166 1 +34169 1 +34178 1 +1 +1 +1 +1 +1 +1 +34188 1 +34194 1 +34196 1 +34201 1 +34214 1 +34221 1 +1 +1 +34253 1 +34362 1 +34367 1 +34369 1 +34378 1 +34446 1 +34488 1 +34500 1 +34504 1 +34519 1 +34530 1 +34539 1 +34551 1 +34569 1 +34584 1 +34591 1 +34645 1 +1 +1 +1 +34654 1 +1 +1 +1 +34669 1 +1 +1 +1 +34674 1 +1 +34691 1 +1 +1 +1 +34696 1 +34710 1 +1 +1 +34726 1 +34729 1 +34742 1 +34745 1 +34747 1 +34749 1 +1 +34768 1 +1 +34771 1 +1 +34803 1 +34876 1 +34898 1 +1 +34914 1 +1 +34946 1 +34959 1 +1 +1 +34979 1 +34998 1 +1 +35072 1 +35097 1 +35114 1 +35200 1 +1 +35221 1 +1 +35227 1 +1 +1 +35232 1 +35234 1 +35264 1 +1 +35273 1 +35275 1 +35277 1 +1 +35294 1 +35296 1 +1 +35350 1 +35385 1 +35398 1 +1 +35417 1 +35476 1 +35502 1 +1 +35539 1 +1 +35608 1 +1 +35647 1 +35658 1 +35661 1 +35685 1 +1 +35699 1 +35788 1 +35847 1 +1 +35954 1 +35974 1 +36153 1 +36186 1 +1 +36192 1 +36207 1 +36209 1 +1 +36244 1 +36262 1 +36301 1 +36307 1 +1 +1 +1 +1 +1 +36323 1 +1 +36326 1 +36330 1 +36348 1 +1 +36470 1 +36495 1 +36502 1 +36538 1 +1 +1 +36564 1 +1 +1 +36581 1 +1 +1 +1 +1 +1 +1 +1 +36604 1 +1 +36631 1 +36639 1 +1 +36696 1 +36715 1 +36747 1 +36784 1 +36815 1 +36817 1 +36844 1 +36846 1 +36874 1 +1 +36896 1 +37120 1 +37280 1 +37338 1 +37340 1 +1 +37352 1 +37354 1 +37364 1 +37367 1 +1 +1 +1 +1 +37375 1 +1 +37379 1 +37383 1 +1 +37386 1 +37404 1 +1 +1 +37444 1 +37462 1 +37481 1 +1 +37485 1 +37507 1 +37512 1 +37534 1 +37538 1 +1 +37560 1 +37562 1 +1 +37569 1 +37578 1 +1 +1 +1 +1 +37592 1 +37594 1 +1 +37606 1 +1 +37628 1 +37630 1 +1 +37636 1 +37671 1 +1 +37710 1 +37741 1 +1 +1 +37771 1 +37790 1 +37799 1 +1 +37804 1 +37837 1 +37841 1 +37876 1 +37883 1 +37888 1 +37907 1 +37911 1 +37920 1 +37938 1 +37944 1 +37953 1 +37958 1 +1 +1 +1 +1 +1 +37966 1 +1 +1 +1 +1 +1 +1 +37975 1 +1 +37987 1 +38005 1 +38058 1 +38115 1 +38120 1 +38136 1 +38167 1 +38184 1 +38192 1 +1 +1 +1 +38266 1 +1 +38273 1 +38277 1 +38279 1 +38290 1 +1 +38294 1 +1 +38298 1 +38312 1 +38321 1 +38328 1 +38344 1 +1 +38369 1 +38375 1 +38390 1 +38403 1 +38421 1 +38424 1 +38434 1 +1 +1 +38446 1 +1 +38463 1 +38471 1 +38486 1 +38501 1 +38505 1 +38520 1 +38540 1 +1 +38545 1 +38564 1 +1 +1 +1 +38629 1 +38658 1 +1 +38714 1 +38723 1 +38728 1 +38734 1 +38758 1 +38764 1 +38775 1 +38787 1 +38789 1 +38794 1 +1 +38822 1 +1 +38847 1 +1 +38851 1 +1 +38863 1 +38870 1 +1 +38878 1 +38885 1 +38895 1 +1 +38898 1 +38915 1 +1 +38934 1 +38950 1 +38971 1 +38995 1 +39014 1 +39021 1 +39037 1 +1 +39045 1 +39049 1 +1 +1 +1 +1 +39083 1 +1 +39087 1 +39092 1 +1 +1 +39098 1 +39102 1 +1 +39108 1 +39113 1 +1 +1 +1 +39122 1 +39143 1 +1 +1 +39148 1 +39160 1 +1 +39167 1 +39169 1 +39182 1 +39212 1 +39225 1 +1 +39257 1 +39304 1 +1 +39319 1 +39331 1 +39333 1 +39335 1 +39348 1 +39407 1 +39459 1 +39479 1 +39505 1 +1 +39529 1 +1 +39533 1 +39621 1 +1 +39627 1 +39645 1 +39673 1 +1 +39698 1 +1 +39726 1 +1 +39747 1 +1 +1 +1 +39775 1 +39828 1 +39846 1 +39861 1 +39868 1 +1 +1 +1 +1 +1 +39900 1 +1 +39911 1 +1 +39922 1 +39931 1 +39935 1 +1 +39947 1 +39961 1 +1 +1 +39970 1 +39973 1 +39982 1 +1 +39986 1 +1 +40014 1 +40029 1 +40050 1 +40057 1 +1 +40091 1 +40138 1 +40166 1 +40191 1 +1 +1 +40215 1 +40247 1 +1 +1 +40252 1 +1 +40263 1 +40283 1 +1 +40287 1 +40298 1 +40307 1 +40313 1 +1 +40316 1 +40318 1 +40360 1 +40365 1 +40387 1 +40472 1 +1 +40492 1 +1 +1 +1 +1 +40519 1 +40541 1 +1 +40546 1 +1 +40565 1 +40567 1 +40585 1 +40606 1 +1 +1 +40638 1 +40677 1 +40695 1 +1 +1 +1 +1 +1 +1 +1 +40716 1 +40720 1 +1 +1 +40726 1 +40728 1 +1 +40732 1 +1 +40735 1 +1 +1 +1 +40750 1 +40753 1 +1 +1 +1 +40761 1 +1 +1 +1 +1 +40792 1 +40831 1 +40838 1 +40850 1 +40873 1 +1 +40904 1 +40929 1 +40956 1 +40960 1 +40985 1 +40988 1 +41009 1 +41032 1 +41128 1 +41144 1 +41166 1 +41223 1 +1 +41227 1 +41229 1 +41237 1 +41258 1 +1 +1 +41263 1 +41336 1 +1 +1 +41356 1 +1 +41366 1 +1 +41388 1 +1 +41403 1 +1 +1 +41438 1 +41450 1 +41456 1 +1 +41468 1 +1 +41499 1 +41551 1 +1 +41576 1 +41578 1 +41639 1 +41687 1 +1 +1 +41701 1 +41710 1 +41731 1 +1 +41749 1 +41752 1 +1 +1 +1 +41787 1 +41812 1 +1 +41841 1 +41919 1 +41938 1 +41956 1 +1 +1 +41970 1 +41997 1 +1 +1 +1 +42006 1 +42038 1 +42043 1 +42050 1 +42056 1 +1 +1 +1 +1 +1 +1 +42080 1 +42088 1 +1 +42093 1 +42128 1 +42194 1 +42203 1 +1 +42220 1 +42223 1 +42246 1 +42249 1 +1 +42346 1 +42350 1 +1 +1 +1 +1 +42416 1 +1 +42459 1 +42480 1 +42497 1 +1 +42551 1 +42554 1 +42569 1 +42571 1 +42589 1 +42662 1 +1 +1 +42668 1 +42698 1 +1 +1 +1 +42772 1 +42829 1 +1 +42833 1 +42850 1 +42869 1 +42921 1 +42939 1 +1 +42959 1 +42968 1 +42988 1 +42997 1 +1 +43007 1 +43011 1 +43020 1 +43022 1 +43056 1 +43064 1 +1 +43085 1 +1 +1 +43104 1 +1 +1 +1 +43121 1 +1 +43133 1 +1 +1 +43142 1 +43152 1 +43178 1 +43183 1 +43223 1 +1 +43351 1 +43366 1 +43384 1 +43395 1 +43405 1 +43431 1 +43444 1 +1 +43450 1 +43460 1 +43463 1 +43471 1 +43483 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +43560 1 +43667 1 +43751 1 +43820 1 +1 +1 +1 +1 +1 +1 +1 +1 +43851 1 +1 +1 +1 +43874 1 +43884 1 +43891 1 +43897 1 +1 +43927 1 +43938 1 +43973 1 +43985 1 +44000 1 +44025 1 +1 +1 +44054 1 +1 +44060 1 +44075 1 +44092 1 +1 +1 +1 +44101 1 +44113 1 +44120 1 +1 +44131 1 +1 +44144 1 +44158 1 +44169 1 +1 +1 +44184 1 +44193 1 +44202 1 +44209 1 +44229 1 +44236 1 +44249 1 +44282 1 +1 +1 +44360 1 +1 +44434 1 +44494 1 +44504 1 +1 +1 +1 +1 +44551 1 +44568 1 +44580 1 +44608 1 +44632 1 +44634 1 +1 +1 +1 +1 +44674 1 +44701 1 +44711 1 +44723 1 +44752 1 +1 +44794 1 +1 +1 +44826 1 +1 +44846 1 +44853 1 +44866 1 +44875 1 +44886 1 +44904 1 +1 +44938 1 +1 +44961 1 +44985 1 +1 +1 +45047 1 +1 +45052 1 +45064 1 +1 +45069 1 +45081 1 +1 +45096 1 +45103 1 +1 +45114 1 +45121 1 +1 +45133 1 +45137 1 +1 +45146 1 +45157 1 +45226 1 +45237 1 +45258 1 +45263 1 +45281 1 +45287 1 +45294 1 +45308 1 +45318 1 +45373 1 +1 +1 +1 +1 +45397 1 +1 +1 +1 +45402 1 +1 +1 +45409 1 +1 +1 +1 +45428 1 +45430 1 +45445 1 +45503 1 +1 +45514 1 +45617 1 +1 +45641 1 +1 +45664 1 +45695 1 +45703 1 +45723 1 +45737 1 +1 +45758 1 +45783 1 +45792 1 +1 +45810 1 +1 +45891 1 +1 +45895 1 +45906 1 +1 +45912 1 +45916 1 +45919 1 +1 +45936 1 +1 +45941 1 +1 +45963 1 +1 +1 +45984 1 +1 +45987 1 +46013 1 +46030 1 +46084 1 +46108 1 +1 +46133 1 +1 +46158 1 +46182 1 +1 +1 +46214 1 +1 +46240 1 +1 +46253 1 +46266 1 +46291 1 +46307 1 +46345 1 +46364 1 +1 +46369 1 +46379 1 +1 +1 +1 +1 +46405 1 +1 +1 +1 +1 +1 +46418 1 +1 +1 +46422 1 +1 +46433 1 +1 +46441 1 +1 +46464 1 +46482 1 +1 +46536 1 +46586 1 +46611 1 +46635 1 +46656 1 +1 +1 +46664 1 +46684 1 +46691 1 +46760 1 +46780 1 +46802 1 +46806 1 +46859 1 +46918 1 +46920 1 +46922 1 +46931 1 +1 +1 +1 +1 +46957 1 +1 +1 +1 +46970 1 +1 +47027 1 +47055 1 +47126 1 +47138 1 +47153 1 +1 +1 +47208 1 +1 +1 +1 +47224 1 +1 +47232 1 +1 +47235 1 +1 +47238 1 +1 +47252 1 +47266 1 +47279 1 +47306 1 +47311 1 +47326 1 +47360 1 +47395 1 +1 +47409 1 +47419 1 +47426 1 +47448 1 +1 +47453 1 +47479 1 +1 +1 +47485 1 +47491 1 +47507 1 +1 +1 +47515 1 +1 +47534 1 +47540 1 +47566 1 +1 +47640 1 +47718 1 +47749 1 +1 +47807 1 +1 +47826 1 +47846 1 +47876 1 +47917 1 +47968 1 +48036 1 +48052 1 +1 +1 +1 +48060 1 +1 +48138 1 +1 +48169 1 +1 +1 +48181 1 +48225 1 +48241 1 +48301 1 +1 +1 +1 +1 +48323 1 +48346 1 +1 +1 +48370 1 +48397 1 +48425 1 +1 +48442 1 +48458 1 +48471 1 +48485 1 +48513 1 +48541 1 +48575 1 +48598 1 +48607 1 +48621 1 +48633 1 +48661 1 +48686 1 +48708 1 +48711 1 +48734 1 +1 +48759 1 +48786 1 +48832 1 +48924 1 +48962 1 +1 +49005 1 +49010 1 +1 +49014 1 +49028 1 +49103 1 +1 +49123 1 +49141 1 +49164 1 +49187 1 +1 +1 +1 +1 +1 +49220 1 +49249 1 +1 +49280 1 +1 +1 +1 +49288 1 +1 +49343 1 +49394 1 +1 +49544 1 +1 +49571 1 +49654 1 +49675 1 +49705 1 +49714 1 +1 +1 +1 +1 +49734 1 +1 +1 +1 +1 +49741 1 +1 +1 +49746 1 +49749 1 +49768 1 +49792 1 +1 +49818 1 +49820 1 +49822 1 +1 +49828 1 +49839 1 +49841 1 +1 +1 +49855 1 +49866 1 +49880 1 +1 +1 +49890 1 +49897 1 +1 +49900 1 +49906 1 +1 +49912 1 +1 +49916 1 +1 +1 +49920 1 +1 +49926 1 +49934 1 +1 +1 +49938 1 +1 +1 +1 +49956 1 +1 +1 +49961 1 +49992 1 +50003 1 +1 +1 +1 +50025 1 +50032 1 +1 +50051 1 +1 +50074 1 +1 +50079 1 +1 +1 +50109 1 +1 +50118 1 +1 +1 +50135 1 +50173 1 +1 +1 +50192 1 +1 +50212 1 +50273 1 +50285 1 +50303 1 +50311 1 +50340 1 +50486 1 +50547 1 +50551 1 +50557 1 +50559 1 +50577 1 +50589 1 +50598 1 +50623 1 +50675 1 +1 +1 +1 +1 +50684 1 +1 +50691 1 +1 +50707 1 +50736 1 +50751 1 +50774 1 +50794 1 +50802 1 +50824 1 +50835 1 +50847 1 +50851 1 +50893 1 +1 +1 +1 +1 +1 +1 +1 +1 +50915 1 +50930 1 +1 +50944 1 +50958 1 +1 +50964 1 +50985 1 +51016 1 +51020 1 +1 +1 +51040 1 +51042 1 +1 +51045 1 +1 +1 +51051 1 +51062 1 +51065 1 +1 +51085 1 +51087 1 +51103 1 +51109 1 +1 +51134 1 +51175 1 +51198 1 +1 +1 +1 +1 +1 +51205 1 +1 +51224 1 +51226 1 +51231 1 +1 +1 +1 +51237 1 +51250 1 +1 +51264 1 +51270 1 +1 +51309 1 +1 +51378 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +51459 1 +1 +1 +1 +51485 1 +1 +51505 1 +1 +1 +1 +51512 1 +1 +1 +51531 1 +51544 1 +51555 1 +1 +1 +1 +51564 1 +1 +51571 1 +51596 1 +51700 1 +51736 1 +1 +51748 1 +51794 1 +51802 1 +1 +1 +1 +51813 1 +51826 1 +1 +51829 1 +51884 1 +51889 1 +51903 1 +51906 1 +51932 1 +51942 1 +51953 1 +51969 1 +1 +52002 1 +1 +52028 1 +52057 1 +1 +1 +1 +52066 1 +52081 1 +1 +1 +1 +52091 1 +52098 1 +1 +1 +52113 1 +1 +52135 1 +52146 1 +1 +52162 1 +52191 1 +52196 1 +1 +52200 1 +1 +1 +52208 1 +52229 1 +52234 1 +1 +52238 1 +52254 1 +52259 1 +52277 1 +1 +1 +1 +1 +52298 1 +1 +52306 1 +1 +1 +1 +52317 1 +52332 1 +1 +1 +52336 1 +1 +52342 1 +1 +1 +52360 1 +52363 1 +52375 1 +1 +52380 1 +52383 1 +1 +1 +1 +1 +1 +52403 1 +1 +52411 1 +1 +1 +1 +1 +52432 1 +52435 1 +1 +1 +52451 1 +1 +52458 1 +52486 1 +1 +52491 1 +52509 1 +1 +52513 1 +52515 1 +1 +1 +52572 1 +1 +52589 1 +1 +1 +1 +1 +1 +52604 1 +52611 1 +52643 1 +52691 1 +52719 1 +1 +52752 1 +1 +1 +1 +1 diff --git a/tf/0.3/description.tf b/tf/0.3/description.tf new file mode 100644 index 0000000..3ba3821 --- /dev/null +++ b/tf/0.3/description.tf @@ -0,0 +1,44 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=description from metadata field "description" +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=str +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +59226 + + +Fragment of a clay tablet, 2 lines of inscription. Neo-Assyrian. +Fragment of a clay tablet, 10 lines of inscription. Neo-Assyrian. +Fragment of a clay tablet; from left side. in sections. omens concerning men, 9 lines of inscription, Neo-Assyrian. commencing disz. +Fragment of a clay tablet; from right side. in sections and with glosses. explanatory text, 7 lines of inscription, Neo-Assyrian. +Uncertain. Neo-Assyrian. +Magico-medical. Neo-Assyrian. +Part of a clay tablet, 13 lines of inscription which belong to a text containing incantations to be performed for sick people, Neo-Assyrian. +Corner of a clay tablet, the end of obverse and the beginning of reverse is broken off, and on both sides large pieces are broken out, incantations, to be performed for sick people, according to colophon, the first tablet of the series Neo-Assyrian. +Dup. K 2574+ (BAM V 482 ii 27-33, see p. xxvi), medical. (+)K 6066+? Neo-Assyrian. +Fragment from the right half of a clay tablet, incantations, lines 6 forms a colophon line. Neo-Assyrian. +Lower fragment of a clay tablet, incantations to be performed for the benefit of sick people. Neo-Assyrian. +Fragment from the left half of a clay tablet, grammatical paradigms probably belonging to a tablet from a series. Neo-Assyrian. +Fragment from the right half of a clay tablet, incantations and rites to be performed for the benefit of sick people. Neo-Assyrian. +Lower part of reverse of a clay tablet, prayers and incantations to be performed for the benefit of sick people, belongs to a series. Neo-Assyrian. +left half of a clay tablet. probably incantations to be performed on the behalf of sick people. Neo-Assyrian. +Left hand corner of a clay tablet. Incantations to be performed on behalf of sick people. Neo-Assyrian. +Left hand corner of a clay tablet. Recipes. Neo-Assyrian. +Fragment from the right half of a clay tablet. Incantations. Neo-Assyrian. +Lower portion of a clay tablet, with holes. Incantations to be performed on behalf of sick people. Neo-Assyrian. +Fragment of a clay tablet, mythological, 135 lines of inscription. Neo-Assyrian. +Fragment of a clay tablet. Omens. 14 lines of inscription. Neo-Assyrian. +Fragment of a clay tablet, omens or precepts, 2 columns of inscription on obverse, 32 lines in Col.1 and 19 lines in Col.2. 15 lines of inscription on reverse. Neo-Assyrian. +Corner of a clay tablet, medical, incantations to be performed for sick people, Neo-Assyrian. +Fragment of a clay tablet, 9 lines of inscription. Neo-Assyrian. +Part of a clay tablet, medical, much fractured, three corners more of less mutilated, and out of the middle, on both sides, a piece is broken out, 2 columns of inscription. Second tablet of a medical treatise entitled "If a man is afflicted with a cough", the contents detail a variety of stomach disorders, for each of which medical remedies are prescribed, Neo-Assyrian. +Fragment of a clay tablet, 16 lines of inscription. Neo-Assyrian. +Fragment of a clay tablet, 15 lines of inscription. Neo-Assyrian.Fragment from the middle. Prescriptions and directions for ceremonies to be used for the benefit of sick people. +Fragment of a clay tablet, 8 lines of inscription. Neo-Assyrian. +Fragment of a clay tablet, 8 lines of inscription, Neo-Assyrian. Fragment out of the middle, part of a text containing incantations, prayers and directions for ceremonies. +Fragment of a clay tablet, omens, 22 + 11 lines of inscription, Neo-Assyrian. Upper portion, left half, incantations, prayers and directions for ceremonies to be used for the benefit of sick people. +Fragment of a clay tablet, 8 lines of inscription, Neo-Assyrian. Fragment out of the middle, part of a text containing incantations and directions for ceremonies. diff --git a/tf/0.3/det.tf b/tf/0.3/det.tf new file mode 100644 index 0000000..f4d6bc0 --- /dev/null +++ b/tf/0.3/det.tf @@ -0,0 +1,2692 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=whether a sign is a determinative gloss - between { } +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=int +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +111 1 +155 1 +258 1 +262 1 +305 1 +634 1 +707 1 +712 1 +755 1 +772 1 +826 1 +920 1 +1061 1 +1096 1 +1139 1 +1153 1 +1175 1 +1180 1 +1212 1 +1216 1 +1295 1 +1365 1 +1401 1 +1437 1 +1467 1 +1473 1 +1502 1 +1508 1 +1513 1 +1537 1 +1561 1 +1574 1 +1577 1 +1588 1 +1601 1 +1645 1 +1678 1 +1735 1 +1800 1 +1824 1 +1828 1 +1831 1 +1833 1 +1835 1 +1891 1 +1 +1902 1 +1909 1 +1938 1 +1950 1 +1958 1 +2055 1 +2058 1 +2060 1 +2145 1 +2174 1 +2180 1 +1 +2191 1 +2197 1 +2223 1 +2225 1 +2232 1 +2236 1 +2327 1 +2336 1 +2436 1 +2459 1 +2577 1 +2623 1 +2625 1 +2635 1 +2671 1 +2683 1 +2690 1 +2693 1 +2734 1 +2776 1 +2876 1 +2903 1 +2962 1 +2991 1 +3000 1 +3063 1 +3082 1 +3089 1 +3098 1 +3199 1 +3203 1 +3208 1 +3269 1 +3279 1 +3311 1 +3328 1 +3374 1 +3379 1 +3382 1 +3387 1 +3394 1 +3398 1 +3403 1 +3420 1 +3454 1 +3460 1 +3479 1 +3488 1 +3537 1 +3554 1 +3567 1 +3594 1 +3612 1 +3619 1 +3628 1 +3642 1 +3663 1 +3678 1 +3684 1 +3692 1 +3736 1 +3749 1 +3810 1 +3812 1 +3849 1 +3866 1 +3881 1 +3917 1 +3924 1 +3928 1 +3963 1 +3996 1 +3999 1 +4045 1 +4097 1 +4113 1 +4164 1 +4175 1 +4182 1 +4199 1 +4232 1 +4364 1 +4418 1 +4423 1 +4426 1 +4461 1 +4524 1 +4527 1 +4548 1 +4639 1 +4650 1 +4652 1 +4655 1 +4727 1 +4731 1 +4782 1 +4788 1 +4791 1 +4794 1 +4797 1 +4800 1 +4803 1 +4844 1 +4871 1 +4879 1 +4924 1 +4943 1 +5005 1 +5121 1 +5126 1 +5129 1 +5132 1 +5135 1 +5138 1 +5142 1 +5166 1 +5173 1 +5209 1 +5213 1 +5261 1 +5264 1 +5266 1 +5270 1 +5274 1 +5278 1 +5289 1 +5368 1 +5384 1 +5396 1 +5470 1 +5477 1 +5556 1 +5564 1 +5567 1 +5571 1 +5576 1 +5579 1 +5597 1 +5610 1 +5616 1 +5621 1 +5628 1 +5652 1 +5657 1 +5663 1 +5671 1 +5675 1 +5682 1 +5726 1 +5763 1 +5786 1 +5790 1 +5813 1 +5817 1 +5820 1 +5823 1 +5873 1 +5933 1 +5944 1 +6013 1 +6039 1 +6055 1 +6063 1 +6068 1 +6073 1 +6078 1 +6082 1 +6087 1 +6091 1 +6156 1 +6158 1 +6169 1 +6171 1 +6198 1 +6209 1 +6219 1 +6231 1 +6234 1 +6264 1 +6280 1 +6283 1 +6286 1 +6290 1 +6342 1 +6348 1 +6350 1 +6409 1 +6413 1 +6419 1 +6421 1 +6423 1 +6568 1 +6584 1 +6592 1 +6677 1 +6680 1 +6683 1 +6688 1 +6695 1 +6699 1 +6722 1 +6727 1 +6732 1 +6735 1 +6754 1 +6757 1 +6760 1 +6764 1 +6767 1 +6792 1 +6803 1 +6805 1 +6840 1 +6844 1 +6847 1 +6851 1 +6855 1 +6861 1 +6864 1 +6867 1 +6870 1 +6873 1 +6877 1 +6901 1 +6903 1 +6920 1 +6924 1 +6928 1 +6931 1 +6934 1 +6937 1 +6941 1 +6961 1 +6964 1 +7007 1 +7102 1 +7177 1 +7182 1 +7225 1 +7266 1 +7288 1 +7299 1 +7386 1 +7392 1 +7423 1 +7480 1 +7523 1 +7533 1 +7585 1 +7658 1 +7665 1 +7708 1 +7723 1 +7727 1 +7733 1 +7741 1 +7777 1 +7786 1 +7888 1 +7892 1 +7896 1 +7901 1 +1 +7946 1 +7955 1 +7989 1 +8005 1 +8014 1 +8083 1 +8089 1 +8162 1 +8167 1 +8203 1 +8246 1 +8358 1 +8366 1 +8424 1 +8435 1 +8445 1 +8570 1 +8583 1 +8587 1 +8685 1 +8714 1 +8729 1 +8740 1 +8752 1 +8755 1 +8760 1 +8770 1 +9060 1 +9064 1 +9069 1 +9073 1 +9077 1 +9256 1 +9259 1 +9261 1 +9263 1 +9300 1 +9303 1 +9306 1 +9326 1 +9330 1 +9340 1 +9361 1 +9417 1 +9428 1 +9430 1 +9432 1 +9502 1 +9506 1 +9542 1 +9588 1 +9593 1 +9671 1 +9673 1 +9729 1 +9748 1 +9776 1 +9793 1 +9804 1 +9850 1 +9932 1 +9951 1 +9986 1 +10002 1 +10028 1 +10078 1 +10089 1 +10096 1 +10106 1 +10137 1 +10141 1 +10150 1 +10174 1 +10180 1 +10182 1 +10249 1 +10324 1 +10377 1 +10387 1 +10399 1 +10408 1 +10422 1 +10432 1 +10435 1 +10443 1 +10488 1 +10514 1 +10519 1 +10542 1 +10544 1 +10547 1 +10643 1 +10665 1 +10677 1 +10702 1 +10705 1 +10707 1 +10711 1 +10716 1 +10719 1 +10727 1 +10733 1 +10736 1 +10783 1 +10790 1 +10807 1 +10826 1 +10890 1 +10927 1 +10975 1 +10988 1 +11001 1 +11017 1 +11030 1 +11053 1 +11055 1 +11058 1 +11094 1 +11096 1 +11106 1 +11134 1 +11139 1 +11149 1 +11155 1 +11182 1 +11203 1 +11206 1 +11217 1 +11246 1 +11249 1 +11251 1 +11253 1 +11299 1 +11454 1 +11474 1 +11486 1 +11564 1 +11574 1 +11579 1 +11603 1 +11616 1 +11630 1 +11668 1 +11674 1 +11690 1 +11715 1 +11731 1 +11750 1 +11763 1 +11776 1 +11787 1 +11809 1 +11834 1 +11864 1 +11889 1 +11912 1 +11923 1 +11928 1 +11945 1 +11959 1 +11967 1 +11973 1 +11979 1 +11986 1 +11996 1 +12004 1 +12012 1 +12022 1 +12029 1 +12045 1 +12053 1 +12059 1 +12074 1 +12089 1 +12100 1 +12118 1 +12133 1 +12144 1 +12185 1 +12191 1 +12197 1 +12202 1 +12209 1 +12267 1 +12284 1 +12303 1 +12306 1 +12308 1 +1 +12313 1 +12320 1 +12336 1 +12339 1 +12342 1 +12383 1 +12399 1 +12426 1 +12429 1 +12449 1 +12452 1 +12455 1 +12470 1 +12512 1 +12515 1 +12552 1 +12555 1 +12559 1 +12563 1 +12570 1 +12619 1 +12623 1 +12625 1 +12628 1 +12630 1 +12633 1 +12636 1 +12638 1 +12643 1 +12648 1 +12652 1 +12655 1 +12659 1 +12671 1 +12739 1 +12851 1 +12858 1 +12862 1 +12918 1 +12928 1 +12932 1 +13033 1 +13056 1 +13070 1 +13074 1 +13076 1 +13079 1 +13090 1 +13093 1 +13099 1 +1 +13103 1 +13197 1 +13201 1 +13205 1 +13217 1 +13337 1 +13374 1 +13398 1 +13409 1 +13491 1 +13494 1 +13497 1 +13510 1 +13514 1 +13641 1 +13702 1 +13719 1 +13723 1 +13726 1 +13729 1 +13734 1 +13737 1 +13739 1 +13744 1 +13755 1 +13784 1 +13787 1 +13789 1 +13794 1 +13802 1 +13805 1 +13808 1 +13812 1 +13838 1 +13856 1 +13858 1 +13875 1 +13886 1 +13899 1 +13940 1 +13944 1 +13946 1 +13963 1 +13979 1 +13984 1 +13988 1 +14004 1 +14025 1 +14028 1 +14030 1 +14033 1 +14037 1 +14078 1 +14099 1 +14168 1 +14171 1 +14173 1 +14177 1 +14180 1 +14191 1 +14208 1 +14247 1 +14266 1 +14275 1 +14278 1 +14300 1 +14315 1 +14326 1 +14328 1 +14331 1 +14403 1 +14407 1 +14455 1 +14458 1 +14465 1 +14468 1 +14472 1 +14477 1 +14534 1 +14536 1 +14540 1 +14543 1 +14547 1 +14572 1 +14574 1 +14620 1 +14623 1 +14626 1 +14673 1 +14685 1 +14687 1 +14720 1 +14756 1 +14795 1 +14798 1 +14802 1 +14833 1 +14836 1 +14839 1 +14842 1 +14845 1 +14849 1 +14868 1 +14870 1 +14877 1 +14886 1 +14909 1 +14932 1 +14950 1 +14997 1 +15004 1 +15106 1 +15144 1 +15181 1 +15185 1 +15191 1 +15196 1 +15202 1 +15251 1 +1 +15255 1 +15258 1 +15298 1 +15300 1 +15303 1 +15308 1 +15311 1 +15313 1 +15316 1 +15320 1 +15323 1 +15325 1 +15328 1 +15369 1 +15371 1 +15382 1 +15384 1 +15386 1 +15428 1 +15431 1 +15438 1 +15450 1 +15464 1 +15467 1 +15473 1 +15481 1 +15501 1 +15504 1 +15536 1 +15539 1 +15541 1 +1 +15546 1 +15553 1 +15574 1 +15596 1 +15602 1 +15612 1 +15648 1 +15660 1 +15666 1 +15669 1 +15702 1 +15707 1 +15820 1 +15993 1 +16019 1 +16023 1 +16041 1 +16058 1 +16069 1 +16074 1 +16084 1 +16088 1 +1 +16095 1 +16098 1 +16118 1 +16121 1 +16129 1 +16145 1 +16147 1 +16153 1 +16161 1 +16186 1 +16190 1 +16194 1 +16203 1 +16206 1 +16228 1 +16230 1 +16234 1 +16237 1 +16292 1 +16297 1 +16301 1 +16313 1 +16318 1 +16337 1 +16340 1 +16342 1 +16345 1 +16371 1 +16374 1 +16405 1 +16407 1 +16428 1 +16471 1 +16477 1 +16593 1 +16599 1 +16638 1 +16641 1 +16705 1 +16733 1 +16772 1 +16776 1 +16788 1 +16793 1 +16822 1 +16827 1 +16867 1 +16873 1 +16877 1 +16939 1 +16942 1 +16948 1 +16952 1 +16992 1 +16995 1 +17005 1 +17013 1 +17030 1 +17033 1 +17036 1 +17039 1 +17051 1 +17064 1 +17102 1 +17108 1 +17111 1 +17115 1 +17123 1 +17125 1 +17167 1 +17172 1 +17204 1 +17210 1 +17214 1 +17245 1 +17251 1 +17294 1 +17309 1 +17313 1 +17350 1 +17360 1 +17384 1 +17417 1 +17420 1 +17423 1 +17427 1 +17436 1 +17447 1 +17483 1 +17487 1 +17492 1 +17496 1 +17501 1 +17511 1 +17515 1 +17520 1 +17524 1 +17535 1 +17538 1 +17617 1 +17619 1 +1 +17623 1 +17653 1 +17675 1 +17678 1 +17683 1 +17688 1 +17693 1 +17698 1 +17702 1 +17712 1 +17714 1 +17719 1 +17721 1 +17726 1 +17732 1 +17739 1 +17744 1 +1 +17759 1 +17818 1 +17821 1 +17836 1 +17925 1 +17929 1 +17932 1 +17935 1 +17939 1 +17943 1 +17974 1 +17977 1 +17983 1 +17999 1 +18002 1 +18005 1 +18008 1 +18013 1 +18017 1 +18031 1 +18061 1 +18064 1 +18068 1 +18071 1 +18137 1 +18140 1 +18161 1 +18164 1 +18168 1 +18204 1 +18208 1 +18222 1 +18236 1 +18252 1 +18255 1 +18267 1 +18311 1 +18364 1 +18419 1 +18444 1 +18447 1 +18451 1 +18464 1 +18477 1 +18509 1 +18606 1 +18617 1 +18619 1 +18622 1 +18694 1 +18698 1 +18744 1 +18748 1 +18750 1 +18753 1 +18775 1 +18786 1 +18788 1 +18807 1 +18812 1 +18841 1 +1 +18853 1 +18878 1 +18906 1 +18911 1 +18915 1 +18957 1 +18959 1 +18963 1 +18970 1 +18976 1 +18992 1 +19045 1 +19048 1 +19051 1 +19054 1 +19057 1 +19060 1 +19063 1 +19072 1 +19077 1 +19107 1 +19109 1 +19113 1 +19116 1 +19124 1 +19159 1 +19173 1 +19202 1 +19208 1 +19220 1 +19223 1 +19225 1 +19227 1 +19232 1 +19235 1 +1 +19255 1 +19277 1 +19292 1 +19295 1 +19304 1 +19311 1 +19323 1 +19327 1 +19348 1 +19365 1 +19371 1 +19375 1 +19407 1 +19411 1 +19521 1 +19523 1 +19527 1 +19536 1 +19547 1 +19564 1 +19599 1 +19601 1 +19605 1 +19627 1 +19649 1 +19659 1 +19668 1 +19695 1 +19701 1 +19703 1 +19712 1 +19724 1 +19889 1 +19893 1 +20062 1 +20086 1 +20090 1 +20128 1 +20135 1 +20138 1 +20144 1 +20223 1 +20238 1 +20300 1 +20315 1 +20349 1 +20358 1 +20377 1 +20381 1 +20403 1 +20405 1 +20447 1 +20449 1 +20452 1 +20454 1 +20457 1 +20470 1 +1 +20517 1 +20542 1 +20564 1 +20576 1 +20582 1 +20609 1 +20613 1 +20625 1 +20627 1 +20649 1 +20688 1 +20711 1 +20780 1 +20816 1 +20841 1 +20844 1 +20847 1 +20854 1 +20867 1 +20892 1 +20904 1 +20920 1 +20922 1 +20938 1 +20941 1 +20965 1 +20993 1 +20997 1 +21009 1 +21026 1 +21054 1 +21059 1 +21069 1 +21093 1 +21124 1 +21133 1 +21139 1 +21141 1 +21235 1 +21249 1 +21253 1 +21267 1 +21271 1 +21285 1 +21290 1 +21315 1 +21318 1 +21329 1 +21340 1 +21376 1 +21388 1 +21397 1 +21400 1 +21422 1 +21444 1 +21458 1 +21461 1 +21506 1 +21518 1 +21616 1 +21618 1 +21682 1 +21723 1 +21760 1 +21783 1 +21789 1 +21794 1 +21803 1 +21805 1 +21817 1 +21857 1 +21864 1 +21892 1 +21935 1 +21938 1 +21950 1 +21981 1 +22012 1 +22039 1 +22065 1 +22076 1 +22092 1 +22094 1 +22099 1 +22106 1 +22119 1 +22128 1 +22133 1 +22137 1 +22145 1 +22160 1 +22170 1 +22177 1 +22180 1 +22192 1 +22234 1 +22236 1 +22270 1 +22347 1 +22354 1 +22357 1 +22395 1 +22405 1 +22409 1 +22433 1 +22442 1 +22461 1 +22484 1 +22489 1 +22585 1 +22593 1 +22598 1 +22605 1 +22628 1 +22632 1 +22639 1 +22674 1 +22726 1 +22833 1 +22851 1 +22868 1 +22891 1 +22938 1 +22965 1 +22982 1 +22995 1 +23006 1 +23010 1 +23013 1 +23020 1 +23091 1 +23125 1 +23163 1 +23169 1 +23222 1 +23225 1 +23268 1 +23347 1 +23360 1 +23362 1 +23365 1 +23385 1 +23402 1 +23429 1 +23432 1 +23492 1 +23547 1 +23620 1 +23709 1 +23728 1 +23773 1 +23780 1 +23788 1 +23843 1 +23850 1 +23884 1 +23894 1 +23904 1 +23915 1 +24001 1 +24004 1 +24052 1 +24061 1 +24087 1 +24090 1 +24096 1 +24100 1 +24105 1 +24153 1 +24164 1 +24166 1 +24169 1 +24241 1 +24245 1 +24289 1 +24292 1 +24306 1 +24313 1 +24349 1 +24359 1 +24367 1 +24376 1 +24400 1 +24403 1 +1 +24439 1 +24445 1 +24472 1 +24475 1 +24563 1 +24572 1 +24577 1 +24584 1 +24729 1 +24735 1 +24738 1 +24743 1 +24746 1 +24748 1 +24751 1 +24753 1 +24760 1 +24763 1 +24770 1 +24795 1 +24798 1 +24807 1 +24861 1 +24863 1 +24880 1 +24906 1 +24961 1 +24998 1 +25015 1 +25020 1 +25024 1 +25031 1 +25113 1 +25120 1 +25132 1 +25144 1 +25157 1 +25168 1 +25177 1 +25186 1 +25190 1 +25195 1 +25201 1 +25258 1 +25262 1 +25299 1 +25309 1 +25339 1 +25346 1 +25353 1 +25359 1 +25365 1 +25369 1 +25391 1 +25427 1 +25451 1 +25478 1 +25483 1 +25490 1 +25515 1 +25583 1 +25588 1 +25591 1 +25631 1 +25635 1 +25658 1 +25679 1 +25728 1 +25733 1 +25739 1 +25750 1 +25755 1 +25780 1 +25793 1 +25831 1 +25884 1 +25890 1 +25931 1 +25989 1 +25991 1 +25997 1 +26008 1 +26011 1 +26049 1 +26053 1 +26056 1 +26060 1 +26070 1 +26073 1 +26084 1 +26091 1 +1 +26096 1 +26099 1 +26105 1 +26108 1 +26134 1 +26137 1 +26141 1 +1 +26146 1 +26149 1 +26182 1 +26188 1 +26191 1 +26196 1 +26207 1 +26218 1 +26225 1 +26231 1 +26235 1 +26254 1 +26269 1 +26280 1 +26284 1 +26287 1 +26319 1 +26336 1 +26437 1 +26480 1 +26489 1 +26549 1 +26557 1 +26570 1 +26593 1 +26631 1 +26648 1 +26657 1 +26719 1 +26745 1 +26749 1 +26789 1 +26803 1 +26856 1 +26860 1 +26874 1 +26901 1 +26924 1 +1 +26929 1 +26932 1 +26935 1 +26940 1 +26962 1 +26974 1 +27060 1 +27064 1 +27128 1 +27203 1 +27283 1 +27303 1 +27321 1 +27360 1 +27369 1 +27407 1 +27452 1 +27456 1 +27489 1 +27601 1 +27611 1 +27636 1 +27640 1 +27645 1 +27649 1 +27653 1 +27660 1 +27771 1 +27800 1 +27813 1 +27819 1 +27888 1 +27891 1 +27896 1 +27900 1 +27904 1 +27911 1 +28045 1 +28178 1 +28214 1 +28227 1 +28233 1 +28396 1 +28510 1 +28519 1 +28673 1 +28682 1 +28701 1 +28901 1 +28918 1 +28924 1 +28971 1 +28987 1 +29073 1 +29092 1 +29153 1 +29161 1 +29164 1 +29226 1 +29277 1 +29336 1 +29363 1 +29467 1 +29508 1 +29517 1 +29561 1 +29565 1 +29570 1 +29573 1 +29611 1 +29661 1 +29681 1 +29700 1 +29747 1 +29750 1 +29786 1 +29906 1 +29981 1 +30062 1 +30082 1 +30100 1 +30139 1 +30148 1 +30186 1 +30231 1 +30235 1 +30268 1 +30380 1 +30390 1 +30415 1 +30419 1 +30424 1 +30428 1 +30432 1 +30438 1 +30523 1 +30552 1 +30566 1 +30572 1 +30639 1 +30642 1 +30647 1 +30651 1 +30655 1 +30662 1 +30791 1 +30921 1 +30957 1 +30971 1 +30977 1 +31150 1 +31159 1 +31280 1 +31289 1 +31308 1 +31508 1 +31526 1 +31532 1 +31582 1 +31598 1 +31691 1 +31951 1 +31958 1 +31962 1 +31966 1 +31974 1 +32065 1 +32070 1 +32075 1 +32082 1 +32097 1 +32100 1 +32195 1 +32214 1 +32243 1 +32245 1 +32255 1 +32259 1 +32264 1 +32321 1 +32326 1 +32329 1 +32332 1 +32334 1 +32337 1 +32339 1 +32342 1 +32345 1 +32347 1 +32350 1 +32356 1 +32360 1 +32366 1 +32373 1 +32377 1 +32390 1 +32399 1 +32406 1 +32409 1 +32412 1 +32415 1 +32418 1 +32420 1 +32424 1 +32427 1 +32431 1 +32438 1 +32441 1 +32446 1 +32450 1 +32463 1 +32484 1 +32494 1 +32497 1 +32506 1 +32509 1 +32512 1 +32517 1 +32523 1 +32526 1 +32529 1 +32540 1 +32547 1 +32551 1 +32557 1 +32564 1 +32566 1 +32568 1 +32570 1 +32576 1 +32579 1 +32629 1 +32636 1 +32651 1 +32654 1 +32657 1 +32678 1 +32680 1 +32688 1 +32691 1 +32709 1 +32805 1 +32843 1 +32850 1 +32856 1 +32888 1 +32897 1 +32909 1 +32919 1 +32922 1 +32925 1 +32930 1 +32961 1 +33004 1 +33007 1 +33028 1 +33033 1 +33044 1 +33048 1 +33050 1 +33105 1 +33111 1 +33125 1 +33128 1 +33197 1 +33219 1 +33234 1 +33273 1 +33284 1 +33287 1 +33474 1 +33523 1 +33549 1 +33557 1 +33562 1 +33622 1 +33661 1 +33690 1 +33697 1 +33738 1 +33741 1 +33772 1 +33777 1 +33783 1 +33820 1 +33959 1 +33985 1 +33991 1 +34072 1 +34078 1 +34084 1 +34141 1 +34178 1 +34199 1 +34201 1 +34204 1 +34207 1 +34210 1 +34214 1 +34227 1 +34244 1 +34283 1 +34285 1 +34314 1 +34343 1 +34349 1 +34365 1 +34370 1 +34398 1 +34425 1 +34445 1 +34448 1 +34475 1 +34523 1 +34527 1 +1 +34534 1 +34538 1 +1 +1 +34548 1 +34574 1 +34604 1 +34615 1 +34617 1 +34620 1 +34691 1 +34787 1 +34919 1 +34923 1 +34959 1 +34993 1 +34996 1 +35010 1 +35028 1 +35031 1 +35033 1 +1 +35061 1 +35064 1 +35066 1 +1 +35071 1 +35098 1 +35124 1 +35134 1 +35176 1 +35188 1 +35197 1 +35204 1 +35217 1 +35220 1 +1 +35228 1 +35234 1 +35278 1 +35287 1 +35296 1 +35310 1 +35327 1 +35343 1 +35350 1 +35374 1 +35409 1 +35436 1 +35445 1 +35449 1 +35473 1 +35487 1 +35491 1 +35498 1 +35500 1 +35503 1 +35506 1 +35534 1 +35538 1 +35549 1 +35571 1 +35578 1 +35604 1 +35630 1 +35649 1 +35687 1 +35844 1 +35925 1 +35971 1 +36044 1 +36058 1 +36087 1 +36204 1 +36206 1 +36210 1 +36221 1 +36225 1 +36233 1 +36241 1 +36248 1 +36271 1 +36274 1 +36280 1 +36285 1 +36307 1 +36310 1 +36325 1 +36363 1 +36387 1 +36394 1 +36407 1 +36420 1 +36550 1 +36561 1 +36563 1 +36565 1 +36636 1 +36640 1 +36699 1 +36702 1 +36708 1 +36728 1 +36733 1 +36751 1 +36758 1 +36766 1 +36770 1 +36786 1 +36798 1 +36806 1 +36811 1 +36825 1 +36945 1 +36961 1 +36981 1 +36984 1 +36986 1 +36989 1 +37001 1 +37018 1 +37032 1 +37095 1 +37122 1 +37129 1 +37147 1 +37156 1 +37168 1 +37184 1 +37192 1 +37204 1 +37337 1 +37340 1 +37342 1 +37395 1 +37415 1 +37435 1 +37452 1 +37512 1 +37517 1 +37524 1 +37529 1 +37554 1 +37614 1 +37616 1 +37619 1 +37630 1 +37656 1 +37673 1 +37688 1 +37759 1 +37761 1 +37764 1 +37770 1 +37790 1 +37794 1 +37801 1 +37853 1 +37856 1 +37858 1 +37865 1 +37869 1 +37871 1 +37874 1 +37876 1 +37881 1 +37901 1 +37909 1 +37911 1 +37913 1 +37917 1 +37920 1 +37925 1 +37929 1 +37944 1 +37947 1 +37951 1 +37954 1 +37962 1 +37970 1 +37972 1 +37975 1 +37982 1 +37997 1 +1 +38004 1 +38013 1 +38028 1 +38031 1 +38043 1 +38047 1 +38050 1 +38058 1 +38061 1 +38089 1 +38091 1 +38115 1 +38135 1 +38138 1 +38144 1 +38147 1 +38150 1 +38153 1 +38156 1 +38160 1 +38163 1 +38182 1 +38210 1 +38216 1 +38225 1 +38275 1 +38279 1 +38282 1 +38286 1 +38289 1 +38307 1 +38311 1 +38317 1 +38321 1 +38323 1 +38328 1 +38334 1 +38337 1 +38341 1 +38344 1 +38346 1 +38349 1 +38355 1 +38361 1 +38364 1 +38372 1 +38375 1 +38395 1 +38397 1 +38400 1 +38403 1 +38405 1 +38409 1 +38424 1 +38426 1 +38444 1 +38491 1 +38494 1 +38497 1 +38500 1 +38508 1 +38515 1 +38517 1 +38525 1 +38528 1 +38535 1 +38537 1 +38546 1 +38549 1 +38554 1 +38557 1 +38595 1 +38600 1 +38606 1 +38667 1 +38670 1 +38675 1 +38678 1 +38803 1 +38807 1 +38871 1 +38955 1 +38990 1 +39019 1 +39043 1 +39047 1 +39052 1 +39056 1 +39076 1 +39101 1 +39167 1 +39182 1 +39196 1 +39240 1 +39256 1 +39269 1 +39287 1 +39327 1 +39339 1 +39357 1 +39388 1 +39436 1 +39439 1 +39441 1 +39458 1 +39463 1 +39577 1 +39583 1 +39590 1 +39597 1 +39602 1 +39613 1 +39623 1 +39631 1 +39638 1 +39646 1 +39667 1 +39673 1 +39680 1 +39686 1 +39710 1 +39723 1 +39726 1 +39734 1 +39742 1 +39752 1 +39758 1 +39766 1 +39770 1 +39792 1 +39797 1 +39811 1 +39817 1 +39862 1 +39870 1 +39878 1 +39886 1 +39894 1 +39911 1 +39924 1 +39936 1 +39948 1 +39966 1 +39971 1 +39981 1 +40054 1 +40074 1 +40082 1 +40107 1 +40110 1 +40145 1 +40151 1 +40196 1 +40274 1 +40299 1 +40316 1 +40318 1 +40322 1 +40340 1 +40343 1 +40396 1 +40408 1 +40421 1 +40429 1 +40447 1 +40464 1 +40474 1 +40513 1 +40524 1 +40535 1 +40557 1 +40618 1 +40624 1 +40642 1 +40649 1 +40666 1 +40679 1 +40699 1 +40704 1 +40785 1 +40791 1 +40799 1 +40806 1 +40814 1 +40822 1 +40825 1 +40831 1 +40843 1 +40845 1 +40910 1 +40920 1 +40927 1 +40935 1 +40945 1 +40953 1 +40964 1 +40968 1 +41060 1 +41101 1 +41112 1 +41114 1 +41117 1 +41189 1 +41193 1 +41307 1 +41340 1 +41370 1 +41388 1 +41443 1 +41454 1 +41464 1 +41467 1 +41475 1 +41481 1 +41513 1 +41528 1 +41535 1 +41559 1 +41563 1 +41566 1 +41583 1 +41639 1 +41643 1 +41667 1 +41671 1 +41675 1 +41725 1 +41728 1 +41730 1 +41772 1 +41775 1 +41799 1 +41826 1 +41946 1 +41952 1 +41955 1 +41969 1 +41984 1 +41995 1 +42006 1 +42040 1 +42138 1 +42140 1 +42240 1 +42248 1 +42265 1 +42267 1 +42285 1 +42288 1 +42290 1 +42323 1 +42326 1 +42331 1 +42333 1 +42449 1 +1 +42515 1 +42542 1 +42551 1 +42567 1 +42571 1 +42576 1 +42583 1 +42617 1 +42622 1 +42649 1 +42772 1 +42802 1 +42833 1 +42862 1 +42864 1 +42867 1 +42870 1 +42913 1 +43104 1 +43121 1 +43134 1 +43147 1 +43158 1 +43172 1 +43183 1 +43197 1 +43275 1 +43282 1 +43286 1 +43311 1 +43313 1 +43332 1 +43335 1 +43347 1 +43398 1 +43400 1 +43416 1 +43419 1 +43422 1 +43426 1 +43451 1 +43453 1 +43483 1 +43513 1 +43533 1 +43536 1 +43555 1 +43584 1 +43605 1 +43609 1 +43616 1 +43621 1 +43636 1 +43639 1 +43649 1 +43654 1 +43658 1 +43665 1 +43691 1 +43700 1 +43704 1 +43729 1 +43733 1 +43738 1 +43744 1 +43748 1 +43751 1 +43763 1 +43768 1 +43774 1 +43780 1 +43797 1 +43861 1 +43863 1 +43870 1 +43884 1 +43890 1 +43945 1 +43977 1 +43980 1 +44019 1 +44037 1 +44132 1 +44134 1 +44176 1 +44230 1 +1 +44235 1 +44259 1 +44443 1 +44531 1 +44547 1 +44555 1 +44562 1 +44591 1 +44602 1 +44607 1 +44625 1 +44630 1 +44636 1 +44645 1 +44675 1 +44685 1 +44690 1 +44718 1 +44725 1 +44752 1 +44755 1 +44758 1 +44794 1 +44800 1 +44808 1 +44820 1 +44856 1 +44931 1 +44949 1 +44961 1 +44979 1 +45057 1 +45113 1 +45136 1 +45144 1 +45172 1 +45175 1 +45188 1 +45197 1 +45200 1 +45204 1 +45207 1 +45209 1 +45226 1 +45247 1 +45252 1 +45263 1 +45266 1 +45269 1 +45283 1 +45287 1 +45308 1 +45312 1 +45315 1 +45325 1 +45330 1 +45336 1 +45338 1 +45345 1 +45381 1 +45395 1 +45397 1 +45400 1 +45404 1 +45422 1 +45434 1 +45452 1 +45471 1 +45481 1 +45484 1 +45488 1 +45515 1 +45535 1 +45540 1 +45543 1 +45546 1 +45554 1 +45577 1 +45580 1 +45584 1 +45588 1 +45593 1 +45595 1 +45628 1 +45631 1 +45634 1 +45637 1 +45640 1 +45644 1 +45647 1 +45650 1 +45654 1 +45656 1 +45661 1 +45664 1 +45668 1 +45685 1 +45753 1 +45815 1 +45823 1 +45829 1 +45835 1 +45850 1 +45868 1 +45899 1 +45915 1 +45927 1 +45933 1 +45949 1 +45968 1 +45978 1 +46015 1 +1 +46034 1 +46078 1 +46086 1 +46088 1 +1 +46144 1 +46181 1 +46191 1 +46248 1 +46256 1 +1 +46274 1 +46294 1 +46312 1 +46318 1 +46321 1 +46326 1 +46329 1 +46354 1 +46375 1 +46400 1 +46402 1 +46405 1 +46478 1 +46481 1 +46484 1 +46488 1 +46526 1 +46529 1 +46533 1 +46562 1 +46575 1 +46578 1 +46580 1 +46584 1 +46588 1 +46592 1 +46597 1 +46616 1 +46650 1 +46663 1 +46670 1 +46707 1 +1 +46715 1 +46724 1 +46771 1 +46773 1 +46813 1 +46828 1 +46834 1 +46842 1 +46855 1 +46867 1 +46872 1 +46926 1 +46970 1 +46974 1 +46990 1 +47003 1 +47006 1 +47008 1 +47016 1 +47031 1 +47056 1 +47060 1 +47081 1 +47091 1 +47096 1 +47099 1 +47103 1 +47159 1 +47162 1 +47239 1 +47263 1 +47281 1 +47306 1 +47309 1 +47313 1 +47318 1 +1 +47323 1 +47326 1 +47330 1 +47333 1 +47336 1 +47339 1 +47341 1 +47344 1 +47352 1 +47372 1 +47414 1 +47421 1 +47428 1 +47439 1 +47475 1 +47487 1 +47497 1 +47514 1 +47518 1 +47520 1 +47523 1 +47526 1 +47528 1 +47531 1 +47534 1 +47536 1 +47562 1 +47610 1 +47613 1 +47616 1 +47621 1 +47627 1 +47631 1 +47652 1 +47654 1 +47656 1 +47659 1 +47722 1 +47725 1 +47729 1 +47732 1 +47734 1 +1 +47748 1 +47776 1 +47791 1 +47815 1 +47823 1 +47849 1 +47854 1 +47884 1 +47889 1 +47895 1 +47899 1 +47908 1 +48008 1 +48010 1 +48013 1 +48020 1 +48025 1 +48030 1 +48074 1 +48080 1 +48091 1 +48157 1 +48163 1 +48234 1 +48304 1 +48307 1 +48311 1 +48316 1 +48319 1 +48321 1 +48324 1 +48326 1 +48345 1 +48389 1 +48403 1 +48435 1 +48438 1 +48441 1 +48445 1 +48450 1 +48515 1 +48518 1 +48521 1 +48524 1 +48527 1 +48529 1 +48535 1 +48540 1 +48544 1 +48548 1 +48567 1 +48577 1 +48636 1 +48650 1 +48654 1 +48664 1 +48669 1 +48677 1 +48683 1 +48685 1 +48704 1 +48708 1 +48714 1 +1 +48720 1 +48722 1 +48727 1 +48731 1 +48735 1 +48761 1 +48766 1 +48778 1 +48784 1 +48786 1 +48789 1 +48791 1 +48794 1 +48810 1 +48820 1 +48824 1 +1 +48827 1 +48830 1 +48840 1 +48844 1 +48902 1 +48909 1 +48929 1 +48935 1 +48945 1 +48950 1 +48957 1 +48965 1 +48970 1 +48986 1 +48992 1 +49000 1 +49027 1 +49030 1 +49052 1 +49103 1 +49123 1 +49126 1 +49129 1 +49132 1 +49185 1 +49195 1 +49197 1 +49200 1 +49203 1 +49229 1 +49282 1 +49288 1 +49295 1 +49312 1 +49325 1 +49344 1 +49349 1 +49353 1 +49361 1 +49363 1 +49372 1 +49387 1 +49402 1 +49417 1 +49423 1 +49430 1 +49439 1 +49453 1 +49474 1 +49479 1 +49488 1 +49514 1 +49529 1 +49556 1 +49558 1 +49562 1 +49566 1 +49568 1 +49575 1 +49589 1 +49607 1 +49609 1 +49612 1 +49614 1 +49617 1 +49622 1 +49624 1 +49626 1 +49629 1 +49635 1 +49651 1 +49686 1 +49689 1 +49695 1 +49697 1 +49702 1 +49707 1 +49713 1 +49715 1 +49766 1 +49822 1 +49827 1 +49833 1 +49838 1 +49851 1 +49934 1 +49940 1 +49945 1 +49947 1 +49961 1 +49966 1 +49972 1 +50012 1 +50016 1 +50022 1 +50042 1 +50111 1 +50114 1 +50247 1 +50255 1 +50278 1 +50304 1 +50307 1 +50311 1 +50315 1 +50318 1 +50320 1 +50349 1 +50353 1 +50363 1 +50367 1 +50428 1 +50439 1 +50441 1 +50444 1 +50516 1 +50520 1 +50622 1 +50637 1 +50676 1 +50686 1 +50690 1 +50837 1 +50840 1 +50847 1 +50849 1 +50949 1 +50952 1 +51021 1 +51025 1 +51044 1 +51065 1 +51079 1 +51093 1 +51096 1 +51120 1 +51170 1 +51175 1 +51243 1 +51247 1 +51250 1 +51252 1 +51254 1 +51258 1 +51261 1 +51265 1 +51269 1 +51319 1 +51323 1 +51329 1 +51333 1 +51392 1 +51394 1 +51398 1 +51400 1 +51402 1 +51405 1 +51408 1 +51410 1 +51412 1 +51416 1 +1 +51433 1 +51441 1 +51443 1 +51453 1 +51478 1 +51480 1 +51483 1 +51485 1 +51487 1 +51489 1 +51510 1 +51512 1 +51521 1 +51569 1 +51598 1 +51653 1 +51655 1 +51669 1 +51677 1 +51688 1 +51707 1 +51720 1 +51735 1 +51769 1 +51774 1 +51780 1 +51803 1 +51902 1 +51918 1 +51921 1 +51953 1 +51979 1 +51984 1 +52062 1 +52085 1 +52101 1 +52115 1 +52160 1 +52164 1 +52170 1 +52173 1 +52203 1 +52256 1 +52265 1 +52273 1 +52282 1 +52285 1 +52289 1 +52294 1 +52347 1 +52365 1 +52373 1 +52491 1 +52502 1 +52504 1 +52507 1 +52577 1 +52581 1 +52668 1 +52707 1 +52736 1 +52787 1 diff --git a/tf/0.3/docnumber.tf b/tf/0.3/docnumber.tf new file mode 100644 index 0000000..63b25c2 --- /dev/null +++ b/tf/0.3/docnumber.tf @@ -0,0 +1,44 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=document number from metadata field "number" +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=str +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +59226 AO.7482 +AO.7765 +Div.158 +K.11317 +K.11544 +K.14541 +K.15236 +K.18017 +K.18128 +K.1845 +K.191 +K.19766 +K.2354 +K.2386 +K.2392 +K.2422 +K.2439 +K.2471 +K.2532 +K.2533 +K.2570 +K.2573 +K.4023 +K.4114 +K.6066 +K.61 +K.6224 +K.71.B +K.7834 +K.8346 +K.9503 +Rm.971 +Sm.950 +Sm.967 diff --git a/tf/0.3/erasure.tf b/tf/0.3/erasure.tf new file mode 100644 index 0000000..0a0fcd9 --- /dev/null +++ b/tf/0.3/erasure.tf @@ -0,0 +1,13 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=whether a sign is in an erasure - between ° \ °: 1: between ° and \; 2: between \ and ° +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=int +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +20137 2 +2 +2 diff --git a/tf/0.3/excised.tf b/tf/0.3/excised.tf new file mode 100644 index 0000000..5d9b3fb --- /dev/null +++ b/tf/0.3/excised.tf @@ -0,0 +1,16 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=whether a sign is excised - between << >> +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=int +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +6027 1 +7333 1 +13990 1 +1 +52586 1 +1 diff --git a/tf/0.3/face.tf b/tf/0.3/face.tf new file mode 100644 index 0000000..781c891 --- /dev/null +++ b/tf/0.3/face.tf @@ -0,0 +1,64 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=full name of a face including the enclosing object +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=str +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +59260 obverse +obverse +reverse +obverse +reverse +obverse +obverse +obverse +obverse +obverse +obverse +obverse +reverse +obverse +reverse +obverse +obverse +reverse +obverse +reverse +obverse +reverse +obverse +reverse +obverse +reverse +obverse +obverse +obverse +reverse +obverse +reverse +obverse +reverse +obverse +reverse +obverse +reverse +obverse +reverse +obverse +reverse +obverse +reverse +obverse +reverse +obverse +reverse +obverse +obverse +obverse +obverse +reverse +reverse diff --git a/tf/0.3/flags.tf b/tf/0.3/flags.tf new file mode 100644 index 0000000..abd658a --- /dev/null +++ b/tf/0.3/flags.tf @@ -0,0 +1,5030 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=sequence of flags after a sign +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=str +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +6 # +18 # +# +48 # +# +65 # +183 # +215 # +226 # +259 # +263 # +282 # +# +295 # +444 ? +449 # +# +# +607 # +647 # +674 # +681 # +689 ? +705 ? +# +# +# +# +?# +? +713 # +# +?# +793 # +851 # +866 # +887 # +# +# +899 # +# +914 ?# +?# +?# +960 # +# +1002 ? +? +1040 # +# +1056 # +# +1065 # +1144 # +1193 # +!?# +1198 ! +1212 # +1221 # +1244 # +1253 # +# +1296 # +1310 # +# +# +1327 ? +1334 ?# +1343 # +# +1357 # +1365 # +# +# +1376 # +1383 # +1396 ? +1416 # +1456 # +1458 # +# +1488 # +1502 # +# +# +1514 # +1532 # +1552 !? +1567 ?# +1579 # +1583 # +1607 # +# +# +?# +?# +? +?# +?# +1645 ! +1656 ?# +?# +? +1665 ?# +?# +1675 # +# +1684 # +1687 # +1725 # +# +# +# +1786 ? +1811 # +1835 ? +1905 ? +? +? +1950 # +1969 # +# +# +# +# +# +# +# +1986 ? +1998 # +# +# +# +# +2013 ? +# +2023 # +2087 # +# +? +2112 ? +2171 # +2197 # +2224 ? +2303 # +# +2306 ? +2331 ? +2333 # +# +2361 ? +2463 # +# +2484 ?# +? +2503 # +# +# +# +# +2510 # +# +# +# +2542 # +? +2546 # +2588 ? +2605 # +# +2669 # +2688 # +# +2700 ? +2703 # +2728 # +2734 # +2753 # +2767 # +2781 ? +? +2815 ? +2845 ? +2849 ? +2867 ? +2909 ? +2928 # +2948 # +2950 # +2954 # +# +# +# +# +# +# +2969 ! +2983 #? +3003 # +3006 ? +3033 ? +3058 ? +?# +3064 # +# +# +3071 # +# +3076 # +# +3083 ? +3087 # +# +3090 # +3097 # +3121 # +3161 ! +3198 ? +# +3213 # +# +3224 # +# +# +# +3230 # +# +# +# +# +# +3239 # +3275 # +# +# +3308 ? +? +? +# +# +# +# +3340 # +3359 # +# +3372 # +# +3384 # +# +3408 # +3432 ? +3468 ? +3472 # +3492 ? +? +3500 # +# +# +3507 # +3516 ? +3518 ? +3524 # +# +# +# +# +# +# +3535 # +# +# +# +# +3546 # +3556 # +# +# +#? +#? +# +# +# +3567 # +? +3578 # +3584 # +# +# +3597 # +# +3613 # +3624 # +3629 ! +3631 # +# +3635 # +?# +3651 # +3656 # +# +3672 # +# +3683 # +3692 # +3707 # +3715 # +3730 ? +3754 # +# +# +# +3760 ? +3810 # +# +# +3832 ? +3847 # +3865 # +# +# +# +# +# +# +# +3880 # +3897 # +# +# +# +# +# +# +# +3907 # +# +# +# +# +# +# +# +# +# +# +# +# +# +# +# +3950 # +# +3953 # +3963 # +3972 # +# +# +4003 ? +4007 # +# +4046 # +# +# +# +4056 # +# +# +4064 # +# +4073 # +# +4105 # +4117 # +4133 # +# +4150 # +4210 # +4217 # +4219 # +# +# +4257 ? +4282 ? +4307 # +4321 # +4362 # +4364 # +4373 # +4433 # +4478 # +# +4486 # +4495 ? +4517 # +# +4527 # +#? +? +? +4555 ? +4569 # +4571 # +4582 # +# +4588 ? +4596 # +4629 # +4676 # +4692 # +4694 # +# +# +# +4706 # +4713 # +# +# +# +# +4739 # +4751 # +4764 # +# +4767 # +4781 # +4786 # +# +4804 # +4807 # +4829 # +4849 # +4875 # +4889 ?# +4898 # +5112 # +5117 # +5132 # +# +5138 # +# +# +5158 # +5166 # +5177 # +# +5204 ? +5207 ? +5219 # +5222 ? +? +5225 ? +# +# +# +# +# +# +? +? +5235 ? +? +5247 # +# +# +# +# +# +# +5280 # +?# +5285 # +?# +?# +?# +# +5313 # +5334 # +5339 # +5362 # +5364 # +# +# +# +5418 # +5482 # +# +# +# +# +5506 # +5513 # +5527 # +# +5532 ? +# +# +5548 # +5559 # +# +# +5569 # +5579 # +5582 # +# +# +# +5615 # +5621 # +# +# +5625 # +# +5632 # +5647 # +# +# +# +# +# +# +5670 # +5688 # +# +5698 # +# +5717 # +5724 # +5744 # +# +# +# +5750 # +5775 # +# +# +# +# +# +5796 # +5798 # +5809 # +5820 # +# +# +# +5847 # +5852 # +# +5863 # +5872 # +# +5877 # +# +# +# +# +# +# +# +5896 # +# +5904 # +# +# +# +# +# +5911 # +# +# +5917 # +5919 # +5922 # +# +5933 # +# +5937 # +# +# +5941 # +# +# +# +# +# +5965 # +5973 ? +5978 # +5987 # +5993 ? +# +6000 ? +6109 # +6140 # +# +# +# +# +# +6158 # +# +6169 ? +# +# +6180 # +6193 # +# +# +6219 # +6236 ? +6240 # +6257 # +6270 # +6275 # +# +6291 # +# +6298 # +# +# +# +6317 # +6321 # +6335 # +6340 # +6342 # +6358 # +6363 # +6380 # +6387 # +6393 # +6410 # +6447 # +# +6457 # +# +6471 # +6474 ? +6476 # +6483 # +6488 # +# +?# +6520 # +6545 # +# +6613 # +6632 # +# +6641 # +? +6645 # +6700 # +# +6715 # +6719 # +# +# +# +6743 # +6748 # +6752 # +6764 # +# +# +# +6775 # +6779 # +# +6792 # +6811 # +# +6833 # +6843 # +6851 # +# +6864 # +6873 # +# +# +6878 # +# +# +# +# +6898 # +# +# +# +6904 # +6907 # +# +6924 # +6931 # +6945 # +6955 # +6961 # +6963 ? +# +6969 ? +6978 # +# +6986 # +6992 # +# +7000 # +7002 # +7010 # +# +7018 # +# +# +# +# +7026 # +7064 # +7102 # +7170 # +7195 ?# +# +# +# +# +7226 ! +7239 # +# +# +# +7253 ? +7261 # +# +7284 ? +7321 ? +? +7351 # +# +7361 # +7389 # +# +7392 # +7409 # +7416 # +7422 # +7442 # +# +7464 # +7468 # +7481 # +# +7511 # +7551 # +7553 ? +? +? +7557 # +7564 ? +? +? +7584 # +7609 # +7627 # +7638 # +7641 # +7646 # +7661 ? +7668 # +7673 ?# +# +7687 # +?# +?# +7704 ?# +? +7712 # +7738 # +# +7757 # +7798 # +7803 # +# +7820 # +7889 # +7925 # +# +7929 # +7948 # +7965 # +7981 # +7988 # +# +# +7997 # +8019 # +8047 ? +8061 # +8071 # +8081 # +# +# +# +# +8088 # +# +# +8114 ? +8154 # +8157 # +8171 # +# +# +8199 # +8202 # +# +8206 # +8208 # +8239 # +# +? +8254 # +8259 # +# +8277 # +8354 # +8403 # +# +8423 # +# +8485 # +# +8509 # +# +# +8520 # +8527 # +8529 # +# +8542 # +# +# +# +8656 # +8678 # +# +# +# +8698 # +8708 ?# +?# +8730 ? +8746 # +# +8860 # +8908 # +# +8941 # +8962 # +8980 # +9002 # +9015 # +9044 # +# +9055 # +9065 # +# +9077 # +# +# +9086 # +9094 # +# +9097 # +9113 # +# +# +# +9122 # +# +9140 # +# +# +9145 # +# +9166 # +# +# +# +9189 # +# +# +9205 # +9212 # +9216 # +9227 # +9246 # +9258 # +9268 # +9278 # +# +# +9302 ? +9305 # +# +9332 # +# +# +9340 # +9346 # +9366 # +9384 # +# +9442 # +9458 # +9478 # +9480 # +9511 # +9543 # +9571 # +# +9637 # +9642 # +9658 # +# +9673 ? +9802 # +# +9820 # +# +# +9842 # +9857 # +# +9878 # +# +9901 # +9927 # +9942 # +9950 # +9955 # +9959 # +9965 # +9998 # +10003 # +10017 # +# +# +# +10023 # +10064 # +10096 ? +10099 # +10103 # +# +# +# +10109 ? +?# +10120 # +# +10123 # +10167 # +10178 # +10191 # +# +# +10195 # +10200 ? +? +? +10206 # +# +10209 # +10211 # +# +# +# +10218 # +# +10225 ? +?# +10229 # +# +10264 # +10280 # +# +# +10292 # +10304 # +10327 # +10342 # +10350 # +10372 # +10381 ? +10391 # +10398 # +10402 ? +10412 # +10418 # +10420 # +10425 # +# +10433 # +? +10446 # +# +# +10460 # +# +10468 # +10472 # +10478 # +10495 # +# +10502 # +10522 # +# +10529 # +10554 # +10577 # +10580 # +10605 # +10628 ? +10646 # +# +# +10651 ! +10655 # +10666 # +10687 # +10698 # +# +10723 ?# +?# +10832 ? +? +10886 # +10901 # +10924 # +# +10927 # +10945 # +# +# +10949 # +# +10978 # +# +# +10986 # +11002 # +11020 ? +11022 # +# +11052 # +11082 # +11086 # +11090 # +11096 # +11103 # +11107 # +?# +# +11117 # +# +? +11122 # +11129 # +11135 # +11140 # +11153 # +11156 ? +? +? +11163 # +11167 # +11173 # +# +11177 # +11181 # +11193 # +# +# +11215 # +11233 ? +? +11247 # +# +11250 ? +11252 # +11267 ?# +# +11279 # +11286 ? +11333 # +11336 # +11349 # +# +11364 # +# +11410 ? +11443 # +11456 ? +11459 # +11461 # +11467 # +11486 # +11505 # +11516 # +11529 ?# +11564 # +# +11579 # +# +# +11591 # +# +11596 # +11608 ? +11646 # +11648 # +11652 # +11678 ?# +? +11718 # +11776 # +11800 # +11829 # +11841 # +? +? +? +11855 # +11908 # +# +# +# +11954 # +11965 # +# +11999 # +# +# +12004 # +12034 # +12082 # +# +12136 # +12150 # +12163 ? +12165 # +12182 # +12184 # +12213 # +12233 # +# +12253 # +12416 # +12422 # +12445 # +# +12462 # +# +# +12470 # +# +# +# +# +# +12490 # +# +12503 # +12505 ? +12512 # +12520 # +# +# +# +# +# +# +# +# +# +12542 ?# +12546 # +# +12549 # +12570 # +12586 # +12597 # +12631 # +# +12692 !# +12720 ? +? +12727 # +12740 # +# +12747 # +# +# +# +12767 # +12782 # +# +12786 # +# +12792 # +# +# +12812 # +# +# +12822 # +12841 # +12844 # +# +12863 # +12901 # +12939 # +# +# +# +12983 # +13024 # +13049 # +# +13066 # +# +# +# +13091 # +# +13103 # +? +? +13107 # +13111 # +# +# +# +13155 # +13178 # +13201 # +# +13210 # +# +# +# +?# +# +?# +# +# +# +13226 # +# +13231 # +13235 # +13241 # +13265 # +13291 # +? +? +13319 ? +13349 ?# +13448 # +# +13473 # +13495 # +13502 # +13519 # +13523 # +13556 # +# +13561 # +# +13576 # +13601 # +13642 ? +13663 # +13668 # +13685 ? +? +13689 # +13703 ? +? +?# +13725 # +13742 # +# +13759 # +13775 # +# +# +# +13809 # +13852 ? +? +?# +13863 # +# +13873 # +13888 # +13895 # +# +# +13952 # +13968 # +13970 # +# +# +13988 # +13996 ? +14011 # +14053 ?# +14063 # +# +14069 # +? +? +14086 # +# +14108 # +14123 # +# +14131 # +14173 # +14177 # +14211 ? +# +14223 # +14232 ? +14245 ?# +# +14263 ? +?# +? +14268 ? +14270 # +? +? +14277 # +# +? +14289 # +14295 # +# +14300 # +# +# +14318 # +14334 # +14349 # +# +14352 # +14356 # +14391 # +14395 # +# +# +# +# +# +# +# +# +# +# +14410 ! +14448 # +# +# +# +# +14460 # +14465 # +14477 # +14496 # +# +14500 # +14514 # +14517 # +# +14534 # +14549 # +14551 # +# +# +14570 # +14572 # +14581 # +# +14597 # +# +14617 # +14633 # +14646 # +# +# +# +# +# +# +# +# +14682 # +# +# +14688 # +# +# +# +# +# +# +# +# +# +14720 # +# +14763 # +14788 # +14808 # +14811 # +# +# +14833 # +14860 # +14885 # +14895 # +# +14900 # +14903 # +14923 # +14932 # +# +# +# +14952 # +14959 # +14981 # +14990 # +# +14997 # +15005 # +15021 # +# +15028 # +15067 # +15085 # +15098 # +15100 # +# +15104 # +15111 # +15118 # +15138 # +15142 # +# +15151 # +15161 # +15164 # +15208 # +15248 # +# +15271 # +# +# +15299 # +15321 # +15349 # +# +15356 # +15366 # +# +# +15372 # +# +# +# +15381 # +15389 # +# +# +15422 # +15442 # +# +15446 # +15459 # +# +# +15472 ? +# +15482 # +15517 ? +15533 # +15539 # +15558 # +15571 # +# +# +15608 # +# +15628 # +# +15646 # +# +# +15652 # +15663 # +# +# +15706 # +15720 # +15724 ? +? +15731 # +15736 # +# +15739 # +# +# +15747 # +# +# +# +15760 # +# +15785 # +15860 # +15873 # +15898 # +# +15916 # +15974 # +16001 # +16059 # +16077 # +# +16094 # +16101 ? +? +# +# +# +16122 # +16124 # +16141 # +16190 # +16216 # +16243 # +16255 # +16280 ? +? +? +16299 # +? +? +16303 ! +16305 !? +16314 # +# +# +# +16321 # +# +# +16329 # +16350 # +16362 # +16401 # +16429 # +16451 # +16476 # +16503 !# +# +# +16535 # +# +# +16549 # +16576 ?# +16616 # +16651 ?# +16660 # +# +# +16677 # +# +# +# +16694 ? +16696 # +# +16737 # +16751 # +16854 # +16868 # +# +16875 # +16883 # +16889 # +16899 # +# +16942 # +?# +? +? +? +16954 # +# +# +16972 # +? +16988 # +16996 # +# +?# +?# +17021 # +# +17190 # +17269 # +17340 ? +? +17347 # +17355 # +# +17366 ? +17379 ?# +17384 # +# +# +# +17398 # +17426 # +17457 # +# +# +# +# +# +# +17467 # +# +17474 # +# +# +# +# +# +17524 # +17529 # +17535 # +17545 # +# +# +17553 # +# +17560 # +# +# +# +# +17571 # +# +17579 # +# +# +# +17584 ? +17589 # +# +# +17596 # +# +# +# +17606 # +17643 # +? +? +17654 # +17672 ? +17674 ? +# +# +# +# +# +17684 # +17690 ? +? +17694 ? +? +17702 # +?# +?# +?# +?# +17715 ? +17728 ?# +?# +? +? +17735 ? +? +? +17750 ? +? +17776 # +17801 # +# +# +# +17836 # +17890 # +17896 ? +? +17948 # +17951 ? +17957 ?# +# +# +# +17969 # +17988 ? +18007 ? +# +# +18029 ? +? +18032 ? +? +18055 # +18103 # +18128 # +18143 # +# +# +18151 # +18168 # +18176 ? +# +# +# +18232 ? +18234 ? +18239 ? +18243 ? +? +? +18247 ?# +? +18254 # +18257 # +18261 # +18264 # +# +18270 # +?# +? +18276 # +18283 # +18290 ? +18293 # +18305 # +18313 # +18315 # +# +18325 # +18331 ? +18335 ? +18340 # +18350 # +18364 # +# +# +18375 # +18400 # +# +18424 # +# +# +18451 # +18523 # +# +# +# +# +18547 # +# +?# +?# +?# +18557 # +18571 # +?# +? +?# +18607 # +# +# +# +18617 # +18651 # +18663 # +# +18686 # +18732 # +18734 # +18857 # +18984 # +19010 # +# +# +# +19281 # +19296 # +# +19319 # +19327 # +# +# +19344 # +19365 ? +? +# +19408 # +19452 ? +19472 # +19476 # +# +19487 # +19490 # +?# +# +19496 # +19499 # +# +# +# +19508 # +19511 # +# +19514 # +19522 # +19545 # +# +19558 # +19564 # +# +19568 # +# +# +# +# +# +19580 # +19583 # +19592 # +19595 # +19610 # +# +19627 # +# +19635 # +19640 # +# +19643 # +19654 # +19660 # +# +# +19668 # +19687 # +# +# +19703 # +# +19707 # +# +# +19714 # +# +19726 # +# +19738 # +19741 # +? +? +? +? +19748 ? +# +# +19758 ? +? +? +?# +# +19764 ? +? +? +19770 ? +? +# +19792 # +19807 # +19881 # +# +# +# +# +# +19900 # +19913 # +20062 # +20088 # +# +20092 # +# +# +# +# +# +# +# +# +20102 # +# +# +# +20117 # +20131 # +20134 # +20160 # +20171 # +20183 # +# +20201 # +20210 # +20341 # +# +# +# +# +# +20360 # +# +20374 # +# +20381 # +# +# +20400 # +20406 # +# +20413 # +# +20438 # +# +20462 # +# +20469 # +# +20478 # +20489 # +# +20499 # +20507 # +# +20512 # +# +20526 # +20543 # +20573 # +# +20579 # +20595 # +20598 # +20603 # +# +20616 # +20627 # +# +20687 # +# +20718 # +# +20736 # +20747 # +# +20769 # +20777 # +20792 # +20798 # +20827 # +20845 ? +20902 # +? +20944 ? +? +? +? +? +? +20999 # +# +21002 ? +21012 #? +21021 # +21070 # +# +# +21078 # +21091 # +# +# +# +# +# +# +# +21100 # +21112 # +# +# +# +# +# +# +# +# +# +# +# +# +21134 # +21171 ? +21197 # +# +21205 # +# +# +# +21236 # +21338 # +# +# +# +# +21346 ? +21371 ? +21388 # +# +# +# +# +# +21395 # +# +# +21420 # +21431 # +# +# +21440 # +# +21456 # +# +21567 # +21585 # +21595 # +21606 # +21608 ? +# +21614 # +# +# +# +21636 # +# +# +# +21660 # +# +# +# +# +# +# +21685 # +# +# +# +21692 # +# +# +21697 # +21712 # +# +# +# +# +# +# +?# +?# +# +# +# +# +# +21733 # +21742 # +# +# +# +# +# +# +# +# +# +# +# +21767 # +21772 ?# +?# +21776 # +# +# +# +# +# +# +# +# +21800 # +21804 # +# +# +# +# +21810 # +# +# +21824 # +# +21827 # +21830 # +21832 # +21841 ? +?# +# +# +21850 ?# +21861 # +21868 # +# +21878 # +# +21958 # +# +21980 # +21990 # +22022 # +22128 # +22174 # +22215 ?? +22240 # +# +22253 #? +# +# +22274 # +22379 ? +? +? +22454 # +# +22470 # +22493 # +22573 # +22599 # +22619 ? +22632 # +22640 # +22645 ? +22669 ? +22672 # +# +22678 # +22713 ? +22722 ? +22730 # +22763 ? +22765 ? +22767 ? +22792 # +22803 # +? +22808 ? +22810 # +# +22814 #? +#? +22817 # +# +22820 # +# +22841 # +# +? +22848 # +22863 ? +22893 ? +22901 #? +? +22905 # +22915 # +# +22920 # +# +# +? +# +# +# +# +# +# +# +22932 # +22939 # +# +22943 # +# +# +22947 # +# +22966 # +# +# +# +23005 # +# +# +# +# +# +# +23017 # +# +# +23023 # +# +23032 # +23045 # +# +23058 # +? +? +23066 # +# +23080 ? +23101 ? +23120 # +? +23131 # +# +23141 # +23162 # +?# +23166 ? +# +23185 # +23213 ? +? +23235 # +23258 # +23277 # +23305 # +# +23313 # +23317 # +23358 # +23373 # +23375 ? +23390 ? +? +? +? +# +23399 # +23402 # +23408 ? +? +? +23413 ? +# +23424 ? +23442 ? +? +? +23446 # +23466 ? +# +23471 # +# +# +# +# +23492 # +23555 # +23591 ? +23600 ? +23607 # +23611 #? +23620 # +23635 # +# +23643 # +# +23696 # +? +23702 # +23823 # +# +?# +23853 # +# +?# +# +# +# +23871 # +23893 # +23914 # +23978 ? +? +23992 # +# +# +# +24012 # +24036 ?# +# +24044 # +24053 # +# +# +24072 # +24077 #? +# +? +24086 # +24099 # +# +# +# +# +?# +24111 # +# +24114 # +# +# +24126 # +# +24130 ! +24134 # +24143 # +24159 # +# +24167 # +24169 # +24188 # +24192 # +24211 # +# +24231 # +24239 # +24249 # +24272 # +24289 # +# +# +24296 # +# +# +# +24314 ? +24318 ! +24340 ? +? +? +24378 # +24388 # +# +24395 # +# +# +24400 # +# +# +# +# +24413 # +24429 # +24465 # +# +# +24469 # +# +24500 # +24511 # +24537 # +# +24559 # +24571 ?# +? +24603 # +# +# +24639 # +24657 # +24678 # +24689 # +24698 # +24701 # +24708 # +24726 # +# +24743 # +# +# +24803 # +24844 # +# +24854 ? +24875 # +24887 ? +24920 # +24932 # +24942 # +24951 # +24961 # +# +# +# +24968 # +24971 # +# +25070 # +# +25074 ? +? +25079 # +25093 # +25095 # +25138 # +25158 # +25206 # +#? +25221 # +# +25232 # +25235 ? +25237 # +# +# +25252 # +25276 ? +25294 # +# +# +# +# +25314 # +25324 # +# +25338 # +# +# +25345 ? +25348 # +25357 # +# +# +# +# +# +25369 # +# +25394 # +25403 # +25407 ? +? +? +25417 # +# +# +# +# +# +# +# +# +25430 # +25445 # +25451 # +# +# +# +25470 # +25478 # +25483 # +# +# +# +# +25498 ? +25535 ? +25547 # +25556 # +25561 # +25564 # +25571 # +# +25579 # +# +# +25593 # +25602 # +# +25614 # +# +25629 # +# +25644 # +# +# +25657 # +# +# +25665 # +# +25678 # +25681 # +# +25687 # +25709 # +# +25732 # +# +25758 # +# +25778 ? +25800 # +# +25830 ? +25846 # +25878 ? +25880 ? +25915 #? +25945 # +# +# +# +# +25957 # +25959 # +25961 # +# +# +25969 ? +25976 # +#? +#? +25984 # +25986 ? +# +25994 # +26001 # +26018 # +# +# +# +26031 ? +26049 # +# +26073 # +# +# +26218 # +# +# +26228 # +26252 #? +26254 #? +#? +? +26267 # +26294 # +26300 # +? +26320 # +? +26339 # +26392 ? +? +? +? +? +26408 # +26424 ? +26428 # +# +# +# +# +# +# +# +# +# +# +26447 ? +? +? +? +? +26460 # +26462 # +26472 ! +26477 ! +26485 # +26499 ? +26511 ? +?# +26538 ? +?# +?# +? +26554 # +26582 ? +# +# +# +# +26591 ? +26598 # +# +? +26602 # +26609 ? +26613 ?# +26617 ? +26633 # +26650 ! +26652 # +26660 # +? +26672 ? +26674 # +# +# +# +# +26686 # +26693 # +# +? +# +# +# +26716 # +26718 # +26738 # +# +# +# +26745 # +# +# +# +26775 ? +26783 # +26789 # +26817 # +# +# +# +# +# +26832 # +# +26842 # +# +# +# +# +# +26854 ? +26870 ?# +26882 # +26891 # +26945 # +26957 ? +27003 ? +# +27019 # +27034 ? +# +27038 # +# +# +27072 # +27081 # +27102 # +27112 # +# +27122 # +# +# +27135 # +# +# +# +# +# +27156 # +# +# +# +# +27176 # +27209 # +27223 ? +27273 # +27300 # +# +27323 # +# +# +# +# +27394 # +27444 * +27476 ? +27496 # +# +27546 # +27559 # +# +# +# +# +27584 # +# +27631 # +# +# +# +27684 # +# +# +# +# +# +# +# +# +# +# +27704 # +# +# +# +# +27747 # +# +# +27774 # +# +# +# +27791 # +27808 ? +27842 ? +? +27865 ? +27895 # +# +# +27911 # +# +# +# +27919 ? +27921 # +# +# +28003 # +# +# +# +# +28019 # +# +# +# +# +# +28069 # +# +# +28084 # +# +# +# +# +# +# +# +# +28108 # +28117 # +28134 # +28182 # +28201 # +28218 # +# +28259 # +# +28265 # +28267 # +# +# +28272 # +# +28282 # +28293 # +28332 # +# +28357 # +28378 ? +# +28389 ? +? +? +? +28397 ? +28421 # +# +28431 # +# +# +# +# +28444 # +28447 ? +28485 ? +28523 ? +28526 # +28545 # +# +28554 # +# +# +28570 # +# +28594 # +28596 # +28629 # +28636 # +28645 # +28652 # +# +28656 # +# +28660 # +28670 # +# +28687 # +28698 # +# +# +# +# +# +# +# +# +# +# +# +# +# +# +# +# +28739 # +28775 # +28791 # +28815 # +# +28824 # +28843 # +# +28847 # +28852 # +# +28858 # +28867 # +# +# +# +# +# +# +# +# +# +# +# +# +# +28904 # +# +# +? +28920 # +# +# +28927 # +28977 # +# +29001 # +29021 # +29036 # +29042 # +29072 # +# +# +29101 # +29108 ! +29110 # +# +! +29131 # +# +29145 # +# +29155 # +29167 # +# +29190 # +29197 ! +29243 # +? +? +# +29281 # +29305 # +29329 # +29364 # +29368 # +# +29374 ? +29383 ?# +29413 # +29417 # +29423 ? +? +? +? +? +29439 # +29449 # +# +# +29454 ? +29466 # +# +# +29478 # +?# +29481 ? +29485 # +29490 # +# +29499 # +# +29505 ! +29515 # +# +# +# +# +# +# +# +# +# +# +29550 # +? +29621 # +29627 # +# +# +# +# +# +29662 # +29679 ? +29764 ? +? +? +? +29784 # +29809 # +# +29822 ? +# +29831 # +29912 ? +29928 ? +29935 # +# +# +29985 # +29996 # +30036 # +# +# +# +# +# +# +# +# +# +# +30056 # +30079 # +30083 # +30130 # +30153 # +# +# +30188 # +# +! +# +# +30220 # +# +30231 # +30247 ? +30258 # +30265 # +30275 # +# +# +30295 # +# +30307 # +# +# +# +# +# +# +# +# +30351 # +30377 ? +# +# +30409 # +30418 # +30435 # +# +30483 # +30554 ? +30617 # +30636 # +30701 # +# +30718 # +30724 # +30759 # +30766 # +# +# +# +# +30877 # +30899 # +30905 # +30909 # +# +30917 # +30921 # +30934 ? +30947 ? +30953 # +30961 # +# +31004 # +31064 # +31078 # +31097 # +31115 # +31121 ? +31128 ? +31138 ? +31159 # +31162 # +31182 ?# +31214 ? +# +31243 ? +31272 # +31276 # +# +# +# +# +# +# +31301 # +31327 # +# +# +# +31349 # +31365 # +31399 # +31404 ? +31422 # +31463 # +31465 # +31475 # +# +31489 # +31503 # +# +31512 # +31532 # +31549 # +# +31673 ? +31691 # +# +# +31731 # +# +# +# +# +# +# +31758 # +31777 # +31823 # +# +# +# +31852 ? +31869 # +# +# +31885 # +31890 ? +31896 ? +31911 # +31977 # +31993 # +# +32014 # +32039 # +32046 # +32069 # +32086 # +32096 # +32112 # +32114 !? +32116 # +32123 # +32127 !?# +32157 ?# +32163 # +32177 ? +?# +?# +32195 # +32214 # +# +# +32255 # +# +# +# +# +# +32275 # +# +# +32280 # +32291 # +32320 # +32348 # +32362 ? +32376 # +32384 ? +32397 # +32403 ? +32407 # +# +32416 ? +32420 # +# +# +32428 # +32453 ? +? +? +# +32467 # +32472 # +32482 # +# +32497 # +# +# +# +32506 # +32520 # +# +32526 # +# +# +32534 # +32563 # +# +32582 # +# +32597 # +# +# +# +# +# +32617 # +32632 # +# +# +# +32646 # +32661 # +32667 # +# +# +32678 # +32685 # +# +32692 ? +# +# +# +# +?# +# +32752 # +# +32758 # +32772 # +# +32777 # +32786 # +32802 # +# +32817 # +32820 # +32834 # +32846 # +32848 # +32854 # +32863 # +32865 # +32891 # +# +# +# +# +32913 # +32915 # +32936 # +# +32962 # +32980 # +# +32987 # +32997 # +33003 # +33015 # +33022 # +# +33039 # +# +33046 # +33066 # +# +33076 # +# +33090 # +33095 # +33109 # +# +# +33119 # +# +33129 # +# +33140 # +33150 # +33160 # +# +# +# +# +# +33168 # +# +# +33178 # +# +?# +33196 # +33201 # +# +# +33211 # +# +33227 ! +33231 # +33247 # +33265 # +33300 # +# +33314 # +33326 # +# +33335 # +33354 ? +33394 # +# +# +33436 # +# +33456 # +33529 # +33532 ? +33535 # +33571 # +33580 # +33610 # +# +33615 # +# +33624 # +33626 # +33641 # +33645 # +33648 # +33652 # +33656 # +33664 # +33681 # +33683 # +33696 # +33698 # +# +# +# +# +33713 # +33720 # +# +33732 # +# +33739 # +33742 # +33755 # +# +33761 # +# +# +33794 # +33804 # +33820 # +?# +# +# +# +33842 # +# +# +33864 # +33881 # +33885 # +33898 # +# +33941 # +33962 # +33981 # +34005 # +34007 # +34018 # +# +# +34025 # +# +34035 # +34053 # +34055 # +34060 # +34073 # +34078 # +# +34091 # +34099 # +34129 # +34166 # +34169 # +34178 # +# +# +# +# +# +# +34188 # +34194 # +34196 # +34201 # +34214 # +34221 # +# +# +34253 # +34362 # +34367 # +34369 # +34378 # +34446 # +34488 # +34500 # +34504 # +34519 # +34530 # +34539 # +34551 # +34569 # +34584 # +34586 ? +34591 # +34645 # +# +# +# +34654 # +# +# +# +34669 # +?# +?# +?# +34674 # +# +34691 # +?# +# +# +34696 ?# +34710 # +# +# +34726 # +34729 # +34742 # +34745 # +34747 # +34749 # +# +34768 # +# +34771 # +# +34803 # +34876 # +34898 # +# +34914 # +# +34946 # +34959 # +# +# +34979 # +34998 # +# +35072 # +35097 # +35114 # +35200 # +# +35221 # +# +35227 # +# +# +35232 # +35234 # +35248 ? +? +35264 # +# +35273 # +35275 # +35277 # +# +35294 # +35296 # +# +35350 # +35385 # +35398 # +# +35417 # +35476 # +35502 # +# +35539 ?# +# +35608 # +# +35647 # +35658 # +35661 # +35685 # +# +35699 # +35788 # +35847 ?# +?# +35954 # +35974 # +36153 # +36177 ? +36186 # +# +36192 # +36202 ? +36207 # +36209 # +?# +36227 ? +36244 # +36262 # +36299 ? +? +?# +36307 # +# +# +# +# +# +36323 # +# +36326 # +36330 # +36348 # +# +36470 # +36495 # +36502 # +36538 # +# +# +36564 # +# +# +36581 # +# +# +# +# +# +# +# +36604 # +# +36609 ! +36631 # +36639 # +# +36696 # +36715 # +36747 # +36784 # +36815 # +36817 # +36844 # +36846 # +36874 # +# +36896 # +37061 ! +! +37120 # +37280 # +37338 # +37340 # +# +37352 # +37354 # +37364 # +37367 # +# +# +# +# +37375 # +# +37379 # +37383 # +# +37386 # +37404 # +# +# +37444 # +37462 # +37481 # +# +37485 # +37507 # +37512 # +37534 # +37538 # +# +37560 # +37562 # +# +37569 # +37578 # +# +# +# +# +37592 # +37594 # +# +37606 # +# +37628 # +37630 # +# +37636 # +37671 # +# +37710 # +37741 # +# +# +37771 # +? +37790 # +37799 # +# +37804 # +37837 # +37841 # +37876 # +37883 # +37888 # +37907 # +37911 # +37919 ? +# +37938 # +37944 # +37953 # +37958 # +# +# +# +# +# +37966 # +# +# +# +# +# +# +37975 # +# +37983 ? +37987 # +? +? +38005 # +38052 ? +38058 # +38115 # +38120 # +38136 # +38167 # +38184 # +! +! +38192 # +# +# +# +38208 ? +38266 # +# +38273 # +38277 ?# +38279 # +38290 # +# +38294 # +# +38298 # +38312 # +38321 # +38328 # +38344 # +# +38369 # +38375 # +38390 # +38403 # +38421 # +38424 # +38434 # +# +# +38446 # +# +38463 # +38471 # +38486 # +38501 # +38505 # +38520 # +38540 # +# +38545 ?# +38564 # +# +# +# +38629 # +38658 # +# +38714 # +38723 # +38728 # +38734 # +38758 # +38764 # +38770 ? +38775 # +38787 # +38789 # +38794 # +# +38797 ! +38822 # +# +38830 ! +38836 ! +38847 # +# +38851 # +# +38863 # +38870 # +# +38878 # +? +38885 # +38895 # +# +38898 # +38915 # +# +38934 # +38950 # +38971 # +38995 # +39014 # +39021 # +39037 # +# +39045 # +39049 # +# +# +# +# +39075 ? +39083 # +# +39087 # +39092 # +# +# +39098 ?# +39102 # +# +39108 # +39113 # +# +?# +?# +39122 # +39143 # +# +# +39148 # +39160 # +# +39167 # +39169 # +39182 # +39212 # +39225 # +# +39257 # +39304 # +# +39319 # +39331 # +39333 # +39335 # +39348 # +39407 # +39459 # +39479 # +39505 # +# +39529 # +# +39533 # +39621 # +# +39627 # +39645 # +39673 # +# +39698 # +# +39726 # +# +39747 # +# +# +# +39775 # +39828 # +39846 # +39861 # +39868 # +# +# +# +# +# +39900 # +# +39911 # +# +39922 # +39931 # +39935 # +# +39947 # +39961 # +# +# +39970 # +39973 # +39982 # +# +39986 # +# +40014 # +40029 # +40049 ? +# +40057 # +# +40091 # +40138 # +40166 # +40191 # +# +# +40215 # +40247 # +# +# +40252 # +# +40263 # +40283 # +# +40287 # +40298 # +40307 # +40313 # +# +40316 # +40318 # +40360 # +40365 # +40387 # +40472 # +# +40492 # +# +# +# +# +40519 # +40541 # +# +40546 # +# +40565 # +40567 # +40585 # +40606 # +# +# +40638 # +40677 # +40695 # +# +# +# +# +# +# +# +40716 # +40720 # +# +# +40726 # +40728 # +# +40732 # +# +40735 # +# +# +# +40750 # +40753 # +# +# +# +40761 # +# +# +# +# +40792 # +40801 ? +40831 # +40838 # +40850 # +40873 # +# +40904 # +40929 # +40956 # +40960 # +40985 # +40988 # +41009 # +41032 # +41128 # +41144 # +41166 # +41223 # +# +41227 # +41229 # +41234 ? +41237 # +41258 # +# +# +41263 # +41336 # +# +# +41346 ! +41356 # +# +41366 # +# +41388 # +# +41403 # +# +# +41438 # +41449 ! +# +41456 # +# +41468 # +# +41499 # +41521 ? +? +41551 # +# +41576 # +41578 # +41607 ? +41639 # +41687 # +# +# +41701 # +41710 # +41731 # +# +41737 ? +41749 # +41752 # +?# +?# +?# +41787 # +41802 ? +41812 # +# +41841 # +41919 # +41938 # +41956 # +# +# +41970 # +41997 # +# +# +# +42006 # +42038 # +42043 # +42050 # +42056 # +# +# +# +# +# +# +42069 ? +42080 # +42088 # +# +42093 # +42128 # +42167 ? +42194 # +42203 ?# +?# +? +42220 # +42223 # +42246 # +42249 # +# +42346 # +42350 # +# +# +# +# +42416 # +# +42459 # +42480 # +42497 ?# +?# +42551 # +42554 # +42569 # +42571 # +42584 ? +42589 # +42662 # +# +# +42668 # +42698 # +# +# +# +42772 # +42829 # +# +42833 # +42850 # +42869 # +42921 # +42939 # +# +42959 ?# +42968 # +42976 ? +42979 ! +42988 # +42997 # +# +43007 # +43011 # +43020 # +43022 # +43029 ? +43039 ? +43041 ? +43052 ? +? +43056 # +43064 # +# +43085 # +# +# +43104 # +# +# +# +43116 ? +43121 # +# +43133 # +# +# +43139 ! +43142 # +43152 # +43178 # +43183 # +43223 # +# +43351 # +43366 # +43384 # +43395 # +43405 # +43431 # +43444 # +# +43450 # +43460 # +43463 # +43471 # +43483 # +# +# +# +# +# +# +# +# +# +# +43560 # +43667 # +43751 # +? +43820 # +# +# +# +# +# +# +# +# +43851 # +# +# +# +43874 # +43884 # +43891 # +43897 # +# +43927 # +43938 # +43973 # +43985 # +44000 # +44005 ? +44025 # +# +# +44054 # +# +44060 # +44075 # +44092 # +# +# +# +44101 # +44113 # +44120 # +# +44131 # +# +44144 # +44158 # +44169 # +# +# +44184 # +44193 # +44202 # +44209 # +44229 # +44236 # +? +44249 # +? +44282 # +# +# +44304 ? +? +44360 # +# +44434 # +44494 # +44504 # +# +# +# +# +44516 ? +44519 ? +44521 ? +44523 ? +44551 # +44557 ? +44568 # +44580 # +44608 # +44632 # +44634 # +# +# +# +# +44674 # +44701 # +44711 # +44723 # +44752 # +# +44794 # +# +# +44826 # +# +44846 # +44853 # +44866 # +44875 # +44886 # +44904 # +# +44938 # +# +44961 # +44985 # +# +# +45047 # +# +45052 # +45062 ? +? +# +# +45069 # +45081 # +# +45096 # +45100 ? +45103 # +# +45112 ? +45114 # +45121 # +?# +45124 ? +? +? +? +45133 # +45137 # +# +45146 # +45157 # +45195 ? +45202 ? +45226 # +45237 # +45258 # +45263 # +45281 # +45287 # +45294 # +45308 # +45318 # +45373 # +# +# +# +# +45397 # +# +# +# +45402 # +# +# +45409 # +# +# +# +45428 # +45430 # +45445 # +45503 # +# +45514 # +45617 # +# +45624 ! +45641 # +# +45662 ? +45664 # +45695 # +45703 # +45723 # +45737 # +# +45758 # +45783 # +45792 ?# +# +45810 # +# +45891 # +# +45895 # +45906 # +# +45912 # +45916 # +45919 # +# +45936 # +# +45941 # +# +45963 # +# +# +45984 # +# +45987 # +46013 # +46030 # +46084 # +46108 # +# +46133 # +# +46158 # +46182 # +# +# +46214 # +# +46240 # +# +46253 # +46266 # +46282 ? +46291 # +46299 ? +46307 # +46345 # +46364 # +# +46369 # +46379 # +# +# +# +# +46405 # +# +# +# +# +# +46418 # +# +# +46422 # +# +46433 # +# +46441 # +# +46464 # +46482 # +# +46511 ? +46536 # +46586 # +46611 # +46635 # +46656 # +# +# +46664 # +46684 # +46691 # +46760 # +46780 # +46802 # +46806 # +46843 ? +46859 # +46889 ! +46918 # +46920 # +46922 # +46931 # +# +# +# +# +46957 # +# +# +# +46970 # +# +47027 # +47055 # +47126 # +47138 # +47141 ! +47153 # +# +# +47208 # +# +# +# +47224 # +# +47232 # +# +47235 # +# +47238 # +# +47252 # +47266 # +47279 # +47306 # +47311 # +47326 # +47360 # +47395 # +# +47409 # +47419 # +47426 # +47448 # +# +47453 # +47479 # +# +# +47485 # +47491 # +47507 # +# +# +47515 # +# +47534 # +47540 # +47566 # +# +47640 # +47661 ? +? +47689 ? +47718 # +47744 ? +47749 # +# +47807 # +# +47826 # +47846 # +47876 # +47917 # +47968 # +48036 # +48052 # +# +# +# +48060 # +# +48138 # +# +48164 ? +48169 # +# +# +48179 ! +48181 # +48225 # +48241 # +48301 # +# +# +# +# +48323 # +48346 # +# +# +48370 # +48397 # +48425 # +# +48442 # +48458 # +48471 # +48485 # +48513 # +48541 # +48575 # +48598 # +48607 # +48621 # +48633 # +48661 # +48686 # +48708 # +48711 # +48734 # +# +48759 # +48786 # +48832 # +48924 # +48962 # +# +49005 # +49010 # +# +49014 # +49028 # +49103 # +# +49123 # +49141 # +49164 # +49187 # +# +# +# +# +# +49220 # +49249 # +# +49280 # +# +# +# +49288 # +# +49343 # +49394 # +# +49544 # +# +49571 # +49654 # +49675 # +49705 # +49714 # +# +# +# +# +49734 # +# +# +# +# +? +49741 # +# +# +49746 # +49749 !# +49762 ? +? +49768 # +49792 # +# +49818 # +49820 # +49822 # +# +49828 # +49839 # +49841 # +# +# +49855 # +49866 # +49880 # +# +# +49890 # +49897 # +# +49900 # +49906 # +# +49912 # +# +49916 # +# +# +49920 # +# +49926 # +49934 # +# +# +49938 # +# +# +# +49956 # +# +# +49961 # +49992 # +50003 # +# +# +# +50025 # +50032 # +# +50051 # +# +50074 # +# +50079 # +# +# +50109 # +# +50118 # +# +# +50135 # +50173 # +# +# +50178 ! +50192 # +# +50212 # +50248 ? +? +50273 # +50285 # +50303 # +50311 # +50340 # +50486 # +50547 # +50551 # +50557 # +50559 # +50577 # +50589 # +50598 # +50623 # +50675 # +# +# +# +# +50684 # +# +50691 # +# +50707 # +50709 ! +50721 ? +50725 ? +50736 # +50751 # +50765 ? +50774 # +50794 # +50802 # +50805 ? +? +50824 # +50835 # +50847 # +50851 # +50893 # +# +# +# +# +# +# +# +?# +50915 # +50930 # +# +50944 # +50958 # +# +50964 # +50985 # +51016 # +51020 # +# +# +51040 # +51042 # +# +51045 # +# +?# +51051 # +51062 # +51065 # +# +51085 # +51087 # +51103 # +? +? +? +51109 # +# +51134 # +51175 # +51198 # +# +# +# +# +# +51205 # +# +51224 # +51226 # +51231 # +# +# +# +51237 #? +51239 ? +51245 ? +51250 # +# +51259 ? +51264 # +51270 # +# +51309 # +# +51348 ? +51377 ? +# +# +# +# +# +# +# +# +# +# +# +# +# +# +# +# +51457 ? +? +?# +# +# +# +51484 ? +# +#? +51505 # +# +# +# +51512 # +# +# +51531 # +51544 # +51555 # +# +# +# +51564 # +# +51571 # +51596 # +51656 ? +51667 ? +51700 # +51736 # +# +51748 # +51788 ? +51794 # +51802 # +# +?# +# +51813 ?# +51826 # +?# +51829 # +51884 # +51889 # +51903 # +51906 # +51914 ? +51916 ? +? +51932 # +51942 # +51953 # +51969 # +# +52002 # +# +52028 # +52057 # +# +# +# +52066 # +52074 ? +52081 # +# +# +# +52091 # +52098 # +# +# +52113 # +# +52118 ! +52135 # +52146 # +# +52162 # +52191 # +52196 # +# +52200 # +?# +?# +52208 # +52229 # +52234 ?# +?# +52238 # +52254 # +52259 # +52277 ?# +?# +?# +# +# +52298 ?# +?# +52306 # +# +# +# +52317 ?# +52332 # +# +# +52336 # +# +52342 # +?# +?# +52360 # +52363 # +52375 # +# +52380 # +52383 # +# +# +# +# +# +52403 ?# +?# +52411 # +# +# +# +# +52432 ?# +? +52435 ?# +?# +?# +52451 # +# +52458 # +52486 # +# +52491 # +52509 # +# +52513 # +52515 # +# +# +? +52572 # +# +52589 # +# +# +# +# +# +52604 # +52611 # +52643 # +52691 # +52719 # +# +52752 # +# +# +# +# diff --git a/tf/0.3/gloss.tf b/tf/0.3/gloss.tf new file mode 100644 index 0000000..916b04d --- /dev/null +++ b/tf/0.3/gloss.tf @@ -0,0 +1,87 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=whether a sign belongs to a gloss - between {( )} +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=int +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +1827 1 +1 +1 +2768 1 +1 +3219 1 +1 +1 +1 +4900 1 +1 +1 +6730 1 +1 +1 +1 +6763 1 +1 +1 +1 +6813 1 +1 +1 +8079 1 +11815 1 +1 +1 +1 +11848 1 +1 +1 +1 +1 +22236 1 +1 +23432 1 +1 +23542 1 +1 +1 +1 +25359 1 +1 +25483 1 +1 +1 +1 +1 +36218 1 +1 +1 +1 +1 +1 +1 +38340 1 +1 +1 +1 +38359 1 +1 +1 +1 +42950 1 +1 +1 +1 +43188 1 +1 +1 +47420 1 +1 +1 +1 +1 +1 +1 diff --git a/tf/0.3/grapheme.tf b/tf/0.3/grapheme.tf new file mode 100644 index 0000000..7ae0a41 --- /dev/null +++ b/tf/0.3/grapheme.tf @@ -0,0 +1,22115 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=grapheme of a sign +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=str +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +DU₃ +DU₃ +BI +6 KA +INIM +MA +13 EN₂ +38 KA +INIM +MA +GIG +GIR +ZI +45 DU₃ +DU₃ +BI +SIG₂ +SA₅ +51 EN₂ +54 GIM +59 KA₂ +78 DU₃ +DU₃ +BI +82 ŠIM +IGI +GIG +90 SUN₂ +108 IGI +GIG +MAR +112 ŠEŠ +114 IZI +117 IGI +GIG +133 IGI +GIG +MAR +TI +GUD +ID₂ +140 IZI +143 IGI +GIG +154 SUN₂ +156 KURUN₂ +NA +IGI +GIG +174 KA +INIM +MA +183 DIŠ +NA +SAG +DU +216 A +NAGA +SAG +DU +221 LUH +223 I₃ +GIŠ +EŠ +MEŠ +248 DIŠ +KI +MIN +SAG +DU +259 HAB +SUD₂ +MAR +263 ZA +BA +LAM +294 TI +297 LI +DUR +ŠID +438 KAŠ +NAG +444 ŠA₃ +GIG +475 KA +484 SIG₃ +SIG₃ +509 TU₆ +EN₂ +523 UGU +EN₂ +ŠUB +528 KA +555 ŠA₃ +575 KI +DU₁₁ +GA +582 ŠA₃ +584 AN +586 KI +608 DU₁₁ +GA +614 ŠA₃ +632 ŠA₃ +635 UTU +646 ŠA₃ +669 NAG +674 U₂ +KI +KI +MIN +KI +MIN +681 ŠA₃ +695 KA +KEŠDA +MEŠ +705 SAHAR +TA +724 TI +748 ZI₃ +ŠE +SA +A +753 A +GAZI +770 ARA₃ +773 GUR₂ +GUR₂ +NAGA +SI +784 MUN +791 HI +HI +804 ZA₃ +HI +LI +809 SILA₃ +ŠIKA +IM +ŠU +RIN +NA +816 GIN₂ +825 GAZI +827 SILA₁₁ +829 LAL +831 UD +833 KAM₂ +NU +DU₈ +EGIR +846 GIN₂ +ZA₃ +HI +LI +851 KA +858 ŠA₃ +NU +ŠUB +862 MUN +A +GEŠTIN +NA +NU +874 GU₇ +876 GIN₂ +ZA₃ +HI +LI +ARA₃ +883 KAŠ +SIG₃ +887 NAG +899 AN +ZAH +SUD₂ +914 ZA +BA +LAM +919 SILA₃ +934 LAL +936 UD +938 KAM₂ +NU +DU₈ +963 KAŠ +SAG +972 DIŠ +NA +SAG +KI +DAB +BA +TUKU +TUKU +989 UGU +991 KUM₂ +1002 ŠU₂ +LUGAL +1024 TI +BI +1039 ŠEŠ₂ +1042 TI +1056 I₃ +GIŠ +ŠEŠ₂ +MEŠ +1078 BI +1080 TI +1092 TI +1094 I₃ +GIŠ +1097 GUR₂ +GUR₂ +ŠEŠ₂ +1113 NAG +1116 A₂ +1122 TI +1131 ŠUB +ŠUB +1135 TI +1137 I₃ +GIŠ +1143 ŠEŠ₂ +1154 GUR₂ +GUR₂ +NAG +MEŠ +1159 TI +1171 TI +1173 I₃ +GIŠ +1176 GUR₂ +GUR₂ +I₃ +GIŠ +1181 LI +ŠEŠ₂ +1198 BI +1200 TI +1221 PU₂ +1231 ŠEŠ₂ +1234 TI +1249 I₃ +HI +HI +ŠEŠ₂ +MEŠ +1256 TI +1269 I₃ +HI +HI +ŠEŠ₂ +MEŠ +1276 TI +DIŠ +NA +1283 MUR +MEŠ +GIG +1287 NA +BI +1296 ŠEŠ +1298 U₂ +HI +A +1312 I₃ +1319 DIŠ +NA +NINDA +GU₇ +KAŠ +NAG +1326 ŠA₃ +MEŠ +1343 UD +DA +SA₂ +SA₂ +NA₄ +ZU₂ +LUM +MA +GAZ +GIM +KAM +ZI₃ +DA +1366 UTUL₇ +ŠEG₆ +1381 GAZ +SAG +DU +1392 MUN +GAZ +1395 GA +HI +HI +1408 SAG +DU +1418 EGIR +1426 MUN +1431 LAL₂ +1433 SAG +DU +1452 ZI₃ +1457 A +1460 SAG +DU +1463 LAL₂ +1466 PIŠ₁₀ +1468 ID₂ +NAGA +SI +U₅ +ARGAB +1476 ŠEŠ +DIŠ +1480 GISSU +HAD₂ +DU +GAZ +SIM +1501 NUMUN +1503 NU +LUH +HA +1507 NUMUN +1509 AB₂ +DUH +1512 NUMUN +1518 DIŠ +NA +1522 ŠA₃ +GIG +1529 DIŠ +NA +1533 ŠA₃ +GIG +1536 NUMUN +1551 GUR +GUR +1555 TI +1557 NA +BI +1564 KIN +1566 DUG₄ +GA +1572 I₃ +GIŠ +1575 GIG +SUD +1578 AKA₃ +NIGIN +1587 I₃ +1589 LI +1591 GUR +GUR +1595 TI +1597 NA +BI +1602 UTU +KIN +1607 NIGIN +1610 ŠA₃ +GEŠTU +MIN +1614 GAR +1620 PIŠ₁₀ +ID₂ +1631 NAM +LU₂ +U₁₈ +LU +1646 EREN +TAG +1656 ŠEŠ₂ +1658 ŠE₁₀ +1664 LU₂ +U₁₈ +LU +1676 LAL +1679 IGI +1682 NU +1685 NAG +1687 ZU₂ +LUM +1690 SUR +LAL +1694 DIŠ +NA +IGI +MIN +1702 DIRI +1706 ZI₃ +ŠE +SA +A +1711 KAŠ +1714 LAL +UD +1717 KAM₂ +IGI +MIN +1721 NU +DU₈ +1725 UD +1729 KEŠDA +1732 UD +1736 MAN +DU +1740 IGI +MIN +1747 A +1749 ŠA₃ +IGI +MIN +1753 ŠUB +IGI +MIN +1770 IGI +MIN +1773 KEŠDA +I₃ +UDU +1779 MAŠ +DA₃ +IGI +MIN +1788 EGIR +1793 A +GAR₅ +SUD₂ +IGI +MIN +1799 MAR +1801 HAB +SUD₂ +1804 UGU +IGI +MIN +1811 MAR +LAL +1815 UD +1819 KEŠDA +1823 ZI +1825 MAŠ +HUŠ +1830 NUMUN +1832 KI +1834 IŠKUR +1836 LI +ŠE +SA +A +1843 HE +HE +1849 UGU +SAG +DU +1853 MAR +SAG +DU +1857 LAL +1859 UD +1861 KAM₂ +NU +DU₈ +1866 UD +1868 DU₈ +1871 SAG +DU +1877 U₂ +1880 IGI +MIN +1883 MAR +MEŠ +1887 U₂ +BABBAR +U₅ +ARGAB +1896 NA₄ +1900 NAGA +SI +1903 SES +IM +GU₂ +EN +NA +GAZI +1910 PAP +1912 U₂ +MEŠ +1918 NA +IGI +MIN +1922 UD +DA +1931 DIRI +U₂ +BABBAR +NA₄ +1948 IGI +MIN +1951 GUR₂ +GUR₂ +ZI₃ +ŠE +SA +A +GAZI +1965 IGI +MIN +DIŠ +NA +IGI +MIN +1972 GID₂ +DA +GID₂ +DA +1980 E₂ +1984 DU +1986 KA₂ +GU₃ +1994 GID₂ +DA +GID₂ +1998 KIMIN +GID₂ +DA +GID₂ +2008 MIN +2012 E₂ +NU +2017 DU +2019 KA₂ +GU₃ +2028 HI +2032 GID₂ +DA +GID₂ +2036 KIMIN +GID₂ +GID₂ +2046 DIŠ +NA +2049 IGI +MIN +2056 GUR₂ +GUR₂ +2059 LI +2061 HAB +NUMUN +ŠINIG +2065 SUD₂ +2067 DIŠ +NA +2070 IGI +MIN +2073 SIG₂ +2078 IGI +MIN +2084 MUN +2087 I₃ +UDU +ELLAG₂ +2092 UDU +NITA₂ +LAL₃ +KUR +RA +2100 SUD₂ +2102 I₃ +NUN +HE +HE +IGI +MIN +2109 MAR +2114 DIŠ +NA +IGI +MIN +2119 UZU +2123 DIRI +2126 TI +2131 NUMUN +GI +ZU₂ +LUM +MA +2137 LAL₃ +SUD₂ +MAR +2149 I₃ +NUN +SUD₂ +MAR +2156 DIŠ +NA +IGI +MIN +2161 UZU +DU +2164 DIRI +2167 DU +2170 TI +2175 GIG +U₂ +BABBAR +U₅ +ARGAB +2187 SUD₂ +2190 MUD₂ +2192 EREN +2195 I₃ +GIŠ +2198 EREN +HE +HE +ZA +NA +DU₃ +2206 A +MEŠ +SUD₂ +IGI +MIN +2212 MAR +DIŠ +NA +IGI +MIN +2218 UZU +2220 MUD₂ +DIRI +MEŠ +2224 SES +2226 KUR +RA +U₂ +BABBAR +I₃ +UDU +2233 GIG +U₅ +ARGAB +2240 U₂ +MEŠ +2248 UZU +DU +DIŠ +NA +IGI +MIN +2258 DIRI +MEŠ +2267 ŠAH +2270 TUG₂ +2274 UD +2277 KUN₄ +2281 E₁₁ +2289 SUD₂ +2299 I₃ +UDU +GIR₃ +PAD +DU +LUGUD₂ +DA +UDU +2311 SUD₂ +MAR +2320 SUD₂ +2322 LAL₃ +I₃ +NUN +I₃ +GIŠ +2328 EREN +SAHAR +URUDU +SUD₂ +MAR +DIŠ +KIMIN +ZI₃ +2337 ŠE +TIR +KI +ŠE +SA +A +SUD₂ +2345 UGU +IGI +MIN +2349 DUB +DIŠ +NA +IGI +MIN +2357 I₃ +UDU +ELLAG₂ +UDU +NITA₂ +GAB +LAL₃ +2366 HE +HE +2369 I₃ +UDU +GIR₃ +PAD +DU +GID₂ +DA +SUD₂ +2380 DIŠ +2383 IGI +2394 NA +BI +KIN +2398 SUMUN +2400 IGI +MIN +2407 TI +2410 GIN₂ +2417 I₃ +NUN +SUD₂ +IGI +MIN +2423 MAR +MEŠ +DIŠ +NA +IGI +MIN +2435 ZI₃ +2437 GUR₂ +GUR₂ +ZI₃ +ŠE +SA +A +GAZ +SIM +2446 KAŠ +2449 IGI +MIN +2452 LAL +U₂ +BABBAR +NA₄ +2463 U₂ +HI +A +2469 IGI +MIN +DIŠ +NA +IGI +MIN +2479 ER₂ +2484 GAB +LAL₃ +2491 UD +2494 KUN₄ +2498 E₁₁ +2503 DIŠ +NA +IGI +MIN +2509 SUD₂ +IGI +MIN +2513 MAR +2516 DIŠ +NA +IGI +MIN +2525 I₃ +2527 SAHAR +URUDU +2530 ŠEN +TUR +SUD₂ +IGI +MIN +2536 MAR +ŠIKA +LIBIR +RA +2544 TUK +2547 I₃ +SAHAR +URUDU +SUD₂ +MAR +LAL₃ +KUR +RA +2556 DIŠ +NA +IGI +MIN +2565 GEŠTIN +KA₅ +A +SIG₇ +2573 A +MEŠ +2578 UTUL₂ +2581 IGI +DUL +2585 AN +TA +2591 SAHAR +URUDU +2594 I₃ +GIŠ +SUD₂ +MAR +DIŠ +KIMIN +ZA₃ +HI +LI +2604 GA +2609 NININDU +2621 I₃ +UDU +2624 GIG +2626 KUR +KUR +NA₄ +2632 U₂ +BABBAR +GAZI +2637 I₃ +NUN +SUD₂ +IGI +MIN +2643 MAR +DIŠ +KIMIN +NINDA +2652 SUD₂ +2661 DIŠ +KIMIN +ZI₃ +GU₂ +GAL +ZI₃ +GU₂ +TUR +ZI₃ +GAZI +2684 UTUL₂ +2687 LAL +DIŠ +KIMIN +2691 BAL +GAZI +2695 GA +SUD₂ +IGI +MIN +2700 MAR +DIŠ +KIMIN +U₂ +BABBAR +AN +ZAH +GE₆ +2711 I₃ +NUN +SUD₂ +MAR +2716 DIŠ +KIMIN +KU₃ +GAN +2721 I₃ +UDU +GIR₃ +PAD +DU +UDU +SUD₂ +MAR +DIŠ +KIMIN +ZI₂ +BAL +GI +2736 MUN +NA₂ +2739 EN +HAD₂ +DU +GAR +2744 UD +2746 HAD₂ +DU +2749 I₃ +SAHAR +URUDU +SUD₂ +MAR +DIŠ +KIMIN +ZI₂ +2760 UGU +GIR₂ +ZABAR +2764 I₃ +NUN +SUD₂ +MAR +2772 DIŠ +KIMIN +U₂ +BABBAR +2777 GEŠTIN +KA₅ +A +2781 I₃ +GIŠ +ŠUB +2785 ŠU +SI +2788 MAR +DIŠ +KIMIN +SAG +DU +EME +ŠID +HAD₂ +DU +SUD₂ +2799 I₃ +ŠUB +MAR +2803 DIŠ +KIMIN +EME +ŠID +E₂ +GAR₈ +HAD₂ +DU +SUD₂ +2813 ŠU +LU₂ +ZABAR +2817 NE +GAR +2820 MAR +GAG +TI +TI +UDU +2827 SUD₂ +2829 UD +2831 KAM₂ +2836 GAR +SAG +UŠ +MAR +DIŠ +NA +IGI +MIN +2845 DUL +2849 SUD₂ +2851 I₃ +NUN +HE +HE +2856 ŠA₃ +IGI +MIN +2863 UGU +2865 SUN₂ +2867 SUD₂ +2870 I₃ +GIŠ +2873 UGU +2875 TU +2877 NITA +2881 HE +HE +UD +2885 KAM₂ +2890 GAR +SAG +UŠ +2894 ŠA₃ +IGI +MIN +2898 ŠUB +ŠUB +2901 NUNUZ +UGA +2904 SUD₂ +2909 EGIR +E₁₁ +2912 GIR₂ +ZABAR +I₃ +NUN +ŠEŠ₂ +2919 ŠU +MEŠ +2923 A +LUH +2928 I₃ +NUN +2933 MAR +2939 GAR +2950 SUD₂ +MAR +2954 I₃ +GIŠ +2958 IGI +2960 GAL₂ +LA +2963 KAL +GUG +SUD₂ +MAR +2969 SILAₓ(KISAL) +2975 I₃ +GIŠ +EREN +SUD₂ +2984 GEŠTIN +KA₅ +A +SUD₂ +2989 I₃ +2992 ŠEN +TUR +BAL +2999 NUMUN +3001 NIG₂ +GAN₂ +GAN₂ +3007 UR +BI +3015 I₃ +SUD₂ +3023 ŠA₃ +IGI +MIN +3041 AG₂ +3047 KI +A +NAGA +SI +IGI +MIN +3054 LUH +3057 U₂ +BABBAR +3060 GIN₂ +U₅ +ARGAB +3067 HE +HE +3070 DILIM₂ +A +BAR₂ +3074 I₃ +3076 SAHAR +URUDU +SUD₂ +MAR +3083 ŠEN +TUR +3090 ŠEN +TUR +HE +HE +3095 SAHAR +URUDU +3099 ŠEN +TUR +3106 UD +3108 MAR +3115 I₃ +UDU +3121 A +GAR₅ +SUD₂ +3127 PA +IGI +MIN +3135 IGI +MIN +3147 IGI +MIN +3161 NININDU(SUG) +TE +3172 I₃ +GIŠ +BUR +3177 IGI +MIN +3180 MAR +URUDU +SUMUN +3184 I₃ +NUN +SUD₂ +GIN₇ +3190 IGI +MIN +3193 MAR +MEŠ +3196 TI +3198 A +3200 IN₆ +UŠ₂ +A +3204 EME +UR +GI₇ +A +3209 GEŠTIN +KA₅ +A +3214 TI +3217 SAHAR +URUDU +A +3223 SUD₂ +IGI +MIN +3227 MAR +3236 SAHAR +URUDU +SUD₂ +MAR +3242 UD +3245 KUN₄ +3249 E₁₁ +3252 SAHAR +URUDU +SUD₂ +MAR +3258 SAHAR +URUDU +SUD₂ +MAR +3264 IGI +MEŠ +3270 DALA₂ +3275 U₂ +MEŠ +3278 UGA +3281 TUR +MEŠ +3298 SUD₂ +UGU +GIG +GIR +3305 IGI +MIN +3312 BAL +NUMUN +U₂ +3319 ŠE₁₀ +3326 GI +NUMUN +3340 U₈ +3342 GUB₃ +3344 MAŠ +TAB +BA +U₃ +TU +ELLAG₂ +MAŠ₂ +TUR +3356 U₂ +3361 ŠE +BAR +3378 MUN +3380 GUR₂ +UŠ +3383 GEŠTIN +KA₅ +A +NUMUN +3388 NIG₂ +GIDRU +3393 NUMUN +3395 EME +UR +GI₇ +3399 KUR₄ +GI +RIN +NA +3407 U₂ +BABBAR +GI +DUG₃ +GA +3414 SUD₂ +HE +HE +3418 A +GAZI +3424 SED +3428 UD +3430 KAM₂ +LAL +MEŠ +UD +3435 KAM₂ +U₂ +BABBAR +UD +3440 KAM₂ +3444 DIŠ +NA +IGI +MIN +3449 IGI +SIG₇ +SIG₇ +DIRI +BAR +3455 NU +UR₂ +MA +SUD₂ +3461 SAG +KUD +3464 ŠA₃ +IGI +MIN +3468 BUN₂ +DIŠ +NA +IGI +MIN +3474 IGI +SIG₇ +SIG₇ +DIRI +ŠIKA +3480 NU +UR₂ +MA +3484 I₃ +SUD₂ +MAR +3492 SUD₂ +MAR +DIŠ +NA +IGI +MIN +3499 GIG +3501 UD +3506 NU +BAD +3509 KUM₂ +SAG +3512 IGI +MIN +3515 GISSU +DIRI +3518 MI +SAG +DU +3526 UD +3530 NIG₂ +SILA₁₁ +GA₂ +3536 NUMUN +3538 IN₆ +UŠ₂ +3543 I₃ +NUN +DILIM₂ +A +BAR₂ +SUD₂ +MAR +A +LUH +3553 GAZI +3555 UGU +IGI +MIN +3559 GAR +EN +3565 GUR +GUR +3568 GEŠTIN +KA₅ +A +LAL₃ +KUR +RA +3575 I₃ +NUN +HE +HE +3583 DIŠ +NA +IGI +MIN +3588 GIG +3593 UGU +3595 LAMA +IGI +MIN +3601 ER₂ +HI +A +DU +3606 IGI +MIN +3609 GISSU +DIRI +3613 UKUŠ₂ +LAGAB +3618 NUMUN +3620 EME +UR +GI₇ +3624 U₂ +BABBAR +U₅ +ARGAB +3630 U₂ +HI +A +3638 SUD₂ +3640 I₃ +GIŠ +3643 EREN +HE +HE +IGI +MIN +3649 MAR +3651 TI +DIŠ +NA +IGI +MIN +3657 GIG +3662 UGU +3664 LAMA +IGI +MIN +3673 DUGUD +3675 BABBAR +3677 UGU +3679 LAMA +IGI +MIN +3683 ZI +3688 SUD₂ +3691 I₃ +3693 EREN +HE +HE +IGI +MIN +3699 MAR +MES +3702 TI +DIŠ +NA +IGI +MIN +3708 GIG +3715 DUGUD +3719 SUD₂ +IGI +MIN +3723 MAR +3726 UM +IM +DU +KU +BAD +3733 SUD₂ +MAR +3737 NAM +TAR +NITA₂ +3742 GU₇ +3747 SUD₂ +3750 SAG +KUD +3753 ŠA₃ +IGI +MIN +3757 MU₂ +3760 SUD₂ +MIN +3763 ŠUB +3766 UGU +ŠIKA +3787 IGI +MIN +3790 MAR +MEŠ +3793 TI +DIŠ +NA +IGI +MIN +3802 DUGUD +3804 TI +3806 ILLU +NU +LUH +ILLU +3811 BULUH +3815 ITI +3818 ITI +ZI +3821 TI +DIŠ +NA +IGI +MIN +3830 DIRI +3833 ŠE +ŠIKA +U₂ +BABBAR +3838 I₃ +NUN +SUD₂ +MAR +DIŠ +NA +MIN +3846 GIN₂ +U₅ +ARGAB +3851 SUD₂ +3858 MAR +DIŠ +NA +MIN +3863 GIN₂ +U₅ +ARGAB +3868 I₃ +NUN +SUD₂ +MAR +3874 ŠE +ŠIKA +3879 SUD₂ +MAR +3886 I₃ +NUN +SUD₂ +IGI +MIN +3892 MAR +3901 I₃ +NUN +SUD₂ +MAR +3907 I₃ +NUN +SUD₂ +3911 ITI +3914 MAR +U₅ +ARGAB +3919 I₃ +NUN +SUD₂ +MAR +PA +3927 PA +3929 MA +NU +3932 A +GEŠTIN +NA +3938 IGI +MIN +3941 LAL +U₂ +BABBAR +NAGA +SI +UR +TAL₂ +TAL₂ +NU +3953 ŠA₃ +IGI +MIN +3970 ŠE +SA +A +HE +HE +3977 SUD₂ +MAR +DIŠ +3981 SAHAR +URUDU +3984 ŠA₃ +I₃ +UDU +3990 MAŠ +DA₃ +SUD₂ +MAR +DIŠ +3997 SES +GA +4000 U₂ +ZUG₂ +4003 NITA +U₃ +TU +SUD₂ +MAR +LAL₃ +I₃ +NUN +NA +4013 ŠA₃ +IGI +MIN +4020 DIŠ +4025 IM +NU +E₃ +4032 I₃ +NUN +HE +HE +MAR +4041 MAR +4043 U₅ +ARGAB +4050 I₃ +NUN +HE +HE +KIMIN +4061 SIG₇ +4064 A +LUH +4067 GAZ +A +MEŠ +4073 HAD₂ +DU +4079 SAHAR +URUDU +4084 HE +HE +4087 A +LUH +LAL₃ +KUR +4092 SUD₂ +MAR +4096 GA +4098 U₂ +ZUG₂ +4103 HE +HE +SUD₂ +MAR +4108 A +MEŠ +4114 BUR +ZI +SUR +4119 EN +HAD₂ +DU +GAR +4124 UD +4126 HAD₂ +DU +4129 SAHAR +URUDU +I₃ +NUN +SUD₂ +MAR +4137 ŠA₃ +IGI +MIN +4144 I₃ +UDU +4147 SAHAR +URUDU +SUD₂ +MAR +DIŠ +4153 IGI +MIN +4161 A +ŠA₃ +4165 BAR +DU₃ +E +SUD₂ +ŠA₃ +IGI +MIN +4176 KA +GI +NA +DAB +BA +SUHUŠ +4183 GIŠIMMAR +NITA₂ +4186 IM +SAHAR +NA₄ +KUR +RA +4194 SUD₂ +MAR +4198 GURUN +4200 UKUŠ₂ +LAGAB +GAZ +4204 I₃ +SUD₂ +MAR +4209 LAL₃ +KUR +RA +I₃ +NUN +MIN +4216 SUD₂ +MAR +4219 SUD₂ +4221 I₃ +NUN +HE +HE +4227 IGI +MEŠ +4233 DALA₂ +4239 DILIM₂ +A +BAR₂ +SUD₂ +MAR +4248 HAD₂ +DU +GAZ +4252 I₃ +NUN +SUD₂ +MAR +4257 SUD₂ +4259 ŠA₃ +IGI +MIN +4267 MAR +4272 BAD +4278 SUD₂ +MAR +4282 TUG₂ +4287 ŠA₃ +IGI +MIN +4295 GIŠ +4301 A +GAR +GAR +MAŠ +DA₃ +4309 MAR +4315 A +SUD₂ +4321 KAŠ +4325 IGI +MIN +4328 LAL +4334 SUD₂ +4339 I₃ +SUD₂ +4345 IGI +4347 GIG +4356 SUD₂ +MAR +4361 KEŠDA +KAŠ₃ +4365 KUR +KUR +ŠA₃ +IGI +MIN +4372 ARA₃ +4374 DIŠ +IGI +MIN +4379 ZA₃ +HI +LI +U₂ +4388 GA +HE +HE +MAR +4401 I₃ +HE +HE +MAR +I₃ +UDU +ŠIKA +MUN +4410 ŠA₃ +IGI +MIN +4416 I₃ +GIŠ +4419 EREN +HE +HE +MAR +4425 SILIM +4429 SUD₂ +4431 LAL₃ +4434 LAL₃ +BABBAR +GIR₂ +ZABAR +MIN +DIŠ +NA +IGI +MIN +4451 U₂ +BABBAR +NUMUN +GI +ZU₂ +LUM +MA +4459 U₅ +ARGAB +4463 A +GAR₅ +4466 I₃ +NUN +BIL₂ +4471 DIŠ +NA +IGI +MIN +4476 GISSU +4481 DIŠ +NA +IGI +ZAG +4486 GISSU +4490 GIR₂ +ŠU +I +4497 DIŠ +NA +IGI +GUB₃ +4502 GISSU +4506 GIR₂ +ŠU +I +4510 DIŠ +NA +IGI +MIN +4515 GIG +GA +ZALAG +GA +4521 UGU +4523 TI₈ +4526 GA +4528 U₂ +ZUG₂ +SUD₂ +4532 NUMUN +GI +ZU₂ +LUM +MA +4540 ŠE +SA +A +HE +HE +4546 DIŠ +NA +4549 LAMA +MEŠ +IGI +MIN +4554 GISSU +DIRI +4557 IGI +MIN +4560 MAR +DIŠ +KIMIN +ILLU +LI +TAR +4567 DIŠ +IGI +LU₂ +GISSU +4575 DIRI +4587 DIŠ +KIMIN +4590 DIŠ +NA +IGI +MIN +4597 DIRI +4602 MUD₂ +4606 GU₄ +GE₆ +4611 DIŠ +NA +IGI +MIN +4616 LU₃ +LU₃ +LAL₃ +BABBAR +4621 I₃ +NUN +4625 HE +HE +4628 DUB +4630 KAM₂ +DIŠ +NA +IGI +MIN +4636 GIG +E₂ +GAL +4642 DU₃ +A +LUGAL +ŠU₂ +4647 KUR +AN +ŠAR₂ +4653 AG +4659 GEŠTU +MIN +4673 IGI +MIN +4686 LUGAL +MEŠ +4701 NU +4708 TA +4711 EN +UMBIN +4715 BAR +MEŠ +4748 IGI +KAR₂ +4762 E₂ +GAL +4767 DIŠ +NA +4772 GIG +4776 ŠA₃ +GUR +4783 NAM +TAR +4795 IGI +4798 IGI +NIŠ +4804 ŠAKIRA +4806 U₂ +HI +A +ŠEŠ +TEŠ₂ +BI +SUD₂ +4814 KAŠ +ŠUB +4818 MUL +4822 A₂ +GU₂ +ZI +GA +NU +4829 NAG +MEŠ +4834 DIŠ +NA +4838 ŠA₃ +GIG +4841 UD +4845 MA₂ +GUR₈ +U₅ +4849 E₁₁ +4852 TU₆ +4856 ŠID +4858 EN₂ +E₂ +NU +RU +LU +RA +GAR +4868 MIN +4910 TU₆ +EN₂ +TU₆ +4916 ŠID +4919 TI +4921 KI +MIN +UZU +4925 NIN +KILIM +HAD₂ +A +4933 NAG +4935 TI +4938 KI +MIN +4947 A +MEŠ +4953 NAG +4955 TI +4957 KI +MIN +MUN +SUD₂ +4962 A +MEŠ +4968 NAG +4970 TI +4972 KI +MIN +MUN +4978 SUD₂ +4983 NAG +4985 TI +DIŠ +NA +4990 ŠA₃ +GIG +NA +BI +4995 UGU +GIR₃ +MIN +5003 A +GAZI +5009 KUM₂ +5012 UGU +5014 DUB +5016 TI +5018 KI +MIN +5021 UGU +GIR₃ +MIN +5032 A +ŠED₇ +5035 UGU +SAG +5043 KI +MIN +SAG +DU +5052 GAR +5054 GIR₃ +MIN +5058 AN +TA +5068 TE +5084 ŠA₃ +DU₁₀ +5087 DU₁₁ +GA +5090 ŠU +SI +5093 GAL +5096 GUB₃ +5099 GU +DU +5102 TAG +5106 SAG +DU +5109 TAG +5115 TAG +5118 KI +MIN +SUHUŠ +5122 NAM +TAR +NITA₂ +SUHUŠ +5130 IGI +5133 IGI +NIŠ +5139 IN +NU +UŠ +5143 EME +UR +GI₇ +SUD₂ +5149 A +5152 KAŠ +NAG +DIŠ +NA +ŠA₃ +5165 SILAₓ +5172 SILAₓ +5174 MA₂ +ERIŠ₄ +MA₂ +LA₂ +5179 SUD₂ +HI +HI +5186 TI +DIŠ +NA +5191 ŠA₃ +GIG +ŠA₃ +MEŠ +5198 MU₂ +MU₂ +5207 GU₇ +5210 IGI +NIŠ +SUHUŠ +5214 NAM +TAR +NITA₂ +5222 GAZ +SIM +5225 ŠA₃ +5229 TI +5232 KAŠ +NAG +5235 A +ŠED₇ +5241 MUL₄ +5247 ŠEG₆ +5253 DUR₂ +5255 DUB +5257 SI +SA₂ +5260 TI +5262 GUR₂ +GUR₂ +5265 LI +5267 GAM +MA +PA +5271 GE₆ +PAR₃ +PA +5275 ŠE +HAR +NUMUN +5282 DIŠ +5284 GAZ +SIM +KI +I₃ +UDU +5290 HAB +HI +HI +5294 KUŠ +EDIN +SUR +5298 SAG +ŠA₃ +5301 LAL₂ +5303 TI +DIŠ +NA +5308 ŠA₃ +GIG +NINDA +5312 KAŠ +ŠA₃ +5315 NU +IGI +5320 KA +5322 GUR +GUR +5325 TUN₃ +5335 UZU +MEŠ +5343 IM +5345 DUR₂ +5347 NIGIN +ŠA₃ +MEŠ +5354 TI +5358 SILA₃ +A +ZU₂ +LUM +MA +5365 SILA₃ +A +GAZI +5370 SILAₓ +A +GEŠTIN +NA +5375 GIN₂ +I₃ +5380 GIN₂ +LAL₃ +5383 GIN₂ +5385 KUR +RA +SUD₂ +5389 ŠA₃ +ŠUB +5393 GE₆ +5395 IGI +5397 UZ₃ +5401 A₂ +GU₂ +ZI +GA +NU +5408 NAG +5410 EGIR +5414 SILA₃ +5417 NAG +5420 KA +5423 DUR₂ +5425 SI +SA₂ +5431 TI +5434 KI +MIN +MUN +KUR +5439 MUN +5443 TEŠ₂ +BI +SUD₂ +5447 KAŠ +NU +5451 NAG +5454 KA +5457 DUR₂ +5459 SI +SA₂ +5466 TI +5468 KI +MIN +5471 NU +LUH +HA +5475 ŠE +MEŠ +5478 IGI +5480 TEŠ₂ +BI +SUD₂ +5484 KAŠ +SAG +NU +5489 NAG +5492 KA +5495 DUR₂ +5497 SI +SA₂ +5500 KI +MIN +5503 KI +MIN +ZI₃ +ŠE +SA +A +ZI₃ +5516 ZU₂ +LUM +MA +TEŠ₂ +BI +SUD₂ +5523 KAŠ +NU +5528 UD +5530 NAG +MEŠ +5533 UD +5536 A +MEŠ +NU +5541 NAG +MEŠ +A +MEŠ +SAG +ŠA₃ +5552 TI +5554 KI +MIN +5557 ŠEN +TUR +A +5561 KAŠ +DIRI +5577 HAR +HAR +5583 ŠA₃ +ŠUB +5596 I₃ +5598 EREN +ŠEŠ₂ +5603 SILA₃ +5609 SILA₃ +5611 GUR₂ +GUR₂ +5615 SILA₃ +5617 LI +5620 SILA₃ +5626 SILA₃ +GAZI +5631 SILA₃ +ZI₃ +MUNU₆ +5636 SILA₃ +ZI₃ +GU₂ +GAL +5642 SILA₃ +ZI₃ +GU₂ +TUR +5648 SILA₃ +5653 ID₂ +5656 SILA₃ +5658 KUR +RA +5662 SILA₃ +5664 AB₂ +DUH +5668 SILA₃ +ŠE₁₀ +TU +5674 SILA₃ +5676 KAM +5678 A +ŠA₃ +5681 GIN₂ +5683 MAŠ +5685 GIN₂ +KA +A +AB +BA +5692 SILA₃ +ZI₃ +GIG +5697 SILA₃ +ZU₂ +LUM +MA +5703 SILA₃ +DIDA +SIG +GA +5709 SILA₃ +ZI₃ +KUM +5713 U₂ +MEŠ +5718 TEŠ₂ +BI +GAZ +SIM +5723 KAŠ +SAG +5727 ŠEN +TUR +GIM +5736 UD +5738 SAG +ŠA₃ +5741 LAL₂ +5743 NINDA +MEŠ +5746 KAŠ +ŠA₃ +5749 IGI +5753 TI +DIŠ +NA +ŠA₃ +5764 IGI +5766 NU +5774 KAŠ +NU +5778 NAG +MEŠ +5781 TI +5784 KI +MIN +5787 IGI +NIŠ +SUHUŠ +5794 NU +5797 GU₇ +MEŠ +SUD₂ +5801 KAŠ +NU +5805 NAG +MEŠ +5808 TI +5811 KI +MIN +5818 HAR +HAR +5821 GUR₂ +GUR₂ +5828 NU +5831 KI +MIN +5834 KI +MIN +I₃ +UDU +5841 DINGIR +KI +I₃ +NUN +NA +5847 MUN +HI +HI +NU +5853 GU₇ +MEŠ +5856 TI +5858 KI +MIN +5865 PA +MEŠ +5868 DAGAL +MEŠ +5871 A +GAZI +5874 SUD₂ +5876 KAŠ +5878 LAL₃ +SIG₃ +5881 NU +5884 NAG +MEŠ +5887 TI +5889 KI +MIN +5896 PA +MEŠ +5899 DAGAL +MEŠ +5902 MUN +DIŠ +5905 SUD₂ +5907 KAŠ +5909 LAL₃ +SIG₃ +5912 NU +5915 NAG +MEŠ +5918 TI +5920 KI +MIN +KIŠI₁₆ +HAB +5925 PA +MEŠ +5928 DAGAL +MEŠ +GIM +LU +UB₂ +5937 NAG +MEŠ +TI +5941 KI +MIN +SUHUŠ +5947 NU +5950 GU₇ +SUD₂ +5953 KAŠ +NU +5957 NAG +5965 TI +DIŠ +NA +5973 TUKU +UD +5976 ŠA₃ +5978 DAB +5985 NU +5988 NAG +TI +5993 KAŠ +MIN +6000 SA +6007 DIŠ +NA +ŠA₃ +6011 GU₇ +6014 HAR +HAR +MUN +SUD₂ +6020 A +6023 KAŠ +6026 GEŠTIN +EN₂ +6029 ŠA₃ +ŠUB +6032 NAG +DIŠ +NA +ŠA₃ +6037 GU₇ +6040 HAR +HAR +6044 A +6047 KAŠ +NAG +DIŠ +NA +ŠA₃ +6053 GU₇ +6061 KAŠ +NAG +6064 IGI +6067 KAŠ +6069 IGI +NIŠ +6072 KAŠ +6077 KAŠ +6079 DILI +6081 KAŠ +6083 GAMUN +GE₆ +6086 KAŠ +6088 HAB +6090 KAŠ +6092 HAR +HAR +6096 KAŠ +6099 GEŠTIN +DIŠ +NA +ŠA₃ +MEŠ +6105 GU₇ +MEŠ +6110 SILA₃ +ZU₂ +LUM +MA +6116 SILA₃ +NIG₂ +AR₃ +RA +GIG +BA +6124 SILA₃ +LAGAB +MUNU₆ +6129 SILA₃ +KAŠ +SAG +ŠEG₆ +6140 I₃ +GIŠ +6143 IGI +ŠUB +6147 DUR₂ +6149 DUB +6151 UD +6153 LU +UB₂ +SUM +6157 GAMUN +6159 SUD₂ +6161 KAŠ +NAG +6165 KI +MIN +HI +IS +6170 SUM +6172 SUD₂ +6174 A +ŠUB +6177 MUL₄ +6180 NAG +6183 NAG +6185 NINDA +I₃ +DE₂ +A +6190 I₃ +NUN +NA +GU₇ +6196 KI +MIN +6199 NU +LUH +HA +SUD₂ +6204 KAŠ +NAG +6207 KI +MIN +6210 IGI +6212 SUD₂ +KI +MIN +6217 KI +MIN +6220 SIKIL +SIG₇ +GU₇ +DIŠ +NA +ŠA₃ +6230 SUM +6232 SIG₇ +6235 GUR₂ +GUR₂ +TEŠ₂ +BI +SUD₂ +6241 A +SIG₃ +6244 NU +6247 NAG +6249 ZU₂ +LUM +MA +6254 I₃ +ŠAH +6258 I₃ +GIŠ +GU₇ +6262 KI +MIN +6265 ŠE +LI +BABBAR +SUD₂ +6270 KAŠ +NU +6274 NAG +6276 TI +6278 KI +MIN +6281 IGI +6284 IGI +NIŠ +6289 SUHUŠ +6291 NAM +TAR +NITA₂ +6300 HI +HI +6303 KAŠ +6308 MUL₄ +6318 NAG +6320 A +GAZI +NU +NAG +6325 TI +DIŠ +NA +ŠA₃ +6335 ŠA₃ +MEŠ +6343 HAR +HAR +GI +DU₁₀ +GA +6349 MUG +6351 LI +6353 ŠA₃ +6355 ŠUB +6357 ŠEG₆ +6366 DUR₂ +6368 DUB +6370 TI +DIŠ +NA +NINDA +GU₇ +KAŠ +NAG +6381 ŠA₃ +6388 DAB +MEŠ +6391 ŠA₃ +MEŠ +6394 MU₂ +MU₂ +6399 ŠA₃ +6403 KIN +NIM +GIG +6407 TI +6414 ŠUR +MIN₃ +GI +DU₁₀ +GA +6420 BAL +6422 GIR₂ +6424 HAR +HAR +6427 U₂ +HI +A +ŠEŠ +TEŠ₂ +BI +6437 KAŠ +ŠUB +6440 ŠEG₆ +6445 LAL₃ +6447 I₃ +GIŠ +6452 ŠA₃ +ŠUB +6460 KUŠ +6468 DUR₂ +6470 DUB +TI +EN₂ +ŠA₃ +MEŠ +6484 ŠA₃ +NIGIN +6517 IGI +MEŠ +6522 EDIN +6532 ŠU +EDIN +6537 IGI +MEŠ +6556 KU₆ +MEŠ +6564 MUŠ +6578 NAM +LU₂ +U₁₈ +LU +6583 E₂ +6593 AMAR +UTU +6607 TI +6613 IM +6615 DUR₂ +6630 TU₆ +EN₂ +KA +INIM +MA +6638 ŠA₃ +ŠID +6641 DIŠ +NA +6648 NINDA +6650 KAŠ +6655 MAŠ +SILA₃ +MIN +6659 GU₇ +MEŠ +6662 SAG +DU +6668 LAL +I₃ +NUN +NA +GU₇ +UD +6675 KAM₂ +SUM +6678 SUM +SIKIL +6681 GA +RAŠ +6684 NU +GU₇ +6687 A +6689 ŠE +NU +RA +MEŠ +6694 NUMUN +6696 UKUŠ₂ +HAB +NUMUN +6700 HAR +HAR +SUD₂ +6704 KAŠ +NAG +6707 TI +6709 KI +MIN +6714 NIG₂ +SILA₁₁ +GA₂ +HAD₂ +A +SUD₂ +6721 KAŠ +6723 KURUN₂ +NA +NAG +NUMUN +6728 UKUŠ₂ +HAB +6731 NUMUN +6733 LI +NUMUN +6736 ŠE +NU +SUD₂ +6740 KAŠ +NAG +DIŠ +NA +6746 ŠA₃ +GIG +6751 ŠA₃ +KUD +6755 IGI +6758 IGI +NIŠ +6768 KUR +RA +SUD₂ +6772 I₃ +6774 KAŠ +NAG +6780 KAŠ +NAG +PEŠ₂ +SILA₃ +GAZ +6788 GU₇ +6798 PA +MEŠ +6801 DAGAL +MEŠ +6804 HAB +6806 IGI +6808 SUD₂ +6810 I₃ +KUR +RA +6814 I₃ +SIKIL +NAG +MUN +6819 KAŠ +NAG +MUN +6823 A +NU +6827 NAG +6831 DIŠ +NA +6837 GU₃ +GU₃ +6845 HAR +HAR +6852 NU +LUH +HA +6856 KUR +RA +6865 IGI +6868 IGI +NIŠ +6874 IN +NU +UŠ +6878 ŠINIG +6880 U₂ +HI +A +ŠEŠ +6889 KAŠ +NAG +MEŠ +DIŠ +NA +ŠA₃ +6900 PA +6902 ŠINIG +6904 IN +NU +UŠ +GIŠ +BUR₂ +SUD₂ +6911 KAŠ +NU +6915 NAG +6919 SUHUŠ +6923 SUHUŠ +6925 NAM +TAR +NITA₂ +6932 IGI +6935 IGI +NIŠ +6938 IN₆ +UŠ₂ +NUMUN +6942 IN₆ +UŠ₂ +6945 U₂ +HI +A +6950 ŠA₃ +6953 KAŠ +NAG +6956 GIN₂ +MUN +6962 GUR₂ +GUR₂ +6965 LI +DIŠ +6968 GAZ +SIM +6971 KAŠ +ŠEG₆ +6977 ŠA₃ +ŠUB +6981 DUR₂ +6983 DUB +6985 EN₂ +7043 ID₂ +MEŠ +7081 EN₂ +7105 TI +LA +7109 TI +7111 EN₂ +EN₂ +7126 GU₇ +7128 ŠA₃ +7130 KI +SIKIL +7133 GAZ +7146 ŠA₃ +7148 GUD +7163 ŠA₃ +7165 ŠAH +7214 EN₂ +7216 UGU +LI +DUR +ŠID +7226 E₂ +7352 KID₃ +KID₃ +BI +7360 UGU +EN₂ +ŠUB +7365 KA +7372 KAŠ +NAG +7401 KID₃ +KID₃ +BI +7408 EN₂ +7411 ŠID +7414 KA +7422 EN₂ +7424 ŠAKKAN₂ +7426 EDIN +ŠA₃ +7434 SAHAR +SIG₃ +SIG₃ +7466 DI +GI +DA +7473 TU₆ +EN₂ +KID₃ +KID₃ +BI +LAG +MUN +7484 TI +7487 UGU +EN₂ +ŠUB +7500 EN₂ +7504 ŠA₃ +7507 KUR +7524 UTU +DU₁₁ +GA +7531 ŠA₃ +7534 UTU +7553 NENNI +A +NENNI +DU₁₁ +GA +7562 ŠA₃ +7564 NENNI +A +NENNI +7588 EN +7593 ŠA₃ +7605 ŠA₃ +7607 AN +7609 KI +7613 ŠA₃ +7621 ŠA₃ +NENNI +A +NENNI +7637 NAG +7640 KA +INIM +MA +7644 KID₃ +KID₃ +BI +7657 TA +7664 IGI +7666 UTU +EN₂ +7673 ŠID +7677 KI +7686 GIR₃ +7695 GIR₃ +7706 EN₂ +ŠA₃ +7709 UTU +7711 KUR +7715 GIG +7718 U₂ +ŠA₃ +7734 UTU +7742 UTU +7745 TA +KUR +7766 DIRI +SI +MEŠ +7770 AN +7776 ŠA₃ +7778 UTU +7785 ŠA₃ +7789 DUNGU +MEŠ +7793 ŠA₃ +GUD +7801 ŠA₃ +UDU +NITA₂ +7810 ŠA₃ +ANŠE +7818 ŠA₃ +UR +GI₇ +7827 ŠA₃ +ŠAH +7835 ŠA₃ +GURUŠ +7843 ŠA₃ +KI +SIKIL +7852 ŠA₃ +NENNI +A +NENNI +7871 SU +7883 TU₆ +EN₂ +KID₃ +KID₃ +BI +7893 NU +LUH +HA +7900 GAZI +7903 KUR +RA +DIŠ +7907 SUD₂ +7909 KAŠ +SIG₃ +7912 EN₂ +7914 ŠA₃ +ŠID +7918 ŠU +GUB₃ +7921 NAG +7923 TI +EN₂ +7928 ŠA₃ +7931 KUR +7943 ŠA₃ +7947 UTU +7954 ŠA₃ +7956 UTU +7958 AN +7961 KI +7969 ŠA₃ +AN +7972 KI +7977 DU₁₁ +GA +7983 ŠA₃ +7992 EN +7998 ŠA₃ +8003 ŠA₃ +8006 UTU +8012 ŠA₃ +8015 UTU +8020 ŠA₃ +8022 AN +8024 KI +8030 ŠA₃ +8032 AN +8034 KI +8039 KID₃ +KID₃ +BI +8046 EN₂ +8049 ŠID +8052 KA +8060 EN₂ +ER₂ +IR +UD +LI +AN +8084 AMAR +UTU +8090 UTU +LU₂ +8094 TU₆ +EN₂ +EN₂ +IM +8102 KUR +8121 UZU +8129 BUR₃ +BUR₃ +8139 IR +IM +8157 TU₆ +EN₂ +KID₃ +KID₃ +BI +8166 GAZI +8171 I₃ +GIŠ +8185 EN₂ +ŠID +8189 KI +MIN +8202 GAZI +8208 KAŠ +NAG +8211 KI +MIN +8215 I₃ +GIŠ +8218 KAŠ +SAG +NAG +EN₂ +8237 KA +NA +8242 KA +8247 PEŠ₃ +NU +E₃ +8251 TU₆ +EN₂ +KID₃ +KID₃ +BI +8257 ŠU +SI +GIR₃ +8261 GAL +8264 GUB₃ +EN₂ +8269 UGU +LI +DUR +8273 ŠUB +8277 EN₂ +ŠA₃ +8282 KAŠ +8287 TU₆ +EN₂ +KID₃ +KID₃ +BI +8293 ŠU +SI +GIR₃ +8297 GAL +8301 EN₂ +ŠUB +8306 ŠU +SI +8315 EN₂ +8324 IZI +DINGIR +MEŠ +8349 DINGIR +MEŠ +ŠEŠ +MEŠ +8359 GU +ZA +8362 EN₂ +KID₃ +KID₃ +BI +8367 EME +UR +GI₇ +HAD₂ +A +SUD₂ +8374 I₃ +GIŠ +ŠUB +8378 EN₂ +ŠID +8381 ŠEŠ₂ +8386 EN₂ +8390 ŠA₃ +8392 ŠA₃ +8396 ŠA₃ +8400 GIM +UR +MAH +8410 UR +BAR +RA +8418 EN₂ +8423 EN₂ +8427 EN₂ +8431 EN₂ +8433 DUMU +MUNUS +8441 EN₂ +8443 DUMU +MUNUS +8452 DUMU +MUNUS +DINGIR +8487 TU₆ +EN₂ +KID₃ +KID₃ +BI +SIG₂ +BABBAR +DUR +NU +NU +8498 KA +KEŠDA +KEŠDA +EN₂ +ŠID +8505 EGIR +8507 KEŠDA +8511 EN₂ +8527 ABGAL +8529 TA +8538 KUR +8543 A +PU₂ +8569 EN₂ +8573 ŠUB +8576 LU₂ +8579 EN₂ +KID₃ +KID₃ +BI +8584 NU +LUH +HA +8591 MUN +8605 GUB₃ +8608 ŠU +8613 EN₂ +8616 TIM +8631 PU₂ +8633 KUR +8643 NENNI +A +NENNI +8648 DINGIR +8655 MI +AL +MU +TU₆ +EN₂ +KID₃ +KID₃ +BI +8666 EN₂ +8670 ŠUB +8682 EN₂ +8684 DUMU +8686 UTU +8688 AN +8691 KI +8693 MIN +KID₃ +KID₃ +BI +8698 NI₂ +8700 ŠID +8702 EN₂ +8708 BAL +IN +8721 A +MEŠ +ABZU +8728 GIM +8730 GAN +8735 GIŠ +HUR +ŠA₃ +8746 EN₂ +8751 EN₂ +8759 EN₂ +8763 GAŠAN +EN₂ +TU₆ +EN₂ +KID₃ +KID₃ +BI +8771 NU +LUH +HA +MUN +TI +8777 EN₂ +8781 ŠA₃ +ŠUB +8788 TI +EN₂ +8792 ŠA₃ +8796 ŠA₃ +8799 ŠA₃ +8804 IGI +MIN +8810 MUD₂ +8830 ŠA₃ +8836 MIN +8838 GURUŠ +8842 KI +SIKIL +8850 GURUŠ +8852 E₂ +8858 KI +SIKIL +8903 GIM +IM +8909 GIM +8920 EN₂ +KID₃ +KID₃ +BI +8925 LAG +MUN +8928 ŠA₃ +8930 ŠUB +EN₂ +8934 ŠID +8936 NAG +8941 EN₂ +ŠA₃ +8944 ŠA₃ +8949 ŠA₃ +8951 GIM +9030 ZI +MEŠ +9047 SU +9054 EN₂ +9059 EN₂ +9068 EN₂ +9076 EN₂ +9078 NIN +GIRIM₃ +EN +EN₂ +TU₆ +EN₂ +KID₃ +KID₃ +BI +9088 ŠA₃ +9091 LAG +MUN +ŠUB +9095 TA +AM₃ +EN₂ +ŠID +9102 GUB₃ +9104 KAŠ₃ +9106 IGI +9108 GUB₃ +9117 NAG +9121 EN₂ +ŠA₃ +9125 ŠA₃ +9129 ŠA₃ +KAS₄ +9132 ŠA₃ +9135 IGI +MIN +9143 ŠA₃ +9145 ŠA₃ +9152 ŠA₃ +9160 ŠA₃ +9167 SAHAR +HI +A +9218 KA₂ +9222 TU₆ +EN₂ +KA +INIM +MA +IM +9229 ŠA₃ +DAB +9232 KID₃ +KID₃ +BI +I₃ +GIŠ +ŠA₃ +9239 EŠ +MEŠ +EN₂ +9247 ŠID +9249 DIŠ +NA +LI +DUR +9254 DU₈ +9257 PEŠ₄ +ANŠE +9260 SIKIL +9262 ŠAKIRA +9264 LI +9269 U₂ +HI +A +ŠEŠ +TEŠ₂ +BI +SUD₂ +9277 KAŠ +HI +HI +9281 LI +DUR +9287 U₂ +HI +A +ŠEŠ +9293 KAŠ +SILA₁₁ +9301 IGI +9304 IGI +NIŠ +9313 SUD₂ +SUR +9322 TI +9324 KI +MIN +9331 DILI +TEŠ₂ +BI +SUD₂ +9338 KI +MIN +9341 IGI +9343 SUD₂ +9345 GEŠTIN +SUR +NAG +9349 TI +DIŠ +NA +LI +DUR +9355 ŠUB +MEŠ +9359 TI +9366 SUHUŠ +9373 TI +9375 KAŠ +9377 GEŠTIN +DU₁₀ +GA +NAG +MEŠ +9383 TI +DIŠ +NA +ŠA₃ +9388 GIG +GA +AB₂ +KUG +GA +I₃ +NUN +NA +UD +9398 KAM₂ +NAG +DUB +9402 KAM₂ +DIŠ +NA +9408 GIG +9412 ŠA₃ +GUR +9415 E₂ +GAL +9418 AN +ŠAR₂ +DU₃ +A +LUGAL +ŠU₂ +MAN +KUR +AN +ŠAR₂ +9431 AG +9436 GEŠTU +MIN +DAGAL +9448 IGI +MIN +9461 LUGAL +MEŠ +9483 TA +9486 EN +UMBIN +9490 BAR +MEŠ +9523 IGI +KAR₂ +9537 E₂ +GAL +9543 KIŠI₁₆ +HAB +9567 DIŠ +NA +SAG +KI +GUB₃ +9589 SU +AN +DAR +RA +9594 MUG +9608 DIŠ +NA +SAG +KI +MIN +9618 IGI +MIN +9634 DUH +ŠE +GIŠ +I₃ +9642 GAZ +SIM +9653 DIŠ +NA +SA +SAG +KI +ZAG +9660 ZI +9662 IGI +ZAG +9672 BULUH +9675 DIŠ +NA +UGU +9679 KUM₂ +9682 SA +ZI +SAG +KI +TUKU +9688 IGI +MIN +9692 BAR₃ +IGI +MIN +9715 ER₂ +ŠUB +ŠUB +9721 SILA₃ +ZA₃ +HI +LI +9730 KINKIN +ARA₃ +9733 SIM +SAG +9739 ŠA₃ +9742 SILA₃ +TI +9746 A +GAZI +9749 SILA₁₁ +9751 SAR +9753 LAL +9755 UD +9757 KAM +NU +DU₈ +9762 SILA₃ +9768 SILA₃ +ZI₃ +ŠE +SA +A +9774 A +GAZI +9777 SILA₁₁ +9779 SAR +9781 LAL +9783 UD +9785 KAM +NU +DU₈ +9791 ARA₃ +9794 GUR₂ +GUR₂ +NAGA +SI +9799 KAŠ +SILA₁₁ +9802 KI +MIN +9805 ŠEŠ +MUN +9813 HI +HI +9816 I₃ +NUN +SUD₂ +IGI +MIN +9826 SILA₃ +ZA₃ +HI +LI +9832 SILA₃ +ŠIKA +IM +ŠU +RIN +NA +9839 GIN₂ +9848 A +GAZI +9851 SILA₁₁ +9853 SAR +9855 LAL +9857 UD +9859 KAM +NU +DU₈ +EGIR +9872 GIN₂ +ZA₃ +HI +LI +9877 KA +9887 MUN +A +GEŠTIN +NA +NU +TAG +TAG +9895 NINDA +9899 GU₇ +9901 GIN₂ +9908 KAŠ +SAG +SIG₃ +9913 NAG +9922 UD +9924 KAM₂ +AN +ZAH +SUD₂ +9930 GIN₂ +GURUN +9933 MAŠ +HUŠ +9942 SILA₃ +9946 GAZ +SIM +9949 A +GAZI +9952 SILA₁₁ +9954 SAR +9956 LAL +9958 UD +9960 KAM +NU +DU₈ +ŠIM +BI +ZI +DA +9971 I₃ +UDU +UR +MAH +SUD₂ +9987 ZA +BA +LAM +9992 SILA₃ +9997 GAZ +SIM +10000 A +GAZI +10003 SILA₁₁ +10005 SAR +10007 LAL +10009 UD +10011 KAM +NU +DU₈ +10015 GIN₂ +ZI₃ +DUH +ŠE +GIŠ +I₃ +HAD₂ +DU +GAZ +SIM +10026 A +GAZI +10029 SILA₁₁ +10031 KI +MIN +10034 GIN₂ +ZI₃ +DUH +ŠE +GIŠ +I₃ +HAD₂ +DU +GAZ +SIM +10047 UD +10049 KAM +GABA +10052 LAL +SAG +DU +10058 SAG +DU +10061 DUB +10064 E₂ +10069 TUKU +10071 TUŠ +10075 GIN₂ +U₅ +ARGAB +10081 GIN₂ +10085 SILA₃ +NUMUN +BABBAR +HI +10092 SILA₃ +NUMUN +LU +UB₂ +10100 SILA₃ +ZI₃ +KUM +10104 GIN₂ +PA +10109 NUMUN +10118 SILA₁₁ +10120 KI +MIN +IM +SAHAR +NA₄ +KUR +RA +10128 I₃ +NUN +SUD₂ +10135 SILA₃ +PA +10138 PEŠ₃ +10142 BAR₂ +ZAG +GAR +KUD +10148 A +GAZI +10151 SILA₁₁ +10153 GUR +10155 HAD₂ +A +GAZ +SIM +10165 SAR +10167 LAL +10169 KI +MIN +10173 SILA₃ +10175 HAB +10178 SILA₃ +NUMUN +10181 KI +10183 IŠKUR +10190 LAL +10192 KI +MIN +NAGA +SI +10197 I₃ +SUD₂ +10202 NITA +HI +HI +SUD₂ +10211 LAL +10213 KI +MIN +10216 LAL +10218 KI +MIN +10229 SUD₂ +10233 SILA₁₁ +10235 SAR +10237 LAL +10239 KI +MIN +10242 HAD₂ +A +GAZ +SIM +10247 A +GAZI +10250 SILA₁₁ +10252 SAR +10254 LAL +10256 KI +MIN +10259 GIR₃ +PAD +DA +GID₂ +DA +SUD₂ +MAR +10268 I₃ +UDU +10273 MAŠ +DA₃ +SUD₂ +10279 SILA₁₁ +10281 SAR +10283 LAL +10285 UD +10287 KAM₂ +NU +DU₈ +10292 GA +SILA₁₁ +10295 SAR +10297 LAL +10299 KI +MIN +10304 LAL₃ +KUR +10309 KU₃ +SIG₁₇ +SUD₂ +MAR +10319 GAZ +SIM +10322 A +GAZI +10325 SILA₁₁ +10327 SAR +10329 LAL +10331 UD +10333 KAM₂ +NU +DU₈ +10340 GAZ +SIM +10346 KAŠ +ŠEG₆ +GA₂ +SILA₁₁ +10351 SAR +10353 LAL +10355 UD +10357 KAM₂ +NU +DU₈ +10373 LAL₃ +SUD₂ +10378 KUR +GI +RIN₂ +NA +GAZ +SIM +10385 A +GAZI +10388 SILA₁₁ +10390 SAR +10392 LAL +10394 UD +10396 KAM₂ +NU +DU₈ +10400 ŠE +NU₂ +A +GAZ +SIM +10406 A +GAZI +10409 SILA₁₁ +10411 SAR +10413 LAL +10415 UD +10417 KAM₂ +NU +DU₈ +U₅ +ARGAB +10424 LAL₃ +SUD₂ +10430 SILA₃ +PA +10433 MA₂ +ERIŠ₄ +10436 MA₂ +RA +GAZ +SIM +10441 A +GAZI +10444 SILA₁₁ +10446 SAR +10448 LAL +10450 UD +10452 KAM₂ +NU +DU₈ +IM +BABBAR +10461 I₃ +10464 SILA₁₁ +10466 SAR +10468 LAL₂ +10470 KI +MIN +ŠIKA +I₃ +GU +LA +10479 TUKU +10482 I₃ +SAHAR +URUDU +SUD₂ +10489 ZA +BA +LAM +10495 GAZ +SIM +10501 KAŠ +SAG +SILA₁₁ +10505 SAR +10507 LAL +10509 UD +10511 KAM₂ +NU +DU₈ +10520 MAŠ +HUŠ +GAZ +SIM +10528 KAŠ +ŠEG₆ +GA₂ +SILA₁₁ +10533 SAR +10535 LAL +10537 UD +10539 KAM₂ +NU +DU₈ +10543 LI +10545 GUR₂ +GUR₂ +10548 BULUH +ZA₃ +HI +LI +NAGA +SI +LUH +10557 GA +SILA₁₁ +10560 SAR +10562 LAL +10564 UD +10566 KAM₂ +NU +DU₈ +SAHAR +URUDU +10572 LAL₃ +SUD₂ +10578 SILA₃ +ZA₃ +HI +LI +10584 SILA₃ +DIDA +10587 SILA₁₁ +10589 SAR +10591 LAL +10593 UD +10595 KAM₂ +NU +DU₈ +10600 SILA₃ +ZA₃ +HI +LI +10605 SILA₁₁ +10607 SAR +10609 LAL +10611 UD +10613 KAM₂ +NU +DU₈ +KUG +GAN +AN +ZAH +10621 SUD₂ +MAR +10625 SILA₃ +ZI₃ +GU₂ +GAL +10630 SILA₁₁ +10632 SAR +10634 LAL +10636 UD +10638 KAM₂ +NU +DU₈ +10642 GAZI +10644 BIL₂ +10646 GAZ +SIM +10652 KAŠ +SILA₁₁ +10655 SAR +10657 LAL +10659 UD +10661 KAM₂ +NU +DU₈ +NUMUN +10666 EME +UR +GI₇ +SIG₇ +10674 A +10678 BUR +ZI +SUR +10682 EN +HAD₂ +DU +GAR +10687 UD +10693 I₃ +SAHAR +URUDU +SUD₂ +MAR +U₂ +BABBAR +U₅ +ARGAB +10703 I₃ +UDU +10706 GIG +10708 GAM +MA +NUMUN +10712 SI +SA₂ +10717 ŠINIG +NUMUN +10720 IN +NU +UŠ +ŠE₁₀ +UR +GI₇ +PA +10728 ŠINIG +MUN +10734 KUR +RA +10737 GAMUN +GE₆ +10743 IGI +MIN +10746 ŠU +TI +10752 I₃ +SUD₂ +IGI +MIN +10758 NAGA +SI +LUH +10762 EN +ER₂ +KUD +10768 UD +10770 LAL +10774 EGIR +10776 DILIM₂ +A +BAR₂ +NU +DU₈ +10782 A +10784 ŠE +NU₂ +A +ŠEG₆ +10791 GAN +SAHAR₂ +10796 MUL₄ +10802 SAG +DU +10805 ŠEŠ₂ +A +10808 ŠE +NU₂ +A +ŠEG₆ +GA₂ +10814 SAG +DU +10821 SAG +DU +10827 GA +RIG₂ +AK +A +KEŠDA +10833 SILAₓ +I₃ +GIŠ +10837 SAG +DU +10840 DUB +10842 E₂ +10847 TUKU +10849 TUŠ +10851 UD +10853 KAM₂ +10856 DU₃ +DU₃ +10859 DIŠ +NA +UGU +10863 KUM₂ +KUM₂ +10866 IM +BABBAR +NAGA +SI +IN +GUN₃ +10874 GIR₃ +PAD +DA +NAGA +SI +I₃ +HUL +10882 I₃ +KU₆ +DIŠ +10886 HI +HI +10889 NE +10891 KIŠI₁₆ +SAG +DU +10898 DIŠ +NA +UGU +10902 KUM₂ +TUKU +10905 IGI +MIN +10912 MUD₂ +10918 SILA₃ +ZA₃ +HI +LI +GAZ +SIM +10925 A +GAZI +10928 SILA₁₁ +10930 SAG +DU +10933 SAR +10935 LAL +10937 UD +10939 KAM₂ +NU +DU₈ +10944 SILA₃ +ZA₃ +HI +LI +10950 SILA₃ +ZI₃ +KUM +10954 A +GEŠTIN +NA +SILA₁₁ +10959 SAG +DU +10962 SAR +10964 LAL +10966 UD +10968 KAM₂ +NU +DU₈ +10973 SILA₃ +PA +10976 PEŠ₃ +10978 GA +SILA₁₁ +10981 SAR +10983 KI +MIN +10987 SILA₃ +10989 HAB +10991 GA +SILA₁₁ +10994 SAR +10996 KI +MIN +11000 SILA₃ +11007 GA +SILA₁₁ +11010 SAR +11012 KI +MIN +11016 SILA₃ +11023 GA +SILA₁₁ +11026 SAR +11028 KI +MIN +11036 GA +SILA₁₁ +11039 SAR +11041 KI +MIN +DIŠ +NA +UGU +11047 UD +DA +TAB +11051 ŠEG₆ +GA₂ +11054 LI +11056 GUR₂ +GUR₂ +11059 BULUH +11063 DUH +ŠE +GIŠ +I₃ +11068 SAR +11070 KI +MIN +DIŠ +NA +UGU +11076 UD +DA +TAB +11080 IGI +MIN +11088 MUD₂ +DIRI +11095 LI +11097 NU +LUH +HA +11107 MA₂ +ERIŠ₄ +MA₂ +RA +DIŠ +11113 GAZ +SIM +11116 DIDA +HI +HI +SAG +DU +11122 LAL +11126 SILA₃ +ZA₃ +HI +LI +11132 SILA₃ +ZI₃ +11135 EREN +11138 SILA₃ +11140 LI +11143 SILA₃ +IM +DI +11148 SILA₃ +11154 SILA₃ +11161 DUH +ŠE +GIŠ +I₃ +ZI₃ +GU₂ +GAL +ZI₃ +MUNU₆ +DIDA +ŠEG₆ +GA₂ +ŠU +TI +11176 SILA₃ +ŠU +TI +11180 A +GAZI +11183 SILA₁₁ +11185 SAR +11187 LAL +DIŠ +NA +MURUB₄ +UGU +11193 GIR₂ +GIR₂ +11196 SIG₂ +SAG +DU +11200 GUB +GUB +11204 GUR₂ +GUR₂ +11215 SUD₂ +11218 ŠEN +TUR +11223 SAG +DU +11232 KAŠ +11235 I₃ +NUN +NA +11239 IZI +ŠEG₆ +11247 GUR₂ +GUR₂ +11250 LI +11252 MUG +11254 ŠEŠ +KAŠ +11258 I₃ +NUN +NA +11262 IZI +ŠEG₆ +11268 NINDA +IM +BABBAR +NAGA +SI +IN +GUN₃ +11277 GIR₃ +PAD +DU +LU₂ +U₁₈ +LU +GIR₃ +PAD +DU +ŠAH +11289 I₃ +HUL +I₃ +KU₆ +DIŠ +11295 HI +HI +11298 NE +11300 KIŠI₁₆ +SAG +DU +11307 EN₂ +11353 TU₆ +EN₂ +KA +INIM +MA +DIŠ +NA +MURUB₄ +UGU +11367 KID₃ +KID₃ +BI +BAR +MUŠ +11378 EN₂ +ŠID +11381 UGU +11386 EN₂ +11419 TU₆ +EN₂ +EN₂ +KA +11424 GIM +KA +11433 GIM +KA +11440 TU₆ +EN₂ +11444 MURUB₄ +UGU +11447 ŠID +11455 KUR +RA +11458 SAR +11460 LAL +11462 UD +11464 KAM₂ +NU +DU₈ +11468 KI +MIN +11472 A +GAZI +11475 SILA₁₁ +11477 LAL₂ +11484 KI +MIN +11494 KAŠ +11501 KI +MIN +11510 ZI₃ +ŠE +SA +A +DIŠ +11516 GAZ +SIM +11519 KAŠ +SILA₁₁ +11524 KI +MIN +11528 SILA₃ +11533 SILA₁₁ +11535 SAR +11540 KI +MIN +11544 SILA₃ +11546 SILA₁₁ +11548 SAR +11553 KI +MIN +11557 SILA₃ +11559 GAZ +SIM +11562 A +GAZI +11565 SILA₁₁ +11567 SAR +11572 KI +MIN +11577 A +GAZI +11580 SILA₁₁ +11585 KI +MIN +11589 KAŠ +SILA₁₁ +11592 SAR +11597 KI +MIN +11601 A +GAZI +11604 SILA₁₁ +11606 SAR +11608 LAL +11610 KI +MIN +11614 A +GAZI +11617 SILA₁₁ +11619 SAR +11624 KI +MIN +11628 A +GAZI +11631 SILA₁₁ +11633 SAR +11638 KI +MIN +11645 KAŠ +SILA₁₁ +11648 SAR +11653 KI +MIN +11666 A +GAZI +11669 LUH +11673 SILA₃ +11675 MAŠ +HUŠ +11679 SILA₃ +11685 GAZ +SIM +11688 A +GAZI +11691 SILA₁₁ +11693 SAG +DU +11697 GABA +11699 LAL +11701 KI +MIN +11708 ZI₃ +KUM +HI +HI +11713 A +GAZI +11716 SILA₁₁ +11718 LAL +11720 KI +MIN +11726 ZI₃ +KUM +11729 A +GAZI +11735 SAR +11737 LAL +11739 UD +11741 KAM₂ +NU +DU₈ +11745 KI +MIN +11751 HA +LU +UB₂ +11755 SILA₃ +TA +AM₃ +HI +HI +11761 A +GAZI +11765 KAŠ +SILA₁₁ +11768 KI +MIN +11771 KI +MIN +11781 I₃ +11785 A +GAZI +11788 SILA₁₁ +11790 KI +MIN +DIŠ +NA +SAG +DU +11797 KUM₂ +KUM₂ +11800 SAR +11802 ZI₃ +ZIZ₂ +AN +NA +11807 A +GAZI +11810 SILA₁₁ +11812 UD +11814 KAM₂ +11816 UD +11818 KAM₂ +LAL₂ +11821 KI +MIN +IM +GU₂ +UD +DA +SA₂ +SA₂ +GAZ +SIM +11832 A +GAZI +11835 SILA₁₁ +11837 UD +11839 KAM₂ +LAL₂ +DIŠ +11845 SAG +DU +11849 MURUB₄ +SAG +DU +11862 A +GAZI +11865 SILA₁₁ +11867 I₃ +EŠ +MEŠ +LAL +11872 KUM₂ +SAG +DU +11879 ŠIKA +IM +ŠU +RIN +NA +ZI₃ +KUM +11887 A +GAZI +11890 SILA₁₁ +11892 SAG +DU +11895 LAL +11897 KI +MIN +11905 ZI₃ +ŠE +SA +A +11910 A +GAZI +11913 SILA₁₁ +11915 LAL +11918 KI +MIN +11924 LI +11926 A +GAZI +11929 SILA₁₁ +11931 LAL +11933 KI +MIN +11938 HAD₂ +DU +GAZ +SIM +11943 A +GAZI +11946 SILA₁₁ +11948 LAL +11950 KI +MIN +DE₃ +11957 A +GAZI +11960 SILA₁₁ +11962 LAL +11965 KI +MIN +11972 GURUN +11974 MAŠ +HUŠ +11977 A +GAZI +11980 SILA₁₁ +11982 LAL +11984 KI +MIN +11987 GEŠTIN +KA₅ +A +HAD₂ +A +SUD₂ +11994 A +GAZI +11997 SILA₁₁ +11999 LAL +12002 KI +MIN +12005 MA₂ +ERIŠ₄ +MA₂ +RA +12010 A +GAZI +12013 SILA₁₁ +12015 LAL +12017 KI +MIN +12023 ZA +BA +LAM +12027 A +GAZI +12030 SILA₁₁ +12032 LAL +12035 KI +MIN +12038 DE₃ +12043 A +GAZI +12046 SILA₁₁ +12048 LAL +12050 KI +MIN +12054 GUR₂ +GUR₂ +12057 A +GAZI +12060 SILA₁₁ +12062 LAL +12064 KI +MIN +12067 ZI₃ +KUM +HI +HI +12072 A +GAZI +12075 SILA₁₁ +12077 LAL +12079 KI +MIN +12082 ZI₃ +KUM +HI +HI +12087 A +GAZI +12090 SILA₁₁ +12092 LAL +12094 KI +MIN +12098 A +GAZI +12101 SILA₁₁ +12103 LAL +12106 KI +MIN +12116 A +GAZI +12119 SILA₁₁ +12121 LAL +12123 KI +MIN +12126 DE₃ +12131 A +GAZI +12134 SILA₁₁ +12136 LAL +12138 KI +MIN +12142 A +GAZI +12145 SILA₁₁ +12147 LAL +DIŠ +12150 SAG +DU +12157 ZI +SAG +KI +TUKU +TUKU +12163 GIN₂ +12165 SAG +DU +12168 SAR +12173 LAL +12175 UD +12177 KAM₂ +NU +DU₈ +12181 KI +MIN +12184 ZI₃ +12186 ŠUR +MIN₃ +12189 GIN₂ +ZI₃ +12192 MAN +DU +12195 GIN₂ +ZI₃ +12198 LI +12200 GIN₂ +ZI₃ +12203 GUR₂ +GUR₂ +12206 GIN₂ +ZI₃ +GAZI +12211 GIN₂ +ZI₃ +GU₂ +GAL +12216 GIN₂ +ZI₃ +GU₂ +TUR +12221 GIN₂ +BAR +ZU₂ +LUM +MA +12227 GIN₂ +ZA₃ +HI +LI +12232 GIN₂ +DIDA +SIG₅ +12236 GIN₂ +ZI₃ +MUNU₆ +DIŠ +12241 HI +HI +12244 KAŠ +SILA₁₁ +12247 GUR +12249 HAD₂ +A +GAZ +SIM +SAG +12258 ŠA₃ +12261 SILA₃ +TI +12265 A +GAZI +12268 SILA₁₁ +12270 SAR +12272 LAL +12274 KI +MIN +12277 KI +MIN +ZA₃ +HI +LI +ARA₃ +12285 GUR₂ +GUR₂ +NAGA +SI +DIŠ +12291 SUD₂ +12293 KAŠ +SILA₁₁ +12296 SAR +12298 KI +MIN +12301 KI +MIN +12304 GUR₂ +GUR₂ +12307 LI +12310 NIN +URTA +NUMUN +12314 AB₂ +DUH +KA +A +AB +BA +12321 ŠEŠ +DIŠ +12324 SUD₂ +12326 KAŠ +SILA₁₁ +12329 SAR +12331 KI +MIN +12334 KI +MIN +12337 GUR₂ +GUR₂ +12340 LI +ILLU +12343 BULUH +ZU₂ +LUM +I₃ +UDU +ELLAG₂ +UDU +NITA₂ +DIŠ +12353 SUD₂ +12355 KUŠ +SUR +12358 SAR +12360 KI +MIN +DIŠ +NA +SAG +DU +12367 UD +DA +TAB +12372 SU +12374 GU₇ +12376 SAG +DU +12382 PA +12384 MES +MA₂ +GAN +NA +12391 SIM +ZI₃ +GU₂ +GAL +ZI₃ +GU₂ +TUR +ZI₃ +12400 IN +NU +HA +DIŠ +12409 KAŠ +SILA₁₁ +12412 SAR +12414 KI +MIN +12417 KI +MIN +DUH +ŠE +GIŠ +I₃ +HAD₂ +A +12427 GUR₂ +GUR₂ +12430 LI +ZI₃ +KUM +12437 KAŠ +SILA₁₁ +12440 SAR +12442 KI +MIN +12445 KI +MIN +12450 HAR +HAR +12453 GUR₂ +GUR₂ +12456 LI +ZI₃ +KUM +12460 KAŠ +SILA₁₁ +12463 SAR +12465 KI +MIN +12468 KI +MIN +12471 LAL +HAD₂ +A +SUD₂ +12476 A +ŠED₇ +SILA₁₁ +12480 SAR +12482 KI +MIN +DIŠ +NA +SAG +DU +12489 KUM₂ +12491 SIG₂ +SAG +DU +12500 KUM₂ +SAG +DU +12504 ZI +12507 SIG₂ +DU +12510 GUB +12519 U₂ +BABBAR +DIŠ +12523 SUD₂ +12525 A +HI +HI +SAG +DU +12533 UD +12535 KAM +12537 SAG +DU +12546 SAG +DU +12549 LUH +12551 NUMUN +12560 NIG₂ +GAN₂ +GAN₂ +12564 NIG₂ +GIDRU +ŠIKA +NUNUZ +GA +NU₁₁ +12571 DIŠ +12573 SUD₂ +12575 I₃ +HI +HI +SAG +DU +12581 ŠEŠ₂ +12583 EN₂ +12602 TU₆ +EN₂ +KA +INIM +MA +SIG₂ +SAG +DU +NIG₂ +GUB +BA +KEŠ₂ +DA +KAM₂ +DU₃ +DU₃ +BI +12620 DU₈ +ŠI +A +12624 GUG +12626 ZA +GIN₃ +12629 NIR₂ +12631 BABBAR +MIN₅ +12634 IGI +KU₆ +12637 ŠUBA +12639 ŠUBA +A₂ +ZI +DA +12644 ŠUBA +A₂ +GUB₃ +BU +12649 KUR +12651 DAB +12653 MUŠ +GIR₂ +12656 AŠ +GI₃ +GI₃ +12660 UGU +AŠ +GI₃ +GI₃ +12672 HE₂ +ME +DA +E₃ +12678 SIG₂ +12680 KEŠ₂ +DA +12683 SIG₂ +DU +12689 EN₂ +12728 TU₆ +EN₂ +KID₃ +KID₃ +BI +12740 SI +SA₂ +TI +12745 IZI +12752 I₃ +HI +HI +EN₂ +12758 ŠID +12762 ŠEŠ₂ +12778 EN₂ +12782 UGU +SAG +DU +12786 ŠID +12788 EN₂ +12839 EN₂ +KID₃ +KID₃ +BI +SAG +DU +BURU₅ +KUR +RA +SAG +DU +IGIRA₂ +12852 SAG +DU +BURU₅ +HABRUD +DA +NITA₂ +12859 U₄ +HI +IN +12863 GIŠIMMAR +12871 EN₂ +12875 ŠA₃ +ŠID +12878 EŠ +MEŠ +12882 SIG₂ +DU +12890 NITA₂ +12893 MUNUS +12909 KID₃ +KID₃ +BI +12919 SI +SA₂ +TI +12923 IZI +12927 I₃ +12929 ŠUR +MIN₃ +MUD₂ +12933 EREN +HI +HI +EŠ +MEŠ +12940 SI +SA₂ +12943 EN₂ +MU +UL +LU +U +HUL +A +12951 GAL₂ +12953 DINGIR +12979 DIM₂ +12981 TI +LA +ŠE₃ +13008 TU₆ +EN₂ +KA +INIM +MA +SIG₂ +KEŠ₂ +DA +KAM₂ +DIŠ +NA +SIG₂ +TE +MEŠ +13029 NA +BI +DINGIR +13037 KI +13042 KID₃ +KID₃ +BI +13046 IGI +MUL +13051 KEŠDA +KEŠDA +ZU₂ +LUM +MA +13057 EŠA +DUB +13060 NINDA +I₃ +DE₂ +A +LAL₃ +I₃ +NUN +NA +GAR +13071 SISKUR +DU₃ +13075 ZAG +13077 ME +HE₂ +13080 KA +NE +13085 KAŠ +BAL +13088 GIŠ +GAN₂ +13091 MA₂ +EREŠ₄ +13094 MA₂ +13097 U₅ +ARGAB +13101 IGI +NIŠ +13104 IGI +13106 ŠE₁₀ +MA₂ +LAH₅ +KI +I₃ +HI +HI +13114 IGI +MUL +GAR +13118 EN₂ +13124 ŠID +13128 MUL +13140 AN +13144 UB +MEŠ +13148 NENNI +A +NENNI +13152 GE₆ +13156 IGI +13165 EŠ +BAR +13169 TAR +13171 U₂ +HI +A +ŠEŠ +MEŠ +13181 A₂ +GU₂ +ZI +GA +ZALAG +13187 TE +MEŠ +13193 KI +MIN +GIŠ +GAN₂ +13198 LU₂ +13211 KUR +13216 KUŠ +13218 AŠ₂ +GAR₃ +GIŠ₃ +NU +ZU +13224 GU₂ +13226 GAR +13229 KA +INIM +MA +SIG₂ +KEŠ₂ +DA +KAM +DIŠ +NA +UGU +13240 A +13244 ŠU +SI +13247 GAL +13251 A +MEŠ +13256 TAG +TAG +13261 UZU +GIŠ +13267 A +13276 BAD +13285 A +13294 TUG₂ +SIG +A +LUH +13299 I₃ +GIŠ +SUD +13303 UGU +GIG +GAR +13307 KU +KU +GIŠ +KIN₂ +ŠE₁₀ +BAHAR₂ +SUD₂ +13315 UGU +GIG +MAR +UD +13320 KAM +LAL +DU₈ +13324 TUG₂ +SIG +A +LUH +13329 I₃ +GIŠ +SUD +13333 UGU +GIG +GAR +13348 UD +13350 KAM +LAL +DU₈ +13354 TUG₂ +SIG +A +LUH +13359 I₃ +GIŠ +SUD +13363 UGU +GIG +GAR +13373 GAZI +13375 BIL₂ +13377 KI +ZI₃ +ŠE +SA +A +HI +HI +13385 UGU +GIG +MAR +UD +13390 KAM +LAL +DU₈ +13399 LI +GAZ +KI +ZI₃ +KUM +HI +HI +13407 A +GAZI +13410 SILA₁₁ +13412 LAL +IGI +GIG +13418 EN +TI +LA +LAL₂ +13427 TAG +13429 UZU +GIŠ +13439 SAG +DU +13442 NE +NA₄ +MEŠ +GAR +13447 EN₂ +13460 ZI +13466 SA₅ +13469 IM +ŠEG₃ +SA₅ +ZI +13474 KI +13476 SA₅ +13480 A +ZI +GA +SA₅ +ZI +13486 ID₂ +SA₅ +13492 ENGAR +SA₅ +13495 MAR +SA₅ +13498 DUSU +SA₅ +IL₂ +13503 A +MEŠ +SA₅ +MEŠ +13511 IG +13513 SA₅ +13515 SAG +KUL +13518 SA₅ +KA₂ +13546 TU₆ +EN₂ +13549 KA +INIM +MA +A +MEŠ +SAG +DU +13561 DU₃ +DU₃ +BI +13570 GIR₃ +EME₃ +13576 NIGIN +13579 ŠA₃ +13584 GAR +13586 EN₂ +13589 ŠID +13592 TUG₂ +13601 NU +NU +13604 KA +KEŠDA +KEŠDA +13609 KEŠDA +EN₂ +ŠID +13614 SAG +KI +13622 DIŠ +NA +SAG +DU +13627 A +13642 EREN +13645 GAR +13648 A +13652 DIŠ +NA +13659 A +13663 UD +13669 UD +13671 KAM +LAL +13674 UD +13676 KAM +13692 LAL₂ +DIŠ +NA +SAG +DU +13703 EREN +13706 GAR +13708 DIŠ +NA +SAG +DU +13724 MUŠ +GIR₂ +13727 DAG +GAZ +13730 GUG +13735 ZU₂ +GE₂ +13738 NIR₂ +13740 AN +ZA +GUL +ME +13745 AMAŠ +PA +E₃ +13749 NA₄ +MEŠ +13756 HE₂ +ME +DA +SIG₂ +BABBAR +NU +NU +E₃ +13765 SAG +KI +MIN +13774 DIŠ +NA +SAG +DU +13785 GUR₂ +GUR₂ +13788 LI +13790 MAN +DU +ŠIM +ŠAL +13795 BAL +13803 EREN +SUMUN +13817 GI +DU₁₀ +13820 KI +MIN +13826 I₃ +UDU +ELLAG₂ +UDU +NITA₂ +13832 MUN +NU +ŠUB +13837 MUD₂ +13839 EREN +SUD₂ +13842 KUŠ +SUR +13845 SAG +DU +13848 LAL +13850 KI +MIN +13857 BULUH +13867 SAG +DU +13872 SAG +DU +PIŠ₁₀ +13876 ID₂ +BABBAR +13879 GE₆ +13883 NITA₂ +13885 MUNUS +13894 KA +A +AB +BA +NUMUN +13902 SI +DARA₃ +MAŠ +13907 NAM +LU₂ +U₁₈ +LU +U₂ +HI +A +13917 TEŠ₂ +BI +SUD₂ +13929 SAG +KI +MEŠ +13938 SAG +DU +13941 KUR +KUR +PIŠ₁₀ +13945 ID₂ +13953 NITA₂ +13955 MUNUS +DIŠ +13962 MUD₂ +13964 EREN +HI +HI +13968 NE +13973 DIŠ +NA +SAG +DU +13978 GIG +13985 MUR +DU₃ +DU₃ +13996 SIG₇ +13998 DIŠ +14000 SUD₂ +14002 A +GAZI +14005 SILA₁₁ +14007 SAG +DU +14010 SAR +14012 LAL +14014 UD +14016 KAM₂ +NU +DU₈ +DIŠ +NA +SAG +DU +14024 DUGUD +14026 GUR₂ +GUR₂ +14029 LI +14031 KUR +KUR +14034 ŠEŠ +KI +ILLU +14038 BULUH +14042 ELLAG₂ +GUD +HI +HI +14047 KUŠ +SUR +14050 SAR +14052 UD +14054 KAM₂ +LAL₂ +14057 KI +MIN +14067 TA +AM₃ +14076 A +GAZI +14079 SILA₁₁ +14081 I₃ +ŠEŠ₂ +LAL +14086 SAG +DU +14090 DUGUD +14093 ZI +14095 SAG +DU +14100 NA +ZA₃ +HI +LI +SUD₂ +14106 SAG +DU +14113 KI +MIN +14116 HI +HI +SAG +DU +14121 EŠ +MEŠ +DIŠ +NA +14127 HAD₂ +A +GAZ +SIM +KI +14133 LAL +14136 UD +14138 KAM +NU +DU₈ +DIŠ +NA +SAG +DU +14147 IGI +14149 GID₂ +DA +14152 ŠU +MIN +14156 GIR₃ +MIN +14163 TUKU +MEŠ +14166 TI +14169 GUR₂ +GUR₂ +14172 LI +14174 KUR +KUR +14178 ILDAG₂ +GAZI +14181 ZI₃ +ŠE +SA +A +DIDA +SIG₅ +14189 A +GAZ +14192 SILA₁₁ +14194 SAG +DU +14198 LAL₂ +14200 UD +14202 KAM₂ +NU +DU₈ +14206 KI +MIN +14211 ŠEŠ₂ +MEŠ +14216 DIŠ +NA +MURUB₄ +SAG +DU +14227 GAZ +ŠA₃ +TUKU +MEŠ +14232 ELLAG₂ +14240 GIG +ZI +14244 DIDA +SIG₅ +GAZI +14248 ZI₃ +ŠE +SA +A +14253 LAL +14264 A +GAZI +14267 SILA₁₁ +14271 KI +MIN +14276 ŠINIG +NUMUN +14279 AB₂ +DUH +14284 KAŠ +SAG +14288 GEŠTIN +NAG +14291 DIŠ +NA +SAG +KI +DAB +BA +TUKU +TUKU +NUMUN +14301 UKUŠ₂ +HAB +DUB +14305 KAM₂ +DIŠ +NA +UGU +14310 KUM₂ +14313 E₂ +GAL +14316 AN +ŠAR₂ +DU₃ +A +LUGAL +ŠU₂ +MAN +KUR +AN +ŠAR₂ +14329 AG +14335 GEŠTU +MIN +14349 IGI +MIN +14362 LUGAL +MEŠ +14384 TA +14387 EN +UMBIN +14391 BAR +MEŠ +14424 IGI +KAR₂ +14438 E₂ +GAL +14443 DIŠ +NA +14456 IGI +14459 IGI +NIŠ +14462 DIŠ +KI +MIN +14466 HAR +HAR +14474 DIŠ +KI +MIN +14478 HAR +LUM +BA +ŠIR +14483 DIŠ +NA +SAG +ŠA₃ +14494 KIRI₄ +14496 DUGUD +NA +BI +14500 DIŠ +NA +SAG +ŠA₃ +14513 UH₂ +14517 UD +DA +SA₂ +SA₂ +I₃ +GIŠ +BARA₂ +GA +14526 A +NU +14530 NAG +NAG +14535 LI +14537 GUR₂ +GUR₂ +ILLU +14541 BULUH +PA +14546 PA +14548 IN₆ +UŠ₂ +14551 DIŠ +NA +MURUB₄ +MAŠ +SILA₃ +MIN +14562 KI +UH₂ +14565 MUD₂ +ŠUB +ŠUB +14569 UD +DA +14573 LI +14575 GUR₂ +GUR₂ +ZA₃ +HI +LI +14581 PA +GI +ZU₂ +LUM +MA +IM +GU₂ +EN +NA +GAZ +14592 KAŠ +SILA₁₁ +14597 DIŠ +NA +NINDA +GU₇ +KAŠ +NAG +14604 SAG +ŠA₃ +14611 ŠA₃ +14613 MU₂ +MU₂ +14616 UD +DA +SA₂ +SA₂ +14624 IGI +14630 DIŠ +KI +MIN +I₃ +GIŠ +BARA₂ +GA +EME +14639 DAB +14642 DIŠ +NA +14653 ŠUB +ŠUB +14669 UD +DA +SA₂ +SA₂ +14674 GEŠTIN +KA₅ +A +SUD₂ +14679 KAŠ +NAG +UZU +GUR₄ +RA +GU₇ +14686 LI +14688 HAB +14690 KAŠ +NAG +14693 KAŠ +ŠEG₆ +14697 DUR₂ +14699 DUB +DIŠ +KI +MIN +GEŠTIN +KA₅ +A +SUD₂ +14708 KAŠ +NAG +IM +GU₂ +EN +NA +A +GAR +GAR +MAŠ +DA₃ +PA +14721 KIŠI₁₆ +14724 PA +GI +ZU₂ +LUM +MA +14731 GI +ŠUL +HI +ZI₃ +GIG +DUH +ŠE +GIŠ +I₃ +14743 KAŠ +14748 TUG₂ +14752 LAL +DIŠ +KI +MIN +14759 SUD₂ +14761 KAŠ +SAG +NAG +DIŠ +NA +14775 ŠUB +ŠUB +14781 TAG +TAG +14784 UH₂ +14789 NAG +NAG +UD +DA +SA₂ +SA₂ +14796 IGI +14803 ŠE +LI +BABBAR +SUD₂ +14808 KAŠ +NAG +DIŠ +NA +NINDA +GU₇ +KAŠ +NAG +14817 ŠA₃ +14825 A +14828 NAG +UD +DA +SA₂ +SA₂ +14834 IGI +14837 IGI +NIŠ +14843 GAM +MA +14850 HAR +HAR +SUD₂ +14854 KAŠ +NU +14858 NAG +IM +GU₂ +EN +NA +A +GAR +GAR +MAŠ +DA₃ +14869 LI +14871 GUR₂ +GUR₂ +ZA₃ +HI +LI +PA +14878 GEŠTIN +KA₅ +A +14887 GI +ŠUL +HI +ZI₃ +GIG +DUH +ŠE +GIŠ +I₃ +SUD₂ +14898 KAŠ +SILA₁₁ +14902 TUG₂ +SUR +14905 LAL +14908 TI +14912 SUD₂ +14914 KAŠ +NAG +UZU +GUR₄ +RA +GU₇ +ŠA₃ +14928 SUD₂ +14930 KAŠ +NAG +14933 IGI +14935 SUD₂ +14937 I₃ +GIŠ +BARA₂ +GA +NAG +IM +GU₂ +EN +NA +SUD₂ +14948 KAŠ +NAG +14954 SUD₂ +14956 KAŠ +NAG +DIŠ +NA +NINDA +GU₇ +KAŠ +NAG +14965 ŠA₃ +14973 A +14976 NAG +UD +DA +SA₂ +SA₂ +GURUN +UKUŠ₂ +HAB +EN +14990 HAD₂ +DU +14995 KAŠ +NAG +14998 KUR +RA +SUD₂ +15002 KAŠ +NAG +15005 HAR +LUM +BA +ŠIR +SUD₂ +15011 KAŠ +NAG +DIŠ +NA +NINDA +GU₇ +KAŠ +NAG +15020 ŠA₃ +MEŠ +15027 KAŠ₃ +MEŠ +15030 DAB +DAB +15033 UD +DA +SA₂ +SA₂ +GURUN +UKUŠ₂ +HAB +EN +15046 HAD₂ +DU +15051 KAŠ +NAG +DIŠ +NA +NINDA +GU₇ +KAŠ +NAG +15060 ŠA₃ +15075 TUKU +UD +DA +SA₂ +SA₂ +15084 DIŠ +NA +15095 DIŠ +NA +15100 NA +BI +15104 GIG +15112 KAŠ +15114 EGIR +15118 KAŠ +15121 DIŠ +KI +MIN +15128 ŠUB +ŠUB +15136 NU +TUKU +TUKU +15141 NU +GID₂ +DA +15150 DIŠ +15157 DIŠ +NA +15163 TUKU +TUKU +15171 DIŠ +NA +SAG +KI +DAB +BA +TUKU +TUKU +15180 NUMUN +15182 UKUŠ₂ +HAB +NUMUN +15186 UKUŠ₂ +TI +GI +LA +NUMUN +15192 EME +UR +GI₇ +NUMUN +15197 HUR +SAG +NUMUN +HAB +NUMUN +15203 DILI +NUMUN +15208 GAZ +SIM +15213 HI +HI +15216 A +GEŠTIN +NA +15221 ZI₃ +ŠE +SA +A +ZI₃ +ZIZ₂ +A +AN +15231 IGI +15236 KUŠ +SUR +SAG +DU +15244 LAL +15248 DIŠ +KIMIN +GAZI +15253 AB₂ +DUH +15256 GUR₂ +GUR₂ +15259 BULUH +DUH +ŠE +GIŠ +I₃ +15269 ZI₃ +GIG +15274 HI +HI +DIDA +SIG₅ +GA +SUD₂ +15281 ŠA₃ +ŠUB +ŠEG₆ +GA₂ +U₂ +HI +A +15291 HI +HI +15295 LAL +DIŠ +KIMIN +15299 EREN +15301 ŠUR +MIN₃ +15304 GIR₂ +GI +DU₁₀ +GA +15309 GUR₂ +GUR₂ +15312 LI +15314 EREN +SUMUN +15317 MUG +ŠIM +ŠAL +15321 MAN +DU +15324 HAB +15326 BULUH +ILLU +15329 BULUH +TEŠ₂ +BI +GAZ +SIM +15335 GEŠTIN +ŠUR +RA +15340 ZI₃ +ŠE +SA +A +ZI₃ +ZIZ₂ +A +AN +15349 IGI +15354 KUŠ +SUR +15357 SAG +DU +15363 LAL +15365 TI +DIŠ +KIMIN +NUMUN +15370 ILDAG₂ +15374 NUMUN +AB₂ +DUH +15381 GAZI +15383 NUMUN +15385 HAB +15387 LAG +A +ŠA₃ +DIŠ +15401 ŠE +SA +A +ZI₃ +ZIZ₃ +A +AN +15410 IGI +15418 SAG +DU +15421 SAR +15423 LAL +15425 TI +DIŠ +KIMIN +15429 HAR +HAR +15432 KUR +KUR +15442 KA +A +AB +BA +ZI₃ +GIG +DIDA +SIG₅ +15456 KAŠ +15459 LAL +15461 TI +DIŠ +KIMIN +15465 GUR₂ +GUR₂ +15468 LI +15472 NUMUN +15477 KA +A +AB +BA +15482 ŠEŠ +ZI₃ +GIG +DIŠ +15487 GAZ +SIM +15493 KAŠ +15496 LAL +15498 TI +DIŠ +KIMIN +15502 GUR₂ +GUR₂ +15505 LI +15510 DIŠ +15512 GAZ +SIM +ZI₃ +GIG +DIDA +SIG₅ +15519 KAŠ +15526 SAG +DU +15529 SAR +15531 LAL₂ +15533 TI +DIŠ +KIMIN +15537 GUR₂ +GUR₂ +15540 LI +15543 NIN +URTA +NUMUN +15547 AB₂ +DUH +KA +A +AB +BA +15554 MUG +DIŠ +15557 GAZ +SIM +15560 KAŠ +15563 SAG +DU +15566 SAR +15568 LAL +15570 TI +DIŠ +KIMIN +PA +15575 GIŠIMMAR +15578 NU +IM +15584 TI +15587 UD +DA +HAD₂ +A +GAZ +SIM +15594 A +GAZI +15597 SILA₁₁ +15599 LAL +DIŠ +KIMIN +15606 SUD₂ +15608 I₃ +HI +HI +ILLU +15618 ŠA₃ +ŠUB +15621 EN₂ +A +RA +ŠE +RA +MIN +IZI +BIL +LI +NUMUN +KI +IB +GAR +15640 ŠA₃ +ŠID +SAG +KI +15645 LAL₂ +DIŠ +KIMIN +15649 KUR +KUR +15655 NE +15661 GUR₂ +GUR₂ +15667 LI +NUMUN +15670 AB₂ +DUH +KA +A +AB +BA +15682 IZI +15687 LAL +15697 KA +A +AB +BA +UH₂ +15703 ID₂ +DIŠ +15706 SUD₂ +15708 HE₂ +ME +DA +15716 SAG +KI +15719 KEŠDA +15721 DIŠ +KIMIN +15727 SAG +KI +15730 TAG +TAG +DIŠ +KIMIN +15736 HI +HI +SAG +KI +15741 TAG +DIŠ +KIMIN +15745 GIN₂ +ZA₃ +HI +LI +15750 GIN₂ +ŠE +SA +A +15760 LAL +DIŠ +KIMIN +15764 GIN₂ +ZA₃ +HI +LI +15769 GIN₂ +IM +BABBAR +15785 TUKUM +BI +LU₂ +U₃ +SAG +KI +15806 GUB₃ +15808 GUB +15821 HE₂ +ME +DA +KEŠDA +15835 TUKUM +BI +LU₂ +U₃ +SAG +KI +DAB +15853 HAD₂ +A +GAZ +SIM +15858 KAŠ +SILA₁₁ +15870 TUKUM +BI +LU₂ +U₃ +15888 SAG +KI +15898 TUKUM +BI +15916 TUKUM +BI +15936 SAG +KI +15945 DIŠ +LU₂ +ZI +SAG +KI +TUKU +15971 ARA₃ +15973 ZI₃ +ŠE +SA +A +15990 DIŠ +KIMIN +PA +15996 HAD₂ +A +GAZ +SIM +16001 ZI₃ +GIG +16017 DIŠ +KIMIN +16020 GEŠTIN +KA₅ +A +16027 HAD₂ +A +GAZ +16033 KI +ZI₃ +ŠE +SA +A +16039 A +GAZI +16045 DIŠ +NA +ZI +SAG +KI +TUKU +16056 TUKU +PA +16059 MA +NU +16070 HAR +HAR +16073 KAŠ +16075 KURUN₂ +NA +16083 PA +16085 UR₂ +TAL₂ +TAL₂ +16090 MAŠ +KA +A +AB +BA +16096 HAR +HAR +16099 KUR +KUR +ZI₃ +GIG +16105 GI +16108 GI +ŠUL +HI +HENBUR₂ +GI +HENBUR₂ +GI +ŠUL +HI +NUNUZ +16119 DIH₃ +NUNUZ +16122 KIŠI₁₆ +I₃ +UDU +UR +MAH +16130 KIŠI₁₆ +16133 UGU +KI +MAH +GUB +16138 TEŠ₂ +BI +SUD₂ +16142 I₃ +ŠEŠ₂ +NUMUN +16146 KI +16148 IŠKUR +DIDA +SIG₅ +GA +16154 NA +ZA₃ +HI +LI +SUD₂ +16160 KAŠ +16162 KURUN₂ +NA +16166 LAL +DIŠ +LU₂ +ZI +SAG +KI +TUKU +16174 ŠU +MIN +16177 GIR₃ +MIN +16185 PA +16187 HA +LU +UB₂ +16191 IM +MAN +DI +16195 SU +AN +DAR +ZI₃ +ŠE +MUŠ₅ +ZI₃ +MUNU₆ +16204 HAR +HAR +16207 GEŠTIN +KA₅ +A +DIŠ +16212 GAZ +SIM +16218 KAŠ +16221 LAL +16223 TI +PA +GI +ŠUL +HI +16229 LI +16231 SU +AN +DAR +16238 IN₆ +UŠ₂ +ZI₃ +GU₂ +TUR +DIŠ +16245 GAZ +SIM +16251 KAŠ +SAG +16255 LAL₂ +16257 TI +16259 DIŠ +NA +SAG +KI +16264 GU₇ +MIN +16280 EN +MUD₂ +GIN +16288 I₃ +EŠ +16293 NIG₂ +DARA₂ +ŠU +LAL₂ +16300 GEŠTU +16302 DIH₃ +SA₅ +16307 GU₂ +16309 GAR +16311 KU +KU +16314 SAG +KI +KU +KU +16319 NIR₂ +16321 I₃ +ŠEŠ₂ +16325 ZI +SAG +KI +16331 DUH +ŠE +GIŠ +I₃ +SUMUN +MEŠ +16338 GUR₂ +GUR₂ +16341 HAB +16343 BULUH +GAZI +16349 DIDA +SIG₅ +ZI₃ +KUM +16354 KAŠ +ŠEG₆ +GA₂ +16359 LAL +16361 ZI +SAG +KI +16367 DUH +ŠE +GIŠ +I₃ +16372 GUR₂ +GUR₂ +16375 BULUH +DIŠ +16378 GAZ +AL +U₂ +SA +ZI₃ +KUM +16385 KAŠ +DIŠ +16388 ŠEG₆ +16391 TUG₂ +SUR +16394 LAL +16397 TI +DIŠ +NA +SA +SAG +KI +16404 GIG +16406 LI +16408 GUR₂ +GUR₂ +A +GAR +GAR +MAŠ +DA₃ +ZI₃ +GIG +DIŠ +16420 KAŠ +16423 LAL +16425 TI +16427 GAZI +16431 ZI₃ +GIG +16436 HI +HI +16439 I₃ +16441 KAŠ +SAG +16445 LAL +16447 TI +16449 DIŠ +LU₂ +SA +SAG +KI +16455 DAB +16458 GU₇ +MIN +16462 KISAL +ZI₃ +GIG +16466 KISAL +ZI₃ +KUM +16470 KISAL +16472 GUR₂ +GUR₂ +16475 KISAL +GAZI +16479 KISAL +ZI₃ +MUNU₆ +16483 KISAL +DUH +ŠE +GIŠ +I₃ +TEŠ₂ +BI +HI +HI +16493 KAŠ +16497 SAG +KI +16500 LAL +16507 SA +HI +A +ŠE +SA +A +A +GAR +GAR +MAŠ +DA₃ +16521 HI +HI +16524 KAŠ +SAG +16528 LAL +DIŠ +LU₂ +SA +SAG +KI +16535 DAB +16538 GU₇ +16546 KAŠ +NAG +16552 ŠU +BI +GEN₇ +NAM +DIŠ +NA +16560 NINDA +16562 KAŠ +16567 LU₂ +BI +DINGIR +16583 A +16585 UGU +TU₅ +DIŠ +KIMIN +16590 LAL +16592 SIG₂ +16594 AŠ₂ +GAR₃ +GIŠ₃ +NU +ZU +16600 HE₂ +ME +DA +NIGIN +16605 KEŠDA +DIŠ +KIMIN +16615 MUNUS +16620 NU +NU +SA +MAŠ +DA₃ +KI +16639 ZA +GIN₃ +16642 ZU₂ +GE₆ +E₃ +16646 SAG +KI +MIN +16650 KEŠDA +SAHAR +16658 ŠIKA +SILA +LIMMU₂ +16664 SUD₂ +16666 I₃ +GIŠ +HI +HI +ŠEŠ₂ +16672 DIŠ +NA +SAG +KI +ZAG +16678 DAB +16681 IGI +ZAG +16684 ER₂ +16690 ZI₃ +ŠE +SA +A +LAGAB +16696 LAGAB +MUNU₆ +DIŠ +16700 HI +HI +16703 A +GAZI +16708 SAG +KI +16711 LAL +16713 TI +16715 DIŠ +NA +SAG +KI +GUB₃ +16721 DAB +16724 IGI +GUB₃ +16727 ER₂ +16734 HAR +HAR +GAZ +SIM +16739 KAŠ +AL +ŠEG₆ +GA₂ +16745 SAG +KI +16748 LAL +16750 TI +16752 DIŠ +NA +SAG +KI +MIN +16762 IGI +MIN +16765 ER₂ +16773 HAR +HAR +GAZI +16777 ZI₃ +ŠE +SA +A +BA +BA +ZA +MUNU₆ +DIŠ +16789 UTUL₇ +16791 A +GAZI +16796 SAG +KI +MIN +16800 KEŠDA +16802 TI +16804 DIŠ +NA +SAG +KI +ZAG +16810 DAB +16813 IGI +ZAG +16816 MUD₂ +16823 HAR +HAR +IM +BABBAR +16828 KIŠI₁₆ +HAB +ZI₃ +ŠE +SA +A +BA +BA +ZA +MUNU₆ +DIŠ +16840 GAZ +SIM +16843 A +GEŠTIN +NA +16848 ŠU +BI +AŠ +AM₃ +DIŠ +NA +SAG +KI +GUB₃ +16858 DAB +16861 IGI +GUB₃ +16864 MUD₂ +16868 KI +KAL +HI +RI₂ +IN +16874 SU +AN +DAR +16878 MUG +DIŠ +16881 GAZ +SIM +16891 MIN +16915 ŠE +SA +A +16936 LAL +16940 ŠUR +MIN₃ +16943 MA₂ +EREŠ +MA₂ +RA +16960 ŠURUN +GUD +A +GAR +GAR +MAŠ +DA₃ +DIŠ +16969 GAZ +SIM +16972 DIDA +SIG +16981 IGI +16985 SAG +DU +16988 SAR +16990 LAL +16993 IGI +16996 IGI +NIŠ +16999 DIDA +17003 ZI +17006 SAG +KI +17009 ZAG +17011 KEŠDA +17017 ŠIKA +17020 LU₂ +U₁₈ +LU +17029 NUMUN +17031 MA +NU +17034 DILI +NUMUN +17040 AŠ +TAL₂ +TAL₂ +DIŠ +17049 I₃ +GIŠ +17052 EREN +HI +HI +17056 ŠEŠ₂ +17063 NE +17065 KIŠI₁₆ +17070 I₃ +DU₁₀ +GA +SAG +KI +MIN +17077 EŠ +17079 DIŠ +NA +SAG +KI +ZAG +17085 GU₇ +17088 IGI +ZAG +17094 ER₂ +BAL +17097 ŠU +GIDIM +MA +17106 TI +17121 GIN₂ +UH₂ +17124 ID₂ +17126 IN₆ +UŠ₂ +GI +ŠUL +HI +17132 ZI₃ +KUM +HI +HI +17137 KAŠ +17140 LAL +17142 DIŠ +KIMIN +17153 A +GEŠTIN +NA +KALAG +GA +17161 KAŠ +SAG +ZU₂ +LUM +MA +DILMUN +17169 GIN₂ +I₃ +UDU +17173 GIG +17175 I₃ +NUN +SUD₂ +17182 DIŠ +NA +SAG +KI +GUB₃ +17188 GU₇ +17191 IGI +17197 ER₂ +BAL +17200 ZU₂ +LUM +MA +DILMUN +17205 U₂ +17209 MUD₂ +17211 EREN +17213 I₃ +17215 GIR₂ +SUD₂ +17218 MUL₄ +17224 NU +17227 MAR +DIŠ +KIMIN +IM +BABBAR +17235 ZI₃ +MUNU₆ +ZI₃ +GU₂ +GAL +ZI₃ +GU₂ +TUR +ZI₃ +GAZI +17246 GAZ +SIM +17249 A +GAZI +17254 SAG +KI +17257 IGI +17259 LAL +DIŠ +NA +SAG +KI +DAB +17272 IGI +MIN +17279 ŠU +GIDIM +MA +GIR₃ +PAD +DU +NAM +LU₂ +U₁₈ +LU +17291 SUD₂ +17293 I₃ +17295 EREN +EŠ +MEŠ +17300 TI +DIŠ +NA +SAG +KI +DAB +17308 TA +17310 UTU +E₃ +EN +17314 UTU +ŠU₂ +A +GU₇ +17319 ŠU +GIDIM₇ +MA +17335 I₃ +UDU +17340 UDU +NITA₂ +17346 DIŠ +17348 EŠ +17351 IN₆ +UŠ₂ +HAD₂ +A +GAZ +SIM +17358 A +GAZI +17363 ZI₃ +ŠE +SA +A +17368 IGI +17372 SAR +17374 LAL +17379 LAL +17382 ZI +17385 HE₂ +ME +DA +17390 NIGIN +17393 SAG +KI +17397 GU₂ +17399 KEŠDA +17410 SAG +KI +MIN +17414 GU₇ +MIN +17421 AN +ZAH +17424 AN +ZAH +GE₆ +17428 KA +GI +NA +DAB +BA +NA₄ +AN +BAR +17437 DILI +17439 U₂ +MEŠ +ŠEŠ +DIŠ +17444 SUD₂ +17446 MUD₂ +17448 EREN +HI +HI +17452 SAG +KI +MIN +17456 IGI +MEŠ +17460 GU₂ +17462 EŠ +MEŠ +17467 DIŠ +NA +17470 DAB +ŠU +GIDIM +ZI +SAG +KI +TUKU +MEŠ +17479 KAR +17482 GIN₂ +17484 EREN +17486 GIN₂ +17488 ŠUR +MIN₃ +17491 GIN₂ +17493 ŠEŠ +17495 GIN₂ +17497 IM +DI +17500 GIN₂ +17506 GIN₂ +ŠIM +ŠAL +17510 GIN₂ +17512 GIR₂ +17514 GIN₂ +17516 GAM +MA +17519 GIN₂ +17521 LI +17523 GIN₂ +17525 GUR₂ +GUR₂ +17528 GIN₂ +GI +DU₁₀ +GA +17533 GIN₂ +GAZI +17537 GIN₂ +17539 HAB +17541 GIN₂ +LAGAB +MUNU₆ +17545 GIN₂ +DUH +ŠE +GIŠ +I₃ +17553 GIN₂ +DIDA +SIG₅ +GA +17558 GIN₂ +17563 GIN₂ +17570 GIN₂ +GU₂ +GAL +17574 GIN₂ +GU₂ +TUR +DIŠ +17579 GAZ +SIM +17583 KAŠ +SAG +17591 KUŠ +SUR +ZI₃ +ZIZ₂ +A +AN +17598 IGI +17605 SAR +17607 SAG +KI +MIN +17611 LAL +17615 DIŠ +KIMIN +17621 MAŠ +ILLU +17624 BULUH +17627 ZU₂ +LUM +MA +I₃ +UDU +ELLAG₂ +17634 DIŠ +17636 GAZ +17638 KUŠ +SUR +17641 LAL +17646 DIŠ +KIMIN +DUH +ŠE +GIŠ +I₃ +17654 GIG +ZI₃ +KUM +17661 KAŠ +SILA₁₁ +17667 DIŠ +NA +SAG +KI +DAB +BA +TUKU +TUKU +17676 ŠAKIRA +NUMUN +17679 UR +TAL₂ +TAL₂ +NUMUN +17684 EME +UR +GI₇ +NUMUN +17689 NIG₂ +GAN₂ +GAN₂ +NUMUN +17697 NUMUN +17699 AB₂ +DUH +NUMUN +17703 MAŠ +HUŠ +17710 ŠE₁₀ +TU +17715 GIŠIMMAR +TI +ŠE₁₀ +SIM +17724 TI +ILLU +17733 GUR₂ +GUR₂ +17738 NUMUN +17743 GAZI +17746 KIŠI₁₆ +17750 DIŠ +17755 U₂ +MEŠ +ŠEŠ +17760 ŠEN +TUR +17765 U₂ +MEŠ +17776 TI +DIŠ +17779 HI +HI +17785 KAŠ +17792 I₃ +GIŠ +EŠ +17798 KEŠDA +17802 U₄ +17804 KAM₂ +SA +SAG +KI +17813 TI +17815 DIŠ +KIMIN +NUMUN +17819 DILI +NUMUN +17822 TAL₂ +TAL₂ +GAZ +SIM +17827 A +17831 LAL +DIŠ +KIMIN +ŠE₁₀ +TU +17837 SUD₂ +17839 KAŠ +17843 LAL +DIŠ +NA +SAG +KI +DAB +BA +TUKU +TUKU +IGI +MIN +17859 UZU +MIN +17867 GIR₂ +GIR₂ +17870 ŠA₃ +MEŠ +17873 MU₂ +MU₂ +ŠU +MIN +17879 GIR₃ +MIN +17904 NA +BI +GIG +NU +ZI +DAB +17916 GIG +17918 NU +GID₂ +DA +17924 KAŠ +17926 ŠEN +TUR +DIRI +17936 HAŠHUR +GIŠ +GI +17940 TAL₂ +TAL₂ +NUMUN +17944 ŠE +NU₂ +A +17948 ŠA₃ +ŠUB +ŠEG₆ +17958 E₁₁ +17961 NAGA +SI +MEŠ +IM +GU₂ +NIG₂ +NIGIN₂ +NA +17975 IGI +17978 IGI +NIŠ +SUD₂ +17982 MUD₂ +17984 EREN +HI +HI +ŠEŠ₂ +17990 TI +DIŠ +NA +SAG +KI +DAB +BA +TUKU +TUKU +18000 IGI +18003 IGI +NIŠ +18014 HAŠHUR +GIŠ +GI +18018 HAR +HAR +U₂ +HI +A +ŠEŠ +18025 DIŠ +18032 ŠEN +TUR +ŠUB +18042 GIN₂ +LAL₃ +18046 SILA₃ +I₃ +18051 ŠA₃ +ŠUB +18054 DUR₂ +18056 DUB +18058 TI +DIŠ +KIMIN +18062 IGI +18065 IGI +NIŠ +NUMUN +18069 ŠINIG +NUMUN +18074 TEŠ₂ +BI +SUD₂ +18078 GEŠTIN +ŠUR +18084 NAG +18086 TI +18088 DIŠ +KIMIN +ŠIM +HI +A +DU₃ +A +BI +18099 GEŠTIN +ŠUR +18102 KAŠ +SAG +18107 ŠEG₆ +18113 KISAL +LAL₃ +18117 SILA₃ +I₃ +18122 ŠA₃ +ŠUB +18133 TI +18135 DIŠ +KIMIN +18138 HAR +HAR +18141 KUR +KUR +NAGA +SI +MEŠ +18151 NU +18154 NAG +MIN +18157 TI +18159 DIŠ +KIMIN +18162 IGI +18165 IGI +NIŠ +NUMUN +18176 SUD₂ +18178 KAŠ +ŠEG₆ +18185 KISAL +LAL₃ +18189 SILA₃ +18201 TI +DIŠ +KIMIN +18205 IGI +18207 PA +18209 ŠE +NU₂ +A +18213 TEŠ₂ +BI +GAZ +SIM +18220 DIŠ +KIMIN +18223 HAŠHUR +18227 DIŠ +NA +SAG +KI +DAB +BA +TUKU +TUKU +18237 AN +ZAH +GE₆ +18241 DIŠ +KIMIN +18247 TEŠ₂ +BI +18257 U₂ +HI +A +18264 EN₂ +UR +SAG +18268 ASAL +LU₂ +HI +18273 ŠID +18275 DIŠ +NA +SAG +KI +DAB +18282 IGI +MIN +18286 DIŠ +18288 SUD₂ +18290 KAŠ +18292 DIŠ +NA +SAG +KI +18299 ZAG +18302 GUB₃ +18305 IGI +MIN +18315 DIŠ +NA +SAG +KI +ME +18321 ZI +MEŠ +18327 ARA₃ +MEŠ +18331 KUŠ +MUŠ +GE₆ +HAD₂ +DU +18337 DIŠ +NA +SAG +KI +DAB +18365 IGI +18371 KAŠ +DU₁₀ +GA +NAG +MEŠ +18394 KEŠDA +18396 A +RI +A +NAM +LU₂ +U₁₈ +LU +18416 SUD₂ +18418 I₃ +18420 EREN +HI +HI +ŠEŠ₂ +MEŠ +18426 TI +18434 SA +GU₂ +MEŠ +18438 GU₇ +MEŠ +18441 ŠU +GIDIM +MA +18456 GI +ŠUL +HI +GAZ +SIM +18462 A +GAZI +18467 LAL +18469 DIŠ +NA +18478 UTU +E₃ +EN +EN +NUN +UD +ZAL +LI +GU₇ +18490 UŠ₂ +DIŠ +NA +18498 ŠA₃ +ŠA₃ +GU₃ +GU₃ +18503 ŠU +GIDIM +MA +18512 UŠ₂ +DIŠ +NA +SAG +KI +DAB +BA +18522 BURU₈ +KI +NA₂ +18530 UŠ₂ +DIŠ +NA +SAG +KI +DAB +BA +18540 GU₃ +GU₃ +18543 SA +SAG +KI +18557 UŠ₂ +18565 SAG +KI +DAB +BA +KAM₂ +EN +SA +GU₂ +AL +TIL +18577 SAG +KI +DAB +BA +ŠU +GIDIM +MA +18585 SU +NA +18592 NU +DU₈ +DUB +18596 KAM₂ +DIŠ +NA +UGU +18601 KUM₂ +18604 E₂ +GAL +18607 AN +ŠAR₂ +DU₃ +A +LUGAL +ŠU₂ +MAN +KUR +AN +ŠAR₂ +18620 AG +18626 GEŠTU +MIN +18640 IGI +MIN +18653 LUGAL +MEŠ +18675 TA +18678 EN +UMBIN +18682 BAR +MEŠ +18715 IGI +KAR₂ +18729 E₂ +GAL +18734 NA +BI +GIDIM +IM +RI +A +18741 DAB +18745 ŠE +LI +BABBAR +18758 A +ŠIM +HI +A +GAR +18768 NITA +NINDA +GID₂ +DA +18774 I₃ +18776 ŠEŠ +18778 SAG +KI +18781 ŠUB +18785 KIMIN +18787 EREN +18789 ŠUR +MIN₃ +GI +DUG₃ +GA +18796 U₂ +HI +A +ŠEŠ +UR +BI +18803 KAŠ +SAG +18806 PEŠ₁₀ +18808 ID₂ +18813 ID₂ +18825 DIŠ +NA +18828 DAB +18830 ŠU +GIDIM +MA +GEŠTU +MIN +18843 MAŠ +18846 ANŠE +KUR +RA +ZI₃ +18851 MUD₂ +MUŠ +18854 GUD₃ +A +RI +A +18859 ŠU +SI +MEŠ +18864 GEŠTU +MIN +18874 TAB +18884 EGIR +18886 KA +18890 SI +GU₄ +18893 DIŠ +NA +GIDIM +DAB +18899 GEŠTU +MIN +18907 BAL +GI +DUG₃ +GA +18912 GUR₂ +GUR₂ +GAZI +18918 ANŠE +KUR +RA +PAP +18923 U₂ +MEŠ +18928 GEŠTU +MIN +18937 MUD +UD +KA +BAR +18942 DIŠ +NA +ŠU +GIDIM +MA +DAB +18950 GEŠTU +MIN +18958 ŠEŠ +18960 EŠ₃ +ME +KAM₂ +18964 AŠ +GI₃ +GI₃ +18968 SUD₂ +18971 AKA₃ +NIGIN +18975 MUD₂ +18977 EREN +SUD +EN₂ +18984 ŠID +18987 EN₂ +18995 IM +MA +AN +NA +AN +KI +A +NA₄ +19007 NA₄ +19012 NA₄ +19016 NA₄ +19021 TU₆ +EN₂ +19024 EN₂ +19031 UGU +19034 ŠID +19037 ŠA₃ +GEŠTU +MIN +19041 GAR +19044 KIMIN +19046 GUR₂ +GUR₂ +19049 HAR +HAR +19052 KUR +KUR +19058 IGI +19061 IGI +19066 ZA₃ +HI +LI +SUD₂ +19071 I₃ +19073 EREN +HI +HI +19078 AKA₃ +NIGIN +19081 ŠA₃ +GEŠTU +MIN +19085 GAR +19091 KIMIN +GI +DUG₃ +19095 I₃ +GIŠ +SUD₂ +19099 ŠA₃ +GEŠTU +MIN +19103 GAR +19106 KIMIN +19108 ŠEŠ +19110 AŠ₂ +GI₄ +GI₄ +19114 ZA +GIN₃ +19117 SIG₇ +SIG₇ +19121 SUD₂ +19123 I₃ +19125 EREN +HI +HI +19129 ŠA₃ +GEŠTU +MIN +19133 ŠUB +UZU +MIN +19137 ŠEŠ₂ +DIŠ +NA +19141 DAB +19143 ŠU +GIDIM +MA +GEŠTU +MIN +19153 NUMUN +19158 NUMUN +19160 MA +NU +19165 NITA₂ +19167 MUNUS +19170 ANŠE +KUR +RA +19174 NIG₂ +DARA₂ +ŠU +LAL₂ +19179 NE +GEŠTU +MIN +19186 DIŠ +NA +19189 DAB +19191 ŠU +GIDIM +MA +GEŠTU +MIN +19201 SUHUŠ +19203 MA +NU +19209 NIG₂ +DARA₂ +ŠU +LAL₂ +19214 NE +ŠA₃ +GEŠTU +MIN +19219 SAR +19221 GUR₂ +GUR₂ +19224 LI +19226 ŠEŠ +19228 EREN +GI +DUG₃ +GA +19233 MUG +GAZI +19237 KAL +GUG +19240 U₂ +HI +A +19244 GUR +19246 GEŠTU +MIN +19249 NE +ŠA₃ +GEŠTU +MIN +19254 SAR +19258 SI +DARA₃ +MAŠ +GIR₃ +PAD +DU +NAM +LU₂ +U₁₈ +LU +KA +19271 GIR₃ +PAD +DU +UGU +DUL +BI +19278 KUR +RA +19281 NE +ŠA₃ +GEŠTU +MIN +19293 KU₆ +SUHUŠ +19296 MA +NU +19301 ANŠE +KUR +RA +19305 NIG₂ +DARA₂ +ŠU +LAL₂ +19310 NE +19312 KIŠI₁₆ +ŠA₃ +GEŠTU +MIN +19320 SI +DARA₃ +MAŠ +19328 KUR +RA +19333 KA +19339 GIR₃ +PAD +DU +NAM +LU₂ +U₁₈ +LU +19347 NE +19349 KIŠI₁₆ +ŠA₃ +GEŠTU +MIN +19354 SAR +DIŠ +NA +GEŠTU +MIN +19364 MUD₂ +19366 EREN +19372 GUR₂ +GUR₂ +19376 AKA₃ +NIGIN +19380 ŠA₃ +A +MEŠ +ŠUB +19386 NE +SEG₆ +19390 ŠA₃ +GEŠTU +MIN +19394 GAR +19396 TI +DIŠ +NA +GEŠTU +MIN +19406 MUD₂ +19408 EREN +KI +A +19412 NU +UR₂ +MA +HI +HI +19419 ŠA₃ +GEŠTU +MIN +19423 ŠUB +19425 TI +19461 TU₆ +EN₂ +19503 TU₆ +EN₂ +19506 KA +INIM +MA +DIŠ +NA +GEŠTU +MIN +19518 DU₃ +DU₃ +BI +19522 ŠEŠ +19524 EŠ₃ +ME +KAM₂ +19528 AŠ₂ +GI₄ +GI₄ +SUD₂ +19535 MUD₂ +19537 EREN +HI +HI +EN₂ +19544 ŠA₃ +ŠID +19548 AKA₃ +NIGIN +19552 ŠA₃ +GEŠTU +MIN +19556 GAR +19558 EN₂ +19567 IM +MA +NA +AN +KI +A +19581 TU₆ +EN₂ +19584 KA +INIM +MA +DIŠ +NA +GEŠTU +MIN +19596 DU₃ +DU₃ +BI +19600 ŠEŠ +19602 EŠ₃ +ME +KAM₂ +19606 AŠ₂ +GI₄ +GI +19613 I₃ +HI +HI +19617 MUL +19620 EN₂ +19624 ŠA₃ +ŠID +19628 AKA₃ +NIGIN +19631 ŠA₃ +GEŠTU +MIN +19635 GAR +19680 KA +INIM +MA +DIŠ +NA +GEŠTU +MIN +19692 DU₃ +DU₃ +BI +19696 EŠ₃ +ME +KAM₂ +19702 ŠEŠ +19707 UR +BI +SUD₂ +19711 MUD₂ +19713 EREN +HI +HI +EN₂ +19720 ŠA₃ +ŠID +19725 AKA₃ +NIGIN +19729 ŠA₃ +GEŠTU +MIN +19733 GAR +19735 EN₂ +19781 KA +INIM +MA +DIŠ +NA +GEŠTU +MIN +19796 ŠA₃ +GEŠTU +ZAG +19803 ŠA₃ +GEŠTU +GUB₃ +19807 MU₂ +19915 KA +INIM +MA +DIŠ +NA +GEŠTU +MIN +19930 ŠA₃ +GEŠTU +ZAG +19937 ŠA₃ +GEŠTU +GUB₃ +19941 ŠID +19982 KA +INIM +MA +DIŠ +NA +GEŠTU +MIN +19997 ŠA₃ +GEŠTU +ZAG +20039 KA +INIM +MA +DIŠ +NA +GEŠTU +MIN +20054 ŠA₃ +GEŠTU +GUB₃ +20070 DIŠ +NA +GEŠTU +MIN +20075 GU₇ +MEŠ +20084 I₃ +GIŠ +20091 AKA₃ +SUD +20100 ŠA₃ +GEŠTU +MIN +20104 GAR +20106 DIŠ +NA +GIG +20110 GIG +20113 ŠA₃ +GEŠTU +MIN +20124 DUGUD +20126 GIN₂ +A +20129 NU +UR₂ +MA +20133 GIN₂ +A +20136 GIG +I₃ +20142 HI +HI +20145 AKA₃ +SUD +20148 ŠA₃ +GEŠTU +MIN +20152 GAR +20154 UD +20156 KAM₂ +20159 DU₃ +20162 UD +20164 KAM₂ +LUGUD +20167 ŠA₃ +GEŠTU +MIN +20171 E₁₁ +20176 GIM +MUD₂ +BABBAR +20183 IM +SAHAR +NA₄ +KUR +RA +SUD₂ +20190 GI +SAG +KUD +20194 ŠA₃ +GEŠTU +MIN +20198 MU₂ +20200 DIŠ +NA +KUM₂ +20204 ŠA₃ +GEŠTU +MIN +20215 DUGUD +20218 IR +20221 I₃ +GIŠ +20227 I₃ +GIŠ +GI +DUG₃ +GA +20233 SAG +DU +20236 ŠUB +20239 AKA₃ +SUD +20248 ŠA₃ +GEŠTU +MIN +20252 GAR +20257 BAD +20266 ŠA₃ +NU +ŠUB +20270 NINDA +ZIZ₂ +AN +NA +GU₇ +DIŠ +NA +20283 KUM₂ +20285 ŠA₃ +GEŠTU +MIN +20293 GEŠTU +MIN +20296 DUGUD +I₃ +KUR +GI +20302 ŠA₃ +GEŠTU +MIN +20306 ŠUB +20314 SUHUŠ +20316 NAM +TAR +NITA₂ +20323 ŠA₃ +GEŠTU +MIN +20327 ŠUB +20331 DIŠ +NA +GEŠTU +MIN +20336 GIM +20338 ŠU +GIDIM +MA +GU₇ +MEŠ +20344 SIG₃ +MEŠ +20347 I₃ +GIŠ +20350 GIG +I₃ +GIŠ +GI +DUG₃ +GA +I₃ +GIŠ +20359 LI +20368 HI +HI +20371 ŠA₃ +GEŠTU +MIN +20375 ŠUB +LAG +20382 AKA₃ +NIGIN +20385 ŠA₃ +GEŠTU +MIN +20389 GAR +DIDA +SIG₅ +ZI₃ +GU₂ +GAL +ZI₃ +GU₂ +TUR +ZI₃ +ZIZ₂ +AM₃ +ZI₃ +GAZI +20404 ZI₃ +20409 KAŠ +20412 LAL +TI +20415 DIŠ +NA +GEŠTU +MIN +20420 GIG +20422 ŠA₃ +GEŠTU +MIN +20429 SIG₃ +MEŠ +20432 GIR₂ +GIR₂ +20441 GU₇ +20445 NA₂ +20448 LI +20450 GUR₂ +GUR₂ +20453 GIR₂ +20455 BAL +GAZI +20458 IM +KAL +LA +IM +KAL +GUG +20466 GAZ +SIM +20469 NE +20472 GIR₂ +ŠA₃ +GEŠTU +MIN +20477 SAR +20484 UD +20486 KAM₂ +20489 DU₃ +20493 UD +20495 KAM₂ +ŠA₃ +GEŠTU +MIN +20504 GIM +LUGUD +20510 IM +SAHAR +NA₄ +KUR +RA +SUD₂ +20518 SAG +KUD +20521 ŠA₃ +GEŠTU +MIN +20525 MU₂ +20527 DIŠ +NA +20530 GEŠTU +MIN +20533 MUD₂ +BABBAR +DU +20537 MUD₂ +ELLAG₂ +GU₄ +20541 MUD₂ +20543 EREN +20546 HI +HI +20549 ŠA₃ +GEŠTU +MIN +20553 BI +IZ +20557 ŠA₃ +GEŠTU +MIN +20561 BI +IZ +A +20569 ŠA₃ +GEŠTU +MIN +20573 BI +IZ +A +20577 NU +UR₂ +MA +20581 I₃ +20583 EREN +HI +HI +20587 ŠA₃ +GEŠTU +MIN +20591 BI +IZ +20599 ANŠE +20604 GU₂ +MURGU₂ +ANŠE +20608 I₃ +20610 EREN +HI +HI +20614 AKA₃ +NIGIN +20618 ŠA₃ +GEŠTU +MIN +20622 GAR +20624 I₃ +20626 BULUH +20628 LI +ZI₂ +BIL +ZA +ZA +20634 ŠA₃ +GEŠTU +MIN +20638 BI +IZ +20646 I₃ +KUR +GI +20650 HI +HI +20653 GEŠTU +MIN +20656 BI +IZ +20661 ZI₃ +KUM +HI +HI +20666 GEŠTU +MIN +20669 GAR +20677 GI +SAG +KUD +20681 ŠA₃ +GEŠTU +MIN +20685 MU₂ +20687 GAZI +20691 ŠE +SA +A +20698 GI +SAG +KUD +20702 ŠA₃ +GEŠTU +MIN +20706 MU₂ +20712 MI +PAR₃ +20716 SUD₂ +20718 ŠA₃ +GEŠTU +MIN +20722 MU₂ +20739 A +20742 ŠA₃ +GEŠTU +MIN +20746 BI +IZ +20754 ANŠE +20763 HI +HI +20766 ŠA₃ +GEŠTU +MIN +20770 GAR +20773 NAGA +SI +KUG +GAN +NITA₃ +20779 MUNUS +20781 AKA₃ +NIGIN +20784 ŠA₃ +GEŠTU +MIN +20788 GAR +20790 SUM +SIKIL +SAR +20797 ŠA₃ +GEŠTU +MIN +20804 DIŠ +NA +GEŠTU +MIN +20809 MUD₂ +BABBAR +20815 A +20817 NU +UR₂ +MA +20821 ŠA₃ +GEŠTU +MIN +20825 BI +IZ +U₂ +BABBAR +SUD₂ +20831 GI +SAG +KUD +ŠA₃ +GEŠTU +MIN +20838 MU₂ +20840 I₃ +20842 EREN +I₃ +20845 MUG +GAMUN +20848 SUD₂ +20850 I₃ +NUN +HI +HI +20855 AKA₃ +NIGIN +20859 ŠA₃ +GEŠTU +MIN +20863 GAR +20865 GAMUN +GI₆ +20868 ŠEŠ +I₃ +KU₆ +U₂ +KUR +RA +20876 HI +HI +20879 ŠA₃ +GEŠTU +MIN +20883 GAR +20885 ZI₂ +ŠAH +20888 ZI₃ +KUM +HI +HI +20893 AKA₃ +NIGIN +20897 ŠA₃ +GEŠTU +MIN +20901 GAR +20903 ŠIKA +20905 NU +UR₂ +MA +HAD₂ +A +SUD₂ +20912 ŠA₃ +GEŠTU +MIN +20916 MU₂ +20921 EREN +20925 BIL +ZA +ZA +20930 SUD₂ +20932 ŠA₃ +GEŠTU +MIN +20936 MU₂ +I₃ +20939 ŠUR +MIN₃ +20942 AKA₃ +SUD +20945 ŠA₃ +GEŠTU +MIN +20949 GAR +U₂ +KUR +RA +LA +20955 SUD₂ +20957 ŠA₃ +GEŠTU +MIN +20961 GAR +20963 KAŠ +20966 KURUN +U₂ +BABBAR +20973 ŠA₃ +GEŠTU +MIN +20977 GAR +20979 IM +SAHAR +NA₄ +KUR +RA +SUD₂ +20986 ŠA₃ +GEŠTU +MIN +20990 MU₂ +20992 PA +20996 PA +20998 U₃ +SUH₅ +21001 NE +SAR +21006 I₃ +KUR +GI +21012 GI₃ +21015 ZI₂ +BIL +ZA +ZA +21020 GEŠTU +MIN +21023 GAR +21027 NU +UR₂ +MA +21031 GAR +21035 HAR +21037 SAR +21046 DIŠ +GEŠTU +MIN +21055 GUR₂ +GUR₂ +21058 A +21060 NU +UR₂ +MA +21068 NE +21070 ŠINIG +21075 TI +DIŠ +KUG +GAN +SUD₂ +21081 ŠA₃ +GEŠTU +MIN +21089 TI +21091 KIMIN +GAZI +21094 GIM +ŠE +SA +A +21101 SUD₂ +21103 ŠA₃ +GEŠTU +MIN +21111 TI +DIŠ +NA +MUD₂ +BABBAR +21117 ŠA₃ +GEŠTU +MIN +21121 DU +21123 A +21125 NU +UR₂ +MA +I₃ +GIŠ +BARA₂ +GA +I₃ +21134 EREN +HI +HI +21138 A +21140 BULUH +21142 LI +ZI₂ +BIL +ZA +ZA +SIG₇ +21149 ŠA₃ +GEŠTU +MIN +21153 BI +IZ +ŠE +GI₆ +21158 MUD₂ +NIM +21162 HI +HI +21165 ŠA₃ +GEŠTU +MIN +21169 BI +IZ +TI +DIŠ +NA +21175 ŠA₃ +GEŠTU +21179 A +MEŠ +21182 MUD₂ +21184 MUD₂ +BABBAR +DU +21188 ŠA₃ +GEŠTU +MIN +21197 GI +SAG +KUD +DUB +ŠA₃ +GEŠTU +MIN +21205 LUH +21207 GUR +21209 A +GEŠTIN +NA +BIL +LA₂ +21215 ŠA₃ +GEŠTU +MIN +21219 BI +IZ +21224 SUD₂ +21226 LAL₃ +HI +HI +21230 ŠA₃ +GEŠTU +MIN +21234 DUB +21236 AKA₃ +NIGIN +LAL₃ +KUR +U₂ +BABBAR +21247 KIMIN +NUMUN +21250 NU +LUH +HA +21254 AKA₃ +NIGIN +21258 ŠA₃ +GEŠTU +MIN +21262 GAR +21265 KIMIN +NUMUN +21268 GUR₂ +GUR₂ +SUD₂ +21272 AKA₃ +NIGIN +21276 ŠA₃ +GEŠTU +MIN +21280 GAR +21283 KIMIN +GAZI +21289 SUD₂ +21291 AKA₃ +NIGIN +21295 ŠA₃ +GEŠTU +MIN +21299 GAR +21301 DIŠ +NA +GEŠTU +ZAG +21307 KUM₂ +21311 NA +BI +21316 UTU +21320 KIN +21322 DUG₄ +GA +21325 GIŠ +TUK +GAR +21334 I₃ +GIŠ +ŠUR +MIN₃ +I₃ +GIŠ +21341 GIG +21345 I₃ +BUR +21349 SAG +DU +21352 ŠUB +21355 UD +21357 KAM₂ +GUR +GUR +21362 TI +DIŠ +NA +GEŠTU +GUB₃ +21369 KUM₂ +21371 MIN +NA +BI +21379 KIN +21381 DUG₄ +GA +21384 GIŠ +TUK +GAR +21392 I₃ +GIŠ +21395 I₃ +GIŠ +21398 GIG +SUD₂ +21401 AKA₃ +NIGIN +21405 ŠA₃ +GEŠTU +MIN +21409 GAR +21411 I₃ +BUR +21416 SAG +DU +21419 ŠUB +21423 LI +21427 UD +21429 KAM₂ +GUR +GUR +21434 TI +DIŠ +NA +GEŠTU +21440 NA +BI +21445 UTU +KIN +21448 DUG₄ +GA +21451 GIŠ +TUK +GAR +21456 I₃ +GIŠ +21459 LI +SUD₂ +21462 AKA₃ +NIGIN +21466 ŠA₃ +GEŠTU +MIN +21470 GAR +21472 I₃ +BUR +21477 SAG +DU +21480 ŠUB +21486 NINDA +ZIZ₂ +AM₃ +GU₇ +MIN +21492 UD +21494 KAM₂ +GUR +GUR +21499 TI +DIŠ +21502 NA +BI +21508 KIN +21511 ITI +ŠAG₅ +GA +IGI +21517 SUD₂ +21519 AKA₃ +NIGIN +21523 ŠA₃ +GEŠTU +MIN +21527 GAR +I₃ +BUR +21533 SAG +DU +21536 ŠUB +21539 UD +21541 KAM₂ +GUR +GUR +21546 TI +21548 DIŠ +21550 GIG +UD +DA +GIG +NA +BI +ZI +GA +21560 SIG₅ +IGI +21564 TI +21567 I₃ +GIŠ +ŠUR +MIN₃ +21572 SAG +DU +21575 ŠUB +21578 UD +21580 KAM₂ +GUR +GUR +21585 TI +21587 DIŠ +NA +GEŠTU +MIN +21592 IR +21605 UD +21607 KAM₂ +ESIR +21614 I₃ +GIŠ +21617 GIG +21619 AKA₃ +NIGIN +21623 ŠA₃ +GEŠTU +MIN +21627 GAR +21629 I₃ +21632 SAG +DU +21635 ŠUB +21641 GU₇ +MIN +21644 KAŠ +NAG +MIN +UD +21649 KAM₂ +GUR +GUR +21654 TI +DIŠ +NA +GEŠTU +ZAG +21660 IR +21675 NE +GAL₂ +21678 NA +BI +21684 KIN +21686 SIG₅ +IGI +21690 TI +21692 GADA +21696 I₃ +GIŠ +ŠUR +MIN₃ +I₃ +GIŠ +EREN +SUD +21705 ŠA₃ +GEŠTU +MIN +21709 GAR +21713 SAG +DU +21716 ŠUB +21721 GU₇ +MIN +21724 HAR +HAR +21727 KAŠ +NAG +MIN +UD +21732 KAM₂ +GUR +GUR +21737 TI +21739 DIŠ +NA +GEŠTU +GUB₃ +21744 IR +21752 MUD₂ +BABBAR +ŠUB +21756 NA +BI +21761 EŠ₄ +DAR +KIN +21765 SIG₅ +IGI +21776 IGI +21779 TI +21781 I₃ +GIŠ +21784 EREN +I₃ +GIŠ +I₃ +GIŠ +21790 ŠUR +MIN₃ +I₃ +GIŠ +21795 BAL +I₃ +GIŠ +GI +DUG₃ +GA +I₃ +GIŠ +21804 GIG +21806 HE₂ +ME +DA +SUD +21811 ŠA₃ +GEŠTU +21814 GAR +I₃ +GIŠ +21818 GIG +21820 SAG +DU +21823 ŠUB +21827 GU₇ +MIN +KAŠ +NAG +MIN +UD +21834 KAM₂ +GUR +GUR +21839 TI +DIŠ +NA +GEŠTU +21844 GU₃ +GU₃ +21847 IM +21851 MUD₂ +BABBAR +DU₃ +21860 KIN +21863 A +21865 NU +UR₂ +MA +SIG₇ +SIG₇ +RA +21872 I₃ +GIŠ +SUD +21878 SUD₂ +21880 SAG +KI +MEŠ +21884 ŠUB +DUG₃ +IGI +21889 KIMIN +MUN +SUD₂ +21893 AKA₃ +NIGIN +I₃ +GIŠ +ŠUR +MIN₃ +SUD +21901 ŠA₃ +GEŠTU +MIN +21905 GAR +21907 I₃ +GIŠ +ŠUR +MIN₃ +21912 SAG +KI +MEŠ +21916 ŠUB +21919 GU₇ +21921 NAG +UD +21924 KAM₂ +21927 DU₃ +21930 DUG₃ +IGI +21934 KIMIN +21936 LI +SUD₂ +21939 AKA₃ +NIGIN +21942 ŠA₃ +GEŠTU +MIN +21946 GAR +21948 I₃ +ILLU +21951 BULUH +21953 SAG +KI +MEŠ +21957 ŠUB +21961 KI +NINDA +ZIZ₂ +AM₃ +GU₇ +MEŠ +21972 DU₃ +DU₃ +21975 DUG₃ +IGI +21979 KIMIN +I₃ +21982 EREN +NA +SIG₂ +GA +RIG₂ +AK +A +SUD +21991 ŠA₃ +GEŠTU +MIN +21995 GAR +22000 SAG +KI +MEŠ +22004 ŠUB +ŠUB +22010 KIMIN +I₃ +22013 EREN +I₃ +GIŠ +ŠUR +MIN₃ +SIG₂ +GA +RIG₂ +AK +A +SUD +22025 ŠA₃ +GEŠTU +MIN +22029 GAR +22033 SAG +KI +MEŠ +22037 ŠUB +MEŠ +22040 HAR +HAR +GU₇ +22044 NAG +UD +22047 KAM₂ +22050 DU₃ +22053 DUG₃ +IGI +22056 DIŠ +NA +GEŠTU +ZAG +22061 DUGUD +ŠUM +ŠIR +AŠ +22070 ŠA₃ +GEŠTU +22073 GAR +22075 PA +22077 ŠINIG +SIG₇ +22080 SUD₂ +22082 ZI₃ +KUM₃ +HI +HI +22087 ŠA₃ +GEŠTU +22090 GAR +22093 EREN +22095 LI +GAMUN +GI₆ +SUM +22100 SUD₂ +22102 I₃ +NUN +HI +HI +22107 AKA₃ +SUD +22110 ŠA₃ +GEŠTU +22113 GAR +22115 I₃ +GIŠ +ŠUR +MIN₃ +22120 AKA₃ +SUD +22123 ŠA₃ +GEŠTU +22126 GAR +22129 HAB +I₃ +ŠAH +PA +22134 MAŠ +HUŠ +SIG₂ +22138 AŠ₂ +GAR₃ +GIŠ₃ +NU +ZU +22146 AKA₃ +NIGIN +22150 ŠA₃ +GEŠTU +22153 GAR +22155 I₃ +GIŠ +22161 AKA₃ +SUD +22164 ŠA₃ +GEŠTU +22167 GAR +22169 MUD₂ +22171 NIN +KILIM +EDEN +NA +KI +I₃ +22178 EREN +I₃ +22181 ŠUR +MIN₃ +HI +HI +22186 ŠA₃ +GEŠTU +22189 GAR +22191 A +22193 NU +UR₂ +MA +AN +ZAH +GI₆ +22204 ŠA₃ +GEŠTU +22207 GAR +22209 BURU₅ +HABRUD +DA +NITA +SAG +DU +22216 KUD +22218 MUD₂ +MEŠ +KUM₂ +22222 ŠA₃ +GEŠTU +22228 DIŠ +NA +GEŠTU +GUB₃ +22233 DUGUD +22235 ŠEŠ +22237 GIG +SUD₂ +22240 LAL₃ +KUR +22243 I₃ +UDU +UR +MAH +22248 EGIR +22250 DILIM₂ +A +BAR +22254 I₃ +GIŠ +22258 I₃ +GIŠ +EREN +ŠE +MUŠ₅ +22274 U₂ +BABBAR +22282 DAB +22284 ZI₃ +22287 GEŠTU +22294 ZI₃ +22298 LAL +22303 ŠA₃ +GEŠTU +22306 ŠUB +I₃ +GIŠ +22310 KA +22313 ŠA₃ +GEŠTU +22321 DUB +22326 AŠGAB +22328 U₂ +BABBAR +22333 ŠA₃ +GEŠTU +22336 MU₂ +22338 DIŠ +NA +GEŠTU +MIN +22343 DUGUD +22345 GIN₂ +A +22348 NU +UR₂ +MA +22352 GIN₂ +A +22355 GIG +22358 AKA₃ +SUD +22361 ŠA₃ +GEŠTU +22364 GAR +22371 DU₃ +DU₃ +22375 UD +22377 KAM₂ +22381 ŠA₃ +GEŠTU +MIN +22388 IM +SAHAR +NA₄ +KUR +RA +SUD₂ +22396 SAG +KUD +22399 ŠA₃ +GEŠTU +MIN +22403 MU₂ +22410 NAM +TAR +NITA₂ +22419 ŠU +TI +SIG₇ +22423 SUD₂ +A +22431 BAD +22434 HAB +I₃ +ŠAH +KA +A +AB +BA +22443 AŠ₂ +GAR₃ +GIŠ₃ +NU +ZU +22450 SUD₂ +22453 ŠA₃ +GEŠTU +MIN +22457 ŠUB +SUM +SIKIL +PA +22462 PEŠ₃ +22472 ZAG +HI +LI +NINDA +ZIZ₂ +AN +NA +22481 KAŠ +NAG +22485 BAR +SI +22490 DUL +22493 DUB +22495 UD +22497 KAM₂ +SAR +SAR +22501 TI +22504 ŠA₃ +GEŠTU +MIN +22508 ŠUB +22512 ŠA₃ +GEŠTU +MIN +22516 ŠUB +22520 ŠA₃ +GEŠTU +MIN +22524 ŠUB +22527 HI +HI +22530 ŠA₃ +GEŠTU +MIN +22540 ŠA₃ +GEŠTU +MIN +22544 GAR +22548 ŠA₃ +GEŠTU +MIN +22557 ŠA₃ +GEŠTU +MIN +22561 ŠUB +22565 DIŠ +NA +ZU₂ +MEŠ +22570 GIG +MUŠ +DIM₂ +GURUN +NA +22576 EDIN +NA +U₅ +MEŠ +22581 BABBAR +22583 ŠA₃ +22586 AKA₃ +NIGIN +22589 I₃ +22592 SUHUŠ +22594 NAM +TAR +NITA₂ +SUHUŠ +22599 KUR +RA +22602 U₂ +BABBAR +ILLU +22606 BULUH +A +GEŠTIN +NA +22616 UGU +ZU₂ +22619 GAR +22623 IM +SAHAR +NA₄ +KUR +RA +22633 BULUH +ZU₂ +LUM +MA +22638 PA +22640 SIKIL +22647 IM +SAHAR +NA₄ +KUR +RA +22678 KUM₂ +22684 KIMIN +22692 KIMIN +ZI₃ +SAHAR +MUNU₆ +22697 DUB +22700 DIŠ +NA +ZU₂ +22704 GU₇ +22707 KIMIN +BIL +ZA +ZA +SIG₇ +ZI₂ +22716 KIMIN +BIL +ZA +ZA +SIG₇ +ZI₂ +22725 KIMIN +22730 SILA₃ +22736 GAR +22739 GAR +22742 GAR +22749 DUB +22752 TIN +22761 TI +22763 TI +22765 TI +22767 TI +22769 LA +22771 GABA +22773 GAR +22776 DUB +22779 GAR +22782 DUB +22785 TI +22790 DIŠ +NA +ZU₂ +22795 NIGIN +I₃ +GIŠ +SUD +22801 KIMIN +ZI₃ +22807 KIMIN +MAŠ₂ +22811 KIMIN +22815 I₃ +22818 KIMIN +22821 KIMIN +22824 ŠU +22832 KIMIN +22834 SAR +22848 I₃ +22852 AKA₃ +22857 KIMIN +MUŠ +DIM₂ +GURUN +NA +22863 EDIN +I₃ +UDU +22869 KA +GI +NA +22874 PAD +22879 KIMIN +22882 GAZ +22892 AD +BAR +22904 UGU +ZU₂ +22907 GAR +22910 GIM +A +22914 UGU +ZU₂ +22917 ŠUB +22927 EN +TI +NU +MAR +22932 TI +22934 KIMIN +22939 NAM +TAR +NITA₂ +22947 A +22950 UGU +ZU₂ +22953 GIG +ŠUB +22956 KIMIN +22966 AKA₃ +NIGIN +22969 I₃ +SUD +22972 ŠA₃ +GEŠTU +22976 ZU₂ +22978 GIG +ŠUB +22981 KIMIN +22983 GAMUN +GE₆ +22988 UGU +ZU₂ +22991 GAR +22994 KIMIN +22996 KUR +KUR +23001 UGU +ZU₂ +23004 ŠEŠ₂ +EN₂ +23018 AN +23025 KI +23027 KI +23034 KI +23048 KALAG +23050 DAB +23052 GIM +UR +MAH +23063 UR +BAR +RA +23081 UZU +MUR +23086 ZU₂ +MEŠ +23092 GU +ZA +23112 ERI +23123 KI +23132 UBUR +23134 AMA +23142 GUR +23149 E₂ +GAL +23159 EN₂ +23162 EN₂ +23170 UTU +A +KUG +GA +ŠUB +ŠUB +EN₂ +23182 ŠID +23187 ŠID +23189 LAGAB +MUNU₆ +ZU₂ +23193 DIRI +23196 UGU +23204 GIG +ZU₂ +MU +23211 DUG₃ +GA +23214 TI +EN₂ +23223 IG +UZU +23226 SAG +KUL +GIR₃ +PAD +DU +23240 GIR₃ +PAD +DU +UGU +ZU₂ +23248 KUM₂ +23250 UGU +SAG +DU +23264 IBILA +23266 KUR +RA +23269 AMAR +UTU +23290 TU₆ +EN₂ +DU₃ +DU₃ +BI +23299 IM +KI +GAR +DU₃ +23304 ŠID +MEŠ +ZU₂ +MEŠ +23315 KI +ZU₂ +23318 GIG +23320 ZIZ₂ +AN +NA +GI₆ +23327 I₃ +GIŠ +ZU₂ +23331 DIRI +23333 ŠA₃ +23337 MU₂ +23339 EN₂ +23342 ŠID +23345 HABRUD +23348 UTU +ŠU₂ +A +GAR +23354 IM +IN +BUBBU +UŠ₂ +23361 KIŠIB +23363 ŠUBA +23366 KA +GI +NA +KA₂ +23374 EN₂ +IBILA +E₂ +MAH +IBILA +E₂ +MAH +IBILA +GAL +23390 TA +E₂ +KUR +23398 MURUB₄ +AN +23401 KI +23403 MAR +GID₂ +DA +GUB +23409 DUG₄ +GA +23430 UR₅ +UŠ₂ +23433 UR₅ +NU +NAG +GU₇ +TU₆ +EN₂ +DU₃ +DU₃ +BI +23445 DU₃ +23448 ŠID +MEŠ +ZU₂ +MEŠ +23453 ZIZ₂ +AN +NA +23459 KI +ZU₂ +23462 GIG +23467 GI₆ +23471 LAL₃ +23473 I₃ +BARA₂ +GA +ZU₂ +23478 DIRI +23480 ŠA₃ +23484 MU₂ +23486 EN₂ +23489 ŠID +23491 HABRUD +23493 UTU +ŠU₂ +A +GAR +23512 MAN +TAG +23516 TA +NUMUN +23522 ŠA₃ +ZU₂ +23529 ZU₂ +23543 AN +ŠU₂ +BAR +GIN₇ +23548 A +EDIN +23554 ZU₂ +GIG +23557 EN₂ +ZU₂ +GIG +ZU₂ +GIG +23563 GIG +ZU₂ +23577 EN₂ +23605 ZU₂ +GIG +GA +KAM₂ +23610 EN₂ +23614 UGU +23616 ŠID +23619 EN₂ +23621 UTU +23624 ZU₂ +MU +23650 ZU₂ +23671 GIM +23675 ZU₂ +23678 GU₇ +23683 ZU₂ +23689 TU₆ +EN₂ +23694 ZU₂ +GIG +GA +KAM₂ +23704 ŠID +23707 EN₂ +TA +23710 A +23715 AN +23741 ZU₂ +GIG +GA +KAM +23759 EN₂ +ŠID +23764 UGU +ZU₂ +GAR +23772 EN₂ +23774 A +23801 KI +23809 ID₂ +MEŠ +23842 IGI +23844 UTU +23849 IGI +23851 E₂ +23885 PEŠ₃ +23895 HAŠHUR +23905 PEŠ₃ +23916 HAŠHUR +23926 ZU₂ +23964 ZU₂ +GIG +GA +KAM₂ +DU₃ +DU₃ +BI +KAŠ +DIDA +LAGAB +MUNU₆ +23977 HI +HI +EN₂ +23983 UGU +ŠID +23987 UGU +ZU₂ +23990 GAR +23992 EN₂ +24002 IG +UZU +24005 SAG +KUL +GIR₃ +PAD +DU +24011 UZU +24015 GIR₃ +PAD +DU +24023 UZU +24026 GIR₃ +PAD +DU +24031 ZU₂ +MEŠ +24036 LIL₂ +24039 SAG +DU +24044 KUM₂ +24056 DUMU +24062 E₂ +24071 TI +LA +EN₂ +TI +LA +24081 TU₆ +24086 EN₂ +24108 TI +LA +24111 NIG₂ +BA +24117 TU₆ +EN₂ +24122 ZU₂ +GIG +GA +KAM₂ +DU₃ +DU₃ +BI +NU +SAR +DIŠ +NA +24135 ZU₂ +MEŠ +24142 DUB +24144 KAM₂ +DIŠ +NA +ZU₂ +MEŠ +24150 GIG +E₂ +GAL +24154 AN +ŠAR₂ +DU₃ +A +24159 ŠU₂ +24161 KUR +AN +ŠAR₂ +24167 AG +24173 GEŠTU +MIN +24187 IGI +MIN +24200 LUGAL +MEŠ +24222 TA +24225 EN +UMBIN +24229 BAR +MEŠ +24262 IGI +KAR₂ +24277 E₂ +GAL +24290 IN₆ +UŠ₂ +24293 SIKIL +SIG₇ +24304 GIN₂ +ILLU +24307 BULUH +24309 GIN₂ +DUH +LAL₃ +24314 BUR +ZI +24322 DU₈ +24324 TA +DU₈ +24328 DIŠ +NA +I₃ +24334 ŠEŠ₂ +24336 SAG +DU +24342 DIRI +24344 LUH +24347 EGIR +24353 HAD₂ +A +GAZ +24357 DIŠ +KIMIN +24360 IGI +24362 SUD₂ +24365 DIŠ +KIMIN +24368 LAG +GA₂ +SUD₂ +24374 DIŠ +KIMIN +24377 TAL₂ +TAL₂ +24382 DIŠ +NA +SAG +DU +24388 UKUŠ₂ +HAB +24395 GE₆ +NIM +SUD₂ +24401 GA +RAŠ +24405 E +SIR +SUMUN +DIŠ +24410 HAD₂ +A +24415 AN +NA +A +BAR₂ +AN +ZAH +DIŠ +24423 HI +HI +24432 DIŠ +KIMIN +IM +SAHAR +NA₄ +KUR +RA +24440 LAG +GA₂ +SUD₂ +24444 I₃ +24446 EREN +HI +HI +24451 DIŠ +NA +24454 TUR +24456 SAG +DU +24462 DIRI +24464 SIG₂ +BABBAR +GE₆ +SAG +DU +BURU₅ +HABRUD +DA +24474 IGIRA₂ +24489 IZI +ŠEG₆ +24497 TI +24500 I₃ +24502 EN₂ +24517 EN₂ +24522 ŠID +24528 DIŠ +KIMIN +SI +DARA₃ +MAŠ +TI +24535 KI +GIR₃ +PAD +DU +24543 IZI +24547 KI +I₃ +24553 UD +24555 SAG +DU +24558 LAL₂ +24561 DIŠ +KIMIN +24564 MA₂ +ERIŠ₄ +MA₂ +24569 SAG +DU +ARGAB +24574 SAG +DU +BURU₅ +24578 GE₆ +SAG +DU +BURU₅ +HABRUD +DA +24585 SAG +DU +24588 DIŠ +24592 SUD₂ +24594 I₃ +GIŠ +DU₁₀ +GA +HI +HI +SAG +DU +24603 SAR +24608 DIŠ +KIMIN +24613 DINGIR +DAB +24616 ŠA₃ +24618 BAD +24620 TUN₂ +24630 ŠA₃ +24638 KI +24645 UD +24650 ŠA₃ +24652 TI +24654 HAD₂ +A +24658 SUD₂ +24660 I₃ +GIŠ +DU₁₀ +GA +24665 SAG +DU +24668 SAR +24671 UD +24673 EŠ +MEŠ +LAL₂ +MEŠ +24678 SIG₂ +BABBAR +GE₆ +EN +LAL₂ +24684 EN₂ +24688 ŠID +24691 DIŠ +NA +IGI +MEŠ +24696 LU₃ +LU₃ +LAL₃ +BABBAR +24701 I₃ +NUN +24705 HE +HE +24711 IGI +MIN +24722 ŠU +GIDIM +MA +24727 TI +24730 KA +GI +NA +DAB +BA +24736 AN +NA +24739 AN +ZAH +GE₆ +24747 ZALAG₂ +24749 ZA +GIN₃ +24752 ŠUBA +24754 BAL +URUDU +NITA +NA₄ +24759 NUMUN +24761 ŠINIG +NUMUN +24764 MA +NU +NUMUN +24769 NITA +24778 I₃ +UDU +ELLAG₂ +GU₄ +GE₆ +GIN₇ +24787 UGU +URUDU +SUD₂ +24792 DIŠ +KIMIN +NUMUN +24796 ŠINIG +NUMUN +24799 MA +NU +NUMUN +24804 NUMUN +24806 NUMUN +24808 LI +GIN₇ +24813 IGI +MIN +24817 SAG +KI +24820 DIŠ +NA +ŠU +GIDIM +MA +DAB +24830 IGI +IGI +MIN +24834 GIN₇ +24841 GIN₇ +24847 GIN₇ +UD₅ +GAR +GAR +24852 NA +BI +ŠU +GIDIM +MA +DAB +24862 LI +24864 GUR₂ +GUR₂ +24871 SUD₂ +24875 ILLU +LI +DUR +24881 ID₂ +24887 MAR +24889 MAR +24891 DIRI +24893 MAR +24900 ZU₂ +LUM +MA +24904 DIŠ +KIMIN +24907 ŠINIG +24909 EN₂ +24922 KA +INIM +MA +IGI +MIN +24930 IGI +MEŠ +24936 DU₃ +DU₃ +BI +24940 ŠE +ILLU +LI +DUR +24946 GE₆ +24948 UR₃ +24950 IGI +MUL +24962 UTU +E₃ +U₂ +HI +A +24974 ŠA₃ +ŠUB +24977 IGI +MIN +24980 MAR +EGIR +24983 DILIM₂ +A +BAR₂ +24987 DU₈ +24989 IGI +MIN +24996 A +GAZI +24999 IGI +MIN +25009 IGI +MIN +25012 ŠU +GIDIM +MA +25018 NA₄ +25021 AN +ZAH +BABBAR +25025 AN +ZAH +GE₆ +KU₃ +GAN +PA +25032 NAM +TAR +NITA₂ +PA +25037 PAP +25039 NA₄ +MEŠ +25042 U₂ +HI +A +ŠEŠ +25047 A +ŠUB +25051 UL +25056 I₃ +GIŠ +ŠUB +25060 IGI +MIN +25063 ŠEŠ₂ +25066 KAŠ +ŠUB +25070 NAG +25072 GU₂ +25075 KUŠ +GAR +25079 SILIM +25085 ITI +25087 KAM₂ +UD +25090 KAM₂ +DU₃ +25096 DIŠ +KIMIN +NA₄ +SA₅ +25105 IGI +MIN +25108 ŠEŠ₂ +25111 DIŠ +KIMIN +25117 KIMIN +DIŠ +KIMIN +25125 I₃ +NUN +SUD₂ +KIMIN +25130 DIŠ +KIMIN +25133 ZA +GIN₃ +KUR +RA +25138 I₃ +NUN +SUD₂ +KIMIN +DIŠ +KIMIN +25145 MUŠ +GIR₂ +KIMIN +25149 DIŠ +KIMIN +25156 GA +25158 U₂ +ZUG₂ +SUD₂ +IGI +MIN +25164 ŠEŠ₂ +25166 DIŠ +KIMIN +25169 ZU₂ +GE₆ +25172 I₃ +KUR +GI +SUD₂ +KIMIN +25178 GUR₂ +GUR₂ +25182 U₂ +25187 KUR +RA +GAZI +25191 I₃ +UDU +GI +MEŠ +25196 KA +GI +NA +DAB +BA +25204 I₃ +GIŠ +MUŠEN +HABRUD +LIBIR +RA +DUH +LAL₃ +25213 U₂ +HI +A +ŠEŠ +25220 ŠU +GIDIM +MA +IGI +MIN +25226 MAR +MEŠ +25229 TI +25234 U₄ +KAM +25237 UDU +SISKUR +DU₃ +25241 UZU +25245 UGU +25247 GIR₃ +PAD +DU +LUGUD₂ +DA +UDU +25255 GAMUN +GE₆ +A +25259 NU +UR₂ +MA +25267 HE +HE +25270 LAL₃ +I₃ +NUN +I₃ +GIŠ +EREN +SUD₂ +25280 DIŠ +NA +IGI +MIN +25289 NA +BI +UD +DA +TAB +BA +25296 GIN₂ +U₅ +ARGAB +25302 GIN₂ +U₂ +BABBAR +IGI +25307 GAL₂ +LA +25314 LAL₃ +KUR +25317 I₃ +NUN +SUD₂ +IGI +MIN +25323 MAR +DIŠ +NA +25329 IGI +MIN +25335 I₃ +UDU +MUŠ +GE₆ +25340 IN +NU +UŠ +ZU₂ +LUM +MA +25347 ŠINIG +I₃ +UDU +UR +MAH +ILLU +25357 UKUŠ₂ +LAGAB +25360 HAB +NAGA +SI +U₂ +BABBAR +25370 GAMUN +GE₆ +25376 SAHAR +URUDU +25379 LAL₃ +KUR +RA +HE +HE +SUD₂ +MAR +ZA +NA +25392 ESI +NAGA +SI +IGI +MIN +25398 LUH +25400 EGIR +25402 IGI +MIN +25405 MAR +25407 UD +25409 KAM₂ +25413 ŠUB +EN +25417 MAR +EGIR +25420 DILIM₂ +A +BAR₂ +25424 DU₈ +25428 LI +NAGA +SI +NU +LUH +HA +25440 SILA₁₁ +25442 LAL +25446 IGI +25457 SUD₂ +25461 UD +25465 KEŠDA +25469 IGI +MIN +25472 MAR +MEŠ +25475 TI +25477 ŠU +25484 IŠKUR +25489 ŠU +25494 NE +GAR +25498 SUD₂ +MAR +MEŠ +25502 TI +25514 ŠU +25520 LAL₃ +25522 I₃ +NUN +SUD₂ +IGI +MIN +25528 MAR +MEŠ +25531 TI +DIŠ +NA +25536 IGI +MIN +25545 NU +NA₂ +UGU +25553 DUGUD +I₃ +UDU +MUŠ +GE₆ +25559 I₃ +NUN +LAL₃ +KUR +25564 HE +HE +25568 DIŠ +NA +25572 IGI +MIN +25578 KI +NA₂ +NU +IL₂ +PA +25584 ŠE +NU₂ +A +PA +25589 PEŠ₃ +PA +25592 MI +PAR₃ +PA +GI +ZU₂ +LUM +MA +25600 A +25602 NININDU +UŠ₂ +25606 ŠA₃ +ŠUB +ŠUB +25610 A +GAR +GAR +MAŠ +DA₃ +ŠURUN +GU₄ +25619 GAZ +SIM +KI +ZI₃ +ŠE +SA +A +HE +HE +25629 A +GAZI +25632 SILA₁₁ +25634 LAL +25639 KAŠ +NAG +25642 TI +DIŠ +NA +U₄ +DU₃ +A +BI +NU +IGI +DU₈ +GE₆ +DU₃ +A +BI +IGI +DU₈ +25664 DIŠ +NA +U₄ +DU₃ +A +BI +IGI +DU₈ +GE₆ +DU₃ +A +BI +NU +IGI +DU₈ +25685 DIŠ +NA +IGI +MIN +25702 ANŠE +UZU +25709 ŠU +SAR +25715 GU₂ +25717 GAR +25719 A +GUB₂ +BA +A +GIN +25729 ŠA₃ +HA +25732 IGI +25734 UTU +LAL +25737 NIG₂ +NA +25740 LI +GAR +25743 LU₂ +25751 ŠA₃ +HA +25754 IGI +25756 UTU +25761 MAŠ +MAŠ +25764 NINDA +IL₂ +25768 IGI +MIN +25771 GIG +25773 NINDA +IL₂ +25777 MAŠ +MAŠ +25781 TU +RA +25794 TU +RA +25797 MAŠ +MAŠ +25809 DIŠ +NA +IGI +MIN +25830 MAŠ +25832 TUR +MEŠ +25850 I₃ +NUN +25853 I₃ +GIŠ +SAG +25858 HE +HE +IGI +MIN +25863 MAR +MEŠ +DU₃ +DU₃ +BI +25872 ŠU +BI +GIN₇ +NAM +EN₂ +25885 E₂ +25891 E₂ +25909 TU₆ +EN₂ +DU₃ +DU₃ +BI +25916 ŠU +SI +25921 TI +25923 EN₂ +25927 ŠID +25932 IG +25934 ŠU +25936 GAR +25938 GU₇ +25941 PA +25957 NUNDUM +25966 GI +25975 PA +ŠE +SA +A +25980 DILIM₂ +A +BAR₂ +GIN₇ +NIG₂ +SILA₁₁ +GA₂ +GAR +25990 LI +25992 GUR₂ +GUR₂ +U₂ +25996 GAZI +25998 NAGA +SI +ZA₃ +HI +LI +U₂ +26007 PIŠ₁₀ +26009 ID₂ +UH₂ +26012 ID₂ +ESIR +26015 I₃ +UDU +ELLAG₂ +GU₄ +26024 ŠA₃ +A +BAR₂ +ŠUB +26029 ŠU +SI +MAR +26039 ŠU +UM +ME +A +26048 GAZI +26050 ZA₃ +HI +LI +26054 KUR +KUR +26057 MAŠ +TAB +BA +26061 GUR₂ +GUR₂ +DUH +LAL₃ +U₂ +KUR +RA +I₃ +UDU +26071 GIG +NUMUN +26074 LI +26076 U₂ +HI +A +26082 IGI +MIN +26085 KUR +RA +26090 GAZI +26093 NU +LUH +HA +26097 KUR +KUR +26100 MAŠ +TAB +BA +26106 GUR₂ +GUR₂ +26109 HAR +HAR +26112 DE₃ +ŠEG₆ +26116 I₃ +GIŠ +26119 DUH +LAL₃ +BABBAR +SUD₂ +26124 U₂ +HI +A +26135 KUR +RA +26138 KUR +KUR +GAZI +26143 MAŠ +TAB +BA +26147 SES +NUMUN +26150 LI +26154 AŠGAB +26156 U₂ +HI +A +26162 IGI +MIN +26165 NE +26170 I₃ +UDU +GAB +LAL₃ +26175 I₃ +NUN +SUD₂ +IGI +MIN +26181 MAR +26183 AN +ZAH +GE₆ +26194 NAGA +SI +26197 GUR₂ +GUR₂ +U₂ +BABBAR +ZA₃ +HI +LI +26206 PIŠ₁₀ +26208 ID₂ +I₃ +UDU +GU₄ +A +GAR₅ +DILIM₂ +A +BAR₂ +ŠU +26219 A +ZU +AN +ZAH +GE₆ +PIŠ₁₀ +26226 ID₂ +26232 GAMUN +GE₆ +GAZI +26236 ZA₃ +HI +LI +26240 I₃ +UDU +GU₄ +I₃ +UDU +GIR₃ +PAD +DU +26252 IR +26255 GUR₂ +GUR₂ +26258 DIŠ +26264 UD +26266 DU₃ +26272 SUD₂ +26274 KAŠ +ŠEG₆ +26278 BABBAR +HI +26283 LAL +26292 I₃ +UDU +ELLAG₂ +SA₅ +26297 UD +DA +ŠUB +26302 DILIM₂ +A +BAR₂ +SUD₂ +IGI +MIN +26309 MAR +DIŠ +NA +IGI +MIN +26315 GIG +26318 DUL +26320 ŠE +LI +26326 SIG₇ +26329 A +MEŠ +LUH +26333 LAL +26335 GURUN +26337 UKUŠ₂ +LAGAB +U₂ +BABBAR +SUD₂ +26343 IGI +MIN +26348 DIŠ +NA +IGI +MIN +26353 GIG +26355 UD +MEŠ +26361 NU +BAD +26364 KUM₂ +SAG +DU +26368 SAR +26371 UD +26375 NIG₂ +SILA₁₁ +GA₂ +26382 I₃ +NUN +DILIM₂ +A +BAR₂ +26389 IGI +MIN +26397 DIŠ +NA +IGI +MIN +26405 GIG +SUM +SIKIL +26413 KAŠ +NAG +I₃ +GIŠ +26418 ŠA₃ +IGI +MIN +26422 MAR +26426 ZI₃ +NA₄ +ZU₂ +LUM +MA +26433 SUD₂ +26435 A +GAZI +26452 BIL +ZA +ZA +SIG₇ +26459 ZI₂ +26462 I₃ +NUN +HE +HE +IGI +MIN +26472 SILA₄(KISAL) +ZI₃ +GU₂ +GAL +26477 SILA₄(KISAL) +ZI₃ +GAZI +26482 GIN₂ +ZA₃ +HI +LI +26487 A +GAZI +26490 SILA₁₁ +26492 SAG +KI +26495 IGI +MIN +26498 LAL +EN₂ +26512 A +26518 DIŠ +NA +IGI +MIN +26523 MUD₂ +DIRI +26529 GE₆ +26538 ŠA₃ +IGI +MIN +26542 SA₅ +IGI +MIN +26546 DUL +26548 GAZI +26553 ŠURUN +UDU +26556 GA +26558 U₂ +ZUG₂ +SILA₁₁ +26562 LAL +26567 DU₈ +26574 I₃ +NUN +SUD₂ +IGI +MIN +26580 MAR +26582 SUHUŠ +U₂ +26588 GIR₂ +ZABAR +KUD +26592 DUR +26594 HE₂ +MED +26597 SIG₂ +BABBAR +NIGIN +26603 SAG +KI +MEŠ +26612 E₃ +26614 IGI +MIN +26620 DIŠ +NA +IGI +MIN +26625 MUD₂ +26630 NUMUN +26632 NIG₂ +GAN₂ +GAN₂ +LAL₃ +KUR +RA +SAHAR +KU₃ +GI +HE +HE +26645 GIN₂ +U₅ +ARGAB +26649 SA₉ +SILA₄(KISAL) +U₂ +BABBAR +IGI +26655 GAL₂ +LA +26662 I₃ +NUN +SUD₂ +IGI +MIN +26668 MAR +U₂ +BABBAR +26675 ŠA₃ +IGI +MIN +26679 MAR +26681 ŠIM +BI +SIG₇ +SIG₇ +26686 I₃ +NUN +26689 ŠE₁₀ +EME +ŠID +26693 I₃ +UDU +GIR₃ +PAD +DU +LUGUD₂ +DA +SUD₂ +26706 ŠE +U₂ +BABBAR +26710 I₃ +GIŠ +SUD₂ +IGI +MIN +26716 MAR +U₅ +ARGAB +26721 I₃ +NUN +SUD₂ +IGI +MIN +26727 MAR +DIŠ +NA +IGI +MIN +26733 MUD₂ +DIRI +ŠIM +BI +SIG₇ +SIG₇ +26740 I₃ +NUN +SUD₂ +MAR +26746 IN +NU +UŠ +26755 HE +HE +26758 I₃ +NUN +26763 NITA₂ +26765 MUNUS +SUD₂ +IGI +MIN +26770 MAR +26772 IGI +MIN +26775 MAR +26778 ŠA₃ +IGI +MIN +26786 ZA₃ +HI +LI +26790 U₂ +26801 A +GAZI +26804 LUH +26813 DIŠ +NA +26818 I₃ +GIŠ +SUD₂ +26826 DIŠ +KIMIN +26831 SUD₂ +MAR +MEŠ +DIŠ +KIMIN +26837 U₂ +BABBAR +26843 ŠA₃ +IGI +MIN +26847 MU₂ +26849 DIŠ +NA +IGI +MIN +26854 GIG +26857 EME +UR +GI₇ +26861 IN₆ +UŠ +26864 ZI₃ +KUM +HE +HE +26869 GEŠTIN +NAG +U₂ +BABBAR +26878 I₃ +NUN +SUD₂ +26883 DIŠ +NA +IGI +MIN +26888 GIG +26896 GAR +26905 I₃ +NUN +SUD₂ +MAR +DIŠ +NA +IGI +MIN +26917 MUD₂ +26920 U₂ +BABBAR +U₅ +ARGAB +26930 KUR +RA +26933 KUR +KUR +26936 GUR₂ +GUR₂ +I₃ +UDU +26941 GIG +26943 U₂ +HI +A +26955 ZI₂ +UDU +NITA₂ +26960 A +GAZI +26966 IGI +MIN +26969 MAR +26971 GIN₂ +U₅ +ARGAB +26975 SA₉ +GIN₂ +U₂ +BABBAR +26980 LAL₃ +KUR +RA +SUD₂ +IGI +MIN +26987 MAR +26993 UD +26995 KAM₂ +EN₂ +27034 MUNUS +NU +U₃ +TU +27045 TU₆ +EN₂ +KA +INIM +MA +IGI +MIN +27053 MUD₂ +DIRI +MEŠ +DU₃ +DU₃ +BI +SUHUŠ +27061 HA +SAHAR +27065 ZA +GIN₃ +NA +27071 KA +KEŠDA +KEŠDA +27076 KEŠDA +EN₂ +ŠID +27081 SAG +KI +27086 EN₂ +27100 A +GA +AŠ₂ +GA +TIL +LA +A +GA +AŠ₂ +GA +TIL +LA +TU₆ +EN₂ +KA +INIM +MA +DIŠ +NA +IGI +MIN +27122 MUD₂ +DIRI +MEŠ +DU₃ +DU₃ +BI +27132 I₃ +NUN +SUD₂ +27136 ŠA₃ +IGI +MIN +27140 ŠUB +EN₂ +27190 SA +27193 SA +27201 ŠUB +27206 TU₆ +TI +LA +27229 TU₆ +EN₂ +E₂ +NU +RU +KA +INIM +MA +DIŠ +NA +IGI +MIN +27242 MUD₂ +DIRI +MEŠ +KID₃ +KID₃ +BI +27249 ŠE +NAGA +SI +27253 ŠE +ILLU +LI +TAR +27258 ŠE +ŠE₁₀ +EME +ŠID +27264 SUD₂ +27266 GA +UD₅ +27270 IGI +MIN +27273 LAL +DIŠ +NA +IGI +MIN +27279 GIG +27281 MUD₂ +DIRI +27284 BULUH +HI +A +MUD₂ +27293 MUD₂ +ER₂ +27296 ŠA₃ +IGI +MIN +27300 E₃ +27302 GISSU +27304 LAMA +IGI +MIN +27315 GISSU +GUR +27319 DUGUD +27322 ŠINIG +SIG₇ +27329 A +GEŠTIN +NA +KALA +GA +27337 UL +27341 A₂ +GU₂ +ZI +GA +27346 ŠA₃ +27351 SUR +27353 IM +SAHAR +BABBAR +KUR +RA +U₂ +BABBAR +27364 I₃ +UDU +27373 ILLU +URUDU +27379 SUD₂ +27383 TI +27391 ŠA₃ +27401 DUB +27404 I₃ +NUN +27408 ŠU +MIN₃ +SILA₁₁ +27413 SAG +IGI +MIN +27418 ŠU +SI +BAD +27423 ŠA₃ +IGI +MIN +27427 GAR +27429 IGI +MIN +27432 DUL +27436 IGI +MIN +27442 UD +27444 KAM +27448 DU₃ +MEŠ +DIŠ +KIMIN +27453 SES +U₂ +BABBAR +27461 MUD +ZABAR +27464 ŠA₃ +IGI +MIN +27468 BUN₂ +DIŠ +NA +MIN +ILLU +URUDU +U₂ +BABBAR +SUD₂ +27478 MUD +ZABAR +27481 ŠA₃ +IGI +MIN +27485 BUN₂ +DIŠ +NA +MIN +27493 U₂ +BABBAR +SUD₂ +27497 MUD +ZABAR +27500 ŠA₃ +IGI +MIN +27504 BUN₂ +EN₂ +27538 IGI +MIN +27543 IGI +MIN +27553 IGI +MIN +GIN₇ +27558 UDU +NITA₂ +MUD₂ +27564 GIN₇ +A +MEŠ +27576 ŠUB +27580 DUG +A +GEŠTIN +NA +ŠUB +27599 KU₄ +27602 GIR₃ +27612 GU +ZA +27621 ŠA₃ +27629 EN₂ +27635 EN₂ +27644 EN₂ +27652 EN₂ +27663 TI +27665 NIG₂ +BA +27668 TI +TU₆ +EN₂ +KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +DU₃ +DU₃ +BI +27686 SIG₂ +BABBAR +DUR +NU +NU +27692 KA +KEŠDA +KEŠDA +27697 KEŠDA +EN₂ +ŠID +27702 IGI +27704 TI +LA +27707 KEŠDA +27709 EN₂ +27741 IGI +MIN +27747 IGI +MIN +27752 IGI +MIN +27755 MUD +DIRI +27763 NA +27790 KUR +27798 DUMU +MUNUS +27804 AN +27814 NIR₂ +DUG +MEŠ +27820 ZA +GIN₃ +27829 A +MEŠ +A +AB +BA +27837 DAGAL +27856 LUH +27871 KUM₂ +27877 ŠA₃ +IGI +MIN +27881 EN₂ +27887 EN₂ +27895 EN₂ +27903 EN₂ +27914 TI +LA +27917 NIG₂ +BA +27920 TI +27922 TU₆ +EN₂ +KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +DU₃ +DU₃ +BI +27939 SIG₂ +SA₅ +DUR +NU +NU +27945 KA +KEŠDA +KEŠDA +27950 KEŠDA +EN₂ +ŠID +27955 IGI +27957 GIG +27959 KEŠDA +EN₂ +27993 IGI +MIN +27998 IGI +MIN +28003 IGI +MIN +28007 MUD₂ +28046 GIŠIMMAR +28059 IN +NU +28087 IM +28089 IM +28091 IM +28093 IM +28095 EN₂ +KA +INIM +MA +IGI +GIG +GA +KAM₂ +DU₃ +DU₃ +BI +SIG₂ +SA₅ +SIG₂ +BABBAR +28115 NU +NU +28120 KA +KEŠDA +KEŠDA +28125 KEŠDA +EN₂ +ŠID +28129 DUR +SIG₂ +SA₅ +28133 IGI +28135 GIG +28137 KEŠDA +DUR +SIG₂ +BABBAR +28142 IGI +28144 TI +LA +KEŠDA +28150 EN₂ +28176 DUMU +MUNUS +28212 DUMU +MUNUS +28218 AN +28228 NIR₂ +DUG +MEŠ +28234 ZA +GIN₃ +DURU₅ +28250 IGI +MIN +28255 IGI +MIN +28265 TU₆ +EN₂ +KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +28276 DU₃ +DU₃ +BI +ŠU +BI +GIN₇ +NAM +EN₂ +28320 KUR +28325 UGU +28334 KI +TA +28347 IM +28355 NU +IM +28363 IM +28373 IM +28397 AMAR +UTU +TU₆ +EN₂ +KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +28410 DU₃ +DU₃ +BI +ŠU +BI +GIN₇ +NAM +EN₂ +28427 DU₃ +DU₃ +BI +28436 NU +NU +28440 SAG +KI +28443 KEŠDA +28445 EN₂ +28448 IGI +NU +TUK +28452 TU₆ +EN₂ +DU₃ +DU₃ +BI +28459 SAG +KI +28463 ZAG +EN₂ +28478 DU₃ +DU₃ +BI +28483 SAG +KI +28487 GUB₃ +KA +INIM +MA +IGI +GIG +GA +KAM₂ +DU₃ +DU₃ +BI +ŠU +BI +GIN₇ +NAM +EN₂ +28511 AMAR +UTU +28522 AD +28547 TU₆ +EN₂ +DU₃ +DU₃ +BI +SIG₂ +SA₅ +SIG₂ +BABBAR +28558 NU +NU +28563 KA +KEŠDA +KEŠDA +28568 KEŠDA +EN₂ +ŠID +28573 SAG +KI +MEŠ +28577 KEŠDA +28581 EN₂ +28610 KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +28619 DU₃ +DU₃ +BI +ŠU +BI +GIN₇ +NAM +EN₂ +28649 KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +DU₃ +DU₃ +BI +ŠU +BI +AŠ +AM₃ +EN₂ +28669 GIG +28674 KI +SIKIL +GIG +28680 GURUŠ +28683 KI +SIKIL +28698 ŠA₃ +KU₃ +28702 GIŠIMMAR +28711 ŠU +28716 GURUŠ +28718 KI +SIKIL +28721 SAG +KI +MEŠ +28729 IGI +GURUŠ +28732 KI +SIKIL +28738 TU₆ +EN₂ +KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +DU₃ +DU₃ +BI +ŠU +BI +AŠ +BI +AM₃ +28784 LU₂ +28810 AN +28850 LU₂ +28881 LU₂ +28910 LU₂ +28919 MIN +28988 MIN +28990 ŠU +28992 KU₃ +29036 KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +EN₂ +29069 KU₃ +GAN +U₅ +ARGAB +29074 I₃ +UDU +GIR₃ +PAD +DA +LUGUD₂ +DA +29082 UDU +29084 SUD₂ +29086 ŠIM +BI +KU₃ +GI +SUD₂ +29093 SAG +KUD +29096 ŠA₃ +IGI +MIN +29100 BUN₂ +29103 SAG +DU +29106 KEŠDA +29108 SILA₄(KISAL) +I₃ +GIŠ +SA₉ +SILA₄(KISAL#) +29116 SAG +DU +29119 DUB +29122 UD +29124 KAM@v +DU₃ +DU₃ +29128 ZA₃ +HI +LI +29133 SUD₂ +29136 DIŠ +NA +IGI +MIN +29141 GIG +HENBUR₂ +ŠE +AM +SIG₇ +29147 NAGA +SI +SUD₂ +29151 A +GAZI +29154 SILA₁₁ +29156 IGI +MIN +29159 LAL +29169 SUD₂ +29171 I₃ +UDU +29180 SUD₂ +29182 I₃ +NUN +HE +HE +IGI +MIN +29189 MAR +DIŠ +NA +IGI +MIN +29195 GIG +29197 SILA₄(KISAL) +I₃ +GIŠ +29201 SAG +KI +MEŠ +29205 ŠUB +MEŠ +29211 AŠGAB +29213 KUŠ +EDIN +29218 SAG +KI +MEŠ +29222 LAL +29224 ILLU +URUDU +29229 ŠIM +BI +KU₃ +GI +SUD₂ +29235 I₃ +NUN +HE +HE +IGI +MIN +29242 MAR +MEŠ +29245 TI +DIŠ +NA +IGI +MIN +29251 GIG +29257 SAHAR +URUDU +29260 ŠEN +TUR +29263 I₃ +NUN +SUD₂ +IGI +MIN +29269 MAR +GIR₂ +ZABAR +29273 A +LUH +29276 SUM +29286 IGI +MIN +29289 MAR +ZA₃ +HI +LI +29297 KAŠ +SILA₁₁ +29300 LAL +29302 SAHAR +URUDU +29305 ŠEN +TUR +29309 GAZ +29311 I₃ +NUN +SIG₅ +29317 UD +29319 DU₃ +29322 IGI +MIN +29329 ŠA₃ +IGI +MIN +29337 IN₆ +UŠ₂ +SUD₂ +LAL +29347 GA +29351 LAL +29354 DILIM₂ +A +BAR₂ +SUD₂ +IGI +MIN +29361 MAR +29364 ŠE +LI +29370 SIG₇ +29373 A +MEŠ +29376 UKUŠ₂ +LAGAB +U₂ +BABBAR +29385 IGI +MIN +29388 GIG +29394 NU +BAD +29397 KUM₂ +29399 SAG +DU +29402 SAR +29405 NIG₂ +SILA₁₁ +GA₂ +29413 I₃ +NUN +DILIM₂ +A +BAR₂ +29420 IGI +MIN +29429 IGI +MIN +29435 GIG +SUM +SIKIL +29443 KAŠ +NAG +I₃ +GIŠ +29448 ŠA₃ +IGI +MIN +29452 MAR +29457 NA₄ +ZU₂ +LUM +MA +29463 SUD₂ +29465 A +GAZI +29482 BIL +ZA +ZA +SIG₇ +29489 ZI₂ +29492 I₃ +NUN +HE +HE +IGI +MIN +29502 GU₂ +GAL +29505 SILA₄(KISAL) +ZI₃ +GAZI +29510 GIN₂ +ZA₃ +HI +LI +29515 A +GAZI +29518 SILA₁₁ +29520 SAG +KI +29523 IGI +MIN +29526 LAL +EN₂ +29536 NUMUN +U₂ +29552 A +29555 DUG₄ +GA +DIŠ +NA +29560 GAZI +29566 MAŠ +TAB +I₃ +UDU +29571 GIG +NUMUN +29574 LI +29582 I₃ +NUN +I₃ +UDU +ELLAG₂ +UDU +NITA₂ +GAB +LAL₃ +29594 IGI +MIN +29597 MAR +DIŠ +NA +IGI +MIN +29605 IGI +MIN +29608 GIG +U₅ +ARGAB +29613 I₃ +NUN +SUD₂ +MAR +DIŠ +NA +IGI +MIN +29622 GIG +29625 DIŠ +NA +IGI +MIN +29630 GIG +29635 GA +ŠEG₆ +29638 LAL +DIŠ +NA +IGI +MIN +29644 MUD₂ +29650 ŠA₃ +IGI +MIN +29654 SA₅ +IGI +MIN +29658 DUL +29662 U₂ +ZUG₂ +SILA₁₁ +29666 LAL +29671 DU₈ +29676 GIR₂ +ZABAR +KUD +29680 DUR +29682 HE₂ +MED +29685 DIŠ +NA +IGI +MIN +29690 MUD₂ +29697 GIN₂ +U₅ +ARGAB +29701 SA₉ +29703 U₂ +BABBAR +29709 ŠA₃ +IGI +MIN +29714 ŠE₁₀ +EME +ŠID +29718 I₃ +UDU +GIR₃ +PAD +DU +LUGUD₂ +DA +29727 ŠE +U₂ +BABBAR +29731 I₃ +GIŠ +SUD₂ +IGI +MIN +29737 MAR +29739 DIŠ +NA +IGI +MIN +29744 MUD₂ +DIRI +29748 IN₆ +UŠ₂ +29757 NA₄ +BAL +29760 UH₂ +SUD₂ +MAR +29769 MUD₂ +29771 ŠA₃ +ŠAH +29774 ŠA₃ +IGI +MIN +29783 GIN₂ +U₅ +ARGAB +29788 EN₂ +29822 MUNUS +NU +U₃ +TU +29833 TU₆ +EN₂ +KA +INIM +MA +IGI +MIN +29841 MUD₂ +DIRI +MEŠ +DU₃ +DU₃ +BI +SUHUŠ +29850 KA +KEŠDA +KEŠDA +29855 KEŠDA +EN₂ +ŠID +29860 SAG +KI +29864 EN₂ +29878 A +GA +AŠ₂ +GA +TIL +LA +A +GA +AŠ₂ +GA +TIL +LA +TU₆ +EN₂ +KA +INIM +MA +DIŠ +NA +IGI +MIN +29900 MUD₂ +DIRI +MEŠ +DU₃ +DU₃ +BI +29910 I₃ +NUN +SUD₂ +29914 ŠA₃ +IGI +MIN +29918 ŠUB +EN₂ +29968 SA +29971 SA +29979 ŠUB +29984 TU₆ +TI +LA +30008 TU₆ +EN₂ +E₂ +NU +RU +KA +INIM +MA +DIŠ +NA +IGI +MIN +30021 MUD₂ +DIRI +MEŠ +KID₃ +KID₃ +BI +30028 ŠE +NAGA +SI +30032 ŠE +ILLU +LI +TAR +30037 ŠE +ŠE₁₀ +EME +ŠID +30043 SUD₂ +30045 GA +UD₅ +30049 IGI +MIN +30052 LAL +DIŠ +NA +IGI +MIN +30058 GIG +30060 MUD₂ +DIRI +30063 BULUH +HI +A +MUD₂ +30072 MUD₂ +ER₂ +30075 ŠA₃ +IGI +MIN +30079 E₃ +30081 GISSU +30083 LAMA +IGI +MIN +30094 GISSU +GUR +30098 DUGUD +30101 ŠINIG +SIG₇ +30108 A +GEŠTIN +NA +KALA +GA +30116 UL +30120 A₂ +GU₂ +ZI +GA +30125 ŠA₃ +30130 SUR +30132 IM +SAHAR +BABBAR +KUR +RA +U₂ +BABBAR +30143 I₃ +UDU +30152 ILLU +URUDU +30158 SUD₂ +30162 TI +30170 ŠA₃ +30180 DUB +30183 I₃ +NUN +30187 ŠU +MIN₃ +SILA₁₁ +NU +30192 SAG +IGI +MIN +30197 ŠU +SI +BAD +30202 ŠA₃ +IGI +MIN +30206 GAR +30208 IGI +MIN +30211 DUL +30215 IGI +MIN +30221 UD +30223 KAM₂ +30227 DU₃ +MEŠ +DIŠ +KIMIN +30232 SES +U₂ +BABBAR +30240 MUD +ZABAR +30243 ŠA₃ +IGI +MIN +30247 BUN₂ +DIŠ +NA +MIN +ILLU +URUDU +U₂ +BABBAR +SUD₂ +30257 MUD +ZABAR +30260 ŠA₃ +IGI +MIN +30264 BUN₂ +DIŠ +NA +MIN +30272 U₂ +BABBAR +SUD₂ +30276 MUD +ZABAR +30279 ŠA₃ +IGI +MIN +30283 BUN₂ +EN₂ +30317 IGI +MIN +30322 IGI +MIN +30332 IGI +MIN +GIN₇ +30337 UDU +NITA₂ +MUD₂ +30343 GIN₇ +A +MEŠ +30355 ŠUB +30359 DUG +A +GEŠTIN +NA +ŠUB +30378 KU₄ +30381 GIR₃ +30391 GU +ZA +30400 ŠA₃ +30408 EN₂ +30414 EN₂ +30423 EN₂ +30431 EN₂ +30437 EN₂ +30441 TI +LA +30444 NIG₂ +BA +30447 TI +TU₆ +EN₂ +KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +DU₃ +DU₃ +BI +30465 SIG₂ +BABBAR +DUR +NU +NU +30471 KA +KEŠDA +KEŠDA +30476 KEŠDA +EN₂ +ŠID +30481 IGI +30483 TI +LA +30486 KEŠDA +30488 EN₂ +30498 IGI +MIN +30503 IGI +MIN +30508 IGI +MIN +30511 MUD +DIRI +30542 KUR +30550 DUMU +MUNUS +30556 AN +30567 NIR₂ +DUG +MEŠ +30573 ZA +GIN₃ +30582 A +MEŠ +A +AB +BA +30589 DAGAL +30607 LUH +30622 KUM₂ +30628 ŠA₃ +IGI +MIN +30632 EN₂ +30638 EN₂ +30646 EN₂ +30654 EN₂ +30665 TI +LA +30668 NIG₂ +BA +30671 TI +30673 TU₆ +EN₂ +KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +DU₃ +DU₃ +BI +30690 SIG₂ +SA₅ +DUR +NU +NU +30696 KA +KEŠDA +KEŠDA +30701 KEŠDA +EN₂ +ŠID +30706 IGI +30708 GIG +30710 KEŠDA +EN₂ +30739 IGI +MIN +30744 IGI +MIN +30749 IGI +MIN +30753 MUD₂ +30792 GIŠIMMAR +30805 IN +NU +30834 IM +30836 IM +30838 IM +30840 IM +30842 EN₂ +KA +INIM +MA +IGI +GIG +GA +KAM₂ +DU₃ +DU₃ +BI +SIG₂ +SA₅ +SIG₂ +BABBAR +30861 NU +NU +30866 KA +KEŠDA +KEŠDA +30871 KEŠDA +EN₂ +ŠID +30875 DUR +SIG₂ +SA₅ +30879 IGI +30881 GIG +30883 KEŠDA +DUR +SIG₂ +BABBAR +30888 IGI +30890 TI +LA +KEŠDA +30896 EN₂ +30919 DUMU +MUNUS +30955 DUMU +MUNUS +30961 AN +30972 NIR₂ +DUG +MEŠ +30978 ZA +GIN₃ +DURU₅ +30994 IGI +MIN +30999 IGI +MIN +31009 TU₆ +EN₂ +KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +DU₃ +DU₃ +BI +ŠU +BI +GIN₇ +NAM +EN₂ +31063 KUR +31068 UGU +31077 KI +TA +31090 IM +31098 NU +IM +31106 IM +31116 IM +31122 KA +INIM +MA +IGI +GIG +GA +KAM₂ +DU₃ +DU₃ +BI +ŠU +BI +GIN₇ +NAM +EN₂ +31151 AMAR +UTU +31162 AD +31187 TU₆ +EN₂ +KA +INIM +MA +IGI +GIG +GA +KAM₂ +DU₃ +DU₃ +BI +SIG₂ +SA₅ +SIG₂ +BABBAR +31205 NU +NU +31210 KA +KEŠDA +KEŠDA +31215 KEŠDA +EN₂ +ŠID +31220 SAG +KI +MEŠ +31224 KEŠDA +31228 EN₂ +31256 KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +31265 DU₃ +DU₃ +BI +ŠU +BI +GIN₇ +NAM +EN₂ +31275 GURUŠ +GIG +31281 KI +SIKIL +GIG +31287 GURUŠ +31290 KI +SIKIL +31305 ŠA₃ +KU₃ +31309 GIŠIMMAR +31318 ŠU +31323 GURUŠ +31325 KI +SIKIL +31328 SAG +KI +MEŠ +31336 IGI +GURUŠ +31339 KI +SIKIL +31345 TU₆ +EN₂ +KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +DU₃ +DU₃ +BI +ŠU +BI +AŠ +AM₃ +31390 LU₂ +31404 MIN +31415 AN +31451 LU₂ +31488 LU₂ +31518 LU₂ +31527 MIN +31599 MIN +31601 ŠU +31603 KU₃ +31647 KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +EN₂ +31673 MIN +31687 IGI +AMA +31716 TU₆ +EN₂ +KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +DU₃ +DU₃ +BI +SIG₂ +SA₅ +SIG₂ +BABBAR +31738 NU +NU +31741 MURUB₄ +31748 SIG₂ +SA₅ +31751 IGI +31753 GIG +SIG₂ +BABBAR +31757 IGI +31759 TI +KEŠDA +31764 EN₂ +31793 ŠE +GA +31800 ŠE +GA +31804 ŠE +GA +MIN +TU₆ +EN₂ +KA +INIM +MA +DIŠ +NA +IGI +MIN +31817 LU₃ +LU₃ +DU₃ +DU₃ +BI +31824 UDU +TI +31830 DUR +NU +NU +31846 KA +KEŠDA +KEŠDA +31851 KEŠDA +EN₂ +ŠID +31856 SAG +KI +31859 KEŠDA +31863 EN₂ +31872 MUD₂ +31900 ID₂ +31902 SILA +MEŠ +31927 GIN₇ +MUL +31934 GIN₇ +31954 EN₂ +NU +DU₈ +EN₂ +31963 AMAR +UTU +EN₂ +31971 EN +EN₂ +31977 EN +A +ZU +31988 TU₆ +EN₂ +KA +INIM +MA +32003 IGI +MIN +32008 EN₂ +32032 U₃ +TU +32066 UTU +32076 UTU +32090 IGI +GURUŠ +32095 KU₄ +32098 UTU +32114 ŠA₃ +32117 KA +INIM +MA +32124 ŠA₃ +IGI +MIN +32130 DIŠ +NA +IGI +MIN +32138 DIRI +32142 ZI₃ +ŠE +SA +A +32147 KAŠ +32150 LAL +32163 MEŠ +32177 DU₈ +U₃ +KAM₂ +32196 SIKIL +32215 NU +LUH +HA +BAR +32242 PIŠ₁₀ +32244 ID₂ +32256 AN +ZAH +GE₆ +32260 ZALAG₂ +NA₄ +AN +BAR +32265 KA +GI +NA +DAB +BA +32274 ŠA₃ +ŠUB +32277 EN₂ +32280 ŠID +32283 SAG +KI +MEŠ +32292 IGI +MIN +32295 ŠEŠ₂ +MEŠ +32298 SILIM +32305 DAB +32308 SAG +KI +DAB +BA +TUKU +TUKU +32315 NA₄ +KUG +BABBAR +NA₄ +KUG +SIG₁₇ +32322 GUG +32327 MUŠ +GIR₂ +32330 SAG +DU +32333 NIR₂ +32335 BABBAR +DILI +32338 ZALAG₂ +32343 AN +ZAH +32346 ŠUBA +32348 ZU₂ +GE₆ +32351 ŠU +U +NITA₂ +32355 MUNUS +32357 SAG +GIL +MUD +32361 SAG +KI +NA₄ +AN +BAR +32367 PA +32370 GUN₃ +MEŠ +32381 NA₄ +DU₃ +A +BI +32389 SIG₂ +32391 AŠ₂ +GAR₃ +GIŠ₃ +NU +ZU +SA +MAŠ +DA₃ +32400 NINNI₅ +NITA₂ +NU +NU +E₃ +32410 IGI +32413 IGI +NIŠ +32416 MA +NU +32419 DILI +32432 KUR +KUR +32442 HAR +LUM +BA +ŠIR +32447 IN₆ +UŠ₂ +NUMUN +32451 ŠINIG +U₂ +DU₃ +A +BI +32461 KEŠDA +32464 HE₂ +ME +DA +NIGIN +32469 EN₂ +SAG +KI +MU +UN +DAB +ŠID +32479 SAG +KI +32482 KEŠDA +32489 UD +SAKAR +32495 MUŠ +GIR₂ +32498 SAG +GIL +MUD +NA₄ +AN +BAR +ŠUB +AN +32507 SAG +DU +32510 SAG +KI +32513 ŠIM +BI +ZI +DA +32524 ŠUBA +SIG₇ +32527 ZA +GIN₃ +32530 GUG +NA₄ +BAL +SA₅ +NA₄ +BAL +GE₆ +NA₄ +BAL +SIG₇ +32544 NA₄ +MUŠ +SA₅ +32548 DUR₂ +MI +NA +32552 DUR₂ +MI +NA +BAN₃ +DA +32558 GI +RIM +HI +LI +BA +NA₄ +32565 MES +32567 ŠURUN +32569 GUD +32571 KA +GI +NA +DAB +BA +32577 BABBAR +DILI +32580 BABBAR +MIN₅ +NA₄ +DU₃ +A +BI +GAZ +SUD₂ +32598 SAG +KI +DAB +HI +HI +SAG +KI +MEŠ +32607 ŠEŠ₂ +MEŠ +LAL +32611 NA₄ +DU₃ +A +BI +32618 KUG +SIG₁₇ +32623 SAG +KI +32626 KEŠDA +32628 SUHUŠ +32630 DIH₃ +32632 UGU +KI +MAH +SUHUŠ +32637 KIŠI₁₆ +32639 UGU +KI +MAH +SI +GUD +32645 ZAG +SI +MAŠ₂ +32649 GUB₃ +NUMUN +32652 ŠINIG +NUMUN +32655 MA +NU +32658 A +ZAL +LA +32662 U₂ +HI +A +32669 ŠU +GIDIM +MA +SAG +KI +MEŠ +32676 LAL +32679 LI +32681 GUR₂ +GUR₂ +KA +A +AB +BA +PIŠ₁₀ +32689 ID₂ +UH₂ +32692 ID₂ +I₃ +UDU +ELLAG₂ +UDU +NITA₂ +DUH +LAL₃ +HI +HI +SAG +KI +MEŠ +32706 LAL +32752 GIR₃ +PAD +DU +NAM +LU₂ +U₁₈ +LU +32772 UR +GI₇ +GE₆ +SIG₂ +SA +AD +32786 HI +HI +32789 NE +SAR +32793 KUŠ +32825 MIN +32832 MIN +32877 KA +INIM +MA +SAG +KI +DAB +BA +KAM₂ +DU₃ +DU₃ +BI +32889 HE₂ +ME +DA +SIG₂ +BABBAR +SA +MAŠ +DA₃ +32898 NINNI₅ +NITA₂ +DIŠ +32902 NU +NU +32907 KEŠDA +KEŠDA +32910 DILI +KA +A +AB +BA +32918 PIŠ₁₀ +32920 ID₂ +UH₂ +32923 ID₂ +SUHUŠ +32926 NAM +TAR +NITA₂ +NUMUN +32931 ŠINIG +SI +DARA₃ +MAŠ +32937 NAM +LU₂ +U₁₈ +LU +U₂ +HI +A +32949 KEŠDA +32951 SIG₂ +SA₅ +NIGIN +32955 EN₂ +32958 ŠID +32960 MUD₂ +32962 EREN +TAG +32966 SAG +KI +32973 LU₂ +U₁₈ +LU +32978 SUD₂ +32980 I₃ +ŠEŠ₂ +32983 ŠE₁₀ +ŠAH +ME +ZE₂ +ŠAH +GIR₃ +PAD +DA +LUGUD₂ +DA +ŠAH +32996 LU₂ +U₁₈ +LU +NAGA +SI +SI +DARA₃ +MAŠ +33005 KUR +RA +33008 GAMUN +GE₆ +33013 DIŠ +33015 GAZ +33017 I₃ +UDU +GUD +LIBIR +RA +HI +HI +33025 NE +SAR +33037 KA +33043 NUMUN +33045 GUR₅ +UŠ +PIŠ₁₀ +33049 ID₂ +33053 DIŠ +33055 SUD₂ +33057 I₃ +HI +HI +SAG +KI +MIN +33064 KI +TA +UGU +33069 MURUB₄ +UGU +33072 ŠEŠ₂ +33074 NA +BI +TI +33078 EN₂ +33119 TU₆ +EN₂ +DU₃ +DU₃ +BI +PA +33126 GIŠIMMAR +33129 SI +SA₂ +33133 NU +IM +33139 TI +33155 KEŠDA +KEŠDA +EN₂ +33160 ŠID +33163 SAG +KI +33166 KEŠDA +EN₂ +33211 TU₆ +EN₂ +E₂ +NU +RU +DU₃ +DU₃ +BI +33220 HE₂ +ME +DA +NU +NU +33228 KA +KEŠDA +KEŠDA +33233 KEŠDA +33235 SAG +DU +E₃ +33239 EN₂ +33242 ŠID +33245 SAG +KI +33248 KEŠDA +EN₂ +33278 TU₆ +EN₂ +33285 GIŠIMMAR +33288 SI +SA₂ +33292 NU +IM +33298 TI +33305 EN₂ +33308 ŠID +33311 SAG +KI +33319 EN₂ +33371 EN₂ +33391 EN₂ +33395 UGU +GI +DU₈ +33411 GI +33414 LU₂ +33451 GIR₃ +PAD +DU +LU₂ +33473 MUD₂ +33475 EREN +I₃ +SUMUN +BARA₂ +33496 EN₂ +33546 DU₃ +DU₃ +BI +33550 ZU₂ +GE₆ +33554 NITA +33556 MUNUS +33563 ŠUBA +SIG₇ +33569 SAG +KI +33574 EN₂ +33619 DU₃ +DU₃ +BI +33625 NITA₂ +SA +MAŠ +DA₃ +TEŠ₂ +BI +NU +NU +33636 KA +KEŠDA +KEŠDA +33641 KA +KEŠDA +EN₂ +ŠID +33646 UB +PAD +NITA₂ +33650 MUNUS +33652 HUL₂ +A +ŠA₃ +DAL +DAL +KI +KA +KEŠDA +33662 HE₂ +ME +DA +NIGIN +33668 SAG +KI +33673 EN₂ +33799 TU₆ +EN₂ +KA +INIM +MA +SAG +KI +DAB +BA +KE₄ +DU₃ +DU₃ +BI +SIG₂ +SA₅ +SIG₂ +BABBAR +DIŠ +33818 NU +NU +33821 ZALAG₂ +SI +DARA₃ +MAŠ +NA₄ +ZU₂ +LUM +MA +E₃ +33831 KA +KEŠDA +KEŠDA +33836 KEŠDA +EN₂ +ŠID +33841 SAG +KI +MIN +33848 AL +TI +EN₂ +33900 TU₆ +EN₂ +EN₂ +33942 TU₆ +EN₂ +33945 KA +INIM +MA +SAG +KI +DAB +BA +KAM +33954 UGU +33960 LU₂ +U₁₈ +LU +ŠID +33965 EN₂ +33998 TU₆ +EN₂ +KA +INIM +MA +SAG +KI +DAB +BA +KAM +EN₂ +34013 UGU +34018 UD +HUL +GAL₂ +34024 ŠID +34027 SAG +KI +MIN +34031 MURUB₄ +UGU +34035 KI +TA +UGU +34040 TAG +TAG +34046 KA +INIM +MA +SAG +KI +DAB +BA +KAM +EN₂ +34090 TU₆ +EN₂ +KA +INIM +MA +SAG +KI +DAB +BA +KAM +DU₃ +DU₃ +BI +34109 SIG₂ +BABBAR +NU +NU +34116 KA +KEŠDA +KEŠDA +34121 KEŠDA +EN₂ +ŠID +34126 SAG +DU +34129 KEŠDA +34160 TU₆ +EN₂ +KA +INIM +MA +SAG +KI +DAB +BA +KAM +34179 HAR +LUM +BA +ŠIR +SAR +34185 DIŠ +NA +SAG +KI +34195 U₄ +34197 KAM +34200 GU₄ +34202 IGI +34205 IGI +NIŠ +34220 SAG +DU +MEŠ +34224 I₃ +SUMUN +E₂ +34228 AMAR +UTU +34231 SA +AB₂ +RI +RI +GA +DU₃ +DU₃ +34240 GU₂ +34242 GAR +34245 SAG +DU +34248 SAG +KI +34251 KEŠDA +34253 EN₂ +34260 ŠID +34262 DIŠ +NA +GEŠTU +ZAG +34267 TAG +34269 IM +DIRI +34273 MU₂ +MEŠ +U₄ +34277 KAM +34279 U₄ +34281 KAM +34284 NE +34286 NU +UR₂ +MA +KU₇ +KU₇ +34293 UGU +GIŠ +34298 A +MEŠ +34305 I₃ +DUG₃ +GA +34309 ŠA₃ +GEŠTU +34312 ŠUB +I₃ +34315 BAL +34317 SAG +DU +34320 ŠUB +34323 KUM₂ +GU₇ +MEŠ +DIŠ +NA +GEŠTU +GUB₃ +34331 TAG +34333 IM +DIRI +34337 MU₂ +MEŠ +U₄ +34341 KAM +34344 KIN +I₃ +UDU +KUR +GI +34350 ŠEG₆ +34357 ŠA₃ +GEŠTU +MIN +34361 ŠUB +UZU +KUR +GI +34366 ŠEG₆ +34368 GU₇ +I₃ +34371 EREN +34373 SAG +DU +34376 ŠUB +34385 GU₇ +DIŠ +NA +KIR₄ +ZAG +34391 TAG +34394 U₄ +34396 KAM +34399 SIG₄ +ŠU +SI +GUB₃ +34404 GAL +34406 NE +GAR +34409 MUŠ +DIM₂ +GURUN +NA +34414 EDIN +U₅ +MEŠ +34418 UGU +KIR₄ +34424 ILLU +34426 BULUH +34428 GEŠTU +GUB₃ +34431 GAR +34433 DIŠ +NA +KIR₄ +GUB₃ +34438 TAG +34441 U₄ +34443 KAM +34446 ŠU +SUM +34450 UGU +34457 ŠA₃ +GI +34460 UGU +KIR₄ +34466 ŠU +SI +ZAG +34471 NE +GAR +34474 ILLU +34476 BULUH +34478 ŠA₃ +GEŠTU +MIN +34482 GAR +34500 ŠU +34505 KA +ABGAL +MEŠ +34516 A +MA₂ +URU₅ +34524 MU +34526 KAM +34529 EN +LIL₂ +34533 LUGAL +34541 EN +LIL₂ +34546 ABGAL +NIBRU +34572 NIG₂ +GIG +34575 AMAR +UTU +DIŠ +NA +SAG +DU +34582 GIG +MEŠ +34587 TAB +UD +DA +DIRI +DUB +34593 KAM₂ +MA +DIŠ +NA +UGU +34599 KUM₂ +34602 E₂ +GAL +34605 AN +ŠAR₂ +DU₃ +A +MAN +ŠU₂ +MAN +KUR +AN +ŠAR₂ +34618 AG +34624 GEŠTU +MIN +34638 IGI +MIN +34649 DIŠ +NA +UD +DA +KUR +34655 ZI +SAG +KI +GIG +34672 ABUL +TI +34675 KI +34683 DIŠ +NA +MIN +KUM₂ +TUKU +34689 TI +BI +34696 I₃ +GIŠ +34709 KAŠ +ŠEG₆ +34712 ŠEŠ₂ +34721 DIŠ +NA +MIN +NINDA +34726 KAŠ +NU +34732 TI +BI +34741 ILLU +34745 KUR +34752 KAŠ +34763 DIŠ +NA +MIN +34771 ŠUB +ŠUB +34786 UDUN +34800 DIŠ +NA +MIN +KUM₂ +TUKU +34820 ŠEŠ₂ +34839 DIŠ +NA +MIN +34878 LUGAL +MEŠ +34900 TA +34903 EN +UMBIN +34907 BAR +MEŠ +34940 IGI +KAR₂ +34954 E₂ +GAL +34960 HAR +HAR +34977 ZI₃ +GIG +DIDA +SIG₅ +34994 GUR₂ +GUR₂ +34997 LI +35011 ŠEŠ +ZI₃ +GIG +35029 GUR₂ +GUR₂ +35032 LI +35035 NIN +URTA +DIŠ +35039 GAZ +35046 KAŠ +35053 SAG +DU +35062 GUR₂ +GUR₂ +35065 LI +35068 NIN +URTA +NUMUN +35081 DIŠ +35083 GAZ +SIM +35086 KAŠ +35089 SAG +DU +35097 PA +35099 GIŠIMMAR +35102 NU +IM +35108 TI +35111 UD +DA +HAD₂ +A +35128 SUD₂ +35130 I₃ +HI +HI +ILLU +35143 EN₂ +A +RA +ŠE +RA +A +RA +BA +ŠE +RA +IZI +BIL +LI +35166 ŠA₃ +ŠID +35169 SAG +KI +35177 KUR +KUR +35183 NE +35189 GUR₂ +GUR₂ +35196 NUMUN +35198 AB₂ +DUH +KA +A +AB +BA +35205 ŠEŠ +DIŠ +35208 SUD₂ +35210 IZI +35222 MAŠ +KA +A +AB +BA +UH₂ +35229 ID₂ +DIŠ +35232 SUD₂ +35235 HE₂ +ME +DA +NIGIN +I₃ +ŠEŠ₂ +35245 KEŠDA +35255 TAG +TAG +35264 I₃ +UDU +ELLAG₂ +HI +HI +SAG +KI +35272 TAG +35274 GIN₂ +ZA₃ +HI +LI +35280 GIN₂ +ŠE +SA +A +35285 A +GAZI +35290 LAL +35292 GIN₂ +ZA₃ +HI +LI +35298 GIN₂ +IM +BABBAR +35302 GIN₂ +ZI₃ +ŠE +SA +A +35308 A +GAZI +35313 LAL +TUKUM +BI +LU₂ +U₃ +SAG +KI +DAB +35326 SUHUŠ +35328 IG +ABUL +35336 GUB₃ +35338 GUB +35340 ŠU +TI +SIG₂ +35344 AŠ₂ +GAR₃ +GIŠ₃ +NU +ZU +35351 HE₂ +ME +DA +KEŠDA +35357 SAG +KI +35360 KEŠDA +35362 NA +BI +TI +TUKUM +BI +LU₂ +U₃ +SAG +KI +DAB +35373 PA +35375 GIŠIMMAR +35381 TI +35383 HAD₂ +A +GAZ +SIM +35388 KAŠ +SILA₁₁ +35391 SAG +KI +35394 LAL +35396 NA +BI +TI +35400 TUKUM +BI +LU₂ +U₃ +SAG +KI +DAB +35408 PA +35410 GIŠIMMAR +35415 TI +35418 SAG +KI +35424 NA +BI +TI +35428 TUKUM +BI +LU₂ +U₃ +SAG +KI +DAB +35437 DIH₃ +35442 ŠU +TI +35446 AKA₃ +NIGIN +35450 HE₂ +ME +DA +35456 SAG +KI +35461 NA +BI +TI +35465 TUKUM +BI +LU₂ +U₃ +SAG +KI +DAB +35474 HE₂ +ME +DA +MUNUS +35479 MUD +AL +KUD +NU +NU +SA +MAŠ +DA₃ +35488 NINNI₅ +NITA₂ +KI +35492 HE₂ +ME +DA +35499 NIR₂ +35501 MUŠ +GIR₂ +35504 BABBAR +DILI +35507 ZU₂ +GE₆ +KEŠDA +35511 SAG +KI +35514 KEŠDA +NA +BI +TI +35519 TUKUM +BI +LU₂ +U₃ +SAG +KI +DAB +35530 MUŠ +TAB +GIR₂ +TAB +35535 HE₂ +ME +DA +35541 NITA₂ +SA +MAŠ +DA₃ +DIŠ +35547 NU +NU +35550 AKA₃ +NIGIN +35553 SAG +KI +35559 NA +BI +TI +35563 TUKUM +BI +LU₂ +U₃ +SAG +KI +DAB +35572 NIG₂ +DARA₂ +ŠU +LAL₂ +35577 DUR +35579 AKA₃ +NIGIN +35583 SAG +KI +35586 KEŠDA +35588 NA +BI +TI +35592 DIŠ +LU₂ +ZI +SAG +KI +TUKU +35602 TUKU +PA +35605 ŠE +DU₃ +A +HAD₂ +DU +GAZ +SIM +ZI₃ +ŠE +MUŠ₅ +35618 ARA₃ +35620 ZI₃ +ŠE +SA +A +DIŠ +35626 SUD₂ +35628 A +GAZI +35633 LAL +LAL +35636 TI +DIŠ +NA +ZI +SAG +KI +TUKU +35647 TUKU +PA +35652 HAD₂ +A +GAZ +SIM +35657 ZI₃ +GIG +35666 A +GEŠTIN +NA +35671 LAL +35685 GAZ +SIM +35688 ŠEŠ +35700 LAL +35720 ZI₃ +GIG +35735 TI +35758 GI +35761 GI +ŠUL +HI +35787 KI +MAH +GUB +35796 ŠEŠ₂ +35819 LAL +35845 SU +AN +DAR +ZI₃ +35850 DIŠ +NA +35875 ZI₃ +ŠE +SA +A +35902 DIŠ +NA +SAG +KI +35926 KIŠI₁₆ +HAB +35950 DIŠ +NA +SAG +KI +GUB₃ +35972 SU +AN +DAR +35990 DIŠ +NA +SAG +KI +MIN +36016 DUH +ŠE +GIŠ +I₃ +36036 DIŠ +NA +SA +SAG +KI +ZAG +36045 SI +SA₂ +ZI₃ +GIG +36050 DIŠ +NA +SA +SAG +KI +GUB₃ +36059 SI +SA₂ +36062 DIŠ +NA +SA +SAG +KI +ZAG +36088 EME +UR +GI₇ +36111 DIŠ +NA +SA +SAG +KI +36129 DIŠ +NA +SA +SAG +KI +36172 DIŠ +NA +36176 LAL +36179 DIŠ +NA +36182 DIŠ +36186 DIŠ +KIMIN +36190 ZU₂ +LUM +SA₅ +36195 DIŠ +NA +SA +SAG +KI +MIN +36202 ZI +36205 ŠAKIRA +36207 EME +UR +GI₇ +36212 U₂ +BABBAR +36219 IM +BABBAR +36222 NIG₂ +KALAG +GA +36229 DIŠ +KIMIN +KU +KU +36234 AŠ₂ +GI₄ +GI₄ +36238 DIŠ +KIMIN +PA +36242 ŠINIG +SIG₇ +36247 ŠA₃ +36249 PEŠ₄ +36253 DIŠ +NA +36256 DAB +GIDIM +SAG +KI +36262 SA +IGI +MIN +36277 NA₄ +AN +BAR +36282 EN₂ +36290 DIŠ +NA +SAG +KI +36295 DAB +36299 DIŠ +36301 SUD₂ +36308 IGI +36323 SIG₂ +BABBAR +36326 NINNI₅ +NITA₂ +NU +NU +EN₂ +36340 A +RI +A +NAM +LU₂ +U₁₈ +LU +SAG +KI +36358 DIŠ +36360 SUD₂ +36362 I₃ +36364 EREN +HI +HI +ŠEŠ₂ +MEŠ +36370 TI +DIŠ +NA +SAG +KI +DAB +BA +36378 SA +GU₂ +36381 GU₇ +MEŠ +36384 ŠU +GIDIM +MA +36399 GI +ŠUL +HI +GAZ +SIM +36405 A +GAZI +36412 DIŠ +NA +SAG +KI +DAB +BA +36419 TA +36421 UTU +ŠU₂ +A +EN +EN +NUN +UD +ZAL +LI +GU₇ +36435 DIŠ +NA +SAG +KI +DAB +BA +36442 ŠA₃ +ŠA₃ +36445 GU₃ +GU₃ +36448 ŠU +GIDIM +36457 DIŠ +NA +SAG +KI +DAB +BA +36466 BURU₈ +KI +NA₂ +36474 UŠ₂ +DIŠ +NA +SAG +KI +DAB +BA +36487 SA +SAG +KI +36521 SAG +KI +DAB +BA +ŠU +GIDIM +MA +36529 SU +NA +36536 NU +DU₈ +DUB +36540 KAM₂ +DIŠ +NA +UGU +36545 KUM₂ +36548 E₂ +GAL +36551 AN +ŠAR₂ +DU₃ +A +MAN +ŠU₂ +MAN +KUR +AN +ŠAR₂ +36564 AG +36569 GEŠTUG +MIN +DAGAL +36581 IGI +MIN +36594 LUGAL +MEŠ +36616 TA +36621 UMBIN +36624 BAR +MEŠ +36657 IGI +KAR₂ +36671 E₂ +GAL +36676 DIŠ +NA +SAG +ŠA₃ +36681 GU₇ +36687 ZE₂ +36692 NA +BI +36697 GIG +SUM +36700 GA +RAŠ +36703 UZU +GUD +UZU +ŠAH +KAŠ +36709 KURUN₂ +NA +NU +36717 TI +36721 SILA₃ +ZA₃ +HI +LI +36727 SILA₃ +36729 LI +36732 SILA₃ +36734 GUR₂ +GUR₂ +36738 SILA₃ +NUMUN +GADA +36743 SILA₃ +36747 MUNU₆ +36750 SILA₃ +36752 IM +DI +36756 SILA₃ +NUMUN +36764 SILA₃ +GAZI +36769 SILA₃ +36771 ŠE +NU +36775 SILA₃ +GU₂ +NIG₂ +AR₃ +RA +36782 SILA₃ +36787 ID₂ +36790 SILA₃ +U₂ +36797 SILA₃ +36799 KUR +RA +36803 SILA₃ +ŠE₁₀ +TU +36809 SILA₃ +NUMUN +36812 AB₂ +DUH +36816 SILA₃ +36820 A +ŠA₃ +36823 KISAL +ILLU +36826 BULUH +36828 KISAL +KA +A +AB +BA +36834 SILA₃ +ZI₃ +GIG +36838 SILA₃ +ZU₂ +LUM +MA +36843 SILA₃ +DIDA +SIG +36847 SILA₃ +ZI₃ +KUM +TEŠ₂ +BI +GAZ +SIM +36855 KAŠ +GIM +36864 TUG₂ +HI +A +SUR +36874 UD +36876 LAL +36879 UD +36881 DU₈ +36887 U₃ +BU₂ +BU₂ +UL +BABBAR +ŠA₃ +36899 U₃ +BU₂ +BU₂ +UL +SA₅ +ŠA₃ +36906 KUM₂ +36911 U₃ +BU₂ +BU₂ +UL +SIG₇ +UD +DA +KUR +36920 GUR +GUR +36925 U₃ +BU₂ +BU₂ +UL +GE₆ +36935 NU +TI +36938 U₃ +BU₂ +BU₂ +UL +36946 LAG +A +ŠA₃ +IM +GU₂ +36952 UD +DA +SA₂ +36956 GAZ +SIM +36959 A +GAZI +36965 LAL +36967 EGIR +36973 KAŠ +NAG +UD +36977 NAG +36980 A +36985 ŠINIG +36990 IN₆ +UŠ₂ +36996 DIŠ +NA +ZE₂ +GIG +SUM +37002 SUD₂ +37004 A +NU +37008 NAG +A +GEŠTIN +NA +KALAG +GA +AL +US₂ +SA +GAZI +37022 NAG +KAŠ +BIR₈ +NAG +37031 GAZI +37033 SUD₂ +37035 A +NAG +37038 MUN +SUD₂ +37041 A +NU +37045 NAG +37047 MUN +SUD₂ +37050 KAŠ +NU +37054 NAG +ILLU +37059 GAZ +37061 ŠA₃ +KAŠ₃ +BIR₈ +ŠUB +37067 MUL₄ +37073 LAL₃ +I₃ +37078 ŠA₃ +ŠUB +NAG +37085 NUMUN +GI +ZU₂ +LUM +MA +SUD₂ +37092 KAŠ +NAG +37099 SUD₂ +37101 KAŠ +NAG +U₂ +DILI +U₂ +ZE₂ +37108 KAŠ +NAG +U₂ +37116 U₂ +ZE₂ +37119 KAŠ +NAG +GAZI +37123 U₂ +ZE₂ +37126 KAŠ +NAG +U₂ +37130 LI +U₂ +ZE₂ +37134 KAŠ +NAG +U₂ +NU +LUH +HA +U₂ +ZE₂ +37143 KAŠ +NAG +U₂ +BAR +37150 U₂ +ZE₂ +37153 KAŠ +NAG +PA +37160 U₂ +ZE₂ +37163 KAŠ +NAG +U₂ +U₅ +ARGAB +37169 U₂ +ZE₂ +37172 KAŠ +NAG +U₂ +LAG +MUN +U₂ +ZE₂ +37180 KAŠ +NAG +U₂ +SUM +37185 U₂ +ZE₂ +37188 KAŠ +NAG +U₂ +SUHUŠ +37193 NAM +TAR +NITA₂ +U₂ +ZE₂ +SUD₂ +37200 KAŠ +NAG +U₂ +SUHUŠ +37207 U₂ +ZE₂ +37210 I₃ +37212 KAŠ +NAG +U₂ +37218 U₂ +ZE₂ +SUD₂ +37222 A +NAG +DIŠ +NA +NU +37229 ŠA₃ +37240 UH₂ +37243 ŠUB +MEŠ +A +MEŠ +37248 KA +37253 DU +37262 ŠA₃ +MEŠ +37265 MU₂ +MU₂ +37268 MURUB₄ +MIN +37274 TAG +GA +MEŠ +37278 KUM₂ +ŠED₇ +IR +TUKU +MEŠ +37284 NINDA +37286 KAŠ +LAL +A +ŠED₇ +37292 NAG +37297 DUR₂ +37299 GIŠ₃ +37301 SIG₇ +37306 MUŠ₂ +MEŠ +37314 UZU +MEŠ +37321 GU₇ +37323 UGU +37326 DU₁₀ +GA +NA +BI +ZE₂ +37335 TI +37338 GUR₂ +GUR₂ +37341 LI +37343 GAM +MA +37346 U₂ +HI +A +ŠEŠ +SIG₇ +37353 TI +37355 HAD₂ +A +SUD₂ +37359 GEŠTIN +KALAG +GA +NU +37365 NAG +37367 SI +SA₂ +37370 SAG +ŠA₃ +37373 ŠA₃ +37375 LAL +37379 GU₇ +37382 NAG +UD +37385 KAM +37391 TI +DIŠ +KI +MIN +37401 SUD₂ +37403 KAŠ +NU +37407 NAG +37412 DIŠ +KI +MIN +37420 SUD₂ +37422 GEŠTIN +KALAG +GA +NU +37428 NAG +37430 KI +MIN +DIŠ +KI +MIN +37439 SUD₂ +37441 GA +KU₇ +KU₇ +NAG +37446 KI +MIN +DIŠ +KI +MIN +HENBUR₂ +37453 UKUŠ₂ +HAB +SUD₂ +37457 GEŠTIN +LAL₃ +37460 I₃ +37463 NAG +37465 KI +MIN +DIŠ +KI +MIN +U₂ +SIG +MEŠ +37474 KUR +37477 GEŠTIN +LAL₃ +37480 I₃ +37483 NAG +37485 KI +MIN +DIŠ +NA +NINDA +GU₇ +KAŠ +NAG +37498 IGI +MEŠ +37501 NIGIN +MEŠ +37504 NA +BI +GIG +ZE₂ +GIG +37510 TI +37513 UKUŠ₂ +HAB +BIL₂ +37518 SI +SA₂ +37521 A +LUH +37525 BULUH +37530 NU +LUH +HA +37537 U₂ +HI +A +ŠEŠ +37542 KAŠ +SAG +37553 IGI +37555 UZ₃ +GAR +37558 GIŠ +HUR +NIGIN +37563 A₂ +GU₂ +ZI +GA +37573 NU +37576 NAG +37591 TI +37594 UD +ŠE +GA +NAG +37615 BAL +37617 KUR +KUR +37620 GEŠTIN +KA₅ +A +37627 SILA₃ +KAŠ +37631 ŠEN +TUR +ŠEG₆ +37635 EN +37638 SILA₃ +37649 IGI +ŠUB +37654 A +GAZI +37660 EGIR +37666 DUR₂ +37668 DUB +37670 DIŠ +KI +MIN +37674 UKUŠ₂ +HAB +HAD₂ +A +GAZ +SIM +KI +ZI₃ +KUM +HI +HI +37686 A +GAZI +37692 KUŠ +SUR +LAL +DIŠ +NA +37701 SAG +DU +37705 IGI +37713 GU₂ +37715 MURUB₄ +MIN +37721 GIR₃ +MIN +37724 GU₇ +MIN +37727 ŠA₃ +37732 ŠA₃ +37743 IGI +MEŠ +37751 NA +BI +ZE₂ +DAB +37757 TI +37760 EREN +37762 ŠUR +MIN₃ +37765 GIR₂ +GI +DU₁₀ +NAGA +SI +37771 IM +DU +MUN +37778 KAŠ +37782 NINDU +UŠ₂ +37786 DUR₂ +37788 DUB +37791 NU +LUH +HA +37795 LI +NA₄ +ZU₂ +LUM +MA +37804 DIŠ +37806 ARA₃ +ARA₃ +37809 I₃ +UDU +HI +HI +37815 DU₃ +37817 I₃ +GIŠ +SUD +37821 DUR₂ +37823 GAR +DIŠ +NA +GABA +37833 KUM₂ +MEŠ +ZU₂ +MEŠ +37843 KA +37845 DUGUD +NA +BI +ZE₂ +GIG +37851 TI +37854 GUR₂ +GUR₂ +37857 LI +37859 GAM +MA +MUN +ILLU +LI +TAR +37866 KU₆ +U₂ +BABBAR +37870 HAB +37875 HAB +37877 KUR +KUR +U₅ +ARGAB +37883 U₂ +HI +A +ŠEŠ +DIŠ +37890 KAŠ +37895 NAG +37897 BURU₈ +37902 KUR +RA +37906 ILLU +LI +TAR +37910 BULUH +37912 LI +37914 GUR₂ +GUR₂ +ILLU +37918 BULUH +NUMUN +37921 NU +LUH +HA +ZI₃ +37926 NU +LUH +HA +37933 TI +37937 KAŠ +NAG +37940 BURU₈ +37945 KUR +KUR +37948 NU +LUH +HA +37952 HAR +HAR +37955 ŠEŠ +ILLU +LI +DUR +KUR +37961 UH₂ +37963 ID₂ +37966 U₂ +NAM +TI +LA +37971 GAMUN +37976 KUR +RA +37981 GAZI +37984 U₂ +HI +A +ŠEŠ +KI +MIN +ILLU +LI +TAR +U₂ +BABBAR +U₅ +ARGAB +38005 BULUH +38009 KAŠ +NAG +38012 BURU₈ +38014 KUR +KUR +ILLU +LI +TAR +U₂ +BABBAR +38022 NAG +38024 BURU₈ +GI +DU₁₀ +GA +38029 MUG +GAZI +38032 U₂ +BABBAR +38037 IZI +ŠEG₆ +38040 NAG +38042 BURU₈ +38048 SUMUN +DAR +38059 KUR +RA +38062 IM +MAN +DU +GI +DU₁₀ +GA +38074 U₂ +HI +A +38081 KAŠ +NAG +38084 BURU₈ +GI +DU₁₀ +GA +PA +38092 BULUH +U₂ +NAM +TI +LA +ZU₂ +LUM +MA +38102 MUL₄ +38108 NU +38111 NAG +38113 BURU₈ +38120 ILLU +LI +TAR +38124 U₂ +HI +A +ŠEŠ +38129 KAŠ +NAG +38132 BURU₈ +38136 KUR +KUR +38139 GUR₂ +GUR₂ +NAGA +SI +MUN +38145 IGI +38148 IGI +38154 KUR +RA +38164 HAR +HAR +38167 U₂ +HI +A +ŠEŠ +DIŠ +38173 SUD₂ +38175 KAŠ +NAG +38178 BURU₈ +38181 GIN₂ +38188 GIN₂ +AL +US₂ +SA +38193 GIN₂ +A +GEŠTIN +NA +KALAG +GA +38200 GIN₂ +KAŠ +38203 GIN₂ +38209 GIN₂ +38211 HAR +HAR +38214 GIN₂ +SUM +38219 GIN₂ +MUN +38223 GIN₂ +GAZI +38230 MUL₄ +38238 KA +38241 DUR₂ +38243 SI +SA₂ +38246 TI +38250 A +UZU +38255 NAG +38259 DIŠ +NA +38262 ZE₂ +38273 DAB +38280 KUR +KUR +38283 GEŠTIN +KA₅ +A +38287 LI +38290 MUG +38292 SILA₃ +KAŠ +38295 ŠEN +TUR +ŠEG₆ +38302 I₃ +GIŠ +38305 IGI +38308 GIR₂ +38332 ŠA₃ +38338 UKUŠ₂ +HAB +38343 HAB +38345 HAB +38350 NU +LUH +HA +38354 HENBUR₂ +38356 EME +UR +GI₇ +38360 HENBUR₂ +38362 LI +HENBUR₂ +38365 GAM +ME +38371 HENBUR₂ +38373 UKUŠ₂ +HAB +38379 SUD₂ +38381 GEŠTIN +38383 DIŠ +NA +ZE₂ +38391 GIG +38393 TI +38401 IGI +38404 BULUH +38406 KUR +RA +ILLU +38411 DIŠ +NA +38423 GIG +38427 KUR +RA +URUDU +SUMUN +38432 U₂ +HI +A +ŠEŠ +DIŠ +38439 DIŠ +NA +ZE₂ +DAB +38445 KUR +RA +NU +38457 KAŠ +NAG +38460 KAŠ +SAL +LA +NAG +38476 ZI +38478 U₂ +BABBAR +ILLU +LI +TAR +38484 DIŠ +NA +38489 DAB +38492 GUR₂ +GUR₂ +38495 HAR +HAR +38498 KUR +KUR +38501 KUR +RA +38505 ILLU +LI +TAR +38509 NU +LUH +HA +38516 AŠGAB +38518 LAG +A +ŠA₃ +38524 BURU₈ +38526 HAR +HAR +38529 NU +LUH +HA +ILLU +LI +TAR +38536 LI +38538 GUR₂ +GUR₂ +38541 U₂ +HI +A +38545 ŠEŠ₂ +38550 KUR +KUR +NAGA +SI +38555 GUR₂ +GUR₂ +38558 LI +ILLU +LI +TAR +MUN +38565 U₂ +ME +NAG +38571 IM +DIŠ +NA +SAG +KI +DAB +BA +TUKU +38589 GIG +38591 TI +38594 GIN₂ +38596 GUR₂ +GUR₂ +38599 GIN₂ +38605 GIN₂ +38607 KUR +KUR +DIŠ +38611 GAZ +SIM +38614 I₃ +KAŠ +SAG +38622 DUR₂ +38624 DUB +38628 NAG +38630 DIŠ +NA +NU +38635 SAG +ŠA₃ +38643 KUM₂ +ŠA₃ +TUKU +MEŠ +38651 ZE₂ +38655 NA +BI +38663 GIG +38665 TI +38668 GUR₂ +GUR₂ +38671 LI +ILLU +LI +TAR +38679 KUR +KUR +MUN +NAGA +SI +TI +38688 KAŠ +SAG +38693 MUL₄ +38699 NU +38705 NAG +38713 TI +DIŠ +NA +ZE₂ +GIG +38723 EN₂ +ZE₂ +38727 ZE₂ +38755 ŠAH +38768 KA +INIM +MA +38772 EN₂ +38797 ER +38830 MA +38836 AH +38856 EN₂ +38869 GIM +IGIRA₂ +38872 SIG₇ +38891 BAD₃ +38941 GUD +TU₆ +EN₂ +EN₂ +UD₅ +38951 DUMU +38956 SIPA +38966 SIG₇ +U₂ +MEŠ +SIG₇ +MEŠ +38980 A +MEŠ +SIG₇ +MEŠ +38991 GIDRU +39020 HAR +HAR +39023 MUN +39027 GIM +39037 EN₂ +39042 EN₂ +39051 EN₂ +39059 TU₆ +EN₂ +KA +INIM +MA +39068 DU₃ +DU₃ +BI +39075 GAZI +39080 DIŠ +39082 SIG₃ +39084 EN₂ +39087 ŠID +39092 TI +39094 EN₂ +39108 EN₂ +KID₃ +KID₃ +BI +39114 MUN +39118 ŠUB +39121 ŠA₃ +EN₂ +ŠID +39125 NU +39128 NAG +39132 KA +INIM +MA +ZE₂ +A +KAM +IGI +39140 GAL₂ +LA +ILLU +LI +TAR +SUD₂ +39147 A +NAG +39151 PA +GI +ZU₂ +LUM +MA +SUD₂ +39159 GIN₂ +I₃ +GIŠ +39163 KAŠ +NAG +39173 GIN₂ +I₃ +GIŠ +39177 KAŠ +NAG +39181 ŠE +39183 IGI +39188 SILA₃ +I₃ +GIŠ +39192 KAŠ +NAG +39200 ŠA₃ +39204 GIN₂ +A +NAG +39208 IGI +39210 GAL₂ +LA +U₂ +39218 GIN₂ +A +NAG +39222 IGI +39224 GAL₂ +LA +U₂ +NAM +TI +LA +39232 GIN₂ +I₃ +GIŠ +NAG +39239 GIN₂ +39248 GIN₂ +A +NAG +39252 IGI +39254 GAL₂ +LA +39257 IGI +NIŠ +39261 GIN₂ +A +NAG +39265 IGI +39267 GAL₂ +LA +39277 GIN₂ +KAŠ +NAG +39281 DIŠ +NA +ZE₂ +DAB +39286 GAZI +39288 SUD₂ +39290 KAŠ +NAG +39297 DIŠ +KI +MIN +39302 KAŠ +NAG +39308 DIŠ +KI +MIN +39313 A +GEŠTIN +NA +KALAG +GA +NAG +39324 DIŠ +KI +MIN +39328 LI +SUD₂ +39331 KAŠ +NAG +39337 DIŠ +KIMIN +39346 SUD₂ +39348 A +NAG +39355 DIŠ +KIMIN +39358 IGI +39360 SUD₂ +39362 KAŠ +NAG +39368 DIŠ +KI +MIN +MUN +39374 A +39377 KAŠ +NAG +39384 DIŠ +KI +MIN +SUM +39389 SUD₂ +39391 A +NAG +39398 DIŠ +KI +MIN +ILLU +LI +TAR +SUD₂ +39406 A +NAG +39413 DIŠ +KI +MIN +ILLU +LI +TAR +SUD₂ +39421 A +39425 MUL₄ +39428 NAG +39433 DIŠ +KI +MIN +39437 UKUŠ₂ +HAB +39440 BULUH +39442 HAR +HAR +39445 I₃ +39447 MUL₄ +39450 NAG +39455 DIŠ +KI +MIN +39459 NU +LUH +HA +SUM +39468 SUD₂ +39470 KAŠ +NAG +39476 DIŠ +NA +IGI +SIG₇ +SIG₇ +GIG +39483 GIG +39486 ŠA₃ +IGI +MIN +39490 E₁₁ +39492 ŠA₃ +IGI +MEŠ +39496 GU +MEŠ +SIG₇ +MEŠ +39503 ŠA₃ +MEŠ +39509 NINDA +39511 KAŠ +39515 NA +BI +IM +DU₃ +A +BI +GIG +39526 BA +UŠ₂ +DIŠ +NA +IGI +SIG₇ +SIG₇ +GIG +39535 SAG +DU +39543 ADDA +39545 SUHUŠ +EME +39553 SUMUN +39555 BA +UŠ₂ +DIŠ +NA +SU +39561 SIG₇ +39565 SIG₇ +39568 UZU +TUKU +39575 MU +NI +39578 LI +SUD₂ +39581 KAŠ +NAG +39584 ŠE +LI +SUD₂ +39588 KAŠ +NAG +39591 ŠEŠ +SUD₂ +39594 KAŠ +NAG +SUHUŠ +39598 NAM +TAR +NITA₂ +39603 SI +SA₂ +39606 GURUN +NU +IL₂ +SUD₂ +39611 KAŠ +NAG +39617 KUR +39619 SUD₂ +39621 KAŠ +NAG +39627 SUD₂ +39629 KAŠ +NAG +39632 IGI +39634 SUD₂ +39636 KAŠ +NAG +39642 SUD₂ +39644 KAŠ +NAG +39650 SUD₂ +39652 A +NAG +IM +SAHAR +NA₄ +KUR +RA +SUD₂ +39661 A +MEŠ +ŠUB +39666 NAG +39668 LI +SUD₂ +39671 GA +NAG +39674 ŠE +LI +SUD₂ +39678 GA +NAG +39681 ŠEŠ +SUD₂ +39684 GA +NAG +39690 SUD₂ +39692 GA +NAG +39695 ŠE +KU +KU +AN +ZAH +39701 KAŠ +ŠUB +39704 MUL₄ +39709 NAG +39711 KAL +LA +SUD₂ +39715 I₃ +39720 KAŠ +NAG +NUMUN +39727 SUMUN +DAR +SUD₂ +39731 KAŠ +NAG +NUMUN +39737 SUD₂ +39739 KAŠ +NAG +NUMUN +39745 SUD₂ +39747 I₃ +39749 KAŠ +NAG +SUHUŠ +39755 SUD₂ +MIN +39759 IGI +NIŠ +SUD₂ +39763 KAŠ +NAG +SUHUŠ +39767 MA +NU +SUHUŠ +39771 NU +UR₂ +MA +39775 NINDU +UŠ₂ +39778 A +MEŠ +39788 NAG +39810 MUD₂ +39812 NIN +KA₆ +EDIN +39818 NINNI₅ +GUB +39825 I₃ +EŠ +MEŠ +I₃ +SUMUN +39832 ABUL +39837 TI +39839 I₃ +EŠ +MEŠ +GIR₃ +39845 ŠUB +39863 NIG₂ +GIDRU +SA₅ +SUD₂ +39868 KAŠ +NAG +39871 GUR₂ +GUR₂ +SUD₂ +39875 KAŠ +NAG +GURUN +39882 SUD₂ +39884 KAŠ +NAG +39887 HAR +HAR +SUD₂ +39891 KAŠ +NAG +SU +39895 NU +UR₂ +MA +SUD₂ +39900 KAŠ +NAG +39910 SUHUŠ +39912 EME +UR +GI₇ +SUD₂ +39917 KAŠ +NAG +IGI +39921 GAL₂ +LA +39925 IGI +NIŠ +39929 SUD₂ +39931 I₃ +39933 KAŠ +NAG +PA +39937 NU +UR₂ +MA +39941 DIŠ +NA +IGI +SIG₇ +SIG₇ +DIRI +SUHUŠ +39956 MUL₄ +39959 NAG +39965 SUHUŠ +39967 NU +UR₂ +MA +39972 SI +SA₂ +39980 BAR +39982 NU +UR₂ +MA +39996 DIŠ +NA +IGI +SIG₇ +SIG₇ +DIRI +40006 I₃ +UDU +UKUŠ₂ +HAB +40011 MUŠ +DIM₂ +GURUN +NA +40021 DIŠ +MIN +40026 I₃ +UDU +UKUŠ₂ +HAB +SUD₂ +40032 KAŠ +NAG +40035 DIŠ +MIN +UZU +GUD +40041 GU₇ +MEŠ +ZI₃ +40045 NU +IGI +DIŠ +MIN +ŠE₁₀ +NAM +LU₂ +U₁₈ +LU +40055 ŠEŠ +40057 I₃ +40059 KAŠ +NAG +40062 DIŠ +MIN +AMA +A +A +HAD₂ +DU +SUD₂ +40071 I₃ +40073 KAŠ +40075 KURUN₂ +NA +NAG +40079 BURU₈ +DIŠ +MIN +40085 ILLU +LI +TAR +U₂ +BABBAR +40091 I₃ +40093 KAŠ +NAG +40096 DIŠ +MIN +I₃ +UDU +UKUŠ₂ +HAB +40103 KAŠ +NAG +DIŠ +MIN +40108 ŠEŠ +NUMUN +40111 LI +IM +SAHAR +NA₄ +KUR +RA +SUD₂ +40119 I₃ +40121 KAŠ +NAG +40124 DIŠ +MIN +HAR +KUG +SIG₁₇ +HUŠ +A +40132 ŠU +40134 GAR +40136 DIŠ +NA +IGI +MIN +40141 IGI +SIG₇ +SIG₇ +PA +40146 NU +UR₂ +MA +SUD₂ +40152 SAG +KUD +40155 ŠA₃ +IGI +MIN +40159 MU₂ +40161 DIŠ +NA +IGI +MIN +40166 IGI +SIG₇ +SIG₇ +IGI +MEŠ +40172 UZU +MEŠ +40175 DIRI +40177 MUŠ +DIM₂ +GURUN +NA +40190 TI +40197 NA +ZA₃ +HI +LI +SUD₂ +40203 DIDA +HI +HI +GU₇ +MEŠ +40218 ŠE +SA +A +LAL +40224 DIDA +HI +HI +GU₇ +MEŠ +40238 I₃ +40240 KAŠ +NAG +40247 HU +40253 KAŠ +NAG +40263 NAG +40265 DIŠ +NA +IGI +MIN +40270 IGI +SIG₇ +SIG₇ +DIRI +40275 LAG +A +ŠA₃ +SUD₂ +40280 KAŠ +NAG +40286 SUD₂ +40288 KAŠ +40292 SUD₂ +40294 KAŠ +ŠIKA +NUNUZ +GA₂ +NU₁₁ +40300 SUD₂ +40302 KAŠ +KUG +SIG₁₇ +40306 SIG₂ +SA₅ +40309 ŠU +MIN +40312 KEŠDA +DIŠ +KI +MIN +40319 ŠAKIRA +U₂ +SA₅ +40323 LAL +GAZ +A +BI +40331 KAŠ +NAG +40336 DIŠ +KI +MIN +GAZI +40341 U₅ +ARGAB +40344 U₂ +BABBAR +40347 I₃ +NUN +SUD₂ +IGI +MIN +40361 ZI +40363 DIŠ +NA +SU +40367 SIG₇ +40369 ŠE +AN +ZAH +SUD₂ +40374 I₃ +40376 KAŠ +NAG +40383 BA +UŠ₂ +DIŠ +NA +IGI +MIN +40395 DIRI +40397 HAB +SUD₂ +40400 KAŠ +NAG +40405 DIŠ +MIN +SUHUŠ +40416 KAŠ +40420 IGI +40422 UTU +NAG +40427 DIŠ +SUHUŠ +40430 EME +UR +GI₇ +40438 KAŠ +40442 NAG +40446 DIŠ +40452 SUD₂ +40454 KAŠ +NAG +40460 DIŠ +NUNUZ +GA₂ +NU₁₁ +40465 SUD₂ +40467 KAŠ +NAG +40472 DIŠ +SUHUŠ +40475 NU +UR₂ +MA +SUD₂ +40480 KAŠ +40482 MUL +40486 A₂ +GU₂ +ZI +GA +NAG +40492 DIŠ +NUMUN +GI +ZU₂ +LUM +MA +SUD₂ +40500 KAŠ +40502 MUL +40506 A₂ +GU₂ +ZI +GA +NAG +40512 DIŠ +40514 GEŠTIN +KA₅ +A +SUD₂ +40519 KAŠ +NAG +40523 DIŠ +40525 NU +LUH +HA +SUD₂ +40530 KAŠ +NAG +40533 DIŠ +SUHUŠ +40536 NAM +TAR +SUD₂ +40540 KAŠ +NAG +40544 DIŠ +ILLU +40553 KAŠ +NAG +40556 DIŠ +40558 MUŠ +DIM₂ +GURUN +NA +GAL +40566 KAŠ +40568 I₃ +NAG +40571 DIŠ +NA +SU +40575 SIG₇ +IGI +40578 SIG₇ +40580 GE₆ +SUHUŠ +EME +40584 GE₆ +40588 MU +NE +MUŠ +DIM₂ +GURUN +NA +GAL +40597 EDIN +40601 KAŠ +NAG +40607 ŠA₃ +40609 SI +SA₂ +40612 DIŠ +NA +40617 DIRI +40619 LI +SUD₂ +40622 KAŠ +NAG +40625 ŠE +LI +BABBAR +IM +SAHAR +NA₄ +KUR +RA +SUD₂ +40635 I₃ +40637 KAŠ +NAG +40643 KU₇ +KU₇ +SUD₂ +40647 KAŠ +NAG +40653 SUD₂ +40655 KAŠ +NAG +SUHUŠ +GI +ZU₂ +LUM +MA +SUD₂ +40664 A +NAG +40667 ŠEŠ +SUD₂ +40670 GA +NAG +DIŠ +NA +40677 DIRI +SUHUŠ +40685 KAŠ +40689 MUL₄ +40692 NAG +DIŠ +NA +40698 DIRI +40718 MUD₂ +KUN +DAR +GURUN +NA +ŠEŠ₂ +40735 ABUL +40740 TI +40743 I₃ +GIŠ +ŠUB +40756 ŠUB +40777 DIŠ +NA +40782 DAB +40784 SUHUŠ +40786 NAM +TAR +NITA₂ +40790 IGI +40792 SI +SA₂ +TI +40797 KAŠ +NAG +40800 HAR +HAR +40807 KUR +GI +RIN₂ +NA +SUD₂ +40813 KAŠ +40815 ŠE +LI +BABBAR +SUD₂ +40820 KAŠ +NAG +40823 IGI +40826 IGI +NIŠ +40829 KAŠ +SUHUŠ +40837 DIŠ +NA +MIN +IGI +SIG₇ +SIG₇ +40844 LI +40846 ŠEŠ +SUD₂ +40849 KAŠ +NU +40853 NAG +DIŠ +NA +MIN +IM +SAHAR +NA₄ +KUR +RA +IM +SAHAR +GE₆ +KUR +RA +DIŠ +40870 KAŠ +40872 SUD +40880 DIŠ +NA +MIN +40884 ŠE +MEŠ +AN +ZAH +SUD₂ +40890 KAŠ +40892 SUD +40896 I₃ +40900 ŠA₃ +ŠUB +40903 NU +40906 NAG +DIŠ +NA +MIN +40911 KAL +LA +SUD₂ +40915 I₃ +40917 KAŠ +NAG +NUMUN +40924 KAŠ +NAG +NUMUN +40934 NUMUN +40938 SUD₂ +40940 I₃ +40942 KAŠ +NAG +SUHUŠ +40949 I₃ +40951 KAŠ +NAG +40954 IGI +NIŠ +SUD₂ +40958 KAŠ +NAG +MEŠ +DIŠ +MIN +SUHUŠ +40967 SUHUŠ +40969 NU +UR₂ +MA +40973 A +ŠUB +40976 NINDU +UŠ₂ +40979 E₁₁ +40984 ŠED₇ +NU +40988 NAG +MEŠ +DIŠ +NA +40996 IGI +MIN +40999 E₁₁ +41002 IGI +MIN +41005 GU +MEŠ +SIG₇ +MEŠ +41012 ŠA₃ +MEŠ +41018 NINDA +41020 KAŠ +41024 NA +BI +41030 NU +TI +UŠ₂ +DIŠ +NA +41038 GIG +SAG +DU +41045 SU +41051 SUHUŠ +EME +41054 DAB +41056 GIG +41061 A +ZU +ŠU +41065 NU +41068 NA +BI +UŠ₂ +NU +TI +DIŠ +NA +UD +DA +KUR +41079 ZI +SAG +KI +GIG +41085 DUGUD +41088 TI +BI +41099 E₂ +GAL +41102 AN +ŠAR₂ +DU₃ +A +MAN +ŠU₂ +MAN +KUR +AN +ŠAR₂ +41115 AG +41121 GEŠTU +MIN +41135 IGI +MIN +41148 LUGAL +MEŠ +41170 TA +41173 EN +UMBIN +41177 BAR +MEŠ +41210 IGI +KAR₂ +41225 E₂ +GAL +41233 SAG +DU +41236 ŠEŠ₂ +41238 TI +41259 A +PU₂ +41264 KU₆ +NU +GAL₂ +ŠUB +TU₅ +41271 UH +NU +TE +41284 I₃ +GIŠ +41289 HI +HI +EŠ +MEŠ +DIŠ +NA +SAG +DU +41311 MU +NI +41330 TI +LA +41341 URI +SUD₂ +41344 I₃ +GIŠ +BARA₂ +ŠEŠ₂ +41356 DIŠ +NA +SAG +DU +41368 DIRI +PIŠ₁₀ +41371 ID₂ +SUD₂ +41374 I₃ +GIŠ +41379 HI +HI +EŠ +MEŠ +41384 DIŠ +KI +MIN +PIŠ₁₀ +41389 ID₂ +41394 I₃ +GIŠ +SAG +DU +41405 MUN +41410 I₃ +SAG +DU +41417 DIŠ +NA +SAG +DU +41425 DAB +41438 EGIR +41440 GAL +41442 NUMUN +41444 EME +UR +GI₇ +SAHAR +ŠE +GIŠ +I₃ +SAHAR +41455 DIH₃ +SAHAR +ŠE +GIŠ +I₃ +SAHAR +MUNU₆ +ŠE₁₀ +TU +41465 MEŠ +41468 GIŠIMMAR +KUR +RA +HAD₂ +DU +41474 NUMUN +41476 DILI +SUD₂ +41479 A +GAZI +41482 KUM₂ +41484 SILA₁₁ +41486 SAG +DU +41489 SAR +41494 LAL +41496 KA +DUB +MIN +41500 DIŠ +NA +SAG +DU +41508 DAB +41510 SAHAR +KUN₄ +41517 E₂ +SUMUN +U₂ +BABBAR +SIG₇ +SIG₇ +41524 U₄ +41527 ŠA₃ +41532 GAL +41534 NUMUN +41536 EME +UR +GI₇ +SAHAR +ŠE +GIŠ +I₃ +41544 SUHUŠ +41548 GAZ +DUH +ŠE +GIŠ +I₃ +HAD₂ +A +UŠ +MUNU₆ +ŠE₁₀ +TU +41564 PEŠ₄ +NUMUN +41567 DILI +41569 U₂ +HI +A +ŠEŠ +DIŠ +41575 SUD₂ +SAG +DU +41580 I₃ +GIŠ +MUD₂ +41584 EREN +EŠ +MEŠ +U₂ +HI +A +41594 UGU +MAR +LAL +41599 TI +DIŠ +NA +SAG +DU +41608 DAB +41615 IGI +A +MEŠ +SAHAR +41624 ŠAH +ŠE₁₀ +PEŠ₂ +GIŠ +KIN₂ +41637 KU +KU +41640 TASKARIN +KU +KU +41644 KIŠI₁₆ +41658 SUHUŠ +41670 PA +41674 PA +41676 ŠE +NU +ZI₃ +GU₂ +GAL +ZI₃ +GU₂ +TUR +ZI₃ +ŠE +SA +A +LAL +MEŠ +41692 TI +DIŠ +NA +SAG +DU +41701 DAB +41708 IGI +A +MEŠ +41726 GUR₂ +GUR₂ +41729 LI +41731 KUR +KUR +41736 ŠE +SA +A +41742 DIŠ +41744 SUD₂ +41751 SAG +NA +41758 DIŠ +NA +SAG +DU +41766 DAB +41773 GUR₂ +GUR₂ +41779 GAZ +SIM +KI +GU₂ +GAL +41785 DIŠ +NA +SAG +DU +41793 DAB +41800 ŠU +U +NITA₂ +41808 KA +41816 DIŠ +NA +SAG +DU +41824 DAB +41838 KAŠ +SAG +NAG +41843 DIŠ +NA +41849 SAG +DU +41852 DAB +41854 SUHUŠ +41864 NAG +41868 DIŠ +NA +41874 ŠUB +41876 DAB +41879 GIN₂ +41904 ŠA₃ +41914 ŠU +41934 DIŠ +NA +41940 ŠUB +41942 DAB +41945 GIN₂ +41947 KUR +RA +41950 GIN₂ +GAZI +41956 UTUL₇ +41968 IGI +41970 UTUL₇ +41972 NIG₂ +SILA₁₁ +GA₂ +ZIZ₂ +A +AN +UŠ₂ +41980 IZI +41985 SAG +KUD +41993 MURUB₄ +41996 BUR +ZI +42007 SAG +KUD +E₁₁ +42012 KA +42014 GID₂ +42020 ŠEG₆ +42022 A +UZU +42025 UZU +AL +GUR₄ +RA +GU₇ +42033 DIŠ +NA +42038 DAB +42041 KAL +SUD₂ +42046 NAG +MEŠ +42049 TI +42051 DIŠ +NA +42056 DAB +42063 ŠE +MEŠ +42066 NE +42075 ŠA₃ +GI +DU₁₀ +GA +TI +42089 KA +42104 TI +42113 SUD₂ +42115 I₃ +GIŠ +42118 KAŠ +SAG +NAG +42122 TI +42124 DIŠ +NA +SAG +DU +42137 GAZI +42139 NUMUN +42141 KU₆ +42149 ŠEŠ₂ +MEŠ +TI +42156 DIDA +SIG₅ +LAL +42163 ARA₃ +42166 UGU +MAR +42171 GAR +42174 TI +42184 MUL₄ +42191 NAG +42194 SILA₃ +42198 SILA₃ +42202 KAŠ +SAG +42220 UD +42222 KAM₂ +LAL +42225 TI +42230 DABIN +42232 KAŠ +42235 SAG +DU +42238 ŠED₇ +NUMUN +42241 KU₆ +SUD₂ +42244 I₃ +HI +HI +42249 ŠEN +TUR +ŠEG₆ +42253 EŠ +MEŠ +42256 TI +DIŠ +NA +42262 DAB +42264 ILLU +42266 BULUH +42268 BAL +42270 NE +SAR +42281 TI +DIŠ +KI +MIN +42286 HAB +ILLU +42289 BULUH +42291 KUR +GI +RIN₂ +NA +42296 IZI +ŠUB +42305 I₃ +GIŠ +KA +KIR₄ +42313 MU₂ +42315 TI +DIŠ +NA +42321 DAB +42324 IGI +42327 KUR +KUR +NUMUN +GAZI +42332 NUMUN +42334 AB₂ +DUH +U₂ +MAŠ +TAB +BA +42341 I₃ +ŠEŠ₂ +42345 NE +SAR +42348 EN₂ +42357 TI +TI +42363 ŠU +42397 IMIN +NA +42410 KUM₂ +42412 NU +42436 TU₆ +EN₂ +KA +INIM +MA +MAŠ +TAB +BA +KE₄ +DU₃ +DU₃ +BI +GAZI +42451 GUR₂ +GUR₂ +U₂ +42458 NE +SAR +42461 EN₂ +42467 ŠID +42470 TI +EN₂ +42504 EN₂ +KA +INIM +MA +MAŠ +TAB +BA +KE₄ +DU₃ +DU₃ +BI +42516 AB₂ +DUH +42522 I₃ +GIŠ +HI +HI +EN₂ +42529 ŠID +42531 ŠEŠ₂ +ŠEŠ₂ +42534 TI +U₂ +42539 KUD +42541 NUMUN +42546 SUD₂ +42548 I₃ +GIŠ +ŠEŠ₂ +42555 SUD₂ +42557 I₃ +GIŠ +ŠEŠ₂ +U₂ +BABBAR +SUD₂ +42564 I₃ +GIŠ +ŠEŠ₂ +42572 HAB +42580 U₂ +BABBAR +ILLU +42584 BULUH +42589 TEŠ₂ +BI +42594 I₃ +GIŠ +42597 KAŠ +SAG +NAG +MEŠ +42602 TI +DIŠ +NA +42608 DAB +42611 TI +42613 U₂ +BABBAR +U₅ +ARGAB +42618 MUN +42623 KUR +RA +42634 SAG +DU +42637 LUH +42639 GUR +42645 SAG +DU +42648 MAR +42650 AKA₃ +NIGIN +42697 SIG₃ +42701 SAG +KI +MEŠ +42726 ŠA₃ +ŠID +42734 DUB +42750 GU₇ +42754 NAG +42756 TI +42773 AB₂ +DUH +U₂ +MAŠ +TAB +BA +42780 I₃ +GIŠ +ŠEŠ₂ +TI +42796 KA +42806 NE +SAR +42810 MAŠ +TAB +BA +ZI +42815 EN₂ +42826 TU₆ +EN₂ +42829 DU₃ +DU₃ +BI +A +42834 NU +UR₂ +MA +42844 KA +42861 NUMUN +42863 KU₆ +42868 IGI +42871 IGI +NIŠ +42874 I₃ +42885 GAR +42890 SAG +DU +42893 LUH +42895 EŠ +MEŠ +42909 NA₄ +UKUŠ₂ +HAB +GAZI +42914 BIL +42917 I₃ +GIŠ +42922 HI +HI +ŠEŠ₂ +MEŠ +42928 KUM₂ +42931 SAG +DU +42934 ŠUB +42939 HI +HI +42945 I₃ +GIŠ +42952 I₃ +NUN +HI +HI +EŠ +MEŠ +42960 SAG +DU +42963 LUH +42965 NA₄ +UKUŠ₂ +HAB +SUD₂ +42970 I₃ +GIŠ +42975 EŠ +MEŠ +42979 ŠA₃ +ŠUB +42982 TA +42986 SAG +DU +42989 EŠ +MEŠ +42994 HAD₂ +DU +42997 I₃ +UDU +BIL +ZA +ZA +43003 I₃ +NUN +HI +HI +ŠEŠ₂ +MEŠ +43010 SIG₂ +E₃ +43014 A +GEŠTIN +NA +KALAG +GA +HI +HI +SAG +DU +43028 EŠ +MEŠ +43039 SAR +43046 A +KUM₂ +43049 SAG +DU +43052 LUH +43054 I₃ +GIŠ +43059 EŠ +MEŠ +I₃ +UDU +UKUŠ₂ +HAB +43074 MAR +43076 EŠ +MEŠ +43079 TI +DIŠ +KI +MIN +I₃ +GIŠ +43088 KUM₂ +43091 SAG +DU +43094 ŠUB +43096 DIŠ +KIMIN +43105 GEŠTIN +KA₅ +A +SUD₂ +43110 I₃ +GIŠ +43115 EŠ +MEŠ +DIŠ +KI +MIN +PIŠ₁₀ +43122 ID₂ +43126 HI +HI +EŠ +MEŠ +43131 DIŠ +KIMIN +PIŠ₁₀ +43135 ID₂ +43137 LAL₃ +KUR +43140 HI +HI +EŠ +MEŠ +DIŠ +KI +MIN +43148 IN₆ +UŠ₂ +SUD₂ +43152 I₃ +EŠ +MEŠ +43156 DIŠ +KIMIN +43161 SUD₂ +43163 I₃ +UDU +HI +HI +EŠ +MEŠ +43170 DIŠ +KIMIN +43173 TAL₂ +TAL₂ +MAR +43177 I₃ +EŠ +MEŠ +DIŠ +KI +MIN +43184 KU₆ +43186 GA +AB₂ +43189 KAŠ₃ +AB₂ +SIG₃ +43193 SAG +DU +43196 LUH +43198 MAŠ +HUŠ +43202 SUD₂ +SAG +DU +43206 SAR +43208 I₃ +EŠ +MEŠ +43212 DIŠ +KI +MIN +I₃ +UDU +UKUŠ₂ +HAB +NA₄ +UKUŠ₂ +HAB +43224 SUD₂ +SAG +DU +43228 SAR +43230 I₃ +EŠ +MEŠ +LAL +ŠUB +LAL +DIŠ +KI +MIN +43242 SUD₂ +43244 I₃ +GIŠ +43249 HI +HI +EŠ +MEŠ +43254 SIG₂ +E₃ +43257 DIŠ +KI +MIN +43263 SUD₂ +SAG +DU +43267 EŠ +MEŠ +ZI₃ +GU₂ +GAL +ZI₃ +GU₂ +TUR +43276 LAG +GA₂ +SUD₂ +43280 A +GAZI +43283 SILA₁₁ +43285 LAL +43289 NAGA +SI +43295 A +KUM₂ +43298 SAG +DU +43301 LUH +43305 DIŠ +NA +43310 DIRI +43312 KU₆ +43316 DIŠ +43318 SUD₂ +43320 I₃ +HI +HI +EŠ +MEŠ +43326 SIG₂ +E₃ +43329 DIŠ +KI +MIN +43336 AB₂ +DUH +SUD₂ +43341 SAG +DU +43344 LUH +43346 BAR +43354 ARA₃ +43356 MAR +DIŠ +KI +MIN +I₃ +ŠA₃ +KU₆ +EŠ +MEŠ +43367 SUD₂ +MAR +DIŠ +KI +MIN +43376 E₂ +GAR₈ +43381 ŠEŠ₂ +43386 LAL₃ +KUR +43389 BABBAR +43391 A +LUH +43396 U₂ +BABBAR +43399 KU₆ +43404 U₂ +43409 SAG +DU +43413 I₃ +EŠ +MEŠ +43417 IGI +43420 KU₆ +SUHUŠ +43423 MAŠ +HUŠ +SUHUŠ +43429 UZU +DIR +SUD₂ +43435 A +SAG +DU +43439 LUH +43441 I₃ +EŠ +MEŠ +DIŠ +NA +43447 SAG +DU +43450 LUH +43452 LAL +43457 SUD₂ +43459 I₃ +EŠ +MEŠ +43463 SUD₂ +43465 LAL₃ +KUR +43468 EŠ +MEŠ +43480 DIŠ +KI +MIN +43484 LAG +GANA₂ +GAZ +I₃ +UDU +A +ZA +LU +LU +SUD₂ +43499 ZI +43504 SUN₂ +43510 DIŠ +KI +MIN +43514 LAG +A +ŠA₃ +43518 IGI +43521 IM +SAHAR +GE₆ +KUR +RA +43527 DIŠ +KI +MIN +NUMUN +GA +RAŠ +43540 DIŠ +43542 SUD₂ +43544 DIŠ +NA +SAG +DU +43552 DAB +43554 ŠE₁₀ +43557 SUD₂ +43560 MAR +43579 KAŠ +LUH +43582 KU +KU +43585 TASKARIN +MAR +LAL +43589 IGI +KI +NA₂ +43603 KU +KU +43606 TASKARIN +KU +KU +43614 KU +KU +43620 ŠE₁₀ +43633 DU₈ +SAR +43637 MAN +DU +43640 EREN +43643 SUD₂ +43647 A +GAZI +43650 LUH +43652 KU +KU +43655 TASKARIN +KU +KU +43663 KU +KU +43670 DIŠ +KI +MIN +SAG +DU +43679 I₃ +HAB +ŠEŠ₂ +43683 IGI +KI +NA₂ +43687 DU₈ +SUHUŠ +43690 SUHUŠ +43695 IM +GU₂ +NIG₂ +NIGIN₂ +NA +43703 NUMUN +43710 DIŠ +43712 SUD₂ +43714 KAŠ₃ +AB₂ +GU₄ +SAG +DU +43723 KAŠ +LUH +43727 A +GAZI +43732 NUMUN +43734 ŠE +NU₂ +A +NUMUN +43739 NAM +TAR +NUMUN +GADA +NUMUN +43745 AB₂ +DUH +PA +43749 TAL₂ +TAL₂ +43752 DIH₃ +43764 KUR +GI +RIN₂ +NA +43773 PA +43775 MA₂ +ERIŠ₄ +MA₂ +LA₂ +43781 MAŠ +HUŠ +43790 HAD₂ +A +GAZ +SIM +43795 A +GAZI +43798 SILA₁₁ +43800 GUR +43802 HAD₂ +A +GAZ +SIM +43807 KAŠ +SAG +43823 NU +DU₈ +43830 DU₈ +43833 KAŠ₃ +KUM₂ +43836 LUH +43846 DIŠ +KI +MIN +43852 I₃ +UDU +SUD₂ +43857 DIŠ +KI +MIN +PIŠ₁₀ +43862 ID₂ +43864 GAMUN +GE₆ +43867 DIŠ +KI +MIN +43871 KAL +SUD₂ +43874 DIŠ +NA +SAG +DU +43882 DAB +43885 KUR +RA +43895 I₃ +GIŠ +43900 EŠ +MEŠ +43903 DIŠ +NA +43908 GIG +43920 DIŠ +KI +MIN +A +GEŠTIN +NA +BIL +LA₂ +43936 IM +GU₂ +EN +NA +43942 KI +MIN +ŠE₁₀ +43950 DIŠ +KI +MIN +43959 MAR +43961 I₃ +NUN +EŠ +MEŠ +43966 DIŠ +KI +MIN +A +GEŠTIN +NA +BIL +LA₂ +43975 MAR +SUM +43978 SUM +SIKIL +43982 DIŠ +NA +SAG +DU +43989 ZI₃ +KUM +ZI₃ +GU₂ +GAL +IM +BABBAR +43999 NAGA +SI +44002 IM +GU₂ +EN +NA +44007 GAZ +SIM +SAG +44013 I₃ +NUN +EŠ +MEŠ +LAL +ŠUB +44020 GEŠTIN +KA₅ +A +44025 DIŠ +KI +MIN +44031 DIŠ +KI +MIN +44038 LI +DABIN +44041 A +GEŠTIN +NA +HI +HI +SAG +DU +44052 UD +44054 KAM +ŠUB +44060 SAG +DU +44063 LUH +44065 UD +44067 KAM +ŠUB +44070 SAR +44072 UGU +44081 ŠED₇ +I₃ +NUN +MUN +44089 DIDA +SIG +44092 I₃ +GIŠ +44103 SUD₂ +MAR +GURUN +UKUŠ₂ +HAB +44114 IGI +GIG +44119 A +GEŠTIN +NA +44123 I₃ +GIŠ +44128 EŠ +MEŠ +U₂ +BABBAR +44135 KU₆ +MUN +44141 KAŠ₃ +ANŠE +44144 A +GEŠTIN +NA +44148 EN₂ +44173 DU₃ +DU₃ +BI +44179 UGU +44188 E₂ +GAR₈ +44194 I₃ +NUN +SUMUN +HI +HI +44201 EN₂ +44211 DU₃ +DU₃ +BI +44219 KUG +SIG₁₇ +IGI +GIG +44228 GA +RAŠ +44236 KUR +RA +44239 EN₂ +44242 GIM +44247 KA₂ +44252 EN₂ +44266 EN₂ +44281 DU₃ +DU₃ +BI +44288 A +GEŠTIN +NA +44295 MAR +44299 KA +INIM +MA +GIG +GIR +ZI +44372 ZI +44386 SUN₂ +ŠEŠ₂ +KUŠ +ANŠE +44391 IZI +44394 SUD₂ +MAR +44401 IZI +44413 IGI +GIG +MAR +44420 UDU +NITA₂ +IGI +GIG +EŠ +MEŠ +KUŠ +HAD₂ +A +GAZ +44433 TI +GUD +ID₂ +44437 IZI +44440 IGI +GIG +MAR +44444 IGI +44446 SUD₂ +IGI +GIG +EŠ +MEŠ +44464 KUG +SIG₁₇ +IGI +GIG +44477 TI +LA +KE₄ +44494 SAG +DU +44505 UD +44507 KAM +SAG +DU +44516 LUH +44519 MAR +44521 MAR +44523 MAR +44525 DIŠ +NA +ŠA₃ +44529 GIG +GA +44532 AB₂ +KUG +GA +I₃ +NUN +UD +44539 KAM₂ +NAG +44542 DIŠ +NA +ŠA₃ +44546 GIG +44548 GEŠTIN +KA₅ +A +SUD₂ +44553 KAŠ +NAG +44556 IM +DU +SUD₂ +44560 KAŠ +NAG +44566 SUD₂ +44568 KAŠ +NAG +44572 SILA₃ +44578 SILA₃ +NAGA +SI +44583 SILA₃ +IM +GU₂ +EN +NA +44590 SILA₃ +44592 ŠE +NU +44596 SILA₃ +ZI₃ +KUM +44601 SILA₃ +44603 LI +44606 SILA₃ +44608 GUR₂ +GUR₂ +44612 SILA₃ +ZI₃ +GU₂ +GAL +44618 SILA₃ +ZI₃ +GU₂ +TUR +44624 SILA₃ +44626 SIKIL +44629 SILA₃ +44631 NIG₂ +GIDRU +44635 SILA₃ +44640 GAZ +44642 KAŠ +SAG +44646 ŠEN +TUR +44651 TUG₂ +44655 IGI +44657 MAŠ +SILA₃ +LAL +44662 KI +MIN +44666 SILA₃ +44672 SILA₃ +ŠE₁₀ +TU +44678 SILA₃ +ŠE +SA +A +44684 SILA₃ +44686 LI +44689 SILA₃ +44691 GUR₂ +GUR₂ +HI +HI +44705 KAŠ +SAG +SILA₁₁ +44709 LAL +44712 KI +MIN +44715 MA +NA +PA +44719 ŠE +HAR +SUD₂ +44723 A +GAZI +44726 ŠEG₆ +44731 LAL +44734 KI +MIN +44738 SILA₃ +ZA₃ +HI +LI +44744 SILA₃ +ŠE +SA +A +SUD₂ +44750 A +GAZI +44753 SILA₁₁ +44756 GUR₂ +GUR₂ +44759 LI +44761 IGI +44765 IGI +44767 MAŠ +SILA₃ +LAL +44771 KI +MIN +44775 SILA₃ +ZI₃ +MUNU₆ +44780 SILA₃ +ZI₃ +DUH +ŠE +GIŠ +I₃ +44788 SILA₃ +ZI₃ +GIG +44793 SILA₃ +44795 GUR₂ +GUR₂ +44799 SILA₃ +44801 LI +SUD₂ +HI +HI +44806 A +GAZI +44812 LAL +44814 DIŠ +NA +ŠA₃ +44818 GIG +PA +44824 HAD₂ +A +GAZ +SIM +44829 LAL₃ +KAŠ +SAG +44833 I₃ +44836 SIG₃ +44842 NAG +44845 DUR₂ +44847 SI +SA₂ +44850 TI +DIŠ +NA +ŠA₃ +44855 GIG +44864 A +ŠED₇ +44869 NU +44872 NAG +DIŠ +NA +ŠA₃ +44877 GIG +44879 DUB₂ +NUMUN +GIŠ +GI +ZU₂ +LUM +MA +SUD₂ +44888 KAŠ +SAG +NAG +44893 SILA₃ +44899 SILA₃ +NAGA +SI +44904 SILA₃ +ZI₃ +GIG +44909 SILA₃ +ZI₃ +KUM +GAZ +44914 KAŠ +SAG +SILA₁₁ +44919 TUG₂ +SUR +IGI +44923 MAŠ +SILA₃ +LAL +DIŠ +NA +ŠA₃ +44930 GIG +44932 IGI +44934 SUD₂ +44936 KAŠ +SAG +44941 MUL₄ +44944 NU +44947 NAG +PA +44950 ŠE +NU +GAZ +44954 ZI₃ +KUM +HI +HI +44959 A +GAZI +44965 TUG₂ +HI +A +SUR +IGI +44971 MAŠ +SILA₃ +LAL +44975 KI +MIN +GA +RAŠ +44983 TI +44987 GA +NAG +44991 SILA₃ +ZA₃ +HI +LI +44997 SILA₃ +ŠE +SA +A +45002 GA +SILA₁₁ +45006 TUG₂ +SUR +LAL +DIŠ +NA +ŠA₃ +45013 GIG +45015 ŠA₃ +GIR₃ +PAD +DU +45020 SIG₇ +ŠA₃ +45023 GIG +MEŠ +DIRI +UD +DA +SA₂ +SA₂ +I₃ +UDU +UKUŠ₂ +HAB +45035 ZI₃ +ŠE +SA +A +HI +HI +45046 LAL₃ +SUD +45053 SILA₃ +ZA₃ +HI +LI +45060 SUD₂ +45062 UZU +GUD +GUR₄ +RA +GU₇ +MEŠ +45070 SILA₃ +ZA₃ +HI +LI +45081 SILA₁₁ +45083 LAL +DIŠ +NA +ŠA₃ +45088 GIG +45093 TUKU +45095 NINDA +GU₇ +KAŠ +NAG +45100 DUR₂ +45102 DUB +45109 A +GAR₃ +BURU₈ +GIGURU₃ +45114 NU +LUH +HA +SUD₂ +45119 A +NAG +U₂ +BABBAR +45124 I₃ +GIŠ +45129 DUR₂ +45131 DUB +45133 GEŠTIN +SUR +NAG +45137 LI +ŠIM +ŠAL +45145 ŠEN +TUR +45150 TUG₂ +SUR +LAL +45154 KI +MIN +U₂ +BABBAR +45159 I₃ +GIŠ +NAG +45173 IN₆ +UŠ₂ +45176 EME +UR +GI₇ +45180 A +ŠEG₆ +GA₂ +45186 A +GAZI +45195 GIŠIMMAR +PA +45201 ŠE +LI +PA +45205 ŠE +NU +45208 LI +45210 GUR₂ +GUR₂ +45218 KUŠ +45222 LAL +45224 KI +MIN +45227 GEŠTIN +KA₅ +A +45231 KAŠ +NAG +U₂ +BABBAR +45236 I₃ +NAG +45244 LAL₃ +GU₇ +A +45248 ŠE +NU +A +GAZI +45254 DUR₂ +45256 DUB +45258 PA +45264 SIKIL +PA +45267 ŠAKIRA +PA +45270 IN₆ +UŠ₂ +GAZ +45278 SUR +LAL +45281 KI +MIN +45284 NU +LUH +HA +45291 SUD₂ +45293 KAŠ +NAG +U₂ +BABBAR +45298 I₃ +GIŠ +45303 DUR₂ +45305 DUB +45307 PA +45309 GUR₂ +UŠ +PA +45313 KIŠI₁₆ +PA +45316 DIH₃ +45318 A +ŠEG₆ +GA₂ +45324 A +45326 ŠE +NU +A +GAZI +45332 DUR₂ +45334 DUB +45337 LI +45339 GUR₂ +GUR₂ +45346 ŠEN +TUR +45351 TUG₂ +45355 LAL +DIŠ +NA +ŠA₃ +45360 GIG +45362 ŠA₃ +45374 KI +MIN +U₂ +BABBAR +45382 SIKIL +45391 DUR₂ +45393 DUB +45396 LI +45398 ŠE +LI +45401 GAM +MA +ILLU +45405 BULUH +ŠIM +HI +A +GAZ +45411 I₃ +UDU +HI +HI +45416 KUŠ +SUR +LAL +45420 KI +MIN +45423 ŠE +LI +BABBAR +45427 KAŠ +NAG +45433 SUHUŠ +45435 NAM +TAR +NITA₂ +45439 KAŠ +NAG +45445 LAL₃ +KUR +RA +HAD₂ +DA +45451 A +45453 ŠE +NU +45458 A +GEŠTIN +NA +I₃ +GIŠ +KUM₂ +45466 DUR₂ +45468 DUB +45470 PA +45474 PA +GIŠ +GI +ZU₂ +LUM +MA +PA +45482 ŠAKIRA +PA +45485 EME +UR +GI₇ +45489 LI +ZU₂ +LUM +MA +SUD₂ +45495 KAŠ +HI +HI +GUR +45500 HAD₂ +DU +GAZ +SIM +45509 KUŠ +SUR +LAL +45513 KI +MIN +45516 KUR +KUR +45519 KAŠ +NAG +45525 U₂ +BABBAR +45528 I₃ +GIŠ +NAG +45536 PEŠ +TUR +ZI +GIŠIMMAR +45541 NAM +TAL +45544 LI +GAZI +45548 A +ŠEG₆ +GA₂ +45555 GUR₂ +GUR₂ +45562 KUM₂ +45564 I₃ +GIŠ +45567 ŠA₃ +45572 DUR₂ +45574 DUB +45576 PA +45578 ŠENNUR +PA +45581 MA +NU +PA +45585 ŠE +NU +PA +45589 GE₆ +PAR₇ +45594 LI +45596 GUR₂ +GUR₂ +GAZ +45600 KAŠ +HI +HI +GUR +45605 HAD₂ +A +GAZ +45609 I₃ +UDU +HI +HI +45614 KUŠ +45618 LAL +DIŠ +NA +ŠA₃ +45623 GIG +GIŠ +45627 GIG +45629 KUR +RA +45632 HAR +HAR +45635 KUR +KUR +45638 GAMUN +GE₆ +45648 IGI +45655 SIKIL +45659 NIŠ +GURUN +45662 DIH₃ +45667 PA +45669 UKUŠ₂ +HAB +SUD₂ +45673 KAŠ +NAG +45676 DUR₂ +45678 SI +SA₂ +45681 GE₆ +45683 A +GAZI +45686 ŠEG₆ +GA₂ +45695 UZU +45699 ŠAH +GU₇ +TI +45703 SUD₂ +45705 I₃ +GIŠ +NU +45710 EME +45712 DAB +45724 I₃ +GIŠ +HI +HI +45732 UD +45734 KAM₂ +GAR +45740 UD +45742 KAM₂ +NAG +MEŠ +45747 KAŠ +SAG +NAG +45752 PA +45754 NU +UR₂ +MA +45759 KAŠ +SAG +NAG +45765 I₃ +GIŠ +45768 KAŠ +SAG +GAZ +45779 SILA₁₁ +45782 TU₅ +MEŠ +45786 TI +45788 NAG +45790 TI +45792 TI +45801 NA₄ +ZU₂ +LUM +MA +45808 A +MEŠ +NU +NAG +A +MEŠ +45816 KUR +RA +SUD₂ +45820 A +45822 BAR +45824 NU +UR₂ +MA +45830 SI +SA₂ +45834 SUM +45836 SIG₇ +45849 NUMUN +45856 SUD₂ +45860 SILA₃ +A +GEŠTIN +NA +45866 SILA₃ +GAZI +45870 KISAL +MUN +45874 SILA₃ +I₃ +GIŠ +BARA₂ +GA +45880 A +UZU +GUR₄ +45884 GIN₂ +MUN +45887 ŠA₃ +ŠUB +45890 NU +45893 NAG +45895 SUHUŠ +45897 I₃ +UDU +45900 UKUŠ₂ +HAB +GAZ +45904 SILA₃ +A +GEŠTIN +NA +ŠEG₆ +GA₂ +45911 ŠA₃ +ŠUB +45916 LI +SUD₂ +45919 I₃ +GIŠ +45922 DIŠ +45924 UH₂ +TUKU +TUKU +45928 LAG +GAN₂ +SUD₂ +45932 A +45934 NU +UR₂ +MA +ŠED₇ +45939 DUR₂ +45941 DUB +45944 TI +45950 UKUŠ₂ +HAB +HAD₂ +DU +GAZ +45956 ŠA₃ +NIG₂ +SILA₁₁ +GA₂ +45961 LAL₃ +KUR +45964 HI +HI +ŠE₁₀ +TU +45969 MEŠ +45973 KAŠ +SAG +ZU₂ +LUM +NAG +45979 HAB +SUD₂ +45982 I₃ +GIŠ +BARA₂ +GA +NAG +NAG +DIŠ +NA +ŠA₃ +MEŠ +45993 MU₂ +MU₂ +46000 ŠA₃ +46012 TI +46014 SUM +46017 GAMUN +GE₆ +TEŠ₂ +BI +SUD₂ +46023 KAŠ +SAG +NU +46028 NAG +MEŠ +TI +46032 KI +MIN +46035 SIKIL +SIG₇ +46038 SUD₂ +KI +I₃ +ŠAH +HI +HI +NU +46050 KAŠ +BIL₂ +LA₂ +NAG +TI +DIŠ +NA +ŠA₃ +MEŠ +46060 MU₂ +MU₂ +46067 IM +46069 ŠA₃ +46071 NIGIN +46076 I₃ +UDU +46079 UKUŠ₂ +HAB +46082 DUR₂ +46084 GAR +46087 SUM +46093 SUD₂ +46095 KAŠ +NAG +MEŠ +46099 UD +46103 SILA₃ +TA +AM₃ +I₃ +GIŠ +46109 DUR₂ +46111 DUB +46113 TI +DIŠ +NA +ŠA₃ +MEŠ +46119 MU₂ +MU₂ +46127 NU +46130 KAŠ +LAL₃ +46134 NAG +46139 A +GEŠTIN +NA +ŠEG₆ +46145 KUR +RA +MUN +TEŠ₂ +BI +SUD₂ +46152 ŠA₃ +GAZ +LAL₃ +46156 I₃ +46159 ŠUB +46161 DUR₂ +46163 DUB +46165 TI +DIŠ +NA +ŠA₃ +MEŠ +46176 NU +46179 KAŠ +46182 LA +HA +AN +NAG +A +GEŠTIN +NA +ŠEG₆ +GA₂ +46192 KUR +RA +MUN +46199 ŠA₃ +ŠUB +I₃ +GIŠ +46204 ŠA₃ +46209 ŠA₃ +46214 DUB +46216 I₃ +GIŠ +46219 ŠU +SI +GUB₃ +46226 ŠEŠ₂ +46228 DIŠ +NA +ŠA₃ +MEŠ +46238 I₃ +UDU +UKUŠ₂ +HAB +46243 DUR₂ +46245 GAR +46247 SUM +46255 SUM +46258 GAMUN +GE₆ +SUD₂ +46262 KAŠ +NAG +LAL₃ +KUR +46267 I₃ +GIŠ +46270 DUR₂ +46272 DUB +NUMUN +46281 SUD₂ +GU₇ +DIŠ +46285 UH₂ +TUKU +TUKU +46290 UD +DA +KUR +A +46295 NU +UR₂ +MA +ŠUR +NAG +GA +I₃ +GIŠ +EME +46305 DAB +46307 NAG +46309 SILA₃ +KAŠ +NAG +46313 LI +SUD₂ +46316 KAŠ +NAG +46319 GAMUN +GE₆ +46322 SUD₂ +46324 KAŠ +NAG +46327 GAMUN +GE₆ +46330 SUD₂ +46332 GEŠTIN +NAG +I₃ +GIŠ +46339 DIŠ +NA +SAG +ŠA₃ +46344 KUM₂ +ŠA₃ +MEŠ +46348 MU₂ +MU₂ +46353 SILA₃ +46355 HAB +46360 KAŠ +46365 TUG₂ +TE +LAL +46374 GAZI +46376 ŠIM +ŠAL +46381 IGI +46383 MAŠ +SILA₃ +LAL +46401 LI +46403 ŠE +LI +46406 HAR +HAR +46409 KAŠ +ŠUB +46418 GAZ +46422 NAG +46425 A₂ +MUŠEN +46432 TI +DIŠ +NA +ŠA₃ +MEŠ +46442 NINDA +MEŠ +KAŠ +MEŠ +46447 KA +46449 GUR +GUR +46452 SAG +DU +46455 GABA +46457 LAL₂ +46462 ZI₃ +KUM +ŠEG₆ +46467 LAL₃ +MEŠ +I₃ +UDU +46472 I₃ +NUN +NA +GU₇ +MEŠ +SUM +46479 SUM +SIKIL +46482 GA +RAŠ +46493 UD +46495 NU +GU₇ +A +NU +TU₅ +46501 TI +DIŠ +NA +ŠA₃ +MEŠ +46511 KUM₂ +ŠUB +MEŠ +46515 NINDA +46517 KAŠ +LAL +UH₂ +TUKU +TUKU +46524 TI +46527 IGI +46530 IGI +NIŠ +SUHUŠ +46534 NAM +TAR +46540 SUD₂ +46542 KAŠ +NAG +46549 EGIR +46553 I₃ +46557 KAŠ +NAG +46560 A +GAZI +46564 A +GEŠTIN +NA +ŠEG₆ +46570 DUR₂ +46572 DUB +46576 GUR₂ +GUR₂ +46579 LI +46581 GAM +MA +PA +46585 ŠE +HAR +PA +46589 GE₆ +PAR₃ +PA +46593 ŠE +NU₂ +A +NUMUN +46602 U₂ +HI +A +ŠEŠ +TEŠ₂ +BI +GAZ +SIM +KI +I₃ +UDU +DUH +LAL₃ +46617 HAB +46622 KUŠ +EDIN +SUR +LAL₂ +46628 TI +DIŠ +NA +ŠA₃ +MEŠ +46639 UH₂ +TUKU +MEŠ +46643 NINDA +46645 KAŠ +LAL +46648 TI +46651 KUR +RA +46656 DIŠ +46658 SUD₂ +46660 KAŠ +NAG +46668 A +GAZI +46671 ŠEG₆ +46676 ŠED₇ +46681 DUR₂ +46683 DUB +TI +DIŠ +NA +ŠA₃ +MEŠ +46692 SAG +ŠA₃ +46699 TUKU +MEŠ +46703 TI +46705 U₅ +ARGAB +46711 GI +ŠUL +HI +PA +46719 MUD₂ +EREN +46722 A +GAZI +46728 LAL₃ +I₃ +46732 I₃ +NUN +46735 KAŠ +SAG +46738 ŠA₃ +ŠUB +46742 MUL₄ +46751 NU +46754 NAG +46756 TI +DIŠ +NA +ŠA₃ +MEŠ +46764 ZI₃ +ŠE +SA +A +ZI₃ +MUNU₆ +NUMUN +46772 KI +46774 IŠKUR +46779 ZU₂ +LUM +TEŠ₂ +BI +SUD₂ +NU +46787 GU₇ +MEŠ +A +MEŠ +NU +NAG +A +MEŠ +SAG +ŠA₃ +46802 TI +DIŠ +NA +ŠA₃ +46811 KISAL +A +46814 ŠE +NU +46817 KISAL +A +MUN +46821 LAL₃ +46823 KAŠ +NAG +46826 KI +MIN +46829 NU +UR₂ +MA +GU₇ +A +46835 NU +UR₂ +MA +NAG +46840 KI +MIN +46843 LI +SUD₂ +46846 KAŠ +NAG +46850 KI +MIN +SIG₂ +GAL₄ +LA +46856 ŠU +GI +46859 MURUB₄ +KA +46862 GAR +46865 KI +MIN +46868 NU +UR₂ +MA +PA +46873 MA₂ +RI₂ +IŠ +MA₂ +RA +SUD₂ +46880 A +NAG +DIŠ +NA +ŠA₃ +46886 IM +46889 ŠUM(DIM₃) +GAM +ME +ZABAR +46894 GIR₂ +ZABAR +46899 TI +SAHAR +URUDU +NIG₂ +KALAG +GA +46915 TI +DIŠ +NA +ŠA₂ +MEŠ +46924 KISAL +PA +46930 KISAL +LAL₃ +46933 ŠA₃ +KAŠ +ŠUB +46937 MUL₄ +46943 NU +46946 NAG +MEŠ +46949 TI +DIŠ +NA +ŠA₃ +46956 MU₂ +MU₂ +46959 ŠA₃ +46965 NINDA +46967 A +GUR +SUHUŠ +46971 NAM +TAR +NITA₂ +46975 HAB +46977 KA +46983 LAL₃ +KUR +46987 KAŠ +SAG +NAG +46991 HAB +46993 KAŠ +SAG +ŠEG₆ +GA₂ +46998 DUR₂ +47000 DUB +47002 PA +47004 GE₆ +PAR₃ +47007 LI +47009 KU₇ +KU₇ +ILLU +47017 ŠE +NU +GAZ +47021 I₃ +UDU +HI +HI +47026 KUŠ +TE +LAL +47030 A +47032 ŠE +NU +47038 DIŠ +NA +ŠA₃ +47046 KUM₂ +ŠUB +ŠUB +47050 IM +TUKU +TUKU +NINDA +A +GUR +47057 IGI +NIŠ +SUHUŠ +47061 NAM +TAR +NITA₂ +47065 KAŠ +SAG +SUD₂ +NAG +47070 EGIR +47072 I₃ +47076 KAŠ +NAG +SI +SA₂ +GAZI +47082 A +GEŠTIN +NA +ŠEG₆ +47088 DUR₂ +47090 DUB +47092 LI +47097 HAB +PA +47100 GE₆ +PAR₃ +PA +47104 ŠE +NU +GAZ +47108 I₃ +UDU +HI +HI +47113 KUŠ +TE +LAL +KIMIN +DIŠ +NA +ŠA₃ +47125 NINDA +47127 A +47129 KA +47131 GUR +GUR +47134 SAG +KI +MEŠ +47141 TA +47154 I₃ +ŠAH +GU₇ +MEŠ +SUM +47160 SUM +SIKIL +47173 DIŠ +NA +ŠA₃ +47179 SAG +DU +GU₇ +47199 KA +INIM +MA +LU₂ +47205 DU₃ +DU₃ +BI +EN₂ +47212 ŠA₃ +ŠID +47216 DIŠ +NA +ŠA₃ +47220 NINDA +47222 KAŠ +47229 SILA₃ +A +ZU₂ +LUM +MA +47236 SILA₃ +A +GAZI +47246 EGIR +47248 AL +US₂ +SA +A +GEŠTIN +NA +NAG +47256 KUM₂ +47258 ŠA₃ +47271 DIŠ +NA +ŠA₃ +47275 NINDA +47280 NUMUN +47282 ŠINIG +SUD₂ +47285 LAL₃ +47287 I₃ +NUN +HI +HI +47295 NAG +47298 TI +DIŠ +NA +NINDA +47303 KAŠ +LAL +47307 HAR +HAR +47310 NU +LUH +HA +47317 GAZI +47324 SUMUN +DAR +47331 GUR₂ +GUR₂ +47334 GAM +MA +47337 MAN +DU +47340 EREN +47342 EREN +SUMUN +47345 MUG +ZU₂ +LUM +MA +LAGAB +MUNU₆ +MUN +47353 ŠE +NU +A +GEŠTIN +NA +KALAG +GA +47361 KAŠ +47365 MUL₄ +47373 ŠEN +TUR +ŠEG₆ +47378 GIN₂ +I₃ +47383 IGI +ŠUB +47386 DUR₂ +47388 DUB +47391 ŠA₃ +UTUL₂ +ŠUB +47395 IGI +47397 GAL₂ +LA +U₂ +47402 IGI +47404 GAL₂ +LA +U₂ +TUR +47410 IGI +47412 GAL₂ +LA +47432 ŠA₃ +47436 SUD₂ +47438 KAŠ +47440 KURUN₂ +NA +NU +47445 NAG +47448 DUR₂ +47450 SI +SA₂ +47453 TI +DIŠ +NA +ŠA₃ +MEŠ +47465 TUKU +NINDA +47468 A +47471 UH₂ +TUKU +MEŠ +47476 KUR +RA +SUD₂ +47480 I₃ +GIŠ +NAG +47488 KUR +RA +47493 SUD₂ +47495 KAŠ +NAG +47502 A +ŠEG₆ +47509 DUR₂ +47511 DUB +47513 PA +47515 GE₆ +PAR₃ +PA +47519 KI +47521 IŠKUR +PA +47527 LI +47529 GUR₂ +GUR₂ +47532 GAM +MA +47535 HAB +47540 A +ZU₂ +LUM +MA +47546 GUR +47548 HAD₂ +A +GAZ +47552 I₃ +UDU +HI +HI +47557 KUŠ +TE +LAL +47561 A +47563 ŠE +NU +47570 TI +DIŠ +NA +ŠA₃ +47581 NINDA +47583 KAŠ +SAG +47589 MAŠ +SILA₃ +MEŠ +47593 GU₇ +MEŠ +47596 SAG +DU +47602 LAL +47606 UD +47608 KAM₂ +SUM +47611 SUM +SIKIL +47614 GA +RAŠ +47617 NU +GU₇ +47620 A +47622 ŠE +NU +RA +MEŠ +NUMUN +47628 UKUŠ₂ +HAB +NUMUN +47632 HAR +HAR +47635 KAŠ +NAG +47638 TI +DIŠ +NA +ŠA₃ +47646 DIRI +47648 TI +47650 GI +DU₁₀ +47653 BAL +47655 LI +47657 HAR +HAR +47660 ŠE +LI +BABBAR +47664 KAŠ +SAG +ŠUB +ŠEG₆ +47676 KISAL +LAL₃ +47679 ŠA₃ +GAZ +NU +47684 NAG +47691 A₂ +GU₂ +ZI +GA +LAL₃ +I₃ +47700 KAŠ +TEŠ₂ +BI +HI +HI +NU +47708 EME +47710 DAB +47712 NAG +47714 TI +DIŠ +NA +47719 DAB +47721 NUMUN +47723 SIKIL +NUMUN +47726 GEŠTIN +KA₅ +A +47730 AB₂ +DUH +47733 NIGIN +47736 TAL₂ +TAL₂ +47739 U₂ +MEŠ +ŠEŠ +TEŠ₂ +BI +SUD₂ +47746 A +GAZI +47752 TUG₂ +HI +A +SUR +SAG +ŠA₃ +47759 LAL₂ +47761 U₂ +BABBAR +SUD₂ +47765 A +MEŠ +NU +47770 NAG +TI +47773 KI +MIN +ILLU +47777 BULUH +SUD₂ +47780 GEŠTIN +ŠUR +RA +NU +47786 NAG +TI +47789 KI +MIN +47794 SUD₂ +47796 KAŠ +SAG +NU +47801 NAG +TI +DIŠ +NA +IM +47807 ŠA₃ +47809 NIGIN +47812 TI +47814 SUHUŠ +47816 EME +UR +GI₇ +47821 ZI +47824 UTU +NU +IGI +BI +HAD₂ +A +SUD₂ +47832 KAŠ +SAG +NU +47837 NAG +TI +DIŠ +NA +IM +47843 ŠA₃ +47850 EME +UR +GI₇ +NUMUN +47855 EME +UR +GI₇ +DIŠ +47860 SUD₂ +47862 KAŠ +NU +47866 NAG +TI +DIŠ +NA +IM +GIM +47876 ŠA₃ +47878 TAG +MEŠ +47883 GIN₂ +47885 EREN +47888 GIN₂ +47890 ŠUR +MIN₃ +47894 GIN₂ +47896 GIR₂ +47898 GIN₂ +47900 EREN +SUMUN +47903 GIN₂ +MUN +47909 LI +47918 KAŠ +SAG +ŠEG₆ +47922 I₃ +GIŠ +47925 IGI +ŠUB +47928 DUR₂ +47930 DUB +47932 DIŠ +NA +IM +47936 ŠA₃ +47952 BI +GABA +47956 MAŠ +SILA₃ +MEŠ +47960 GU₇ +MEŠ +47963 UZU +MEŠ +47972 GIR₂ +GIR₂ +47975 UZU +MIN +47984 DIRI +SAG +MEŠ +47993 KUM₂ +MEŠ +47997 UD +48009 LI +48011 KUR +KUR +48014 HAR +HAR +48019 GAZI +48021 MUN +48029 PA +48034 U₂ +HI +A +ŠEŠ +TEŠ₂ +BI +SUD₂ +48042 GEŠTIN +DU₁₀ +GA +48046 KAŠ +SAG +48053 GE₆ +48055 IGI +MUL₄ +48060 A₂ +GU₂ +ZI +GA +ŠEG₆ +48069 ŠED₇ +48071 ŠE +MEŠ +HENBUR₂ +48075 UKUŠ₂ +HAB +48078 ŠE +MEŠ +48081 AN +ZAH +TEŠ₂ +BI +SUD₂ +48087 ŠA₃ +GAZ +48092 UTU +48096 NAG +48099 A₂ +48106 DU₁₀ +GA +NU +IGI +48112 DUR₂ +48114 DUB +48116 TI +DIŠ +NA +NINDA +GU₇ +KAŠ +NAG +48129 ŠA₃ +MEŠ +48132 MU₂ +MU₂ +48135 ŠA₃ +48137 NU +IGI +48140 GIM +48147 GIG +ŠURUN +GUD +48151 A +48156 ŠEŠ₂ +48158 ZU₂ +LUM +MA +GA +RAŠ +48164 UKUŠ₂ +HAB +48169 NINDA +48171 KAŠ +48175 UD +48177 KAM₂ +A +7 +PU₂ +48184 DIŠ +NA +48189 DAB +48192 SILA₃ +KAŠ +SAG +48196 MUL₄ +48211 DIŠ +NA +48221 IM +48225 NU +48232 A +GAZI +48239 MUN +DUR₂ +NU +LUH +HA +48249 DIŠ +NA +U₂ +NAG +48264 ŠAH +48266 A +48268 I₃ +GIŠ +ŠEG₆ +48272 EN +48282 DIŠ +NA +U₂ +NAG +48294 NA +BI +48300 GIG +48302 TI +48317 GUR₂ +GUR₂ +48320 LI +48322 GAM +MA +48325 GIG +48327 EN +DI +48330 A +PU₂ +48336 NE +48339 DUR₂ +48341 DUB +48344 KISAL +48346 GUR₂ +GUR₂ +ŠEŠ₂ +48351 ŠA₃ +MEŠ +48354 SI +SA₂ +48357 TI +DIŠ +NA +48371 KAŠ +SAG +48374 ŠEN +TUR +ŠEG₆ +48378 MUN +48380 ŠA₃ +ŠUB +48383 DUR₂ +48385 DUB +ŠU +SI +48390 GADA +NIGIN +MUN +48396 DUR₂ +48400 SIG₂ +GAL₄ +LA +48404 ŠU +GI +48407 MURUB₄ +KA +48410 GAR +48413 DIŠ +NA +KAŠ +SAG +NAG +48419 SUHUŠ +MEŠ +48432 TI +48434 NUMUN +48436 SIKIL +NUMUN +48439 DILI +NUMUN +48444 NUMUN +48449 NUMUN +48451 IN₆ +UŠ₂ +48454 U₂ +HI +A +ŠEŠ +DIŠ +48460 SUD₂ +48462 GEŠTIN +SIG₃ +48465 NU +48468 NAG +48472 DIŠ +NA +KAŠ +NAG +48477 SAG +DU +48480 DAB +DAB +48483 INIM +MEŠ +48492 DU₁₁ +DU₁₁ +48505 LU₂ +BI +IGI +MIN +48510 GUB +48513 TI +48516 IGI +48519 IGI +NIŠ +48525 HAR +HAR +48528 SIKIL +48530 DILI +KA +A +AB +BA +48536 NU +LUH +HA +NUMUN +48541 NIG₂ +GAN₂ +GAN₂ +48553 U₂ +HI +A +ŠEŠ +DIŠ +48559 SUD₂ +48561 I₃ +GIŠ +48564 KAŠ +48566 IGI +48578 UTU +MU₂ +48590 NAG +48594 DIŠ +NA +GABA +48598 GIG +48600 GIM +48605 SAHAR +TUKU +TUKU +48622 ZE₂ +48627 NA +BI +48631 ŠA₃ +GIG +48634 TI +48637 EME +UR +GI₇ +48641 KAŠ +NU +48645 NAG +48648 A +GAZI +48651 RA +MEŠ +A +48655 ŠE +NU +48658 DUR₂ +48660 DUB +ZI₃ +GU₂ +TUR +48670 SAG +KUD +48673 KA +48675 GID₂ +48678 HAB +I₃ +UDU +ZU₂ +LUM +48684 LI +48686 KU₇ +KU₇ +DIŠ +48690 HI +HI +48693 KUŠ +SUR +LAL +U₂ +BABBAR +48699 I₃ +GIŠ +KI +MIN +GAZI +48705 KI +MIN +A +48713 GAZI +48716 GUR₂ +GUR₂ +KI +MIN +48721 LI +48723 GUR₂ +GUR₂ +MIN +PA +48728 GE₆ +PAR₃ +PA +48732 ŠE +NU +PA +48736 MA +NU +E₂ +NIM +48742 I₃ +DIŠ +48745 HI +HI +ŠU +BI +AŠ +AM₃ +U₂ +BABBAR +48754 I₃ +GIŠ +NAG +48759 A +GAZI +48762 RA +48765 A +48767 NU +UR₂ +MA +48771 DUR₂ +48773 DUB +48776 GU₂ +GAL +48779 GUR₂ +GUR₂ +GID₂ +48785 LI +48787 HAB +ILLU +48790 BULUH +48795 SIKIL +DIŠ +48798 SUD₂ +48800 I₃ +UDU +HI +HI +GABA +48806 LAL +48811 EME +UR +GI₇ +48815 KAŠ +NAG +48818 A +GAZI +48821 KI +MIN +GAZI +48826 LI +48828 GUR₂ +GUR₂ +48831 GAM +MA +ŠIM +HI +A +DU₃ +A +BI +PA +48841 GE₆ +PAR₃ +PA +48847 KI +MIN +DIŠ +NA +48855 GABA +48857 TAG +TAG +48861 GIM +48866 SAHAR +48877 ZE₂ +48893 NA +BI +48897 ŠA₃ +48899 GIG +KU₆ +SUM +48903 UZU +GUD +UZU +ŠAH +48908 KAŠ +48910 KURUN₂ +NA +48922 SILA₃ +ZA₃ +HI +LI +48928 SILA₃ +48930 GUR₂ +GUR₂ +48934 SILA₃ +48936 LI +48939 SILA₃ +NUMUN +GADA +48944 SILA₃ +48946 GIG +48949 SILA₃ +48951 EN +DI +48955 SILA₃ +NUMUN +48963 SILA₃ +GAZI +48968 SILA₃ +NUMUN +48971 ŠE +NU +48975 SILA₃ +GU₂ +NIG₂ +AR₃ +RA +48982 SILA₃ +BA +BA +ZA +48987 ID₂ +48990 SILA₃ +NUMUN +48998 KISAL +ILLU +49001 BULUH +49003 KISAL +KA +A +AB +BA +49010 U₂ +HI +A +49020 UD +DA +SA₂ +SA₂ +GAZ +SIM +49031 IN₆ +UŠ₂ +RA +49035 TI +49037 KI +MIN +49041 KAŠ +NU +49045 NAG +49047 TI +49049 KI +MIN +49053 NAGA +SI +TEŠ₂ +BI +SUD₂ +49059 KAŠ +SAG +SILA₁₁ +49064 KUŠ +SUR +49067 LAL +49070 SILA₁₁ +49073 KUŠ +MIN +49076 SILA₁₁ +49079 SAG +ŠA₃ +49082 LAL +49084 TI +49088 A +GEŠTIN +NA +KALAG +GA +SILA₁₁ +49095 SAG +ŠA₃ +49098 LAL +49100 TI +49104 KU₆ +HAD₂ +A +GAZ +SIM +49110 KAŠ +SILA₁₁ +49113 KI +MIN +49116 KI +MIN +49124 HAR +HAR +49127 KUR +KUR +49130 GAMUN +GE₆ +49141 DIŠ +49143 SUD₂ +49145 KAŠ +NAG +49150 ŠA₃ +49156 TI +DIŠ +NA +49163 KI +UH₂ +49166 MUD₂ +ŠUB +ŠUB +49173 ŠA₃ +GIG +UD +DA +SA₂ +SA₂ +ŠA₃ +49184 GIG +49189 A +GAR +GAR +MAŠ +DA₃ +NUMUN +49196 KI +49198 IŠKUR +NUMUN +49201 IN₆ +UŠ₂ +49204 GUR₂ +GUR₂ +49207 KISAL +KA +A +AB +BA +GAZ +49214 A +PU₂ +49218 GUR +49220 HAD₂ +A +GAZ +49224 A +ZU₂ +LUM +MA +49230 GAN +49234 TUG₂ +SUR +49237 SAG +ŠA₃ +49243 GE₆ +LAL +49246 DU₈ +49249 A +PU₂ +49254 U₂ +BABBAR +SUD₂ +49258 I₃ +49261 EME +49263 DAB +49265 NAG +49269 LAL₂ +49271 NAG +NAG +49276 NAG +49280 SILA₃ +NUMUN +49287 SILA₃ +49289 GEŠTIN +KA₅ +A +49294 SILA₃ +49296 LI +49299 SILA₃ +ZU₂ +LUM +MA +49305 SILA₃ +ZI₃ +GIG +GAZ +49310 A +GAZI +49315 GUR +49317 HAD₂ +A +GAZ +49321 A +ZU₂ +LUM +49326 GAN +49330 TUG₂ +HI +A +SUR +49338 GE₆ +LAL +49341 KI +MIN +PA +49345 NU +UR₂ +MA +PA +49350 GE₆ +PAR₃ +PA +49354 NAM +TAR +NITA₂ +ŠIKA +NIG₂ +BUN₂ +NA +49362 ILLU +49364 BULUH +GAZ +49367 A +ZU₂ +LUM +MA +49373 GAN +49376 GUR +49378 HAD₂ +A +GAZ +49382 KAŠ +49384 I₃ +GIŠ +49388 GAN +49392 TUG₂ +SUR +49397 GE₆ +LAL +49400 KU +KU +49407 KAŠ +NU +49411 NAG +49414 SILA₃ +ŠE₁₀ +TU +49418 MEŠ +49421 SILA₃ +NUMUN +49424 AB₂ +DUH +49428 SILA₃ +GURUN +49431 MAŠ +HUŠ +49437 A +GAZI +49442 GUR +49444 HAD₂ +A +GAZ +49448 A +ZU₂ +LUM +MA +49454 GAN +49458 TUG₂ +SUR +49464 GE₆ +LAL +49468 KI +MIN +49472 SILA₃ +NUMUN +49475 DILI +49478 SILA₃ +49480 LAG +GAN₂ +SIG₇ +49485 SILA₃ +U₅ +ARGAB +49491 SILA₃ +ZI₃ +ZIZ₂ +A +AN +GAZ +49498 A +ID₂ +49502 GUR +49504 HAD₂ +A +GAZ +SIM +49509 A +ZU₂ +LUM +MA +49515 GAN +49519 TUG₂ +SUR +49525 GE₆ +LAL +49528 NUMUN +49530 GEŠTIN +KA₅ +A +49534 KAŠ +NU +49538 NAG +49540 A +ŠEG₆ +49547 KI +MIN +ZA₃ +HI +LI +49553 KAŠ +NAG +NUMUN +49557 KI +49559 IŠKUR +49561 NUMUN +49563 MA +NU +NUMUN +49567 ŠINIG +49569 GUR₂ +GUR₂ +GAZ +49573 A +GAZI +49578 GUR +49580 HAD₂ +A +GAZ +49584 A +ZU₂ +LUM +MA +49590 GAN +49594 TUG₂ +HI +A +SUR +49602 GE₆ +LAL +49605 KI +MIN +49608 LI +49610 GUR₂ +GUR₂ +49613 HAB +49615 GAM +MA +49623 BULUH +49625 EREN +49627 ŠUR +MIN₃ +49630 BAL +GAZ +49633 A +GAZI +49638 GUR +49640 HAD₂ +A +GAZ +49644 A +ZU₂ +LUM +MA +49649 KAŠ +49652 GAN +49656 TUG₂ +HI +A +49665 GE₆ +LAL +49668 IM +SAHAR +NA₄ +KUR +RA +49674 KAŠ +NAG +49677 KI +MIN +PA +GIŠ +GI +ZU₂ +LUM +MA +PA +49687 SIKIL +PA +49690 IN₆ +UŠ₂ +GURUN +GA +RAŠ +49696 GURUN +49698 NU +UR₂ +MA +NUMUN +49703 HA +LU +UB₂ +PA +49708 ASAL₂ +GAZ +49711 A +GAZI +49716 GAN +49720 TUG₂ +SUR +49725 GE₆ +LAL +49728 A +ŠEG₆ +49734 U₂ +ŠEŠ +49737 I₃ +49739 KAŠ +NU +49743 NAG +49749 GIŠ +DU₁₀ +GA +GU₇ +DU₁₀ +GA +NAG +49758 UD +49760 GE₆ +49762 KA₂ +GUB +GUB +49767 NA₂ +49770 NU₂ +49774 A +KUM₂ +49777 TU₅ +49779 I₃ +GIŠ +KUM₂ +ŠEŠ₂ +UD +49785 KAM₂ +GUR +GUR +49789 DIŠ +NA +KI +UH₂ +49794 MUD₂ +ŠUB +MEŠ +49798 NA +BI +49804 GIG +49806 TI +49810 SILA₃ +I₃ +UDU +49815 SILA₃ +ZU₂ +LUM +MA +49821 SILA₃ +49823 HAB +49826 SILA₃ +49828 GUR₂ +GUR₂ +49832 SILA₃ +49834 LI +49837 SILA₃ +49839 BULUH +49842 SILA₃ +DUH +ŠE +GIŠ +I₃ +49849 SILA₃ +NUMUN +49855 U₂ +HI +A +ŠEŠ +DIŠ +49861 GAZ +49863 I₃ +NUN +49869 KUŠ +SUR +IGI +49873 MAŠ +SILA₃ +EN +DU₁₀ +GA +49880 ITI +MEŠ +LAL₂ +49885 LAL +49888 KA +49897 DIŠ +NA +49901 ŠA₃ +GIG +NINDA +49905 KAŠ +ŠA₃ +49909 IGI +49912 KA +49914 GUR +GUR +TUN₃ +49923 TI +49927 SILA₃ +49933 SILA₃ +49935 GUR₂ +GUR₂ +49939 SILA₃ +49941 LI +49944 SILA₃ +49946 KI +49948 IŠKUR +49951 SILA₃ +49957 SILA₃ +49962 ID₂ +49965 SILA₃ +49967 KUR +RA +49971 SILA₃ +49973 AB₂ +DUH +49977 SILA₃ +ZU₂ +LUM +MA +49983 SILA₃ +DIDA +SIG +49988 SILA₃ +ZI₃ +MUNU₆ +49993 SILA₃ +ZI₃ +GU₂ +GAL +49999 SILA₃ +ZI₃ +KUM +50004 SILA₃ +ZI₃ +GIG +50009 SILA₃ +ŠE₁₀ +TU +50015 SILA₃ +50017 KAM +50019 GAN₂ +50021 KISAL +50023 ŠEŠ +50025 KISAL +KA +A +AB +BA +50031 U₂ +HI +A +ŠEŠ +DIŠ +50037 GAZ +SIM +50040 KAŠ +50043 ŠEN +TUR +GIM +50052 KUŠ +EDIN +SUR +50056 UD +50058 SAG +ŠA₃ +50061 LAL +NINDA +50064 KAŠ +ŠA₃ +50067 IGI +50072 DIŠ +NA +50076 ŠA₃ +50078 GIG +NINDA +50081 KAŠ +ŠA₃ +50084 NU +IGI +50088 KA +50090 GUR +GUR +50097 TI +50101 SILA₃ +A +ZU₂ +LUM +MA +50108 SILA₃ +A +GAZI +50113 KISAL +50115 KUR +RA +SUD₂ +50119 ŠA₃ +ŠUB +50125 NAG +50127 EGIR +50131 SILA₃ +AL +US₂ +SA +NAG +50137 DUR₂ +50139 GIŠ +50141 NINDA +50143 KAŠ +ŠA₃ +50146 KI +MIN +50149 KI +MIN +MUN +KUR +50154 MUN +50158 DIŠ +50160 SUD₂ +50162 KAŠ +NU +50166 NAG +50171 KI +MIN +ZI₃ +ŠE +SA +A +ZI₃ +HARUB(AMAŠ) +50181 ZU₂ +LUM +MA +SUD₂ +50186 KAŠ +50188 UD +50194 NAG +50196 A +NU +NAG +A +SAG +ŠA₃ +50209 DIŠ +NA +NINDA +50213 KAŠ +ŠA₃ +50216 NU +IGI +50219 UZU +MEŠ +50226 IM +50228 DUR₂ +50230 NIGIN +50233 TI +50237 SILA₃ +A +ZU₂ +LUM +MA +50244 SILA₃ +A +GAZI +50249 GIN₂ +A +GEŠTIN +NA +50254 GIN₂ +50256 KUR +RA +50259 GIN₂ +I₃ +50264 GIN₂ +LAL₃ +KUR +50268 DIŠ +50273 GAZ +50275 GE₆ +50277 IGI +50279 UZ₃ +50285 ŠEG₆ +50290 ŠED₇ +50292 ŠA₃ +50297 EGIR +50299 NAG +A +50302 KAŠ +DIRI +50312 LUM +HA +GAZI +50316 PA +GAZI +50319 NUMUN +50321 ŠE +NU₂ +A +50325 ŠA₃ +ŠUB +ŠEG₆ +50341 ŠA₃ +RA +50344 I₃ +SU +50347 EŠ +50350 GEŠTIN +KA₅ +A +50354 EME +UR +GI₇ +SUD₂ +50359 KAŠ +NAG +50362 PA +50364 GE₆ +PAR₃ +PA +50370 HAD₂ +A +DIŠ +50374 GAZ +SIM +50377 I₃ +UDU +HI +HI +50382 KUŠ +EDIN +SUR +LAL₂ +50390 DIŠ +NA +SAG +ŠA₃ +50395 GU₇ +50401 ZE₂ +50406 NA +BI +50411 GIG +DUB +50414 KAM₂ +DIŠ +NA +50420 GIG +50424 ŠA₃ +GUR +E₂ +GAL +50429 AN +ŠAR₂ +DU₃ +A +MAN +ŠU₂ +MAN +KUR +AN +ŠAR₂ +50442 AG +50448 GEŠTU +MIN +50462 IGI +MIN +50475 LUGAL +MEŠ +50497 TA +50500 EN +UMBIN +50504 BAR +MEŠ +50537 IGI +KAR₂ +50551 E₂ +GAL +50559 KA +KEŠDA +50573 EN₂ +50619 DU₃ +DU₃ +BI +50623 HE₂ +ME +DA +50638 SAG +DU +E₃ +EN₂ +50652 EN₂ +50681 TU₆ +EN₂ +DU₃ +DU₃ +BI +50687 PA +GIŠIMMAR +50691 SI +SA₂ +50695 NU +IM +50701 TI +50707 KEŠDA +EN₂ +50711 ŠID +50714 SAG +KI +50720 TI +50722 EN₂ +50774 TU₆ +EN₂ +50794 TU₆ +EN₂ +50834 DU₃ +DU₃ +BI +50838 ZU₂ +GE₆ +50841 ŠUBA +50848 NIR₂ +50850 ŠUBA +SIG₇ +50861 EN₂ +50917 SAG +DU +50922 DU₁₀ +GA +50926 SU +NA +GAL₂ +50931 DAB +DU₁₀ +GA +50937 SAG +NINDU +50940 UGU +50944 LAL₂ +50950 MIN +BABBAR +50953 MIN +GE₆ +50958 I₃ +NUN +HI +HI +UGU +50964 ŠEŠ₂ +50970 MUD₂ +MEŠ +50973 TI +50975 UGU +50977 ŠEŠ₂ +UR +ME +E +50982 E₂ +GAR₈ +50989 ŠID +50991 EN₂ +E₂ +NU +RU +51017 DAL +DAL +DAB +51022 GUR₂ +GUR₂ +GAZI +51027 MUN +DIŠ +51030 SUD₂ +51032 A +SAG +DU +51041 DAB +51043 SUHUŠ +51047 GAMUN +51049 KAŠ +SAG +51054 MUL₄ +51062 GU₇ +51064 TI +51066 ŠA₃ +GI +51070 SUD₂ +51072 I₃ +51074 KAŠ +ŠEŠ₂ +51080 KIŠI₁₆ +51092 GAZI +51094 LAL₂ +NUMUN +51097 KU₆ +51099 I₃ +SUD₂ +SAG +DU +51104 EŠ +MEŠ +51109 SAG +DU +51112 LAL +51117 KAŠ +NAG +ILLU +51121 BULUH +51123 KA +51125 GAR +51127 A +ZU₂ +LUM +MA +51133 NU +51136 NAG +I₃ +51139 KAŠ +NAG +NAG +51143 BURU₈ +51146 SILA₃ +51150 KAŠ +51153 SILA₃ +51157 AN +TA +51160 KI +TA +51165 U₄ +51167 KAM₂ +LAL₂ +SUHUŠ +51176 KU₆ +51178 I₃ +SUD₂ +SAG +DU +51186 UZU +MEŠ +51191 NUNDUN +MEŠ +51194 MU₂ +MEŠ +SAG +DU +51200 IGI +51202 GID₂ +DA +51205 ŠU +MEŠ +51220 TE +GI +51224 I₃ +SUD₂ +KIMIN +51228 KIMIN +51231 IGI +MEŠ +51234 MAR +51244 AN +ZAH +GE₆ +51251 ZALAG₂ +51253 GUG +51259 AN +NA +51262 MUŠ +GIR₂ +NUMUN +51268 NUMUN +51270 MA +NU +51273 U₂ +MEŠ +ŠEŠ +51278 GAZ +51283 I₃ +UDU +ELLAG₂ +GU₄ +GE₆ +51289 IGI +MEŠ +51298 MAR +51302 DIŠ +NA +51309 IGI +51343 TI +51345 DIŠ +51348 ZAG +GUB +51351 TI +51354 IZI +51361 LAL₃ +I₃ +NUN +SUD₂ +IGI +MIN +51375 HUL +51380 LU₂ +NU +TE +51384 A +GUB₂ +BA +GIN +51390 ŠA₃ +51393 ŠINIG +51395 IN₆ +UŠ₂ +51399 SIKIL +51401 GIŠIMMAR +51403 MA +NU +51406 U₃ +SUH₅ +51409 HAŠHUR +51411 PEŠ₃ +51413 ŠE +NU₂ +A +51418 MAŠ +NITA₂ +51421 MUNUS +51424 UL +51428 A₂ +GU₂ +ZI +GA +IGI +51434 UTU +51436 E₂ +51439 TU₅ +51442 KAL +51444 KAL +GUG +KA +A +AB +BA +51452 I₃ +51454 GIR₂ +HE +HE +ŠEŠ₂ +51460 KU₃ +BABBAR +KUG +GI +51467 HUL +51471 LU₂ +NU +TE +DIŠ +51479 ŠINIG +51481 IN₆ +UŠ₂ +51484 GIŠIMMAR +51486 HAŠHUR +51488 PEŠ₃ +51490 U₃ +SUH₅ +51493 ŠA₃ +A +PU₂ +ŠUB +51501 UL +51505 A₂ +GU₂ +ZI +GA +51511 KAL +51513 KAL +GUG +KA +A +AB +BA +51520 I₃ +51522 BAL +HE +HE +ŠEŠ₂ +51528 TUG₂ +DADAG +51531 HUL +51535 LU₂ +NU +TE +51541 DIŠ +NA +51545 SAG +HUL +51548 DAB +51552 NITA +51554 MUNUS +51556 UR₃ +51567 GE₆ +GIN₇ +51570 UTU +51575 IGI +51578 ZI₃ +DUB +DUB +BU +ŠUB +ŠUB +51586 NU +51599 NA₂ +51605 DIŠ +NA +51609 SAG +HUL +51612 DAB +51622 DIŠ +KIMIN +KUM₂ +51626 SU +51642 IR +TUK +A +SAR +MUNU₆ +51648 KAŠ₃ +51654 EREN +51656 LI +51659 NININDU +UŠ₂ +51668 SILAₓ(KISAL) +51670 KIŠI₁₆ +51754 DU₃ +DU₃ +BI +51761 DUR +SIG₂ +SA₅ +E₃ +51766 U₂ +51770 IGI +51775 SIKIL +51779 NUMUN +51781 ŠINIG +51790 SAG +KI +51793 KEŠDA +51802 EN₂ +51804 APIN +51819 A +ŠA₃ +51829 A +ŠA₃ +51846 GIM +51875 DIŠ +NA +SAG +DU +51880 GIG +MEŠ +51885 TAB +UD +DA +DIRI +I₃ +UDU +51901 I₃ +51903 EREN +HI +HI +SAG +DU +51912 DIŠ +KIMIN +U₂ +GAR +51917 GIM +51919 MA +NU +51925 MU +51927 HAD₂ +A +SUD₂ +51941 TUG₂ +51944 ŠEŠ₂ +51951 DIŠ +KIMIN +51956 MU +NI +HAD₂ +A +SUD₂ +51962 A +HI +HI +51969 TUG₂ +51972 ŠEŠ₂ +51977 MU₂ +51980 IGI +51983 I₃ +51985 EREN +HI +HI +51991 DIŠ +NA +SAG +DU +51996 GIG +MEŠ +52001 DIRI +52004 ŠAH +MUN +ZI₃ +KUM +GIR₃ +PAD +DU +52012 UDU +NITA₂ +52016 SAG +DU +52019 SAR +52021 I₃ +ŠEŠ₂ +MAR +52025 I₃ +GIŠ +ŠEŠ₂ +U₂ +BABBAR +SUD₂ +MAR +52035 UKUŠ₂ +HAB +HAD₂ +A +KUM +MAR +ZI₃ +MUNU₆ +ZI₃ +KUM +GIR₃ +PAD +DU +UDU +NITA₂ +DIŠ +52054 SUD₂ +MAR +52057 GUR +52066 DIŠ +52068 ŠEG₆ +SUD₂ +52071 I₃ +EŠ +MEŠ +MAR +52081 A +GEŠTIN +NA +ŠEŠ₂ +52086 KUR +RA +SUD₂ +MAR +IM +GU₂ +EN +NA +52095 A +ZU₂ +LUM +MA +SILA₁₁ +LAL +52102 MAŠ +HUŠ +BIL +52106 I₃ +NUN +EŠ +LAL +52113 SUD₂ +MAR +52120 SUD₂ +MAR +ŠURUN +U₈ +UDU +HI +A +52128 KAŠ +SILA₁₁ +52131 LAL +52137 SUD₂ +ŠEŠ₂ +DIŠ +NA +SAG +DU +52144 GIG +KU₇ +KU₇ +DIRI +SAG +DU +52151 SAR +52156 SUD₂ +52158 GIN₂ +ILLU +52161 BULUH +52163 GIN₂ +52165 HAB +52168 NAGA +SI +52171 GUR₂ +GUR₂ +52174 LI +52176 ŠA₃ +52178 ŠUB +52181 A +GEŠTIN +NA +HI +HI +52189 LAL₂ +52191 TI +DIŠ +KIMIN +MUN +52201 SAHAR +URUDU +52207 DIŠ +52213 GEŠTIN +BIL +LA₂ +HI +HI +LAL +52221 UD +52223 KAM +NU +DU₈ +52227 DU₈ +52229 KAŠ₃ +KUM₂ +52232 LUH +52234 ZI₃ +BAPPIR +MUD₂ +52240 ŠEŠ₂ +UD +52243 KAM +U₂ +HI +A +ŠEŠ +52249 MAR +LAL +52253 TI +DIŠ +KIMIN +52262 U₂ +BABBAR +BAR +52266 NU +UR₂ +MA +NA₄ +ZU₂ +LUM +MA +52274 LAG +GA₂ +52279 BIL +52281 GURUN +52283 KUR +RA +52286 NU +LUH +HA +52297 SUD₂ +ZI₃ +BAPPIR +MUD₂ +52304 EŠ +MEŠ +U₂ +HI +A +ŠEŠ +MAR +LAL +52314 TI +DIŠ +KIMIN +KAŠ₃ +KUM₂ +52321 GUD +52323 A +GEŠTIN +NA +KALAG +GA +SILA₁₁ +52330 UD +52332 KAM +LAL +52343 IGI +GIG +GAR +52348 HAB +NA₄ +ZU₂ +LUM +MA +52355 SUD₂ +52362 MAR +DIŠ +KIMIN +52366 NU +UR₂ +MA +52380 LAL₃ +52384 IZI +52392 SAG +DU +52395 LUH +52397 SAR +52403 ŠEŠ₂ +52405 TI +DIŠ +NA +SAG +DU +52411 GIG +MEŠ +KU₇ +KU₇ +DIRI +52432 DIŠ +NA +52435 SAG +DU +52441 DIŠ +KIMIN +NAGA +SI +GAZ +SIM +52450 DIŠ +KIMIN +KAŠ₃ +AB₂ +KUM₂ +52456 SAG +DU +52461 DIŠ +NA +MURUB₄ +SAG +DU +52467 GIR₂ +GIR₂ +52470 UGU +52478 ŠEŠ₂ +DUB +52481 KAM +DIŠ +NA +UGU +52486 KUM₂ +52489 E₂ +GAL +52494 DU₃ +A +MAN +ŠU₂ +MAN +KUR +52505 AG +52511 GEŠTU +MIN +DAGAL +52523 IGI +MIN +52536 LUGAL +MEŠ +52558 TA +52561 EN +UMBIN +52565 BAR +MEŠ +52592 DUB +MEŠ +52599 IGI +KAR₂ +52614 E₂ +GAL +52620 EN₂ +52665 DU₃ +DU₃ +BI +52671 NITA₂ +52687 KA +KEŠDA +EN₂ +ŠID +52703 KI +KA +KEŠDA +52708 HE₂ +ME +DA +NIGIN +52719 EN₂ +52788 KIN +52810 ŠEG₆ +52812 GU₇ +52829 GU₇ diff --git a/tf/0.3/lang.tf b/tf/0.3/lang.tf new file mode 100644 index 0000000..c42c19b --- /dev/null +++ b/tf/0.3/lang.tf @@ -0,0 +1,1421 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=language of a document, word, or sign: absent: Akkadian; sux: Sumerian; sb: Standard Babylonian +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=str +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +62626 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +62742 sux +sux +sux +sux +sux +sux +65487 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +65500 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +66882 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +66963 sux +sux +sux +sux +sux +sux +sux +sux +sux +69268 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +69302 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +70089 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +70177 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +70235 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +73947 sux +sux +sux +sux +sux +sux +73959 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +74041 sux +sux +sux +sux +76776 sux +sux +76788 sux +sux +78172 sux +sux +sux +sb +sb +sb +78244 sux +sux +sux +sux +sux +sux +sux +sux +sux +78427 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sb +sb +sb +sb +78532 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sb +sb +sb +sb +sb +sb +sb +sb +78657 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sb +sb +sb +sb +78751 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +78806 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +78862 sux +sux +sux +sux +sux +sux +78893 sux +sux +sux +78909 sux +sux +78948 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +78967 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +79024 sux +sux +sux +sux +sux +sux +sux +sux +79041 sux +sux +sux +sux +sux +sux +sux +sux +sb +sb +sb +sux +sux +sux +sux +79061 sux +sux +sux +sux +sux +79074 sux +sux +sux +sux +sux +79085 sux +sux +sux +sux +sux +79096 sux +sux +sux +sux +79103 sux +sux +sux +79109 sux +sux +sux +79115 sux +sux +sux +sux +sux +sux +sux +sux +79131 sux +sux +sux +sux +sux +sux +79574 sux +sux +sb +sb +sb +79640 sux +sux +sux +sux +sux +sux +sux +sux +sux +79823 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sb +sb +sb +sb +79929 sux +sux +sux +sux +sux +80033 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sb +sb +sb +sb +80127 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +80180 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +80227 sux +sux +sux +sux +sux +sux +80273 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +80332 sux +sux +sux +sux +sux +sux +sux +sux +80349 sux +sux +sux +sux +sux +sux +sux +sux +80360 sux +sux +sux +sux +sb +sb +sb +sb +sb +sux +sux +sux +sb +sb +sb +sb +sb +sux +sux +sb +sb +sux +sux +sux +sux +sux +80392 sux +sux +sux +sux +sux +sb +sb +sb +sb +sb +sb +sux +sux +sux +sux +sb +sb +sb +sux +sux +sux +sb +sb +sb +sux +sux +sux +sb +sb +sb +sux +sux +sux +sux +sux +sux +sux +sux +80438 sux +sux +sux +sux +sux +sux +80506 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +81067 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +81206 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +81256 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +81295 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +81337 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +81492 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +81549 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +81595 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +81688 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +81737 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +81777 sux +sux +sux +sux +sux +sux +sux +sux +81786 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +81822 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +81892 sux +sux +sux +sux +83301 sux +sux +sux +84730 sux +sux +sux +84734 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +86892 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +89854 sux +sux +sux +sux +sux +sux +sux +91819 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +91880 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +91921 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +91971 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +92009 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +92480 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +93040 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +93118 sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux +sux diff --git a/tf/0.3/lemma.tf b/tf/0.3/lemma.tf new file mode 100644 index 0000000..20a4556 --- /dev/null +++ b/tf/0.3/lemma.tf @@ -0,0 +1,30826 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=lemma of a word:comma-separated values of the uniqueLemma field in the JSON source +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=str +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +62396 epuštu I, -šu I + +hamiš I +ka'inimmaku I + + + + +šiptu I + + + + + + + + + + + +ka'inimmaku I +kurāru I +nasāhu I +epuštu I, -šu I +šīpātu I +sāmu I + +šiptu I +māmītu I +kīma I +šarrāqu I +ina I +bābu I +pilšu I + + + + + + + + + + + + + + + + +epuštu I, -šu I +ina I +rīqu II +pānu I +simmu I +kâru I +hubšu I +narṭabu I + + + + + + + + + + + + + + + + + +pānu I +simmu I +zarû II +murru I +ina I +išātu I +erēru I +pānu I +simmu I + + + + + + + + + + + + + + +pānu I +simmu I +zarû II +ṣēlu I +alpu I +nāru I +ina I +išātu I +erēru I +pānu I +simmu I + + + + + + + + + +narṭabu I +sābû I +pānu I +simmu I +kâru I + + + + + + + + + + + +šina II +ka'inimmaku I + + + + + + +šumma I +awīlu I +qaqqadu I +garādu I +sahliu I + + + + + + + + + + + + + + + + + + + +ina I +mû I +uhūlu I +qaqqadu I, -šu I +mesû II +šamnu I +pašāšu I + + + + + + + + + + + + + + + + + + + + + +šumma I + + +qaqqadu I, -šu I +gullubu II + +būšānu I +sâku I +zarû II +supālu I + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +leqû II + + + + + + + + + + + + + + + + + + + + + + +qēmu I +labtu I +ina I +mû I +kasû II + + + + + + + + + + + + + + +ṭēnu I +kukuru I +uhūlu I + + + + + + + +ṭabtu I + +malmališ I +balālu I +ina I + + + + + + + + + + +sahliu I + +qû II +haṣbu III +tinūru I +ešer I +šiqlu I + + + + + + + + +kasû II +lâšu I +ṣamādu II + + + + +naṣmattu I +annû I +ešer I +šiqlu I +sahliu I +ša I +pû I + + + +hulqu I +ana I +libbu I +ul I +nadû III +ṭabtu I +ṭābātu I +ul I + + + + + + + +akālu I +hamiš I +šiqlu I +sahliu I +ṭēnu I +ina I +šikaru I +mahāṣu I +šaqû III, -šu I +sâku I + + + + + + +anzahhu I +sâku I + + + + + + + + + + + + +supālu I + +qû II + + + + + + + + + + + + + +ṣamādu II + +lā I +paṭāru I + + + + + + + + + + + + + + + + + + + +ūlū I +ina I +šikaru I, rēštû I + + + + + + + +šumma I +awīlu I + +rašû I + + + + + + + + + +muhhu I, -šu I +ummu II + + + + + + + + + + +kiššatu I +šarru I + + + + + + + + + + + + + + + + + + +ana I +balāṭu II, -šu I + + + + + + + + + + + + + +pašāšu I, -šu I, -ma I +balāṭu II + + + + + + + + + + + + + +šamnu I +pašāšu I, -šu I +ankinūtu I + + + + + + + + + +naṣāru I, -šu I, -ma I +balāṭu II + + + + + + + + + + + +balāṭu II, -šu I +šamnu I +kukuru I +pašāšu I, -šu I + + + + + + + + + + + + +šatû II, -šu I +ina I +kappu I +parû IV, -šu I, -ma I +balāṭu II + + + + + + + + +maqātu I, -šum I +ana I +balāṭu II, -šu I +šamnu I +aprušu I +pašāšu I, -šu I + + + + + + + + +kukuru I +šatû II, -ma I +balāṭu II + + + + + + + + + + +ana I +balāṭu II, -šu I +šamnu I +kukuru I +šamnu I +burāšu I +pašāšu I, -šu I + + + + + + + + + +nâqu I +ṣarāšu I, -ma I +balāṭu II + + + + + + + + + + + +aprušu I +elkulla I +ša I +būru I + + + + + + + + + +pašāšu I, -šu I, -ma I +balāṭu II + + + + + + + + + +abālu I +sâku I +ina I +šamnu I +balālu I +pašāšu I, -šu I, -ma I +balāṭu II + + + + + + + +abālu I +sâku I +ina I +šamnu I +balālu I +pašāšu I, -šu I, -ma I +balāṭu II +šumma I +awīlu I + + + + +hašû II +marāṣu I, -ma I +awīlu I +šūa I +ṣinnahtiru I + +murru I +šalāš I +šammu I +šâšunu I + + + + + +sâku I +ina I +šamnu I + + + + + +šumma I +awīlu I +akalu I +akālu I +šikaru I +šatû II, -ma I + +emēru II +ebēṭu I + + + + + + +ṣētu I + +abnu I +suluppu I +hašālu I +kīma I +rabīku I +rabāku I + + + + + + +ina I +diqāru I +bašālu I + + + + + + +illūru I +sāmu I +hašālu I +qaqqadu I, -šu I + + +eqīdu I +ša I +lā I +ṭabtu I +hašālu I +ina I +šizbu I +balālu I + + + +illūru I +sāmu I +qaqqadu I, -šu I + + + + +kaṣû III +arki I, -šu I +eqīdu I, -ma I +ša I +lā I +ṭabtu I +ana I + + + +ṣamādu II +qaqqadu I, -šu I +ina I +ṣimdu I + + + + +lā I + + + + +qēmu I +buṭumtu I +ina I +mû I +rabāku I +qaqqadu I, -šu I +ṣamādu II + + +kibrītu I +uhūlu I, qarnānû I +rikibtu I +argabu I + + +annû I +ištēniš I +ina I +ṣillu I +abālu I +hašālu I +napû II + + +kurartu I +elû III + + + + + + + + +zēru II +nuhurtu I + +zēru II +kamantu I + +zēru II +uriyānu I + +šumma I +awīlu I +kīsu III +libbu I +marāṣu I + +ištu I + + +šumma I +awīlu I +kīsu III +libbu I +marāṣu I + +zēru II + + +ištu I + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +kibrītu I + + + + + + + + + +awīlūtu I + + + + + + + + + + +erēnu I +lapātu I + + + + + + + +pašāšu I, -šu I +zû I + + + + + +awīlūtu I + + + + + + +ṭerû I +ṣamādu II + +imhur-līm I + +lā I +patānu I +šatû II + +suluppu I + +ṭerû I +ṣamādu II + + +šumma I +awīlu I +īnu I, -šu I +amurdinnu I +malû IV +sahliu I +qēmu I +labtu I +ina I +šikaru I +rabāku I +ṣamādu II + +īnu I, -šu I +lā I +paṭāru I +kalû II +ūmu I +šalāšī- I, -šu I +rakāsu I +ina I +erbe I +ūmu I +ina I +suādu I +erru I +īnu I, -šu I +kadādu I +mû I +ina I +libbu I +īnu I, -šu I +nadû III +īnu I, -šu I +šukkulu I +qeršu I +emmu I +ištiššu I +šinīšu I +šalāšī- I, -šu I +īnu I, -šu I +rakāsu I +lipiu I +kursinnu I +ṣabītu I +īnu I, -šu I + + +ina I +arkīta I +ina I +arû IV +abāru I +sâku I +īnu I, -šu I +eqû I +hûratu I +sâku I +ana I +muhhu I +īnu I, -šu I +tābīlu I +zarû II +ṣamādu II +kalû II +ūmu I +šalāšī- I, -šu I +riksu I +kullu III +nasāhu I +kalbānu I +u I +bīnu II +zēru II +qudru I +burāšu I +labtu I +sahliu I +balālu I +tābīlu I +ana I +muhhu I +qaqqadu I, -šu I +zarû II +qaqqadu I, -šu I +ṣamādu II, -ma I + +lā I +paṭāru I +ina I +erbe I +ūmu I +paṭāru I, -šu I, -ma I +qaqqadu I, -šu I +gullubu II +šammu I +ribku I +īnu I, -šu I +eqû I +nêšu I +šammu I, peṣû I +rikibtu I, argabu I +mēsallu I +abnu I +gabû I +uhūlu I, qarnānû I +murru I +qadūtu I +kasû II +napharu I +samāne I +šammu I +ṭīpu I +šumma I +awīlu I +īnu I, -šu I +ṣētu I +hamāṭu III +u I +amurdinnu I +malû IV +šammu I, peṣû I +abnu I +gabû I +mēsallu I +annû I +ṭīpu I +ša I +īnu I +kukuru I +qēmu I +labtu I +kasû II +annû I +ṭīpu I +ša I +īnu I +šumma I +awīlu I +īnu I, -šu I +giddagiddû I +kullu III +ana I +bītu I +ahû I +alāku I, -ma I +bābu I +šasû I +kīma I + + + +giddagiddû I +ašru III, šanû I +giddagiddû I, -kunu I +tabālu I +šanîš II + +ana I +bītu I +lā I +edû I +alāku I, -ma I +bābu I +šasû I +kīma I + + + + + + + + +giddagiddû I +ašru III, šanû I +giddagiddû I, -kunu I, -ma I +tabālu I + + +šumma I +awīlu I +ina I +īnu I, -šu I +lipištu I +kukuru I +burāšu I +ṭūru I +zēru II +bīnu II + +sâku I + +šumma I +awīlu I +ina I +īnu I, -šu I +šārtu I +aṣû I +u I +īnu I, -šu I +ešû IV +ṭabtu I +kammu II +lipiu I +kalītu I + +ša I +immeru I +dišpu I, šadû I +malmališ I +sâku I +ina I +himētu I +balālu I +īnu I, -šu I +eqû I +mašāšu I + +šumma I +awīlu I +īnu I, -šu I +šīru I +āliku I +malû IV +ana I +balāṭu II, -šu I + + + +zēru II + +ina I +dišpu I +sâku I +eqû I + + + + +ashar I +ina I +himētu I +sâku I +eqû I + + +šumma I +awīlu I +īnu I, -šu I +šīru I +āliku I +malû IV, -ma I +u I +alāku I +ana I +balāṭu II, -šu I + + +kanaktu I +šammu I, peṣû I +rikibtu I, argabu I +mēsallu I +ištēniš I +sâku I + +ina I +dāmu I +erēnu I +lū I +ina I +šamnu I +erēnu I +balālu I +passu I +epēšu II +ina I +mû I +sâku I +īnu I, -šu I +eqû I +šumma I +awīlu I +īnu I, -šu I +šīru I +u I +dāmu I +malû IV +murru I +nīnû I +šammu I, peṣû I +lipiu I +kanaktu I +rikibtu I, argabu I +sahliu I +šammu I +annû I +tēqītu I +ša I +šīru I +āliku I +šumma I +awīlu I +īnu I, -šu I +qūqānu I +malû IV +gurušgaraš I +ša I +šahû I + +ina I +ṣubātu I +esēpu I +sebe I +ūmu I +ina I +askuppu I +temēru I +elû III + + + +malmališ I +sâku I + + + + + + + + +ina I +lipiu I +eṣemtu I +kurû I +immeru I + + + + +sâku I +eqû I + + + + +malmališ I +sâku I +ina I +dišpu I +himētu I +šamnu I +erēnu I +šuhtu I +sâku I +eqû I +ana I +ašru III, šanû I +qēmu I +Ašnan I +itti I +labtu I +sâku I +ana I +muhhu I +īnu I, -šu I +šapāku I +šumma I +awīlu I +īnu I, -šu I + +ina I +lipiu I +kalītu I +immeru I +iškūru I +ištēniš I +balālu I +ina I +lipiu I +eṣemtu I +arku I +sâku I +eqû I +šumma I +ina I +īnu I + + + + + +eṭû II +awīlu I +šū I +šipru I, -šu I +labāru I, -ma I +īnu I, -šu I +apû I +ana I +balāṭu II, -šu I +ištēn I +šiqlu I + + + + + +ina I +himētu I +sâku I +īnu I, -šu I +eqû I +šumma I +awīlu I +īnu I, -šu I +napāhu I + +qēmu I +kukuru I +qēmu I +labtu I +hašālu I +napû II +ina I +šikaru I +rabāku I +īnu I, -šu I +ṣamādu II +šammu I, peṣû I +abnu I +gabû I +mēsallu I +šamnu I +ṭīpu I +ša I +īnu I +šumma I +awīlu I +īnu I, -šu I +barāru I +u I +dimtu II +kullu III + +iškūru I + + + + +sebe I +ūmu I +ina I +askuppu I +temēru I +elû III + + + +šumma I +awīlu I +īnu I, -šu I + +sâku I +īnu I, -šu I +eqû I + + +šumma I +awīlu I +īnu I, -šu I +erēpu I + +ina I +šamnu I +u I +šuhtu I +ša I +tangussu I +sâku I +īnu I, -šu I +eqû I +haṣbu III +labīru I +ša I +kibšu II +išû I +ina I +šamnu I +šuhtu I +sâku I +eqû I +dišpu I, šadû I + +šumma I +awīlu I +īnu I, -šu I +ṣahātu I +karānu I, šēlebu I +arqūtu I, -šu I +hesû I +mû I, -šu I +ina I +diqāru I +rabāku I +pānu I +katāmu I, -ma I +ša I +elēnu I +šalû I +ina I +šuhtu I +u I +šamnu I +sâku I +eqû I +ana I +ašru III, šanû I +sahliu I +ina I +šizbu I +kâṣu I +ina I +tinūru I +epû II +mādu I +lā I + + +lipiu I +kanaktu I +atā'išu I +abnu I +gabû I +šammu I, peṣû I +kasû II +ina I +himētu I +sâku I +īnu I, -šu I +eqû I +ana I +ašru III, šanû I +akalu I +šebru I +erēru I +sâku I +kīma I +ṭīpu I +ṭepû I +ana I +ašru III, šanû I +qēmu I +hallūru I +qēmu I +kakkû I +qēmu I +kasû II +sahliu I +qalû I +balṭu I +ina I +diqāru I +rabāku I +ṣamādu II + +ašru III, šanû I +baluhhu I +kasû II +ina I +šizbu I +sâku I +īnu I, -šu I + +ana I +ašru III, šanû I +šammu I, peṣû I +kutpû I +erēru I +ina I +himētu I +sâku I +eqû I +ana I +ašru III, šanû I +lulû II +ina I +lipiu I +eṣemtu I +immeru I +sâku I +eqû I +ana I +ašru III, šanû I +martu I +raqqu II +ina I +ṭabtu I +nâlu I +adi I +abālu I +šakānu I +inūma I +abālu I +ina I +šamnu I +šuhtu I +sâku I +eqû I +ana I +ašru III, šanû I +martu I + + + +eli I +patru I, ṣipparu I +ina I +himētu I +sâku I +eqû I + + + +ana I +ašru III, šanû I +šammu I, peṣû I +karānu I, šēlebu I +ina I +šamnu I +nadû III +ina I +ubānu I +eqû I +ana I +ašru III, šanû I +qaqqadu I +ṣurārû I +abālu I +sâku I +ina I +šamnu I +nadû III +eqû I +ana I +ašru III, šanû I +ṣurārû I +igāru I +abālu I +sâku I +ina I +mušālu I +ina I +pēmtu I +šakānu I +eqû I +sikkatu I, ṣēlu I +immeru I +erēru I +sâku I + + +ina I +mušālu I +šakānu I +kayyamānu I +eqû I +šumma I +awīlu I +īnu I, -šu I +katāmu I, -ma I + + +sâku I +ina I +himētu I +balālu I +ana I +libbu I +īnu I, -šu I +natāku I +muhhu I +ša I +rīmtu I +sâku I + +ina I +šamnu I +u I +muhhu I +ša I +summatu I +zikaru I +malmališ I +balālu I + +ina I +mušālu I +šakānu I +kayyamānu I +ana I +libbu I +īnu I, -šu I +nadû III +pelû II +erēbu II +sâku I + + + + +arki I +elû III, -ma I +patru I, ṣipparu I +himētu I +pašāšu I + + +qātu I, -ka I +ina I +mû I +mesû II + +ina I +himētu I +labāku I +eqû I + +ina I +mušālu I +šakānu I +kayyānu I +eqû I + +sâku I +eqû I + +ana I +šamnu I +rabāku I +rabiat I +kalgukku I +sâku I +eqû I + + + +kutpû I +ina I +šamnu I +erēnu I +sâku I +eqû I + + +karānu I, šēlebu I +sâku I +ina I +šamnu I +ina I +tangussu I +nabalkutu II +eqû I + +zēru II +egemgiru I +urnû I +ištēniš I +sâku I +eqû I + +ina I +šamnu I +sâku I +eqû I + + +ana I +libbu I +īnu I, -šu I +natāku I + +buṣinnu I +ša I +nūru I +sarāmu I +qutru I +ša I +nūru I + + +itti I +mû I +uhūlu I, qarnānû I +īnu I, -šu I +mesû II + +šammu I, peṣû I +hamiš I +šiqlu I +rikibtu I, argabu I +malmališ I +balālu I + +itqūru I +abāru I +ina I +šamnu I +u I +šuhtu I +sâku I +eqû I + +ina I +tangussu I +kaṣû III +ina I +tangussu I +balālu I + +šuhtu I +ša I +tangussu I +šamāṭu I +sebe I +ūmu I +eqû I + + +pa'ṣu I +lipiu I + +ina I +arû IV +abāru I +sâku I +eqû I +kappu I +īnu I, -šu I +kašû II +ana I +īnu I +kīṣu I +balāṭu II +u I +kappu I +īnu I, -šu I +aṣû I +sahliu I +kīṣu I +ina I +tinūru I +ṭehû I, -ma I +mādu I +lā I +erēru I +ina I +šamnu I, pūru I +rabāku I +īnu I, -šu I +eqû I +werû I +labīru I +ina I +himētu I +sâku I +kīma I +ribku I +īnu I, -šu I +eqû I +balāṭu II + +mû I +maštakal I +mû I +lišānu I, kalbu I + +karānu I, šēlebu I + +leqû II +ina I +šuhtu I +mû I +sahliu I +sâku I +īnu I, -šu I +eqû I + +erēru I +pa'āṣu I +ina I +šuhtu I +sâku I +eqû I + +sebe I +ūmu I +ina I +askuppu I +temēru I +elû III, -ma I +ina I +šuhtu I +sâku I +eqû I + +ina I +šuhtu I +sâku I +eqû I + + +īnu I, -šunu I +ina I +ṣillû II +takāpu I + +šammu I +ša I +erēbu II +ana I +sehru I, -šu I +leqû II + +šâšu I +sâku I +eqû I + +kamkadu I +sâku I +muhhu I +kurāru I +ša I +kappu I +īnu I, -šu I +gullubu II +ballukku I +zēru II +šammu I +daqqiqu I +zû I +uppattu I +gūru I +ša I +qanû I +zēru II +talupadi I +larsīnu I +ša I +hallu I +lahru I +ša I +šumēlu I +ša I +māšu I +alādu I +kalītu I +laliu I +lakû I +ša I +šammu I +lā I +našāku I +uṭṭatu I +lā I +ṣabātu I +ina I +nemsētu I +qalû II +baltu I +ša I +ṭabtu I +šarmadu I +karānu I, šēlebu I +zēru II +haṭṭu II, rē'û I +qalû II +zēru II +lišānu I, kalbu I +kurkanû I +egemgiru I +šammu I, peṣû I +qanû I, ṭābu I +ištēniš I +sâku I +balālu I +ina I +mû I +kasû II +sekru II +kaṣû I +lâšu I + +ṣamādu II + +šammu I, peṣû I + +eqû I +šumma I +awīlu I +īnu I, -šu I +awurriqānu I +malû IV +qilpu I +nurmû I +sâku I +ina I +takkussu I +ana I +libbu I +īnu I, -šu I +napāhu I +šumma I +awīlu I +īnu I, -šu I +awurriqānu I +malû IV +haṣbu III +nurmû I +ina I +šamnu I +sâku I +eqû I +mēsallu I +sâku I +eqû I +šumma I +awīlu I +īnu I, -šu I +marāṣu I, -ma I +ūmu I +mādu I +lā I +petû I +ina I +ummu II +qaqqadu I, -šu I +īnu I, -šu I +ṣillu I +malû IV + +ṣalmu I +qaqqadu I, -šu I +gullubu II +ina I +ūmu I +šalāšī- I, -šu I +līšu I +kaṣû III +zēru II +maštakal I +erēru I +ina I +himētu I +itqūru I +abāru I +sâku I +eqû I +mû I +mesû II +kasû II +eli I +īnu I, -šu I +šakānu I +adi I +zakû II +târu I +karānu I, šēlebu I +dišpu I, šadû I +ina I +himētu I +balālu I +eqû I +šumma I +awīlu I +īnu I, -šu I +marāṣu I, -ma I +šišītu I +muhhu I +lamassatu I +īnu I, -šu I +arāmu I +dimtu II +alāku I +īnu I, -šu I +ṣillu I +malû IV +errû I +sahlânu I +zēru II +lišānu I, kalbu I + +šammu I, peṣû I +rikibtu I, argabu I +ištēnšeret I +šamnu I +šâšunu I +ištēniš I +sâku I +ina I +šamnu I +erēnu I +balālu I +īnu I, -šu I +eqû I +balāṭu II +šumma I +awīlu I +īnu I, -šu I +marāṣu I, -ma I +šišītu I +muhhu I +lamassatu I +īnu I, -šu I +arāmu I +diglu I +kabātu I +ana I +pūṣu I +ša I +muhhu I +lamassatu I +īnu I, -šu I +nasāhu I +aktam I + +sâku I + +ina I +šamnu I +erēnu I +balālu I +īnu I, -šu I +eqû I +balāṭu II +šumma I +awīlu I +īnu I, -šu I +marāṣu I, -ma I + + +diglu I +kabātu I + + + +sâku I +īnu I, -šu I +eqû I + + + + + + + + + +sâku I +eqû I + +pillû I +zikaru I + + +akālu I, -ma I + + + +sâku I +ina I +takkussu I +ana I +libbu I +īnu I, -šu I +napāhu I + +sâku I +šanîš I + +nadû III +ana I +muhhu I +haṣbu III +igulû I + + +šarāpu I +qutru I +ša I +šittu II + +ahennâ I +īnu I, -šu I +eqû I +balāṭu II +šumma I +awīlu I +īnu I, -šu I + + +kabātu I +ana I +balāṭu II, -šu I +hīlu I +nuhurtu I +hīlu I +baluhhu I + + +sebe I +warhu I +u I +samāne I +warhu I +nasāhu I +balāṭu II +šumma I +awīlu I +īnu I, -šu I +šišītu I +malû IV + +hamiššeret I +uṭṭatu I +haṣbu III +šammu I, peṣû I +ina I +himētu I +sâku I +eqû I +šumma I +awīlu I +šanîš I +ištēn I +šiqlu I +rikibtu I, argabu I + +sâku I + + + +tābīlu I +eqû I +šumma I +awīlu I +šanîš I +ištēn I +šiqlu I +rikibtu I, argabu I +ina I +himētu I +sâku I +eqû I +hamiššeret I +uṭṭatu I +haṣbu III + +ina I + +sâku I +eqû I +imhur-līm I +ina I +himētu I +sâku I +īnu I, -šu I +eqû I + +ištiššu I +šinīšu I +šalāšī- I, -šu I +himētu I +sâku I +eqû I + +ina I +himētu I +sâku I +ina I +warhu I +šalāšī- I, -šu I +eqû I +rikibtu I, argabu I +ina I +himētu I +sâku I +eqû I +artu I +bīnu II +artu I +ēru II +ina I +ṭābātu I +lâšu I +īnu I, -šu I +ṣamādu II +šammu I, peṣû I +uhūlu I, qarnānû I +uznu I, laliu I +lā I +patānu I +ana I +libbu I +īnu I, -šu I +mazā'u II + + +mēsallu I +sīku I +labtu I +balālu I +erēru I +sâku I +eqû I +šumma I + +šuhtu I +ina I +libbu I +lipiu I +sāqu I +ṣabītu I +sâku I +eqû I +šumma I + +murru I +šizbu I +musukku I +ša I +zikaru I +alādu I +sâku I +eqû I +dišpu I +himētu I +ana I +libbu I +īnu I, -šu I +natāku I +šumma I + + + + +šāru I +lā I +aṣû I + + +ina I +himētu I +balālu I +eqû I + +šaqālu I +eqû I + +rikibtu I, argabu I +tābīlu I +ina I +himētu I +balālu I +ašru III, šanû I + +ubānu I, aṣû I +arqūtu I, -šu I +ina I +mû I +mesû II +hašālu I +mû I, -šunu I + +abālu I +šihiltu I +šuhtu I +malmališ I +balālu I +ina I +mû I +mesû II +dišpu I, šadû I +sâku I +eqû I + +ina I +šizbu I +musukku I +malmališ I +balālu I +sâku I +eqû I + +mû I, -šunu I +ana I +pursītu I +ṣahātu I + +adi I +abālu I +šakānu I +inūma I +abālu I +ina I +šuhtu I +himētu I +sâku I +eqû I + +ana I +libbu I +īnu I, -šu I +natāku I +lipiu I +ina I +šuhtu I +sâku I +eqû I +šumma I + +īnu I, -šu I +katāmu I +kurṣiptu I +eqlu I +ina I +mešēltu I +sâku I +libbu I +īnu I, -šu I + + +šadânu I, ṣābitu I +šuršu I +gišimmaru I +zikaru I + +gabû I +ahû I +sâku I +eqû I + + +inbu I +errû I +hašālu I +ina I +šamnu I +sâku I +eqû I + +ina I +dišpu I, šadû I +himētu I +šanîš I + +sâku I +eqû I + +sâku I +ina I +himētu I +balālu I + + +īnu I, -šunu I +ina I +ṣillû II +takāpu I + +ina I +itqūru I +abāru I +sâku I +eqû I + +billatu I +abālu I +hašālu I +ina I +himētu I +sâku I +eqû I + +sâku I +ana I +libbu I +īnu I, -šu I +natāku I + +eqû I + + + + + + +sâku I +eqû I + +ina I +ṣubātu I +esēpu I + +ana I +libbu I +īnu I, -šu I +natāku I + + +nasāhu I + + +piqannu I +ṣabītu I + +sâku I +eqû I + + + + +ina I +mû I +sâku I +eqû I + +ina I +šikaru I +lâšu I +īnu I, -šu I +ṣamādu II + +eqû I + + +sâku I +eqû I + +ina I +šamnu I +sâku I +eqû I + +ina I +īnu I, -šu I +marṣu I +emēdu I + +sâku I +eqû I + +sâku I +eqû I + + + +rakāsu I +šīnātu I + +atā'išu I +libbu I +īnu I, -šu I + +ṭênu I +šumma I +īnu I, -šu I + +sahliu I +šammu I +ašû I + +ina I +šizbu I +balālu I +eqû I +ana I +nâhu I + + + +ina I +šamnu I +balālu I +eqû I +lipiu I +haṣbu III +ṭabtu I +ana I +libbu I +īnu I, -šu I + +ina I +šamnu I +erēnu I +balālu I +eqû I +mēsallu I +aktam I +sâku I +ina I +dišpu I + +ina I +dašpu I +peṣû I +patru I, ṣipparu I +šanîš I +šumma I +awīlu I +īnu I, -šu I +madāru II + + + +šammu I, peṣû I +zēru II + +rikibtu I, argabu I + +abāru I +ina I +himētu I +qalû II + + +šumma I +awīlu I +īnu I, -šu I +ṣillu I, -ma I +šamāhu I + +šumma I +awīlu I +īnu I +imittu I, -šu I +ṣillu I, -ma I + +ina I +naglabu I +šēlu I + +šumma I +awīlu I +īnu I +šumēlu I, -šu I +ṣillu I, -ma I + +ina I +naglabu I + +šumma I +awīlu I +īnu I, -šu I +marṣu I +nawāru I + + +muhhu I +ša I +erû I +ina I +šizbu I +musukku I +sâku I + +zēru II + +sīku I +labtu I +balālu I + +šumma I +awīlu I +lamassatu I +īnu I, -šu I +ṣillu I +malû IV + +īnu I, -šu I +eqû I +ana I +ašru III, šanû I +hīlu I +abukkatu I + +šumma I +īnu I +awīlu I +ṣillu I +ṣirihtu I +malû IV + + + + + + + + + +ana I +ašru III, šanû I + +šumma I +awīlu I +īnu I, -šu I + + +malû IV + + + + +dāmu I +kurṣiptu I +alpu I +ṣalmu I +u I + + +šumma I +awīlu I +īnu I, -šu I +dalāhu I +dišpu I +peṣû I +ina I +himētu I +ištēniš I +balālu I + +šanû I, ṭuppu I +šumma I +awīlu I +īnu I, -šu I +marāṣu I +ēkallu I +Assurbanipal I +šarru I +kiššatu I +šarru I +mātu I +Aššur I +ša I +Nabu I +u I +Tašmetu I +uznu I +rapšu I +šarāku I, -šum I +ahāzu I +īnu I +nawru I +nisqu I +ṭupšarrūtu I +ša I +ina I +šarru I +alāku I +mahru II, -ya I +mamman I +šipru I +šuāti I +lā I +ahāzu I +bulṭu I +ištu I +muhhu I +adi I +ṣupru I +liqtu I +ahû I +tāhīzu I +naklu I +azugallūtu I +Ninurta I +u I +Gula I +mala I +bašāmu II +ina I +ṭuppu I +šaṭāru II +sanāqu I +barû I +ana I +tāmartu I +šasû I, -ya I +qerbu II +ēkallu I, -ya I +kânu I +šumma I +awīlu I +suālu I +marāṣu I +ana I +kīsu III +libbu I +târu I, -šum I +šuršu I +pillû I +šuršu I +šūšu I +tarmuš I +imhur-līm I +imhur-ešrā I +tullal I +šakirû I +sebe I +šammu I +annû I +ištēniš I +sâku I +ina I +šikaru I +nadû III +ina I +kakkabu I +biātu I +ina I +šēru II +lā I +patānu I +šatû II, -ma I +nêšu I +šumma I +awīlu I +kīsu III +libbu I +marāṣu I +ina I +ūmu I + +makūru I +rakābu I, -šu I +warādu I, -šu I, -ma I +tû I +kīam I +manû IV +šiptu I + + + + + + + + + + + + +Zarpānītu I + + + + + + + + + + + + + +tû I +šiptu I +tû I +annû I +manû IV, -ma I +balāṭu II +ana I +ašru III +šanû I +šīru I +šikkû I +abālu I +balu I +patānu I +šatû II, -ma I +balāṭu II +ana I +ašru III +šanû I +šuršu I +šūšu I +ina I +mû I +balu I +patānu I +šatû II, -ma I +balāṭu II +ana I +ašru III +šanû I +ṭabtu I +sâku I +ina I +mû I +balu I +patānu I +šatû II, -ma I +balāṭu II +ana I +ašru III +šanû I +ṭabtu I +amānu I +sâku I +balu I +patānu I +šatû II, -ma I +balāṭu II +šumma I +awīlu I +kīsu III +libbu I +marāṣu I +awīlu I +šū I +ina I +muhhu I +šēpu I, -šu I +ašābu I, -šu I +mû I +kasû II +sekru II +emmu I +ana I +muhhu I, -šu I +šapāku I, -ma I +balāṭu II +ana I +ašru III +šanû I +ina I +muhhu I +šēpu I, -šu I +kamāsu II, -ma I +ašābu I +mû I +kaṣû I +ana I +muhhu I +rēšu I, -šu I +qarāru I +ana I +ašru III +šanû I +qaqqadu I, -šu I +ana I +šaplānu I +šakānu I +šēpu I, -šu I +ana I +elēnû I +šaqû II +ina I +mēkûtu I +lētu I, -šu I +mahāṣu I +ina I +mēkûtu I +mašādu I, -šu I, -ma I +ana I +libbu I +ṭiābu I +qabû II +ina I +ubānu I, -ka I +rabû I +ša I +šumēlu I +erbēšerīšu I +qinnatu I, -šu I +lapātu I +erbēšerīšu I +qaqqadu I, -šu I +lapātu I +u I +qaqqaru I +lapātu I +ana I +ašru III +šanû I +šuršu I +pillû I +zikaru I +šuršu I +šūšu I +imhur-līm I +imhur-ešrā I +tarmuš I +maštakal I +lišānu I +kalbu I +sâku I +lū I +ina I +mû I +lū I +ina I +šikaru I +šatû II +šumma I +awīlu I +libbu I, -šu I +tebû I, -am I, -šum I +ešer I +qû II + + + + +ešer I +qû II +marišmara I +sâku I +balālu I + + + + +balāṭu II +šumma I +awīlu I +kīsu III +libbu I +marāṣu I +qerbu II, -šu I +magal I +napāhu I +mušēridu I, -šu I +akālu I, -šum I +imhur-ešrā I +šuršu I +pillû I +zikaru I +ahennâ I +hašālu I +napû II +ina I +libbu I +malmališ I +leqû II +ina I +šikaru I +šatû II +ina I +mû I +kaṣû I +labāku I +ina I +kakkabu I +biātu I +ina I +šēru II +bašālu I +šahālu I +ana I +šuburru I, -šu I +šapāku I +ešēru I, -ma I +balāṭu II +kukuru I +burāšu I +ṣumlalû I +aru I +libāru I +aru I + +zēru II +urbatu I +ištēniš I +hašālu I +napû II +itti I +lipiu I +ṭūru I +balālu I +ina I +mašku I +ṭerû I +rēšu I +libbu I, -šu I +ṣamādu II, -ma I +balāṭu II +šumma I +awīlu I +kīsu III +libbu I +marāṣu I +akalu I +u I +šikaru I +libbu I, -šu I +lā I +mahāru I, -šum I +ina I +pû I, -šu I +târu I +tākaltu I, -šu I +sahālu I +parû IV +šīru I, -šu I +ramû III +šāru I +ina I +šuburru I, -šu I +sahāru I +qerbu II, -šu I +ebēṭu I +ana I +balāṭu II + +qû II +mû I +suluppu I + +qû II +mû I +kasû II +ešer I +qû II +ṭābātu I +šalāš I +šiqlu I +šamnu I +halṣu I +šina II +šiqlu I +dišpu I +ešer I +šiqlu I +nīnû I +sâku I +ana I +libbu I +nadû III +ina I +mūšu I +ana I +pānu I +Enzu I +biātu I +ina I +šēru II +lā I +patānu I +šaqû III, -šu I +arki I, -šu I + +qû II +šiqqu I +šaqû III, -šu I +ina I +pû I, -šu I +u I +šuburru I, -šu I +ešēru I +sêru I, -šu I, -ma I +balāṭu II +ana I +ašru III +šanû I +ṭabtu I +šadû I +ṭabtu I +amānu I +ištēniš I +sâku I +ina I +šikaru I +lā I +patānu I +šaqû III, -šu I +ina I +pû I, -šu I +u I +šuburru I, -šu I +ešēru I +sêru I, -šu I, -ma I +balāṭu II +ana I +ašru III +šanû I +nuhurtu I +sebe I +uṭṭatu I +imhur-līm I +ištēniš I +sâku I +ina I +šikaru I, rēštû I +lā I +patānu I +šaqû III, -šu I +ina I +pû I, -šu I +u I +šuburru I, -šu I +ešēru I +ašru III +šanû I +ana I +ašru III +šanû I +qēmu I +labtu I +qēmu I +harūbu I +diktu I +suluppu I +ištēniš I +sâku I +ina I +šikaru I +lā I +patānu I +šina II +ūmu I +šatû II +šina II +ūmu I +ina I +mû I +lā I +patānu I +šatû II +mû I +rēšu I +libbu I, -šu I +salāhu I, -ma I +balāṭu II +ana I +ašru III +šanû I +tangussu I +mû I +u I +šikaru I +malû IV, -ma I +sīhu II +argānu I +barīrātu I +hašû III +aktam I +ana I +libbu I +nadû III + + + + + + + + + + +šamnu I +erēnu I +pašāšu I, -šu I + +qû II +sahliu I + +qû II +kukuru I + +qû II +burāšu I + +qû II +qudru I + +qû II +kasû II + +qû II +qēmu I +buqlu I + +qû II +qēmu I +hallūru I + +qû II +qēmu I +kakkû I + +qû II +pappāsītu I + +qû II +nīnû I + +qû II +kamantu I + +qû II +zû I +summatu I + +qû II +erištu I, erištu II +eqlu I +ešer I +šiqlu I +nikiptu II +ešer I +šiqlu I +imbû I +tiāmtu I + +qû II +qēmu I +kibtu I + +qû II +suluppu I + +qû II +billatu I +našpu I + +qû II +isqūqu I + +šammu I +annû I +ištēniš I +hašālu I +napû II +ina I +šikaru I, rēštû I +ina I +tangussu I +kīma I +rabīku I +rabāku I +šalāš I +ūmu I +rēšu I +libbu I, -šu I +ṣamādu II +akalu I +u I +šikaru I +libbu I, -šu I +mahāru I, -šum I, -ma I +balāṭu II +šumma I +awīlu I +libbu I, -šu I +kasû III, -šum I +imhur-līm I +lā I +patānu I +akālu I +sâku I +ina I +šikaru I +lā I +patānu I +šatû II, -ma I +balāṭu II +ana I +ašru III +šanû I +imhur-ešrā I +šuršu I +šurnû I +lā I +patānu I +akālu I +sâku I +ina I +šikaru I +lā I +patānu I +šatû II, -ma I +balāṭu II +ana I +ašru III +šanû I +arzallu I +hašû III +kukuru I + + + + +lā I +patānu I +ašru III +šanû I +ana I +ašru III +šanû I +lipiu I +ayyaru I +ilu I +itti I +himētu I +u I +ṭabtu I +balālu I +lā I +patānu I +akālu I, -ma I +balāṭu II +ana I +ašru III +šanû I +kakkusakku I +ša I +artu I, -šu I +rapāšu I +ina I +mû I +kasû II +sâku I +ina I +šikaru I +u I +dišpu I +mahāṣu I +lā I +patānu I +šatû II, -ma I +balāṭu II +ana I +ašru III +šanû I +kakkusakku I +ša I +artu I, -šu I +rapāšu I +u I +ṭabtu I +ištēniš I +sâku I +ina I +šikaru I +u I +dišpu I +mahāṣu I +lā I +patānu I +šatû II, -ma I +balāṭu II +ana I +ašru III +šanû I +dadānu I +ša I +artu I, -šu I +rapāšu I +kīma I +laptu II +salāqu I +šatû II +balāṭu II +ana I +ašru III +šanû I +šuršu I +šūšu I +lā I +patānu I +akālu I +sâku I +ina I +šikaru I +lā I +patānu I +šatû II + + + + + + + +balāṭu II +šumma I +awīlu I + + + + + +rašû I +ūmu I +libbu I, -šu I +ṣabātu I, -šu I + + + + + +lā I +patānu I +šatû II +balāṭu II + + + +šikaru I +šanû I + + + + + + + + + +šumma I +awīlu I +libbu I, -šu I +akālu I, -šum I +hašû III +ṭabtu I +sâku I +lū I +ina I +mû I +lū I +ina I +šikaru I +lū I +ina I +karānu I +šiptu I +ana I +libbu I +nadû III +šatû II +šumma I +awīlu I +libbu I, -šu I +akālu I, -šum I +hašû III +lū I +ina I +mû I +lū I +ina I +šikaru I +šatû II +šumma I +awīlu I +libbu I, -šu I +akālu I, -šum I +tīyatu I +ina I +šikaru I +šatû II +imhur-līm I +ina I +šikaru I +imhur-ešrā I +ina I +šikaru I +tarmuš I +ina I +šikaru I +ēdu I +ina I +šikaru I +zību III +ina I +šikaru I +būšānu I +ina I +šikaru I +hašû III +lū I +ina I +šikaru I +lū I +ina I +karānu I +šumma I +awīlu I +qerbu II, -šu I +akālu I, -šum I + +qû II +suluppu I + +qû II +mundu I +kibtu I + +qû II +šibirtu I +buqlu I +ina I +šalāš I +qû II +šikaru I, rēštû I +bašālu I +kaṣû III +šahālu I +šamnu I +ana I +pānu I +nadû III +ana I +šuburru I, -šu I +tabāku I +inūma I +laptu II +šūmū I +kamūnu I +sâku I +ina I +šikaru I +šatû II +ana I +ašru III +šanû I +hassū I +šūmū I +sâku I +ana I +mû I +nadû III +ina I +kakkabu I +biātu I +šatû II +ištu I +šatû II +mersu I +ina I +himētu I +akālu I +ana I +ašru III +šanû I +nuhurtu I +sâku I +ina I +šikaru I +šatû II +ana I +ašru III +šanû I +imhur-līm I +sâku I +ašru III +šanû I +ana I +ašru III +šanû I +sikillu I +arqu I +akālu I +šumma I +awīlu I +libbu I, -šu I +kasû III, -šum I +šūmū I +arqūtu I, -šu I +kukuru I +ištēniš I +sâku I +ina I +mû I +mahāṣu I +lā I +patānu I +šaqû III, -šu I +suluppu I +lū I +ina I +nāhu I +lū I +ina I +šamnu I +akālu I +ana I +ašru III +šanû I +kikkirânu I +peṣû I +sâku I +ina I +šikaru I +lā I +patānu I +šatû II, -ma I +balāṭu II +ana I +ašru III +šanû I +imhur-līm I +imhur-ešrā I +tarmuš I +šuršu I +pillû I +zikaru I + + + +malmališ I +balālu I +ina I +šikaru I +rasānu I +ina I +kakkabu I +biātu I +ina I +šēru II +balu I +patānu I +šaqû III, -šu I +mû I +kasû II +ul I +šaqû III, -šu I +balāṭu II +šumma I +awīlu I +libbu I, -šu I +kasû III, -šum I +qerbu II, -šu I +magal I +napāhu I +hašû III +qanû I +ṭābu I +ballukku I +burāšu I +ana I +libbu I +nadû III +bašālu I +šahālu I +lū I +bahru I +ana I +šuburru I, -šu I +šapāku I, -ma I +balāṭu II +šumma I +awīlu I +akalu I +akālu I +šikaru I +šatû II, -ma I +šebû I +libbu I, -šu I +kasû III, -šum I +ṣabātu I, -šu I +qerbu II, -šu I +napāhu I +u I +esēlu I +libbu I, -šu I +še'û I +naptanu I +marāṣu I +ana I +balāṭu II, -šu I +erēnu I +šurmēnu I +qanû I +ṭābu I +ballukku I +asu I +hašû III +hamiš I +šammu I +annû I +ištēniš I +kasāmu I +ana I +šikaru I +nadû III +bašālu I +šahālu I +dišpu I +u I +šamnu I +halṣu I +ana I +libbu I +nadû III +lū I +bahru I +ana I +mašku I +mašqītu I +esēpu I +ana I +šuburru I, -šu I +tabāku I +balāṭu II +šiptu I +qerbu II +pašāru I +zâru I +karšu I +tīrānu I +kaṣāru I + + + + + + + + + +ekletu I +kī I +mû I +hirītu I +alapû I +nadû III +pānu I, -šu I +šāru I +ṣēru I +edēpu I +nadû III +naqû I +qātu I +ṣēru I +malû IV +īnu I, -šu I +abālu I +šaptu I, -šu I +napāṣu I +kīma I +nūnu I +kabāru I +kīma I +ṣerru I +amāru I, -ma I +Gula I +nadānu II +balāṭu I +awīlūtu I +ina I +bītu I +Asalluhi I +wabālu I +eṭlu I +Marduk I +rēmēnû I +palāsu I +gešû I, -ma I +balāṭu II +eṭlu I +šumma I +šāru I +ina I +šuburru I +aṣû I +šumma I +gišûtu I +ina I +napištu I +aṣû I +tû I +šiptu I +ka'inimmaku I +ana I +kīsu III +libbu I +manû IV +šumma I +awīlu I +ašāšu III +akalu I +u I +šikaru I +lā I +mahāru I +naglabu I, -šu I +akālu I, -šum I +qaqqadu I, -šu I +ginâ I +ṣamādu II +himētu I +akālu I +sebe I, ūmu I +šūmū I +šamaškilu I +karašu I +lā I +akālu I +ina I +mû I +šunû II +rahāṣu I +zēru II +errû I +zēru II +hašû III +sâku I +ina I +šikaru I +šatû II, -ma I +balāṭu II +ana I +ašru III +šanû I + + + +līšu I +abālu I +sâku I +ina I +šikaru I +sābû I +šatû II +zēru II +errû I +zēru II +burāšu I +zēru II +šunû II +sâku I +ina I +šikaru I +šatû II +šumma I +awīlu I +kīsu III +libbu I +marāṣu I +ana I +kīsu III +libbu I +parāsu I +imhur-līm I +imhur-ešrā I +tarmuš I +tarmuš I +nīnû I +sâku I +ina I +šamnu I +u I +šikaru I +šatû II + + + +ina I +šikaru I +šatû II +hulû I +šābulu I +akālu I + + + +kakkusakku I +ša I +artu I, -šu I +rapāšu I +būšānu I +imhur-līm I +sâku I +ina I +napṭu I +šamnu I +ellu I +šatû II +ṭabtu I +ina I +šikaru I +šatû II +ṭabtu I +ina I +mû I +lā I +patānu I +šatû II, -ma I +nêšu I +šumma I +awīlu I +libbu I, -ī I +libbu I, -ī I +šasû I +urnû I +hašû III +tīyatu I +nuhurtu I +nīnû I +sahliu I +tarmuš I +imhur-līm I +imhur-ešrā I +aktam I +maštakal I +bīnu II +šinšeret I +šammu I +annû I +balu I +patānu I +ina I +šikaru I +šatû II +šumma I +awīlu I +libbu I, -šu I +kâru I +aru I +bīnu II +maštakal I +iṣu I +pišru I +sâku I +ina I +šikaru I +lā I +patānu I +šatû II, -ma I +nêšu I +šuršu I +šūšu I +šuršu I +pillû I +zikaru I +tarmuš I +imhur-līm I +imhur-ešrā I +maštakal I +zēru II +maštakal I +sebe I +šammu I +kīsu III +libbu I +ina I +šikaru I +šatû II +ištēn I +šiqlu I +ṭabtu I +mēsallu I +kukuru I +burāšu I +ištēniš I +hašālu I +napû II +ina I +šikaru I +bašālu I + + +ana I +libbu I +nadû III +ana I +šuburru I, -šu I +tabāku I +šiptu I +mīnu I +malû IV +libbu I, -ka I +mīnu I +malû IV +libbu I, -ka I + + + + + +libbu I, -ka I +mannu I +šapāru I +ana I +gugallu I +libbu I, -ka I +našû II + + + + + + + + + + + + +petû II +nāru I + + + + + + + + + +naparšudu I, -ma I +aṣû I +zû I, -šu I + + + + + + + + + + + + + + +amāru I +šiptu I +ul I +yā'u I + + + + + + + + + + + + + + + + +Gula I +balāṭu II +qīštu I +leqû II +šiptu I +šiptu I + + + + + + + + + + + + + +akālu I, -ya I +libbu I +ardatu I +ana I +hepû II, -ya I + + + + + + + + + + + +libbu I +alpu I +ina I +urû I +akālu I + + + + + + + + +libbu I +šahû I +ina I +asurrû I + + + + + + +Asalluhi I +u I +Gula I + + + + + + + + +qabû II, -nim I, -ma I +anāku I +šanû III + + + + + + + + + + +šiptu I +ana I +muhhu I +abunnatu I +manû IV + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +kikiṭṭû I, -šu I + + + + +ana I +muhhu I +šiptu I +nadû III +ina I +pû I, -šu I +mazāqu I, -ma I +ina I +šikaru I +šatû II, -ma I +nêšu I + + + + + + + + + +kikiṭṭû I, -šu I + + + + +šiptu I +sebîšu I +manû IV +ina I +pû I, -šu I +mazāqu I, -ma I +nêšu I +šiptu I +Šakkan I +ina I +ṣēru I +libbu I, -šu I +kasû III, -šum I, -ma I +eperu I +mahāṣu I +malû IV +rittu I, -šu I +ul I +ummu I +petû I +pānu I, -šu I +ul I +ahātu I +šaqû II +rēšu I, -šu I +kīma I + + + +našû II +patru I +tû I +šiptu I +kikiṭṭû I, -šu I +kirbānu I +ṭabtu I +nuhurtu I +leqû II +ana I +muhhu I +šiptu I +nadû III + + + + + + + + + +šiptu I +šammu I +ša I +libbu I +ina I +šadû I +aṣû I, -ma I +nasāhu I, -ma I + + + + + +ana I +Šamaš I +qabû II, -ma I +ṣabātu I +libbu I +Šamaš I + + + + + + + + + + + + + + + + +ana I +annanna I +māru I +annanna I +qabû II, -ma I +ṣabātu I +libbu I +annanna I +māru I +annanna I + + + + + + + + + + + + + + + + +ana I +Ea I +bēlu I, -ya I +qabû II, -ma I +libbu I + + + + + + + + + + +libbu I +šamû I +u I +erṣetu I +pašāru I +libbu I + + + + + + +libbu I +annanna I +māru I +annanna I +pašāru I + + + + + + + + + +šaqû III, -šu I + +ka'inimmaku I + +kikiṭṭû I, -šu I + + + +sebîšu I +u I +sebîšu I + + +ištu I +nahbû I + +ana I +pānu I +Šamaš I +šiptu I +sebîšu I + + + +manû IV + +ina I +ašru III +sarāmu I + + + + +ina I +šēpu I +imittu I +u I +šumēlu I + + +ina I +nakkapu I +šēpu I +imittu I +u I +šumēlu I +nasāku I, -ma I +nêšu I +šiptu I +libbu I +Šamaš I +ina I +šadû I + + +marāṣu I, -ma I +šammu I +libbu I +ina I +Magan I +aṣû I, -ma I +Sîn I +nasāhu I, -šu I +ša I +Šamaš I +amāru I +pānu I, -šu I +Šamaš I +šammu I +ištu I +šadû I +warādu I, -ma I +šakānu I, -ma I +ina I +qaqqaru I +šuršu I, -šu I +qaqqaru I +malû IV +qarnu I, -šu I +šamû I +nakāpu I +ṣabātu I +libbu I +Šamaš I +ina I +leqû II, -šu I +ṣabātu I +libbu I +Sîn I +ina I +erpetu I +ṣabātu I +libbu I +alpu I +ina I +tarbaṣu I +ṣabātu I +libbu I +immeru I +ina I +supūru I +ṣabātu I +libbu I +imēru I +ina I +sugullu I +ṣabātu I +libbu I +kalbu I +ina I +šigaru I +ṣabātu I +libbu I +šahû I +ina I +erretu II +ṣabātu I +libbu I +eṭlu I +ina I +mēlultu I +ṣabātu I +libbu I +ardatu I +ina I +uršu I, -ša I +ṣabātu I +libbu I +annanna I +māru I +annanna I + + +ana I +erēšu II, -šu I +zumru I, -šu I +nadû III +ēm I +šakānu I +nadû III +tû I +šiptu I +kikiṭṭû I, -šu I +urnû I +nuhurtu I +tīyatu I +kasû II +nīnû I +ištēniš I +sâku I +ina I +šikaru I +mahāṣu I +šiptu I +ana I +libbu I +manû IV +ina I +qātu I +šumēlu I, -šu I +šatû II, -ma I +balāṭu II +šiptu I +šammu I +ša I +libbu I +ina I +šadû I +aṣû I, -ma I +nasāhu I, -šu I, -ma I +ṣabātu I +libbu I +ana I +Šamaš I +qabû II, -ma I +ṣabātu I +libbu I +Šamaš I +ana I +šamû I +u I +erṣetu I +qabû II, -ma I +ṣabātu I +libbu I +šamû I +u I +erṣetu I +ana I +umāmu I +qabû II, -ma I +ṣabātu I +libbu I +umāmu I +ana I +Ea I +bēlu I +apsû I +qabû II, -ma I +libbu I +pašāru I +libbu I +Šamaš I +pašāru I +kīma I +libbu I +Šamaš I +pašāru I +libbu I +šamû I +u I +erṣetu I +pašāru I +kīma I +libbu I +šamû I +u I +erṣetu I + + + + +kikiṭṭû I, -šu I + + + + +šiptu I +sebîšu I +manû IV +ina I +pû I, -šu I +mazāqu I, -ma I +nêšu I +šiptu I +dimtu II + + + + + + + + +sābītu I +namzītu I +ašītu I +pû I +ina I +awātu I +Marduk I +ina I +qibītu I +Šamaš I +awīlu I +balāṭu II +tû I +šiptu I +šiptu I +šāru I +ellu I +ša I +ina I +šadû I +ašābu I +mannu I +wabālu I, -am I, -ka I + + +ellu I +ša I +awīlūtu I +ša I +šīru I, -šu I +ša I +lā I +akālu I +ša I +pilšu I, -šu I +ša I +lā I + + + + + + +šāru I +ana I +šuburru I +kīma I +ṣēru I +karānu I +aṣû I + + +tû I +šiptu I +kikiṭṭû I, -šu I +tīyatu I +kasû II + + + +šamnu I +ana I +pānu I +maštû I +zarû II +šalāšī- I +šiptu I +manû IV + +ana I +ašru III +šanû I + + + + + + + + +tīyatu I +kasû II +marāqu I +ina I +šikaru I +šatû II +ana I +ašru III +šanû I + +ina I +šamnu I +u I +šikaru I, rēštû I +šatû II +šiptu I +esēlu I +kīma I +nādu I +napāhu I, -ma I +kīma I +luppu I +pû I, -šu I +šû I +ina I +pû I, -šu I +šû I +tittu I +lā I +aṣû I, -ma I +tû I +šiptu I +kikiṭṭû I, -šu I +ina I +ubānu I +šēpu I, -ka I +rabû I +ša I +šumēlu I +šiptu I +sebîšu I +ana I +muhhu I +abunnatu I, -šu I +nadû III, -ma I +nêšu I +šiptu I +libbu I +namzītu I +šikaru I +nasāhu I +tû I +šiptu I +kikiṭṭû I, -šu I +ina I +ubānu I +šēpu I, -ka I +rabû I +ša I +šumēlu I +šiptu I +nadû III +u I +ina I +ubānu I, -ka I +marāṭu I, -ma I +nêšu I +šiptu I +šāru I, -mi I +šāru I +šāru I +išātu I +ilu I +attā I +šāru I +ša I +birītu I +zû I +u I +šināti I +attā I +aṣû I, -ma I +itti I +ilu I +ahu I, -ka I +nadû III +kussû I, -ka I +šiptu I +kikiṭṭû I, -šu I +lišānu I +kalbu I +abālu I +sâku I +ina I +šamnu I +nadû III +šiptu I +manû IV +pašāšu I, -šu I, -ma I +nêšu I +šiptu I +libbu I, -ma I +libbu I +libbu I +danānu II +libbu I +qarrādu I +kīma I +nēšu I +malû IV +puluhtu I +kīma I +barbaru I +lakādu I +wašāru I +šiptu I +ul I +yā'u I +šiptu I +Gula I +šiptu I +nadû III +šiptu I +ana I +mārtu I +Ea I +nadû III +šiptu I +ana I +mārtu I +Anu I +nadû III +ana I +mārtu I +ilu I +aššu I +mīnu I +aššu I +mīnu I +aššu I +kabattu I +aššu I +libbu I +aššu I +libbu I +aššu I +libbu I +marṣu I +tû I +šiptu I +kikiṭṭû I, -šu I +šīpātu I +peṣû I +ṭurru I +ṭawû I +sebe I +kiṣru I +kaṣāru I +šiptu I +manû IV +ina I +arkatu I, -šu I +rakāsu I, -ma I +nêšu I +šiptu I +ana I +bâru III, zāninu I +qabû II, -ma I +umma I +Adapa I +apkallu I, -ma I +ištu I +attā I +u I +anāku I +kullatu I +šadû I +etēqu I, -am I, -ma I +mû I +būru I +halālu III + + + + + + + + + + + + + +qātu I +marṣu I +ṣabātu I +šiptu I +Ea I +nadû III, -šum I, -ma I +awīlu I +balāṭu II +šiptu I +kikiṭṭû I, -šu I +nuhurtu I +tīyatu I +ṭabtu I +marāqu I + + + + + + + + + + +šumēlu I, -šu I +ina I +qātu I, -ka I +marāṭu I +šiptu I + + + +ana I +bâru III, nadānu II +šapāru I, -am I, -ni I + +ina I +ahu II +būru I +ša I +šadû I + +ul I +ašābu I, -am I, -ma I + +annanna I +māru I +annanna I +rašû I +ilu I +ana I +mahru II, -ka I + + + + + +tû I +šiptu I +kikiṭṭû I, -šu I + + +ša I +šiptu I +ana I + + +nadû III + +dekû II, -šum I, -ma I +nêšu I +šiptu I + +māru I +Šamaš I +ina I +šamû I +u I +erṣetu I +šanû I +kikiṭṭû I, -šu I + +ramānu I, -šu I +manû IV +šiptu I + + + + + + + +amāru I, -šu I, -ma I +Asalluhi I +habû III +mû I +apsû I + + + + +kīma I +kannu I +ina I +qātu I, -šu I +uṣurtu I +libbu I +ana I +Ea I +bēlu I, -šu I +šiptu I +ul I +yā'u I +šiptu I +Anu I +u I +Asalluhi I +šiptu I +Gula I +bēltu I +šiptu I +tû I +šiptu I +kikiṭṭû I, -šu I +nuhurtu I +ṭabtu I +leqû II +šiptu I +šalāšī- I +ana I +libbu I +nadû III, -ma I +mazāqu I, -ma I +balāṭu II +šiptu I +danānu II +libbu I +qarrādu I +libbu I +ša I +libbu I +arraqu I +īnu I, -šu I +pursītu I +dāmu I +našû II, -ma I +erru III +sāhiru I +alālu II +ina I +ahu II, -šu I +ē I, šiāṭu I +libbu I +ē I, târu I, -am I +šanû I +ana I +eṭlu I +damqu I +ana I +ardatu I +damqu I +wašāru I +eṭlu I, -ma I +bītu I +epēšu II +wašāru I +ardatu I +qinnu I +qanānu I +erru III +sahāru I +zâru I +karšu I +u I +šī I +riqītu I +buppānī- I, -ša I +sahāpu I +šalāmu II +karšu I +erru III +ešēru I, -ma I +riqītu I +tarāṣu I +kīma I +šāru I +ina I +šuburru I +kīma I +gišûtu I +ina I +napištu I +aṣû I +šiptu I +kikiṭṭû I, -šu I +sebe I +kirbānu I +ṭabtu I +ina I +libbu I +nadû III +šiptu I +sebîšu I +manû IV +šaqû III, -šu I, -ma I +nêšu I +šiptu I +libbu I +libbu I +ekēlu I +libbu I +kīma I +mušītu I +malû IV +namrīru I +ina I +qablû I +ul I +išû I +aptu I, -ma I +ul I +šurru I, -šu I +mamman I +erru III +sahāru I +zâru I +karšu I +u I +šī I +rīqu I +buppānī- I, -ša I +sahāpu I +tarāṣu I +karšu I +riqītu I +tarāṣu I +kīma I +šāru I +ana I +šuburru I +kīma I +gišûtu I +ana I +napištu I +kīma I +zūtu I +u I +upāṭu I +u I +dimtu I +kalû II +zumru I, -šu I +šalālu II +šiptu I +ul I +yā'u I +šiptu I +Ea I +u I +Asalluhi I +šiptu I +Damu I +u I +Gula I +šiptu I +Ningirim I +bēlu I +šiptu I +tû I +šiptu I +kikiṭṭû I, -šu I +ana I +libbu I +ešer I +kirbānu I +ṭabtu I +nadû III +sebîšu I +šiptu I +manû IV, -ma I +ina I +šumēlu I, -ka I +šīnātu I, -šu I +amāru I +ina I +šumēlu I, -šu I +mahāru I +balu I +patānu I +šatû II, -ma I +nêšu I +šiptu I +libbu I, -ma I +libbu I +qarrādu I +libbu I +lāsimu I +ša I +libbu I +zâru I +īnu I, -šu I +pursītu I +dāmu I +libbu I +libbu I +ayyiša I +alāku I +libbu I +ayyiša I +ṣabāru II +libbu I + + + + + +eperu I + + + + + + + + + + + + + + + + + + + +šāru I + + + + + + + + +pašāru I +pišru I, -šu I + + + +pašāru I + + + + + + +ana I +bābu I +aṣû I +tû I +šiptu I +ka'inimmaku I +šāru I +ša I +libbu I +ṣabātu I, -šu I +kikiṭṭû I, -šu I +šamnu I +libbu I, -šu I +pašāšu I +šiptu I +annû I +šalāšī- I +manû IV +šumma I +awīlu I +abunnatu I, -šu I +paṭāru I +biṣṣūru I +atānu I +sikillu I +šakirû I +burāšu I + + + +hamiš I +šammu I +annû I +ištēniš I +sâku I +ina I +šikaru I +balālu I +ina I +abunnatu I, -šu I +natāku I +šammu I +annû I, -ma I +ina I +šikaru I +lâšu I +rabāku I + + +imhur-līm I +imhur-ešrā I +tarmuš I + + + + +sâku I +ṣahātu I +nasāqu I, -am I + +balāṭu II +ana I +ašru III +šanû I +ṣibaru I +ēdu I +ištēniš I +sâku I + + +ana I +ašru III +šanû I +imhur-līm I +sâku I +ina I +karānu I +ṣahtu I +šatû II, -ma I +balāṭu II +šumma I +awīlu I +abunnatu I, -šu I +maqātu I, -šum I +ana I +balāṭu II, -šu I +imhur-ešrā I +šuršu I + + + + + + +leqû II +ina I +šikaru I +ina I +karānu I +ṭābu I +šatû II, -ma I +balāṭu II +šumma I +awīlu I +libbu I, -šu I +marāṣu I +šizbu I +lītu II +ellu I +himētu I +šina II, ūmu I +šatû II +ṭuppu I +ištēn I +šumma I +awīlu I +suālu I +marāṣu I +ana I +kīsu III +libbu I +târu I, -šum I +ēkallu I +Aššur-bani-apli I +šarru I +kiššatu I +šarru I +mātu I +Aššur I +ša I +Nabu I +Tašmetu I +uznu I +rapšu I +šarāku I, -šum I +ahāzu I +īnu I +nawru I +nisqu I +ṭupšarrūtu I +ša I +ina I +šarru I +āliku I +mahru II, -ya I +mamman I +šipru I +šuāti I +lā I +ahāzu I +bulṭu I +ištu I +muhhu I +adi I +ṣupru I +liqtu I +ahû I +tāhīzu I +naklu I +azugallūtu I +Ninurta I +u I +Gula I +mala I +bašāmu II +ina I +ṭuppu I +šaṭāru II +sanāqu I +barû I +ana I +tāmartu I +šasû I, -ya I +qerbu II +ēkallu I, -ya I +kânu I +dadānu I + + + + + + + + + + + + + + + + + + + + + + +šumma I +awīlu I +nakkaptu I +šumēlu I, -šu I + + + + + + + + + + + + + + + +šumuttu I +ballukku I + + + + + + + + + + + + + +šumma I +awīlu I +nakkaptu I, -šu I +ṣabātu I, -šu I, -ma I +īnu I, -šu I + + + + + + + + + + + + + +kupsu I +šābulu I +hašālu I +napû II + + + + + + + + + +šumma I +awīlu I +šer'ānu I +nakkaptu I +imittu I, -šu I +tebû I, -ma I +īnu I +imittu I, -šu I + + + + + + +baluhhu I + + +šumma I +awīlu I +muhhu I, -šu I +ummu II +kullu III +šer'ānu I +tību I +nakkaptu I +rašû I +īnu I, -šu I +ṣapāru I +īnu I, -šu I +birratu I +ipītu I +ešītu I +amurdinnu I +qūqānu I +ešû IV +u I +dimtu II +nadû III + +qû II +sahliu I +buṭumtu I +ina I +erû II +ṭênu I +napû II +rēšu I, -ka I +kullu III +ina I +libbu I + +qû II +leqû II +ina I +mû I +kasû II +lâšu I +gullubu II +ṣamādu II, -ma I +šalāš I, ūmu I +lā I +paṭāru I + +qû II +sahliu I + +qû II +qēmu I +labtu I +ina I +mû I +kasû II +lâšu I +gullubu II +ṣamādu II, -ma I +šalāš I, ūmu I +lā I +paṭāru I +sahliu I +ṭēnu I +kukuru I +uhūlu I, qarnānû I +ina I +šikaru I +lâšu I +ašru III +šanû I +murru I +ṭabtu I +mēsallu I +malmališ I +balālu I +ina I +himētu I +sâku I +īnu I, -šu I +eqû I + +qû II +sahliu I + +qû II +haṣbu III +tinūru I +ešer I +šiqlu I +hīqu I + + + + +ina I +mû I +kasû II +lâšu I +gullubu II +ṣamādu II, -ma I +šalāš I, ūmu I +lā I +paṭāru I +arki I +naṣmattu I +annû I +ešer I +šiqlu I +sahliu I +ša I +pû I +urṣu I + + + + + + + +ṭabtu I +ṭābātu I +lā I +lapātu I +ina I +akalu I +esēpu I +akālu I +hamiš I +šiqlu I + + + + + +ina I +šikaru I, rēštû I +mahāṣu I +šaqû III, -šu I + + + + + + + +ištēn I, ūmu I +anzahhu I +sâku I + +ešer I +šiqlu I +inbu I +kalbānu I + + + + + + +qû II + + + +hašālu I +napû II +ina I +mû I +kasû II +lâšu I +gullubu II +ṣamādu II, -ma I +šalāš I, ūmu I +lā I +paṭāru I +šimbizidû I + + + +ina I +lipiu I +nēšu I +sâku I + + + + + + + + + + +supālu I + +qû II + + + + +hašālu I +napû II +ina I +mû I +kasû II +lâšu I +gullubu II +ṣamādu II, -ma I +šalāš I, ūmu I +lā I +paṭāru I +ešer I +šiqlu I +qēmu I +kupsu I +abālu I +hašālu I +napû II +ina I +mû I +kasû II +lâšu I +ašru III +šanû I +ešer I +šiqlu I +qēmu I +kupsu I +abālu I +hašālu I +napû II + + + +ištēn I, ūmu I +irtu I, -šu I +ṣamādu II +qaqqadu I, -šu I + +ana I +qaqqadu I, -šu I +šapāku I +ina I +bītu I +ša I +tarānu I +išû I +ašābu I, -šu I + +ištēn I +šiqlu I +rikibtu I +argabu I + +šiqlu I + + +qû II +zēru II +parparhû I + +qû II +zēru II +laptu II + + +qû II +isqūqu I +ešer I +šiqlu I +aru I + + +zēru II +sahliu I + + + + + +lâšu I +ašru III +šanû I +gabû I +ina I +himētu I +sâku I +eqû I + +qû II +aru I +tittu I +ša I +ina I +Abu II +nakāsu I +ina I +mû I +kasû II +lâšu I +târu I, -ma I +abālu I +hašālu I +napû II + + + + + + +gullubu II +ṣamādu II, -ma I +ašru III +šanû I + +qû II +būšānu I + +qû II +zēru II +qudru I + + + + + + +ṣamādu II, -ma I +ašru III +šanû I +uhūlu I, qarnānû I +ina I +šamnu I +sâku I +ina I +kipkippu I +zikaru I +balālu I +sâku I +eqû I + + +ṣamādu II, -ma I +ašru III +šanû I + +ṣamādu II, -ma I +ašru III +šanû I + + + + + +eqû I + + +sâku I +eqû I + +lâšu I +gullubu II +ṣamādu II, -ma I +ašru III +šanû I + +abālu I +hašālu I +napû II +ina I +mû I +kasû II +lâšu I +gullubu II +ṣamādu II, -ma I +ašru III +šanû I + +eṣemtu I +arku I +sâku I +eqû I + +ina I +lipiu I +sāqu I +ṣabītu I +sâku I +eqû I + +lâšu I +gullubu II +ṣamādu II, -ma I +šalāš I, ūmu I +lā I +paṭāru I + +ina I +šizbu I +lâšu I +gullubu II +ṣamādu II, -ma I +ašru III +šanû I + + +ina I +dišpu I +šadû I +šuhtu I +hurāṣu I +sâku I +eqû I + + + + + + +hašālu I +napû II +ina I +mû I +kasû II +lâšu I +gullubu II +ṣamādu II, -ma I +šalāš I, ūmu I +lā I +paṭāru I + + + + +hašālu I +napû II +ina I +šuršummu I +šikaru I +bašlu I +lâšu I +gullubu II +ṣamādu II, -ma I +šalāš I, ūmu I +lā I +paṭāru I + + + + + +dumqu I, šina I +tabālu I +ina I +dišpu I +sâku I +eqû I +kurkanû I +hašālu I +napû II +ina I +mû I +kasû II +lâšu I +gullubu II +ṣamādu II, -ma I +šalāš I, ūmu I +lā I +paṭāru I +šunû II +hašālu I +napû II +ina I +mû I +kasû II +lâšu I +gullubu II +ṣamādu II, -ma I +šalāš I, ūmu I +lā I +paṭāru I +rikibtu I +argabu I +ina I +dišpu I +sâku I +eqû I + +qû II +aru I +marišmara I +hašālu I +napû II +ina I +mû I +kasû II +lâšu I +gullubu II +ṣamādu II, -ma I +šalāš I, ūmu I +lā I +paṭāru I +gaṣṣu III +bašlu I +ina I +šamnu I +serdu I +lâšu I +gullubu II +ṣamādu II, -ma I +ašru III +šanû I +haṣbu III +igulû I +ša I +kibšu II +išû I +ina I +šamnu I +šuhtu I +sâku I +eqû I +supālu I +sahliu I +hašālu I +napû II +ina I +šuršummu I +šikaru I, rēštû I +lâšu I +gullubu II +ṣamādu II, -ma I +šalāš I, ūmu I +lā I +paṭāru I +haltappānu I +kalbānu I +hašālu I +napû II +ina I +šuršummu I +šikaru I +bašlu I +lâšu I +gullubu II +ṣamādu II, -ma I +šalāš I, ūmu I +lā I +paṭāru I +burāšu I +kukuru I +baluhhu I +sahliu I +uhūlu I, qarnānû I +mesû II +ina I +šizbu I +lâšu I +gullubu II +ṣamādu II, -ma I +šalāš I, ūmu I +lā I +paṭāru I +šuhtu I +ina I +dišpu I +sâku I +eqû I + +qû II +sahliu I + +qû II +billatu I + +lâšu I +gullubu II +ṣamādu II, -ma I +šalāš I, ūmu I +lā I +paṭāru I + +qû II +sahliu I + +lâšu I +gullubu II +ṣamādu II, -ma I +šalāš I, ūmu I +lā I +paṭāru I +lulû II +anzahhu I + +sâku I +eqû I + +qû II +qēmu I +hallūru I + +lâšu I +gullubu II +ṣamādu II, -ma I +šalāš I, ūmu I +lā I +paṭāru I +kasû II +qalû II +hašālu I +napû II +ina I +šuršummu I +šikaru I +lâšu I +gullubu II +ṣamādu II, -ma I +šalāš I, ūmu I +lā I +paṭāru I +zēru II +lišānu I +kalbu I +arqūtu I +hesû I +mû I, -šu I +ana I +pursītu I +ṣahātu I +adi I +abālu I +šakānu I +inūma I +abālu I +ina I +šamnu I +šuhtu I +sâku I +eqû I +šammu I +peṣû I +rikibtu I +argabu I +lipiu I +kanaktu I +ṣumlalû I +zēru II +šurdunû I +kamūnu II +bīnu II +zēru II +maštakal I +zû I +kalbu I +aru I +bīnu II +ṭabtu I +mēsallu I +nīnû I +zību III +mala I +nīšu I +īnu I, -ka I +leqû II +pa'āṣu I +ina I +šamnu I +sâku I +īnu I, -šu I +ina I +uhūlu I, qarnānû I +mesû II +adi I +dimtu II +parāsu I +eqû I +inūma I +ṣamādu II, -šu I +eqû I +arki I, -šu I +itqūru I +abāru I +lā I +paṭāru I, -šu I +mû I +šunû II +bašālu I +ana I +kannu I +šaharru I +esēpu I +ina I +kakkabu I +biātu I +ina I +šēru II +qaqqadu I, -šu I +pašāšu I +mû I +šunû II +bašlu I +ana I +qaqqadu I, -šu I +qarāru I +qaqqadu I, -šu I +kunšu I +pušikku I +kaṣāru I +ešer I + +šamnu I +ana I +qaqqadu I, -šu I +šapāku I +ina I +bītu I +ša I +tarānu I +išû I +ašābu I +šalāš I, ūmu I +annû I +epēšu II +šumma I +awīlu I +muhhu I, -šu I +emēmu I +gaṣṣu III +uhūlu I, qarnānû I +barmu I +kibrītu I +eṣemtu I +uhūlu I, qarnānû I +napṭu I +u I +šamnu I +nūnu I +ištēniš I +balālu I +ina I +pēmtu I +ašāgu I +qaqqadu I, -šu I +qatāru II +šumma I +awīlu I +muhhu I, -šu I +ummu II +rašû I, -ma I +īnu I, -šu I +barāru I +dāmu I +kullu III + +qû II +sahliu I +hašālu I +napû II +ina I +mû I +kasû II +lâšu I +qaqqadu I, -šu I +gullubu II +ṣamādu II, -ma I +šalāš I, ūmu I +lā I +paṭāru I + +qû II +sahliu I + +qû II +isqūqu I +ina I +ṭābātu I +lâšu I +qaqqadu I, -šu I +gullubu II +ṣamādu II, -ma I +šalāš I, ūmu I +lā I +paṭāru I + +qû II +aru I +tittu I +ina I +šizbu I +lâšu I +gullubu II +ašru III +šanû I + +qû II +būšānu I +ina I +šizbu I +lâšu I +gullubu II +ašru III +šanû I + +qû II +uriyānu I + +ina I +šizbu I +lâšu I +gullubu II +ašru III +šanû I + +qû II +ṣadānu I + +ina I +šizbu I +lâšu I +gullubu II +ašru III +šanû I +samānu I + +ina I +šizbu I +lâšu I +gullubu II +ašru III +šanû I +šumma I +awīlu I +muhhu I, -šu I +ṣētu I +hamāṭu III + +bašlu I +burāšu I +kukuru I +baluhhu I +sahliu I +kupsu I + +gullubu II +ašru III +šanû I +šumma I +awīlu I +muhhu I, -šu I +ṣētu I +hamāṭu III, -ma I +īnu I, -šu I +barāru I +u I +dāmu I +malû IV + + + +burāšu I +nuhurtu I + + + +sahliu I +marišmara I +ištēniš I +hašālu I +napû II +ina I +billatu I +balālu I +qaqqadu I, -šu I +ṣamādu II + +qû II +sahliu I + +qû II +qēmu I +erēnu I + +qû II +burāšu I + +qû II +suādu I + +qû II +sīhu II + +qû II +argānu I + +kupsu I +qēmu I +hallūru I +qēmu I +buqlu I +billatu I +bašlu I +leqû II + +qû II +leqû II +ina I +mû I +kasû II +lâšu I +gullubu II +ṣamādu II +šumma I +awīlu I +qablu I +muhhu I, -šu I +zaqātu I, -šu I +šārtu I +qaqqadu I, -šu I +izuzzu I +kukuru I + + + + + + + + +sâku I +ina I +tangussu I +buhhuru I +qaqqadu I, -šu I + + + + + + +šikaru I +ṭīdu I +himētu I +ina I +išātu I +bašālu I + + + + +kukuru I +burāšu I +ballukku I +murru I +šikaru I +ṭīdu I +himētu I +ina I +išātu I +bašālu I + + +ištēn I +akalu I +gaṣṣu III +uhūlu I, qarnānû I +barmu I +kibrītu I +eṣemtu I +awīlūtu I +eṣemtu I +šahû I + + +napṭu I +šamnu I +nūnu I +ištēniš I +balālu I +ina I +pēmtu I +ašāgu I +qaqqadu I, -šu I +qatāru II + + + + + + + + + + + + + + +ka'inimmaku I +šumma I +awīlu I +qablu I +muhhu I, -šu I +zaqātu I, -šu I +kikiṭṭû I +quliptu I +ṣerru I +erēru I + + + + +šiptu I +manû IV +muhhu I, -šu I + + + + + + + + + + + + + + + + + + + + + + +šiptu I +pû I, -šu I +kīma I +pû I +lā I + + + + + + +kīma I +pû I, -šu I + + + + +tû I +šiptu I + +ana I +qablu I +muhhu I, -šu I +manû IV + + + + + +nīnû I + +gullubu II +ṣamādu II, -ma I +šalāš I, ūmu I +lā I +paṭāru I +ana I +ašru III +šanû I + +ina I +mû I +kasû II +lâšu I +ṣamādu II, -šu I, -ma I + + + +ana I +ašru III +šanû I + + + +supālu I +ina I +šikaru I +lâšu I + + +ana I +ašru III +šanû I +sahliu I + +nikiptu II +qēmu I +labtu I +ištēniš I +hašālu I +napû II +ina I +šikaru I +lâšu I + + +ana I +ašru III +šanû I + +qû II +sahliu I + +lâšu I +gullubu II + + +ana I +ašru III +šanû I + +qû II + +lâšu I +gullubu II + + +ana I +ašru III +šanû I + +qû II + +hašālu I +napû II +ina I +mû I +kasû II +lâšu I +gullubu II + + +ana I +ašru III +šanû I + + +ina I +mû I +kasû II +lâšu I + + +ana I +ašru III +šanû I + +ina I +šikaru I +lâšu I +gullubu II + + +ana I +ašru III +šanû I + +ina I +mû I +kasû II +lâšu I +gullubu II +ṣamādu II +ana I +ašru III +šanû I + +ina I +mû I +kasû II +lâšu I +gullubu II + + +ana I +ašru III +šanû I + +ina I +mû I +kasû II +lâšu I +gullubu II + + +ana I +ašru III +šanû I + +ina I +šuršummu I +šikaru I +lâšu I +gullubu II + + +ana I +ašru III +šanû I + + + + + + + +šamāṭu I +ina I +mû I +kasû II +mesû II + +qû II +kalbānu I + +qû II + + + + + +hašālu I +napû II +ina I +mû I +kasû II +lâšu I +qaqqadu I, -šu I +u I +irtu I, -šu I +ṣamādu II +ana I +ašru III +šanû I + + + + + +isqūqu I +balālu I +ina I +mû I +kasû II +lâšu I +ṣamādu II +ana I +ašru III +šanû I + + + + +isqūqu I +ina I +mû I +kasû II +lâšu I +gullubu II +ṣamādu II, -ma I +šalāš I, ūmu I +lā I +paṭāru I +ana I +ašru III +šanû I + + + +haluppu I +šina II +qû II +balālu I +ina I + +kasû II +u I +šikaru I +lâšu I +ašru III +šanû I +ana I +ašru III +šanû I + + + +supālu I +ina I +šamnu I +serdu I +u I +mû I +kasû II +lâšu I +ašru III +šanû I +šumma I +awīlu I +qaqqadu I, -šu I +emēmu I +gullubu II +qēmu I +kunāšu I +ina I +mû I +kasû II +lâšu I +hamiššeret I, ūmu I +hamiš I, ūmu I +ṣamādu II +ana I +ašru III +šanû I +qadūtu I +ṣētu I +kašādu I +hašālu I +napû II +ina I +mû I +kasû II +lâšu I +šalāš I, ūmu I +ṣamādu II +šumma I +ina I +qerbītu I +qaqqadu I, -šu I +qablu I +qaqqadu I, -šu I +ubānu I +aṣû I +ribku I +ina I +mû I +kasû II +lâšu I +šamnu I +pašāšu I +ṣamādu II +ana I +ummu II +qaqqadu I +tebû I +haṣbu III +tinūru I +isqūqu I +ina I +mû I +kasû II +lâšu I +qaqqadu I, -šu I +ṣamādu II +ana I +ašru III +šanû I +sahliu I +buṭumtu I +qēmu I +labtu I +ina I +mû I +kasû II +lâšu I +ṣamādu II +ana I +ašru III +šanû I +sahliu I +burāšu I +ina I +mû I +kasû II +lâšu I +ṣamādu II +ana I +ašru III +šanû I + + + +abālu I +hašālu I +napû II +ina I +mû I +kasû II +lâšu I +ṣamādu II +ana I +ašru III +šanû I +ṭikmēnu I +ṣarbatu I +ina I +mû I +kasû II +lâšu I +ṣamādu II +ana I +ašru III +šanû I +haltappānu I +inbu I +kalbānu I +ina I +mû I +kasû II +lâšu I +ṣamādu II +ana I +ašru III +šanû I +karānu I +šēlebu I +abālu I +sâku I +ina I +mû I +kasû II +lâšu I +ṣamādu II +ana I +ašru III +šanû I +marišmara I +ina I +mû I +kasû II +lâšu I +ṣamādu II +ana I +ašru III +šanû I + + + +supālu I +ina I +mû I +kasû II +lâšu I +ṣamādu II +ana I +ašru III +šanû I + +ṭikmēnu I +ṣarbatu I +ina I +mû I +kasû II +lâšu I +ṣamādu II +ana I +ašru III +šanû I + +kukuru I +ina I +mû I +kasû II +lâšu I +ṣamādu II +ana I +ašru III +šanû I + +isqūqu I +balālu I +ina I +mû I +kasû II +lâšu I +ṣamādu II +ana I +ašru III +šanû I + +isqūqu I +balālu I +ina I +mû I +kasû II +lâšu I +ṣamādu II +ana I +ašru III +šanû I + +ina I +mû I +kasû II +lâšu I +ṣamādu II +ana I +ašru III +šanû I +qilpu I +šallapānu I +ina I +mû I +kasû II +lâšu I +ṣamādu II +ana I +ašru III +šanû I + +ṭikmēnu I +ṣarbatu I +ina I +mû I +kasû II +lâšu I +ṣamādu II +ana I +ašru III +šanû I + +ina I +mû I +kasû II +lâšu I +ṣamādu II +šumma I + +qaqqadu I, -šu I +šahāhu I +tību I +nakkaptu I +rašû I +ištēn I +šiqlu I + +qaqqadu I, -šu I +gullubu II +kaṣû III +ṣamādu II, -ma I +šalāš I, ūmu I +lā I +paṭāru I +ana I +ašru III +šanû I + +qēmu I +šurmēnu I +ešer I +šiqlu I +qēmu I +suādu I +ešer I +šiqlu I +qēmu I +burāšu I +ešer I +šiqlu I +qēmu I +kukuru I +ešer I +šiqlu I +qēmu I +kasû II +ešer I +šiqlu I +qēmu I +hallūru I +ešer I +šiqlu I +qēmu I +kakkû I +ešer I +šiqlu I +qilpu I +suluppu I +ešer I +šiqlu I +sahliu I +ešer I +šiqlu I +billatu I +našpu I +ešer I +šiqlu I +qēmu I +buqlu I +ištēniš I +balālu I +ina I +šikaru I +lâšu I +târu I +abālu I +hašālu I +napû II +rēšu I, -ka I +kullu III +ina I +libbu I + +qû II +leqû II +ina I +mû I +kasû II +lâšu I +gullubu II +ṣamādu II +ašru III +šanû I +ana I +ašru III +šanû I +sahliu I +ṭēnu I +kukuru I +uhūlu I, qarnānû I +ištēniš I +sâku I +ina I +šikaru I +lâšu I +gullubu II +ašru III +šanû I +ana I +ašru III +šanû I +kukuru I +burāšu I +nikiptu II +zēru II +kamantu I +imbû I +tiāmtu I +murru I +ištēniš I +sâku I +ina I +šikaru I +lâšu I +gullubu II +ašru III +šanû I +ana I +ašru III +šanû I +kukuru I +burāšu I +hīlu I +baluhhu I +suluppu I +lipiu I +kalītu I +immeru I +ištēniš I +sâku I +ina I +mašku I +ṭerû I +gullubu II +ašru III +šanû I +šumma I +awīlu I +qaqqadu I, -šu I +ṣētu I +hamāṭu III, -ma I +u I +zumru I, -šu I +akālu I, -šu I +qaqqadu I, -šu I +napāhu I +aru I +musukkannu I + + + +napû II +qēmu I +hallūru I +qēmu I +kakkû I +qēmu I +ennēnu I +ištēniš I +ina I +šuršummu I +šikaru I +lâšu I +gullubu II +ašru III +šanû I +ana I +ašru III +šanû I +kupsu I +ablu I +kukuru I +burāšu I +isqūqu I +ina I +šuršummu I +šikaru I +lâšu I +gullubu II +ašru III +šanû I +ana I +ašru III +šanû I + + +hašû III +kukuru I +burāšu I +isqūqu I +ina I +šikaru I +lâšu I +gullubu II +ašru III +šanû I +ana I +ašru III +šanû I +ašqulālu I +abālu I +sâku I +ina I +mû I +kaṣû I +lâšu I +gullubu II +ašru III +šanû I +šumma I +awīlu I +qaqqadu I, -šu I +emēmu I, -ma I +šārtu I +qaqqadu I, -šu I +šahāhu I +ana I +ummu II +qaqqadu I, -šu I +nasāhu I +u I +šārtu I +āliku I +izuzzu I +aktam I +šimāhu I +šammu I +peṣû I +ištēniš I +sâku I +ina I +mû I +balālu I +qaqqadu I, -šu I +sêru I +šina II, ūmu I +ina I +qaqqadu I, -šu I +imittu I + + + +qaqqadu I, -šu I +mesû II +zēru II +bīnu II +kamkadu I +egemgiru I +haṭṭu II, rē'û I +haṣbu III +pelû II +lurmu I +ištēniš I +sâku I +ina I +šamnu I +balālu I +qaqqadu I, -šu I +pašāšu I + + + + + + + + + + + +ka'inimmaku I +šārtu I +qaqqadu I +izuzzu I +rakāsu I +epuštu I, -šu I +dušû I +sāmtu I +uqnû I +hulālu I +papparmīnu I +īnu I +nūnu I +šubû I +šubû I +imittu I +šubû I +šumēlu I +šadânu I +ṣābitu I +muššāru I +ašgigû I +husīgu I +šalaššer I +nību II +annû I +ina I +tabarru I +šakāku I +ina I +šārtu I, -šu I +rakāsu I, -ma I +šārtu I +āliku I +kalû V +šiptu I + + + + + + + + + + + +tû I +šiptu I +kikiṭṭû I +sebe I +harūbu I +ša I +ištānu I +leqû II +ina I +išātu I +urbatu I +erēru I +ina I +šamnu I +balālu I +šiptu I +sebîšu I +manû IV +šalāšu I +pašāšu I, -šu I +šalāšu I +halāṣu I, -šu I +inūma I +halāṣu I, -šu I +šiptu I +šalāšu I +ana I +muhhu I +qaqqadu I, -šu I +manû IV + + + + + + + + + + + + + + + + + + + + + + + + + +kikiṭṭû I +qaqqadu I +erēbu II +šadû I +qaqqadu I +igirû I +qaqqadu I +iṣṣūru I, hurru I +zikaru I +uhinnu I +gišimmaru I + + + + + + + +šiptu I +šalāšu I +ana I +libbu I +manû IV +pašāšu I, -šu I, -ma I +šārtu I +āliku I +kalû V +lū I +ša I +zikaru I +lū I +ša I +sinništu I + + + + + + + + + + + +kikiṭṭû I +sebe I +harūbu I +ša I +ištānu I +leqû II +ina I +išātu I +erēru I +ina I +šamnu I +šurmēnu I +dāmu I +erēnu I +balālu I +pašāšu I, -šu I, -ma I +ešēru I +šiptu I +kakkabu I +lemnu I +ša I +bašû I, -ma I +iltu I +ṣīru I + + + + + +banû IV, -ma I +gamāru II + + + + + + + + +tû I +šiptu I +ka'inimmaku I +šārtu I +rakāsu I +šumma I +awīlu I +šārtu I +lētu I, -šu I +magal I +šahāhu I +awīlu I +šū I +ilu I, -šu I +ištaru I, -šu I +itti I, -šu I +zenû I +kikiṭṭû I +ana I +pānu I +kakkabu I +mahrû I +riksu I +rakāsu I +suluppu I +saskû I +sarāqu I +mersu I +dišpu I +himētu I +šakānu I +nīqu I +epēšu II +imittu I +himṣu II +šumû I +ṭehû I +šikaru I +naqû I +kiškanû I +marišmara I +rikibtu I +argabu I +imhur-ešrā I +imhur-līm I +zû I +malāhu I +itti I +šamnu I +balālu I +ina I +pānu I +kakkabu I +šakānu I +šiptu I +annû I +šalāšu I +manû IV +attā I +kakkabu I +munawwiru I + + + + + + +qerbu II +šamû I +hiāṭu I +kibru I +anāku I +annanna I +māru I +annanna I +ina I +mūšu I +annû I +mahru II, -ka I +kamāsu II +dīnu I, -ī I +diānu I +purussû I, -ya I +parāsu I +šamnu I +annû I +pasāsu I +lumnu I, -ī I +šēru II +nawāru I +ṭehû I +kâru I +ana I +ašru III +šanû I +kiškanû I +awīlūtu I +elkulla I +kurkanû I +ša I +šadû I +nikiptu II +ina I +mašku I +unīqu I +lā I, petû I +ina I +kišādu I, -šu I +šakānu I +šediš I +ka'inimmaku I +šārtu I +rakāsu I +šumma I +awīlu I +muhhu I, -šu I +mû I +kullu III +ina I +ubānu I, -ka I +rabû I +ašru III +mû I +kullu III +lapātu I +šumma I + +ba'āšu I +mû I +ša I +gulgullu I, -šu I +warādu I +petû II, -ma I +gulgullu I, -šu I +sarāmu I +mû I +ša I +gulgullu I, -šu I +elû III +ṣubātu I +qatnu I +mû I +mesû II +šamnu I +salāhu I +ana I +muhhu I +simmu I +šakānu I +sīku I +kiškanû I +zû I +pahāru I +sâku I +ana I +muhhu I +simmu I +eqû I +šalāš I, ūmu I +ṣamādu II +paṭāru I, -ma I +ṣubātu I +qatnu I +mû I +mesû II +šamnu I +salāhu I +ana I +muhhu I +simmu I +šakānu I +naštiptu I + + + + + +šina II, ūmu I +ṣamādu II +paṭāru I, -ma I +ṣubātu I +qatnu I +mû I +mesû II +šamnu I +salāhu I +ana I +muhhu I +simmu I +šakānu I + + + + + + +kasû II +qalû I +itti I +qēmu I +labtu I +balālu I +ana I +muhhu I +simmu I +eqû I +ištēn I, ūmu I +ṣamādu II +paṭāru I, -ma I + + + + +burāšu I +hašālu I +itti I +isqūqu I +balālu I +ina I +mû I +kasû II +lâšu I +ṣamādu II +pānu I +simmu I +gullubu II +adi I +balāṭu II +ṣamādu II + + + +šumma I +lapātu I, -ma I + +lā I +ba'āšu I +ana I +liwītu I +qaqqadu I, -šu I +pēmtu I +abnu I +šakānu I +šiptu I +urbatu II +urbatu II +urbatu II +sāmu I +tebû I, -ma I +urpatu I +sāmu I +katāmu I +zunnu I +sāmu I +tebû I, -ma I +erṣetu I +sāmu I +rehû I +mīlu I +sāmu I +tebû I, -ma I +nāru I +sāmu I +malû IV +ikkaru I +sāmu I +marru II +sāmu I +tupšikku I +sāmu I +našû II, -ma I +mû I +sāmu I +sekēru I +daltu I, -ma I +sāmu I +sikkūru I +sāmu I +bābu I, -šunu I +edēlu I +mannu I, -ma I +ša I +petû II, -kunūši I +erēšu II +marru II +erēšu II +marru II +tû I +šiptu I +ka'inimmaku I +mû I +qaqqadu I +lā I +kalû V +epuštu I, -šu I +hallutānû I +ša I +šēpu I +atānu I + + + + +lawû II +ana I +libbu I +hipītu I +šakānu I +šiptu I +sebîšu I +manû IV +ina I +ṣubātu I +patāqu I + + + + +ṭawû I +sebe I +kiṣru I +kaṣāru I +ēm I +kaṣāru I +šiptu I +manû IV +ina I +nakkaptu I, -šu I +rakāsu I, -ma I +nêšu I +šumma I +awīlu I +qaqqadu I, -šu I +mû I +kullu III +elēnu I +dâdānū I + + + + +erēnu I +humṭu II +šakānu I, -ma I +mû I, -šu I +abālu I +šumma I +awīlu I +abbuttu I, -šu I +mû I +kullu III +kalû II +ūmu I + + + + +ina I +sebe I, ūmu I +ṣamādu II +ina I +samāne I, ūmu I +abbuttu I, -šu I +šalāšu I +sarāmu I +kayyānu I +ṣamādu II +šumma I +awīlu I +qaqqadu I, -šu I +šēhu I +kullu III +erēnu I +humṭu II +šakānu I +šumma I +awīlu I +qaqqadu I, -šu I +tebû I, -šum I +mušītu II +muššāru I +takkassu I +sāmtu I + +ṣurru I +ṣalmu I +hulālu I + +yašpû I +samāne I +abnu I +annû I +ina I +tabarru I +šīpātu I +peṣû I +ṭawû I +šakāku I +ina I +nakkaptu I, -šu I +rakāsu I, -ma I +nêšu I +šumma I +awīlu I +qaqqadu I, -šu I +kaṣû III +kukuru I +burāšu I +suādu I +šimiššalû I +baluhhu I + + + + + + +šupuhru I +sīhu II +argānu I +barīrātu I +qanû I +ṭiābu I +ana I +ašru III +šanû I + + + +ina I +lipiu I +kalītu I +immeru I +ša I +ṭabtu I +ul I +nadû III +ina I +dāmu I +erēnu I +sâku I +ina I +mašku I +ṭerû I +qaqqadu I, -šu I +ṣamādu II +ana I +ašru III +šanû I +buṭumtu I +baluhhu I +kurkanû I +qutāru I +ša I +qaqqadu I +napšaštu I +qaqqadu I +kibrītu I +peṣû I +u I +ṣalmu I +nikiptu II +zikaru I +u I +sinništu I +mūṣu I + + + + + +imbû I +tiāmtu I +zēru II +bīnu II +qarnu I +ayyalu I +gulgullu I +awīlūtu I +šammu I +annû I +ištēniš I +sâku I + + + + + + + + + +nakkaptu I, -šu I + + + +qutāru I +qaqqadu I +atā'išu I +kibrītu I +kurkanû I +nikiptu II +zikaru I +u I +sinništu I +ištēniš I +dakāku I +ina I +dāmu I +erēnu I +balālu I +ina I +pēmtu I +qatāru II, -šu I +šumma I +awīlu I +qaqqadu I, -šu I +marāṣu I +ṣaṣumtu I +murdudû I +pizzer I + + + +arqūtu I, -šu I +ištēniš I +sâku I +ina I +mû I +kasû II +lâšu I +qaqqadu I, -šu I +gullubu II +ṣamādu II, -ma I +šalāš I, ūmu I +lā I +paṭāru I +šumma I +awīlu I +qaqqadu I, -šu I +kabātu I +kukuru I +burāšu I +atā'išu I +murru I +itti I +hīlu I +baluhhu I + + + +kalītu I +alpu I +balālu I +ina I +mašku I +ṭerû I +gullubu II +hamiš I, ūmu I +ṣamādu II +ana I +ašru III +šanû I + + + + +imittu I +u I +šumēlu I +šalāš I +sarāmu I + + + +ina I +mû I +kasû II +lâšu I +šamnu I +pašāšu I +ṣamādu II + +ana I +qaqqadu I, -šu I + +kabātu I, -ma I +ina I +tību I, -šu I +qaqqadu I, -šu I + +urṣu I +sâku I + +qaqqadu I, -šu I +elû III +ana I +ašru III +šanû I + +balālu I +qaqqadu I, -šu I +pašāšu I +šumma I +awīlu I + + +abālu I +hašālu I +napû II +itti I + +ṣamādu II, -šu I, -ma I +šalāš I, ūmu I +lā I +paṭāru I +šumma I +awīlu I +qaqqadu I, -šu I + +pānu I, -šu I +šadādu I, -šu I +qātu I, -šu I +u I +šēpu I, -šu I + +šimmatu I +rašû I +ana I +balāṭu II, -šu I +kukuru I +burāšu I +atā'išu I + +adāru III +kasû II +qēmu I +labtu I +billatu I +našpu I + +ina I +mû I +kasû II +lâšu I +qaqqadu I, -šu I + +ṣamādu II, -ma I +sebe I, ūmu I +lā I +paṭāru I +ana I +ašru III +šanû I + + +pašāšu I, -ma I +nêšu I +šumma I +awīlu I +qablu I +qaqqadu I, -šu I + +anāhu I +hīpu I +libbu I +rašû I +kalītu I, -šu I + +karû II +ana I +murṣu I +nasāhu I + +billatu I +našpu I +kasû II +qēmu I +labtu I + +ṣamādu II + + + + + + + + +ina I +mû I +kasû II +lâšu I + +ana I +ašru III +šanû I + + +bīnu II +zēru II +kamantu I + + + +šikaru I, rēštû I +ūlū I +ina I +karānu I +šatû II + +šumma I +awīlu I + +rašû I +zēru II +errû I +ṭuppu I +ištēn I +šumma I +awīlu I +muhhu I, -šu I +ummu II +kullu III +ēkallu I +banû IV, aplu II, Aššur-bani-apli I +šarru I +kiššatu I +šarru I +mātu I +Aššur I +ša I +Nabu I +u I +Tašmetu I +uznu I +rapšu I +šarāku I, -šum I +ahāzu I +īnu I +nawru I +nisqu I +ṭupšarrūtu I +ša I +ina I +šarru I +alāku I +mahru II, -ya I +mamman I +šipru I +šū I +lā I +ahāzu I +bulṭu I +ištu I +muhhu I +adi I +ṣupru I +liqtu I +ahû I +tāhīzu I +naklu I +azugallūtu I +Ninurta I +u I +Gula I +mala I +bašāmu II +ina I +ṭuppu I +šaṭāru II +sanāqu I +barû I +ana I +tāmartu I +šasû I +qerbu II +ēkallu I, -ya I +kânu I +šumma I +awīlu I + + + +anāhu I, -šu I + + +imhur-līm I +imhur-ešrā I + +šumma I +ašru III +šanû I +hašû III +urnû I + +šumma I +ašru III +šanû I +harmunu I + +šumma I +awīlu I +rēšu I +libbu I, -šu I +ṣarāpu I, -šu I +napīšu I +appu I, -šu I +kabātu I +awīlu I +šūa I + +šumma I +awīlu I +rēšu I +libbu I, -šu I +hamāṭu III, -šu I +dakāšu I, -šu I +rupuštu I, -šu I + + +ṣētu I + +šamnu I +halṣu I +ina I +mû I +lā I +patānu I +šaqû III, -šu I + +burāšu I +kukuru I +hīlu I +baluhhu I +aru I +bīnu II +aru I +maštakal I + +šumma I +awīlu I +qablītu I +naglabu I, -šu I +hamāṭu III, -šu I +itti I +rupuštu I, -šu I +dāmu I +nadû III +ana I +ṣētu I + +burāšu I +kukuru I +sahliu I + +aru I +kūru III +qadūtu I, šiknu I +hašālu I +ina I +šikaru I +lâšu I + + +šumma I +awīlu I +akalu I +akālu I +šikaru I +šatû II, -ma I +rēšu I +libbu I, -šu I +kaṣāṣu I, -šu I +libbu I, -šu I +napāhu I + +ṣētu I + +aktam I +imhur-līm I +tarmuš I + +šumma I +ašru III +šanû I +šamnu I +halṣu I +lišānu I, -šu I +ṣabātu I + +šumma I +awīlu I +ašāšu III +ašuštu I +maqātu I, -šum I + + + + + + + + + + + + + +ṣētu I + +karānu I +šēlebu I +sâku I +ina I +šikaru I +šatû II +šīru I +kabru I +akālu I +burāšu I +ṭūru I +ina I +šikaru I +šatû II +ina I +šikaru I +bašālu I +ana I +šuburru I, -šu I +šapāku I +šumma I +ašru III +šanû I +karānu I +šēlebu I +sâku I +ina I +šikaru I +šatû II +qadūtu I, šiknu I +piqannu I +ṣabītu I +aru I +ulhah I +aru I +kūru III +gūru I +qanû I, šalālu II +qēmu I +kibtu I +kupsu I +sâku I +ina I +šikaru I +lâšu I +ina I +ṣubātu I +ṭerû I +ṣamādu II +šumma I +ašru III +šanû I +aktam I +sâku I +ina I +šikaru I, rēštû I +šatû II +šumma I +awīlu I +ašāšu III +ašuštu I +maqātu I, -šum I +dikšu I +lapātu I, -šum I +rupuštu I, -šu I +mādu I +šatû II +ṣētu I + +imhur-līm I +šizbānu I +kikkirânu I +peṣû I +sâku I +ina I +šikaru I +šatû II +šumma I +awīlu I +akalu I +akālu I +šikaru I +šatû II, -ma I +libbu I, -šu I +emēru II +napāhu I +mû I +magal I +šatû II +ṣētu I + +imhur-līm I +imhur-ešrā I +tarmuš I +ṣumlalû I +tīyatu I +hašû III +sâku I +ina I +šikaru I +lā I +patānu I +šatû II +qadūtu I, šiknu I +piqannu I +ṣabītu I +burāšu I +kukuru I +sahliu I +aru I +karānu I +šēlebu I + + + +gūru I +kūru III +qēmu I +kibtu I +kupsu I +sâku I +ina I +šikaru I +lâšu I +ina I +ṣubātu I +ṭerû I +ṣamādu II, -šu I, -ma I +balāṭu II +aktam I +sâku I +ina I +šikaru I +šatû II +šīru I +kabru I +akālu I +libbu I, -šu I +arû III + + + +sâku I +ina I +šikaru I +šatû II +imhur-līm I +sâku I +ina I +šamnu I +halṣu I +šatû II +qadūtu I, šiknu I +sâku I +ina I +šikaru I +šatû II +tīyatu I +sâku I +ina I +šikaru I +šatû II +šumma I +awīlu I +akalu I +akālu I +šikaru I +šatû II, -ma I +libbu I, -šu I +emēru II +napāhu I +mû I +magal I +šatû II +ṣētu I + +inbu I +errû I +adi I +lā I +kapātu I +abālu I +sâku I +ina I +šikaru I +šatû II +nīnû I +sâku I +ina I +šikaru I +šatû II +harmunu I +sâku I +ina I +šikaru I +šatû II +šumma I +awīlu I +akalu I +akālu I +šikaru I +šatû II +qerbu II, -šu I +emēru II +šīnātu I, -šu I +ṣabātu I +ṣētu I + +inbu I +errû I +adi I +lā I +kapātu I +abālu I +sâku I +ina I +šikaru I +šatû II +šumma I +awīlu I +akalu I +akālu I +šikaru I +šatû II, -ma I +libbu I, -šu I +emēru II +ebēṭu I +ridûtu I +erru III +rašû I +ṣētu I + +ina I + + +šumma I +awīlu I + + + + + + + + +šumma I +awīlu I + + + +awīlu I +šū I + + +marāṣu I + +aktam I +ina I +hīqu I +šikaru I + +arkānu I +hīqu I +šikaru I + + +šumma I +ašru III +šanû I +ašuštu I +maqātu I, -šum I + +rupuštu I +lā I +rašû I + +lā I +arāku I +aprušu I + + +ištēniš I + + + + + +šumma I +awīlu I + + +magal I +rašû I + + + + + + +šumma I +awīlu I +sankidabbû I +rašû I +zēru II +errû I +zēru II +tigilû I +zēru II +lišānu I +kalbu I +zēru II +azupīru I +zēru II +būšānu I +zēru II +ēdu I +zēru II +kiššanu I +hašālu I +napû II +malmališ I +balālu I +ina I +ṭābātu I +rabāku I +qēmu I +labtu I +qēmu I +kunāšu I +ana I +pānu I +šapāhu I +ina I +mašku I +ṭerû I +qaqqadu I, -šu I +gullubu II +ṣamādu II, -ma I +nêšu I +šumma I +ašru III, šanû I +kasû II +kamantu I +kukuru I +baluhhu I +kupsu I +ša I + + + + +qēmu I +kibtu I +malmališ I +balālu I +billatu I +našpu I +sâku I +ana I +libbu I +nadû III +bašālu I +šamnu I +annû I +balālu I +rabāku I +ṣamādu II +šumma I +ašru III, šanû I +erēnu I +šurmēnu I +asu I +qanû I +ṭābu I +kukuru I +burāšu I +šupuhru I +ballukku I +šimiššalû I +suādu I +ṭūru I +baluhhu I +hīlu I +baluhhu I +ištēniš I +hašālu I +napû II +ina I +karānu I +ṣahtu I +rabāku I +qēmu I +labtu I +qēmu I +kunāšu I +ana I +pānu I +šapāhu I +ina I +mašku I +ṭerû I +qaqqadu I, -šu I +gullubu II +ṣamādu II, -ma I +balāṭu II +šumma I +ašru III, šanû I +zēru II +adāru III +aktam I +zēru II +kamantu I + + + + +kasû II +zēru II +hûratu I +kirbānu I +eqlu I +ištēniš I + + + + + + + + + +labtu I +qēmu I +kunāšu I +ana I +pānu I +šapāhu I + + + + +qaqqadu I, -šu I +gullubu II +ṣamādu II, -ma I +balāṭu II +šumma I +ašru III, šanû I +hašû III +atā'išu I + + + + +kamantu I +imbû I +tiāmtu I +qēmu I +kibtu I +billatu I +našpu I + + + + +ina I +šikaru I +rabāku I +ṣamādu II, -ma I +balāṭu II +šumma I +ašru III, šanû I +kukuru I +burāšu I + + + +zēru II +kamantu I +imbû I +tiāmtu I +murru I +qēmu I +kibtu I +ištēniš I +hašālu I +napû II + + + +ina I +šikaru I +rabāku I +ṣamādu II, -ma I +balāṭu II +šumma I +ašru III, šanû I +kukuru I +burāšu I + + + + +ištēniš I +hašālu I +napû II +qēmu I +kibtu I +billatu I +našpu I +ina I +šikaru I +lâšu I + + + +qaqqadu I, -šu I +gullubu II +ṣamādu II, -ma I +balāṭu II +šumma I +ašru III, šanû I +kukuru I +burāšu I +nikiptu II +zēru II +kamantu I +imbû I +tiāmtu I +ballukku I +ištēniš I +hašālu I +napû II +ina I +šikaru I +rabāku I +qaqqadu I, -šu I +gullubu II +ṣamādu II, -ma I +balāṭu II +šumma I +ašru III, šanû I +aru I +gišimmaru I +ša I +ina I +lā I +šāru I +nazāzu I +leqû II +ina I +ṣētu I +abālu I +hašālu I +napû II +ina I +mû I +kasû II +lâšu I +ṣamādu II +šumma I +ašru III, šanû I +aprušu I +sâku I +ina I +šamnu I +balālu I +hīlu I +abukkatu I +ana I +libbu I +nadû III +šiptu I + + +išātu I + + +sebîšu I +u I +sebîšu I +ana I +libbu I +manû IV +nakkaptu I, -šu I +ṣamādu II +šumma I +ašru III, šanû I +atā'išu I +nikiptu II +ina I +pēmtu I +qatāru II, -šu I +kukuru I +nikiptu II +burāšu I +zēru II +kamantu I +imbû I +tiāmtu I + + + + + +ina I +išātu I +šahānu I +ṣamādu II + + + + + + + + +imbû I + +ru'tītu I +ištēniš I +sâku I +tabarru I + + + + + +nakkaptu I, -šu I +rakāsu I +šumma I +ašru III, šanû I +nikiptu II + +nakkaptu I, -šu I +lapātu I +šumma I +ašru III, šanû I + + +balālu I +nakkaptu I, -šu I +lapātu I +šumma I +ašru III, šanû I +ešer I +šiqlu I +sahliu I +ešer I +šiqlu I +labtu I + + + + + + +ṣamādu II +šumma I +ašru III, šanû I +ešer I +šiqlu I +sahliu I +ešer I +šiqlu I +gaṣṣu III + + + + + + + + + + + + + +šumma I +awīlu I +nakkaptu I + + + + + + + + + + +ina I +āṣû I, -ka I +ina I +šumēlu I, -ka I +izuzzu I + + + + + + + + + +ina I +tabarru I +rakāsu I + + + + + + + + + +šumma I +awīlu I +nakkaptu I +ṣabātu I, -šu I + + + + + + + + + + +abālu I +hašālu I +napû II +ina I +šikaru I +lâšu I + + + + + + + + + +šumma I +awīlu I + + + + + + + + + + + + + +ina I +nakkaptu I, -šu I + + + + + + + +šumma I + + + + + + + + + + + + + + +šumma I + + + + + + + + + + + + + + + + + +ina I +nakkaptu I, -šu I + + + + + + +šumma I +awīlu I +tību I +nakkaptu I +rašû I + + + + + + + + + + + + + + + + + +sahliu I +ṭēnu I +qēmu I +labtu I + + + + + + + + + + + + + +šumma I +ašru III, šanû I +aru I +šunû II +abālu I +hašālu I +napû II +ina I +qēmu I +kibtu I + + + + + + + + + + + + + + +šumma I +ašru III, šanû I +karānu I +šēlebu I +supālu I +abālu I +hašālu I + + + +itti I +qēmu I +labtu I +ina I +mû I +kasû II + + + +šumma I +awīlu I +tību I +nakkaptu I +rašû I +u I +šimmatu I +rašû I +aru I +ēru II + + + + + +sahliu I +hašû III +ina I +šikaru I +sābû I +rabāku I + + + + +aru I +uznu I, laliu I +nikiptu II +imbû I +tiāmtu I +hašû III +atā'išu I +qēmu I +kibtu I +gūru I +qanû I +gūru I +qanû I, šalālu II +habbūru I +qanû I +habbūru I +qanû I, šalālu II +per'u I +baltu I +per'u I +ašāgu I +lipiu I +nēšu I +upāṭu I +ašāgu I +ša I +ina I +muhhu I +kimahu I +izuzzu I +ištēniš I +sâku I +ina I +šamnu I +pašāšu I +zēru II +qudru I +billatu I +našpu I +ina I +urṣu I +sâku I +ina I +šikaru I +sābû I +rabāku I +ṣamādu II +šumma I +awīlu I +tību I +nakkaptu I +rašû I, -ma I +qātu I, -šu I +šēpu I, -šu I +šamāmu I, -šum I +aru I +haluppu I +suādu I +šumuttu I +qēmu I +šigūšu I +qēmu I +buqlu I +hašû III +karānu I +šēlebu I +ištēniš I +hašālu I +napû II +ina I +šuršummu I +šikaru I +rabāku I +ṣamādu II, -ma I +balāṭu II +aru I +qanû I, šalālu II +burāšu I +šumuttu I +aktam I +maštakal I +qēmu I +kakkû I +ištēniš I +hašālu I +napû II +ina I +šuršummu I +šikaru I, rēštû I +rabāku I +ṣamādu II, -ma I +balāṭu II +šumma I +awīlu I +nakkaptu I, -šu I +akālu I, -šum I +ina I +siparru I +ištiššu I +šinīšu I +šalāšu I +takāpu I +adi I +dāmu I +alāku I +nikiptu II +ina I +šamnu I +pašāšu I, -šu I +ulāpu I, lupputu I +mūṣu I +uznu I +baltu I +sāmu I +bīnu II +ina I +kišādu I, -šu I +šakānu I +sīku I + +sīku I +hulālu I +ina I +šamnu I +pašāšu I, -šu I +ana I +tību I +nakkaptu I +nâhu I +kupsu I +labīru I +kukuru I +ṭūru I +baluhhu I +kasû II +pa'āṣu I +billatu I +našpu I +isqūqu I +ina I +šikaru I +bašlu I +rabāku I +ṣamādu II +ana I +tību I +nakkaptu I +nâhu I +kupsu I +kukuru I +baluhhu I +ištēniš I +hašālu I +šiqqu I +isqūqu I +ina I +šikaru I +ištēniš I +bašālu I +ina I +ṣubātu I +ṭerû I +ṣamādu II, -šu I, -ma I +balāṭu II +šumma I +awīlu I +šer'ānu I +nakkaptu I, -šu I +marāṣu I +burāšu I +kukuru I +piqannu I +ṣabītu I +qēmu I +kibtu I +ištēniš I +ina I +šikaru I +rabāku I +ṣamādu II, -ma I +balāṭu II +kasû II +erēru I +qēmu I +kibtu I +itti I, -šu I +balālu I +ina I +šamnu I +u I +šikaru I, rēštû I +rabāku I +ṣamādu II, -ma I +balāṭu II +šumma I +awīlu I +šer'ānu I +nakkaptu I, -šu I +ṣabātu I, -šu I, -ma I +akālu I, -šu I +ešer I + +qēmu I +kibtu I +ešer I + +isqūqu I +ešer I + +kukuru I +ešer I + +kasû II +ešer I + +qēmu I +buqlu I +ešer I + +kupsu I +ištēniš I +balālu I +ina I +šikaru I +lâšu I +nakkaptu I, -šu I +ṣamādu II +ana I +nâhu I +ša I +šer'ānu I +labtu I +piqannu I +ṣabītu I +malmališ I +balālu I +ina I +šikaru I, rēštû I +rabāku I +ṣamādu II + + + + +ṣabātu I, -šu I, -ma I +akālu I, -šu I +u I +arû III + +ina I +šikaru I +šatû II + +arû III + + + + + +akalu I +u I +šikaru I +lā I +mahāru I +awīlu I +šū I +ilu I, -šu I +šakānu I, -šu I + + +labīru I +qebēru I, -šu I +mû I +ina I +muhhu I +ramāku I + + + +ṣamādu II +šārtu I +unīqu I +lā I, petû I +tabarru I +lawû II +rakāsu I + + + + + + + + + + +parāsu I +ṭawû I +šer'ānu I +ṣabītu I +itti I, -šunu I +patālu I + + + + + + + +uqnû I +ṣurru I +ṣalmu I +šakāku I +ina I +nakkaptu I, -šu I +rakāsu I +eperu I + + + + + + +haṣbu III +sūqu I, erbettu I +nikiptu II +sâku I +ina I +šamnu I +balālu I +pašāšu I, -šu I +šumma I +awīlu I +nakkaptu I +imittu I, -šu I +ṣabātu I, -šu I, -ma I +īnu I +imittu I, -šu I +dimtu II +kullu III +sahliu I +qēmu I +labtu I +šibirtu I + +šibirtu I +buqlu I +ištēniš I +balālu I +ina I +mû I +kasû II +rabāku I +nakkaptu I, -šu I +ṣamādu II, -ma I +balāṭu II +šumma I +awīlu I +nakkaptu I +šumēlu I, -šu I +ṣabātu I, -šu I, -ma I +īnu I +šumēlu I, -šu I +dimtu II +kullu III +sahliu I +hašû III +hašālu I +napû II +ina I +šikaru I +bašlu I +rabāku I +nakkaptu I, -šu I +ṣamādu II, -ma I +balāṭu II +šumma I +awīlu I +nakkaptu I, -šu I +ṣabātu I, -šu I, -ma I +īnu I, -šu I +dimtu II +kullu III +sahliu I +hašû III +kasû II +qēmu I +labtu I +pappāsu I +buqlu I +ištēniš I +ina I +diqāru I +ina I +mû I +kasû II +rabāku I +nakkaptu I, -šu I +rakāsu I, -ma I +balāṭu II +šumma I +awīlu I +nakkaptu I +imittu I, -šu I +ṣabātu I, -šu I, -ma I +īnu I +imittu I, -šu I +dāmu I +kullu III +sahliu I +hašû III +gaṣṣu III +dadānu I +qēmu I +labtu I +pappāsu I +buqlu I +ištēniš I +hašālu I +napû II +ina I +ṭābātu I +rabāku I + +šumma I +awīlu I +nakkaptu I +šumēlu I, -šu I +ṣabātu I, -šu I, -ma I +īnu I +šumēlu I, -šu I +dāmu I +kullu III + +šumuttu I +ballukku I +ištēniš I +hašālu I +napû II +ina I + + + + + +rabāku I +šanû I + + + + + + +ṣabātu I, -šu I, -ma I + + + + + + + + + + + + + +labtu I + + + + + + + + + + + + + + + + + + +ṣamādu II +šurmēnu I +marišmara I + +argānu I +barīrātu I + + + +kabūtu I +alpu I +piqannu I +ṣabītu I +ištēniš I +hašālu I +napû II +ina I +billatu I + + + + + + +ana I +pānu I +šapāhu I +qaqqadu I, -šu I +gullubu II +ṣamādu II, -ma I +imhur-līm I +imhur-ešrā I +ina I +billatu I + + + +nasāhu I + +ina I +imittu I, -šu I +rakāsu I, -šu I +arzallu I +haṣbu III +gulgullu I +awīlūtu I + + + +nikiptu II +zēru II +ēru II +ēdu I +zēru II +bīnu II +ardadillu I +ištēniš I +pa'āṣu I +ina I +šamnu I +erēnu I +balālu I, -ma I +pašāšu I, -šu I +balṭu I, -šunu I +ina I +pēmtu I +ašāgu I +qatāru II, -šu I +šamnu I +ṭiābu I +nakkaptu I, -šu I +pašāšu I +šumma I +awīlu I +nakkaptu I +imittu I, -šu I +akālu I, -šum I, -ma I +īnu I +imittu I, -šu I +napāhu I +u I +dimtu II +naqû I +šugidimmakku I +šanû II +ištaru I +ana I +balāṭu II, -šu I +sīhu II +argānu I +barīrātu I +ištēn I +šiqlu I +ru'tītu I +maštakal I +qanû I, šalālu II +ina I +isqūqu I +balālu I +ina I +šikaru I +rabāku I +ṣamādu II +šumma I +ašru III, šanû I +šuršummu I +šiqqu I +šuršummu I +ṭābātu I +dannu I +šuršummu I +šikaru I, rēštû I +asnû I +ištēn I +šiqlu I +lipiu I +kanaktu I +ina I +himētu I +sâku I +eqû I +šumma I +awīlu I +nakkaptu I +šumēlu I +akālu I, -šum I, -ma I +īnu I +šumēlu I, -šu I +napāhu I +u I +dimtu II +naqû I +asnû I +šammu I +ašû I +dāmu I +erēnu I +ina I +šamnu I +asu I +sâku I +ina I +kakkabu I +biātu I +ina I +šēru II +lā I +patānu I +eqû I +šumma I +ašru III, šanû I +gaṣṣu III +Purattu I +qēmu I +buqlu I +qēmu I +hallūru I +qēmu I +kakkû I +qēmu I +kasû II +hašālu I +napû II +ina I +mû I +kasû II +rabāku I +nakkaptu I, -šu I +īnu I, -šu I +ṣamādu II +šumma I +awīlu I +nakkaptu I +ṣabātu I, -šu I, -ma I +emēmu I +kaṣû III +īnu I, -šu I +napāhu I +šugidimmakku I +eṣemtu I +awīlūtu I +erēru I +sâku I +ina I +šamnu I +erēnu I +pašāšu I, -šu I, -ma I +balāṭu II +šumma I +awīlu I +nakkaptu I +ṣabātu I, -šu I, -ma I +ištu I +ṣītu I, šamšu I +adi I +erbu II, šamšu I +akālu I, -šum I +šugidimmakku I +āšipu I +kī I +ša I +edû II +epēšu II +lipiu I +mahirtu I +immeru I + + + + +ištēniš I +pašāšu I, -šu I +maštakal I +abālu I +hašālu I +napû II +ina I +mû I +kasû II +rabāku I +qēmu I + + + + +gullubu II +ṣamādu II, -šu I + +ṣamādu II + + +nasāhu I +tabarru I + + +lawû II +ina I +nakkaptu I, -šu I +u I +kišādu I, -šu I + + + + + + + + + + + +nakkaptu I, -šu I +akālu I, -šu I +mūṣu I +anzahhu I +kutpû I +šadânu I +ṣābitu I +abnu I +parzillu I +ēdu I +šediš I +šammu I +annû I +ištēniš I +sâku I +ina I +dāmu I +erēnu I +balālu I, -ma I +nakkaptu I, -šu I +īnu I, -šu I +u I +kišādu I, -šu I +pašāšu I, -ma I +nêšu I +šumma I +awīlu I +ina I +ṣabātu I +šugidimmakku I +tību I +nakkaptu I +rašû I +ana I +eṭēru I, -šu I +ešer I +šiqlu I +erēnu I +ešer I +šiqlu I +šurmēnu I +ešer I +šiqlu I +murru I +ešer I +šiqlu I +suādu I +ešer I +šiqlu I +daprānu I +ešer I +šiqlu I +šimiššalû I +ešer I +šiqlu I +asu I +ešer I +šiqlu I +ṣumlalû I +ešer I +šiqlu I +burāšu I +ešer I +šiqlu I +kukuru I +ešer I +šiqlu I +qanû I +ṭābu I +ešer I +šiqlu I +kasû II +ešer I +šiqlu I +ṭūru I +ešer I +šiqlu I +šibirtu I +buqlu I +ešer I +šiqlu I +kupsu I + + +ešer I +šiqlu I +billatu I +našpu I +ešer I +šiqlu I +sahliu I +ešer I +šiqlu I +qilpu I + + + +ešer I +šiqlu I +hallūru I +ešer I +šiqlu I +kakkû I +ištēniš I +hašālu I +napû II +ūlū I +ina I +šikaru I, rēštû I + + + +rabāku I +ina I +mašku I +ṭerû I +qēmu I +kunāšu I +ana I +pānu I +šapāhu I + + + +gullubu II +nakkaptu I, -šu I +ṣamādu II, -ma I +nêšu I +šumma I +ašru III, šanû I + + +nikiptu II +hīlu I +baluhhu I +qilpu I +suluppu I +lipiu I +kalītu I + +ištēniš I +hašālu I +ina I +mašku I +ṭerû I +ṣamādu II, -ma I +nêšu I +šumma I +ašru III, šanû I +kupsu I + +kanaktu I +isqūqu I +ina I +šuršummu I +šikaru I +lâšu I + + + +šumma I +awīlu I + + +šakirû I +zēru II +uznu I, laliu I +zēru II +lišānu I +kalbu I +zēru II +egemgiru I +zēru II +aprušu I +zēru II +kamantu I +zēru II +kalbānu I +ša I +ana I + + + +zû I +summatu I +ša I +gišimmaru I +balāṭu II +zû I +sinuntu I +ša I +bīnu II +balāṭu II +hīlu I +šibburratu I +kukuru I +sahliu I +zēru II +qudru I +kasû II +ašāgu I +pa'āṣu I +ištēniš I + + + +šammu I +annû I +ina I +tangussu I +qalû II +šammu I +šâšunu I +mala I + + +ištēniš I +balālu I +ina I +šuršummu I +šikaru I +lâšu I +gullubu II +šamnu I +pašāšu I +sebîšu I +rakāsu I, -šu I, -ma I +ina I +ūmu I +erbe I +šer'ānu I +nakkaptu I, -šu I +mahāṣu I, -ma I +balāṭu II +šumma I +ašru III, šanû I +zēru II +ēdu I +zēru II +uriyānu I +hašālu I +napû II +ina I +mû I +lâšu I +ṣamādu II +šumma I +ašru III, šanû I +zû I +summatu I +sâku I +ina I +šikaru I +lâšu I +ṣamādu II +šumma I +awīlu I +sankidabbû I +rašû I +īnu I, -šu I +barāru I +šīru I, -šu I +šamāmu I, -šu I +zaqātu I, -šu I + +napāhu I +qātu I, -šu I +u I +šēpu I, -šu I +šamāmu I, -šu I +zaqātu I, -šu I +birku I +anhu I +tabku I +anāhu I +awīlu I +šū I +murṣu I +lā I +tebû I +ṣabātu I, -šu I +danānu II, -šu I +ana I +murṣu I, -šu I +lā I +arāku I +hīqu I +ša I +šikaru I +tangussu I +malû IV +bīnu II + + +hašhūru I, apu I +uriyānu I +zēru II +šunû II +ana I +libbu I +nadû III +bašālu I + + + + + + +elû III, -šu I, -ma I +uhūlu I, qarnānû I +qadūtu I + +sêru I, -šu I +imhur-līm I +imhur-ešrā I +sâku I +ina I +dāmu I +erēnu I +balālu I +pašāšu I, -šu I, -ma I +balāṭu II +šumma I +awīlu I +sankidabbû I +rašû I +imhur-līm I +imhur-ešrā I +tarmuš I +ankinūtu I +hašhūru I, apu I +hašû III +šammu I +annû I +ištēniš I +pa'āṣu I +ina I +tangussu I +nadû III +bašālu I +šahālu I +ešer I +šiqlu I +dišpu I + +qû II +šamnu I +halṣu I +ana I +libbu I +nadû III +ana I +šuburru I, -šu I +šapāku I, -ma I +balāṭu II +šumma I +ašru III, šanû I +imhur-līm I +imhur-ešrā I +zēru II +bīnu II +zēru II +tullal I +ištēniš I +sâku I +ina I +karānu I +ṣahtu I +balu I +patānu I +šatû II, -ma I +balāṭu II +šumma I +ašru III, šanû I +rīqu II +kalû II, -šunu I +ina I +karānu I +ṣahtu I +u I +šikaru I, rēštû I +labāku I +bašālu I +šahālu I +ešer I + +dišpu I + +qû II +šamnu I +halṣu I +ana I +libbu I +nadû III + + + +hiāṭu I, -šu I, -ma I +balāṭu II +šumma I +ašru III, šanû I +hašû III +atā'išu I +uhūlu I, qarnānû I + + + + + +lā I +patānu I +šatû II, -ma I +balāṭu II +šumma I +ašru III, šanû I +imhur-līm I +imhur-ešrā I +zēru II + + + + + + + + +ina I +šikaru I +bašālu I +šahālu I +ešer I + +dišpu I + +qû II + + + + + + + + + + + +balāṭu II +šumma I +ašru III, šanû I +imhur-līm I +aru I +šunû II + +ištēniš I +hašālu I +napû II +ina I + + +šumma I +ašru III, šanû I +hašhūru I, apu I + +šumma I +awīlu I + + + +kutpû I + +šumma I +ašru III, šanû I +nikiptu II + +ištēniš I + +mūṣu I + + +šamnu I +annû I + +šiptu I +qarrādu I +Asalluhi I +sebîšu I + + +šumma I +awīlu I +nakkaptu I +ṣabātu I, -šu I, -ma I +īnu I, -šu I + +ištēniš I +sâku I +ina I +šikaru I + +šumma I +awīlu I +nakkaptu I, -šu I +ūlū I +ša I +imittu I +ūlū I + + + +u I +īnu I, -šu I +apû I +mūṣu I + +šumma I +awīlu I +nakkaptu I, -šu I +tebû I + +sahliu I +ṭēnu I + + +mašku I +ṣerru I +ṣalmu I + + +šumma I +awīlu I + + + +ṣâdu I + + + + + + + + + + + + + +imhur-līm I + + + + +šikaru I +ṭābu I +šatû II, -ma I + + + + + + + + + + + + + + + + + +rakāsu I, -šu I +rihûtu I +awīlūtu I + + + + + + + + + + + + + +sâku I +ina I +šamnu I +erēnu I +balālu I +pašāšu I, -ma I +balāṭu II + + + + + + + +labiānu I, -šu I +akālu I, -šu I +šugidimmakku I +sīhu II +argānu I +barīrātu I +qanû I, šalālu II +hašālu I +napû II +ina I +mû I +kasû II +rabāku I +ṣamādu II, -šu I +šumma I +awīlu I + + + + + + +ṣītu I, šamšu I +adi I +šāt urri I +akālu I, -šu I +arāku I +mâtu I +šumma I +awīlu I + + + + + +libbu I +libbu I +šasû I +šugidimmakku I +šanû I +Ištar I +mâtu I +šumma I +awīlu I + +magal I +arû III +mayyālu I +lā I +našû II +mâtu I +šumma I +awīlu I + +magal I +šasû I +šer'ānu I +nakkaptu I, -šu I +magal I +tebû I + + + + + +mâtu I +annû I + + + + + +adi I +labiānu I +qatû II +šumma I +sankidabbû I +šugidimmakku I +ina I +zumru I +awīlu I +izuzzu I +lā I +paṭāru I +ṭuppu I +šina II +šumma I +awīlu I +muhhu I, -šu I +ummu II +kullu III +ēkallu I +Aššur-bani-apli I +šarru I +kiššatu I +šarru I +mātu I +Aššur I +ša I +Nabu I +u I +Tašmetu I +uznu I +rapšu I +šarāku I, -šum I +ahāzu I +īnu I +nawru I +nisqu I +ṭupšarrūtu I +ša I +ina I +šarru I +alāku I +mahru II, -ya I +mamman I +šipru I +šū I +lā I +ahāzu I +bulṭu I +ištu I +muhhu I +adi I +ṣupru I +liqtu I +ahû I +tāhīzu I +naklu I +azugallūtu I +Ninurta I +u I +Gula I +mala I +bašāmu II +ina I +ṭuppu I +šaṭāru II +sanāqu I +barû I +ana I +tāmartu I +šasû I +qerbu II +ēkallu I, -ya I +kânu I +awīlu I +šū I +eṭemmu I +kimtu I +ṣabātu I + +kikkirânu I + +tarmuš I +sīhu II + +ina I +mû I +rīqu II +šakānu I + +alālu II +zikaru I +akalu I +arku I + + +šamnu I +murru I +ana I +nakkaptu I +nadû III + +ana I +ašru III, šanû I +erēnu I +šurmēnu I +qanû I, ṭābu I + +samāne I +šammu I +annû I +ištēniš I +ina I +šikaru I, rūštu I + +kibrītu I +kupru I +nāru I + +qatāru II +hibṣu I +ša I + + +šumma I +awīlu I +ina I +ṣibtu I +šugidimmakku I +uznu I +šagāmu II + +nikiptu II +zappu I +sisû I +qēmu I + +dāmu I +ṣerru I +qinnu I +rihûtu I + +ubānu I +ina I +uznu I +retû II + +ašru III +himṭu I +bašû I +Ea I +banû IV + +arki I +pû I +sappartu I +qarnu I +alpu I + +šumma I +awīlu I +eṭemmu I +ṣabātu I +uznu I +šagāmu II +baluhhu I +qanû I, ṭābu I +kukuru I +kasû II +zappu I +sisû I +napharu I +hamiš I +šammu I +qutāru I +ša I +uznu I +latku I + + + + +ina I +uppu I +siparru I + +šumma I +awīlu I +šugidimmakku I +ṣabātu I +uznu I +šagāmu II +murru I +ešmekku I +ašgigû I + +sâku I +ina I +itqu I +lawû II +ina I +dāmu I +erēnu I +salāhu I +šiptu I +pišertu I +banû IV +manû IV + +šiptu I +pišertu I +banû IV +Ea I +immanakku I + +abnu I +nazāru I +abnu I +sakāpu I +abnu I +šapû IV +abnu I +pasāsu I +tû I, šiptu I +šiptu I +annû I +šalāšī- I +ana I +eli I +lippu I +manû IV +ana I +libbu I +uznu I +šakānu I +ana I +ašru III, šanû I +kukuru I +hašû III +atā'išu I +aktam I +imhur-līm I +imhur-ešrā I +tarmuš I +sahliu I +sâku I +ina I +šamnu I +erēnu I +balālu I +ina I +itqu I +lawû II +libbu I +uznu I +šakānu I +nêšu I +ana I +ašru III, šanû I +qanû I, ṭābu I +ina I +šamnu I +sâku I +ana I +libbu I +uznu I +šakānu I +ana I +ašru III, šanû I +murru I +ašgigû I +uqnû I +urrīqu I +ištēniš I +sâku I +ina I +šamnu I +erēnu I +balālu I +ana I +libbu I +uznu I +nadû III +šīru I +pašāšu I +šumma I +awīlu I +ina I +ṣibtu I +šugidimmakku I +uznu I +šagāmu II +zēru II +uriyānu I +zēru II +ēru II +nikiptu II +zikaru I +u I +sinnišu I +zappu I +sisû I +ulāpu I, lupputu I +ina I +pēmtu I +uznu I +qatāru II +šumma I +awīlu I +ina I +ṣibtu I +šugidimmakku I +uznu I +šagāmu II +šuršu I +ēru II +nikiptu II +ulāpu I, lupputu I +ina I +pēmtu I +libbu I +uznu I +qatāru II +kukuru I +burāšu I +murru I +erēnu I +qanû I, ṭābu I +baluhhu I +kasû II +kalgukku I +samāne I +šammu I +qutāru I +ša I +uznu I +ina I +pēmtu I +libbu I +uznu I +qatāru II +mūṣu I +qarnu I +ayyalu I +eṣemtu I +awīlūtu I +imbû I +tiāmtu I +eṣemtu I +pagû I +nīnû I +ina I +pēmtu I +libbu I +uznu I +qatāru II +kibrītu I +uriyānu I +šuršu I +ēru II +zappu I +sisû I +ulāpu I, lupputu I +ina I +pēmtu I +ašāgu I +libbu I +uznu I +qatāru II +qanû I, ayyalu I +gabû I +nīnû I +sahliu I +pû I +tiāmtu I +kibrītu I +eṣemtu I +awīlūtu I +ina I +pēmtu I +ašāgu I +libbu I +uznu I +qatāru II +šumma I +awīlu I +uznu I +šagāmu II +dāmu I +erēnu I +arantu I +kukuru I +ina I +itqu I +lawû II +ana I +libbu I +mû I +nadû III +ina I +pēmtu I +bašālu I +ana I +libbu I +uznu I +šakānu I +balāṭu II +šumma I +awīlu I +uznu I +šagāmu II +dāmu I +erēnu I +itti I +mû I +nurmû I +balālu I +ana I +libbu I +uznu I +nadû III +balāṭu II + + + + + + + + + + + + + + + + + + + + + + + + + + + + +šina II +ka'inimmaku I +šumma I +awīlu I +uznu I +šagāmu II +epuštu I +murru I +ešmekku I +ašgigû I +sâku I + + +ina I +dāmu I +erēnu I +balālu I +šiptu I +šalāšī- I +ana I +libbu I +manû IV +itqu I +lawû II +ana I +libbu I +uznu I +šakānu I +šiptu I + +banû IV +Ea I +immanakku I + +banû IV +dapānu I +kussû I +tû I, šiptu I +ištēn I +ka'inimmaku I +šumma I +awīlu I +uznu I +šagāmu II +epuštu I +murru I +ešmekku I +ašgigû I +nikiptu II +ina I +šamnu I +balālu I +ina I +kakkabu I +biātu I +šiptu I +šalāšī- I +ana I +libbu I +manû IV +itqu I +lawû II +ana I +libbu I +uznu I +šakānu I + + + + + +Ninurta I + + + +Ninurta I + + +Ninurta I + + +ištēn I +ka'inimmaku I +šumma I +awīlu I +uznu I +šagāmu II +epuštu I +ešmekku I + + +murru I +urnû I +ištēniš I +sâku I +ina I +dāmu I +erēnu I +balālu I +šiptu I +šalāšī- I +ana I +libbu I +manû IV +ina I +itqu I +lawû II +ana I +libbu I +uznu I +šakānu I +šiptu I + + + + + +patarru I + + + + + + + +ištēn I +ka'inimmaku I +šumma I +awīlu I +uznu I +šagāmu II +šalāšī- I +ana I +libbu I +uznu I +imittu I +šalāšī- I +ana I +libbu I +uznu I +šumēlu I +napāhu I + + + + + + + + + + + + + + + + + + + + + + + + +gulgullu I + + + + +harrānu I + + + + + + + +Ninurta I +šarru I + + + + + + + + +ištēn I +ka'inimmaku I +šumma I +awīlu I +uznu I +šagāmu II +šalāšī- I +ana I +libbu I +uznu I +imittu I +šalāšī- I +ana I +libbu I +uznu I +šumēlu I +manû IV + + + + +šanānu I + + + + + + + +ištēn I +ka'inimmaku I +šumma I +awīlu I +uznu I +šagāmu II +šalāšī- I +ana I +libbu I +uznu I +imittu I +lahāšu I + + + + + + + + + + + +ka'inimmaku I +šumma I +awīlu I +uznu I +šagāmu II +šalāšī- I +ana I +libbu I +uznu I +šumēlu I +lahāšu I + +kurkanû I + + + +šumma I +awīlu I +uznu I +akālu I, -šu I +nešmû I +hesû I +šamnu I +daprānu I +itqu I +salāhu I +ištēn I +šinīšu I +šalāšī- I +ana I +libbu I +uznu I +šakānu I +šumma I +awīlu I +marāṣu I +murṣu I +ana I +libbu I +uznu I +epēšu II +nešmû I +kabātu I +ištēn I +šiqlu I +mû I +nurmû I +šina II +šiqlu I +mû I +kanaktu I +šamnu I + + + +balālu I +itqu I +salāhu I +ana I +libbu I +uznu I +šakānu I + +annû I +epēšu II +ina I + +šarku I +ša I +libbu I +uznu I +elû III +kapāru II +kīma I +šarku I +gamāru II +gabû I +sâku I +ina I +takkussu I +ana I +libbu I +uznu I +napāhu I +šumma I +awīlu I +ummu II +ana I +libbu I +uznu I +epēšu II +nešmû I +kabātu I +u I +ūlū I +zūtu I +kullu III +šamnu I +daprānu I +šamnu I +qanû I, ṭābu I +ana I +qaqqadu I +nadû III +itqu I +salāhu I +ištiššu I +šinīšu I +šalāšī- I +ana I +libbu I +uznu I +šakānu I +nešmû I +petû II +sahliu I +ša I +mimma I +ana I +libbu I +lā I +maqātu I +ina I +akalu I, kunāšu I +akālu I +šumma I +awīlu I +ina I +sili'tu I +ummu II +ana I +libbu I +uznu I +epēšu II +uznu I +kabātu I +šamnu I +kurkû I +ana I +libbu I +uznu I +nadû III +nešmû I +qalālu I +šuršu I +pillû I +zikaru I +pa'āṣu I +ana I +libbu I +uznu I +nadû III +nêšu I +šumma I +awīlu I +uznu I +kīma I +ša I +šugidimmakku I +akālu I +u I +mahāṣu I +šamnu I +kanaktu I +šamnu I +qanû I, ṭābu I +šamnu I +burāšu I +ahê I +ruqqû I +ištēniš I +balālu I +ana I +libbu I +uznu I +nadû III +kirbānu I +mēsallu I +itqu I +lawû II +ana I +libbu I +uznu I +šakānu I +billatu I +damqu I +qēmu I +hallūru I +qēmu I +kakkû I +qēmu I +kunāšu I +qēmu I +kasû II +qēmu I +erēnu I +ina I +šikaru I +rabāku I +ṣamādu II +balāṭu II +šumma I +awīlu I +uznu I +marāṣu I +libbu I +uznu I +bīšu I +mahāṣu I +zaqātu I, -šu I + + + +ū I + + +akālu I +lā I +nâlu I +burāšu I +kukuru I +asu I +baluhhu I +kasû II +kalû IV +kalgukku I +ištēniš I +hašālu I +napû II +ina I +pēmtu I +ašāgu I +libbu I +uznu I +qatāru II + + + + + + +annû I +epēšu II +ina I + +libbu I +uznu I +kapāru II +kīma I +šarku I +gamāru II +gabû I +sâku I +ina I +takkussu I +ana I +libbu I +uznu I +napāhu I +šumma I +awīlu I +ina I +uznu I +šarku I +alāku I +dāmu I +kalītu I +alpu I +u I +dāmu I +erēnu I +ištēniš I +balālu I +ana I +libbu I +uznu I +natāku I + +ana I +libbu I +uznu I +natāku I +mû I + + + + +ana I +libbu I +uznu I +natāku I +mû I +nurmû I +ina I +šamnu I +erēnu I +balālu I +ana I +libbu I +uznu I +natāku I +kamkammatu I +ša I +kimṣu I +imēru I + + + +ša I +eṣemṣēru I +imēru I +ina I +šamnu I +erēnu I +balālu I +itqu I +lawû II +ana I +libbu I +uznu I +šakānu I +šamnu I +baluhhu I +burāšu I +martu I +muṣa''irānu I +ana I +libbu I +uznu I +natāku I + + +ina I +šamnu I +kurkû I +balālu I +ana I +uznu I +natāku I + + +ina I +isqūqu I +balālu I +ana I +uznu I +šakānu I + + + +daqāqu I +ina I +takkussu I +ana I +libbu I +uznu I +napāhu I +kasû II +kīma I +labtu I +qalû II +ina I +takkussu I +ana I +libbu I +uznu I +napāhu I + + + +libāru I +erēru I +sâku I +ana I +libbu I +uznu I +napāhu I +turû I + + + + + + +pa'āṣu I +mû I +ana I +libbu I +uznu I +natāku I +kamkammatu I +ša I +kimṣu I +imēru I + + +ša I + +ištēniš I +balālu I +ana I +libbu I +uznu I +šakānu I +uhūlu I, qarnānû I +lulû II +zikaru I +u I +sinnišu I +itqu I +lawû II +ana I +libbu I +uznu I +šakānu I +šamaškilu I +hesû I +ana I +libbu I +uznu I +natāku I +šumma I +awīlu I +uznu I +šarku I +ṣarāru I +mû I +nurmû I +ana I +libbu I +uznu I +natāku I +šammu I, peṣû I +sâku I +ina I +takkussu I +libbu I +uznu I +napāhu I +šamnu I +erēnu I +šamnu I +ballukku I +kamūnu I +sâku I +ina I +himētu I +balālu I +itqu I +lawû II +ana I +libbu I +uznu I +šakānu I +zību III +murru I +šamnu I, nūnu I +nīnû I +ištēniš I +balālu I +ana I +libbu I +uznu I +šakānu I +martu I +šahû I +ina I +isqūqu I +balālu I +itqu I +lawû II +ana I +libbu I +uznu I +šakānu I +haṣbu III +nurmû I +abālu I +sâku I +ana I +libbu I +uznu I +napāhu I + + +erēnu I + + +muṣa''irānu I +erēru I +sâku I +ana I +libbu I +uznu I +napāhu I +šamnu I +šurmēnu I +itqu I +salāhu I +ana I +libbu I +uznu I +šakānu I +nīnû I +hiṣibtu I + +sâku I +ana I +libbu I +uznu I +šakānu I +šikaru I +ša I +sābû I +šammu I, peṣû I +tābīlu I +ana I +libbu I +uznu I +šakānu I +gabû I +sâku I +ana I +libbu I +uznu I +napāhu I +aru I +bīnu II +aru I +ašūhu I +ina I +pēmtu I +qatāru II + + + +šamnu I +kurkû I + + + + + +martu I +muṣa''irānu I + +uznu I +šakānu I + +nurmû I + +šakānu I + + +šawiru I + +qatāru II + + + + + +ū I + +šumma I +uznu I + + + + + +kukuru I + +mû I +nurmû I + + + + +ina I +pēmtu I +bīnu II +sarāqu I +balāṭu II +šumma I +lulû II +sâku I +ana I +libbu I +uznu I +sarāqu I +balāṭu II +ana I +ašru III, šanû I +kasû II +kīma I +labtu I +qalû II +sâku I +ina I +libbu I +uznu I +sarāqu I +balāṭu II +šumma I +awīlu I +šarku I +ina I +libbu I +uznu I +alāku I +mû I +nurmû I +šamnu I +halṣu I +šamnu I + +erēnu I +balālu I + +mû I +baluhhu I +burāšu I +martu I +muṣa''irānu I +arqu I +ana I +libbu I +uznu I +natāku I +še'u I +ṣalmu I + +dāmu I +zubbu I +ištēniš I +balālu I +ana I +libbu I +uznu I +natāku I +balāṭu II +šumma I +awīlu I +ina I +libbu I +uznu I +lū I +mû I +lū I +dāmu I +lū I +šarku I +alāku I +libbu I +uznu I +kapāru II + +ina I +takkussu I +šapāku I +libbu I +uznu I +mesû II +târu I +ṭābātu I +emṣu I +ana I +libbu I +uznu I +natāku I + + + +sâku I +ina I +dišpu I +balālu I +ana I +libbu I +uznu I +šapāku I +itqu I +lawû II +dišpu I +šadû I +šammu I, peṣû I + + + + +ana I +ašru III, šanû I +zēru II +nuhurtu I +itqu I +lawû II +ana I +libbu I +uznu I +šakānu I +ana I +ašru III, šanû I +zēru II +kukuru I +sâku I +itqu I +lawû II +ana I +libbu I +uznu I +šakānu I +ana I +ašru III, šanû I +kasû II +qalû I +sâku I +itqu I +lawû II +ana I +libbu I +uznu I +šakānu I +šumma I +awīlu I +uznu I +imittu I +ina I +ummu II + + + +awīlu I +šū I +ešertu I +Šamaš I +Sîn I +še'û I +qabû II +u I +šemû I +šakānu I + +mēsallu I +ina I +šamnu I +šurmēnu I +šamnu I +kanaktu I +u I + + +šamnu I, pūru I +eli I +qaqqadu I +nadû III + + +târu I +balāṭu II +šumma I +awīlu I +uznu I +šumēlu I +ina I +ummu II + + +awīlu I +šū I +ešertu I +Ninurta I +še'û I +qabû II +u I +šemû I +šakānu I + +mēsallu I +šamnu I + +šamnu I +kanaktu I +sâku I +itqu I +lawû II +ana I +libbu I +uznu I +šakānu I +šamnu I, pūru I +eli I +ana I +qaqqadu I +nadû III + +burāšu I + + + + +târu I +balāṭu II +šumma I +awīlu I +uznu I + +-šu I +awīlu I +šū I +ešertu I +Šamaš I +še'û I +qabû II +u I +šemû I +šakānu I + +ina I +šamnu I +burāšu I +sâku I +itqu I +lawû II +ana I +libbu I +uznu I +šakānu I +šamnu I, pūru I +eli I +ana I +qaqqadu I +nadû III +sahliu I +ina I +akalu I +kunāšu I +akālu I +šanîš I + + +târu I +balāṭu II +šumma I + +awīlu I +šū I +ešertu I + +še'û I +sebe I +warhu I +damqu I +amāru I + +sâku I +itqu I +lawû II +ana I +libbu I +uznu I +šakānu I +šamnu I, pūru I +eli I +ana I +qaqqadu I +nadû III + + +târu I +balāṭu II +šumma I + +marāṣu I +ṣētu I +marāṣu I +awīlu I +šū I + + + +damqu I +amāru I +ana I +balāṭu II + +šamnu I +šurmēnu I +ana I +qaqqadu I +nadû III + + +târu I +balāṭu II +šumma I +awīlu I +uznu I +zūtu I +ana I +qerbu II +pahāru II + + + + + + +iṭṭû I + + + + +šamnu I +kanaktu I +itqu I +lawû II +ana I +libbu I +uznu I +šakānu I +šamnu I + +ana I +qaqqadu I +nadû III +buhru I + +akālu I +šanîš I + +šikaru I +šatû II +šanîš I + +târu I +balāṭu II +šumma I +awīlu I +uznu I +imittu I +zūtu I +ana I +qerbu II +pahāru II + + + + + + + +ummu II +bašû I +awīlu I +šū I +ešertu I + +še'û I +damqu I +amāru I +ana I +balāṭu II +kitû I +ṣapāru I +šamnu I +šurmēnu I +šamnu I +erēnu I +salāhu I +ana I +libbu I +uznu I +šakānu I + +ana I +qaqqadu I +nadû III +annû I + +akālu I +šanîš I +hašû III +ina I +šikaru I +šatû II +šanîš I + +târu I +balāṭu II +šumma I +awīlu I +uznu I +šumēlu I +zūtu I +ana I +qerbu II +pahāru II +šarku I +nadû III +awīlu I +ešertu I +Ištar I +še'û I +damqu I +amāru I + + + + + +halqu I +amāru I +ana I +balāṭu II +šamnu I +erēnu I +šamnu I +šamnu I +šurmēnu I +šamnu I +baluhhu I +šamnu I +qanû I +ṭābu I +šamnu I +kanaktu I +tabarru I +salāhu I +ana I +libbu I +uznu I +šakānu I +šamnu I +kanaktu I +ana I +qaqqadu I +nadû III +buhru I +akālu I +šanîš I +šikaru I +šatû II +šanîš I + +târu I +balāṭu II +šumma I +awīlu I +uznu I +šasû I +ṭīdu I +hesû I +lū I +šarku I +alāku I +ešertu I +Ninurta I +še'û I + + +nurmû I +arqu I +rahāṣu I +šamnu I +salāhu I + + + +sâku I +ana I +nakkaptu I, -šu I +nadû III +ṭābu I +amāru I +ana I +ašru III, šanû I +ṭabtu I +sâku I +itqu I +lawû II +šamnu I +šurmēnu I +salāhu I +ana I +libbu I +uznu I +šakānu I +šamnu I +šurmēnu I +ana I +nakkaptu I, -šu I +nadû III +bahru I +akālu I +u I +šatû II + +annû I +epēšu II +ṭābu I +amāru I +ana I +ašru III, šanû I +burāšu I +sâku I +itqu I +lawû II +ana I +libbu I +uznu I +šakānu I +šamnu I +hīlu I +baluhhu I +ana I +nakkaptu I, -šu I +nadû III +sahliu I +itti I +akalu I, kunāšu I +akālu I +šalāš I +ūmu I +annû I +epēšu II +ṭābu I +amāru I +ana I +ašru III, šanû I +šamnu I +erēnu I +pušikku I +salāhu I +ana I +libbu I +uznu I +šakānu I + + +ana I +nakkaptu I, -šu I +nadû III + + +ana I +ašru III, šanû I +šamnu I +erēnu I +šamnu I +šurmēnu I +pušikku I +salāhu I +ana I +libbu I +uznu I +šakānu I + +ana I +nakkaptu I, -šu I +nadû III +hašû III +akālu I +u I +šatû II + +annû I +epēšu II +ṭābu I +amāru I +šumma I +awīlu I +uznu I +imittu I +kabātu I +turû I +pa'āṣu I +ana I +libbu I +uznu I +šakānu I +artu I + +bīnu II +arqūtu I +sâku I +ina I +isqūqu I +balālu I +ana I +libbu I +uznu I +šakānu I +erēnu I +burāšu I +zību III +šūmū I +sâku I +ina I +himētu I +balālu I +itqu I +salāhu I +ana I +libbu I +uznu I +šakānu I +šamnu I +šurmēnu I +itqu I +salāhu I +ana I +libbu I +uznu I +šakānu I +ṭūru I +šamnu I +šahû I +artu I +kalbānu I +šārtu I +unīqu I +išaru II +lā I, edû II +sâku I +itqu I +lawû II +ana I +libbu I +uznu I +šakānu I +šamnu I +daprānu I +itqu I +salāhu I +ana I +libbu I +uznu I +šakānu I +dāmu I +ayyāṣu I +itti I +šamnu I +erēnu I +šamnu I +šurmēnu I +balālu I +ana I +libbu I +uznu I +šakānu I +mû I +nurmû I +anzahhu I +daqāqu I + +ana I +libbu I +uznu I +šakānu I +iṣṣūru I, hurru I +zikaru I +qaqqadu I +nakāsu I +dāmu I +emmu I +ana I +libbu I +uznu I +natāku I +šumma I +awīlu I +uznu I +šumēlu I +kabātu I +murru I +kanaktu I +sâku I + +dišpu I, šadû I +ina I +lipiu I +nēšu I + +arki I +itqūru I +abāru I +ina I +šamnu I + + +šamnu I +erēnu I +šigūšu I + + + + +sīku I +šūšu I + +šammu I, peṣû I + + +hasīsu I +ṣabātu I +qēmu I + + +uznu I + + + + + +qēmu I +buṭumtu I +ṣamādu II + + + +ana I +libbu I +uznu I +nadû III +šamnu I +ina I +pû I +ana I +libbu I +uznu I + + + + + +šapāku I +kammu II +ša I +aškāpu I + +šammu I, peṣû I + + +ana I +libbu I +uznu I +napāhu I +šumma I +awīlu I +uznu I +kabātu I +ištēn I +šiqlu I +mû I +nurmû I +ištēn I +šiqlu I +mû I +kanaktu I +ina I +itqu I +salāhu I +ana I +libbu I +uznu I +šakānu I +šalāš I +ūmu I +annû I +epēšu II +ina I + + +libbu I +uznu I +kapāru II +gabû I +sâku I +ina I +takkussu I +ana I +libbu I +uznu I +napāhu I +šuršu I +pillû I +zikaru I + + + + + +leqû II +arqūtu I +sâku I +mû I + + +nešmû I +petû II +ṭūru I +šamnu I +šahû I +imbû I, tiāmtu I + +unīqu I +išaru II +lā I, edû II +erēru I +sâku I + +ana I +libbu I +uznu I +nadû III +šamaškilu I +artu I +tittu I + +kīma I +annû I +epēšu II +sahliu I +akalu I +kunāšu I + +ina I +šikaru I +šatû II +paršīgu I + + +nahlaptu I + +šapāku I + + +qatāru II +balāṭu II + +ana I +libbu I +uznu I +nadû III + +ana I +libbu I +uznu I +nadû III + +ana I +libbu I +uznu I +nadû III + +balālu I +ana I +libbu I +uznu I +natāku I + + +ana I +libbu I +uznu I +šakānu I + +ana I +libbu I +uznu I +natāku I + +ana I +libbu I +uznu I +nadû III + + + +šumma I +awīlu I +šinnu I +marāṣu I +pizalluru I +ša I +ṣēru I +ritkubu I + +pūṣu I +ša I +libbu I +itqu I +lawû II +šamnu I + + +šuršu I +pillû I +zikaru I +šuršu I +nīnû I + +šammu I, peṣû I +hīlu I +baluhhu I +ṭābātu I + +upumtu I +ina I +eli I +šinnu I +šakānu I + + + +gabû I + + + +baluhhu I +suluppu I + +artu I +sikillu I + + +uhinnu I + +gabû I + + + + + + + + + + + + + + + + + + +šuršu I + + + +ummu II +kaṣû III + +ana I +ašru III, šanû I + + +ana I +ašru III, šanû I +qēmu I +eperu I +buqlu I + +sarāqu I + +šumma I +awīlu I +šinnu I +akālu I + +ana I +ašru III, šanû I +muṣa''irānu I +arqu I +martu I + +ana I +ašru III, šanû I +muṣa''irānu I +arqu I +martu I + +ana I +ašru III, šanû I + + +šina II +qû II + + + + + +šakānu I + +šakānu I + +šakānu I + + +nêšu I + +sarāqu I + +balāṭu I + + +nâhu I + +nâhu I + +balāṭu II + +balāṭu II + +balāṭu II + +balāṭu II + +hiṣibtu I + +irtu I + +šakānu I + +sarāqu I + +šakānu I + +sarāqu I + +balāṭu II + + + + +šumma I +awīlu I +šinnu I + + + + + +ana I +ašru III, šanû I +qēmu I +erēru I + +ana I +ašru III, šanû I + + +ana I +ašru III, šanû I + + +ina I +šamnu I + +ana I +ašru III, šanû I + +ana I +ašru III, šanû I + +ina I +qātu I + + + + + +ana I +ašru III, šanû I +šūmū I + +idu I + +ištu I +awīlu I + + +balṭu I +šamnu I + + +itqu I + + + +ana I +ašru III, šanû I +pizalluru I +ša I +ṣēru I +lipiu I, -šu I + +šadânu I + +ina I +kusāpu I + + +ana I +ašru III, šanû I +tamšīlu I + + + + + +ašru III +atbaru I + +pūṣu I +burrumu I +balṭu I +ana I +eli I +šinnu I +šakānu I + +kīma I +mû I +ša I +ana I +eli I +šinnu I + + + +tabālu I +mašû II +adi I +leqû II +lā I +eqû I +balāṭu II +ana I +ašru III, šanû I +šuršu I +pillû I +zikaru I + +awīlu I + + + +mû I +ša I +ana I +eli I +šinnu I +marṣu I +nadû III +ana I +ašru III, šanû I +humbabītu I +pa'āṣu I +itqu I +lawû II +ina I +šamnu I +salāhu I +ana I +libbu I +uznu I +ša I +šinnu I +marṣu I +nadû III +ana I +ašru III, šanû I +zību III +sâku I +ana I +eli I +šinnu I +šakānu I +ana I +ašru III, šanû I +atā'išu I +sâku I +ana I +eli I +šinnu I +pašāšu I +šiptu I +Anu I +Anu I +Anu I +puhru I +šamû I +Anu I +puhru I +erṣetu I +erṣetu I +banû IV +tûltu I +erṣetu I +banû IV +būšānu I +ša I +būšānu I +danānu I +ṣibtu I +kīma I +nēšu I +napištu I +ṣabātu I +kīma I +barbaru I +ṣabātu I +lu'u I +ṣabātu I +appu I +nurbu I +appu I +šīru I +hašû II +ina I +birītu I +šinnu I +nadû III +kussû I +saklu I +mašû II +alaktu I +uppuṭu I +mašû II +rebītu I +ālu I +mītu I +lā I +sahāru I +ištu I +erṣetu I +kūbu I +lā I +enēqu I +tulû I +ša I +ummu I +būšānu I +ai I +târu I +ana I +ṣibtu I +ēkallu I + + + +kīma I + + +šiptu I +ul I + +šiptu I + + +ina I +mahru II +Šamaš I +mû I +ellu I +nadû III +šiptu I +annû I +šalāšī- I +manû IV + +ēm I +manû IV +šibirtu I +buqlu I +šinnu I +malû IV +ana I +eli I +gulgullu I + +gulgullu I +murṣu I +šinnu I +tabālu I +sebîšu I +qabû II +balāṭu II +šiptu I +šī I +nakāru I +daltu I +šīru I +sikkūru I +eṣemtu I +ištu I +ayyānu I + + + + +eṣemtu I +eli I +šinnu I +tabāku I +ummu II +eli I +qaqqadu I +tabāku I +murṣu I +mannu I +šapāru I +ana I +aplu II +ša I +šadû I +Marduk I +lapātu I +tûltu I +tûltu I +kīma I +šikkû I +aṣû I +ṣerrāniš II +tû I, šiptu I +kikiṭṭû I +lašhu I +ša I +ṭīdu I +kullatu II +epēšu II +ana I +minītu I +šinnu I +ašnan I +retû II +ašru III +šinnu I +marṣu I +kunāšu I +ṣalmu I +retû II +šamnu I +šinnu I +malû IV +ana I +libbu I +lašhu I +napāhu I +šiptu I +šalāšī- I +manû IV +ana I +hurru I +ša I +erbu II +šakānu I +ina I +ṭīdu I +pû II +pehû II +ina I +kunukku I +šubû I +u I +šadânu I +bābu I, -šu I +barāmu II +šiptu I +aplu II +emāhu I +aplu II +emāhu I +aplu II +rabû I +ša I +Ellil I +attā I +ištu I +Ēkur I +warādu I +ina I +qablītu I +šamû I +itti I +Ereqqu I +izuzzu I +qabû II +kalû II +akālu I +sakātu I +attā I + +ina I + + +têrtu I +têrtu I +lā I + +tû I, šiptu I +kikiṭṭû I +lašhu I +epēšu II +ana I +minītu I +šinnu I +kunāšu I +retû II +ašru III +šinnu I +marṣu I +ašnan I +ṣalmu I +retû II +dišpu I +u I +šamnu I +halṣu I +šinnu I +malû IV +ana I +libbu I +lašhu I +napāhu I +šiptu I + +manû IV +ana I +hurru I +erbu II +šakānu I + + + + + + + + + +mīnu I + + +lapātu I + + +ištu I +zēru II + + +ana I +libbu I +šinnu I + + +šinnu I + + + + +hepû II + + +kīma I +nādu I + +ka'inimmaku I +šinnu I +marāṣu I + +šiptu I +šinnu I +marāṣu I +šinnu I +marāṣu I + +murṣu I +šinnu I + + + + + +ka'inimmaku I + +ša I +awīlu I + +šiptu I + + + + + + + + + + + + + + + +kalû II + + + + + + +ka'inimmaku I + + +šiptu I +ištiššu I +ana I +eli I +manû IV + +šiptu I +Šamaš I +aššu I +šinnu I +ša I +akālu I + +ša I +kispu I + +kasāpu II +u I +mû I +lā I +naqû I + + + + + + + + + + + + + + + + + + + + +ka'inimmaku I + + +ina I +šēru II +šalāšī- I +manû IV + +šiptu I +ištu I +Anu I +banû IV + + +Eridu I +banû IV + + + +kīma I + + + +nazāqu I + +ka'inimmaku I +šinnu I + + +kupatinnu I +kapātu I +ēm I +kupatinnu I +šiptu I +manû IV + +ana I +eli I +šinnu I +šakānu I + + +nêšu I +šiptu I +Anu I + + +ištu I +Anu I +banû IV + + + + + + + + + + + + + + +atappu I +banû IV +rušumtu I +rušumtu I +banû IV +tûltu I +alāku I +tûltu I +ana I +pānu I +Šamaš I +bakû I +ana I +pānu I +Ea I +alāku I +dimtu II +mīnu I +nadānu II +ana I +akālu I +mīnu I +nadānu II +ana I +mazāqu I +nadānu II +tittu I +bašlu I +armannu I +hašhūru I +anāku I +ammīni I +annû I +tittu I +bašlu I +u I +armannu I +hašhūru I +šaqû II +ina I +birītu I +šinnu I +u I +lašhu I +ašābu I +ša I +šinnu I +mazāqu I +dāmu I +u I +ša I +lašhu I +kasāsu I +kusāsū I +ka'inimmaku I + + +šikaru I +billatu I +šibirtu I +buqlu I +ištēniš I +balālu I +šiptu I +šalāšī- I +ana I +eli I +manû IV +ana I +eli I +šinnu I +šakānu I +šiptu I +arāku I + +barāqu I +daltu I +šīru I +sikkūru I +eṣemtu I +ana I +šīru I +erēbu I +eṣemtu I +našû II +našāku I +šīru I +hepû II +eṣemtu I +ana I +šinnu I +nadû III +sili'tu I +ana I +qaqqadu I +nadû III +ummu II +mannu I +šapāru I +ana I +Asalluhi I +māru I +rēštû I +ša I +Ea I +wabālu I +šammu I +balāṭu I +šiptu I +balāṭu I + + +tû I +ul I +yâti I +šiptu I +Ea I +u I +Asalluhi I +šiptu I +Damu I +u I +Ninkarak I +Gula I +balāṭu II +qīštu I +leqû II +tû I, šiptu I +ka'inimmaku I + + +lā I +šaṭāru II +šumma I +awīlu I +gimru I +šinnu I +nâšu I + +šumma I +awīlu I +šinnu I +marāṣu I +ēkallu I +Assurbanipal I +šarru I +kiššatu I +šarru I +mātu I +Aššur I +ša I +Nabu I +u I +Tašmetu I +uznu I +rapšu I +šarāku I +ahāzu I +īnu I +nawru I +nisqu I +ṭupšarrūtu I +ša I +ina I +šarru I +alāku I +mahru II +mamman I +šipru I +šuāti I +lā I +ahāzu I +bulṭu I +ištu I +muhhu I +adi I +ṣupru I +liqtu I +ahû I +tāhīzu I +naklu I +azugallūtu I +Ninurta I +u I +Gula I +mala I +bašāmu II +ina I +ṭuppu I +šaṭāru II +sanāqu I +barû I +ana I +tāmartu I +šasû I +qerbu II +ēkallu I +kânu I + + + + + + + +maštakal I +sikillu I +arqūtu I, -šunu I +hesû I +ina I + + +hamiš I +šiqlu I +hīlu I +baluhhu I +hamiš I +šiqlu I +iškūru I +ana I +pursītu I + +ašru III +rakāsu I +paṭāru I +ištu I +paṭāru I + +šumma I +awīlu I +šamnu I +latāku I +pašāšu I, -ma I +qaqqadu I, -šu I +kurartu I + + +mesû II +abālu I +arki I, -šu I +kalbānu I +abālu I +hašālu I + +šumma I +ašru III, šanû I +imhur-līm I +sâku I +ina I + +šumma I +ašru III, šanû I +kirbānu I, eqlu I +sâku I +ina I + + +šumma I +ašru III, šanû I +uriyānu I + + + +šumma I +awīlu I +qaqqadu I, -šu I + +errû I + + + + +ṣalmu I +zubbu I +sâku I + + +karašu I +šēnu I +labīru I +ištēniš I +abālu I +erēru I + +annaku I +abāru I +anzahhu I +ištēniš I +balālu I +ištēnīšu I +šinīšu I +šalāšu I + +šumma I +ašru III, šanû I +gabû I +kirbānu I, eqlu I +sâku I +ina I +šamnu I +erēnu I +balālu I + + +šumma I +awīlu I +ina I +ṣehēru I +qaqqadu I, -šu I +šībtu I +malû IV +ana I +šārtu I +peṣû I +ṣalāmu I +qaqqadu I +iṣṣūru I, hurru I + +igirû I +laqlaqqu I +lū I + + + + + + +ina I +išātu I +bašālu I +gulgullu I, -šunu I +leqû II +ina I +šamnu I + +šiptu I + + +sebîšu I + + + + + + + + +šiptu I + + +manû IV + + + + +šumma I +ašru III, šanû I +qarnu I +ayyalu I +leqû II +itti I +eṣemtu I + + + +ina I +išātu I +šarāpu I +itti I +šamnu I + + + +šalāš I +ūmu I +qaqqadu I, -šu I +ṣamādu II, -ma I + +šumma I +ašru III, šanû I +marišmara I +qaqqadu I +argabu I + +qaqqadu I +erēbu II +ṣalmu I +qaqqadu I +iṣṣūru I, hurru I +qaqqadu I + +ištēniš I +erēru I +sâku I +ina I +šamnu I +ṭābu I +balālu I +qaqqadu I, -šu I +gullubu II, -ma I + + +šumma I +ašru III, šanû I +ayyaru I +ilu I +ṣabātu I +libbu I, -šu I +petû I +tākaltu I, -šu I + +-šu I +u I + + + +šina II +libbu I, -šu I +târu I +takāpu I +ina I +ašru III +ṣarhu I + + + +sebe I +ūmu I + + +ša I +libbu I, -šu I +leqû II +abālu I +erēru I +sâku I +ina I +šamnu I +ṭābu I + +qaqqadu I, -šu I +gullubu II +sebe I +ūmu I +pašāšu I +ṣamādu II + +šārtu I +peṣû I +ṣalāmu I +adi I +ṣamādu II +šiptu I +kīam I +manû IV + +šumma I +awīlu I +-šu I, īnu I +dalāhu I +dišpu I +peṣû I +ina I +himētu I +ištēniš I +balālu I + +inūma I +īnu I, -šu I +burṣa I +dagālu I +šugidimmakku I + +ana I +balāṭu II, -šu I +šadânu I, ṣābitu I +annaku I +kutpû I + +mūṣu I +zalāqu I +uqnû I +šubû I +pilaqqu I +werû I, zikaru I +abnu I + +zēru II +bīnu II +zēru II +ēru II +zēru II +ašlu I +zikaru I +ashar I + +šapāhu I +ina I +lipiu I +kalītu I +alpu I +ṣalmu I +kīma I +kammu II +ina I +muhhu I +werû I +sâku I, -ma I + +ana I +ašru III, šanû I +zēru II +bīnu II +zēru II +ēru II +zēru II +ašlu I +zēru II + +zēru II +burāšu I +kīma I +qutāru I +īnu I, -šu I +u I +pūtu I + +šumma I +awīlu I +šugidimmakku I +ṣabātu I +ina I +pānu I +īnu I, -šu I +kīma I +nūru I + + +lū I +kīma I + + + +lū I +kīma I +enzu I +šakānu I +awīlu I +šū I +šugidimmakku I +ṣabātu I, -šu I + + +burāšu I +kukuru I + + + +ištēniš I +sâku I + + + +hīlu I +abukkatu I + + +nāru I + + + + + +eqû I + +eqû I + +malû IV + +eqû I + + + + + + +suluppu I + +ana I +ašru III, šanû I +bīnu II + +šiptu I +kī I + + + + +atappu I + + +ka'inimmaku I +īnu I +apâtu I + +ešû II + +kikiṭṭû I +sebe I +uṭṭatu I +hīlu I +abukkatu I + +ina I +mūšu I +ina I +ūru I +ana I +pānu I +kakkabu I + + + + +ina I +šēru II +lāma I +ṣītu I, šamšu I +šamnu I +annû I + + + +ana I +libbu I +nadû III +īnu I, -šu I +eqû I +arki I +itqūru I +abāru I +ul I +paṭāru I +īnu I, -šu I +mahāru I +ina I +mû I +kasû II +īnu I, -šu I +hapāpu II + +tēqītu I +īnu I +ša I +šugidimmakku I +mūṣu I +abnu I + +huluhhu I +kutpû I +lulû II +artu I +pillû I +zikaru I +artu I + +napharu I +ištēnšeret I +abnu I +u I +šamnu I +annû I +ana I +mû I +nadû III +ina I +kakkabu I +biātu I + +ana I +šamnu I +nadû III +īnu I, -šu I +pašāšu I +ana I +šikaru I +nadû III +šatû II +ina I +kišādu I, -šu I +ina I +mašku I +šakānu I, -ma I +salāmu II +annânu I +ina I + + +epēšu II, -ma I +šalāmu II +ana I +ašru III, šanû I +abnu I +sāmu I +kīma I +bulālu I + +pašāšu I +ana I +ašru III, šanû I +mūṣu I +ašru III, šanû I +ana I +ašru III, šanû I +kutpû I +ina I +himētu I +sâku I +ašru III, šanû I +ana I +ašru III, šanû I +uqnû I +šadû I +ina I +himētu I +sâku I +ašru III, šanû I +ana I +ašru III, šanû I +muššāru I +ašru III, šanû I +ana I +ašru III, šanû I +šimbizidû I +ina I +šizbu I +musukku I +sâku I +īnu I, -šu I +pašāšu I +ana I +ašru III, šanû I +ṣurru I +ṣalmu I +ina I +šamnu I +kurkû I +sâku I +ašru III, šanû I +kukuru I +mirqu I +šammu I +ašû I +nīnû I +kasû II +lipiu I +qanû I +šadânu I, ṣābitu I +mūṣu I +šamnu I +iṣṣūru I, hurru I +labīru I +iškūru I +ištēnšeret I +šamnu I +annû I +ribku I +ša I +šugidimmakku I +īnu I, -šu I +eqû I +balāṭu II + + +ina I +tiše I + + +nīqu I +epēšu II +šīru I, -šunu I + +muhhu I +ša I +eṣemtu I +kurû I +immeru I + + +zību III +mû I +nurmû I + + +ištēniš I +balālu I +ina I +dišpu I +himētu I +šamnu I +erēnu I +sâku I + + + +šumma I +awīlu I +īnu I, -šu I +lā I +naṭālu I +awīlu I +šū I +ṣētu I +hamāṭu III +ištēn I +šiqlu I +rikibtu I, argabu I + +šiqlu I +šammu I, peṣû I +rabiat I +mēsallu I +ina I +dišpu I, šadû I +u I +himētu I +sâku I +īnu I, -šu I +eqû I +šumma I +awīlu I +diglu I +īnu I, -šu I +maṭû II +lipiu I +ṣallamtu I +maštakal I +suluppu I +bīnu II +lipiu I +nēšu I +hīlu I +tīyatu I +errû I +ṭūru I +uhūlu I, qarnānû I +šammu I +peṣû I +mēsallu I +zību III +malmališ I +ina I +eperu I +werû I +ana I +dišpu I +šadû I +balālu I +sâku I +eqû I +passu I +epēšu II +ušû I +uhūlu I, qarnānû I +īnu I, -šu I +mesû II +arka I, -šu I +īnu I, -šu I +eqû I + + + + +nadû III +adi I +sebîšu I +eqû I +arki I, -šu I +itqūru I +abāru I +ul I +paṭāru I + +burāšu I +uhūlu I, qarnānû I +nuhurtu I +sahliu I + +ina I + +lâšu I +ṣamādu II + + +īnu I, -šu I + + + +mēsallu I + + +sâku I + +kalû II +ūmu I + +riksu I +kullu III + +īnu I, -šu I +eqû I +balāṭu II + +qātu I +Šulpae I +Adad I +rahāṣu I + +qātu I +ištaru I + +ina I +pēmtu I +šakānu I + +sâku I +eqû I +balāṭu II + + + +šumma I +lā I +naṭālu I +qātu I +ištaru I + +ina I +dišpu I +u I +himētu I +sâku I +īnu I, -šu I +eqû I +balāṭu II +šumma I +awīlu I +šīlu I +īnu I, -šu I + + + + + + +lā I +ṣalālu I +eli I +minûtu I, -šina I +kabātu I +lipiu I +ṣallamtu I +ina I +himētu I +dišpu I +šadû I +balālu I +eqû I +šumma I +awīlu I +šīlu I +īnu I, -šu I +šadādu I +mayyālu I +lā I +našû II +artu I +šunû II +artu I +tittu I +artu I +libāru I +artu I +kūru III +ina I +mû I +ina I +tinūru I +sekēru II +ana I +libbu I +nadû III +piqannu I +ṣabītu I +kabūtu I +alpu I +ištēniš I +hašālu I +napû II +itti I +qēmu I +labtu I +balālu I +ina I +mû I +kasû II +lâšu I +ṣamādu II +aktam I +ina I +šikaru I +šatû II +balāṭu II +šumma I +awīlu I +ūmu I +kalāma I +lā I +amāru I +mūšu I +kalû II +amāru I +sillurmû I +šumma I +awīlu I + +kalû II +amāru I +mūšu I +kalāma I +lā I +amāru I +sillurmû I +šumma I +awīlu I +īnu I, -šu I +sillurmû I +makūtu II +gabīdu I +ša I +imēru I +šīru I +labiānu I, -šu I +ina I +pitiltu I +šakāku I +ina I +kišādu I, -šu I +šakānu I +agubbû I +kânu I +ina I +šēru II +šahhû I +ana I +pānu I +šamšu I +tarāṣu I +nignakku I +burāšu I +šakānu I +awīlu I +šuāti I +ina I +kutallu I +šahhû I +ana I +pānu I +šamšu I +izuzzu I +mašmašu I +sebe I +akalu I +našû II +ša I +īnu I, -šu I +marāṣu I +sebe I +akalu I +našû II, -ma I +mašmašu I +ana I +marṣu I +mahāru I +nawru I +īnu I +qabû II +marṣu I +ana I +mašmašu I +mahāru I +balṣu I +īnu I +qabû II +šumma I +awīlu I +īnu I, -šu I +sillurmû I +makūtu II +gabīdu I +harāṣu I + +mišlu I +šerru I +pahāru II +kīam I +qabû II + +qabû II +himētu I +u I +šamnu I, rūštu I +ištēniš I +balālu I +īnu I, -šu I +eqû I +epuštu I, -šu I + +šuāti I + +šiptu I + +šemû I, -ma I +mahāru I +Ea I +šemû I +Ea I +mahāru I + +amāru I +nawru I +īnu I +amāru I +balṣu I +īnu I +tû I +šiptu I +epuštu I, -šu I + +sebe I +ubānu I +hašû II +leqû II, -ma I +šiptu I +annû I +manû IV + +ina I +daltu I +ina I +qātu I, -šu I +šakānu I, -ma I +akālu I + + + +makūtu II +gabīdu I +ēm I +herṣu I +harāṣu I + +šaptu I +u I + +nêšu I + + + +minītu I + + + + + + +labtu I + +itqūru I +abāru I +kīma I +līšu I +šakānu I +burāšu I +kukuru I +šammu I + +kasû II +uhūlu I, qarnānû I +sahliu I +šammu I +ašû I +kibrītu I +ru'tītu I +iṭṭû I + +lipiu I +kalītu I +alpu I +ištēniš I +sâku I +ana I +libbu I +abāru I +nadû III, -ma I +ubānu I +eqû I +tēqītu I +šalmu I +ša I +qātu I +ummiānu I +latāku I +barû I +kasû II +sahliu I +atā'išu I +māšu I +kukuru I +iškūru I +nīnû I +lipiu I +kanaktu I +zēru II +burāšu I +tiše I +šamnu I +ribku I +ša I +īnu I +nīnû I +sahliu I +kasû II +nuhurtu I +atā'išu I +māšu I +kammu II +kukuru I +hašû III +ina I + +bašālu I +ina I +šamnu I +u I +iškūru I +peṣû I +sâku I +tiše I +šamnu I +ša I +napšaštu I +lubku I +nīnû I +atā'išu I +kasû II +māšu I +murru I +zēru II +burāšu I +kammu II +ša I +aškāpu I +sebe I +šamnu I +ribku I +ša I +īnu I +ina I +pēmtu I +qalû II +ina I +lipiu I +iškūru I +u I +himētu I +sâku I + +eqû I +kutpû I +tuskû I +ashar I +mūṣu I +uhūlu I, qarnānû I +kukuru I +šammu I + +sahliu I +kammu II +kibrītu I +lipiu I +alpu I +abāru I +itqūru I +abāru I +qātu I +asû I +kutpû I +kibrītu I +kupru I + +zību III +kasû II +sahliu I + +lipiu I +alpu I +lipiu I +eṣemtu I + +itqūru I + + +kukuru I + +šumma I + + + + + +inūma I +epēšu II + +aktam I +sâku I +ina I +šikaru I +bašālu I + + +parparhû I +sâku I +ṣamādu II +sīhu II +argānu I + +lipiu I +kalītu I +sāmu I +ina I +ṣētu I +nadû III +ina I +itqūru I +abāru I +sâku I +īnu I, -šu I +eqû I +šumma I +awīlu I +īnu I, -šu I +marāṣu I +u I +katāmu I +kikkirânu I + +supālu I +arqūtu I, -šu I +ina I +mû I +mesû II +ṣamādu II +inbu I +errû I +šammu I, peṣû I +sâku I + +īnu I, -šu I +eqû I +šumma I +awīlu I +īnu I, -šu I +marāṣu I, -ma I +ūmu I +mādu I +lā I +petû II +ina I +ummu II +qaqqadu I, -šu I +gullubu II +ina I +ūmu I +šalāšī- I, -šu I +līšu I +kaṣû III +ina I +himētu I +itqūru I +abāru I +sâku I +īnu I, -šu I +eqû I +nêšu I +šumma I +awīlu I +īnu I, -šu I +tābīlu I +marāṣu I +šamaškilu I +hašû IV +ina I +šikaru I +šatû II +šamnu I +ana I +libbu I +īnu I, -šu I +zarû II + +qēmu I +abnu I +suluppu I +erēru I +sâku I +ina I +mû I +kasû II +lâšu I +kapātu I +lāma I +patānu I +alātu I +muṣa''irānu I +arqu I +ṣalāpu I +martu I, -šu I +ina I +himētu I +balālu I +īnu I, -šu I +eqû I +hamiš I + +qēmu I +hallūru I +šediš I + +qēmu I +kasû II +hamiš I +šiqlu I +sahliu I +ina I +mû I +kasû II +lâšu I +nakkaptu I, -šu I +īnu I, -šu I +ṣamādu II +šiptu I + + + +erēpu I +egû III + +eli I +mû I + + + + + +šumma I +awīlu I +īnu I, -šu I +dāmu I +malû IV, -ma I +urru I +u I +mūšu I +lā I +ṣalālu I, -ma I + +šumma I +libbu I +īnu I, -šu I +siāmu I +īnu I, -šu I +katāmu I +kasû II +erēru I + +kabūtu I +immeru I +ina I +šizbu I +musukku I +lâšu I +ṣamādu II +ina I +šēru II +paṭāru I +ashar I +ina I +himētu I +sâku I +īnu I, -šu I +eqû I + +šuršu I +šammu I +rapādu I +ina I +patru I +siparru I +nakāsu I +ṭurru I +nabāsu I +u I +šīpātu I +peṣû I +lawû II +rakāsu I +nakkaptu I +kilallān I + + +aṣû I +īnu I, -šu I +eqû I +šumma I +awīlu I +īnu I, -šu I +dāmu I +šanā'u I +zēru II +egemgiru I +dišpu I, šadû I +lēru I +balālu I + +ištēn I +šiqlu I +rikibtu I, argabu I +mišlu I + +šammu I, peṣû I +šuššu I +mēsallu I +ina I +himētu I +sâku I +īnu I, -šu I +eqû I +šammu I, peṣû I +tābīlu I +ana I +libbu I +īnu I, -šu I +zarû II +dāmātu I +ina I +himētu I + +zû I +ṣurārû I +ina I +lipiu I +eṣemtu I +kurû I +sâku I +lā I +patānu I + +hamiš I +uṭṭatu I +šammu I, peṣû I +ina I +šamnu I +sâku I +īnu I, -šu I +eqû I +rikibtu I, argabu I +ina I +himētu I +sâku I +īnu I, -šu I +eqû I +šumma I +awīlu I +īnu I, -šu I +dāmu I +malû IV +dāmātu I +ina I +himētu I +sâku I +eqû I +maštakal I +tarmuš I +malmališ I +balālu I +ina I +himētu I +nikiptu II +zikaru I +u I +sinnišu I +sâku I +īnu I, -šu I +eqû I + +īnu I, -šu I +eqû I + +ana I +libbu I +īnu I, -šu I +zarû II + +sahliu I +šammu I +ašû I + + +ina I +ummu II +ina I +mû I +kasû II +mesû II + +tābīlu I +ṭepû I +šumma I +awīlu I + + +u I +šamnu I +sâku I +eqû I +šumma I +ašru III, šanû I + + + +sâku I +eqû I +šumma I +ašru III, šanû I + +šammu I, peṣû I +tābīlu I +ana I +libbu I +īnu I, -šu I +napāhu I +šumma I +awīlu I +īnu I, -šu I +marāṣu I + +lišānu I, kalbu I +maštakal I +ina I +isqūqu I +balālu I +ina I +karānu I +šatû II +šammu I, peṣû I + +ashar I +ina I +himētu I +sâku I +eqû I +šumma I +awīlu I +īnu I, -šu I +marāṣu I + + +pānu I +pānu I +šakānu I +rakāsu I + +ashar I +ina I +himētu I +sâku I +eqû I +šumma I +awīlu I +īnu I, -šu I +šiknu I +ša I +dāmu I +šakānu I +šammu I, peṣû I +rikibtu I, argabu I +mēsallu I +nīnû I +atā'išu I +kukuru I +lipiu I +kanaktu I +sebe I +šamnu I +annû I +ištēniš I +marāqu I +ina I +martu I +immeru I + +ina I +mû I +kasû II +sapānu I +īnu I, -šu I +eqû I +šalāš I +šiqlu I +rikibtu I, argabu I +mišlu I +šiqlu I +šammu I, peṣû I +ina I +dišpu I, šadû I +sâku I +īnu I, -šu I +eqû I +annû I +šammu I + +šiptu I + + + +ina I +kīru I +balāṭu I +balāṭu I +pašāru I +balāṭu I +pašāru I +ba'ālu I +ina I +itti I +malāku II + +sinnišu I +lā I +alādu I +kalû V +wīṣu I +mâdu I +tû I, šiptu I +ka'inimmaku I +īnu I, -šu I +dāmu I +malû IV +kikiṭṭû I +šuršu I +uriyānu I + + +uqniātu I +rakāsu I +erbēšerû I +kiṣru I +kaṣāru I +ēm I +kaṣāru I +šiptu I +manû IV +ina I +nakkaptu I, -šu I +rakāsu I +šiptu I + +lā I +bāmâ I + +lā I +bāmâ I +u I +agašgû I +qatû II +agašgû I +qatû II +tû I, šiptu I +ka'inimmaku I + + +īnu I, -šu I +dāmu I +malû IV +kikiṭṭû I +ashar I +ina I +himētu I +sâku I +ana I +libbu I +īnu I, -šu I +nadû III +šiptu I + + + + + + + + + +šahû I +šurru I +kašāru I +kašāru I +šīru I +šīru I +akālu I +dāmu I +dāmu I +naṣābu I +šer'ānu I +šer'ānu I +kanānu I +nadû III +Gula I +tû I +balāṭu I +emqu I +ṣimdu I +qerēbu I +attī I +šakānu I +balāṭu I +bulṭu I +tû I, šiptu I +ka'inimmaku I +šumma I +awīlu I +īnu I, -šu I +dāmu I +malû IV +kikiṭṭû I +šalāš I +uṭṭatu I +uhūlu I, qarnānû I +šalāš I +uṭṭatu I +hīlu I +abukkatu I +šalāš I +uṭṭatu I +zû I +ṣurārû I +ištēniš I +sâku I +ina I +šizbu I +enzu I +rabāku I +īnu I, -šu I +ṣamādu II +šumma I +awīlu I +īnu I, -šu I +marāṣu I, -ma I +dāmu I +malû IV +baluhhu I +dāmu I +šanā'u I +dāmu I +dimtu II +ina I +libbu I +īnu I, -šu I +aṣû I +ṣillu I +lamassu I +īnu I, -šu I +nakāpu I +ešītu I +ana I +ṣillu I +târu I +diglu I +kabātu I, -šu I +bīnu II +arqūtu I, -šu I +hesû I +ina I +ṭābātu I +dannatu I +ramāku I +ina I +kakkabu I +biātu I +ina I +šēru II +ana I +libbu I +huliam I +ṣahātu I +annuharu I +šammu I, peṣû I +mēsallu I +lipiu I +tuskû I +zību III +hīlu I +werû I +ahennâ I +sâku I +malmališ I +leqû II +ištēniš I +emēdu I +ana I +libbu I +huliam I +ša I +šahātu IV +šapāku I +ina I +himētu I +u I +šumēnu I +lâšu I, -ma I +rēšu I +īnu I, -šu I +ina I +ubānu I +petû II +ana I +libbu I +īnu I, -šu I +šakānu I +īnu I, -šu I +katāmu I +kullu III +īnu I, -šu I +kâru I + +annû I +epēšu II +šumma I +ašru III, šanû I +murru I +šammu I, peṣû I +mēsallu I +ina I +uppu I +siparru I +ana I +libbu I +īnu I, -šu I +napāhu I +šumma I +awīlu I +šanîš I +hīlu I +werû I +šammu I, peṣû I +sâku I +ina I +uppu I +siparru I +ana I +libbu I +īnu I, -šu I +napāhu I +šumma I +awīlu I +šanîš II +urnû I +šammu I, peṣû I +sâku I +ina I +uppu I +siparru I +ana I +libbu I +īnu I, -šu I +napāhu I +šiptu I + + + + + + + + + + + + + + + + + + + + + + + +īnu I +apû III +īnu I +ešû IV + +šaharru I +īnu I +kīma I +niksu I +immeru I +dāmu I +šanā'u I +kīma I +mû I +ša I +agalapû I +alapû I +nadû III +kīma I +karpatu I +ṭābātu I +nadû III +ṣillu I +ina I +biri- I +pitiqtu I +patāqu I +erēbu I + +ina I +biri- I +nadû III +kussû I +aššu I +annû I +ina I +libbu I +annû I +lā I +napāšu I +šiptu I +ul I +yā'u I +šiptu I + +u I +Asalluhi I +šiptu I + +u I +Gula I +šiptu I + +bēltu I +šiptu I +Gula I +balāṭu II, -ma I +qīštu I +leqû II +tû I, šiptu I +ka'inimmaku I +īnu I +marṣu I +kikiṭṭû I +annû I +ša I +šīpātu I +peṣû I +ṭurru I +ṭawû I +sebe I +kiṣru I +kaṣāru I +ēm I +kaṣāru I +šiptu I +manû IV +ina I +īnu I, -šu I +balṭu I +rakāsu I, -šu I +šiptu I + + + + + + + + + + + + + + + + + + + + + + + +īnu I + +īnu I +ešû IV +īnu I +ša I +dāmu I +malû IV +anāku I + + + + + +sāniqu I +qabû II +ša I +Gula I +šina II +šina I +ahātu I +ina I +biri- I +parāku I +šadû I +mannu I +šapāru I +ana I +mārtu I +Anu I +ša I +šamû I +našû II +tallu II, -šina I +hulālu I +karpatu I, -šina I +uqnû I +ebbu I +sâbu I +mû I +ayabba I +tiāmtu I +rapšu I +ša I +harištu I +lā I +warādu I +ana I +libbu I +musukku I +lā I +mesû II +qātu I, -ša I +malû IV, -ma I +kaṣû III +ummu II +ṣirihtu I +ša I +libbu I +īnu I, -šu I +šiptu I +ul I +yā'u I +šiptu I + +u I +Asalluhi I +šiptu I + +u I +Gula I +šiptu I + +bēltu I +šiptu I +Gula I +balāṭu II +qīštu I +leqû II +tû I, šiptu I +ka'inimmaku I +īnu I +marṣu I + +annû I +ša I +šīpātu I +sāmu I +ṭurru I +ṭawû I +sebe I +kiṣru I +kaṣāru I +ēm I +kaṣāru I +šiptu I +manû IV +ina I +īnu I, -šu I +marṣu I +rakāsu I +šiptu I + + + + + + + + + + + + + + + + + + + + +īnu I +apû I +īnu I +ešû IV +īnu I +pursītu I +dāmu I +ṣalāpu I +ammīni I +apû III +ammīni I +ešû I +ammīni I +akālu I +bāṣu I +ša I +nāru I +taltallû I +ša I +gišimmaru I +ša I +tittu I +niqqu I, -ša I +ša I +aru I +tibnu I +šasû I +alāku I +ul I +šasû I +ul I +alāku I +lāma I +tebû I +šūtu II +ištānu I +šadû II +amurru I +šiptu I +ka'inimmaku I + +marṣu I + + + + + +ahennâ I +ṭawû I +sebe I +u I +sebe I +kiṣru I + +ēm I + +šiptu I +manû IV +ṭurru I + + +ina I + +marṣu I + +ṭurru I + + +ina I + + +rakāsu I +nêšu I +šiptu I + + + + + + + + + + + + + + +šina II +mārtu I +Anu I +ina I +biri- I, -šina I +pitiqtu I +patāqu I +ul I +alāku I +ahātu I +ana I +lētu I +ahātu I +mannu I +šapāru I +ana I +mārtu I +Anu I +ša I +šamû I +našû II +kannu I, -šina I +hulālu I +karpatu I, -šina I +zagidrû I +ebbu I +sâbu I +belû II +īnu I +apû I +īnu I +ešû I +u I +dalhu I +tû I, šiptu I +ka'inimmaku I + +marṣu I +kikiṭṭû I + +šiptu I + + + + + + + + + + + + + + +šina II +īnu I +ahātu I +šina I +ina I +biri- I, -šina I +šadû I +parāku I, -ma I +elēnû I, -šina I +kiṣirtu I +kaṣāru I +šaplānu I, -šina I +pitiqtu I +patāqu I +ayyu I +šāru I +ayyu I +lā I +šāru I, -šina I, -ma I +ayyu I +šāru I +tību I, -šina I +ayyu I +lā I +šāru I +tību I, -šina I +šāru I +pānu I +iklu I +pānu I +ṣulmu I +pānu I +attā I +paṭāru I +Marduk I +tû I, šiptu I +ka'inimmaku I +īnu I +marṣu I +kikiṭṭû I + +šiptu I + + + + + + + + +kikiṭṭû I + +ahennâ I +ṭawû I + +ina I +nakkaptu I, -šu I +rakāsu I, -šu I +šiptu I + + +īnu I +lā I +rašû I +tû I, šiptu I +kikiṭṭû I + +ina I +nakkaptu I, -šu I +ša I +imittu I +šiptu I + + + + +kikiṭṭû I + +ina I +nakkaptu I, -šu I +ša I +šumēlu I +ka'inimmaku I +īnu I +marṣu I +kikiṭṭû I + +šiptu I + + + +Marduk I +palāsu I, -šu I, -ma I +ana I +Ea I +abu I, -šu I +šasû I +mīnu I +epēšu II +ul I +edû II +ša I +anāku I +edû II +attā I +edû II +tû I, šiptu I +kikiṭṭû I +šīpātu I +sāmu I +šīpātu I +peṣû I +ištēniš I +ṭawû I +sebe I +u I +sebe I +kiṣru I +kaṣāru I +ēm I +kaṣāru I +šiptu I +manû IV +ina I +nakkaptu I, -šu I +rakāsu I +nêšu I +šiptu I + + + + + + + + + + + + + +ka'inimmaku I + +marṣu I +kikiṭṭû I + +šiptu I + + + + + + + + + + + +ka'inimmaku I +īnu I +marṣu I +kikiṭṭû I + +šiptu I +īnu I +eṭlu I +marāṣu I +īnu I +ardatu I +marāṣu I +īnu I +eṭlu I +u I +ardatu I +mannu I +balāṭu II +šapāru I +leqû II, -ku I +libbu I +ellu I +gišimmaru I +ina I +pû I, -ka I +hepû II +ina I +qātu I, -ka I +patālu I +eṭlu I +u I +ardatu I +ina I +nakkaptu I, -šunu I +kaṣāru I +īnu I +eṭlu I +u I +ardatu I +balāṭu II +tû I, šiptu I +ka'inimmaku I +īnu I +marṣu I +kikiṭṭû I + + + + + + + + + +ina I +šamû I +šāru I +ziāqu I +ina I +īnu I +awīlu I +simmu I +šakānu I + + + + + + + + +ištu I +šamû I +rūqu I + + + + + +īnu I +marṣu I +simmu I +šakānu I + + + + + +ša I +awīlu I +šuāti I +idu I +dalhu I +ša I +īnu I +ešû I + + + + + +awīlu I +šū I +ina I +ramānu I, -šu I +marṣiš I +bakû I + + + + + +ša I +awīlu I +šuāti I +murṣu I, -šu I + +amāru I + + + + +kasû II +hašlu I +leqû II, -ma I + + + +šiptu I +apsû I +nadû III + + + +īnu I +awīlu I +rakāsu I, -ma I + + + + + + + + + +ina I +qātu I, -ša I +ellu I +īnu I +awīlu I +ina I +lapātu I, -ša I + + + + + + +šāru I +ša I +īnu I +awīlu I +edēpu I +ina I +īnu I, -šu I +aṣû I +ka'inimmaku I +īnu I +marṣu I +šiptu I +īnu I +apû I +īnu I +ešû I +īnu I +pursindu I +dāmu I +šaharru I +lulû II +rikibtu I, argabu I +lipiu I +eṣemtu I +karû II +ša I +immeru I + +sâku I + +šīpu I +sâku I +ina I +takkussu I +ana I +libbu I +īnu I, -šu I +nahīru I +kunšu I +qaqqadu I + +ešer I + +šamnu I +mišlu I + + + + + + + + +epēšu II +sahliu I +erēru I +sâku I + + +šumma I +awīlu I +īnu I, -šu I +marāṣu I +habbūru I +še'u I +arqūtu I +uhūlu I, qarnānû I +sâku I +ina I +mû I +kasû II +lâšu I + + +ashar I +tuskû I +sâku I +ina I +lipiu I +tahāhu I +malmališ I +sâku I +ina I +himētu I +balālu I + + +šumma I +awīlu I +īnu I, -šu I +marāṣu I +ešer I + + +ana I +nakkaptu I +nadû III +šuhtu I +ša I +aškāpu I +ina I +nādu I +sêru I +ina I +nakkaptu I +ṣamādu II + + +ashar I +šīpu I +sâku I +ina I +himētu I +balālu I +īnu I, -šu I +eqû I +balāṭu II + + + + + + +šuhtu I +ša I +tangussu I +ina I +himētu I +sâku I +īnu I, -šu I +eqû I +patru I, siparru I + + + + + +ištiššu I +šinīšu I +šalāšī- I +īnu I, -šu I +eqû I +sahliu I +ina I +šuršummu I +šikaru I +lâšu I +ṣamādu II + +šuhtu I +ša I +tangussu I +erēru I +hašālu I +ina I +himētu I +damqu I +sâku I + + + +īnu I, -šu I +eqû I + +ana I +libbu I +īnu I, -šu I +natāku I +maštakal I +sâku I +ṣamādu II + +barīrātu I +ina I +šizbu I +lâšu I +ṣamādu II + +ina I +itqūru I +abāru I +sâku I +īnu I, -šu I +eqû I + +kikkirânu I + +supālu I +arqūtu I +ina I +mû I + +errû I +šammu I, peṣû I + + +eqû I + +īnu I, -šu I +marāṣu I + +mādu I +lā I +petû I +ina I +ummu II + +qaqqadu I +gullubu II + +līšu I +kaṣû III + +ina I +himētu I +itqūru I +abāru I +sâku I +īnu I, -šu I +eqû I +nêšu I + + +tābīlu I +marāṣu I +šamaškilu I +hašû IV +ina I +šikaru I +šatû II +šamnu I +ana I +libbu I +īnu I, -šu I +zarû II + + +abnu I +suluppu I +erēru I +sâku I +ina I +mû I +kasû II +lâšu I +kapātu I +lāma I +patānu I +alātu I +muṣa''irānu I +arqu I +ṣalāpu I +martu I +ina I +himētu I +balālu I +īnu I, -šu I +eqû I + +hallūru I +šediš I + +qēmu I +kasû II +hamiš I +šiqlu I +sahliu I +ina I +mû I +kasû II +lâšu I +nakkaptu I +īnu I, -šu I +ṣamādu II +šiptu I + + + + + + + + +zēru II +šammu I + + + +erēpu I +egû III + + + +eli I +mû I +šalāšī- I +qabû II +šumma I +awīlu I + +kasû II +sahliu I +māšu I +lipiu I +kanaktu I +zēru II +burāšu I +kammu II + +qalû II +ina I +himētu I +lipiu I +kalītu I +immeru I +iškūru I +wabālu I +īnu I, -šu I +eqû I +šumma I +awīlu I +īnu I, -šu I + +īnu I, -šu I +marāṣu I +rikibtu I, argabu I +ina I +himētu I +sâku I +eqû I +šumma I +awīlu I +īnu I, -šu I +marāṣu I + +šumma I +awīlu I +īnu I, -šu I +marāṣu I +sahliu I +ina I +šizbu I +bašālu I +ṣamādu II +šumma I +awīlu I +īnu I, -šu I +dāmu I + + + +šumma I +libbu I +īnu I, -šu I +sāmu I +īnu I, -šu I +katāmu I + +musukku I +lâšu I +ṣamādu II +ina I +šēru II +paṭāru I + +ina I +patru I +siparru I +nakāsu I +ṭurru I +nabāsu I + +šumma I +awīlu I +īnu I, -šu I +dāmu I +šanā'u I + +ištēn I +šiqlu I +rikibtu I, argabu I +mišlu I + +šammu I, peṣû I +tābīlu I +ana I +libbu I +īnu I, -šu I + +zû I +ṣurārû I +ina I +lipiu I +eṣemtu I +kurû I + +hamiš I +uṭṭatu I +šammu I, peṣû I +ina I +šamnu I +sâku I +īnu I, -šu I +eqû I + +šumma I +awīlu I +īnu I, -šu I +dāmu I +malû IV + +maštakal I +tarmuš I +malmališ I + +abnu I +tašrītu I +ina I +ru'tu I +sâku I +eqû I +šimbizidû I + +dāmu I +ša I +libbu I +šahû I +ana I +libbu I +īnu I, -šu I +natāku I + +šalāš I +šiqlu I +rikibtu I, argabu I + +šiptu I + + +ina I +kīru I +balāṭu I +balāṭu I +pašāru I +balāṭu I +pašāru I +ba'ālu I +ina I +itti I + +sinništu I +ul I +alādu I +kalû V +wīṣu I +mâdu I +tû I, šiptu I +ka'inimmaku I +īnu I +dāmu I +malû IV +kikiṭṭû I +šuršu I + +erbēšerû I +kiṣru I +kaṣāru I +ēm I +kaṣāru I +šiptu I +manû IV +ina I +nakkaptu I + +šiptu I + +lā I +bāmâ I + +lā I +bāmâ I +u I +agašgû I +qatû II +agašgû I +qatû II +tû I, šiptu I +ka'inimmaku I +šumma I +awīlu I +īnu I, -šu I +dāmu I +malû IV +kikiṭṭû I +ashar I +ina I +himētu I +sâku I +ana I +libbu I +īnu I, -šu I +nadû III +šiptu I + + + + + + + + + +šahû I +šurru I +kašāru I +kašāru I +šēru II +šīru I +akālu I +dāmu I +dāmu I +naṣābu I +šer'ānu I +šer'ānu I +kanānu I +nadû III + +tû I +balāṭu I +emqu I +ṣimdu I +qerēbu I +attī I +šakānu I +balāṭu I +bulṭu I +tû I, šiptu I +ka'inimmaku I +šumma I +awīlu I +īnu I, -šu I +dāmu I +malû IV +kikiṭṭû I +šalāš I +uṭṭatu I +uhūlu I, qarnānû I +šalāš I +uṭṭatu I +hīlu I +abukkatu I +šalāš I + +zû I +ṣurārû I +ištēniš I +sâku I +ina I +šizbu I +enzu I +rabāku I +īnu I, -šu I +ṣamādu II +šumma I +awīlu I +īnu I, -šu I +marāṣu I +dāmu I +malû IV +baluhhu I +dāmu I +šanā'u I +dāmu I +dimtu II +ina I +libbu I +īnu I, -šu I +aṣû I +ṣillu I +lamassu I +īnu I +nakāpu I +ešītu I +ana I +ṣillu I +târu I +diglu I +kabātu I +bīnu II +arqūtu I +hesû I +ina I +ṭābātu I +dannatu I +ramāku I +ina I +kakkabu I +biātu I +ina I +šēru II +ana I +libbu I +huliam I +ṣahātu I +annuharu I +šammu I, peṣû I +mēsallu I +lipiu I +tuskû I +zību III +hīlu I +werû I +ahennâ I +sâku I +malmališ I +leqû II +ištēniš I +emēdu I +ana I +libbu I +huliam I +ša I +šahātu IV +šapāku I +ina I +himētu I +u I +šumēnu I +lâšu I +rēšu I +īnu I +ina I +ubānu I +petû II +ana I +libbu I +īnu I, -šu I +šakānu I +īnu I, -šu I +katāmu I +kullu III +īnu I, -šu I +kâru I + +annû I +epēšu II +ana I +ašru III, šanû I +murru I +šammu I, peṣû I +mēsallu I +ina I +uppu I +siparru I +ana I +libbu I +īnu I, -šu I +napāhu I +šumma I +awīlu I +šanîš II +hīlu I +werû I +šammu I, peṣû I +sâku I +ina I +uppu I +siparru I +ana I +libbu I +īnu I, -šu I +napāhu I +šumma I +awīlu I +šanîš II +urnû I +šammu I, peṣû I +sâku I +ina I +uppu I +siparru I +ana I +libbu I +īnu I, -šu I +napāhu I +šiptu I + + + + + + + + + + + + + + + + + + + + + + + +īnu I +apû III +īnu I +ešû IV + +šaharru I +īnu I +kīma I +niksu I +immeru I +dāmu I +šanā'u I +kīma I +mû I +ša I +agalapû I +alapû I +nadû III +kīma I +karpatu I +ṭābātu I +nadû III +ṣillu I +ina I +biri- I +pitiqtu I +patāqu I +erēbu I + +ina I +biri- I +nadû III +kussû I +aššu I +annû I +ina I +libbu I +annû I +lā I +napāšu I +šiptu I +ul I +yā'u I +šiptu I + +u I + +šiptu I + +u I + +šiptu I + +bēltu I +šiptu I + +balāṭu II +qīštu I +leqû II +tû I, šiptu I +ka'inimmaku I +īnu I +marṣu I +kikiṭṭû I +annû I +ša I +šīpātu I +peṣû I +ṭurru I +ṭawû I +sebe I +kiṣru I +kaṣāru I +ēm I +kaṣāru I +šiptu I +manû IV +ina I +īnu I, -šu I +balṭu I +rakāsu I +šiptu I + + + + + + + +īnu I +apâtu I +īnu I +ešû I +īnu I +ša I +dāmu I +malû IV +anāku I + +sāniqu I +qabû II +ša I + +šina II +šina I +ahātu I +ina I +biri- I +parāku I +šadû I +mannu I +šapāru I +ana I +mārtu I +Anu I +ša I +šamû I +našû II +tallu II +hulālu I +karpatu I +uqnû I +ebbu I +sâbu I +mû I +ayabba I +tiāmtu I +rapšu I +ša I +harištu I +lā I +warādu I +ana I +libbu I +musukku I +lā I +mesû II +qātu I +salā'u I +kaṣû III +ummu II +ṣirihtu I +ša I +libbu I +īnu I, -šu I +šiptu I +ul I +yā'u I +šiptu I + +u I + +šiptu I + +u I + +šiptu I + +bēltu I +šiptu I + +balāṭu II +qīštu I +leqû II +tû I, šiptu I +ka'inimmaku I +īnu I +marṣu I +kikiṭṭû I +annû I +ša I +šīpātu I +sāmu I +ṭurru I +ṭawû I +sebe I +kiṣru I +kaṣāru I +ēm I +kaṣāru I +šiptu I +manû IV +ina I +īnu I +marṣu I +rakāsu I +šiptu I + + + + + + + + + + + + + + + + + + + + +īnu I +apû I +īnu I +ešû IV +īnu I +pursītu I +dāmu I +ṣalāpu I +ammīni I +apû III +ammīni I +ešû I +ammīni I +akālu I +bāṣu I +ša I +nāru I +taltallû I +ša I +gišimmaru I +ša I +tittu I +niqqu I +ša I +aru I +tibnu I +šasû I +alāku I +ul I +šasû I +ul I +alāku I +lāma I +tebû I +šūtu II +ištānu I +šadû II +amurru I +šiptu I +ka'inimmaku I +īnu I +marṣu I +kikiṭṭû I +šīpātu I +sāmu I +šīpātu I +peṣû I +ahennâ I +ṭawû I +sebe I +u I +sebe I +kiṣru I +kaṣāru I +ēm I +kaṣāru I +šiptu I +manû IV +ṭurru I +šīpātu I +sāmu I +ina I +īnu I, -šu I +marṣu I +rakāsu I +ṭurru I +šīpātu I +peṣû I +ina I +īnu I, -šu I +balṭu I +rakāsu I +nêšu I +šiptu I + + + + + + + + + + + + +šina II +mārtu I +Anu I +ina I +biri- I +pitiqtu I +patāqu I +ūl I +alāku I +ahātu I +ana I +lētu I +ahātu I +mannu I +šapāru I +ana I +mārtu I + +ša I +šamû I +našû II +kannu I +hulālu I +karpatu I +zagidrû I +ebbu I +sâbu I +belû II +īnu I +apû I +īnu I +ešû I +u I +dalhu I +tû I, šiptu I +ka'inimmaku I +īnu I +marṣu I +kikiṭṭû I + +šiptu I + + + + + + + + + + + + + + +šina II +īnu I +ahātu I +šina I +ina I +biri- I +šadû I +parāku I +elēnû I +kiṣirtu I +kaṣāru I +šaplānu I +pitiqtu I +patāqu I +ayyu I +šāru I +ayyu I +lā I +šāru I +ayyu I +šāru I +tību I +ayyu I +lā I +šāru I + +ka'inimmaku I +īnu I +marṣu I +kikiṭṭû I + +šiptu I + + + + + + + +Marduk I +palāsu I +ana I + +abu I +šasû I +mīnu I +epēšu II +ul I +edû II +ša I +anāku I +edû II +attā I +edû II +tû I, šiptu I +ka'inimmaku I +īnu I +marṣu I +kikiṭṭû I +šīpātu I +sāmu I +šīpātu I +peṣû I +ištēniš I +ṭawû I +sebe I +u I +sebe I +kiṣru I +kaṣāru I +ēm I +kaṣāru I +šiptu I +manû IV +ina I +nakkaptu I +rakāsu I +nêšu I +šiptu I + + + + + + + + + + + + + +ka'inimmaku I +īnu I +marṣu I +kikiṭṭû I + +šiptu I +īnu I +eṭlu I +marāṣu I +īnu I +ardatu I +marāṣu I +īnu I +eṭlu I +u I +ardatu I +mannu I +balāṭu II +šapāru I +leqû II +libbu I +ellu I +gišimmaru I +ina I +pû I +hepû II +ina I +qātu I +patālu I +eṭlu I +u I +ardatu I +ina I +nakkaptu I +kaṣāru I +īnu I +eṭlu I +u I +ardatu I +balāṭu II +tû I, šiptu I +ka'inimmaku I +īnu I +marṣu I +kikiṭṭû I + + + + + + + + + +ina I +šamû I +šāru I +ziāqu I +ina I +īnu I +awīlu I +simmu I +šakānu I + + + + + + + + +ištu I +šamû I +rūqu I + + + + +ana I +īnu I +marṣu I +simmu I +šakānu I + + + +ša I +awīlu I +šuāti I +īnu I +dalhu I + + +īnu I +ešû I + + + + + +awīlu I +šū I +ina I +ramānu I +marṣiš I +bakû I + + + + + +ša I +awīlu I +šū I +murṣu I + +amāru I + + + + +kasû II +hašlu I +leqû II + + + +šiptu I +apsû I +nadû III + + + +īnu I +awīlu I +rakāsu I + + + + + + + + + +ina I +qātu I +ellu I +īnu I +awīlu I +ina I +lapātu I + + + + + + +šāru I +ša I +īnu I +awīlu I +edēpu I +ina I +īnu I +aṣû I +ka'inimmaku I +īnu I +marṣu I +šiptu I +īnu I +apû I +īnu I +ešû I +īnu I +pursindu I +dāmu I +šaharru I +šina II +bakû I +ana I +pānu I +ummu I + +ammīni I +našû II +itti I +rakāsu I +ešû II +dāmu I +u I +šāru I +tû I, šiptu I +ka'inimmaku I +īnu I +marṣu I +kikiṭṭû I +šīpātu I +sāmu I +šīpātu I +peṣû I +ahennâ I +ṭawû I +ina I +qablu I, -šunu I +lippu I +lapāpu I +šīpātu I +sāmu I +ina I +īnu I, -šu I +marṣu I +šīpātu I +peṣû I +ina I +īnu I, -šu I +balṭu I +rakāsu I +nêšu I +šiptu I + + + + + + + + + + + + + + +šattu I +pānu I +magāru I +šattu I +pānu I +magāru I +ṭiābu I +magāru I +šanîš I +tû I, šiptu I +ka'inimmaku I +šumma I +awīlu I +īnu I, -šu I +dalāhu I +kikiṭṭû I +birku I +immeru I +leqû II + + +u I +ṭurru I +ṭawû I +ana I +šinīšu I +esēpu I + + + +sebe I +u I +sebe I +kiṣru I +kaṣāru I +ēm I +kaṣāru I +šiptu I +manû IV +ina I +nakkaptu I +rakāsu I +nêšu I +šiptu I +attina I + +pursindu I +dāmu I +šaharru I +ammīni I +našû II +hāmū I +handabillu I +šuršurru II +alapû I +ša I +nāru I +ina I +sūqu I +kirbānu I +ina I +tubqinnu I +huṣābu I +ammīni I +našû II +zanānu I +kīma I +kakkabu I +maqātu I +kīma I +nablu I +lāma I +kašādu I, -kināši I +ṣurru I +naglabu I +ša I + +šiptu I +lā I +paṭāru I +šiptu I + +Marduk I +šiptu I + +bēltu I +šiptu I +u I + +bēltu I +asûtu I +nadû III +anāku I +našû II +tû I, šiptu I +ka'inimmaku I +hāmū I +huṣābu I +u I +mimma I +ša I +īnu I +elû III +šiptu I +ina I +šurrû I +lāma I +bašāmu II +alallû II +warādu I +ana I +mātu I +ittû I +šer'u I +alādu I +šer'u I +habbūru I +habbūru I +kannu III +kannu III +kiṣru I +kiṣru I +šubultu I +šubultu I +merhu II +šamšu I +eṣēdu II +Sîn I +pahāru II +šamšu I +ina I +eṣēdu II, -šu I +Sîn I +ina I +pahāru II, -šu I +ana I +īnu I +eṭlu I +merhu II +erēbu I +šamšu I +u I +Sîn I +izuzzu I +merhu II +elû III + + +ka'inimmaku I +merhu II +ša I +libbu I +īnu I +elû III +šumma I +awīlu I +īnu I, -šu I +amurdinnu I +malû IV +sahliu I +qēmu I +labtu I +ina I +šikaru I +rabāku I + + + + + + + + + + + + + + + + + + + + + + + + + +paṭāru I + + + + + + + + + + + + + + + +sikillu I + + + + + + + + + + + + + + + + + +nuhurtu I +qilpu I +mekû II + + + + + + + + + + + + + + + + + + + + +kibrītu I +mūṣu I + + + + + + + +kutpû I +zalāqu I +abnu I +parzillu I +šadânu I +ṣābitu I + + + + +libbu I +nadû III +šiptu I +sebîšu I +manû IV, -ma I +nakkaptu I, -šu I + + +huppu II +īnu I, -šu I +pašāšu I, -ma I +salāmu II +nâhu I + + + +ṣabātu I, -šu I, -ma I + +rašû I +abnu I +kaspu I +abnu I +hurāṣu I +sāmtu I + + + +muššāru I + +hulālu I +pappardaliu I +zalāqu I +mūṣu I +anzahhu I +šubû I +ṣurru I +ṣalmu I +šû II +zikaru I +u I +sinništu I +sangilmud I + +abnu I +parzillu I +ayyartu I +ša I +sebe I +tikpu I, -ša I +yānibu I +kapāṣu I +abnu I +kalāma I +annû I +ina I +šārtu I +unīqu I +lā I, petû I +šer'ānu I +ṣabītu I +ašlu I +zikaru I +ṭawû I +šakāku I +tarmuš I +imhur-līm I +imhur-ešrā I +ēru II +ēdu I +aprušu I +aktam I +elkulla I +atā'išu I + + + + + + +harmunu I +maštakal I +zēru II +bīnu II +šammu I +kalāma I +annû I +ēm I +rakāsu I +ina I +tabarru I +lawû II +šiptu I +nakkaptu I +ṣabātu I +manû IV, -ma I +ina I +nakkaptu I, -šu I +rakāsu I, -šu I +yašpû I +ša I +uskāru I +kullumu I +muššāru I +sangilmud I +abnu I +parzillu I +maqātu I +šamû I + + +šimbizidû I +luludānītu I +šubû I +arqu I +uqnû I +sāmtu I +abnu I +tašrītu I +sāmu I +abnu I +tašrītu I +ṣalmu I +abnu I +tašrītu I +arqu I +arzallu I +abnu I +ṣerru I +sāmu I +turminû I +turminabandû I + +abnu I +mēsu I +kabūtu I +Šeriš I +šadânu I +ṣābitu I +pappardaliu I +papparmīnu I +abnu I +kalāma I +hašālu I +sâku I +itti I +napšaštu I +u I +ṣimdu I +ša I + +balālu I +nakkaptu I, -šu I +pašāšu I +ṣamādu II +abnu I +kalāma I +annû I +hurāṣu I +ahāzu I +ina I +nakkaptu I, -šu I +rakāsu I, -šu I +šuršu I +baltu I +ša I +eli I +kimahu I +šuršu I +ašāgu I +ša I +eli I +kimahu I +qarnu I +alpu I +ša I +imittu I +qarnu I +urīṣu I +ša I +šumēlu I +zēru II +bīnu II +zēru II +ēru II +azallû I +sebe I +šammu I +ṣimdu I +ša I +šugidimmakku I +nakkaptu I, -šu I +ṣamādu II +burāšu I +kukuru I +imbû I +tiāmtu I +kibrītu I +ru'tītu I +lipiu I +kalītu I +immeru I +iškūru I +balālu I +nakkaptu I, -šu I +ṣamādu II + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +eṣemtu I +awīlūtu I + + + + + + + + + + + + + +kalbu I +ṣalmu I +šārtu I + + + + + + + + + +balālu I +ina I +pēmtu I +qatāru II +ina I +mašku I + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +ka'inimmaku I + +epuštu I +tabarru I +šīpātu I +peṣû I +šer'ānu I +ṣabītu I +ašlu I +zikaru I +ištēniš I +ṭawû I +sebe I +u I +sebe I +kiṣru I +kaṣāru I +ēdu I +imbû I +tiāmtu I +nikiptu II +kibrītu I +ru'tītu I +šuršu I +pillû I +zikaru I +zēru II +bīnu II +qarnu I +ayyalu I +gulgullu I +awīlūtu I +šammu I +annû I +ēm I +rakāsu I +ina I +šīpātu I +sāmu I +lawû II +šiptu I +sebîšu I +manû IV +dāmu I +erēnu I +lapātu I +ina I +nakkaptu I, -šu I +rakāsu I +gulgullu I +awīlūtu I +erēru I +sâku I +ina I +šamnu I +pašāšu I, -šu I +zû I +šahû I +isu I +šahû I +kurītu I +šahû I +gulgullu I +awīlūtu I +uhūlu I, qarnānû I +qarnu I +ayyalu I +nīnû I +zību III +sahliu I +ištēniš I +hašālu I +ina I +lipiu I +alpu I +labīru I +balālu I +ina I +pēmtu I +qatāru II, -šu I +ankinūtu I +elkulla I +imbû I +tiāmtu I +nikiptu II +zēru II +šarmadu I +kibrītu I +mūṣu I +ištēniš I +sâku I +ina I +šamnu I +balālu I +nakkaptu I, -šu I +šaplu II +muhhu I, -šu I +u I +qablu I +muhhu I, -šu I +pašāšu I, -ma I +awīlu I +šū I +balāṭu II + + + + + + + + + + + + + + + + + + + + + +epuštu I +aru I +gišimmaru I +ša I +ištānu I +ša I +ina I +ul I +šāru I +nazāzu I +leqû II +sebîšu I +ana I +imittu I +sebîšu I +ana I +šumēlu I +patālu I +sebe I +u I +sebe I +kiṣru I +kaṣāru I +šiptu I +sebîšu I +manû IV +ina I +nakkaptu I, -šu I +rakāsu I + + + + + + + + + + + + + + + + + + + + + +epuštu I +tabarru I +ṭawû I +sebe I +u I +sebe I +kiṣru I +kaṣāru I +ēm I +kiṣru I + +šakāku I +šiptu I +sebîšu I +manû IV +ina I +nakkaptu I, -šu I +rakāsu I + + + + + + + + + + + + + + + + + + + +gišimmaru I +ša I +ištānu I +ša I +ina I +ul I +šāru I +nazāzu I +leqû II +sebe I +u I + + + +šiptu I +sebîšu I +manû IV +ina I +nakkaptu I, -šu I +rakāsu I + + + +šiptu I + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +šiptu I + + + + + + + + + + + + + + + + + + + +šiptu I + +ina I +muhhu I +paṭīru I + + + + + + + + + + + + + +kânu I +awīlu I + + + + + + + + + + + + + + + + + +šalāšu I +qabû II, -šu I, -ma I + + + + + + + + + + + + +eṣemtu I +awīlu I +kupru I + + + + + + + + + + + + + + + + +dāmu I +erēnu I +lušû I +parakku I + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +epuštu I +ṣurru I +ṣalmu I + + +zikaru I +u I +sinništu I + + + + +šubû I +arqu I + + + +ina I +nakkaptu I, -šu I + + + + + + + + + + + + + + + +epuštu I +ašlu I +zikaru I +šer'ānu I +ṣabītu I +ištēniš I +ṭawû I +sebe I +u I +sebe I +kiṣru I +kaṣāru I +ēm I +kiṣru I +šiptu I +manû IV +hallulāya I +zikaru I +u I +sinništu I + + +eqlu I +naprušu II +itti I +kiṣru I +ina I +tabarru I +lawû II +ina I +nakkaptu I, -šu I +rakāsu I + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +ka'inimmaku I + +epuštu I +šīpātu I +sāmu I +šīpātu I +peṣû I +ištēniš I +ṭawû I +zalāqu I +qarnu I +ayyalu I +abnu I +suluppu I +šakāku I +sebe I +kiṣru I +kaṣāru I +ēm I +kiṣru I +šiptu I +manû IV +ina I +nakkaptu I, -šu I +rakāsu I, -ma I +balāṭu II + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +šina II +ka'inimmaku I + +ina I +muhhu I +takṣīru I +ša I +amīlānu I +manû IV + + + + + + + + + + + + + + + + + + + +ka'inimmaku I + +šiptu I +annû I +ina I +muhhu I +napšaštu I +ina I +uhulgallu I +sebîšu I +manû IV, -ma I +nakkaptu I, -šu I +qablu I +muhhu I, -šu I + + +lapātu I, -ma I +nâhu I + +ka'inimmaku I + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +šīpātu I +peṣû I +ṭawû I +sebe I +u I +sebe I + + + + + + +ina I +qaqqadu I, -šu I +rakāsu I + + + + + + + + + + + + + + + + + + + + + + + + +ka'inimmaku I + + + + + + + + +harmunu I + +šumma I +awīlu I +nakkaptu I +šumēlu I, -šu I + + + +ina I +ūmu I +tiše I +ša I +Ayyāru I +imhur-līm I +imhur-ešrā I +tarmuš I +elkulla I +hašūtu II +ša I +sebe I +qaqqadu I, -ša I +lušû I +bītu I +Marduk I +ina I +šer'ānu I +šalquttu I +šapû IV +ina I +kišādu I, -šu I +šakānu I + +ina I +nakkaptu I, -šu I +rakāsu I, -šu I +šiptu I + + + +manû IV +šumma I +awīlu I +uznu I +imittu I, -šu I +lapātu I, -šu I +šāru I +malû IV +u I +napāhu I +ūmu I + +ūmu I +tiše I +ša I +Abu II +nurmû I +matqu I +ša I +ina I +muhhu I +iṣu I, -ša I +zaqāpu I +mû I, -ša I +aṣû I +šamnu I +ṭābu I +ana I +libbu I +uznu I, -šu I +nadû III +šamnu I +ballukku I +ana I +qaqqadu I, -šu I +nadû III +silqātu I +emmu I +akālu I +šumma I +awīlu I +uznu I +šumēlu I, -šu I +lapātu I +šāru I +malû IV +u I +napāhu I +ūmu I + +ša I +Elūnu I +lipiu I +kurkû I +bašālu I +bahrūtu I, -šu I +ana I +libbu I +uznu I, -šu I +nadû III +šīru I +kurkû I +bašālu I +akālu I +šamnu I +erēnu I +ana I +qaqqadu I, -šu I +nadû III +hibṣu I +ina I +sahliu I +akālu I +šumma I +awīlu I +appu I +imittu I, -šu I +lapātu I, -šu I +ina I +ūmu I +ištēn I +ša I +Simānu II +ubānu I +šumēlu I, -šu I +rabû I +sebe I +pēmtu I +šakānu I +pizalluru I +ša I +ṣēru I +ritkubu I +ina I +muhhu I +appu I, -šu I +hepû II +hīlu I +baluhhu I +ana I +uznu I +šumēlu I, -šu I +šakānu I +šumma I +awīlu I +appu I +šumēlu I, -šu I +lapātu I, -šu I +ina I +ūmu I + +ša I +Du'ūzu I +šūmū I +ina I +muhhu I +hašû IV +tûltu I +ša I +libbu I +qanû I +ina I +muhhu I +appu I, -šu I +hepû II +ubānu I +imittu I, -šu I +sebe I +pēmtu I +šakānu I +hīlu I +baluhhu I +ana I +libbu I +uznu I, -šu I +šakānu I +napšaštu I +takṣīru I +latku I +barû II +ša I +ana I +qātu I +aṣû I +ša I +pû I +apkallu I +labīru I +ša I +lāma I +abūbu I +ša I +ina I + +šattu I +šina II + +šarru I +Isin I + +apkallu I +Nippur I + +lā I +mūdû I +mūdû I +kullumu I +mūdû I +lā I +mūdû I +lā I +kullumu I +ikkibu I +Marduk I +šumma I +awīlu I +qaqqadu I, -šu I +simmu I +matqu I +himṭu I +ṣētu I +malû IV +ṭuppu I +šalāš I +šumma I +awīlu I +muhhu I, -šu I +ummu II +kullu III +ēkallu I +Aššur-bani-apli I +šarru I +kiššatu I +šarru I +mātu I +Aššur I +ša I +Nabu I +u I +Tašmetu I +uznu I +rapšu I +šarāku I, -šum I +ahāzu I +īnu I +nawru I +nisqu I +ṭupšarrūtu I +šumma I +awīlu I +ṣētu I +kašādu I +tību I +nakkaptu I +marāṣu I + + + + + + + +rūšu I +ša I +sippu I +abullu I +leqû II +itti I + + + + + + + +šumma I +awīlu I +šanû I +ummu II +rašû I +ana I +balāṭu II, -šu I +aprušu I +ina I +šamnu I + + + + + + + + +sâku I +ina I +šikaru I +bašālu I +pašāšu I, -šu I + + + + + + + +šumma I +awīlu I +šanû I +akalu I +u I +šikaru I +lā I +lêmu I +ana I +balāṭu II, -šu I + + + + + + + +hīlu I +abukkatu I +šadû I +sâku I +ina I +hīqu I +šikaru I + + + + + + + + + + +šumma I +awīlu I +šanû I +kūṣu I +hurbāšu I +maqātu I, -šum I + + + + + + + + + + + +ana I +utūnu I +sābû I + + + + + + + + + +šumma I +awīlu I +šanû I +ummu II +rašû I + + + + + + + + + + + + + + + +pašāšu I, -šu I + + + + + + + + + + + + + + + + + +šumma I +awīlu I +šanû I + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +ša I +ina I +šarru I +alāku I +mahru II, -ya I +mamman I +šipru I +šūa I +lā I +ahāzu I +bulṭu I +ištu I +muhhu I +adi I +ṣupru I +liqtu I +ahû I +tāhīzu I +naklu I +azugallūtu I +Ninurta I +u I +Gula I +mala I +bašāmu II +ina I +ṭuppu I +šaṭāru II +sanāqu I +barû I, -ma I +ana I +tāmartu I +šasû I, -ya I +qerbu II +ēkallu I, -ya I +kânu I +hašû III + + + + + + + + + + + + + + + +qēmu I +kibtu I +billatu I +našpu I + + + + + + + + + + + + +kukuru I +burāšu I +nikiptu II + + + + + + + + + +murru I +qēmu I +kibtu I + + + + + + + + + + + + + + +kukuru I +burāšu I +nikiptu II +ištēniš I +hašālu I + + + + + +ina I +šikaru I +lâšu I +buhhuru I +qaqqadu I, -šu I + + + + + +kukuru I +burāšu I +nikiptu II +zēru II +kamantu I + + + + + + +ištēniš I +hašālu I +napû II +ina I +šikaru I +rabāku I +qaqqadu I, -šu I + + + + + +aru I +gišimmaru I +ša I +ina I +lā I +šāru I +nazāzu I +leqû II +ina I +ṣētu I +abālu I + + + + + + + + + +aprušu I +sâku I +ina I +šamnu I +balālu I +hīlu I +abukkatu I + + + + +šiptu I + + +išātu I + + + + + +sebîšu I +u I +sebîšu I +ana I +libbu I +manû IV +nakkaptu I, -šu I + + + + +atā'išu I +nikiptu II +ina I +pēmtu I +qatāru II, -šu I +kukuru I +nikiptu II + + +zēru II +kamantu I +imbû I +tiāmtu I +murru I +ištēniš I +sâku I +ina I +išātu I + + + + + + +mūṣu I +nikiptu II +imbû I +tiāmtu I +ru'tītu I +ištēniš I +sâku I +ina I +tabarru I +lawû II +šamnu I +pašāšu I + + + + +rakāsu I +nikiptu II + + + + + +lapātu I + + + + + + + +lipiu I +kalītu I +balālu I +nakkaptu I, -šu I +lapātu I +ešer I +šiqlu I +sahliu I +ešer I +šiqlu I +labtu I +ina I +mû I +kasû II +rabāku I +ṣamādu II +ešer I +šiqlu I +sahliu I +ešer I +šiqlu I +gaṣṣu III +ešer I +šiqlu I +qēmu I +labtu I +ina I +mû I +kasû II +rabāku I +ṣamādu II +šumma I +awīlu I +annû I, labīru I +nakkaptu I +ṣabātu I, -šu I +rūšu I +ša I +išdu I +daltu I +abullu I +ina I +āṣû I, -ka I +ša I +ana I +šumēlu I, -ka I +izuzzu I +leqû II +šārtu I +unīqu I +lā I, petû I +ina I +tabarru I +rakāsu I +ina I +nakkaptu I, -šu I +rakāsu I, -ma I +awīlu I +šū I +balāṭu II +šumma I +awīlu I +annû I, labīru I +nakkaptu I +ṣabātu I, -šu I +aru I +gišimmaru I +ša I +nazāzu I +leqû II +abālu I +hašālu I +napû II +ina I +šikaru I +lâšu I +nakkaptu I, -šu I +ṣamādu II, -ma I +awīlu I +šū I +balāṭu II +šumma I +awīlu I +annû I, labīru I +nakkaptu I +ṣabātu I, -šu I +aru I +gišimmaru I +ša I +nazāzu I +leqû II +ina I +nakkaptu I, -šu I +rakāsu I, -ma I +awīlu I +šū I +balāṭu II +šumma I + + +nakkaptu I +ṣabātu I, -šu I +baltu I +ša I +nazāzu I +leqû II +ina I +itqu I +lawû II +ina I +tabarru I +rakāsu I +ina I +nakkaptu I, -šu I +rakāsu I +awīlu I +šū I +balāṭu II +šumma I +awīlu I +annû I, labīru I +nakkaptu I +ṣabātu I, -šu I +tabarru I +sinništu I +ša I +dāmu I +parāsu I +ṭawû I +šer'ānu I +ṣabītu I +ašlu I +zikaru I +itti I +tabarru I +patālu I +hulālu I +muššāru I +pappardaliu I +ṣurru I +ṣalmu I +rakāsu I +ina I +nakkaptu I, -šu I +rakāsu I +awīlu I +šū I +balāṭu II +šumma I +awīlu I +annû I, labīru I +nakkaptu I +ṣabātu I, -šu I +lašhu I +ṣerru I +ziqtu I +zuqiqīpu I +tabarru I +ašlu I +zikaru I +šer'ānu I +ṣabītu I +ištēniš I +ṭawû I +itqu I +lawû II +ina I +nakkaptu I, -šu I +rakāsu I, -ma I +awīlu I +šū I +balāṭu II +šumma I +awīlu I +annû I, labīru I +nakkaptu I +ṣabātu I, -šu I +ulāpu I, lupputu I +ina I +ṭurru I +itqu I +lawû II +ina I +nakkaptu I, -šu I +rakāsu I, -ma I +awīlu I +šū I +balāṭu II +šumma I +awīlu I +tību I +nakkaptu I +rašû I +u I +rimûtu I +rašû I +aru I +šūšu I +abālu I +hašālu I +napû II +qēmu I +šigūšu I +sahliu I +ṭēnu I +qēmu I +labtu I +ištēniš I +sâku I +ina I +mû I +kasû II +rabāku I +ṣamādu II, -ma I +balāṭu II +šumma I +awīlu I +tību I +nakkaptu I +rašû I +u I +rimûtu I +rašû I +aru I +šunû II +abālu I +hašālu I +napû II +ina I +qēmu I +kibtu I +sahliu I + + + +ina I +ṭābātu I +rabāku I +ṣamādu II, -šu I + + + + + + + + + + + + +hašālu I +napû II +murru I + + + + + + + + + +rabāku I +ṣamādu II + + + + + + + + + + + + + + + + + + + +qēmu I +kibtu I +sahliu I + + + + + + + + + + +balāṭu II + + + + + + + + + + + + + + + + + + + + + + +qanû I +gūru I +qanû I, šalālu II + + + + + + + + + + + + + + + + + + + + + + + +kimahu I +izuzzu I + + + + + +pašāšu I + + + + + + + + + + + + + + + + + + + + +rabāku I +ṣamādu II + + + + + + + + + + + + + + + + + + + + + + + + +šumuttu I +qēmu I +šumma I +awīlu I + + + + + + + + + + + + + + + + + + + + + + + +qēmu I +labtu I + + + + + + + + + + + + + + + + + + + + + + + +šumma I +awīlu I +nakkaptu I + + + + + + + + + + + + + + + + + + + +dadānu I + + + + + + + + + + + + + + + + + + + + + + +šumma I +awīlu I +nakkaptu I +šumēlu I, -šu I + + + + + + + + + + + + + + + +šumuttu I + + + + + + + + + + + + + + + +šumma I +awīlu I +nakkaptu I, -šu I +ṣabātu I, -šu I, -ma I + + + + + + + + + + + + + + + + +kupsu I +šābulu I + + + + + + + + + + + + +šumma I +awīlu I +šer'ānu I +nakkaptu I +imittu I, -šu I + +šurdunû I +qēmu I +kibtu I + +šumma I +awīlu I +šer'ānu I +nakkaptu I +šumēlu I, -šu I + +šurdunû I + +šumma I +awīlu I +šer'ānu I +nakkaptu I +imittu I, -šu I + + + + + + + + + + + + + + + + + + +lišānu I +kalbu I +ina I + + + + + + + + + + + + + + + + + + + +šumma I +awīlu I +šer'ānu I +nakkaptu I + + + + + + + + + + + + + +šumma I +awīlu I +šer'ānu I +nakkaptu I + + + + + + + + + + + + + + + + + +sahliu I + + + + + + + + + + + + + + + + + + +šumma I +awīlu I + + +ṣamādu II, -ma I + +šumma I +awīlu I + +šumma I + +šumma I +ašru III, šanû I + + +suluppu I +sāmu I + + +šumma I +awīlu I +šer'ānu I +nakkaptu I, -šu I +tebû I + +šakirû I +lišānu I +kalbu I + +šammu I +peṣû I +lurpiānu I +gaṣṣu III + +ashar I + +šumma I +ašru III, šanû I +sīku I +ašgigû I + +šumma I +ašru III, šanû I +aru I +bīnu II +arqūtu I, -šu I + +ana I +libbu I +išqillatu I + + + +šumma I +awīlu I +ina I +ṣabātu I +eṭemmu I +nakkaptu I, -šu I + +šer'ānu I +īnu I, -šu I + + +mūṣu I + + +abnu I +parzillu I + + +šiptu I + + + +šumma I +awīlu I +nakkaptu I, -šu I +ṣabātu I, -šu I, -ma I + +ištēniš I +sâku I + + + + + +imhur-līm I +tarmuš I + + + + + + + + + + +šīpātu I +peṣû I +ašlu I +zikaru I +ṭawû I +šiptu I + + + + + + + + + +rihûtu I +awīlūtu I +nakkaptu I, -šu I + + + + + +nikiptu II +ištēniš I +sâku I +ina I +šamnu I +erēnu I +balālu I +pašāšu I, -ma I +balāṭu II +šumma I +awīlu I + +labiānu I +akālu I, -šu I +šugidimmakku I +sīhu II + + + + +barīrātu I +qanû I, šalālu II +hašālu I +napû II +ina I +mû I +kasû II + + + + +šumma I +awīlu I + +ištu I +erbu II, šamšu I +adi I +šāt urri I +akālu I, -šu I + + + +šumma I +awīlu I + +libbu I +libbu I +šasû I +šugidimmakku I +šanû I + + + + +šumma I +awīlu I + +magal I +arû III +mayyālu I +lā I +našû II +mâtu I +šumma I +awīlu I + +magal I + + + +šer'ānu I +nakkaptu I, -šu I +magal I +tebû I + + + + + + +annû I + + + + + + + + + + + + + + +šumma I +sankidabbû I +šugidimmakku I +ina I +zumru I +awīlu I +izuzzu I +lā I +paṭāru I +ṭuppu I +šina II +šumma I +awīlu I +muhhu I, -šu I +ummu II +kullu III +ēkallu I +Aššur-bani-apli I +šarru I +kiššatu I +šarru I +mātu I +Aššur I +ša I +Nabu I +Tašmetu I +uznu I +rapšu I +šarāku I, -šum I +ahāzu I +īnu I +nawru I +nisqu I +ṭupšarrūtu I +ša I +ina I +šarru I +alāku I +mahru II, -ya I +mamman I +šipru I +šuāti I +lā I +ahāzu I +bulṭu I +ištu I +muhhu I +adi I +ṣupru I +liqtu I +ahû I +tāhīzu I +naklu I +azugallūtu I +Ninurta I +u I +Gula I +mala I +bašāmu II +ina I +ṭuppu I +šaṭāru II +sanāqu I +barû I +ana I +tāmartu I +šasû I +qerbu II +ēkallu I, -ya I +kânu I +šumma I +awīlu I +rēšu I +libbu I, -šu I +akālu I, -šum I +ina I +gešû I, -šu I +martu I + +awīlu I +šū I +qerbēnu I +marāṣu I +šūmū I +karašu I +šīru I +alpu I +šīru I +šahû I +šikaru I +sābû I +lā I +mahāru I +ana I +balāṭu II, -šu I + +qû II +sahliu I + +qû II +burāšu I + +qû II +kukuru I + +qû II +zēru II +kitû I + +qû II +pappāsu I +buqlu I + +qû II +suādu I + +qû II +zēru II +qudru I + +qû II +kasû II + +qû II +šunû II + +qû II +kiššanu I + +qû II +pappāsītu I + +qû II +šammu I +ašû I + +qû II +nīnû I + +qû II +zû I +summatu I + +qû II +zēru II +kamantu I + +qû II +erištu II +eqlu I +ešer I + +hīlu I +baluhhu I +ešer I + +imbû I +tiāmtu I +ištēn I +qû II +qēmu I +kibtu I +ištēn I +qû II +suluppu I +ištēn I +qû II +billatu I +našpu I +ištēn I +qû II +isqūqu I +ištēniš I +hašālu I +napû II +ina I +šikaru I +kīma I +rabīku I +rabāku I +ina I +ṣubātu I +ṭerû I +šuluštu I +tiše I +ūmu I +ṣamādu II +ina I +erbe I +ūmu I +paṭāru I +amāru I +šumma I +bubutu I +peṣû I +libbu I, -šu I +pašāhu I +šumma I +bubutu I +sāmu I +libbu I, -šu I +ummu II +kullu III +šumma I +bubutu I +arqu I +ṣētu I +kašādu I +târu I, -šum I +šumma I +bubutu I +ṣalmu I +marāṣu I, -šu I, -ma I +lā I +balāṭu II +ana I +bubutu I +belû II +kirbānu I +eqlu I +qadūtu I +ša I +ṣētu I +dekû II +hašālu I +napû II +ina I +mû I +kasû II +lâšu I +ṣamādu II +arki I, -šu I +sahliu I +ina I +šikaru I +šatû II +inūma I +šatû II +ina I +mû I +šunû II +bīnu II +aktam I +maštakal I +rahāṣu I +šumma I +awīlu I +martu I +marāṣu I +šūmū I +sâku I +ina I +mû I +lā I +patānu I +šatû II +ṭābātu I +dannu I +šiqqu I +kasû II +kabru I +šatû II +hīqu I +šatû II +arû III, -šu I +kasû II +sâku I +ina I +mû I +šatû II +ṭabtu I +sâku I +ina I +mû I +lā I +patānu I +šatû II +ṭabtu I +sâku I +ina I +šikaru I +lā I +patānu I +šatû II +hīlu I +abukkatu I +hašālu I +ana I +libbu I +hīqu I +nadû III +ina I +kakkabu I +biātu I +ina I +šēru II +dišpu I +šamnu I +halṣu I +ana I +libbu I +nadû III +šatû II, -ma I +arû III +zēru II +kūru III +sâku I +ina I +šikaru I +šatû II +namruqqu I +sâku I +ina I +šikaru I +šatû II +šammu I +ēdu I +šammu I +martu I +ina I +šikaru I +šatû II +šammu I +merginānu I +šammu I +martu I +ina I +šikaru I +šatû II +kasû II +šammu I +martu I +ina I +šikaru I +šatû II +šammu I +burāšu I +šammu I +martu I +ina I +šikaru I +šatû II +šammu I +nuhurtu I +šammu I +martu I +ina I +šikaru I +šatû II +šammu I +qilpu I +šūšu I +šammu I +martu I +ina I +šikaru I +šatû II +aru I +allānu I +šammu I +martu I +ina I +šikaru I +šatû II +šammu I +rikibtu I +argabu I +šammu I +martu I +ina I +šikaru I +šatû II +šammu I +kirbānu I +ṭabtu I +šammu I +martu I +ina I +šikaru I +šatû II +šammu I +šūmū I +šammu I +martu I +ina I +šikaru I +šatû II +šammu I +šuršu I +pillû I +zikaru I +šammu I +martu I +sâku I +ina I +šikaru I +šatû II +šammu I +šuršu I +šūšu I +šammu I +martu I +ina I +šamnu I +u I +šikaru I +šatû II +šammu I +ṣibaru I +šammu I +martu I +sâku I +ina I +mû I +šatû II +šumma I +awīlu I +lā I +patānu I +libbu I, -šu I +ana I +parû IV +elû III +ru'tu I +magal I +nadû III +mû I +ina I +pû I, -šu I +masdaru I, -iš I +alāku I +pānu I, -šu I +ṣâdu I +qerbu II, -šu I +napāhu I +qablu I, -šu I +kimṣu I, -šu I +lapātu I, -šum I +emmu I +kaṣû I +zūtu I +rašû I +akalu I +u I +šikaru I +maṭû II +mû I +kaṣû I +magal I +šatû II +parû IV +ina I +šuburru I, -šu I +išaru II, -šu I +arqu I +tabāku I +zīmu I, -šu I +enû III +šīru I, -šu I +tabāku I +mimma I +akālu I, -ma I +eli I, -šu I +ul I +ṭiābu I +awīlu I +šū I +martu I +sahāpu I, -šu I +ana I +balāṭu II, -šu I +kukuru I +burāšu I +ṣumlalû I +šalāš I +šammu I +annû I +arqūtu I, -šunu I +leqû II +abālu I +sâku I +ina I +karānu I +dannu I +lā I +patānu I +šaqû III, -šu I +ešēru I, -ma I +rēšu I +libbu I, -šu I +libbu I, -šu I +ṣamādu II +bahru I +akālu I +bahru I +šatû II +šalāš I, ūmu I +ešēru I, -ma I +balāṭu II +šumma I +ašru III, šanû I +arariānu I +sâku I +ina I +šikaru I +lā I +patānu I +šaqû III, -šu I + + + +šumma I +ašru III, šanû I +sahlânu I +sâku I +ina I +karānu I +dannu I +lā I +patānu I +šaqû III, -šu I +ašru III, šanû I +šumma I +ašru III, šanû I +ṣibaru I +sâku I +ina I +šizbu I +matqu I +šaqû III, -šu I +ašru III, šanû I +šumma I +ašru III, šanû I +habbūru I +errû I +sâku I +ina I +karānu I +dišpu I +u I +šamnu I +halṣu I +šaqû III, -šu I +ašru III, šanû I +šumma I +ašru III, šanû I +šammu I +uppulu I +ša I +šadû I +ina I +karānu I +dišpu I +u I +šamnu I +halṣu I +šaqû III, -šu I +ašru III, šanû I +šumma I +awīlu I +akalu I +akālu I +šikaru I +šatû II, -ma I +napāqu I +u I +pānu I, -šu I +ṣâdu I +awīlu I +šū I +murṣu I +martu I +marāṣu I +ana I +balāṭu II, -šu I +errû I +qalû II +ša I +ištānu I +ina I +mû I +mesû II +baluhhu I +salātu II +nuhurtu I +bêru I +šalāš I +šammu I +annû I +ina I +šikaru I +rēštû I +kī I +pû I +malmališ I +ramāku I +ana I +mahru II +Enzu I +šakānu I +uṣurtu I +lawû II +ina I +šēru II +šâšunu I +šahālu I +lā I +patānu I +šatû II, -ma I +lapātu I, -šu I, -ma I +salā'u I +lā I +nakādu I +balāṭu II +ina I +ūmu I +mitgāru I +šaqû III, -šu I + + + + + + + + + + + + +urnû I +ballukku I +atā'išu I +karānu I +šēlebu I + + +ina I +šalāš I +qû II +šikaru I +ina I +tangussu I +bašālu I +adi I +ana I +šina II +qû II +târu I +kasāsu I + + +ana I +pānu I +nadû III +pānu I +mû I +kasû II +šahātu IV +arki I, -šu I +annû I +ana I +šuburru I, -šu I +šapāku I +šumma I +ašru III, šanû I +errû I +abālu I +hašālu I +napû II +itti I +isqūqu I +balālu I +ina I +mû I +kasû II +rabāku I +ina I +mašku I +ṭerû I +ṣamādu II +šumma I +awīlu I +ina I +tību I, -šu I +qaqqadu I, -šu I +ana I +mahru II, -šu I +šadādu I, -šu I +kišādu I, -šu I +qablu I, -šu I +kimṣu I, -šu I +šēpu I, -šu I +akālu I, -šu I +libbu I, -šu I +âšu I +libbu I, -šu I +ana I +parû IV +elû III +pānu I, -šu I +ṣâdu I, -šum I +awīlu I +šū I +martu I +ṣabātu I, -šu I +ana I +balāṭu II, -šu I +erēnu I +šurmēnu I +asu I +qanû I +ṭiābu I +uhūlu I +qarnānû I +suādu I +ṭabtu I +mēsallu I +ina I +šikaru I +rabāku I +ina I +tinūru I +sekēru II +ana I +šuburru I, -šu I +šapāku I +nuhurtu I +burāšu I +abnu I +suluppu I +ina I +urṣu I +ištēniš I +ṭênu I +ina I +lipiu I +balālu I +allānu I +epēšu II +šamnu I +salāhu I +ana I +šuburru I, -šu I +šakānu I +šumma I +awīlu I +irtu I, -šu I +u I +šašallu I, -šu I +emēmu I +šinnu I, -šu I +hiālu I +epēšu I +pû I, -šu I +kabātu I +awīlu I +šū I +martu I +marāṣu I +ana I +balāṭu II, -šu I +kukuru I +burāšu I +ṣumlalû I +ṭabtu I +hīlu I +abukkatu I +uriyānu I +šammu I +peṣû I +būšānu I +aktam I +hûratu I +atā'išu I +rikibtu I +argabu I +šinšeret I +šammu I +annû I +ištēniš I +ina I +šikaru I +balu I +patānu I +šatû II, -ma I +arû III +sahliu I +nīnû I +kammu II +hīlu I +abukkatu I +baluhhu I +burāšu I +kukuru I +hīlu I +baluhhu I +zēru II +nuhurtu I +qēmu I +nuhurtu I +urnû I +balṭūtu I, -šunu I +ina I +šikaru I +šatû II, -ma I +arû III + + + +atā'išu I +nuhurtu I +hašû III +murru I +hīlu I +abukkatu I +šadû I +ru'tītu I + + +šammu I +balāṭu I +kamūnu I + + +nīnû I +sahliu I +kasû II +sebêšer I +šammu I +annû I +ašru III +šanû I +hīlu I +abukkatu I +šammu I +peṣû I +rikibtu I +argabu I +aktam I + + + +baluhhu I + + +ina I +šikaru I +šatû II, -ma I +arû III +atā'išu I +hīlu I +abukkatu I +šammu I +peṣû I + +šatû II, -ma I +arû III +qanû I +ṭābu I +ballukku I +kasû II +šammu I +peṣû I + + +ina I +išātu I +bašālu I +šatû II, -ma I +arû III +urnû I +šumuttu I +šibburratu I + + + +nīnû I +suādu I +qanû I +ṭābu I +andahšu I + + + +šammu I +annû I +ina I +šikaru I +šatû II, -ma I +arû III +qanû I +ṭābu I +aru I + +baluhhu I +šammu I +balāṭu I +suluppu I + +ina I +kakkabu I +biātu I +ina I +šēru II +lā I +patānu I +šatû II, -ma I +arû III + + + + + +hīlu I +abukkatu I +sebe I +šammu I +annû I +ina I +šikaru I +šatû II, -ma I +arû III + + +atā'išu I +kukuru I +uhūlu I +qarnānû I +ṭabtu I +imhur-līm I +imhur-ešrā I +tarmuš I +nīnû I +gabû I +aktam I +hašû III + +šammu I +annû I +ištēniš I +sâku I +ina I +šikaru I +šatû II, -ma I +arû III + +ešer I +šiqlu I +sahlânu I +ešer I +šiqlu I +šiqqu I +ešer I +šiqlu I +ṭābātu I +dannu I +ešer I +šiqlu I +šikaru I +ešer I +šiqlu I + + +ešer I +šiqlu I +hašû III +ištēn I +šiqlu I +šūmū I + +šiqlu I +ṭabtu I + +šiqlu I +kasû II +emēdu I +ina I +kakkabu I +biātu I +ina I +šēru II + +ina I +pû I, -šu I +u I +šuburru I, -šu I +ešēru I, -ma I +balāṭu II + + + +mû I +šīru I +kabru I +šatû II, -ma I +nêšu I +šumma I +awīlu I +ūlū I +martu I +lū I +ahhāzu I +ūlū I +awurriqānu I +ṣabātu I, -šu I +urnû I +atā'išu I +karānu I +šēlebu I +burāšu I +ballukku I +šalāš I +qû II +šikaru I +ina I +tangussu I +bašālu I +šahālu I +šamnu I +ana I +mahru II + +patrānu I + +arihu I + +ṣaṣumtu I +sissinnu I +libbu I + + +errû I + + +būšānu I +tarmuš I +nuhurtu I + +habbūru I +lišānu I +kalbu I +habbūru I +burāšu I +habbūru I +ṣumlalû I +sahliu I + +habbūru I +errû I +sahlânu I +sâku I +ina I +karānu I + +šumma I +awīlu I +martu I +qidhu I +lubādu I +marāṣu I +ana I +balāṭu II, -šu I + +tarmuš I +imhur-līm I +baluhhu I +nīnû I +hīlu I + +šumma I +awīlu I +ašû I +pāšittu I +u I +lubādu I +marāṣu I + +nīnû I +werû I +labīru I +sebe I +šammu I +annû I +ištēniš I + +šumma I +awīlu I +martu I +ṣabātu I, -šu I +nīnû I +lā I +patānu I +ahennâ I + +ina I +šikaru I +šatû II, -ma I +šikaru I +ruqqu II +šatû II + +ana I +ašû I +pāšittu I +u I +lubādu I +nasāhu I +šammu I +peṣû I +hīlu I +abukkatu I + +šumma I +awīlu I +pāšittu I +ṣabātu I, -šu I +kukuru I +hašû III +atā'išu I +nīnû I + + +hīlu I +abukkatu I +nuhurtu I +kammu II +ša I +aškāpu I +kirbānu I +eqlu I + + +-ma I +arû III +hašû III +nuhurtu I +hīlu I +abukkatu I +burāšu I +kukuru I +hamiš I +šammu I + +pašāšu I +aktam I +atā'išu I +uhūlu I +qarnānû I +kukuru I +burāšu I +hīlu I +abukkatu I +ṭabtu I + +samāne I +šammu I +šatû II +išariš I +ešēru I +šumma I +awīlu I +sankidabbû I +rašû I +ašû I +pāšittu I +u I +lubādu I +marāṣu I +ana I +balāṭu II, -šu I +hamiššeret I +šiqlu I +kukuru I +hamiššeret I +šiqlu I +urnû I +hamiššeret I +šiqlu I +atā'išu I +ištēniš I +hašālu I +napû II +ina I +šamnu I +šikaru I +rēštû I +šahānu I +ana I +šuburru I, -šu I +šapāku I +ana I +šebû II +šaqû III, -šu I +šumma I +awīlu I +lā I +patānu I +rēšu I +libbu I, -šu I +kaṣāṣu I, -šu I +emmu I +libbu I +rašû I +ina I +gešû I, -šu I +martu I +arû III +awīlu I +šū I +pāšittu I +tugānu I +marāṣu I +ana I +balāṭu II, -šu I +kukuru I +burāšu I +hīlu I +abukkatu I +aktam I +atā'išu I +ṭabtu I +uhūlu I +qarnānû I +balṭūtu I, -šunu I +ina I +šikaru I +rēštû I +ramāku I +ina I +kakkabu I +biātu I +ina I +šēru II +lā I +patānu I +šahālu I +šatû II, -ma I +arû III, -šu I, -ma I +balāṭu II +šumma I +awīlu I +martu I +marāṣu I + + + + + +šiptu I +martu I +eṭlu I +martu I +eṭlu I + + + +ūru II +eṭlu I +e'ēlu I +ša I +Lili I + + + + + +gurušgaraš I +ša I +šahû I + + + + + +ezēbu I + + + + + +ka'inimmaku I + +šiptu I + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +šiptu I +martu I +martu I +martu I +pāšittu I, -ma I +martu I +kīma I +igirû I +arqu I +alāku I +alaktu I +izuzzu I +ina I +gisallû I +ša I +dūru I +dagālu I +ākilu I +akalu I +dagālu I +šatû II +kurunu I +kī I +akālu I +akalu I +kī I +šatû II +kurunu I +maqātu I, -am I, -kunūši I, -ma I +gešû I +kī I +alpu I +tû I +šiptu I +šiptu I +enzu I +arāqu I +arāqu I +māru I, -ša I +arāqu I +rē'û I, -ša I +arāqu I +nāqidu I, -ša I +ina I +īku I +arqu I +šammu I +arqu I +akālu I +ina I +atappu I +arqu I +mû I +arqu I +šatû II +nasāku I, -šim I +haṭṭu II +ul I +târu I +pānu I, -ša I +nasāku I, -šim I +kirbānu I +ul I +šaqû II +rēšu I, -ša I +nasāku I, -ši I +pillû I +hašû III +u I +ṭabtu I +martu I +kīma I +imbaru I +ana I +šahāhu I +tebû I +šiptu I +ul I +yā'u I +šiptu I +Ea I +u I +Asalluhi I +šiptu I +Damu I +u I +Gula I +tû I +šiptu I +ka'inimmaku I +ša I +pāšittu I +epuštu I, -šu I + + + + +kasû II +bappiru I +ištēniš I +mahāṣu I +šiptu I + + +manû IV + + + + +balāṭu II +šiptu I + + + + + + +Ea I + + +paṭāru I +šiptu I +kikiṭṭû I, -šu I + +u I +ṭabtu I +nuhurtu I +nadû III +ana I +libbu I +šiptu I +manû IV + +lā I +patānu I +šatû II, -ma I +nêšu I +ka'inimmaku I +martu I +rabiat I +hīlu I +abukkatu I +sâku I +ina I +mû I +šaqû III, -šu I + +aru I +kūru III +sâku I +ina I +hamiš I +šiqlu I +šamnu I +u I +šikaru I +šaqû III, -šu I + +namruqqu I +ina I +ešer I +šiqlu I +šamnu I +u I +šikaru I +šaqû III, -šu I +hamiššeret I +uṭṭatu I +imhur-līm I +ina I + +qû II +šamnu I +u I +šikaru I +šaqû III, -šu I + +sissinnu I +libbu I +ina I +ešer I +šiqlu I +mû I +šaqû III, -šu I +rabiat I +šammu I +matqu I +ina I +ešer I +šiqlu I +mû I +šaqû III, -šu I +rabiat I +šammu I +balāṭu I +ina I +ešer I +šiqlu I +šamnu I +šaqû III, -šu I + +šiqlu I +arariānu I +ina I +ešer I +šiqlu I +mû I +šaqû III, -šu I +rabiat I +imhur-ešrā I +ina I +ešer I +šiqlu I +mû I +šaqû III, -šu I +rabiat I +merginānu I +ina I +ešer I +šiqlu I +šikaru I +šaqû III, -šu I +šumma I +awīlu I +martu I +ṣabātu I, -šu I +kasû II +sâku I +ina I +šikaru I +šatû II, -ma I +arû III +šumma I +ašru III, šanû I +hīqu I +šikaru I +šatû II, -ma I +arû III +šumma I +ašru III, šanû I +hīqu I +ṭābātu I +dannu I +šatû II, -ma I +arû III +šumma I +ašru III, šanû I +burāšu I +sâku I +ina I +šikaru I +šatû II, -ma I +arû III +šumma I +ašru III, šanû I +merginānu I +sâku I +ina I +mû I +šatû II, -ma I +arû III +šumma I +ašru III, šanû I +imhur-līm I +sâku I +ina I +šikaru I +šatû II, -ma I +arû III +šumma I +ašru III, šanû I +ṭabtu I +ūlū I +ina I +mû I +ūlū I +ina I +šikaru I +šatû II, -ma I +arû III +šumma I +ašru III, šanû I +šūmū I +sâku I +ina I +mû I +šatû II, -ma I +arû III +šumma I +ašru III, šanû I +hīlu I +abukkatu I +sâku I +ina I +mû I +šatû II, -ma I +arû III +šumma I +ašru III, šanû I +hīlu I +abukkatu I +sâku I +ina I +mû I +ramāku I +ina I +kakkabu I +biātu I +šatû II, -ma I +arû III +šumma I +ašru III, šanû I +errû I +baluhhu I +hašû III +ina I +šamnu I +ina I +kakkabu I +biātu I +šatû II, -ma I +arû III +šumma I +ašru III, šanû I +nuhurtu I +šūmū I +ahennâ I +sâku I +ina I +šikaru I +šatû II, -ma I +arû III +šumma I +awīlu I +awurriqānu I +marāṣu I, -ma I +murṣu I, -šu I +ana I +libbu I +īnu I, -šu I +elû III +libbu I +īnu I, -šu I +qû I +arqu I +edēhu I +qerbu II, -šu I +našû II +akalu I +u I +šikaru I +târu I +awīlu I +šū I +šāru I +kalû II +marāṣu I +zabālu I, -ma I +mâtu I +šumma I +awīlu I +awurriqānu I +marāṣu I, -ma I +qaqqadu I, -šu I +pānu I, -šu I +kalû II +pagru I +išdu I +lišānu I, -šu I +ṣabātu I +šipru I, -šu I +labāru I, -ma I +mâtu I +šumma I +awīlu I +zumru I, -šu I +arāqu I +pānu I, -šu I +arāqu I +šihhatu I +šīru I +rašû I +awurriqānu I +šumu I, -šu I +burāšu I +sâku I +ina I +šikaru I +šatû II +kikkirânu I +sâku I +ina I +šikaru I +šatû II +murru I +sâku I +ina I +šikaru I +šatû II +šuršu I +pillû I +zikaru I +ša I +ištānu I +ša I +inbu I +lā I +našû II +sâku I +ina I +šikaru I +šatû II +murrānu I +šadû I +sâku I +ina I +šikaru I +šatû II +kurkanû I +sâku I +ina I +šikaru I +šatû II +imhur-līm I +sâku I +ina I +šikaru I +šatû II +namruqqu I +sâku I +ina I +šikaru I +šatû II +namruqqu I +sâku I +ina I +mû I +šatû II +gabû I +sâku I +ana I +mû I +nadû III +sâku I +šatû II +burāšu I +sâku I +ina I +šizbu I +šatû II +kikkirânu I +sâku I +ina I +šizbu I +šatû II +murru I +sâku I +ina I +šizbu I +šatû II +namruqqu I +sâku I +ina I +šizbu I +šatû II +hamiš I +uṭṭatu I +sīku I +anzahhu I +ina I +šikaru I +nadû III +ina I +kakkabu I +biātu I +sâku I +šatû II +kalû IV +sâku I +ina I +šamnu I +erēnu I +u I +šikaru I +šatû II +zēru II +bīnu II +šumuttu I +sâku I +ina I +šikaru I +šatû II +zēru II +bīnu II +sâku I +ina I +šikaru I +šatû II +zēru II +bīnu II +sâku I +ina I +šamnu I +u I +šikaru I +šatû II +šuršu I +šūšu I +sâku I +šanû I +imhur-ešrā I +sâku I +ina I +šikaru I +šatû II +šuršu I +ēru II +šuršu I +nurmû I +ina I +tinūru I +sekēru II +mû I, -šunūti I +sâku I +kaṣû III +šatû II, -ma I +nêšu I +aṣuṣitu I +anunūtu I +ina I +qutrēnu I +qatāru II, -šu I +dāmu I +ayyāṣu I +ša I +ina I +ašlu I +izuzzu I +mahāru I +ina I +šamnu I +pašāšu I +šamnu I +labīru I +sippu I +abullu I +kilallān I +leqû II +ina I +šamnu I +pašāšu I +gerru I +nadû III +aṣû I +ešēru I +titūru I +nadû III +etēqu I +haṭṭu II +rē'û I +sāmu I +sâku I +ina I +šikaru I +šatû II +kukuru I +sâku I +ina I +šikaru I +šatû II +inbu I +kazīru I +sâku I +ina I +šikaru I +šatû II +hašû III +sâku I +ina I +šikaru I +šatû II +zumru I +nurmû I +sâku I +ina I +šikaru I +šatû II + + + + + + + + +šuršu I +lišānu I +kalbu I +sâku I +ina I +šikaru I +šatû II +šuššu I + +imhur-ešrā I +qutru I +sâku I +ina I +šamnu I +u I +šikaru I +šatû II +aru I +nurmû I + +šumma I +awīlu I +awurriqānu I +malû IV +šuršu I +šūšu I + + + + +ina I +kakkabu I +biātu I +šatû II +humbabītu I + +šuršu I +nurmû I +ša I +ištānu I + +šumma I +ina I + + +qilpu I +nurmû I + +sahliu I + + + + + + + +šumma I +awīlu I +īnu I +arqu I +malû IV + +tabālu I +lipiu I +errû I + +pizalluru I + + + + + +šumma I +šanû I + + +ina I +lipiu I +errû I +sâku I +ina I +šikaru I +šatû II +šumma I +šanû I +šīru I +alpu I +kabru I +akālu I + +lā I +mahāru I +šumma I +šanû I +zû I +awīlūtu I +murru I +ina I +šamnu I +u I +šikaru I +šatû II +šumma I +šanû I +ummu I +mû I +abālu I +sâku I +ina I +šamnu I +u I +šikaru I +sābû I +šatû II, -ma I +arû III +šumma I +šanû I +aktam I +hīlu I +abukkatu I +šammu I +peṣû I +ina I +šamnu I +u I +šikaru I +šatû II +šumma I +šanû I +lipiu I +errû I +ina I +šikaru I +šatû II +šumma I +šanû I +murru I +zēru II +burāšu I +gabû I +sâku I +ina I +šamnu I +u I +šikaru I +šatû II +šumma I +šanû I +šawiru I +hurāṣu I +ruššû I +ina I +qātu I, -šu I +šakānu I +šumma I +awīlu I +īnu I, -šu I +awurriqānu I +aru I +nurmû I +sâku I +ina I +takkussu I +ana I +libbu I +īnu I, -šu I +napāhu I +šumma I +awīlu I +īnu I, -šu I +awurriqānu I +pānu I, -šu I +šīru I, -šu I +malû IV +sebe I +pizalluru I +ritkubu I + + + + +leqû II +qalāpu I +ina I +urṣu I +sâku I +ina I +billatu I +balālu I +akālu I, -ma I +nêšu I + + + + +sahliu I +labtu I +ṣamādu II, -šu I +u I +billatu I +balālu I +akālu I, -ma I +nêšu I + + + + + +ina I +šamnu I +u I +šikaru I +šatû II, -ma I +nêšu I + + + +šišītu I + +ina I +šikaru I +šaqû III, -šu I + + +qalāpu I + + +šaqû III, -šu I +šumma I +awīlu I +īnu I, -šu I +awurriqānu I +malû IV +kirbānu I +eqlu I +sâku I +ina I +šikaru I +šatû II +annuharu I +sâku I +ina I +šikaru I + + + +sâku I +ina I +šikaru I +haṣbu III +pelû II +lurmu I +sâku I +ina I +šikaru I +hurāṣu I +ina I +šīpātu I +sāmu I +ina I +qātu I, -šu I +kaṣāru I +šumma I +ašru III, šanû I + +šakirû I +šammu I +sāmu I +ašqulālu I +hašālu I +mû I, -šu I +ṣahātu I +ina I +šikaru I +šatû II, -ma I +nêšu I +šumma I +ašru III, šanû I +kasû II +rikibtu I +argabu I +šammu I +peṣû I +ina I +himētu I +sâku I +īnu I, -šu I +eqû I +šišītu I +nasāhu I +šumma I +awīlu I +zumru I, -šu I +arāqu I +hamiš I +uṭṭatu I +anzahhu I +sâku I +ina I +šamnu I +u I +šikaru I +šaqû III, -šu I +mâdu I, -ma I +mâtu I +šumma I +awīlu I +īnu I, -šu I +awurriqānu I +malû IV +būšānu I +sâku I +ina I +šikaru I +šatû II, -ma I +nêšu I +šumma I +šanû I +šuršu I +šūšu I +abālu I +sâku I +ina I +šikaru I +rasānu I +mahru II +šamšu I +šatû II, -ma I +nêšu I +šumma I +šuršu I +lišānu I +kalbu I +abālu I +sâku I +ina I +šikaru I +rasānu I +šatû II, -ma I +nêšu I +šumma I +annuharu I +sâku I +ina I +šikaru I +šatû II, -ma I +nêšu I +šumma I +pelû II +lurmu I +sâku I +ina I +šikaru I +šatû II, -ma I +nêšu I +šumma I +šuršu I +nurmû I +sâku I +ina I +šikaru I +ina I +kakkabu I +biātu I +ina I +šēru II +šaqû III, -šu I +šumma I +zēru II +kūru III +sâku I +ina I +šikaru I +ina I +kakkabu I +biātu I +ina I +šēru II +šaqû III, -šu I +šumma I +karānu I +šēlebu I +sâku I +ina I +šikaru I +šaqû III, -šu I +šumma I +nuhurtu I +sâku I +ina I +šikaru I +šaqû III, -šu I +šumma I +šuršu I +pillû I +sâku I +ina I +šikaru I +šaqû III, -šu I +šumma I +hīlu I +abukkatu I +sâku I +ina I +šikaru I +šaqû III, -šu I +šumma I +pizalluru I +rabû I +sâku I +ina I +šikaru I +u I +šamnu I +šaqû III, -šu I +šumma I +awīlu I +zumru I, -šu I +arāqu I +īnu I, -šu I +arāqu I +u I +ṣalāmu I +išdu I +lišānu I, -šu I +ṣalāmu I +ahhāzu I +šumu I, -šu I +pizalluru I +rabû II +ša I +ṣēru I +sâku I +ina I +šikaru I +šatû II +ahhāzu I +ša I +libbu I, -šu I +ešēru I, -am I +šumma I +awīlu I +ahhāzu I +malû IV +burāšu I +sâku I +ina I +šikaru I +šatû II +kikkirânu I +peṣû I +gabû I +sâku I +ina I +šamnu I +u I +šikaru I +šatû II, -ma I +nêšu I +kukuru I +sâku I +ina I +šikaru I +šatû II +hašû III +sâku I +ina I +šikaru I +šatû II +šuršu I +kūru III +sâku I +ina I +mû I +šatû II +murru I +sâku I +ina I +šizbu I +šatû II +šumma I +awīlu I +ahhāzu I +malû IV +šuršu I +šūšu I +sâku I +ina I +šikaru I +ramāku I +ina I +kakkabu I +biātu I +šatû II +šumma I +awīlu I +ahhāzu I +malû IV +aṣuṣitu I +anunūtu I +ina I +qutrēnu I +qatāru II, -šu I +u I +dāmu I +anduhallatu I +pašāšu I, -šu I, -ma I +nêšu I +rūšu I +ša I +sippu I +abullu I +kilallān I +leqû II +ana I +šamnu I +nadû III +pašāšu I +gerru I +nadû III +aṣû I +ešēru I +titūru I +nadû III + + + + +šumma I +awīlu I +ahhāzu I +ṣabātu I, -šu I +šuršu I +pillû I +zikaru I +ša I +mahru II +ištānu I +leqû II +ina I +šikaru I +šatû II +hašû III + + + + +kurkanû I +sâku I +ina I +šikaru I +kikkirânu I +peṣû I +sâku I +ina I +šikaru I +šatû II +imhur-līm I +imhur-ešrā I +ina I +šikaru I +šuršu I + + + + + +šumma I +awīlu I +šanû I +awurriqānu I +burāšu I +murru I +sâku I +ina I +šikaru I +lā I +patānu I +šatû II +šumma I +awīlu I +šanû I +gabû I +qitmu I +ištēniš I +ina I +šikaru I +rasānu I +zakû II + + + + +šumma I +awīlu I +šanû I +hamiššeret I +uṭṭatu I +anzahhu I +sâku I +ina I +šikaru I +rasānu I +zakû II +šamnu I +halṣu I +ana I +libbu I +nadû III +lā I +patānu I +šatû II +šumma I +awīlu I +šanû I +kalû IV +sâku I +ina I +šamnu I +u I +šikaru I +šatû II +zēru II +bīnu II +ina I +šikaru I +šatû II +zēru II +bīnu II + + + + +zēru II +bīnu II +sâku I +ina I +šamnu I +u I +šikaru I +šatû II +šuršu I +šūšu I +ina I +šamnu I +u I +šikaru I +šatû II +imhur-ešrā I +sâku I +ina I +šikaru I + +šumma I +šanû I +šuršu I +šūšu I +šuršu I +nurmû I +ana I +mû I +nadû III +ina I +tinūru I +sekēru II +elû III +šahālu I +kaṣû III +lā I +patānu I +šatû II +šumma I +awīlu I +ahhāzu I +ana I +īnu I, -šu I +elû III, -am I, -ma I +īnu I, -šu I +qû I +arqu I +edēhu I +qerbu II, -šu I +našû II +akalu I +u I +šikaru I +târu I +awīlu I +šū I +zabālu I +lā I +balāṭu II +mâtu I +šumma I +awīlu I +ahhāzu I +marāṣu I +qaqqadu I, -šu I +pānu I, -šu I +zumru I, -šu I +kalû II, -šu I +u I +išdu I +lišānu I, -šu I +ṣabātu I +ana I +murṣu I +šuāti I +asû I +qātu I, -šu I +lā I +wabālu I +awīlu I +šū I +mâtu I +lā I +balāṭu II +šumma I +awīlu I +ṣētu I +kašādu I +tību I +nakkaptu I +marāṣu I +ina I +lāma I +kabātu I, -šu I +ana I +balāṭu II, -šu I +rūšu I +ša I +sippu I + + + +ēkallu I +Aššur-bani-apli I +šarru I +kiššatu I +šarru I +mātu I +Aššur I +ša I +Nabu I +u I +Tašmetu I +uznu I +rapšu I +šarāku I, -šum I +ahāzu I +īnu I +nawirtu I +nisqu I +ṭupšarrūtu I +ša I +ina I +šarru I +alāku I +mahru II, -ya I +mamman I +šipru I +šuāti I +lā I +ahāzu I +bulṭu I +ištu I +muhhu I +adi I +ṣupru I +liqtu I +ahû I +tāhīzu I +naklu I + +Ninurta I +u I +Gula I +mala I +bašāmu II +ina I +ṭuppu I +šaṭāru II +sanāqu I +barû I, -ma I +ana I +tāmartu I +šasû I, -ya I +qerbu II +ēkallu I, -ya I +kânu I + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +kukuru I +burāšu I +atā'išu I + + + +labtu I +nikiptu II +ištēniš I +sâku I + + + +ašû I +rēšu I +awīlu I +ahāzu I + + +šumma I +awīlu I +qaqqadu I, -šu I +ašû I + + + + + +kukuru I + + + + + +napû II +itti I +hallūru I + +šumma I +awīlu I +qaqqadu I, -šu I +ašû I + + + + + +šû II +zikaru I + + + + +ana I +pû I, -šu I +u I +nahīru I, -šu I + +šumma I +awīlu I +qaqqadu I, -šu I +ašû I +ṣabātu I + + + + + + + + + +ūlū I +ina I +šikaru I, rēštû I +šaqû III, -šu I + + + + + + + +qaqqadu I, -šu I +ṣabātu I +šuršu I + + + + + +balu I +patānu I +šaqû III, -šu I, -ma I + +šumma I +awīlu I +ašû I +ūlū I +miqtu I +ṣabātu I, -šu I +ešer I +šiqlu I +sahliu I +kabru I + + + + + + + + + + + + + + + +unūtu I +libbu I, -šunu I +tabālu I +abālu I +ina I +qātu I, -ka I +pašāšu I + + + + + + + + + + + + + + +šumma I +awīlu I +ašû I + +miqtu I +ṣabātu I, -šu I +hamiš I +šiqlu I +nīnû I +hamiš I +šiqlu I +kasû II + + +diqāru I +palāšu I + + + + + + + +pānu I +diqāru I +ina I +līšu I +kunāšu I +pehû II +išātu I +šarāpu I +takkussu I +palāšu I, -ma I +ina I +qabaltu I +pursītu I +sanāšu I + + + + + +takkussu I +elû III +ina I +pû I, -šu I +šadādu I + + + + +bašālu I + +u I +šīru I +kabru I +akālu I, -ma I +nêšu I + + + +ṣabātu I +kalû IV +sâku I +ina I + + +šatû II, -ma I +balāṭu II + + + +ṣabātu I +sebe I +u I +sebe I +uṭṭatu I +ina I + + +handû I +ša I +libbu I +qanû I +ṭābu I +leqû II + + + + + + + +ina I +pû I, -šu I +la'ātu I, -ma I +ana I +nahīru I, -šu I +enēqu I, -ma I +balāṭu II + + + + + +erēru I +sâku I +ina I +šamnu I +u I +šikaru I, rēštû I +šatû II, -ma I +balāṭu II +šumma I +awīlu I +qaqqadu I, -šu I + +ahāzu I +erištu II +kasû II +zēru II +uriyānu I +ina I + + + + + + +pašāšu I +balāṭu II + + + +billatu I +našpu I +ṣamādu II +sahliu I +ṭēnu I +ana I +muhhu I + + + + +šakānu I, -ma I +balāṭu II + + + + + +sâku I +ina I +kakkabu I +biātu I +balu I +patānu I +šaqû III, -šu I +ištēn I +qû II + + + + +šuršummu I +šikaru I + + + + + + +ištu I +eliš I +ana I +šapliš I +mašādu I + +ṣamādu II, -ma I +balāṭu II + + + + +tappinnu I +ina I +šikaru I +sâku I +qaqqadu I, -šu I +kaṣû III +zēru II +uriyānu I +sâku I +ina I +šamnu I +balālu I +ina I +tangussu I +bašālu I +pašāšu I, -ma I +balāṭu II + + + +ṣabātu I +hīlu I +baluhhu I +ballukku I +ina I +pēmtu I +qatāru II, -šu I +ana I +nahīru I, -šu I +enēqu I, -ma I +balāṭu II + + + +ṭūru I +hīlu I +baluhhu I +kurkanû I +ina I +išātu I +nadû III +nahīru I, -šu I +qatāru II +šamnu I +pû I +appu I + + + + +napāhu I, -ma I +balāṭu II + + + +ṣabātu I, -šu I +imhur-līm I +atā'išu I +zēru II +kasû II +zēru II +kamantu I +šammu I +ašû I +ina I +šamnu I +pašāšu I, -šu I +ina I + +qatāru II, -šu I +šiptu I +qarrādu I, -ya I +qarrādu I, -ya I +balāṭu II +qarrādu I, -ya I +qātu I + + +u I +qarrādu I, -ya I, -ma I + + + + +yānu I, -ma I +nêšu I, -ma I + +sebettu I + + +dullu I +rapšu I, -ma I +ummu II, -šu I +ul I +enēšu I + + + + + + + + +asû I +ša I +awīlūtu I +tû I, šiptu I +ka'inimmaku I +ašû I +epuštu I, -šu I +kasû II +kukuru I +šammu I +ašû I +ina I +pēmtu I +qatāru II, -šu I +šiptu I +annû I +šalāšu I +manû IV, -ma I +balāṭu II + + + + + + + + + + + + + + + + + + + + + +tû I +šiptu I +ka'inimmaku I +ašû I +epuštu I, -šu I +kamantu I +pa'āṣu I +ina I +šamnu I +balālu I +šiptu I +šalāšu I +manû IV +pašāšu I, -ma I +balāṭu II +šammu I +ašû I +parāsu I +zēru II +kamkadu I +sâku I +ina I +šamnu I + +kamantu I +sâku I +ina I +šamnu I +pašāšu I +šammu I +peṣû I +sâku I +ina I +šamnu I + +hašû III +būšānu I +sahliu I +zību III +šammu I +peṣû I +hīlu I + + + + + +ištēniš I +sâku I +ina I +šamnu I +u I +šikaru I, rēštû I +šatû II, -ma I + + + + +ṣabātu I +ana I +balāṭu II, -šu I +šammu I +peṣû I +rikibtu I +argabu I +ṭabtu I +mēsallu I +nīnû I + + + + + + + + + +qaqqadu I, -šu I +mesû II +târu I, -ma I +tābīlu I +ana I +qaqqadu I, -šu I +zarû II +itqu I +lawû II + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +mahāṣu I, -šu I +u I + + + + + + + + + + + + + + + + + + + + + + +libbu I +manû IV +ana I +nahīru I, -šu I + + + + + + + + + + + + + +bahru I +akālu I +bahru I + + + + + + + + + + + + + + + + + +kamantu I +šammu I +ašû I +ina I +šamnu I +pašāšu I + + +tamāhu I + + + + +ašû I +pû I + + + + + +ašlu I +ina I +pēmtu I +qatāru II, -šu I, -ma I +ašû I +nasāhu I + + + + + + +tû I, šiptu I + +epuštu I, -šu I +mû I +nurmû I + + + + + + +ana I +pû I, -šu I +šapāku I, -ma I +nêšu I + + + + + + + + + +zēru II +uriyānu I +tarmuš I +imhur-līm I +imhur-ešrā I +ina I +šamnu I + + + + + + + + + + +šakānu I +ina I +šēru II +qaqqadu I, -šu I +mesû II +pašāšu I, -ma I +nêšu I + + + + + + + + + +abnu I +errû I +kasû II +qalû I +ina I +šamnu I +erēnu I +balālu I +pašāšu I + + +emēmu I +ana I +qaqqadu I, -šu I +nadû III + + + + +balālu I +kaṣû III +ina I +šamnu I +erēnu I +ina I +himētu I +balālu I +pašāšu I + +ina I +qaqqadu I, -šu I +mesû II +abnu I +errû I +sâku I +ina I +šamnu I +erēnu I + + +ana I +libbu I +nadû III +ištu I +bašālu I +qaqqadu I, -šu I +pašāšu I +kulīltu I +abālu I + +lipiu I +muṣa''irānu I +ina I +himētu I +balālu I +pašāšu I, -ma I +šārtu I +aṣû I + +ṭābātu I +dannu I +balālu I +qaqqadu I, -šu I +kaṣû III, -ma I + + + + + + + + + + +qatāru II, -šu I, -ma I +ina I +šēru II +ina I +mû I +emmu I +qaqqadu I, -šu I +mesû II +šamnu I +erēnu I +pašāšu I +lipiu I +errû I +erēru I + + + + + + + +zarû II +pašāšu I, -ma I +balāṭu II +šumma I + + +šamnu I +erēnu I +emēmu I +ana I +qaqqadu I, -šu I +nadû III +šumma I +ašru III, šanû I + + + + + + +karānu I +šēlebu I +sâku I +ina I +šamnu I +erēnu I + +šumma I + + +kibrītu I +ina I +līšu I +balālu I +pašāšu I +šumma I +ašru III, šanû I +kibrītu I +ina I +dišpu I +šadû I +balālu I +pašāšu I +šumma I + + +maštakal I +sâku I +ina I +šamnu I +pašāšu I +šumma I +ašru III, šanû I +aktam I +sâku I +ina I +lipiu I +balālu I +pašāšu I +šumma I +ašru III, šanû I +uriyānu I +zarû II +ina I +šamnu I +pašāšu I +šumma I + + +uriyānu I +ina I +šizbu I +lītu II +šīnātu I +lītu II +mahāṣu I +qaqqadu I, -šu I +mesû II +kalbānu I +erēru I +sâku I +qaqqadu I, -šu I +gullubu II +šamnu I +pašāšu I, -šu I + + + +lipiu I +errû I +abnu I +errû I +erēru I +sâku I +qaqqadu I, -šu I +gullubu II +šamnu I +pašāšu I +naṣmattu I +nadû III +ṣamādu II + + + + + + +sâku I +ina I +šamnu I +erēnu I +balālu I +pašāšu I, -ma I +šārtu I +aṣû I + + + + + + +sâku I +qaqqadu I, -šu I +pašāšu I +qēmu I +hallūru I +qēmu I +kakkû I +kirbānu I, eqlu I +sâku I +ina I +mû I +kasû II +lâšu I +ṣamādu II +aktam I +uhūlu I, qarnānû I + + + +ina I +mû I +emmu I +qaqqadu I, -šu I +mesû II +šumma I +awīlu I +kurartu I +malû IV +uriyānu I + + +ištēniš I +sâku I +ina I +šamnu I +balālu I +pašāšu I, -ma I +šārtu I +aṣû I +šumma I + + +aktam I +kamantu I +sâku I +ina I + +qaqqadu I, -šu I +mesû II +qilpu I + + + +qalû II +ṭênu I +zarû II +šumma I + + +šamnu I +libbu I +nūnu I +pašāšu I + + +sâku I +zarû II +šumma I + + +samānu I +ša I +igāru I +kâru I +pašāšu I + + + +ina I +dišpu I +šadû I +peṣû I +u I +mû I +mesû II, -ma I +nêšu I +šammu I +peṣû I +uriyānu I +aktam I +šalāš I +šammu I +kurartu I + +qaqqadu I, -šu I +ina I +šamnu I +pašāšu I +imhur-līm I +uriyānu I +šuršu I +kalbānu I +šuršu I +bīnu II +kamūnu II +sâku I + + +ina I +mû I +qaqqadu I, -šu I +mesû II +ina I +šamnu I +pašāšu I +šumma I +awīlu I + +qaqqadu I, -šu I +mesû II +ašqulālu I +uriyānu I +sâku I +ina I +šamnu I + + +sâku I +ina I +dišpu I +šadû I + + +šalāmu II + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +šumma I + + +ṭābātu I +emṣu I + + + + +ina I +šanû I +qadūtu I, šiknu I + + + + +zû I +Nisaba I +ana I + + +šumma I + + +samānu I +sêru I + +zarû II +ina I +himētu I +pašāšu I + +šumma I + + +ṭābātu I +emṣu I + +zarû II +šūmū I +šamaškilu I + +šumma I +awīlu I +qaqqadu I, -šu I + + +isqūqu I +qēmu I +hallūru I +gaṣṣu III +bašlu I +uhūlu I, qarnānû I + + + +hašālu I +napû II +rēšu I, -ka I +kullu III +himētu I +pašāšu I +naṣmattu I +nadû III +karānu I +šēlebu I + + +šumma I + + + + + + + + + + + +burāšu I +tappinnu I +ina I +ṭābātu I +balālu I +qaqqadu I, -šu I +kaṣû III + +nadû III + + + + +qaqqadu I, -šu I +mesû II + +nadû III +gullubu II +eli I +kurāru I + + + + + +kaṣû III +himētu I +ṭabtu I +buhhuru I +ina I +billatu I +našpu I +u I +šamnu I +erēnu I + + + + +erēru I +sâku I +zarû II +inbu I +errû I + + + + + +ana I +pānu I +simmu I + + + +ṭābātu I + +šamnu I +erēnu I +pašāšu I +šammu I +peṣû I + +uriyānu I +ṭabtu I + +ina I +šīnātu I +imēru I +u I +ṭābātu I + +šiptu I + + + + + + + + + + + + + + +epuštu I, -šu I +errû I +eli I +kurāru I + +samānu I +ša I +igāru I +kâru I + +ina I +himētu I +labīru I +balālu I + + +šiptu I + + + + + +epuštu I, -šu I +ina I +anṣabtu I +hurāṣu I + + + + + + +karašu I +ṣallamtu I +nīnû I + +šiptu I +māmītu I +kīma I +šarrāqu I +ina I +bābu I +pilšu I + + +šiptu I +ašru III +banû IV +Ea I +pašāru I + + +šiptu I + + + + + +epuštu I, -šu I +nagapu I +ša I +ṭābātu I +kâru I +qudru I +zarû II + + +hamiš I +ka'inimmaku I +kurāru I +nasāhu I + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +nasāhu I + + + + + + + + + +hubšu I +narṭabu I +pašāšu I +mašku I +imēru I +ina I +išātu I +erēru I +sâku I +zarû II +alapû I +ina I +išātu I + + + + + + + + + +erēru I +pānu I +simmu I +zarû II + +ša I +immeru I +pānu I +simmu I +pašāšu I +mašku I +abālu I +hašālu I + + + +ṣēlu I +alpu I +nāru I +ina I +išātu I +erēru I +pānu I +simmu I +zarû II +imhur-līm I +sâku I +pānu I +simmu I +pašāšu I + + + + + + +kâru I +ina I +anṣabtu I +hurāṣu I +pānu I +simmu I +kâṣu I + + + + + + + +balāṭu II + + + + + + + + + + + + +qaqqadu I, -šu I + + + + + + + +ina I + +qaqqadu I, -šu I + + + + + + + + + + +šumma I +awīlu I +libbu I, -šu I +marāṣu I +šizbu I +lītu II +ellu I +himētu I +šina II, ūmu I +šatû II + +šumma I +awīlu I +libbu I, -šu I +marāṣu I +karānu I +šēlebu I +sâku I +ina I +šikaru I +šatû II +suādu I +sâku I +ina I +šikaru I +šatû II +šizbānu I +sâku I +ina I +šikaru I +šatû II + +qû II +sahliu I + +qû II +uhūlu I, qarnānû I + +qû II +qadūtu I, šiknu I + +qû II +šunû II + +qû II +isqūqu I + +qû II +burāšu I + +qû II +kukuru I + +qû II +qēmu I +hallūru I + +qû II +qēmu I +kakkû I + +qû II +sikillu I + +qû II +haṭṭu II +rē'û I + +qû II +urnû I +hašālu I +ina I +šikaru I, rēštû I +ina I +tangussu I +rabāku I +ina I +ṣubātu I +ṭerû I +pānu I +u I +naglabu I +ṣamādu II +ana I +ašru III +šanû I + +qû II +sahliu I + +qû II +zû I +summatu I + +qû II +labtu I + +qû II +burāšu I + +qû II +kukuru I +balālu I +mala I +naṣmattu I +maṣû I +ina I +šikaru I, rēštû I +lâšu I +ṣamādu II +ana I +ašru III +šanû I +ištēn I +manû II +aru I + +sâku I +ina I +mû I +kasû II +bašālu I +kaṣû III +ṣamādu II +ana I +ašru III +šanû I + +qû II +sahliu I + +qû II +labtu I +sâku I +ina I +mû I +kasû II +lâšu I +kukuru I +burāšu I +ana I +pānu I +zarû II +pānu I +u I +naglabu I +ṣamādu II +ana I +ašru III +šanû I + +qû II +qēmu I +buqlu I + +qû II +qēmu I +kupsu I + +qû II +qēmu I +kibtu I + +qû II +kukuru I + +qû II +burāšu I +sâku I +balālu I +ina I +mû I +kasû II +lâšu I +ṣamādu II +šumma I +awīlu I +libbu I, -šu I +marāṣu I +aru I +errû I +abālu I +hašālu I +napû II +ina I +dišpu I +šikaru I, rēštû I +u I +šamnu I +halṣu I +mahāṣu I +balu I +patānu I +šaqû III, -šu I +ina I +šuburru I, -šu I +ešēru I, -ma I +balāṭu II +šumma I +awīlu I +libbu I, -šu I +marāṣu I +suādu I +hesû I +ina I +mû I +kaṣû I +labāku I +lā I +patānu I +šatû II +šumma I +awīlu I +libbu I, -šu I +marāṣu I, -ma I +tarāku I +zēru II +kūru III +sâku I +ina I +šikaru I, rēštû I +šatû II + +qû II +sahliu I + +qû II +uhūlu I, qarnānû I + +qû II +qēmu I +kibtu I + +qû II +isqūqu I +hašālu I +ina I +šikaru I, rēštû I +lâšu I +ina I +ṣubātu I +ṭerû I +pānu I +u I +naglabu I +ṣamādu II +šumma I +awīlu I +libbu I, -šu I +marāṣu I +imhur-līm I +sâku I +ina I +šikaru I, rēštû I +ramāku I +ina I +kakkabu I +biātu I +lā I +patānu I +šatû II +aru I +šunû II +hašālu I +ina I +isqūqu I +balālu I +ina I +mû I +kasû II +rabāku I +ina I +ṣubātu I +ṭerû I +pānu I +u I +naglabu I +ṣamādu II +ana I +ašru III +šanû I +karašu I +petû II +leqû II +sâku I +ina I +šizbu I +šatû II + +qû II +sahliu I + +qû II +labtu I +ina I +šizbu I +lâšu I +ina I +ṣubātu I +ṭerû I +ṣamādu II +šumma I +awīlu I +libbu I, -šu I +marāṣu I, -ma I +libbu I +eṣemtu I, -šu I +arqu I +libbu I, -šu I +simmu I +malû IV +ṣētu I + +lipiu I +errû I +ina I +qēmu I +labtu I +balālu I +erbēšerīšu I +kupatinnu I +dišpu I +salāhu I +alātu I + +qû II +sahliu I +sīhu II +sâku I +ina I +šīru I +alpu I +kabru I +akālu I + +qû II +sahliu I +ṭēnu I +ina I + + + +lâšu I +ṣamādu II +šumma I +awīlu I +libbu I, -šu I +marāṣu I, -ma I +dikšu I +rašû I +akalu I +akālu I +šikaru I +šatû II +ana I +šuburru I, -šu I +šapāku I +rupuštu I +ina I +ugāru I +arû III +la'ātu I +nuhurtu I +sâku I +ina I +mû I +šatû II +šammu I +peṣû I + +šamnu I +rabāku I +ana I +šuburru I, -šu I +šapāku I +karānu I + +šatû II +burāšu I +šimiššalû I + + + +ina I +tangussu I +rabāku I +ina I +ṣubātu I +ṭerû I +ṣamādu II +ana I +ašru III +šanû I +šammu I +peṣû I +ina I +šamnu I +šatû II +arû III + + + + + + + +maštakal I +lišānu I +kalbu I +ina I +mû I +bašlu I +rahāṣu I, -šu I +mû I +kasû II + + + + + + +gišimmaru I +aru I +šūšu I +kikkirânu I +aru I +šunû II +burāšu I +kukuru I + + + + + +ina I +mašku I +ṭerû I +ṣamādu II +ana I +ašru III +šanû I +karānu I +šēlebu I +ina I +šikaru I +šatû II +šammu I +peṣû I +ina I +šamnu I +šatû II + + + + + +ina I +dišpu I +akālu I +mû I +šunû II +mû I +kasû II +ana I +šuburru I, -šu I +šapāku I + + + + + +sikillu I +aru I +šakirû I +aru I +maštakal I +hašālu I + + + + + +ṭerû I +ṣamādu II +ana I +ašru III +šanû I +nuhurtu I +tīyatu I +sâku I +ina I +šikaru I +šatû II +šammu I +peṣû I +ina I +šamnu I +rabāku I +ana I +šuburru I, -šu I +šapāku I +aru I +šarmadu I +aru I +ašāgu I +aru I +baltu I +ina I +mû I +bašlu I +rahāṣu I, -šu I + +šunû II +mû I +kasû II +ana I +šuburru I, -šu I +šapāku I +burāšu I +kukuru I + + + +ina I +tangussu I +rabāku I +ina I +ṣubātu I +ṭerû I +ṣamādu II +šumma I +awīlu I +libbu I, -šu I +marāṣu I, -ma I +libbu I + + + + + + + + +ana I +ašru III +šanû I +šammu I +peṣû I + + + +sikillu I + + + + + + + +ana I +šuburru I, -šu I +šapāku I +burāšu I +kikkirânu I +ṣumlalû I +hīlu I +baluhhu I +rīqu II +hašālu I +ina I +lipiu I +balālu I +ina I +mašku I +ṭerû I +ṣamādu II +ana I +ašru III +šanû I +kikkirânu I +peṣû I +ina I +šikaru I +šatû II, -ma I +arû III +šuršu I +pillû I +zikaru I +ina I +šikaru I +šatû II, -ma I +arû III +dišpu I +šadû I +ablu I +ina I +mû I +šunû II +rahāṣu I, -šu I +ṭābātu I +šamnu I +emēmu I +ana I +šuburru I, -šu I +šapāku I +aru I +šūšu I +aru I +kūru III +aru I +šakirû I +aru I +lišānu I +kalbu I +burāšu I +suluppu I +sâku I +ina I +šikaru I +balālu I +târu I, -ma I +abālu I +hašālu I +napû II +ina I + + + +ina I +mašku I +ṭerû I +ṣamādu II +ana I +ašru III +šanû I +atā'išu I +ina I +šikaru I +šatû II, -ma I +arû III +šammu I +peṣû I +ina I +šamnu I +šatû II, -ma I +arû III +libbu I +gišimmaru I +pillû I +burāšu I +kasû II +ina I +mû I +bašlu I +rahāṣu I, -šu I +kukuru I +sâku I + + + +emēmu I +šamnu I +ana I +libbu I +natāku I +ana I +šuburru I, -šu I +šapāku I +aru I +šallūru I +aru I +ēru II +aru I +šunû II +aru I +libāru I + + +burāšu I +kukuru I +hašālu I +ina I +šikaru I +balālu I +târu I, -ma I +abālu I +hašālu I +ina I +lipiu I +balālu I +ina I +mašku I +ṭerû I +ṣamādu II +šumma I +awīlu I +libbu I, -šu I +marāṣu I, -ma I +mimma I +murṣu I +nīnû I +hašû III +atā'išu I +zību III +urnû I +tarmuš I +imhur-līm I +elkulla I +sikillu I +imhur-ešrā I +inbu I +baltu I + + + +aru I +errû I +sâku I +ina I +šikaru I +šatû II +ina I +šuburru I, -šu I +ešēru I +ina I +mūšu I +ina I +mû I +kasû II +bašlu I + + + + + + + +šīru I +kabru I +ša I +šahû I +akālu I +balāṭu II + +sâku I +ina I +šamnu I +lā I +patānu I +lišānu I, -šu I +ṣabātu I + + + +sâku I + + + +ina I +šamnu I +balālu I +kanāku I, -ma I +šalāš I, ūmu I +šakānu I + +arû III +sebe I, ūmu I +šatû II + +ina I +šikaru I, rēštû I +šatû II + + +aru I +nurmû I + +ina I +šikaru I, rēštû I +šatû II + + +ina I +šamnu I +u I +šikaru I, rēštû I +hašālu I + + + + + + + + +lâšu I + +ramāku I +balāṭu II + +šatû II, -ma I +balāṭu II + +balāṭu II + + + + + +abnu I +suluppu I + + + +mû I +lā I +šatû II +mû I + +nīnû I +sâku I +ina I +mû I + +qilpu I +nurmû I +ša I +ištānu I +ina I + +šūmū I +arqūtu I, -šu I +habšu I +habšu I +alātu I + + +zēru II +azupīru I +sâku I + + +qû II +ṭābātu I + +qû II +kasû II +ešer I + +ṭabtu I + +qû II +šamnu I +halṣu I + + +kabru I +hamiš I +šiqlu I +ṭabtu I +ana I +libbu I +nadû III, -ma I +lā I +patānu I +šatû II +šuršu I + +lipiu I +errû I +hašālu I +ištēn I +qû II +ṭābātu I +bašlu I +ana I +libbu I +nadû III, -ma I + +burāšu I +sâku I +ina I +šamnu I + +šumma I +ru'tu I +rašû I +kirbānu I +eqlu I +sâku I +ina I +mû I +nurmû I +kaṣû I +ina I +šuburru I, -šu I +tabāku I, -ma I +balāṭu II +šarūru I +ša I +errû I +abālu I +hašālu I +ana I +libbu I +līšu I +u I +dišpu I +šadû I +balālu I +zû I +summatu I +alātu I +šikaru I, rēštû I +suluppu I +šatû II +būšānu I +sâku I +ina I +šamnu I +halṣu I +šatû II +šumma I +awīlu I +qerbu II, -šu I +napāhu I +ebēṭu I +libbu I, -šu I +ana I +parû IV +epēšu II +ana I +balāṭu II, -šu I +šūmū I +zību III +ištēniš I +sâku I +ina I +šikaru I, rēštû I +lā I +patānu I +šatû II +balāṭu II +ana I +ašru III +šanû I +sikillu I +arqūtu I, -šu I +sâku I +itti I +nāhu I +balālu I +lā I +patānu I +naṣābu I +šikaru I +emṣu I +šatû II +balāṭu II +šumma I +awīlu I +qerbu II, -šu I +napāhu I +ebēṭu I +šāru I +ina I +libbu I, -šu I +sahāru I +labû I +lipiu I +errû I +ana I +šuburru I, -šu I +šakānu I +šūmū I +zību III +sâku I +ina I +šikaru I +šatû II +šina II +ūmu I + +qû II +šamnu I +ana I +šuburru I, -šu I +šapāku I +balāṭu II +šumma I +awīlu I +qerbu II, -šu I +napāhu I +ebēṭu I +lā I +patānu I +šikaru I +dišpu I +bahru I +šaqû III, -šu I +arû III +ṭābātu I +bašālu I +nīnû I +ṭabtu I +ištēniš I +sâku I +ana I +libbu I +hašālu I +dišpu I +u I +šamnu I +halṣu I +nadû III +ana I +šuburru I, -šu I +šapāku I +balāṭu II +šumma I +awīlu I +qerbu II, -šu I +ebēṭu I +lā I +patānu I +šikaru I +ina I +lahannu I +šatû II +ṭābātu I +bašlu I +nīnû I +ṭabtu I +mēsallu I +ana I +libbu I +nadû III +šamnu I +ana I +libbu I +natāku I +ana I +libbu I +našpaktu I +šapāku I +šamnu I +ina I +ubānu I +šumēlu I, -ka I +kalû II, -šu I +pašāšu I, -šu I +šumma I +awīlu I +qerbu II, -šu I +ebēṭu I +lipiu I +errû I +ana I +šuburru I, -šu I +šakānu I +šūmū I +sebe I +u I +sebe I +alātu I +šūmū I +zību III +sâku I +ina I +šikaru I +šatû II +dišpu I +šadû I +šamnu I +ana I +šuburru I, -šu I +šapāku I +zēru II +azupīru I +sâku I +akālu I +šumma I +ru'tu I +rašû I +ganāhu I +ṣētu I +kašādu I +mû I +nurmû I +ṣahātu I +šatû II +šizbu I +šamnu I +lišānu I, -šu I +ṣabātu I +šatû II +ištēn I +qû II +šikaru I +šatû II +burāšu I +sâku I +ina I +šikaru I +šatû II +zību III +sâku I +ina I +šikaru I +šatû II +zību III +sâku I +ina I +karānu I +šatû II +šamnu I +alātu I +šumma I +awīlu I +rēšu I +libbu I, -šu I +emmu I +qerbu II, -šu I +napāhu I + +qû II +ṭūru I +ina I +šuršummu I +šikaru I +rabāku I +ina I +ṣubātu I +ṭerû I +ṣamādu II +ana I +naṣmattu I +kasû II +šimiššalû I +zarû II +pānu I +u I +naglabu I +ṣamādu II + + + + + + + + + + + + + + +burāšu I +kikkirânu I +hašû III +ana I +šikaru I +nadû III + + + + + + + +hašālu I +lū I +bahru I +šaqû III, -šu I +ina I +kappu I +iṣṣūru I +parû IV, -šu I, -ma I +balāṭu II +šumma I +awīlu I +qerbu II, -šu I +magal I +napāhu I +akalu I +šikaru I +ina I +pû I, -šu I +târu I +qaqqadu I, -šu I +irtu I, -šu I +ṣamādu II +rabīku I +isqūqu I +bašālu I +ina I +dišpu I +lipiu I +u I +himētu I +akālu I +šūmū I +šamaškilu I +karašu I +sahliu I +urnû I +šalāš I +ūmu I +lā I +akālu I +mû I +lā I +ramāku I, -ma I +balāṭu II +šumma I +awīlu I +qerbu II, -šu I +napāhu I + + +ummu II +maqātu I, -šum I +akalu I +u I +šikaru I +ṣamādu II +ru'tu I +rašû I +ana I +balāṭu II, -šu I +imhur-līm I +imhur-ešrā I +šuršu I +pillû I +ahennâ I +sâku I +ina I +šikaru I +šaqû III, -šu I +parû IV, -ma I +arki I +annû I +šamnu I +halṣu I +u I +šikaru I +šaqû III, -šu I +mû I +kasû II +u I +ṭābātu I +bašālu I +ana I +šuburru I, -šu I +šapāku I, -ma I +kukuru I +burāšu I +ṣumlalû I +aru I + +aru I +libāru I +aru I +šunû II +zēru II +urbatu I +sebe I +šammu I +annû I +ištēniš I +hašālu I +napû II +itti I +lipiu I +iškūru I +u I +ṭūru I +samāhu I +ina I +mašku I +ṭerû I +ṣamādu II, -šu I, -ma I +balāṭu II +šumma I +awīlu I +qerbu II, -šu I +napāhu I +guhhu I +u I +ru'tu I +rašû I +akalu I +u I +šikaru I +maṭû II +ana I +balāṭu II, -šu I +nīnû I +sahliu I +ištēniš I +sâku I +ina I +šikaru I +šaqû III, -šu I +urnû I +ina I +mû I +kasû II +bašālu I +šahālu I +kaṣû III +lū I +bahru I +ana I +šuburru I, -šu I +šapāku I +balāṭu II +šumma I +awīlu I +qerbu II, -šu I +napāhu I +rēšu I +libbu I, -šu I +rupuštu I +rašû I +ana I +balāṭu II, -šu I +rikibtu I +argabu I +tullal I +qanû I, šalālu II +aru I +šūšu I +ina I +dāmu I +erēnu I +u I +mû I +kasû II +kânu I +dišpu I +šamnu I +halṣu I +himētu I +u I +šikaru I, rēštû I +ana I +libbu I +nadû III +ina I +kakkabu I +biātu I +ina I +šēru II +šahālu I +lā I +patānu I +šatû II, -ma I +balāṭu II +šumma I +awīlu I +qerbu II, -šu I +napāhu I +qēmu I +labtu I +qēmu I +buqlu I +zēru II +qudru I +diktu I +ša I +suluppu I +ištēniš I +sâku I +lā I +patānu I +akālu I +mû I +lā I +šatû II +mû I +rēšu I +libbu I, -šu I +salāhu I, -ma I +balāṭu II +šumma I +awīlu I +libbu I, -šu I +emēru II +ešer I + +mû I +šunû II +ešer I + +mû I +ṭabtu I +ina I +dišpu I +u I +šikaru I +šatû II +ana I +ašru III +šanû I +nurmû I +akālu I +mû I +nurmû I +šatû II +ana I +ašru III +šanû I +burāšu I +sâku I +ina I +šikaru I +šatû II +ana I +ašru III +šanû I +šārtu I +biṣṣūru I +šību I +ina I +qablu I +pû I, -šu I +šakānu I +ana I +ašru III +šanû I +nurmû I +aru I +marišmara I +sâku I +ina I +mû I +šatû II +šumma I +awīlu I +libbu I, -šu I +šāru I +ṣânu I +šaššāru I +siparru I +lū I +patru I +siparru I +lêku I +balāṭu II +eperu I +nigkalagû I +eṣēnu I +šehēqu I +balāṭu II +šumma I +awīlu I +qerbu II, -šu I +emēru II +ešer I + +aru I +šunû II +ešer I + +dišpu I +ana I +libbu I +šikaru I +nadû III +ina I +kakkabu I +biātu I +ina I +šēru II +lā I +patānu I +šatû II, -ma I +balāṭu II +šumma I +awīlu I +libbu I, -šu I +emēru II +napāhu I +libbu I, -šu I +šasû I +akalu I +u I +mû I +târu I +šuršu I +pillû I +zikaru I +ṭūru I +ina I +pû I +na'āsu I +dišpu I +šadû I +ina I +šikaru I +rēštû I +šatû II +ṭūru I +ina I +šikaru I, rēštû I +bašlu I +ana I +šuburru I, -šu I +šapāku I +aru I +libāru I +burāšu I +kukuru I +hīlu I +abukkatu I +šunû II +hašālu I +ina I +lipiu I +balālu I +ina I +mašku I +ṭerû I +ṣamādu II +ina I +mû I +šunû II +rahāṣu I +šumma I +awīlu I +libbu I, -šu I + + + + +ummu II +maqātu I, -šum I +šāru I +rašû I +akalu I +mû I +târu I +imhur-ešrā I +šuršu I +pillû I +zikaru I +ina I +šikaru I, rēštû I +sâku I +šaqû III, -šu I +arki I, -šu I +šamnu I +halṣu I +ina I +šikaru I +šatû II +ešēru I +kasû II +ṭābātu I +bašālu I +ana I +šuburru I, -šu I +šapāku I +burāšu I + + + +ṭūru I +aru I +libāru I +aru I +šunû II +hašālu I +ina I +lipiu I +balālu I +ina I +mašku I +ṭerû I +ṣamādu II +ašru III, šanû I +šumma I +awīlu I +libbu I, -šu I + + + + +akalu I +u I +mû I +ina I +pû I, -šu I +târu I +nakkaptu I, -šu I +paṭāru I + + + + + + + + + + +ina I +nāhu I +akālu I +šūmū I +šamaškilu I + + + + + + + + + +šumma I +awīlu I +libbu I, -šu I +esēlu I +qaqqadu I +akālu I, -šum I + + + + + + + + +ka'inimmaku I +awīlu I +esēlu I +epuštu I, -šu I +šiptu I +šalāšu I +ana I +libbu I +manû IV + +šumma I +awīlu I +libbu I, -šu I +akalu I +u I +šikaru I +lā I +mahāru I + +qû II +mû I +suluppu I + +qû II +mû I +kasû II + + + + + + +arki I, -šu I +šiqqu I +ṭābātu I +šatû II, -ma I +ummu II +ša I +libbu I, -šu I +šahāṭu II +mesû II + + + + +šumma I +awīlu I +libbu I, -šu I +akalu I +lā I +mahāru I +zēru II +bīnu II +sâku I +ina I +dišpu I +u I +himētu I +balālu I +balu I +patānu I +šaqû III, -šu I, -ma I +balāṭu II +šumma I +awīlu I +akalu I +u I +šikaru I +maṭû II +hašû III +nuhurtu I +urnû I +kasû II +tīyatu I +šumuttu I + + + +kukuru I +ṣumlalû I +suādu I +erēnu I +šupuhru I +ballukku I +suluppu I +šibirtu I +buqlu I +ṭabtu I +šunû II +ṭābātu I +dannu I +ina I +šikaru I +ramāku I +ina I +kakkabu I +biātu I +ina I +šēru II +ina I +tangussu I +bašālu I +hamiš I +šiqlu I +šamnu I +halṣu I +ana I +pānu I +nadû III +ana I +šuburru I, -šu I +šapāku I +ana I +libbu I +diqāru I +nadû III, -ma I +rabiat I +šammu I +matqu I +rabiat I +šammu I +ṣehru I +matqu I +rabiat I +arariānu I +merginānu I + +sissinnu I +libbu I +malmališ I +sâku I +ina I +šikaru I +sābû I +lā I +patānu I +šatû II, -ma I +ina I +šuburru I, -šu I +ešēru I, -ma I +balāṭu II +šumma I +awīlu I +qerbu II, -šu I +ganānu I +guhhu I +rašû I +akalu I +u I +mû I +maṭû II +ru'tu I +rašû I +nīnû I +sâku I +ina I +šamnu I +šatû II, -ma I +arû III +nīnû I +sahliu I +sâku I +ina I +šikaru I +šatû II +urnû I +ina I +mû I +bašālu I +kaṣû III +ana I +šuburru I, -šu I +šapāku I +aru I +libāru I +aru I +qudru I +aru I +bīnu II +burāšu I +kukuru I +ṣumlalû I +ṭūru I + + +ina I +mû I +suluppu I +rabāku I +târu I, -ma I +abālu I +hašālu I +ina I +lipiu I +balālu I +ina I +mašku I +ṭerû I +ṣamādu II +ina I +mû I +šunû II +rahāṣu I, -ma I +balāṭu II +šumma I +awīlu I +libbu I, -šu I +ašāšu III +akalu I +u I +šikaru I, rēštû I +lā I +mahāru I +naglabu I, -šu I +akālu I, -šum I +qaqqadu I, -šu I +ginâ I +ṣamādu II + + + +sebe I, ūmu I +šūmū I +šamaškilu I +karašu I +lā I +akālu I +ina I +mû I +šunû II +rahāṣu I +zēru II +errû I +zēru II +hašû III +ina I +šikaru I +šatû II, -ma I +balāṭu II +šumma I +awīlu I +libbu I, -šu I +hahhu I +malû IV +ana I +balāṭu II, -šu I +qanû I +ṭābu I +ballukku I +burāšu I +hašû III +kikkirânu I +peṣû I +ina I +šikaru I, rēštû I +nadû III +bašālu I +šahālu I +lū I +bahru I +ešer I + +dišpu I +ana I +libbu I +hašālu I +lā I +patānu I +šaqû III, -šu I +arû III +ina I +šēru II +dišpu I +šamnu I +halṣu I +u I +šikaru I +ištēniš I +balālu I +lā I +patānu I +lišānu I, -šu I +ṣabātu I +šaqû III, -šu I +balāṭu II +šumma I +awīlu I +hahhu I +ṣabātu I, -šu I +zēru II +sikillu I +zēru II +karānu I +šēlebu I +kamantu I +supālu I +uriyānu I +hamiš I +šammu I +annû I +ištēniš I +sâku I +ina I +mû I +kasû II +rabāku I +ina I +ṣubātu I +ṭerû I +rēšu I +libbu I, -šu I +ṣamādu II +šammu I +peṣû I +sâku I +ina I +mû I +lā I +patānu I +šatû II +balāṭu II +ana I +ašru III +šanû I +hīlu I +baluhhu I +sâku I +ina I +karānu I +ṣahtu I +lā I +patānu I +šatû II +balāṭu II +ana I +ašru III +šanû I + + +sâku I +ina I +šikaru I, rēštû I +lā I +patānu I +šatû II +balāṭu II +šumma I +awīlu I +šāru I +ina I +libbu I, -šu I +sahāru I +ana I +balāṭu II, -šu I +šuršu I +lišānu I +kalbu I +ša I +ina I +nasāhu I, -ka I +šamšu I +lā I +amāru I +abālu I +sâku I +ina I +šikaru I, rēštû I +lā I +patānu I +šatû II +balāṭu II +šumma I +awīlu I +šāru I +ina I +libbu I, -šu I +labû I +lišānu I +kalbu I +zēru II +lišānu I +kalbu I +ištēniš I +sâku I +ina I +šikaru I +lā I +patānu I +šatû II +balāṭu II +šumma I +awīlu I +šāru I +kīma I +dikšu I +ina I +libbu I, -šu I +lapātu I, -šu I + +šiqlu I +erēnu I + +šiqlu I +šurmēnu I + +šiqlu I +asu I +ešer I +šiqlu I +šupuhru I +ešer I +šiqlu I +ṭabtu I +mēsallu I +burāšu I + + + + + + + +ina I +šikaru I, rēštû I +bašālu I +šamnu I +ana I +pānu I +nadû III +ana I +šuburru I, -šu I +šapāku I +šumma I +awīlu I +šāru I +ina I +libbu I, -šu I +ra'ābu I +lahābu I +kibsu I, -šu I +šēpu I, -šu I +irtu I, -šu I +u I +naglabu I, -šu I +akālu I, -šum I +šīru I, -šu I +šamāmu I, -šum I +u I +zaqātu I, -šu I +šīru I, -šu I +maṭû II +nipšu I +malû IV +rēšu I, -šu I +enû III +ummu II +ina I +kalû II +ūmu I +kullu III, -šum I + + + + + + +burāšu I +atā'išu I +hašû III +sahliu I +kasû II +ṭabtu I +amānu I +urnû I +aru I +bīnu II +tiše I +šammu I +annû I +ištēniš I +sâku I +ina I +karānu I +ṭābu I +u I +šikaru I, rēštû I +rasānu I +ina I +mūšu I +ana I +pānu I +kakkabu I +biātu I +ina I +šēru II +bašālu I +šahālu I +kaṣû III +sebe I +uṭṭatu I +habbūru I +errû I +sebe I +uṭṭatu I +anzahhu I +ištēniš I +sâku I +ana I +libbu I +hašālu I +lāma I +šamšu I +napāhu I +šaqû III, -šu I +ina I +kappu I +parû IV, -šu I +šumma I +ṭābu I +lā I +amāru I +ana I +šuburru I, -šu I +šapāku I +balāṭu II +šumma I +awīlu I +akalu I +akālu I +šikaru I +šatû II, -ma I +lā I +šebû II +qerbu II, -šu I +napāhu I +libbu I, -šu I +lā I +mahāru I +kīma I +ittu II, -šu I + +marāṣu I +kabūtu I +alpu I +ina I +mû I +mahāhu I +pašāšu I +suluppu I +karašu I +errû I + + + +akalu I +u I +šikaru I +lā I +lêmu I +sebe I, ūmu I +mû I +ša I +būru I +šatû II +šumma I +awīlu I +hušahhu I +ṣabātu I, -šu I +ištēn I +qû II +šikaru I, rēštû I +ina I +kakkabu I +biātu I +ina I +šēru II + + + + + + + + + +šumma I +awīlu I +mādiš I +anāhu I +šāru I +edēpu I, -ma I +lā I + + + + + +ina I +mû I +kasû II +rahāṣu I +ṭabtu I +tīyatu I + + + + + +šumma I +awīlu I +šammu I +šatû II, -ma I +lā I +arû III +ṣemēru I +zappu I +šahû I + +mû I +u I +šamnu I +bašālu I +adi I +šebû II, -šu I +alātu I + + + +šumma I +awīlu I +šammu I +šatû II, -ma I +lā I +parû IV +lā I +ṣanāhu I +awīlu I +šū I +zēzenu I +marāṣu I +ana I +balāṭu II, -šu I +sīhu II +argānu I +barīrātu I +kukuru I +burāšu I +ṣumlalû I +kanaktu I +suādu I +ina I +mû I +būru I + + + + +bahrūtu I, -šu I +ana I +šuburru I, -šu I +šapāku I +ešer I + +kukuru I +pašāšu I, -šu I, -ma I +qerbu II, -šu I +ešēru I, -ma I +balāṭu II +šumma I +awīlu I +anšūtu I +ṣabātu I, -šu I, -ma I +lā I +redû I +šikaru I, rēštû I +ina I +tangussu I +bašālu I +ṭabtu I +ana I +libbu I +nadû III +ana I +šuburru I, -šu I +šapāku I +ubānu I, -ka I +kitû I +lawû II +ṭabtu I +ṣapû II +šuburru I, -šu I +kâru I +šārtu I +biṣṣūru I +šību I +ina I +qablu I +pû I, -šu I +šakānu I +nêšu I +šumma I +awīlu I +šikaru I, rēštû I +šatû II, -ma I +išdu I, -šu I +palāqu I +diglu I +maṭû II +ana I +balāṭu II, -šu I +zēru II +sikillu I +zēru II +ēdu I +zēru II +bīnu II +zēru II +amhara I +zēru II +maštakal I +hamiš I +šammu I +annû I +ištēniš I +sâku I +ina I +karānu I +mahāṣu I +lā I +patānu I +šatû II, -ma I +nêšu I +šumma I +awīlu I +šikaru I +šatû II, -ma I +qaqqadu I, -šu I +ṣabātu I, -šu I +awātu I, -šu I +mašû II +ina I +qabû II, -šu I +pašāṭu I +ṭēmu I, -šu I +lā I +ṣabātu I +awīlu I +šū I +īnu I, -šu I +izuzzu I +ana I +balāṭu II, -šu I +imhur-līm I +imhur-ešrā I +tarmuš I +hašû III +sikillu I +ēdu I +imbû I +tiāmtu I +nuhurtu I +zēru II +egemgiru I +kamkadu I +elkulla I +ištēnšeret I +šammu I +annû I +ištēniš I +sâku I +ina I +šamnu I +u I +šikaru I +ana I +pānu I +Gula I +biātu I +ina I +šēru II +lāma I +šamšu I +napāhu I +lāma I +mamman I +našāqu I, -šu I +šatû II, -ma I +nêšu I +šumma I +awīlu I +irtu I, -šu I +marāṣu I, -ma I +kīma I +šini'tu I +eperu I +rašû I +ina I +dabābu II, -šu I +ikku I, -šu I +karû II +u I +martu I +parû IV +awīlu I +šū I +bišītu I +libbu I +marāṣu I +ana I +balāṭu II, -šu I +lišānu I +kalbu I +ina I +šikaru I +lā I +patānu I +šaqû III, -šu I +ina I +mû I +kasû II +rahāṣu I +mû I +šunû II +ana I +šuburru I, -šu I +šapāku I +qēmu I +kakkû I +urnû I +ina I +takkussu I +ina I +pû I, -šu I +šadādu I +ṭūru I +lipiu I +suluppu I +burāšu I +kukuru I +ištēniš I +balālu I +ina I +mašku I +ṭerû I +ṣamādu II +šammu I +peṣû I +ina I +šamnu I +ašru III +šanû I +kasû II +ašru III +šanû I +mû I +urnû I +u I +kasû II +kukuru I +ašru III +šanû I +burāšu I +kukuru I +šanû I +aru I +libāru I +aru I +šunû II +aru I +ēru II +bītu I +zubbu I +kalbu I +šamnu I +ištēniš I +balālu I + +šammu I +peṣû I +ina I +šamnu I +šaqû III, -šu I +ina I +mû I +kasû II +rahāṣu I, -šu I, -ma I +mû I +nurmû I +ana I +šuburru I, -šu I +šapāku I, -ma I +hallūru I +kukuru I +šadādu I, -ma I +burāšu I +ṭūru I +hīlu I +baluhhu I +bīnu II +sikillu I +ištēniš I +sâku I +ina I +lipiu I +balālu I +irtu I, -šu I +ṣamādu II, -ma I +nêšu I +lišānu I +kalbu I +ina I +šikaru I +šatû II +ina I +mû I +kasû II +ašru III +šanû I +kasû II +burāšu I +kukuru I +ṣumlalû I +rīqu II +kalāma I +aru I +libāru I +aru I +šūšu I +ašru III +šanû I +šumma I +awīlu I +dikšu I +ina I +irtu I, -šu I +lapātu I, -šu I, -ma I +kīma I + +eperu I +šanā'u I, -šum I +ina I +gešû I, -šu I +martu I +parû IV +ina I +dabābu II, -šu I +ikku I, -šu I +karû II +awīlu I +šū I +bišītu I +libbu I +marāṣu I +nūnu I +šūmū I +šīru I +alpu I +šīru I +šahû I +u I +šikaru I +sābû I +lā I +mahāru I +našāru I + +qû II +sahliu I + +qû II +kukuru I + +qû II +burāšu I + +qû II +zēru II +kitû I + +qû II +kanaktu I + +qû II +suādu I + +qû II +zēru II +qutru I + +qû II +kasû II + +qû II +zēru II +šunû II + +qû II +kiššanu I + +qû II +pappāsītu I + +qû II +zēru II +kamantu I + +ešer I + +hīlu I +baluhhu I +ešer I + +imbû I +tiāmtu I + + +šammu I + +šumma I + + + +ṣētu I +dekû II +hašālu I +napû II + +bīnu II +maštakal I +rahāṣu I, -ma I +balāṭu II +ana I +ašru III +šanû I + +ina I +šikaru I +lā I +patānu I +šatû II, -ma I +balāṭu II +ana I +ašru III +šanû I + +uhūlu I, qarnānû I +ištēniš I +sâku I +ina I +šikaru I, rēštû I +lâšu I +ina I +mašku I +ṭerû I +ṣamādu II + +lâšu I +ina I +mašku I +šanû I + +lâšu I +ina I +rēšu I +libbu I, -šu I +ṣamādu II, -ma I +balāṭu II + + +ina I +ṭābātu I +dannu I +lâšu I +rēšu I +libbu I, -šu I +ṣamādu II, -ma I +balāṭu II + + +uriyānu I +abālu I +hašālu I +napû II +ina I +šikaru I +lâšu I +ašru III +šanû I +ana I +ašru III +šanû I + + + + + +hašû III +atā'išu I +zību III +tarmuš I + + + + + + +ištēniš I +sâku I +ina I +šikaru I +šatû II +ummu II +ša I +libbu I, -šu I +šahāṭu II +balāṭu II +šumma I +awīlu I + + + + +itti I +ru'tu I, -šu I +dāmu I +nadû III +kiṣirtu I +libbu I +marāṣu I +ṣētu I +kašādu I +libbu I, -šu I +qerbēnu I +marāṣu I +urnû I +piqannu I +ṣabītu I +zēru II +qudru I +zēru II +maštakal I +kukuru I +šina II + +imbû I +tiāmtu I +hašālu I +ina I +mû I +būru I +rabāku I +târu I, -ma I +abālu I +hašālu I +ina I +mû I +suluppu I +ina I +kannu I +rabāku I +ina I +ṣubātu I +ṭerû I +rēšu I +libbu I, -šu I +urru I +u I +mūšu I +ṣamādu II +paṭāru I, -šu I, -ma I +mû I +būru I +habû III +šammu I +peṣû I +sâku I +ina I +šamnu I +halṣu I +lišānu I, -šu I +ṣabātu I +šatû II +arû III +ṣamādu I, -šu I +šaqû III, -šu I +ištu I +šatû II + +qû II +zēru II +bīnu II + +qû II +karānu I +šēlebu I + +qû II +burāšu I + +qû II +suluppu I + +qû II +qēmu I +kibtu I +hašālu I +ina I +mû I +kasû II +rabāku I +târu I, -ma I +abālu I +hašālu I +ina I +mû I +suluppu I +ina I +kannu I +rabāku I +ina I +ṣubātu I +ṭerû I +urru I +u I +mūšu I +ṣamādu II +ana I +ašru III +šanû I +aru I +nurmû I +aru I +libāru I +aru I +pillû I +zikaru I +haṣbu III +šeleppû I +hīlu I +baluhhu I +hašālu I +ina I +mû I +suluppu I +ina I +kannu I +rabāku I +târu I, -ma I +abālu I +hašālu I +ina I +šikaru I +u I +šamnu I +ina I +kannu I +rabāku I +ina I +ṣubātu I +ṭerû I +urru I +u I +mūšu I +ṣamādu II +sīku I +tīyatu I +ina I +šikaru I +lā I +patānu I +šatû II + +qû II +zû I +summatu I + +qû II +zēru II +kamantu I + +qû II +inbu I +kalbānu I +hašālu I +ina I +mû I +kasû II +rabāku I +târu I, -ma I +abālu I +hašālu I +ina I +mû I +suluppu I +ina I +kannu I +rabāku I +ina I +ṣubātu I +ṭerû I +urru I +u I +mūšu I +ṣamādu II +ana I +ašru III +šanû I + +qû II +zēru II +ēdu I + +qû II +kirbānu I +eqlu I +arqu I + +qû II +rikibtu I +argabu I + +qû II +qēmu I +kunāšu I +hašālu I +ina I +mû I +nāru I +rabāku I +târu I, -ma I +abālu I +hašālu I +napû II +ina I +mû I +suluppu I +ina I +kannu I +rabāku I +ina I +ṣubātu I +ṭerû I +urru I +u I +mūšu I +ṣamādu II +zēru II +karānu I +šēlebu I +ina I +šikaru I +lā I +patānu I +šatû II +ina I +mû I +bašālu I +rahāṣu I, -šu I +ana I +ašru III +šanû I +sahliu I +ina I +šikaru I +šatû II +zēru II +qudru I +zēru II +ēru II +zēru II +bīnu II +kukuru I +hašālu I +ina I +mû I +kasû II +rabāku I +târu I, -ma I +abālu I +hašālu I +ina I +mû I +suluppu I +ina I +kannu I +rabāku I +ina I +ṣubātu I +ṭerû I +urru I +u I +mūšu I +ṣamādu II +ana I +ašru III +šanû I +burāšu I +kukuru I +ṭūru I +ṣumlalû I +barīrātu I +baluhhu I +erēnu I +šurmēnu I +ballukku I +hašālu I +ina I +mû I +kasû II +rabāku I +târu I, -ma I +abālu I +hašālu I +ina I +mû I +suluppu I +u I +šikaru I +ina I +kannu I +rabāku I +ina I +ṣubātu I +ṭerû I +urru I +u I +mūšu I +ṣamādu II +gabû I +ina I +šikaru I +šatû II +ana I +ašru III +šanû I +aru I +kūru III +aru I +sikillu I +aru I +maštakal I +inbu I +karašu I +inbu I +nurmû I +zēru II +haluppu I +aru I +ṣarbatu I +hašālu I +ina I +mû I +kasû II +ina I +kannu I +rabāku I +ina I +ṣubātu I +ṭerû I +urru I +u I +mūšu I +ṣamādu II +ina I +mû I +bašālu I +rahāṣu I, -šu I +šammu I +annû I +ina I +šamnu I +u I +šikaru I +lā I +patānu I +šatû II +arû III, -šu I, -ma I +ṭābu I +akālu I +ṭābu I +šatû II +kalû II +ūmu I +u I +mūšu I +ina I +bābu I +izuzzu I +ina I +eršu IV, -šu I +lā I +nâlu I +ina I +šēru II +mû I +emmu I +ramāku I, -šu I +šamnu I +emmu I +pašāšu I +šalāš I, ūmu I +târu I, -šum I +šumma I +awīlu I +itti I +ru'tu I, -šu I +dāmu I +nadû III +awīlu I +šū I +tašnīqu I +marāṣu I +ana I +balāṭu II, -šu I + +qû II +lipiu I + +qû II +suluppu I + +qû II +ṭūru I + +qû II +kukuru I + +qû II +burāšu I + +qû II +baluhhu I + +qû II +kupsu I + +qû II +zēru II +bīnu II +samāne I +šammu I +annû I +ištēniš I +hašālu I +ina I +himētu I +lapātu I +ina I +mašku I +ṭerû I +pānu I +u I +naglabu I +adi I +ṭiābu I, -šum I +šalāš I +warhu I +ṣamādu II, -šu I, -ma I +naṣmattu I +ina I +pû I, -ka I +aṣû I, -ma I +nêšu I +šumma I +awīlu I +kiṣru I +libbu I +marāṣu I +akalu I +u I +šikaru I +libbu I, -šu I +lā I +mahāru I, -šum I +ina I +pû I, -šu I +târu I +tākaltu I, -šu I +sahālu I, -šu I +ana I +balāṭu II, -šu I + +qû II +sahliu I + +qû II +kukuru I + +qû II +burāšu I + +qû II +qudru I + +qû II +kasû II + +qû II +pappāsītu I + +qû II +nīnû I + +qû II +kamantu I + +qû II +suluppu I + +qû II +billatu I +našpu I + +qû II +qēmu I +buqlu I + +qû II +qēmu I +hallūru I + +qû II +isqūqu I + +qû II +qēmu I +kibtu I + +qû II +zû I +summatu I + +qû II +erištu I, erištu II +eqlu I +ešer I + +murru I +ešer I + +imbû I +tiāmtu I + +šammu I +annû I +ištēniš I +hašālu I +napû II +ina I +šikaru I +ina I +tangussu I +kīma I +rabīku I +rabāku I +ina I +mašku I +ṭerû I +šalāš I +ūmu I +rēšu I +libbu I, -šu I +ṣamādu II +akalu I +u I +šikaru I +libbu I, -šu I +mahāru I, -šum I, -ma I +nêšu I +šumma I +awīlu I +kiṣru I +libbu I +marāṣu I +akalu I +u I +šikaru I +libbu I, -šu I +lā I +mahāru I, -šum I +ina I +pû I, -šu I +târu I +parû IV +ana I +balāṭu II, -šu I + +qû II +mû I +suluppu I + +qû II +mû I +kasû II +ešer I + +nīnû I +sâku I +ana I +libbu I +nadû III +balu I +patānu I +šaqû III, -šu I +arki I, -šu I + +qû II +šiqqu I +šatû II +ina I +šuburru I, -šu I +ešēru I, -ma I +akalu I +u I +šikaru I +libbu I, -šu I +ašru III +šanû I +ana I +ašru III +šanû I +ṭabtu I +šadû I +ṭabtu I +amānu I +ištēniš I +sâku I +ina I +šikaru I +lā I +patānu I +šatû II, -ma I +nêšu I +ana I +ašru III +šanû I +qēmu I +labtu I +qēmu I +harūbu I +qilpu I +suluppu I +sâku I +ina I +šikaru I +šina II +ūmu I +balu I +patānu I +šaqû III, -šu I +mû I +lā I +šatû II +mû I +rēšu I +libbu I, -šu I +salāhu I, -ma I +nêšu I +šumma I +awīlu I +akalu I +u I +šikaru I +libbu I, -šu I +lā I +mahāru I, -šum I +šīru I, -šu I +ramû III +šāru I +ina I +šuburru I, -šu I +sahāru I +ana I +balāṭu II, -šu I + +qû II +mû I +suluppu I + +qû II +mû I +kasû II +šina II +šiqlu I +ṭābātu I +šina II +šiqlu I +nīnû I +šalāš I +šiqlu I +šamnu I +halṣu I +šalāš I +šiqlu I +dišpu I +šadû I +ištēniš I +emēdu I +hašālu I +ina I +mūšu I +ina I +pānu I +Enzu I +biātu I +ina I +šēru II +bašālu I +šahālu I +kaṣû III +ina I +libbu I +hesû I +arki I, -šu I +šatû II +mû I +u I +šikaru I +malû IV +sīhu II +argānu I +barīrātu I +kasû II +aru I +kasû II +zēru II +šunû II +ana I +libbu I +nadû III +bašālu I +šahālu I +marhaṣu I + +ina I +libbu I +rahāṣu I, -šu I +šamnu I +zumru I, -šu I +pašāšu I +karānu I +šēlebu I +lišānu I +kalbu I +sâku I +ina I +šikaru I +šaqû III, -šu I +aru I +libāru I +aru I +šūšu I +abālu I +ištēniš I +hašālu I +napû II +ina I +lipiu I +balālu I +ina I +mašku I +ṭerû I +ṣamādu II, -šu I, -ma I +nêšu I +šumma I +awīlu I +rēšu I +libbu I, -šu I +akālu I, -šum I +ina I +gešû I, -šu I +martu I +mâ'u I +awīlu I +šū I +qerbēnu I +marāṣu I +ṭuppu I +šina II +šumma I +awīlu I +suālu I +marāṣu I +ana I +kīsu III +libbu I +târu I +ēkallu I +Aššur-bani-apli I +šarru I +kiššatu I +šarru I +mātu I +Aššur I +ša I +Nabu I +u I +Tašmetu I +uznu I +rapšu I +šarāku I, -šum I +ahāzu I +īnu I +nawirtu I +nisqu I +ṭupšarrūtu I +ša I +ina I +šarru I +āliku I +mahru II, -ya I +mamman I +šipru I +šuāti I +lā I +ahāzu I +bulṭu I +ištu I +muhhu I +adi I +ṣupru I +liqtu I +ahû I +tāhīzu I +naklu I +azugallūtu I +Ninurta I +u I +Gula I +mala I +bašāmu II +ina I +ṭuppu I +šaṭāru II +sanāqu I +barû I, -ma I +ana I +tāmartu I +šasû I, -ya I +qerbu II +ēkallu I, -ya I +kânu I +sebe I +u I +sebe I +kiṣru I + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +epuštu I +tabarru I + + + + + + + + + + + + +šakāku I +šiptu I + + + + + + + + + + + + + + + + + + + + + + + + + + + + +epuštu I +aru I +gišimmaru I +ša I +ištānu I +ša I +ina I +ul I +šāru I +nazāzu I +leqû II + + + + +kaṣāru I +šiptu I +sebîšu I +manû IV +ina I +nakkaptu I, -šu I +rakāsu I, -ma I +balāṭu II + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +ašû I +ana I +qaqqadu I, -šu I + + +ṭābtu I +ina I +zumru I +awīlu I +bašû I +ana I +ṣibtu I +ṭābtu I + + +rēšu I +tinūru I +ana I +muhhu I +zarû II +ṣamādu II, -šu I, -ma I + + +huluhhu I +kutpû I +sâku I +ina I +himētu I +balālu I +muhhu I, -šu I +pašāšu I +sar'u I + + +dāmu I, -šu I +leqû II +muhhu I, -šu I +pašāšu I +samānu I +ša I +igāru I +sâku I + + + +manû IV +šiptu I + + + + + + + + +ašû I +muttaprišu I +ṣabātu I +kukuru I +kasû II +u I +ṭabtu I +ištēniš I +sâku I +ina I +mû I +qaqqadu I, -šu I + + +ašû I +ṣabātu I +šuršu I +šūšu I +kamūnu I +ina I +šikaru I, rēštû I +ramāku I +ina I +kakkabu I +biātu I +ina I +šēru II + + +akālu I +balāṭu II +handû I +erēru I +sâku I +ina I +šamnu I +u I +šikaru I +pašāšu I +šapiltu I +ašāgu I + + +ašû I +ahāzu I +erištu II +kasû II +ṣamādu II +zēru II +uriyānu I +ina I +šamnu I +sâku I +qaqqadu I, -šu I +pašāšu I, -ma I + + +qaqqadu I, -šu I +ṣamādu II +sahliu I +ina I +šikaru I +šatû II +hīlu I +baluhhu I +ana I +pû I, -šu I +šakānu I +mû I +suluppu I + + +lā I +patānu I +šatû II +šamnu I +u I +šikaru I +šatû II, -ma I +arû III + +qû II +šuršummu I +šikaru I + +qû II + + + +eliš I +ana I +šapliš I +mašādu I +ūmu I +ešer I +ṣamādu II +šuršu I +šūšu I + + +uriyānu I +ina I +šamnu I +sâku I +qaqqadu I, -šu I +u I +kalû II +šīru I, -šu I + + +šaptu I, -šu I +napāhu I +qaqqadu I, -šu I +ana I +pānu I, -šu I +šadādu I +qātu I, -šu I + + + + +eqû I + + +eqû I + + + + +ina I +šamnu I +sâku I +ašru III, šanû I + +ašru III, šanû I + + +īnu I, -šu I +eqû I + + + + + + + + +kutpû I +mūṣu I +zalāqu I +sāmtu I + + + + +annaku I +muššāru I +zēru II +bīnu II +zēru II +ēru II + +šammu I +annû I +ištēniš I +hašālu I +šapāhu I +ina I +lipiu I +kalītu I +alpu I +ṣalmu I + +pānu I +kayyamānû I, -ma I +eqû I +nêšu I +šumma I +awīlu I +inūma I +birṣu I +amāru I +šalāšī- I, -šu I +kīam I +qabû II +ša I +Ellil I +u I +Ninlil I +anāku I +ša I +ištaru I +u I +Nanaya I +anāku I +qabû II +balāṭu II +šumma I + +ana I +imittu I +izuzzu I +leqû II +ina I +išātu I +kabābu II + +ina I +dišpu I +himētu I +sâku I +īnu I, -šu I +eqû I +nêšu I + +lumnu I +birṣu I +ana I +awīlu I +lā I +ṭehû I +agubbû I +kânu I +ana I +libbu I +bīnu II +maštakal I + +sikillu I +gišimmaru I +ēru II +ašūhu I +hašhūru I +tittu I +šunû II +nikiptu II +zikaru I +u I +sinnišu I + +ina I +kakkabu I +biātu I +ina I +šēru II +pānu I +šamšu I +ina I +bītu I +ṭābu I +ramāku I, -šu I +kalû IV +kalgukku I +imbû I, tiāmtu I + +ina I +šamnu I +asu I +balālu I +pašāšu I, -šu I, -ma I +kaspu I +hurāṣu I +amāru I +lumnu I +birṣu I +ana I +awīlu I +lā I +ṭehû I +šumma I + + + +bīnu II +maštakal I +gišimmaru I +hašhūru I +tittu I +ašūhu I +ana I +libbu I +mû I +būru I +nadû III + +ina I +kakkabu I +biātu I +ina I +šēru II + +kalû IV +kalgukku I +imbû I, tiāmtu I +ina I +šamnu I +baluhhu I +balālu I +pašāšu I, -šu I, -ma I +ṣubātu I +ebbu I + +lumnu I +birṣu I +ana I +awīlu I +lā I +ṭehû I + + + +šumma I +awīlu I +mukillu I +rēšu I +lemuttu I +ṣabātu I + +lū I +zikaru I +lū I +sinništu I +ina I +ūru I +elû III + +nadû III +ina I +mūšu I +kīma I +šamšu I +erēbu I + +mahru II +aptu I +zidubdubbû I +nadû III + +lā I +petû I + +u I +mūšu I +šâti I +eršu IV +ṣalālu I + + +šumma I +awīlu I +mukillu I +rēšu I +lemuttu I +ṣabātu I, -šu I +mašqītu I +narmaktu I + +ana I +ašru III, šanû I +ummu II +ina I +zumru I, -šu I +lazāzu I, -ma I +u I +magal I +lahābu I + + +u I +zūtu I +rašû I +mû I +bāqilu I +u I +šīnātu I +awīlūtu I +erēnu I +burāšu I + +ina I +tinūru I +sekēru II +rahāṣu I +ešer I + +ašāgu I + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +kikiṭṭû I +sebe I + + +ina I +ṭurru I +šīpātu I +sāmu I +šakāku I +šammu I + + +imhur-līm I + + +sikillu I +kiškanû I +zēru II +bīnu II + + + + +lapāpu I +ina I +pūtu I, -šu I +rakāsu I + + + + + + + +šiptu I +epinnu I + + + + +gergiššu I +ai I + + + +tīru I +eqlu I +erēšu I +lā I + + + + +eqlu I +idrānu I + + + +ša I +tīru I +lā I +bašû I + +kīma I +idrānu I +ai I +aṣû I + +gergiššu I +ai I +banû IV + + +gergiššu I + + + + + +šumma I +awīlu I +qaqqadu I, -šu I +simmu I +matqu I +himṭu I +ṣētu I +malû IV +lipiu I + + + + + + + + + +ina I +šamnu I +erēnu I +balālu I +qaqqadu I, -šu I + + + + + + + + +ēru II +murrānu I +šumu I, -šu I +abālu I +sâku I +šalāšu I +ina I + + + + + + + + +ṣubātu I + +pašāšu I +zakû II, -šu I + + + + +murru I +šumu I, -šu I +abālu I +sâku I +ina I +mû I +balālu I + + + + +ṣubātu I + +pašāšu I +zakû II, -šu I +napāhu I +imhur-līm I +ina I +šamnu I +erēnu I +balālu I + + + +šumma I +awīlu I +qaqqadu I, -šu I +simmu I +matqu I +malû IV +zappu I +šahû I +ṭabtu I +isqūqu I +eṣemtu I +ša I +immeru I +erēru I +qaqqadu I, -šu I +gullubu II +šamnu I +pašāšu I +zarû II +ina I +šamnu I +pašāšu I +šammu I +peṣû I +sâku I +zarû II +šuršu I +errû I +abālu I +hašālu I +zarû II +qēmu I +buqlu I +isqūqu I +eṣemtu I +immeru I +ištēniš I +erēru I +sâku I +zarû II +târu I +annuharu I +gabû I +ištēniš I +bašālu I +sâku I +ina I +šamnu I +pašāšu I + + + + + + + +ṭābātu I +pašāšu I +nīnû I +sâku I +zarû II +qadūtu I +ina I +mû I +suluppu I +lâšu I +ṣamādu II +kalbānu I +qalû II +himētu I +pašāšu I + + + + +sâku I +zarû II +nurmû I +sâku I +zarû II +kabūtu I +ṣēnu III +ina I +šikaru I +lâšu I +ṣamādu II + + + +erēru I +sâku I + +šumma I +awīlu I +qaqqadu I, -šu I +simmu I +matqu I +malû IV +qaqqadu I, -šu I +gullubu II +sahliu I +sâku I +ešer I +šiqlu I +hīlu I +baluhhu I +hamiš I +šiqlu I +ṭūru I + + +uhūlu I, qarnānû I +kukuru I +burāšu I +ana I +libbu I +nadû III +ina I +ṭābātu I +balālu I + + + +ṣamādu II, -ma I +balāṭu II +šumma I +ašru III, šanû I +ṭabtu I +amānu I +šarāpu I +šuhtu I +gabû I +ištēniš I +samāhu I +ina I +ṭābātu I +balālu I +ṣamādu II, -šu I + +lā I +paṭāru I +ina I +paṭāru I, -ka I +šīnātu I +emmu I +mesû II +qēmu I +bappiru I +dāmu I +erēnu I +pašāšu I + +šammu I +annû I, -ma I +zarû II +ṣamādu II, -šu I, -ma I +balāṭu II +šumma I +ašru III, šanû I +rušruššu I +šammu I +peṣû I +qilpu I +nurmû I +abnu I +suluppu I +kirbānu I, eqlu I +sahliu I +qalû I +inbu I +nīnû I +nuhurtu I +zību III +ina I +urṣu I +sâku I +qēmu I +bappiru I +dāmu I +erēnu I +pašāšu I +šammu I +annû I +zarû II +ṣamādu II, -šu I, -ma I +balāṭu II +šumma I +ašru III, šanû I +šīnātu I +emmu I +ša I +alpu I +ina I +ṭābātu I +dannu I +lâšu I + +ṣamādu II, -šu I + + +-šu I + + + + +ana I +pānu I +simmu I +šakānu I +būšānu I +abnu I +suluppu I +erēru I +sâku I + + + + + + +zarû II +šumma I +ašru III, šanû I +nurmû I +emṣu I +zību III + + + +dišpu I + + +ina I +išātu I +šahānu I + + + +qaqqadu I, -šu I +mesû II +gullubu II + + + + +pašāšu I, -ma I +balāṭu II +šumma I +awīlu I +qaqqadu I, -šu I +simmu I + + + + + + + + + + + + + + + +šumma I +awīlu I + +qaqqadu I, -šu I + + + +šumma I +ašru III, šanû I +uhūlu I, qarnānû I +hašālu I +napû II + + + +šumma I +ašru III, šanû I +šīnātu I +lītu II +emmu I +qaqqadu I, -šu I + + +šumma I +awīlu I +qablu I +qaqqadu I, -šu I +zaqātu I, -šu I +muhhu I, -šu I + + + + + + + +ṭuppu I +erbe I +šumma I +awīlu I +muhhu I, -šu I +ummu II +kullu III +ēkallu I +Aššur-bani-apli I +šarru I +kiššatu I +šarru I +mātu I +Aššur I +ša I +Nabu I +u I +Tašmetu I +uznu I +rapšu I +šarāku I, -šum I +ahāzu I +īnu I +nawru I +nisqu I +ṭupšarrūtu I +ša I +ina I +šarru I +alāku I +mahru II, -ya I +mamman I +šipru I +šū I +lā I +ahāzu I +bulṭu I +ištu I +muhhu I +adi I +ṣupru I +liqtu I +ahû I +tāhīzu I +naklu I +azugallūtu I +Ninurta I +u I +Gula I +mala I + + +bašāmu II +ina I +ṭuppu I +šaṭāru II +sanāqu I +barû I +ana I +tāmartu I +šasû I +qerbu II +ēkallu I, -ya I +kânu I + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +epuštu I +ašlu I +zikaru I + + + + + + + + + + + + + +ēm I +kiṣru I +šiptu I +manû IV + + + + + + + + + + + +itti I +kiṣru I +ina I +tabarru I +lawû II + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Elulu I + + + + + + + + + + + + + + + + + + + + + +bašālu I +akālu I + + + + + + + + + + + + + + + + +akālu I diff --git a/tf/0.3/lln.tf b/tf/0.3/lln.tf new file mode 100644 index 0000000..6deba71 --- /dev/null +++ b/tf/0.3/lln.tf @@ -0,0 +1,3092 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=logical line number of a numbered line +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=int +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +59314 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 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +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 +9 +10 +11 +12 +1 +2 +3 +4 +5 +6 +7 +8 +9 +1 +2 +3 +4 +5 +6 +7 +8 +1 +2 +3 +4 +5 +6 +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 +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 +1 +2 +3 +4 +5 +6 +7 +8 +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 +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 +1 +2 +3 +4 +5 +6 +7 +8 +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 +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 +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 +1 +2 +3 +4 +5 +6 +7 +8 +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 +1 +2 +3 +4 +5 +6 +7 +8 +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 +1 +2 +3 +4 +5 +6 +7 +8 +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 +1 +2 +3 +4 +5 +6 +7 +8 +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 +1 +2 +3 +4 +5 +6 +7 +8 +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 +1 +2 +3 +4 +5 +6 +7 +8 +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 +1 +2 +3 +4 +5 +6 +7 +8 +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 +1 +2 +3 +4 +5 +6 +7 +8 +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 +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 +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 +1 +2 +3 +4 +5 +6 +7 +8 +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 +1 +2 +3 +4 +5 +6 +7 +8 +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 +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 +1 +2 +3 +4 +5 +6 +7 +8 +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 +1 +2 +3 +4 +5 +6 +7 +8 +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 +1 +2 +3 +4 +5 +6 +7 +8 +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 +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 +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 +1 +2 +3 +4 +5 +6 +7 +8 +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 +1 +2 +3 +4 +5 +6 +7 +8 +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 +1 +2 +3 +4 +5 +6 +7 +8 +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 +1 +2 +3 +4 +5 +6 +7 +8 +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 +1 +2 +3 +4 +5 +6 +7 +8 +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 +1 +2 +3 +4 +5 +6 +7 +8 +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 +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 +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 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +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 +14 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 diff --git a/tf/0.3/ln.tf b/tf/0.3/ln.tf new file mode 100644 index 0000000..d447e7c --- /dev/null +++ b/tf/0.3/ln.tf @@ -0,0 +1,3023 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=ATF line number of a numbered line, without prime +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=int +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +59314 1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +59330 1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +59345 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 +59380 1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +59399 1 +2 +3 +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 +1 +2 +3 +4 +5 +6 +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 +26 +27 +28 +29 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +59496 1 +2 +3 +4 +5 +6 +7 +8 +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 +59567 9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +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 +59622 1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +52 +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 +47 +48 +49 +50 +51 +59701 62 +63 +64 +65 +59706 1 +2 +3 +4 +5 +6 +7 +8 +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 +59773 1 +2 +3 +4 +5 +6 +7 +8 +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 +59839 1 +2 +3 +4 +5 +6 +7 +8 +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 +1 +2 +3 +4 +5 +6 +7 +8 +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 +59970 1 +2 +3 +4 +5 +6 +7 +8 +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 +60040 1 +2 +3 +4 +5 +6 +7 +8 +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 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +60107 1 +2 +3 +4 +5 +6 +7 +8 +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 +60199 1 +2 +3 +60203 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 +60257 47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +60276 1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +60309 55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +60322 1 +2 +3 +4 +5 +6 +7 +8 +9 +60333 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 +60366 1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +60386 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 +1 +2 +3 +4 +5 +6 +7 +8 +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 +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 +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 +1 +2 +3 +4 +5 +6 +7 +8 +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 +5 +6 +7 +8 +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 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +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 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +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 +60821 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 +35 +36 +37 +38 +39 +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 +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 +1 +2 +3 +4 +5 +6 +7 +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 +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 +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 +1 +2 +3 +4 +5 +6 +7 +8 +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 +1 +2 +3 +4 +5 +6 +7 +8 +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 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +61309 1 +2 +3 +4 +5 +6 +7 +8 +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 +61347 1 +2 +3 +4 +5 +6 +7 +8 +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 +61394 1 +2 +3 +4 +5 +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 +61436 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 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +61490 1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +61513 1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +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 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +61620 1 +2 +3 +4 +5 +6 +7 +8 +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 +61691 1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +41 +42 +43 +44 +45 +61727 1 +2 +3 +4 +5 +6 +7 +8 +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 +61783 26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +61807 1 +2 +3 +4 +5 +6 +7 +8 +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 +61886 1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +61898 20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +61917 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 +61957 1 +2 +3 +4 +5 +6 +7 +8 +61967 32 +33 +34 +35 +36 +61973 1 +2 +3 +4 +5 +6 +7 +8 +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 +62013 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 +62045 1 +2 +3 +4 +5 +6 +7 +8 +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 +62111 1 +2 +3 +4 +5 +6 +7 +8 +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 +62185 1 +2 +3 +4 +5 +6 +7 +8 +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 +62266 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 +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 +62345 1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +62371 52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +62384 1 +2 +3 +4 +5 +6 +7 +8 +62393 1 +2 +3 diff --git a/tf/0.3/lnno.tf b/tf/0.3/lnno.tf new file mode 100644 index 0000000..5b7f6e1 --- /dev/null +++ b/tf/0.3/lnno.tf @@ -0,0 +1,3092 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=ATF line number, may be $ or #, with prime; column number prepended +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=str +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +59314 1' +2' +3' +4' +5' +6' +7' +8' +9' +10' +11' +12' +13' +14' +15' +!1 +1' +2' +3' +4' +5' +6' +7' +8' +9' +10' +11' +12' +13' +!15 +!1 +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +1:1' +1:2' +1:3' +1:4' +1:5' +1:6' +1:7' +1:8' +1:9' +1:10' +1:11' +1:12' +1:13' +2:1' +2:2' +2:3' +2:4' +!1:1 +1:1 +1:2 +1:3 +1:4 +1:5 +1:6 +1:7 +1:8 +1:9 +1:10 +1:11 +1:12 +1:13 +1:14 +1:15 +1:16 +1:17 +1:18 +!1:20 +2:1 +2:2 +2:3 +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' +1' +2' +3' +4' +5' +6' +1':1' +1':2' +1':3' +1':4' +1':5' +1':6' +1:1 +1:2 +1:3 +1:4 +1:5 +1:6 +1:7 +1:8 +1:9 +1:10 +1:11 +1:12 +1:13 +1:14 +1:15 +1:16 +1:17 +1:18 +1:19 +1:20 +1:21 +1:22 +1:23 +1:24 +1:25 +1:26 +1:27 +1:28 +1:29 +1:50' +1:51' +1:52' +1:53' +1:54' +1:55' +1:56' +1:57' +1:58' +1:59' +1:60' +1:61' +1:62' +1:63' +1:64' +1:65' +1:66' +1:67' +1:68' +1:69' +1:70' +1:71' +1:72' +!1:53 +2:1 +2:2 +2:3 +2:4 +2:5 +2:6 +2:7 +2:8 +2:9 +2:10 +2:11 +2:12 +2:13 +2:14 +2:15 +2:16 +2:17 +2:18 +2:19 +2:20 +2:21 +2:22 +2:23 +2:24 +2:25 +2:26 +2:27 +2:28 +2:29 +2:30 +2:31 +2:32 +2:33 +2:34 +2:35 +2:36 +2:37 +2:38 +2:39 +2:40 +2:41 +2:42 +2:43 +2:44 +2:45 +2:46 +2:47 +2:48 +2:49 +2:50 +2:51 +2:52 +2:53 +2:54 +2:55 +2:56 +2:57 +2:58 +2:59 +2:60 +2:61 +2:62 +2:63 +2:64 +2:65 +2:66 +2:67 +2:68 +2:69 +2:70 +!2:124 +3:9' +3:10' +3:11' +3:12' +3:13' +3:14' +3:15' +3:16' +3:17' +3:18' +3:19' +3:20' +3:21' +3:22' +3:23' +3:24' +3:25' +3:26' +3:27' +3:28' +3:29' +3:30' +3:34' +3:35' +3:36' +3:37' +3:38' +3:39' +3:40' +3:41' +3:42' +3:43' +3:44' +3:45' +3:46' +3:47' +3:48' +3:49' +3:50' +3:51' +3:52' +3:53' +3:54' +3:55' +3:56' +3:57' +3:58' +3:59' +3:60' +3:61' +3:62' +3:63' +3:64' +3:65' +!3:55 +4:1 +4:2 +4:3 +4:4 +4:5 +4:6 +4:7 +4:8 +4:9 +4:10 +4:11 +4:12 +4:13 +4:14 +4:41' +4:42' +4:43' +4:44' +4:45' +4:46' +4:47' +4:48' +4:49' +4:50' +4:52' +4:51' +1:1 +1:2 +1:3 +1:4 +1:5 +1:6 +1:7 +1:8 +1:9 +1:10 +1:11 +1:12 +1:13 +1:14 +1:15 +1:16 +1:17 +1:18 +1:19 +1:20 +1:21 +1:22 +1:23 +1:24 +1:25 +1:26 +1:27 +1:28 +1:29 +1:30 +1:31 +1:32 +1:33 +1:34 +1:35 +1:36 +1:37 +1:38 +1:39 +1:40 +1:41 +1:42 +1:43 +1:44 +1:45 +1:46 +1:47 +1:48 +1:49 +1:50 +1:51 +!1:52 +!1:53 +1:62' +1:63' +1:64' +1:65' +!1:58 +2:1 +2:2 +2:3 +2:4 +2:5 +2:6 +2:7 +2:8 +2:9 +2:10 +2:11 +2:12 +2:13 +2:14 +2:15 +2:16 +2:17 +2:18 +2:19 +2:20 +2:21 +2:22 +2:23 +2:24 +2:25 +2:26 +2:27 +2:28 +2:29 +2:30 +2:31 +2:32 +2:33 +2:34 +2:35 +2:36 +2:37 +2:38 +2:39 +2:40 +2:41 +2:42 +2:43 +2:44 +2:45 +2:46 +2:47 +2:48 +2:49 +2:50 +2:51 +2:52 +2:53 +2:54 +2:55 +2:56 +2:57 +2:58 +2:59 +2:60 +2:61 +2:62 +2:63 +2:64 +2:65 +2:66 +!2:125 +1:1 +1:2 +1:3 +1:4 +1:5 +1:6 +1:7 +1:8 +1:9 +1:10 +1:11 +1:12 +1:13 +1:14 +1:15 +1:16 +1:17 +1:18 +1:19 +1:20 +1:21 +1:22 +1:23 +1:24 +1:25 +1:26 +1:27 +1:28 +1:29 +1:30 +1:31 +1:32 +1:33 +1:34 +1:35 +1:36 +1:37 +1:38 +1:39 +1:40 +1:41 +1:42 +1:43 +1:44 +1:45 +1:46 +1:47 +1:48 +1:49 +1:50 +1:51 +1:52 +1:53 +1:54 +1:55 +1:56 +1:57 +1:58 +1:59 +1:60 +1:61 +1:62 +1:63 +1:64 +1:65 +!1:66 +2:1 +2:2 +2:3 +2:4 +2:5 +2:6 +2:7 +2:8 +2:9 +2:10 +2:11 +2:12 +2:13 +2:14 +2:15 +2:16 +2:17 +2:18 +2:19 +2:20 +2:21 +2:22 +2:23 +2:24 +2:25 +2:26 +2:27 +2:28 +2:29 +2:30 +2:31 +2:32 +2:33 +2:34 +2:35 +2:36 +2:37 +2:38 +2:39 +2:40 +2:41 +2:42 +2:43 +2:44 +2:45 +2:46 +2:47 +2:48 +2:49 +2:50 +2:51 +2:52 +2:53 +2:54 +2:55 +2:56 +2:57 +2:58 +2:59 +1' +2' +3' +4' +5' +6' +7' +1:1 +1:2 +1:3 +1:4 +1:5 +1:6 +1:7 +1:8 +1:9 +1:10 +1:11 +1:12 +1:13 +1:14 +1:15 +1:16 +1:17 +1:18 +1:19 +1:20 +1:21 +1:22 +1:23 +1:24 +1:25 +1:26 +1:27 +1:28 +1:29 +1:30 +1:31 +1:32 +1:33 +1:34 +1:35 +1:36 +1:37 +1:38 +1:39 +1:40 +1:41 +1:42 +1:43 +1:44 +1:45 +1:46 +1:47 +1:48 +1:49 +1:50 +1:51 +1:52 +1:53 +1:54 +1:55 +1:56 +1:57 +1:58 +1:59 +1:60 +1:61 +1:62 +1:63 +1:64 +!1:65 +2:1 +2:2 +2:3 +2:4 +2:5 +2:6 +2:7 +2:8 +2:9 +2:10 +2:11 +2:12 +2:13 +2:14 +2:15 +2:16 +2:17 +2:18 +2:19 +2:20 +2:21 +2:22 +2:23 +2:24 +2:25 +2:26 +2:27 +2:28 +2:29 +2:30 +2:31 +2:32 +2:33 +2:34 +2:35 +2:36 +2:37 +2:38 +2:39 +2:40 +2:41 +2:42 +2:43 +2:44 +2:45 +2:46 +2:47 +2:48 +2:49 +2:50 +2:51 +2:52 +2:53 +2:54 +2:55 +2:56 +2:57 +2:58 +2:59 +2:60 +2:61 +2:62 +2:63 +2:64 +2:65 +2:66 +2:67 +2:68 +2:69 +!2:135 +1:1 +1:2 +1:3 +1:4 +1:5 +1:6 +1:7 +1:8 +1:9 +1:10 +1:11 +1:12 +1:13 +1:14 +1:15 +1:16 +1:17 +1:18 +1:19 +1:20 +1:21 +1:22 +1:23 +1:24 +1:25 +1:26 +1:27 +1:28 +1:29 +1:30 +1:31 +1:32 +1:33 +1:34 +1:35 +1:36 +1:37 +1:38 +1:39 +1:40 +1:41 +1:42 +1:43 +1:44 +1:45 +1:48 +1:49 +1:50 +1:51 +1:52 +1:53 +1:54 +1:55 +1:56 +1:57 +1:58 +1:59 +1:60 +1:61 +1:62 +1:63 +1:64 +1:65 +1:66 +1:67 +1:68 +!1:67 +2:1 +2:2 +2:3 +2:4 +2:5 +2:6 +2:7 +2:8 +2:9 +2:10 +2:11 +2:12 +2:13 +2:14 +2:15 +2:16 +2:17 +2:18 +2:19 +2:20 +2:21 +2:22 +2:23 +2:24 +2:25 +2:26 +2:27 +2:28 +2:29 +2:30 +2:31 +2:32 +2:33 +2:34 +2:35 +2:36 +2:37 +2:38 +2:39 +2:40 +2:41 +2:42 +2:43 +2:44 +2:45 +2:46 +2:47 +2:48 +2:49 +2:50 +2:51 +2:52 +2:53 +2:54 +2:55 +2:56 +2:57 +2:58 +1:1' +1:2' +1:3' +1:4' +1:5' +1:6' +1:7' +1:8' +1:9' +1:10' +1:11' +1:12' +1:13' +1:14' +1:15' +1:16' +1:17' +1:18' +1:19' +1:20' +1:21' +1:22' +1:23' +1:24' +1:25' +1:26' +1:27' +1:28' +1:29' +1:30' +1:31' +1:32' +1:33' +!1:34 +2:1' +2:2' +2:3' +!2:38 +2:1' +2:2' +2:3' +2:4' +2:5' +2:6' +2:7' +2:8' +2:9' +2:10' +2:11' +1:1 +1:2 +1:3 +1:4 +1:5 +1:6 +1:7 +1:8 +1:9 +1:10 +1:11 +1:12 +1:13 +1:14 +1:15 +1:16 +1:17 +1:18 +1:19 +1:20 +1:21 +1:22 +1:23 +1:24 +1:25 +1:26 +1:27 +1:28 +1:29 +1:30 +1:31 +1:32 +1:33 +1:34 +1:35 +1:36 +1:37 +1:38 +1:39 +1:40 +1:41 +!1:42 +!1:43 +1:47' +1:48' +1:49' +1:50' +1:51' +1:52' +1:53' +1:54' +1:55' +1:56' +1:57' +1:58' +1:59' +1:60' +1:61' +1:62' +1:63' +1:64' +!1:62 +2:1 +2:2 +2:3 +2:4 +2:5 +2:6 +2:7 +2:8 +2:9 +2:10 +2:11 +2:12 +2:13 +2:14 +2:15 +2:16 +2:17 +2:18 +2:19 +2:20 +2:21 +2:22 +2:23 +2:24 +2:25 +2:26 +2:27 +2:28 +2:29 +2:30 +2:31 +!2:94 +!2:95 +2:55' +2:56' +2:57' +2:58' +2:59' +2:60' +2:61' +2:62' +2:63' +2:64' +2:65' +!2:107 +!2:108 +1:1 +1:2 +1:3 +1:4 +1:5 +1:6 +1:7 +1:8 +1:9 +!1:10 +!1:11 +1:35' +1:36' +1:37' +1:38' +1:39' +1:40' +1:41' +1:42' +1:43' +1:44' +1:45' +1:46' +1:47' +1:48' +1:49' +1:50' +1:51' +1:52' +1:53' +1:54' +1:55' +1:56' +1:57' +1:58' +1:59' +1:60' +1:61' +1:62' +1:63' +1:64' +1:65' +1:66' +!1:44 +2:1 +2:2 +2:3 +2:4 +2:5 +2:6 +2:7 +2:8 +2:9 +2:10 +2:11 +2:12 +2:13 +2:14 +2:15 +2:16 +2:17 +2:18 +!2:63 +!2:64 +2:30' +2:31' +2:32' +2:33' +2:34' +2:35' +2:36' +2:37' +2:38' +2:39' +2:40' +2:41' +2:42' +2:43' +2:44' +2:45' +2:46' +2:47' +2:48' +2:49' +2:50' +2:51' +2:52' +2:53' +2:54' +2:55' +2:56' +2:57' +2:58' +1:1' +1:2' +1:3' +1:4' +1:5' +1:6' +1:7' +1:8' +1:9' +1:10' +1:11' +1:12' +1:13' +1:14' +1:15' +1:16' +1:17' +1:18' +1:19' +1:20' +1:21' +1:22' +1:23' +1:24' +1:25' +1:26' +1:27' +1:28' +1:29' +1:30' +1:31' +1:32' +1:33' +1:34' +1:35' +1:36' +1:37' +1:38' +1:39' +1:40' +1:41' +1:42' +2:1 +2:2 +2:3 +2:4 +2:5 +2:6 +2:7 +2:8 +2:9 +2:10 +2:11 +2:12 +2:13 +2:14 +2:15 +2:16 +2:17 +2:18 +2:19 +2:20' +2:21' +2:22' +2:23' +2:24' +2:25' +2:26' +2:27' +2:28' +2:29' +2:30' +2:31' +2:32' +2:33' +2:34' +2:35' +2:36' +2:37' +2:38' +2:53' +2:54' +2:55' +2:56' +2:57' +2:58' +2:59' +2:60' +2:61' +2:62' +2:63' +2:64' +2:65' +2:66' +2:67' +2:68' +2:69' +2:70' +2:71' +2:72' +1:1 +1:2 +1:3 +1:4 +1:5 +1:6 +1:7 +1:8 +1:9 +1:10 +1:11 +1:12 +1:13 +1:14 +1:15 +1:16 +1:17 +1:18 +1:19 +1:20 +1:21 +1:22 +1:23 +1:24 +1:25 +1:31' +1:32' +1:33' +1:34' +1:35' +1:36' +1:37' +1:38' +1:39' +1:40' +1:41' +1:42' +1:43' +1:44' +1:45' +1:46' +1:47' +1:48' +1:49' +1:50' +1:51' +1:52' +1:53' +1:54' +1:55' +1:56' +1:57' +1:58' +1:59' +1:60' +1:61' +1:62' +1:63' +1:64' +1:65' +1:66' +1:67' +1:68' +1:69' +1:70' +1:71' +1:72' +1:73' +1:74' +1:75' +1:76' +1:77' +1:78' +1:79' +2:1 +2:2 +2:3 +2:4 +2:5 +2:6 +2:7 +2:8 +2:9 +2:10 +2:11 +2:12 +2:13 +2:14 +2:15 +2:16 +2:17 +2:18 +2:19 +2:20 +2:21 +2:22 +2:23 +2:24 +2:25 +2:26 +2:27 +2:28 +2:29 +2:30 +2:31 +2:32 +2:33 +2:34 +2:35 +2:36 +2:37 +2:38 +2:39 +2:40 +2:41 +2:42 +2:43 +2:44 +2:45 +2:46 +2:47 +1:1 +1:2 +1:3 +1:4 +1:5 +1:5 +1:6 +1:7 +1:8 +1:9 +1:10 +1:11 +1:12 +1:13 +1:14 +1:15 +1:16 +1:17 +1:18 +1:19 +1:20 +1:21 +1:22 +1:23 +1:24 +1:25 +1:26 +1:27 +1:28 +1:29 +1:30 +1:31 +1:32 +1:33 +1:40' +1:41' +1:42' +1:43' +1:44' +1:45' +1:46' +1:47' +1:48' +1:49' +1:50' +1:51' +1:52' +1:53' +1:54' +1:55' +1:56' +1:57' +1:58' +1:59' +1:63' +1:64' +1:65' +1:66' +1:67' +1:68' +1:69' +1:70' +1:71' +1:72' +2:39' +2:40' +2:41' +2:42' +2:43' +2:44' +2:45' +2:46' +2:47' +2:48' +2:49' +2:50' +2:51' +2:52' +2:53' +2:54' +2:55' +2:56' +2:57' +2:58' +2:59' +2:60' +2:61' +2:62' +1:1 +1:2 +1:3 +1:4 +1:5 +1:6 +1:7 +1:8 +1:9 +1:10 +1:11 +1:12 +1:13 +1:14 +1:15 +1:16 +1:17 +1:18 +1:19 +1:20 +1:34' +1:35' +1:36' +1:37' +1:38' +1:39' +1:40' +1:41' +1:42' +1:43' +1:44' +1:45' +1:49' +1:50' +1:51' +1:52' +1:53' +1:54' +1:55' +1:56' +1:57' +1:58' +1:59' +1:60' +1:61' +1:62' +1:63' +1:64' +1:65' +1:66' +1:67' +1:68' +1:69' +1:70' +1:71' +1:72' +2:29' +2:30' +2:31' +2:32' +2:33' +2:34' +2:35' +2:36' +2:37' +2:38' +2:39' +2:40' +2:41' +2:42' +2:43' +2:44' +2:45' +2:46' +2:47' +2:48' +2:49' +2:50' +2:51' +2:52' +2:53' +2:54' +2:55' +2:56' +2:57' +1' +2' +3' +4' +5' +6' +7' +8' +9' +10' +11' +!1:1 +1:1' +1:2' +1:3' +1:4' +1:5' +1:6' +1:7' +1:8' +1:9' +1:10' +1:11' +1:12' +1:13' +1:14' +1:15' +1:16' +1:17' +1:18' +1:19' +1:20' +1:1 +1:2 +1:3 +1:4 +1:5 +1:6 +1:7 +1:8 +1:9 +1:10 +1:11 +1:12 +1:13 +1:14 +1:15 +1:35' +1:36' +1:37' +1:38' +1:39' +1:50' +1:51' +1:52' +1:53' +1:54' +1:55' +1:56' +1:57' +1:58' +1:59' +1:60' +1:61' +1:62' +1:63' +1:64' +1:65' +1:66' +1:67' +1:68' +1:69' +1:70' +1:71' +1:72' +2:1' +2:2' +2:3' +2:4' +2:5' +2:6' +2:7' +2:8' +2:9' +2:10' +2:11' +2:12' +2:13' +2:14' +2:15' +2:16' +2:17' +2:18' +2:19' +2:20' +2:21' +2:22' +2:23' +2:24' +2:25' +2:26' +2:27' +2:28' +2:29' +2:30' +2:31' +2:32' +2:33' +2:34' +2:35' +2:36' +2:37' +1:1 +1:2 +1:3 +1:4 +1:5 +1:6 +1:7 +1:8 +1:9 +1:10 +1:11 +1:12 +2:1 +2:2 +2:3 +2:4 +2:5 +2:6 +2:7 +2:8 +2:9 +2:10 +2:11 +2:12 +2:13 +2:14 +2:15 +2:16 +2:17 +2:18 +1:1' +1:2' +1:3' +1:4' +1:5' +1:6' +1:7' +1:8' +1:9' +1:10' +1:11' +1:12' +1:13' +1:14' +1:15' +1:16' +1:17' +1:18' +1:19' +1:20' +1:21' +1:22' +1:23' +1:24' +1:25' +1:26' +1:27' +1:28' +1:29' +1:30' +1:31' +2:1' +2:2' +2:3' +2:4' +2:5' +2:6' +2:7' +2:8' +2:9' +2:10' +2:11' +2:12' +2:13' +2:14' +2:15' +2:16' +2:17' +2:18' +2:19' +2:20' +2:21' +2:22' +2:23' +2:24' +2:25' +2:26' +2:27' +2:28' +2:29' +2:30' +2:31' +2:32' +2:33' +2:34' +2:35' +2:36' +2:37' +2:38' +2:39' +2:40' +2:41' +2:42' +2:43' +2:44' +2:45' +2:46' +2:47' +2:48' +1:1 +1:2 +1:3 +1:4 +1:5 +1:6 +1:7 +1:8 +1:9 +1:10 +1:11 +1:12 +1:13 +1:14 +1:15 +1:16 +1:17 +1:18 +1:19 +1:20 +1:21 +1:22 +1:23 +1:24 +1:25 +1:26 +1:27 +1:28 +1:29 +1:30 +1:31 +1:32 +1:33 +1:34 +1:35 +1:36 +1:47 +1:48 +1:49 +1:50 +1:51 +1:52 +1:53 +1:54 +1:55 +1:56 +1:57 +2:1 +2:2 +2:3 +2:4 +2:5 +2:6 +2:7 +2:8 +2:9 +2:10 +2:11 +2:12 +2:13 +2:14 +2:15 +2:16 +2:17 +2:18 +2:19 +2:20 +2:21 +2:22 +2:23 +2:24 +2:25 +2:26 +2:27 +2:28 +2:29 +2:30 +2:31 +2:32 +2:33 +1:1' +1:2' +1:3' +1:4' +1:5' +1:6' +1:7' +1:8' +1:9' +1:10' +1:11' +1:12' +1:13' +1:14' +1:15' +1:16' +1:17' +1:18' +1:19' +1:20' +1:21' +1:22' +1:23' +1:24' +1:25' +1:26' +1:27' +1:28' +1:29' +1:30' +1:31' +1:32' +1:33' +1:34' +1:35' +1:36' +1:37' +1:38' +1:39' +1:40' +1:41' +1:42' +1:43' +2:1' +2:2' +2:3' +2:4' +2:5' +2:6' +2:7' +2:8' +2:9' +2:10' +2:11' +2:12' +2:13' +2:14' +2:15' +2:16' +2:17' +2:18' +2:19' +2:20' +2:21' +2:22' +2:23' +2:24' +2:25' +2:26' +2:27' +2:28' +2:29' +2:30' +2:31' +2:32' +2:33' +2:34' +2:35' +2:36' +2:37' +2:38' +2:39' +3:1 +3:2 +3:3 +3:4 +3:5 +3:6 +3:7 +3:8 +3:9 +3:10 +3:11 +3:12 +3:13 +3:14 +3:15 +3:16 +3:17 +3:18 +3:19 +3:20 +3:21 +3:22 +3:23 +3:24 +3:25 +3:26 +3:27 +3:28 +3:29' +3:30' +3:31' +3:32' +3:33' +3:34' +3:35' +3:36' +3:37' +4:1 +4:2 +4:3 +4:4 +4:5 +4:6 +4:7 +4:8 +4:9 +4:10 +4:11 +4:12 +4:13 +4:14 +4:15 +4:16 +4:17 +4:18 +4:19 +4:20 +4:21 +4:22 +4:23 +4:24 +4:25 +4:26 +4:27 +4:28 +4:29 +4:30 +4:31 +4:32 +4:33 +4:34 +4:35 +4:36 +4:37 +4:38 +4:39 +4:40 +4:41 +4:42 +4:43 +4:44 +4:45 +4:46 +4:47 +4:48 +1:1' +1:2' +1:3' +1:4' +1:5' +1:6' +1:7' +1:8' +1:9' +1:10' +1:11' +1:12' +1:13' +1:14' +1:15' +1:16' +1:17' +1:18' +1:19' +1:20' +1:21' +1:22' +1:23' +1:24' +1:25' +1:26' +1:27' +1:28' +1:29' +1:30' +1:31' +!1:32 +2:1' +2:2' +2:3' +2:4' +2:5' +2:6' +2:7' +2:8' +2:9' +2:10' +2:11' +2:12' +2:13' +2:14' +2:15' +2:16' +2:17' +2:18' +2:19' +2:20' +2:21' +2:22' +2:23' +2:24' +2:25' +2:26' +2:27' +2:28' +2:29' +2:30' +2:31' +2:32' +2:33' +2:34' +2:35' +2:36' +2:37' +!2:70 +1:1' +1:2' +1:3' +1:4' +1:5' +1:6' +1:7' +1:8' +1:9' +1:10' +1:11' +1:12' +1:13' +1:14' +1:15' +1:16' +1:17' +1:18' +1:19' +1:20' +1:21' +1:22' +1:23' +1:24' +1:25' +1:26' +1:27' +1:28' +1:29' +1:30' +1:31' +1:32' +1:33' +1:34' +1:35' +1:36' +1:37' +1:38' +1:39' +1:40' +1:41' +1:42' +1:43' +1:44' +1:45' +1:46' +!1:47 +2:1' +2:2' +2:3' +2:4' +2:5' +2:6' +2:7' +2:8' +2:9' +2:10' +2:11' +2:12' +2:13' +2:14' +2:15' +2:16' +2:17' +2:18' +2:19' +2:20' +2:21' +2:22' +2:23' +2:24' +2:25' +2:26' +2:27' +2:28' +2:29' +1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +!13 +1' +2' +3' +4' +5' +1:1' +1:2' +1:3' +1:4' +1:5' +1:6' +1:7' +1:8' +1:9' +1:10' +1:11' +1:12' +1:13' +1:14' +1:15' +1:16' +1:17' +1:18' +1:19' +1:20' +1:21' +1:22' +1:23' +1:24' +1:25' +1:26' +1:27' +1:28' +1:29' +1:30' +1:31' +1:32' +1:33' +1:34' +1:35' +1:36' +1:37' +1:38' +1:39' +1:40' +1:41' +1:42' +1:43' +1:44' +1:45' +1:46' +1:47' +1:48' +!1:49 +2:1' +2:2' +2:3' +2:4' +2:5' +2:6' +2:7' +2:8' +2:9' +2:10' +2:11' +2:12' +2:13' +2:14' +2:15' +2:16' +2:17' +2:18' +2:19' +2:20' +2:21' +!2:71 +!1:1 +2:1' +2:2' +2:3' +2:4' +2:5' +2:6' +2:7' +2:8' +2:9' +2:10' +2:11' +2:12' +2:13' +2:14' +2:15' +2:23' +2:24' +2:25' +2:26' +2:27' +2:28' +2:29' +2:30' +2:31' +2:32' +2:33' +2:34' +2:35' +2:36' +2:37' +2:38' +2:39' +2:40' +2:41' +2:42' +2:43' +1:1 +1:2 +1:3 +1:4 +1:5 +1:6 +1:7 +1:8 +1:9 +1:10 +1:11 +1:12 +1:13 +1:14 +1:15 +1:16 +1:17 +1:18 +1:19 +1:20 +1:21 +1:22 +1:23 +1:24 +1:25 +1:26 +1:27 +1:28 +1:29 +1:30 +1:31 +1:32 +1:33 +1:34 +1:35 +1:36 +1:37 +1:38 +1:39 +1:40 +1:41 +1:42 +1:43 +1:44 +1:45 +1:46 +1:47 +1:48 +1:49 +1:50 +1:51 +1:52 +1:53 +1:54 +1:55 +1:56 +1:57 +1:58 +1:59 +1:60 +1:61 +1:62 +1:63 +1:64 +1:65 +1:66 +1:67 +1:68 +1:69 +1:70 +!1:71 +2:1 +2:2 +2:3 +2:4 +2:5 +2:6 +2:7 +2:8 +2:9 +2:10 +2:11 +2:12 +2:13 +2:14 +2:15 +2:16 +2:17 +2:18 +2:19 +2:20 +2:21 +2:22 +2:23 +2:24 +2:25 +2:26 +2:27 +2:28 +2:29 +2:30 +2:31 +2:32 +2:33 +2:34 +2:35 +2:36 +2:37 +2:38 +2:39 +2:40 +2:41 +2:42 +2:43 +2:44 +2:45 +2:46 +2:47 +2:48 +2:49 +2:50 +2:51 +2:52 +2:53 +2:54 +2:55 +2:56 +2:57 +2:58 +2:59 +2:60 +2:61 +2:62 +2:63 +2:64 +2:65 +2:66 +2:67 +2:68 +2:69 +2:70 +!2:142 +1:1 +1:2 +1:3 +1:4 +1:5 +1:6 +1:7 +1:8 +1:9 +1:10 +1:11 +1:12 +1:13 +1:14 +1:15 +1:16 +1:17 +1:18 +1:19 +1:20 +1:21 +1:22 +1:23 +1:24 +1:25 +1:26 +1:27 +1:28 +1:29 +1:30 +1:41' +1:42' +1:43' +1:44' +1:45' +!1:36 +2:1 +2:2 +2:3 +2:4 +2:5 +2:6 +2:7 +2:8 +2:9 +2:10 +2:11 +2:12 +2:13 +2:14 +2:15 +2:16 +2:17 +2:18 +2:19 +2:20 +2:21 +2:22 +2:23 +2:24 +2:25 +2:26 +2:27 +2:28 +2:29 +2:30 +2:31 +2:32 +2:33 +2:34 +2:35 +2:36 +2:37 +2:38 +2:39 +2:40 +2:41 +2:42 +2:43 +2:44 +2:45 +2:46 +2:47 +2:48 +2:49 +2:50 +2:51 +2:52 +2:53 +2:54 +!1:1 +!1:2 +1:26' +1:27' +1:28' +1:29' +1:30' +1:31' +1:32' +1:33' +1:34' +1:35' +1:36' +1:37' +1:38' +1:39' +1:40' +1:41' +1:42' +1:43' +1:44' +1:45' +1:46' +!1:24 +!1:25 +!2:26 +2:1 +2:2 +2:3 +2:4 +2:5 +2:6 +2:7 +2:8 +2:9 +2:10 +2:11 +2:12 +2:13 +2:14 +2:15 +2:16 +2:17 +2:18 +2:19 +2:20 +2:21 +2:22 +2:23 +2:24 +2:25 +2:26 +2:27 +2:28 +2:29 +2:30 +2:31 +2:32 +2:33 +2:34 +2:35 +2:36 +2:37 +2:38 +2:39 +2:40 +2:41 +2:42 +2:43 +2:44 +2:45 +2:46 +2:47 +2:48 +2:49 +2:50 +2:51 +2:52 +2:53 +2:54 +2:55 +2:56 +2:57 +2:58 +2:59 +2:60 +2:61 +2:62 +2:63 +2:64 +2:65 +2:66 +2:67 +2:68 +2:69 +2:70 +2:71 +2:72 +2:73 +2:74 +2:75 +2:76 +2:77 +!2:104 +!1:1 +1:1 +1:2 +1:3 +1:4 +1:5 +1:6 +1:7 +1:8 +1:9 +1:10 +!1:12 +!1:13 +1:20' +1:21' +1:22' +1:23' +1:24' +1:25' +1:26' +1:27' +1:28' +1:29' +1:30' +1:31' +1:32' +1:33' +1:34' +1:35' +1:36' +!1:31 +!1:32 +1:39' +1:40' +1:41' +1:42' +1:43' +1:44' +1:45' +1:46' +1:47' +1:48' +1:49' +1:50' +1:51' +1:52' +1:53' +1:54' +1:55' +1:56' +1:57' +1:58' +1:59' +1:60' +1:61' +1:62' +1:63' +1:64' +1:65' +1:66' +1:67' +1:68' +1:69' +1:70' +1:71' +1:72' +1:73' +1:74' +1:75' +1:76' +1:77' +!1:72 +2:1 +2:2 +2:3 +2:4 +2:5 +2:6 +2:7 +2:8 +!2:81 +!2:82 +2:32' +2:33' +2:34' +2:35' +2:36' +!1:1 +1:1 +1:2 +1:3 +1:4 +1:5 +1:6 +1:7 +1:8 +1:9 +1:10 +1:11 +1:12 +1:13 +1:14 +1:15 +1:16 +1:17 +1:18 +1:19 +1:20 +1:21 +1:22 +1:23 +1:24 +1:25 +1:26 +1:27 +1:28 +1:29 +1:30 +1:31 +1:32 +1:33 +1:34 +1:35 +1:36 +1:37 +1:38 +!1:40 +!1:41 +1:41 +1:42 +1:43 +1:44 +1:45 +1:46 +1:47 +1:48 +1:49 +1:50 +1:51 +1:52 +1:53 +1:54 +1:55 +1:56 +1:57 +1:58 +1:59 +1:60 +1:61 +1:62 +1:63 +1:64 +1:65 +1:66 +1:67 +1:68 +1:69 +1:70 +!1:72 +!2:73 +2:1 +2:2 +2:3 +2:4 +2:5 +2:6 +2:7 +2:8 +2:9 +2:10 +2:11 +2:12 +2:13 +2:14 +2:15 +2:16 +2:17 +2:18 +2:19 +2:20 +2:21 +2:22 +2:23 +2:24 +2:25 +2:26 +2:27 +2:28 +2:29 +2:30 +2:31 +2:32 +2:33 +2:34 +2:35 +2:36 +2:37 +2:38 +2:39 +2:40 +2:41 +2:42 +2:43 +2:44 +2:45 +2:46 +2:47 +2:48 +2:49 +2:50 +2:51 +2:52 +2:53 +2:54 +2:55 +2:56 +2:57 +2:58 +2:59 +2:60 +2:61 +2:62 +2:63 +2:64 +2:65 +!2:139 +1:1 +1:2 +1:3 +1:4 +1:5 +1:6 +1:7 +1:8 +1:9 +1:10 +1:11 +1:12 +1:13 +1:14 +1:15 +1:16 +1:17 +1:18 +1:19 +1:20 +1:21 +1:22 +1:23 +1:24 +1:25 +1:26 +1:27 +1:28 +1:29 +1:30 +1:31 +1:32 +1:33 +1:34 +1:35 +1:36 +1:37 +1:38 +1:39 +1:40 +1:41 +1:42 +1:43 +1:44 +1:45 +1:46 +1:47 +1:48 +1:49 +1:50 +1:51 +1:52 +1:53 +1:54 +1:55 +1:56 +1:57 +1:58 +1:59 +1:60 +1:61 +1:62 +1:63 +1:64 +1:65 +1:66 +1:67 +1:68 +1:69 +1:70 +1:71 +1:72 +1:73 +!1:74 +2:1 +2:2 +2:3 +2:4 +2:5 +2:6 +2:7 +2:8 +2:9 +2:10 +2:11 +2:12 +2:13 +2:14 +2:15 +2:16 +2:17 +2:18 +2:19 +2:20 +2:21 +2:22 +2:23 +2:24 +2:25 +2:26 +2:27 +2:28 +2:29 +2:30 +2:31 +2:32 +2:33 +2:34 +2:35 +2:36 +2:37 +2:38 +2:39 +2:40 +2:41 +2:42 +2:43 +2:44 +2:45 +2:46 +2:47 +2:48 +2:49 +2:50 +2:51 +2:52 +2:53 +2:54 +2:55 +2:56 +2:57 +2:58 +2:59 +2:60 +2:61 +2:62 +2:1' +2:2' +2:3' +2:4' +2:5' +2:6' +2:7' +2:8' +2:9' +2:10' +2:11' +2:12' +2:13' +2:14' +2:15' +2:16' +2:17' +2:18' +!2:19 +1:1' +1:2' +1:3' +1:4' +1:5' +1:6' +1:7' +1' +2' +3' +4' +5' +6' +7' +8' +9' +10' +11' +12' +13' +14' +15' +16' +1:1' +1:2' +1:3' +1:4' +1:5' +1:6' +1:7' +1:8' +1:9' +1:10' +1:11' +1:12' +1:13' +1:14' +1:15' +1:16' +1:17' +1:18' +1:19' +1:20' +1:21' +1:22' +1:23' +2:1' +2:2' +2:3' +2:4' +2:5' +2:6' +2:7' +2:8' +2:9' +2:10' +2:11' +2:12' +2:13' +2:14' +2:15' +2:16' +2:17' +2:18' +2:19' +2:20' +2:21' +2:22' +2:23' +1' +2' +3' +4' +5' +6' +7' +8' +9' +!1:1 +1:1 +1:2 +1:3 +1:4 +1:5 +1:6 +1:7 +1:8 +1:9 +1:10 +1:11 +1:12 +1:13 +1:14 +1:15 +1:16 +1:17 +1:18 +1:19 +1:20 +1:21 +1:22 +1:23 +!1:25 +!4:1 +!4:2 +4:52' +4:53' +4:54' +4:55' +4:56' +4:57' +4:58' +4:59' +4:60' +4:61' +4:62' +4:63' +!1:1 +1:1' +1:2' +1:3' +1:4' +1:5' +1:6' +1:7' +1:8' +!1:10 +2:1' +2:2' +2:3' diff --git a/tf/0.3/missing.tf b/tf/0.3/missing.tf new file mode 100644 index 0000000..afe1360 --- /dev/null +++ b/tf/0.3/missing.tf @@ -0,0 +1,12621 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=whether a sign is missing - between [ ] +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=int +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +1 +1 +1 +1 +9 1 +1 +1 +1 +20 1 +1 +33 1 +1 +1 +1 +1 +50 1 +66 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +91 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +119 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +144 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +162 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +177 1 +1 +1 +1 +1 +1 +196 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +227 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +256 1 +1 +1 +260 1 +1 +1 +264 1 +1 +1 +268 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +284 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +296 1 +1 +301 1 +1 +1 +1 +1 +310 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +326 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +341 1 +1 +350 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +365 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +388 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +406 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +418 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +443 1 +448 1 +455 1 +462 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +483 1 +493 1 +1 +504 1 +1 +511 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +536 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +557 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +587 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +619 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +639 1 +1 +1 +1 +1 +1 +1 +654 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +673 1 +680 1 +687 1 +1 +704 1 +711 1 +716 1 +1 +1 +1 +1 +1 +1 +1 +725 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +755 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +775 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +794 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +816 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +833 1 +1 +1 +1 +1 +852 1 +1 +1 +1 +867 1 +1 +1 +1 +1 +1 +1 +890 1 +1 +1 +1 +1 +1 +1 +1 +1 +902 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +921 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +938 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +952 1 +1 +1 +1 +1 +1 +1 +965 1 +1 +1 +1 +1 +1 +1 +1 +1 +980 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +992 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1003 1 +1 +1 +1 +1 +1009 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1026 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1043 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1066 1 +1 +1 +1 +1 +1 +1 +1 +1081 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1101 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1123 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1145 1 +1 +1 +1 +1 +1 +1 +1 +1159 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1183 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1200 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1222 1 +1 +1 +1 +1 +1 +1 +1 +1 +1233 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1255 1 +1 +1 +1 +1 +1 +1 +1 +1 +1274 1 +1 +1 +1 +1 +1 +1 +1 +1291 1 +1 +1 +1 +1 +1305 1 +1 +1 +1 +1314 1 +1 +1 +1 +1335 1 +1 +1 +1 +1 +1 +1 +1 +1358 1 +1 +1 +1 +1 +1 +1 +1368 1 +1 +1 +1373 1 +1 +1 +1384 1 +1 +1 +1 +1396 1 +1 +1 +1 +1413 1 +1 +1 +1429 1 +1 +1440 1 +1 +1 +1449 1 +1 +1464 1 +1 +1472 1 +1 +1 +1 +1484 1 +1 +1 +1 +1492 1 +1 +1 +1497 1 +1 +1500 1 +1 +1505 1 +1 +1510 1 +1 +1515 1 +1 +1 +1522 1 +1 +1 +1528 1 +1533 1 +1 +1 +1539 1 +1543 1 +1547 1 +1 +1550 1 +1 +1553 1 +1 +1556 1 +1 +1 +1 +1 +1 +1571 1 +1 +1 +1 +1581 1 +1590 1 +1 +1596 1 +1 +1605 1 +1612 1 +1615 1 +1 +1618 1 +1 +1621 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1634 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1647 1 +1 +1 +1 +1 +1 +1 +1 +1 +1658 1 +1 +1 +1 +1 +1 +1 +1667 1 +1 +1 +1 +1 +1 +1 +1 +1677 1 +1 +1681 1 +1 +1 +1686 1 +1689 1 +1692 1 +1694 1 +1 +1 +1 +1 +1 +1720 1 +1 +1 +1 +1 +1749 1 +1 +1 +1 +1 +1 +1 +1 +1781 1 +1 +1 +1 +1787 1 +1859 1 +1 +1 +1 +1885 1 +1905 1 +1 +1 +1929 1 +1 +1 +1946 1 +1 +1 +1 +1962 1 +1 +1 +1 +1 +1 +1992 1 +1 +1 +2009 1 +2011 1 +1 +1 +2027 1 +2030 1 +1 +2045 1 +2047 1 +1 +1 +2063 1 +1 +1 +1 +2069 1 +2089 1 +1 +2093 1 +2111 1 +1 +1 +2115 1 +1 +1 +2126 1 +1 +1 +2130 1 +1 +2142 1 +1 +1 +2155 1 +1 +1 +1 +2173 1 +2181 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2201 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2224 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2244 1 +1 +1 +1 +1 +1 +1 +1 +1 +2264 1 +1 +1 +1 +1 +1 +2280 1 +1 +1 +1 +1 +1 +2288 1 +1 +1 +1 +1 +1 +2296 1 +1 +1 +1 +1 +1 +1 +2306 1 +1 +2311 1 +1 +1 +1 +2316 1 +2331 1 +1 +2337 1 +1 +2355 1 +1 +1 +1 +1 +1 +2385 1 +1 +1 +2410 1 +1 +1 +1 +1 +2431 1 +1 +1 +1 +2456 1 +1 +1 +1 +1 +1 +1 +2476 1 +1 +1 +1 +1 +1 +1 +1 +2485 1 +2494 1 +1 +1 +1 +1 +1 +1 +2502 1 +2508 1 +2515 1 +2521 1 +1 +1 +2528 1 +1 +1 +1 +1 +1 +1 +1 +1 +2543 1 +1 +1 +2553 1 +1 +1 +2577 1 +1 +1 +1 +2595 1 +1 +1 +2620 1 +2627 1 +2639 1 +1 +1 +1 +1 +1 +2650 1 +2659 1 +1 +1 +2667 1 +1 +2686 1 +1 +2691 1 +2704 1 +2756 1 +1 +1 +1 +2770 1 +2778 1 +1 +1 +2797 1 +1 +1 +1 +1 +1 +1 +2827 1 +1 +2848 1 +2867 1 +1 +1 +2883 1 +1 +1 +1 +1 +1 +1 +1 +2902 1 +1 +1 +1 +1 +1 +1 +2918 1 +2926 1 +1 +2934 1 +1 +1 +1 +1 +1 +2949 1 +2952 1 +2967 1 +2981 1 +2998 1 +1 +1 +1 +3013 1 +3019 1 +3030 1 +1 +1 +3045 1 +3056 1 +1 +3069 1 +3080 1 +1 +1 +3094 1 +1 +3109 1 +3117 1 +1 +1 +1 +3133 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +3164 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +3197 1 +1 +3212 1 +3228 1 +3240 1 +1 +1 +1 +1 +3256 1 +3262 1 +3274 1 +3287 1 +3294 1 +3308 1 +1 +1 +3315 1 +3333 1 +3349 1 +3374 1 +3395 1 +1 +1 +3409 1 +3423 1 +3432 1 +3443 1 +1 +3456 1 +3468 1 +1 +1 +3492 1 +1 +1 +1 +1 +1 +1 +3515 1 +1 +1 +3540 1 +1 +1 +1 +1 +1 +3566 1 +3568 1 +3582 1 +3599 1 +3611 1 +3620 1 +1 +1 +1 +3628 1 +3637 1 +1 +1 +1 +1 +1 +3658 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +3686 1 +1 +1 +1 +1 +1 +3708 1 +1 +1 +3718 1 +3724 1 +3730 1 +1 +1 +3735 1 +3739 1 +1 +3745 1 +1 +1 +1 +1 +1 +1 +1 +3759 1 +3762 1 +1 +3772 1 +3782 1 +1 +1 +3794 1 +3796 1 +3798 1 +1 +3813 1 +1 +3828 1 +1 +1 +1 +3848 1 +1 +1 +1 +1 +3854 1 +3875 1 +1 +1 +1 +3888 1 +1 +1 +1 +1 +3894 1 +1 +1 +3905 1 +1 +3923 1 +1 +3931 1 +1 +3952 1 +3961 1 +3979 1 +1 +3990 1 +3994 1 +1 +1 +1 +1 +1 +1 +1 +1 +4020 1 +1 +4024 1 +4029 1 +4037 1 +4042 1 +1 +1 +4055 1 +4072 1 +4086 1 +1 +4094 1 +1 +4107 1 +1 +4118 1 +1 +1 +1 +1 +1 +4135 1 +1 +4151 1 +1 +1 +4173 1 +4185 1 +1 +1 +4196 1 +4207 1 +1 +4215 1 +4218 1 +4222 1 +1 +1 +1 +1 +1 +1 +4234 1 +1 +1 +1 +4242 1 +1 +1 +4253 1 +1 +1 +1 +4263 1 +1 +1 +1 +4268 1 +4273 1 +4277 1 +4280 1 +1 +4285 1 +1 +1 +1 +1 +1 +1 +4294 1 +4299 1 +4306 1 +4310 1 +4312 1 +4319 1 +4329 1 +4332 1 +4337 1 +4343 1 +1 +1 +1 +4350 1 +4355 1 +4360 1 +4363 1 +4369 1 +1 +1 +4377 1 +1 +4386 1 +1 +4398 1 +4412 1 +1 +1 +4431 1 +1 +4448 1 +4461 1 +1 +4470 1 +4480 1 +4487 1 +1 +4493 1 +1 +1 +1 +4502 1 +1 +1 +4509 1 +4520 1 +4529 1 +1 +1 +4539 1 +1 +1 +1 +1 +1 +1 +4554 1 +1 +1 +4564 1 +1 +1 +1 +4572 1 +1 +1 +1 +1 +1 +4580 1 +1 +4584 1 +1 +4588 1 +1 +1 +1 +1 +1 +1 +4599 1 +1 +4610 1 +1 +1 +4622 1 +1 +1 +1 +1 +1 +1 +4633 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +4673 1 +1 +4677 1 +1 +1 +1 +1 +1 +1 +4698 1 +1 +1 +1 +1 +1 +1 +1 +4718 1 +1 +1 +4740 1 +1 +1 +1 +1 +1 +1 +5151 1 +5167 1 +1 +1 +5182 1 +1 +1 +1 +5197 1 +5204 1 +1 +1 +1 +5220 1 +1 +1 +1 +1 +5232 1 +1 +1 +1 +5259 1 +1 +5307 1 +1 +1 +1 +1 +5335 1 +1 +1 +1 +5502 1 +1 +1 +5529 1 +1 +1 +1 +5549 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +5565 1 +1 +1 +5572 1 +1 +1 +1 +1 +1 +1 +5586 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +5616 1 +1 +1 +1 +1 +5627 1 +1 +1 +1 +1 +5665 1 +1 +1 +5695 1 +1 +5722 1 +1 +5754 1 +5783 1 +5810 1 +5957 1 +1 +1 +1 +5966 1 +1 +1 +1 +1 +1 +5979 1 +1 +1 +1 +1 +1 +1 +1 +5990 1 +5992 1 +5997 1 +5999 1 +6001 1 +6003 1 +6007 1 +1 +1 +6019 1 +1 +6168 1 +6235 1 +1 +6271 1 +1 +1 +1 +6293 1 +1 +1 +1 +1 +6318 1 +1 +1 +6341 1 +6472 1 +1 +1 +6494 1 +1 +1 +1 +6521 1 +6541 1 +6566 1 +6593 1 +6642 1 +1 +6662 1 +1 +1 +6686 1 +1 +1 +1 +1 +6708 1 +1 +1 +1 +1 +1 +6789 1 +1 +1 +6809 1 +1 +6831 1 +6943 1 +6954 1 +6962 1 +1 +6969 1 +6974 1 +1 +1 +6983 1 +1 +6994 1 +1 +1 +1 +1 +1 +7003 1 +7012 1 +1 +1 +1 +1 +7023 1 +1 +1 +7027 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +7044 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +7065 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +7086 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +7112 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +7135 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +7155 1 +1 +1 +1 +1 +1 +1 +1 +7171 1 +1 +1 +1 +1 +1 +1 +1 +7184 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +7200 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +7219 1 +1 +1 +1 +1 +1 +7229 1 +1 +1 +1 +1 +1 +1 +1 +7246 1 +1 +1 +1 +1 +1 +1 +7263 1 +7280 1 +1 +1 +1 +7296 1 +1 +1 +1 +1 +1 +7321 1 +1 +1 +1 +1 +1 +1 +7353 1 +1 +1 +1 +1 +1 +1 +7378 1 +1 +7385 1 +1 +1 +7393 1 +7401 1 +1 +1 +1 +1 +1 +1 +1 +7417 1 +7423 1 +1 +1 +1 +1 +1 +1 +7439 1 +1 +1 +7445 1 +1 +1 +1 +7458 1 +1 +1 +1 +1 +1 +7465 1 +1 +1 +7472 1 +1 +1 +1 +1 +1 +7490 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +7515 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +7532 1 +1 +7535 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +7552 1 +1 +1 +1 +7564 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +7585 1 +1 +1 +7593 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +7606 1 +1 +1 +7613 1 +1 +1 +1 +1 +1 +1 +1 +7623 1 +7628 1 +1 +1 +1 +1 +1 +1 +1 +1 +7639 1 +7642 1 +1 +7649 1 +7656 1 +7660 1 +1 +1 +7669 1 +1 +1 +1 +7675 1 +7681 1 +1 +1 +7691 1 +7696 1 +1 +7705 1 +7713 1 +1 +7729 1 +1 +1 +7752 1 +7779 1 +7909 1 +7924 1 +7927 1 +1 +7945 1 +1 +1 +7957 1 +1 +1 +1 +1 +1 +1 +7969 1 +7973 1 +1 +1 +1 +1 +1 +1 +1 +7991 1 +1 +1 +1 +1 +1 +7999 1 +1 +1 +1 +1 +8011 1 +1 +1 +1 +1 +1 +1 +1 +8021 1 +1 +1 +1 +1 +1 +8035 1 +8041 1 +1 +1 +1 +1 +1 +1 +8055 1 +1 +1 +8068 1 +1 +8110 1 +1 +1 +1 +8135 1 +1 +1 +8155 1 +8169 1 +8185 1 +1 +1 +1 +1 +1 +1 +8193 1 +8197 1 +1 +8212 1 +1 +8224 1 +1 +1 +8241 1 +8500 1 +1 +1 +1 +1 +8521 1 +1 +1 +1 +8528 1 +8546 1 +1 +1 +1 +1 +1 +1 +8554 1 +1 +1 +1 +1 +1 +1 +1 +1 +8579 1 +1 +1 +1 +1 +1 +1 +8594 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +8613 1 +1 +8627 1 +8635 1 +8642 1 +8653 1 +8660 1 +1 +1 +1 +8672 1 +1 +8682 1 +1 +8694 1 +1 +1 +1 +8702 1 +1 +1 +1 +1 +1 +8724 1 +1 +1 +1 +1 +8960 1 +8979 1 +9001 1 +9013 1 +9032 1 +9076 1 +9084 1 +1 +9101 1 +9121 1 +9143 1 +9162 1 +9172 1 +1 +1 +1 +9178 1 +1 +1 +9186 1 +1 +1 +9193 1 +1 +1 +1 +1 +1 +1 +9206 1 +1 +1 +9213 1 +1 +1 +9224 1 +1 +9232 1 +1 +1 +9249 1 +1 +1 +9265 1 +1 +1 +9276 1 +9287 1 +1 +1 +9297 1 +1 +1 +1 +1 +1 +1 +9309 1 +1 +1 +1 +9319 1 +1 +1 +9323 1 +1 +1 +1 +9336 1 +1 +1 +1 +9347 1 +1 +1 +1 +1 +1 +9370 1 +1 +1 +9542 1 +9544 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +9573 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +9593 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +9619 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +9643 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +9663 1 +1 +1 +1 +1 +1 +1 +1 +9673 1 +1 +9823 1 +9843 1 +1 +1 +1 +9859 1 +1 +1 +9880 1 +1 +1 +1 +1 +1 +1 +9902 1 +1 +1 +1 +1 +9915 1 +1 +1 +1 +1 +1 +1 +9928 1 +9935 1 +1 +1 +1 +1 +9943 1 +1 +1 +9951 1 +1 +1 +9960 1 +1 +1 +9966 1 +1 +1 +1 +9976 1 +1 +1 +9981 1 +1 +1 +1 +1 +9993 1 +1 +1 +1 +9999 1 +1 +1 +1 +10010 1 +1 +1 +1 +10021 1 +10027 1 +1 +1 +1 +1 +1 +10041 1 +1 +1 +1 +10046 1 +10055 1 +1 +10065 1 +1 +1 +1 +1 +1 +1 +1 +1 +10081 1 +1 +10095 1 +1 +1 +10108 1 +10111 1 +1 +1 +1 +10116 1 +1 +10124 1 +1 +1 +1 +1 +1 +10138 1 +1 +1 +1 +1 +1 +1 +1 +1 +10157 1 +1 +1 +1 +1 +1 +1 +1 +1 +10179 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +10196 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +10210 1 +10215 1 +1 +10220 1 +10222 1 +10224 1 +1 +10227 1 +1 +10231 1 +1 +1 +10240 1 +1 +1 +10257 1 +1 +1 +1 +10266 1 +1 +1 +1 +1 +10278 1 +10290 1 +1 +10293 1 +1 +10301 1 +10303 1 +10313 1 +1 +1 +1 +1 +1 +1 +10336 1 +1 +1 +1 +1 +10360 1 +1 +1 +1 +10377 1 +1 +1 +1 +10399 1 +1 +1 +10421 1 +10434 1 +10449 1 +10503 1 +1 +10551 1 +10571 1 +10585 1 +1 +10603 1 +1 +10619 1 +1 +10627 1 +1 +1 +1 +1 +1 +1 +1 +10642 1 +1 +10665 1 +10776 1 +1 +10832 1 +10859 1 +1 +10884 1 +1 +10898 1 +1 +10981 1 +1 +1 +11003 1 +1 +1 +11020 1 +1 +11033 1 +1 +1 +1 +11043 1 +11050 1 +11064 1 +1 +1 +1 +11072 1 +1 +11079 1 +1 +1 +11083 1 +1 +11092 1 +1 +11100 1 +1 +11119 1 +1 +1 +11124 1 +1 +1 +1 +11144 1 +11154 1 +1 +1 +1 +11160 1 +1 +1 +11166 1 +11168 1 +11175 1 +11188 1 +1 +1 +1 +1 +11206 1 +1 +1 +1 +1 +1 +1 +1 +1 +11226 1 +1 +1 +1 +1 +1 +1 +1 +11242 1 +1 +1 +1 +1 +11249 1 +1 +11264 1 +1 +1 +11271 1 +1 +1 +1 +11286 1 +1 +1 +11295 1 +1 +11304 1 +1 +1 +11312 1 +1 +1 +1 +11323 1 +1 +1 +11330 1 +1 +1 +11337 1 +1 +11344 1 +1 +1 +1 +11353 1 +1 +11358 1 +1 +1 +11366 1 +11373 1 +1 +1 +1 +1 +11382 1 +1 +1 +1 +11392 1 +1 +1 +1 +11401 1 +1 +11409 1 +1 +1 +1 +1 +1 +1 +11419 1 +1 +11427 1 +1 +1 +1 +1 +1 +11438 1 +11440 1 +1 +1 +11445 1 +11448 1 +1 +11452 1 +11456 1 +1 +1 +11460 1 +11466 1 +11468 1 +1 +1 +1 +1 +11481 1 +1 +11488 1 +11497 1 +1 +1 +11506 1 +1 +11520 1 +1 +1 +11530 1 +1 +1 +11537 1 +1 +11545 1 +11550 1 +1 +11557 1 +1 +11569 1 +1 +11574 1 +1 +11582 1 +1 +11587 1 +11594 1 +1 +11597 1 +1 +1 +11608 1 +1 +1 +1 +1 +11621 1 +1 +1 +1 +1 +1 +11635 1 +1 +1 +1 +1 +1 +11650 1 +1 +11653 1 +1 +1 +1 +1 +1 +1 +1 +1 +11676 1 +11679 1 +1 +1 +1 +1 +1 +11701 1 +1 +1 +1 +1 +1 +1 +11720 1 +1 +1 +1 +1 +1 +11745 1 +1 +1 +1 +1 +1 +1 +11772 1 +1 +1 +1 +11793 1 +1 +1 +11821 1 +1 +1 +11842 1 +1 +11848 1 +11871 1 +1 +11879 1 +11896 1 +1 +1 +1 +1 +11932 1 +1 +1 +1 +1 +11949 1 +1 +1 +1 +11967 1 +1 +11983 1 +1 +1 +1 +1 +12002 1 +1 +12016 1 +1 +1 +1 +1 +12024 1 +1 +12035 1 +1 +1 +12049 1 +1 +1 +1 +12063 1 +1 +1 +1 +1 +12078 1 +1 +1 +1 +12093 1 +1 +1 +1 +1 +1 +1 +12122 1 +1 +1 +1 +1 +12137 1 +1 +1 +1 +12148 1 +1 +12163 1 +1 +12183 1 +12208 1 +1 +1 +1 +12276 1 +1 +12300 1 +1 +12333 1 +1 +1 +12362 1 +1 +1 +12388 1 +1 +1 +12418 1 +1 +1 +12443 1 +12447 1 +1 +12465 1 +1 +12481 1 +1 +1 +12504 1 +1 +12513 1 +12544 1 +12567 1 +1 +1 +12587 1 +12609 1 +12628 1 +1 +12647 1 +1 +1 +1 +1 +12676 1 +1 +1 +1 +1 +12698 1 +1 +1 +1 +1 +1 +12720 1 +12722 1 +1 +1 +1 +1 +12768 1 +12797 1 +12818 1 +12823 1 +1 +12842 1 +12846 1 +1 +12866 1 +1 +1 +1 +1 +12892 1 +1 +1 +1 +1 +1 +1 +1 +12909 1 +1 +1 +1 +1 +1 +12943 1 +1 +1 +1 +1 +12957 1 +1 +1 +1 +1 +12984 1 +1 +1 +1 +1 +13010 1 +1 +13077 1 +1 +13104 1 +1 +13133 1 +13242 1 +13266 1 +1 +1 +1 +13292 1 +1 +1 +1 +1 +13317 1 +1 +1 +1 +1 +1 +13343 1 +1 +1 +1 +1 +1 +13367 1 +1 +1 +1 +1 +13394 1 +1 +1 +1 +13423 1 +13518 1 +13550 1 +1 +1 +1 +1 +1 +13571 1 +1 +1 +1 +1 +13597 1 +1 +1 +1 +13617 1 +1 +1 +13634 1 +1 +1 +1 +1 +1 +1 +1 +13664 1 +1 +1 +1 +13684 1 +1 +1 +1 +1 +13702 1 +1 +13719 1 +1 +1 +1 +1 +13763 1 +1 +13779 1 +1 +13787 1 +13796 1 +1 +1 +1 +1 +1 +13810 1 +13819 1 +1 +1 +1 +1 +13838 1 +13849 1 +1 +1 +1 +1 +13869 1 +1 +1 +13889 1 +1 +1 +1 +1 +13898 1 +1 +1 +13919 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +13933 1 +1 +1 +1 +1 +13950 1 +13953 1 +1 +1 +1 +1 +1 +13973 1 +1 +1 +13993 1 +1 +1 +14019 1 +1 +1 +1 +14035 1 +14039 1 +1 +1 +14050 1 +1 +1 +14056 1 +1 +1 +1 +1 +1 +14070 1 +1 +1 +1 +1 +1 +1 +1 +14084 1 +14088 1 +1 +1 +14098 1 +1 +14105 1 +1 +14112 1 +1 +1 +1 +1 +14125 1 +14132 1 +1 +14144 1 +1 +1 +1 +14158 1 +1 +1 +14164 1 +1 +1 +1 +14174 1 +1 +1 +14180 1 +14186 1 +1 +14191 1 +14196 1 +1 +1 +14210 1 +1 +14220 1 +1 +1 +14232 1 +1 +1 +14241 1 +1 +1 +14250 1 +1 +1 +1 +14255 1 +14257 1 +1 +1 +1 +14262 1 +14265 1 +1 +1 +1 +1 +14271 1 +1 +1 +14279 1 +1 +1 +14283 1 +14290 1 +1 +1 +1 +14303 1 +1 +14369 1 +14392 1 +1 +14443 1 +1 +1 +1 +14454 1 +1 +14461 1 +1 +1 +1 +14472 1 +1 +1 +1 +1 +14482 1 +1 +14498 1 +1 +14516 1 +14533 1 +14550 1 +14571 1 +14580 1 +14596 1 +14614 1 +1 +1 +14628 1 +1 +1 +1 +1 +14641 1 +1 +1 +1 +1 +14655 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +14685 1 +1 +14698 1 +1 +1 +1 +1 +14728 1 +14752 1 +1 +1 +14764 1 +1 +14789 1 +14809 1 +1 +14834 1 +1 +1 +14857 1 +1 +1 +14877 1 +14879 1 +1 +1 +1 +1 +14901 1 +14904 1 +1 +1 +1 +1 +1 +14924 1 +1 +1 +1 +14936 1 +1 +14949 1 +1 +1 +14958 1 +14973 1 +1 +1 +14992 1 +15053 1 +15083 1 +15086 1 +15088 1 +15090 1 +15094 1 +1 +1 +15099 1 +15105 1 +15112 1 +1 +15120 1 +15130 1 +1 +15139 1 +1 +15149 1 +15152 1 +1 +15156 1 +1 +1 +1 +1 +15165 1 +1 +15170 1 +15187 1 +15209 1 +15266 1 +1 +1 +15289 1 +1 +15296 1 +1 +1 +15311 1 +1 +1 +15318 1 +1 +15330 1 +1 +1 +1 +1 +15344 1 +1 +1 +1 +1 +15357 1 +1 +1 +1 +1 +15370 1 +15376 1 +1 +1 +1 +1 +15392 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +15413 1 +1 +1 +1 +1 +1 +1 +15432 1 +1 +1 +1 +1 +1 +1 +15451 1 +1 +1 +1 +15467 1 +1 +1 +1 +1 +1 +15481 1 +15488 1 +1 +1 +1 +15498 1 +15505 1 +1 +1 +1 +1 +15517 1 +15523 1 +1 +1 +15540 1 +1 +1 +1 +15557 1 +15563 1 +15578 1 +15591 1 +15660 1 +1 +15676 1 +1 +1 +1 +1 +15688 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +15707 1 +1 +1 +1 +1 +1 +1 +1 +1 +15724 1 +1 +1 +15735 1 +15744 1 +1 +15751 1 +1 +1 +1 +1 +1 +1 +1 +1 +15762 1 +1 +1 +15770 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +15791 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +15810 1 +1 +1 +1 +1 +1 +1 +1 +1 +15826 1 +1 +1 +1 +1 +1 +1 +1 +1 +15841 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +15861 1 +1 +1 +1 +1 +1 +1 +1 +1 +15874 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +15891 1 +1 +1 +1 +1 +1 +1 +15900 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +15917 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +15939 1 +1 +1 +1 +1 +1 +15950 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +15975 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +16002 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +16029 1 +1 +1 +1 +16040 1 +1 +1 +1 +1 +16060 1 +1 +1 +1 +1 +1 +16079 1 +1 +1 +1 +16101 1 +1 +16123 1 +16278 1 +1 +1 +1 +1 +16300 1 +16529 1 +1 +1 +1 +1 +1 +16544 1 +16548 1 +16556 1 +1 +1 +16574 1 +16587 1 +1 +1 +16606 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +16631 1 +1 +1 +1 +1 +1 +1 +16652 1 +1 +1 +1 +1 +1 +16673 1 +1 +1 +1 +16694 1 +16852 1 +16867 1 +16873 1 +16884 1 +1 +1 +1 +1 +16892 1 +1 +1 +1 +1 +1 +16901 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +16918 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +16944 1 +1 +1 +1 +16957 1 +16959 1 +16969 1 +1 +16973 1 +1 +1 +1 +1 +1 +1 +17000 1 +1 +1 +17023 1 +1 +1 +17055 1 +17340 1 +1 +1 +1 +1 +1 +17363 1 +1 +1 +1 +1 +1 +1 +1 +1 +17378 1 +17380 1 +1 +17388 1 +1 +1 +17399 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +17422 1 +1 +1 +1 +17427 1 +1 +1 +17441 1 +1 +17445 1 +1 +1 +17469 1 +1 +1 +17493 1 +1 +1 +17512 1 +1 +17530 1 +1 +1 +1 +17548 1 +1 +1 +1 +17565 1 +1 +1 +1 +1 +17583 1 +1 +1 +1 +1 +1 +17600 1 +1 +1 +1 +1 +17613 1 +17617 1 +1 +17627 1 +1 +1 +17632 1 +1 +1 +17644 1 +1 +17649 1 +1 +1 +1 +17664 1 +1 +1 +17670 1 +1 +1 +1 +1 +17685 1 +1 +17690 1 +1 +1 +1 +1 +17707 1 +1 +1 +17713 1 +1 +1 +17730 1 +1 +17735 1 +1 +1 +17751 1 +1 +1 +1 +17757 1 +1 +17781 1 +17819 1 +17849 1 +17871 1 +1 +1 +17896 1 +1 +17915 1 +17933 1 +1 +17951 1 +1 +1 +17971 1 +1 +17987 1 +1 +18007 1 +18029 1 +1 +1 +1 +18125 1 +1 +1 +18148 1 +1 +18170 1 +1 +1 +1 +1 +1 +18190 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +18210 1 +1 +1 +18219 1 +18225 1 +1 +18230 1 +1 +1 +1 +1 +1 +18239 1 +1 +18243 1 +1 +1 +1 +18248 1 +1 +18252 1 +18255 1 +1 +18262 1 +1 +18272 1 +1 +1 +18284 1 +1 +18290 1 +1 +18300 1 +1 +1 +1 +18314 1 +18322 1 +1 +1 +18330 1 +18334 1 +1 +1 +1 +18341 1 +1 +1 +1 +1 +1 +18351 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +18367 1 +1 +1 +1 +18376 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +18402 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +18427 1 +1 +1 +1 +1 +1 +1 +1 +18452 1 +1 +1 +1 +1 +18470 1 +1 +1 +1 +1 +1 +1 +18492 1 +1 +1 +1 +1 +1 +18515 1 +1 +1 +1 +1 +18533 1 +1 +1 +1 +1 +1 +18560 1 +1 +1 +1 +18573 1 +18579 1 +1 +1 +18597 1 +18611 1 +1 +1 +1 +1 +1 +18639 1 +1 +1 +1 +18652 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +18673 1 +1 +1 +18680 1 +1 +1 +1 +1 +1 +18705 1 +1 +1 +1 +1 +1 +1 +18728 1 +1 +1 +18737 1 +1 +1 +1 +1 +1 +1 +18748 1 +1 +18756 1 +18765 1 +18773 1 +18780 1 +1 +1 +1 +18791 1 +1 +1 +1 +18804 1 +1 +18813 1 +1 +18824 1 +18834 1 +1 +1 +1 +1 +1 +1 +18850 1 +18858 1 +18870 1 +1 +18882 1 +1 +18892 1 +18903 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +18920 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +18934 1 +18938 1 +1 +1 +1 +18959 1 +1 +1 +1 +1 +1 +1 +1 +1 +18985 1 +1 +19014 1 +1 +19345 1 +19364 1 +1 +1 +19387 1 +19433 1 +19451 1 +1 +19466 1 +19513 1 +19529 1 +1 +1 +1 +1 +19549 1 +1 +1 +19562 1 +1 +19574 1 +1 +1 +1 +1 +1 +19585 1 +1 +19599 1 +1 +1 +1 +1 +1 +19623 1 +19629 1 +1 +1 +1 +1 +19647 1 +19658 1 +19679 1 +19692 1 +1 +19698 1 +1 +19716 1 +1 +1 +19723 1 +19735 1 +1 +19742 1 +1 +1 +19747 1 +19758 1 +1 +1 +19763 1 +1 +1 +1 +19769 1 +1 +19780 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +19794 1 +1 +1 +1 +19808 1 +19811 1 +19814 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +19887 1 +1 +1 +1 +1 +1 +1 +1 +1 +19901 1 +1 +1 +1 +1 +1 +1 +1 +19914 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +19942 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +19958 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +19981 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +20004 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +20025 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +20039 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +20061 1 +20067 1 +20069 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +20107 1 +1 +1 +1 +1 +20133 1 +20135 1 +1 +20138 1 +1 +1 +1 +20161 1 +1 +1 +20167 1 +1 +1 +1 +20182 1 +20189 1 +20199 1 +20225 1 +1 +20253 1 +20300 1 +20315 1 +20330 1 +20355 1 +20412 1 +20420 1 +1 +1 +20434 1 +1 +1 +1 +20445 1 +1 +20456 1 +20460 1 +20464 1 +1 +1 +20479 1 +1 +1 +1 +1 +1 +1 +20504 1 +1 +20520 1 +20527 1 +1 +1 +20555 1 +20566 1 +1 +1 +1 +1 +1 +20576 1 +20580 1 +1 +1 +20586 1 +1 +1 +1 +1 +20599 1 +1 +1 +20613 1 +1 +20640 1 +20658 1 +20670 1 +1 +1 +20677 1 +20697 1 +1 +1 +1 +1 +20707 1 +1 +1 +1 +20728 1 +20734 1 +20755 1 +1 +20765 1 +1 +1 +20783 1 +1 +20790 1 +20804 1 +1 +20814 1 +1 +1 +1 +20830 1 +20839 1 +1 +20845 1 +20849 1 +1 +20859 1 +1 +1 +1 +20866 1 +20871 1 +1 +20886 1 +1 +20892 1 +1 +20903 1 +1 +20917 1 +1 +1 +1 +20923 1 +1 +1 +20931 1 +1 +20943 1 +1 +1 +1 +1 +1 +1 +1 +20953 1 +1 +1 +1 +20963 1 +20973 1 +1 +1 +1 +1 +1 +1 +20982 1 +1 +1 +1 +1 +20992 1 +1 +21001 1 +1 +1 +21005 1 +1 +21010 1 +21014 1 +1 +21019 1 +21025 1 +1 +1 +21030 1 +21033 1 +21036 1 +21039 1 +21041 1 +21043 1 +21045 1 +21050 1 +21052 1 +21055 1 +1 +1 +21060 1 +1 +21064 1 +21073 1 +1 +1 +21087 1 +1 +1 +21108 1 +1 +1 +1 +21135 1 +1 +1 +21143 1 +21157 1 +21166 1 +1 +1 +1 +1 +1 +21194 1 +1 +21216 1 +1 +1 +1 +1 +1 +21241 1 +1 +21245 1 +21254 1 +1 +1 +1 +21271 1 +1 +1 +1 +21289 1 +1 +1 +1 +1 +21310 1 +1 +1 +1 +21328 1 +1 +21344 1 +1 +1 +21354 1 +1 +1 +21363 1 +1 +1 +1 +1 +1 +1 +1 +21381 1 +1 +1 +1 +1 +1 +1 +21399 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +21415 1 +1 +1 +1 +21421 1 +21424 1 +21426 1 +1 +1 +1 +21435 1 +1 +1 +1 +21448 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +21472 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +21491 1 +1 +1 +21500 1 +1 +1 +1 +1 +1 +1 +1 +21516 1 +1 +1 +1 +1 +1 +1 +1 +1 +21538 1 +21548 1 +1 +21558 1 +21566 1 +21577 1 +1 +1 +21586 1 +1 +1 +1 +1 +1 +1 +1 +21596 1 +1 +1 +1 +1 +21603 1 +1 +21610 1 +1 +1 +21619 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +21641 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +21667 1 +21680 1 +1 +1 +1 +21711 1 +21739 1 +1 +1 +21768 1 +21795 1 +1 +1 +1 +21820 1 +1 +1 +1 +21835 1 +1 +21840 1 +21862 1 +21876 1 +21886 1 +1 +21913 1 +1 +1 +1 +21931 1 +1 +21953 1 +1 +1 +1 +1 +21975 1 +1 +1 +1 +1 +21991 1 +1 +1 +1 +1 +1 +1 +1 +22008 1 +1 +1 +1 +22023 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +22042 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +22064 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +22083 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +22098 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +22116 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +22137 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +22160 1 +1 +1 +1 +1 +1 +1 +1 +1 +22175 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +22199 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +22215 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +22239 1 +22246 1 +1 +22257 1 +22262 1 +1 +22266 1 +22272 1 +1 +22277 1 +22284 1 +1 +22291 1 +22299 1 +22301 1 +1 +1 +1 +22314 1 +1 +1 +22320 1 +22327 1 +22332 1 +1 +1 +1 +22347 1 +22352 1 +1 +1 +1 +1 +1 +1 +1 +1 +22374 1 +22381 1 +1 +1 +22394 1 +1 +1 +1 +1 +1 +22412 1 +1 +22416 1 +22427 1 +1 +22439 1 +1 +1 +1 +1 +22451 1 +1 +22463 1 +22475 1 +1 +1 +1 +1 +22488 1 +22494 1 +1 +22502 1 +1 +22510 1 +22518 1 +1 +22526 1 +1 +22537 1 +22546 1 +1 +1 +22555 1 +22562 1 +22574 1 +1 +1 +1 +1 +1 +1 +22591 1 +22600 1 +1 +22609 1 +1 +22619 1 +1 +22622 1 +22628 1 +1 +22631 1 +22635 1 +1 +1 +22642 1 +22645 1 +1 +22648 1 +1 +1 +1 +1 +22654 1 +22656 1 +1 +22659 1 +1 +1 +1 +1 +1 +1 +1 +1 +22669 1 +1 +22676 1 +1 +22680 1 +1 +1 +22687 1 +1 +1 +1 +22695 1 +1 +22699 1 +22704 1 +1 +22711 1 +1 +1 +1 +22719 1 +1 +1 +1 +1 +22726 1 +1 +1 +22732 1 +22734 1 +1 +1 +22738 1 +22741 1 +22744 1 +22748 1 +1 +22751 1 +22753 1 +22757 1 +1 +22760 1 +22762 1 +22764 1 +22766 1 +22768 1 +22770 1 +22772 1 +22775 1 +1 +22778 1 +22781 1 +1 +22784 1 +22786 1 +22789 1 +22793 1 +1 +22798 1 +1 +22804 1 +1 +22808 1 +1 +22813 1 +22816 1 +22818 1 +1 +22822 1 +22827 1 +22830 1 +22834 1 +1 +22838 1 +1 +22843 1 +1 +22849 1 +22855 1 +22859 1 +1 +1 +1 +22867 1 +22871 1 +1 +22877 1 +22885 1 +22892 1 +1 +1 +22901 1 +1 +1 +22909 1 +22917 1 +1 +22941 1 +22954 1 +22964 1 +22979 1 +22985 1 +22992 1 +22998 1 +23004 1 +23033 1 +23038 1 +23059 1 +1 +23080 1 +23101 1 +1 +1 +1 +23121 1 +1 +1 +1 +1 +1 +1 +1 +1 +23142 1 +1 +1 +1 +1 +23153 1 +23158 1 +23160 1 +1 +23164 1 +1 +23182 1 +1 +1 +23198 1 +1 +1 +23212 1 +1 +1 +23237 1 +1 +1 +23256 1 +1 +23275 1 +1 +23291 1 +23342 1 +23359 1 +23374 1 +23390 1 +1 +1 +23408 1 +1 +1 +1 +1 +23424 1 +1 +1 +23439 1 +1 +1 +1 +1 +1 +23458 1 +1 +1 +1 +1 +1 +1 +1 +23479 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +23497 1 +1 +1 +23503 1 +23505 1 +23507 1 +1 +23510 1 +1 +23515 1 +23519 1 +23523 1 +1 +1 +23529 1 +1 +1 +23537 1 +23547 1 +1 +1 +1 +23556 1 +23561 1 +1 +23566 1 +23569 1 +23571 1 +1 +1 +23575 1 +1 +23579 1 +23582 1 +23584 1 +23588 1 +23590 1 +23593 1 +1 +23600 1 +1 +1 +1 +23608 1 +1 +23617 1 +1 +23628 1 +1 +1 +1 +23645 1 +1 +1 +1 +1 +23652 1 +1 +23661 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +23675 1 +1 +1 +1 +1 +23683 1 +1 +1 +1 +1 +1 +1 +1 +23694 1 +1 +1 +1 +1 +23703 1 +1 +1 +1 +23712 1 +1 +1 +1 +1 +1 +23725 1 +23733 1 +23737 1 +23743 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +23758 1 +1 +1 +1 +1 +23769 1 +1 +1 +23777 1 +23783 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +23826 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +23859 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +23880 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +23896 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +23917 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +23935 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +23961 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +23975 1 +1 +1 +23979 1 +1 +1 +1 +1 +1 +1 +1 +23996 1 +24009 1 +1 +1 +24024 1 +1 +24038 1 +1 +1 +1 +1 +24056 1 +1 +1 +1 +1 +1 +1 +1 +24079 1 +1 +24089 1 +1 +1 +1 +1 +24168 1 +24275 1 +24282 1 +1 +1 +1 +24288 1 +24302 1 +24314 1 +1 +1 +24327 1 +24340 1 +1 +1 +1 +24356 1 +24364 1 +24373 1 +24379 1 +24381 1 +24386 1 +1 +24390 1 +24392 1 +24399 1 +24414 1 +24430 1 +1 +24450 1 +24472 1 +1 +24483 1 +1 +1 +24487 1 +24501 1 +24516 1 +24524 1 +1 +24527 1 +24541 1 +24551 1 +24560 1 +24572 1 +1 +24587 1 +24607 1 +24627 1 +24648 1 +24664 1 +24676 1 +1 +24690 1 +24702 1 +1 +1 +1 +1 +1 +24723 1 +1 +1 +24740 1 +1 +1 +24757 1 +1 +1 +1 +24772 1 +1 +1 +24790 1 +1 +1 +1 +24804 1 +1 +1 +1 +24819 1 +1 +1 +1 +24838 1 +1 +1 +1 +1 +24854 1 +1 +1 +1 +1 +1 +1 +24867 1 +1 +24873 1 +1 +24877 1 +1 +1 +1 +24882 1 +1 +24885 1 +1 +24888 1 +24890 1 +24892 1 +24894 1 +24896 1 +1 +24899 1 +24901 1 +1 +1 +24908 1 +24914 1 +24921 1 +24933 1 +1 +1 +24943 1 +1 +24953 1 +24955 1 +24969 1 +1 +24981 1 +1 +1 +1 +1 +1 +1 +1 +25004 1 +1 +25019 1 +25035 1 +1 +25054 1 +25072 1 +1 +1 +1 +25091 1 +1 +25112 1 +1 +25136 1 +1 +25156 1 +1 +25174 1 +25187 1 +1 +25230 1 +25235 1 +1 +25244 1 +25254 1 +25264 1 +25276 1 +1 +25279 1 +25318 1 +1 +25343 1 +1 +25363 1 +25372 1 +25386 1 +1 +1 +25400 1 +1 +25411 1 +25426 1 +25437 1 +1 +1 +25443 1 +25448 1 +25455 1 +25458 1 +1 +1 +1 +1 +1 +1 +25468 1 +25476 1 +1 +25488 1 +25492 1 +25497 1 +25503 1 +25518 1 +1 +25535 1 +1 +1 +1 +1 +25777 1 +1 +25793 1 +1 +25809 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +25829 1 +25845 1 +25865 1 +1 +1 +1 +25876 1 +1 +1 +1 +1 +1 +25896 1 +1 +25911 1 +1 +1 +1 +25927 1 +1 +1 +1 +25939 1 +25952 1 +1 +1 +1 +1 +25960 1 +25964 1 +25969 1 +1 +25973 1 +1 +25979 1 +25985 1 +1 +25995 1 +25998 1 +1 +26013 1 +1 +26031 1 +26047 1 +26229 1 +1 +26236 1 +1 +1 +1 +26247 1 +1 +26253 1 +26256 1 +1 +1 +26263 1 +26268 1 +26277 1 +26288 1 +1 +1 +1 +26301 1 +1 +1 +1 +1 +1 +1 +1 +1 +26321 1 +1 +1 +1 +1 +1 +1 +26340 1 +1 +1 +1 +1 +1 +1 +1 +26362 1 +1 +1 +1 +1 +1 +26381 1 +1 +1 +26392 1 +1 +1 +1 +1 +26418 1 +1 +1 +1 +1 +1 +1 +1 +26444 1 +1 +1 +1 +1 +1 +1 +1 +26455 1 +1 +1 +1 +26463 1 +1 +1 +1 +1 +1 +1 +1 +26474 1 +1 +1 +1 +1 +1 +1 +1 +26486 1 +1 +26490 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +26505 1 +1 +1 +1 +1 +1 +26513 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +26541 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +26559 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +26589 1 +1 +1 +1 +1 +1 +1 +1 +26600 1 +26609 1 +1 +1 +26617 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +26642 1 +1 +1 +1 +1 +26661 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +26687 1 +1 +1 +1 +1 +26704 1 +1 +1 +1 +1 +1 +1 +1 +26713 1 +1 +1 +26717 1 +26723 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +26757 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +26776 1 +1 +1 +1 +1 +1 +26785 1 +1 +1 +26794 1 +26805 1 +1 +1 +26813 1 +1 +1 +26826 1 +1 +1 +26830 1 +26834 1 +1 +1 +1 +1 +1 +26849 1 +1 +1 +1 +1 +1 +1 +1 +1 +26871 1 +1 +1 +1 +26883 1 +1 +1 +1 +1 +1 +1 +26900 1 +26909 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +26932 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +26958 1 +1 +1 +26970 1 +1 +1 +1 +1 +1 +1 +1 +1 +26996 1 +1 +1 +1 +1 +1 +1 +27009 1 +1 +1 +1 +1 +1 +1 +1 +1 +27023 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +27047 1 +1 +1 +1 +1 +1 +27056 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +27086 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +27114 1 +1 +1 +1 +1 +27125 1 +1 +1 +1 +1 +1 +1 +1 +1 +27141 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +27163 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +27185 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +27212 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +27234 1 +1 +1 +1 +1 +27245 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +27265 1 +27274 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +27302 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +27328 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +27353 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +27380 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +27403 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +27429 1 +1 +1 +1 +1 +1 +1 +1 +27450 1 +1 +1 +1 +1 +1 +27462 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +27477 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +27498 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +27524 1 +1 +1 +1 +1 +1 +1 +1 +27547 1 +1 +1 +27564 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +27588 1 +1 +1 +1 +1 +1 +1 +27615 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +27644 1 +1 +1 +1 +1 +1 +1 +27671 1 +1 +1 +27679 1 +1 +1 +1 +1 +27709 1 +1 +1 +1 +27729 1 +1 +1 +1 +1 +27758 1 +1 +1 +27778 1 +1 +27810 1 +27842 1 +27865 1 +27884 1 +1 +1 +27906 1 +1 +1 +1 +27915 1 +1 +1 +1 +27920 1 +27927 1 +1 +1 +1 +1 +27938 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +27966 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +27986 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +28008 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +28025 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +28047 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +28068 1 +28072 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +28093 1 +1 +1 +28102 1 +28109 1 +1 +1 +1 +1 +1 +1 +1 +28127 1 +1 +28135 1 +1 +1 +28148 1 +1 +28158 1 +1 +1 +1 +28170 1 +28179 1 +1 +28190 1 +28198 1 +1 +28228 1 +28245 1 +28303 1 +28313 1 +28323 1 +1 +28343 1 +28358 1 +1 +28375 1 +1 +1 +1 +28389 1 +28391 1 +1 +1 +28395 1 +1 +1 +1 +1 +1 +1 +1 +28408 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +28424 1 +1 +28427 1 +1 +1 +1 +28438 1 +28445 1 +1 +28454 1 +1 +1 +1 +1 +1 +1 +1 +28464 1 +1 +1 +1 +1 +28478 1 +1 +1 +1 +1 +1 +1 +1 +28488 1 +1 +1 +1 +1 +1 +1 +1 +28501 1 +1 +1 +28508 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +28527 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +28547 1 +1 +1 +1 +1 +28557 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +28572 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +28595 1 +28597 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +28617 1 +1 +28622 1 +1 +1 +1 +1 +1 +28637 1 +1 +28646 1 +1 +1 +1 +1 +1 +28662 1 +1 +1 +1 +28672 1 +1 +28688 1 +1 +1 +28715 1 +1 +1 +28740 1 +28823 1 +28836 1 +28849 1 +1 +1 +28859 1 +1 +1 +28863 1 +28893 1 +1 +28907 1 +1 +28979 1 +1 +1 +1 +1 +28991 1 +1 +1 +1 +1 +1 +1 +1 +1 +29007 1 +1 +1 +1 +1 +1 +1 +1 +29022 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +29037 1 +1 +1 +1 +1 +29044 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +29069 1 +29082 1 +1 +1 +1 +29092 1 +1 +1 +1 +1 +1 +1 +1 +1 +29114 1 +1 +1 +1 +1 +1 +1 +1 +29134 1 +29156 1 +1 +1 +1 +1 +29184 1 +1 +1 +1 +1 +1 +29197 1 +1 +1 +29215 1 +1 +1 +29222 1 +1 +1 +1 +29244 1 +29246 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +29272 1 +1 +1 +1 +1 +1 +1 +1 +29301 1 +1 +1 +29317 1 +1 +1 +1 +1 +29327 1 +29341 1 +1 +29352 1 +29362 1 +29365 1 +1 +29372 1 +1 +1 +1 +29381 1 +29384 1 +1 +29388 1 +1 +1 +1 +29398 1 +1 +29403 1 +1 +29410 1 +1 +1 +29418 1 +29423 1 +1 +1 +1 +1 +1 +29437 1 +29452 1 +1 +1 +1 +1 +29480 1 +1 +1 +1 +29501 1 +1 +29512 1 +1 +1 +29527 1 +1 +1 +1 +1 +29539 1 +29547 1 +1 +29558 1 +1 +1 +29576 1 +1 +1 +1 +29601 1 +1 +1 +1 +1 +29622 1 +1 +1 +1 +1 +29644 1 +1 +29659 1 +1 +1 +29673 1 +1 +1 +1 +29679 1 +29683 1 +1 +29692 1 +1 +1 +1 +29701 1 +1 +29711 1 +1 +1 +29725 1 +29737 1 +1 +29746 1 +29755 1 +1 +29764 1 +1 +1 +1 +1 +29777 1 +1 +1 +1 +1 +29785 1 +1 +1 +29791 1 +1 +1 +1 +1 +1 +1 +1 +1 +29803 1 +1 +1 +1 +1 +29811 1 +1 +1 +29821 1 +29832 1 +1 +1 +29837 1 +29842 1 +1 +29847 1 +1 +1 +29861 1 +1 +1 +29865 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +29891 1 +1 +1 +1 +1 +1 +1 +1 +1 +29902 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +29918 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +29938 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +29960 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +29986 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +30010 1 +1 +1 +1 +1 +1 +1 +30022 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +30047 1 +1 +1 +1 +1 +1 +30057 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +30080 1 +30084 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +30105 1 +1 +30113 1 +1 +1 +1 +1 +1 +1 +1 +30131 1 +30139 1 +1 +1 +1 +1 +30156 1 +1 +1 +30169 1 +1 +1 +1 +1 +30181 1 +30193 1 +1 +1 +30207 1 +30228 1 +30239 1 +30247 1 +30256 1 +30264 1 +30283 1 +30303 1 +1 +1 +30325 1 +1 +1 +1 +30340 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +30365 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +30389 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +30419 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +30446 1 +1 +1 +1 +1 +1 +1 +30457 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +30484 1 +1 +1 +1 +1 +1 +1 +30496 1 +1 +1 +1 +1 +30511 1 +1 +1 +1 +1 +1 +1 +1 +1 +30526 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +30544 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +30563 1 +1 +30690 1 +30714 1 +1 +1 +30732 1 +1 +1 +30752 1 +1 +1 +1 +1 +1 +30773 1 +1 +1 +1 +1 +1 +1 +1 +30783 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +30795 1 +1 +1 +1 +1 +30801 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +30817 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +30844 1 +1 +1 +1 +1 +1 +30852 1 +1 +30860 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +30876 1 +30883 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +30897 1 +1 +30906 1 +1 +30911 1 +1 +1 +1 +1 +30922 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +30954 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +30978 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +31005 1 +1 +1 +1 +1 +1 +1 +1 +1 +31016 1 +1 +1 +1 +1 +1 +31024 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +31043 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +31065 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +31083 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +31099 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +31116 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +31146 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +31166 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +31187 1 +1 +1 +1 +1 +31195 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +31221 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +31243 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +31270 1 +1 +31566 1 +31582 1 +31598 1 +31615 1 +31628 1 +1 +31647 1 +31655 1 +1 +31680 1 +31694 1 +31709 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +31721 1 +1 +1 +1 +1 +1 +1 +1 +1 +31738 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +31759 1 +1 +1 +1 +1 +1 +1 +31778 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +31800 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +31813 1 +1 +1 +1 +1 +1 +1 +1 +1 +31827 1 +1 +31841 1 +1 +31844 1 +1 +1 +1 +1 +1 +1 +1 +31860 1 +1 +1 +31864 1 +1 +1 +1 +31888 1 +1 +31909 1 +1 +31931 1 +1 +31954 1 +31978 1 +32025 1 +32060 1 +32137 1 +1 +32143 1 +1 +1 +1 +1 +1 +32153 1 +1 +1 +1 +32158 1 +1 +1 +1 +32164 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +32180 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +32197 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +32222 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +32248 1 +1 +1 +1 +1 +1 +1 +32270 1 +1 +1 +1 +32287 1 +1 +1 +32302 1 +1 +1 +32323 1 +1 +1 +32342 1 +1 +32360 1 +1 +32381 1 +1 +1 +32402 1 +32415 1 +32434 1 +1 +32452 1 +1 +1 +1 +32469 1 +1 +32484 1 +1 +32501 1 +32522 1 +1 +32539 1 +32556 1 +32690 1 +1 +32707 1 +32714 1 +32716 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +32735 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +32759 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +32778 1 +1 +1 +1 +1 +1 +1 +1 +32794 1 +1 +1 +1 +1 +1 +1 +32812 1 +1 +1 +1 +1 +32828 1 +1 +1 +32843 1 +33166 1 +33186 1 +1 +33218 1 +33233 1 +33235 1 +33248 1 +33261 1 +1 +1 +33278 1 +1 +1 +1 +1 +1 +1 +33297 1 +1 +1 +33302 1 +1 +1 +33315 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +33331 1 +1 +1 +1 +33336 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +33397 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +33414 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +33438 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +33457 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +33478 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +33501 1 +1 +1 +1 +1 +1 +1 +33511 1 +1 +1 +33517 1 +1 +1 +1 +1 +1 +33530 1 +1 +33536 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +33552 1 +1 +33559 1 +1 +1 +33565 1 +1 +33572 1 +1 +33581 1 +33591 1 +1 +33600 1 +1 +33617 1 +1 +33684 1 +33686 1 +1 +33703 1 +33722 1 +1 +33743 1 +1 +1 +33773 1 +33920 1 +1 +1 +1 +1 +33942 1 +1 +33963 1 +1 +33982 1 +34036 1 +1 +1 +1 +34049 1 +34061 1 +1 +1 +34071 1 +1 +34080 1 +1 +1 +34092 1 +1 +1 +34100 1 +1 +1 +1 +1 +1 +1 +1 +1 +34116 1 +1 +1 +1 +1 +1 +1 +1 +34130 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +34152 1 +1 +1 +1 +1 +1 +1 +1 +34162 1 +1 +1 +1 +34167 1 +1 +34171 1 +1 +1 +1 +1 +1 +1 +34185 1 +1 +34189 1 +1 +1 +1 +1 +34195 1 +34205 1 +1 +1 +1 +34236 1 +34326 1 +34345 1 +34386 1 +34433 1 +34459 1 +34549 1 +34570 1 +34585 1 +34602 1 +1 +1 +1 +1 +1 +1 +1 +1 +34634 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +34658 1 +1 +1 +1 +1 +1 +1 +1 +34676 1 +1 +1 +1 +1 +1 +1 +34689 1 +34697 1 +1 +1 +1 +1 +1 +1 +1 +1 +34714 1 +1 +1 +1 +1 +1 +1 +34732 1 +1 +1 +1 +1 +1 +1 +1 +1 +34751 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +34773 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +34789 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +34804 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +34822 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +34842 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +34865 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +34877 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +34900 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +34916 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +34935 1 +1 +1 +1 +1 +1 +1 +1 +34947 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +34962 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +34980 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +35000 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +35014 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +35039 1 +1 +1 +1 +1 +1 +35054 1 +1 +1 +1 +1 +1 +1 +35073 1 +1 +1 +1 +1 +1 +1 +1 +35092 1 +1 +1 +1 +1 +35115 1 +1 +1 +1 +1 +1 +1 +1 +1 +35137 1 +1 +1 +1 +1 +1 +35155 1 +1 +1 +1 +1 +35172 1 +1 +1 +1 +35191 1 +1 +1 +1 +1 +35210 1 +1 +1 +1 +1 +1 +1 +35230 1 +1 +35241 1 +1 +1 +1 +35247 1 +35249 1 +35251 1 +1 +35254 1 +35257 1 +35261 1 +35276 1 +35349 1 +35383 1 +1 +35637 1 +35656 1 +1 +35663 1 +1 +35673 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +35689 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +35701 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +35725 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +35736 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +35764 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +35791 1 +1 +1 +1 +1 +35797 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +35820 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +35852 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +35877 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +35904 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +35926 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +35955 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +35975 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +35996 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +36022 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +36041 1 +1 +1 +36048 1 +1 +36055 1 +1 +1 +36061 1 +36067 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +36091 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +36115 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +36132 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +36154 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +36175 1 +36177 1 +1 +36180 1 +1 +36183 1 +36189 1 +36194 1 +36202 1 +1 +36211 1 +36227 1 +1 +36236 1 +1 +36245 1 +36252 1 +36258 1 +1 +1 +1 +36267 1 +1 +1 +1 +36276 1 +36280 1 +1 +36286 1 +1 +1 +1 +1 +36295 1 +1 +1 +1 +1 +36302 1 +1 +1 +1 +1 +36313 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +36331 1 +1 +1 +1 +1 +1 +1 +1 +1 +36350 1 +1 +1 +1 +1 +36368 1 +1 +1 +36388 1 +1 +1 +1 +1 +1 +36408 1 +1 +1 +1 +36430 1 +1 +1 +1 +1 +36450 1 +1 +1 +1 +1 +1 +1 +36471 1 +1 +1 +1 +36484 1 +1 +1 +36497 1 +1 +1 +1 +1 +36509 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +36543 1 +1 +1 +1 +1 +36567 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +36589 1 +1 +1 +36611 1 +1 +1 +36629 1 +1 +36644 1 +1 +1 +1 +36657 1 +1 +1 +36672 1 +1 +1 +1 +37339 1 +37365 1 +1 +37380 1 +1 +37387 1 +1 +1 +1 +1 +37407 1 +1 +1 +1 +1 +37428 1 +1 +1 +1 +37445 1 +1 +1 +37465 1 +1 +37486 1 +37513 1 +1 +37540 1 +1 +37564 1 +1 +1 +1 +37590 1 +37593 1 +37599 1 +1 +37603 1 +1 +37609 1 +1 +37623 1 +1 +37632 1 +1 +1 +37646 1 +1 +1 +37658 1 +37670 1 +37682 1 +37772 1 +1 +37801 1 +1 +37824 1 +37838 1 +1 +1 +37853 1 +37862 1 +1 +37874 1 +1 +37884 1 +1 +1 +1 +37908 1 +37919 1 +37929 1 +37941 1 +1 +1 +37951 1 +1 +37964 1 +1 +37973 1 +1 +37983 1 +1 +1 +1 +37988 1 +1 +1 +37999 1 +1 +1 +1 +1 +38008 1 +1 +38013 1 +38021 1 +1 +38025 1 +38035 1 +1 +38043 1 +38052 1 +1 +1 +1 +1 +1 +38065 1 +1 +38072 1 +1 +1 +1 +1 +1 +1 +38085 1 +1 +38090 1 +38100 1 +1 +38114 1 +38116 1 +1 +1 +38133 1 +38137 1 +1 +1 +1 +38153 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +38168 1 +1 +38179 1 +1 +1 +1 +38190 1 +38207 1 +1 +1 +1 +1 +38220 1 +1 +1 +1 +38236 1 +1 +1 +38248 1 +38259 1 +1 +1 +1 +1 +1 +1 +38274 1 +1 +1 +38278 1 +38305 1 +1 +38322 1 +38336 1 +38342 1 +38350 1 +38352 1 +1 +38370 1 +38381 1 +1 +38395 1 +1 +38409 1 +1 +38425 1 +38433 1 +38437 1 +1 +38453 1 +1 +1 +38464 1 +38482 1 +1 +38502 1 +1 +38522 1 +38542 1 +1 +1 +38568 1 +1 +38719 1 +1 +1 +1 +38733 1 +38744 1 +38753 1 +1 +1 +1 +1 +38767 1 +1 +1 +38771 1 +1 +1 +1 +38776 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +38790 1 +1 +1 +1 +38798 1 +1 +38804 1 +1 +1 +38811 1 +1 +38817 1 +1 +1 +1 +1 +38824 1 +1 +1 +1 +38832 1 +1 +1 +1 +38843 1 +1 +1 +38853 1 +1 +1 +38864 1 +1 +1 +38879 1 +1 +39046 1 +1 +1 +39061 1 +1 +1 +39068 1 +1 +1 +1 +1 +1 +1 +39085 1 +1 +39088 1 +39096 1 +39100 1 +1 +39104 1 +1 +39109 1 +1 +1 +1 +39120 1 +39123 1 +1 +1 +1 +39138 1 +1 +39151 1 +39197 1 +1 +39211 1 +39279 1 +1 +39306 1 +1 +39771 1 +39884 1 +39907 1 +1 +1 +39923 1 +39938 1 +1 +1 +39954 1 +39964 1 +39971 1 +1 +39974 1 +39979 1 +39984 1 +1 +39988 1 +1 +39995 1 +40001 1 +1 +40008 1 +1 +1 +40015 1 +40019 1 +40021 1 +1 +1 +40030 1 +1 +40047 1 +1 +1 +40080 1 +40105 1 +40136 1 +40161 1 +1 +1 +1 +40186 1 +1 +1 +1 +40211 1 +40232 1 +40245 1 +40250 1 +1 +40256 1 +40262 1 +40265 1 +1 +1 +1 +1 +1 +1 +40285 1 +1 +40289 1 +1 +1 +40317 1 +40339 1 +40566 1 +40586 1 +40727 1 +40751 1 +1 +40775 1 +1 +40801 1 +1 +1 +1 +1 +40832 1 +1 +1 +1 +1 +40846 1 +40851 1 +1 +1 +40875 1 +1 +1 +1 +1 +40905 1 +1 +40930 1 +1 +1 +1 +40957 1 +1 +40986 1 +1 +41030 1 +41052 1 +1 +1 +41072 1 +41095 1 +1 +1 +1 +41129 1 +1 +41145 1 +41167 1 +41182 1 +1 +41200 1 +41212 1 +41232 1 +1 +41238 1 +1 +1 +41247 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +41261 1 +1 +41273 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +41292 1 +1 +1 +1 +1 +1 +1 +1 +41312 1 +1 +1 +1 +1 +1 +1 +1 +1 +41331 1 +1 +1 +1 +1 +41358 1 +1 +41420 1 +41498 1 +41518 1 +41522 1 +41579 1 +1 +41600 1 +41603 1 +1 +1 +1 +41630 1 +1 +1 +41635 1 +1 +1 +41659 1 +1 +1 +1 +1 +1 +1 +1 +41690 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +41711 1 +1 +41718 1 +41722 1 +1 +1 +41733 1 +1 +1 +1 +41745 1 +1 +1 +1 +41757 1 +1 +1 +41764 1 +1 +1 +1 +1 +1 +1 +41775 1 +1 +1 +1 +1 +41783 1 +1 +1 +1 +41791 1 +1 +1 +1 +1 +1 +1 +1 +41802 1 +1 +1 +1 +41808 1 +1 +1 +1 +41814 1 +1 +1 +1 +41819 1 +1 +1 +41826 1 +1 +1 +1 +1 +41832 1 +1 +1 +41842 1 +1 +1 +1 +1 +1 +41854 1 +1 +1 +41858 1 +41866 1 +1 +41872 1 +41883 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +41903 1 +1 +41921 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +41939 1 +1 +41952 1 +1 +1 +41959 1 +1 +1 +1 +1 +1 +1 +1 +1 +41971 1 +1 +1 +41985 1 +1 +1 +1 +42002 1 +1 +1 +1 +42017 1 +1 +1 +42033 1 +1 +1 +1 +1 +42044 1 +1 +1 +42051 1 +1 +1 +1 +1 +42066 1 +1 +1 +42081 1 +1 +1 +1 +1 +1 +42094 1 +1 +1 +42105 1 +1 +1 +1 +1 +1 +42119 1 +42122 1 +1 +1 +1 +1 +1 +42142 1 +1 +1 +1 +42151 1 +1 +1 +1 +1 +42166 1 +1 +1 +1 +42173 1 +1 +1 +1 +1 +1 +1 +42196 1 +1 +1 +1 +42205 1 +1 +1 +1 +1 +42221 1 +1 +42226 1 +1 +1 +1 +42247 1 +42251 1 +1 +42257 1 +1 +1 +1 +1 +42276 1 +1 +42279 1 +42282 1 +1 +1 +1 +42308 1 +1 +1 +1 +1 +42316 1 +1 +1 +1 +1 +42342 1 +1 +1 +42348 1 +42370 1 +1 +1 +42374 1 +1 +42396 1 +1 +42399 1 +1 +42423 1 +1 +1 +1 +1 +42436 1 +1 +1 +42444 1 +1 +1 +42467 1 +1 +1 +1 +1 +42487 1 +1 +1 +42504 1 +42510 1 +1 +42520 1 +1 +1 +42532 1 +1 +1 +42541 1 +1 +1 +42549 1 +1 +42555 1 +42565 1 +1 +1 +1 +42572 1 +42583 1 +1 +1 +1 +1 +1 +42602 1 +1 +1 +1 +1 +1 +42626 1 +1 +1 +1 +1 +1 +1 +42651 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +42665 1 +1 +1 +42673 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +42702 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +42732 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +42754 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +42782 1 +1 +1 +42789 1 +1 +1 +1 +42798 1 +1 +1 +1 +1 +42813 1 +1 +1 +1 +1 +1 +42826 1 +1 +1 +42838 1 +1 +1 +1 +42849 1 +42851 1 +1 +1 +1 +1 +1 +1 +1 +1 +42874 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +42898 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +42924 1 +1 +1 +42935 1 +1 +1 +42956 1 +1 +1 +42975 1 +1 +1 +42994 1 +1 +1 +43012 1 +1 +1 +43027 1 +1 +1 +1 +43033 1 +43037 1 +1 +43041 1 +43051 1 +1 +1 +1 +1 +43066 1 +1 +1 +1 +1 +1 +1 +1 +43079 1 +1 +1 +1 +1 +43097 1 +1 +1 +1 +1 +1 +1 +43115 1 +1 +1 +1 +1 +1 +43123 1 +43143 1 +1 +1 +1 +43179 1 +1 +1 +1 +43211 1 +1 +1 +1 +1 +1 +1 +43236 1 +1 +1 +1 +1 +1 +43257 1 +1 +1 +1 +1 +1 +43291 1 +1 +1 +43315 1 +1 +43323 1 +1 +1 +43328 1 +43340 1 +1 +1 +43349 1 +43365 1 +43368 1 +43381 1 +1 +43406 1 +1 +1 +1 +1 +43432 1 +43446 1 +1 +1 +43461 1 +1 +43469 1 +1 +43473 1 +1 +43476 1 +1 +43480 1 +1 +43494 1 +1 +43507 1 +1 +1 +43525 1 +1 +43543 1 +43561 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +43590 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +43622 1 +1 +1 +1 +1 +1 +1 +1 +43645 1 +43668 1 +1 +43688 1 +1 +43709 1 +43731 1 +43752 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +43781 1 +1 +1 +1 +1 +1 +1 +1 +1 +43807 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +43837 1 +1 +1 +43843 1 +43846 1 +1 +1 +1 +43856 1 +1 +1 +1 +43865 1 +1 +1 +1 +43873 1 +43882 1 +1 +43892 1 +1 +1 +1 +1 +43901 1 +1 +1 +1 +1 +1 +43908 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +43928 1 +43931 1 +43939 1 +1 +1 +43949 1 +43957 1 +1 +43965 1 +43974 1 +43981 1 +43986 1 +1 +44001 1 +44003 1 +1 +1 +1 +44024 1 +44028 1 +44030 1 +1 +1 +1 +1 +1 +1 +1 +44056 1 +1 +1 +1 +44077 1 +1 +1 +1 +44097 1 +1 +44109 1 +1 +44115 1 +1 +1 +1 +44122 1 +44133 1 +44145 1 +1 +1 +44160 1 +44172 1 +44182 1 +1 +44191 1 +1 +44200 1 +44210 1 +1 +1 +44219 1 +1 +1 +1 +1 +1 +1 +1 +1 +44237 1 +1 +1 +1 +44250 1 +1 +1 +1 +44265 1 +1 +44280 1 +1 +44297 1 +1 +1 +1 +44303 1 +1 +1 +1 +1 +1 +1 +1 +44323 1 +1 +1 +1 +1 +1 +1 +1 +44344 1 +44346 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +44365 1 +1 +1 +1 +1 +1 +1 +44374 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +44402 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +44430 1 +1 +1 +44451 1 +1 +1 +1 +1 +1 +44470 1 +1 +1 +1 +1 +1 +1 +44480 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +44495 1 +1 +1 +1 +1 +1 +1 +1 +1 +44513 1 +44515 1 +1 +44518 1 +44520 1 +44522 1 +44540 1 +1 +44557 1 +1 +1 +1 +44573 1 +1 +1 +1 +1 +1 +1 +44591 1 +44602 1 +1 +1 +1 +1 +1 +44620 1 +1 +44646 1 +44733 1 +44770 1 +44814 1 +44836 1 +45021 1 +1 +45031 1 +45045 1 +45053 1 +45062 1 +45078 1 +1 +1 +45084 1 +1 +45097 1 +1 +1 +1 +1 +1 +45113 1 +45123 1 +1 +1 +1 +1 +1 +45139 1 +1 +1 +1 +1 +1 +45153 1 +1 +1 +1 +45166 1 +1 +1 +1 +1 +1 +1 +45179 1 +1 +45189 1 +1 +1 +1 +1 +1 +45200 1 +1 +45210 1 +1 +1 +1 +1 +1 +1 +1 +45223 1 +1 +1 +45239 1 +1 +1 +1 +1 +45246 1 +1 +1 +45259 1 +1 +1 +1 +45274 1 +1 +1 +1 +45280 1 +45295 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +45307 1 +45319 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +45331 1 +45337 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +45362 1 +1 +1 +1 +45367 1 +1 +45370 1 +45379 1 +45384 1 +1 +45389 1 +1 +1 +1 +45413 1 +1 +1 +1 +1 +45446 1 +1 +1 +45476 1 +1 +45505 1 +1 +1 +1 +45512 1 +45538 1 +45540 1 +45560 1 +45588 1 +1 +45619 1 +45638 1 +45640 1 +45661 1 +45663 1 +45687 1 +1 +45691 1 +45701 1 +1 +45713 1 +1 +45719 1 +1 +45736 1 +45745 1 +45750 1 +45757 1 +45762 1 +45771 1 +45775 1 +1 +45778 1 +1 +45781 1 +45787 1 +45791 1 +45794 1 +45797 1 +1 +45800 1 +45802 1 +1 +1 +45807 1 +45813 1 +1 +45821 1 +45833 1 +45848 1 +45857 1 +45877 1 +1 +1 +45896 1 +45913 1 +1 +45921 1 +45938 1 +1 +1 +45943 1 +1 +45966 1 +45968 1 +1 +45986 1 +46054 1 +46085 1 +46113 1 +46141 1 +46165 1 +46195 1 +1 +1 +46227 1 +46254 1 +46264 1 +1 +46282 1 +46299 1 +46317 1 +46322 1 +46337 1 +1 +46347 1 +46362 1 +1 +46370 1 +1 +46384 1 +1 +1 +1 +46389 1 +1 +1 +46393 1 +1 +1 +46397 1 +1 +1 +46411 1 +1 +1 +46489 1 +46510 1 +46534 1 +1 +46561 1 +46718 1 +46740 1 +46761 1 +1 +46783 1 +1 +1 +46803 1 +46807 1 +46824 1 +1 +46828 1 +1 +46838 1 +1 +1 +46842 1 +46862 1 +1 +1 +1 +1 +1 +1 +46881 1 +1 +1 +1 +1 +46900 1 +1 +1 +46921 1 +46954 1 +1 +46987 1 +1 +47014 1 +1 +1 +47042 1 +1 +1 +1 +47067 1 +1 +1 +47092 1 +1 +1 +1 +47122 1 +1 +1 +47150 1 +47161 1 +1 +1 +1 +1 +1 +1 +47169 1 +47171 1 +47181 1 +1 +1 +47193 1 +1 +1 +1 +1 +1 +47205 1 +1 +47212 1 +1 +1 +1 +47237 1 +47240 1 +1 +1 +1 +1 +1 +47267 1 +1 +1 +1 +47295 1 +1 +1 +1 +47329 1 +47354 1 +47388 1 +1 +47486 1 +47512 1 +47536 1 +1 +1 +47541 1 +47568 1 +1 +1 +47572 1 +47603 1 +1 +1 +1 +1 +47636 1 +1 +1 +47661 1 +1 +1 +47688 1 +1 +1 +47714 1 +47743 1 +1 +47771 1 +47776 1 +47787 1 +47792 1 +47802 1 +47809 1 +47827 1 +47831 1 +1 +47838 1 +47847 1 +1 +1 +1 +47877 1 +1 +1 +1 +1 +1 +1 +1 +47909 1 +1 +1 +1 +1 +1 +1 +1 +47941 1 +1 +1 +1 +1 +1 +1 +47969 1 +1 +1 +1 +48001 1 +1 +1 +1 +1 +1 +1 +48031 1 +1 +1 +1 +1 +48062 1 +1 +1 +1 +48086 1 +1 +48107 1 +48134 1 +1 +1 +48164 1 +1 +1 +1 +48182 1 +1 +48200 1 +1 +1 +1 +1 +1 +48208 1 +1 +1 +48226 1 +48228 1 +1 +1 +48242 1 +1 +1 +48246 1 +1 +1 +48264 1 +1 +48280 1 +1 +48306 1 +1 +1 +1 +1 +48332 1 +1 +1 +1 +48354 1 +1 +1 +1 +48383 1 +1 +1 +48411 1 +1 +48443 1 +48847 1 +1 +48874 1 +1 +1 +48890 1 +48904 1 +1 +1 +48920 1 +1 +1 +48936 1 +1 +1 +1 +1 +1 +48958 1 +1 +1 +48972 1 +1 +1 +1 +1 +1 +1 +1 +48995 1 +1 +49006 1 +1 +1 +49012 1 +1 +49015 1 +1 +1 +49019 1 +49026 1 +49036 1 +1 +1 +1 +1 +49048 1 +1 +1 +1 +1 +49069 1 +1 +49075 1 +1 +49085 1 +49101 1 +49115 1 +1 +1 +1 +1 +1 +1 +1 +49135 1 +1 +1 +1 +1 +49157 1 +1 +1 +1 +1 +1 +49185 1 +49218 1 +49278 1 +1 +49315 1 +1 +49340 1 +1 +1 +49366 1 +1 +49628 1 +49739 1 +49747 1 +49762 1 +49769 1 +1 +49786 1 +1 +49856 1 +1 +49888 1 +1 +49924 1 +49931 1 +1 +49962 1 +49969 1 +1 +1 +1 +49995 1 +50030 1 +50072 1 +1 +50106 1 +1 +50148 1 +1 +1 +50170 1 +1 +50190 1 +50209 1 +1 +50248 1 +1 +1 +1 +50282 1 +1 +50548 1 +1 +1 +50558 1 +50560 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +50578 1 +1 +1 +1 +1 +1 +1 +50590 1 +1 +1 +1 +1 +1 +1 +1 +50601 1 +1 +1 +1 +1 +50611 1 +1 +1 +1 +1 +1 +1 +1 +50624 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +50641 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +50658 1 +1 +1 +1 +1 +1 +1 +1 +50672 1 +1 +1 +50680 1 +1 +1 +50698 1 +1 +1 +1 +1 +1 +1 +1 +1 +50719 1 +1 +1 +1 +1 +1 +50737 1 +1 +1 +1 +1 +1 +1 +50757 1 +1 +1 +1 +1 +1 +1 +1 +50775 1 +1 +1 +1 +50784 1 +1 +1 +1 +1 +1 +1 +50795 1 +1 +1 +1 +1 +1 +1 +50805 1 +1 +1 +1 +50813 1 +50815 1 +1 +1 +1 +1 +1 +50825 1 +1 +1 +1 +1 +1 +1 +1 +1 +50840 1 +1 +1 +1 +1 +1 +1 +50852 1 +1 +1 +1 +1 +1 +1 +1 +1 +50867 1 +1 +1 +1 +50876 1 +1 +1 +1 +50887 1 +1 +1 +1 +1 +1 +50902 1 +1 +1 +1 +1 +1 +1 +1 +50911 1 +1 +1 +1 +50919 1 +1 +1 +1 +1 +50932 1 +1 +1 +1 +1 +50945 1 +1 +1 +1 +50965 1 +1 +1 +1 +1 +50987 1 +1 +51009 1 +1 +1 +1 +1 +1 +1 +51035 1 +1 +1 +1 +1 +51059 1 +1 +1 +51080 1 +1 +1 +1 +1 +51104 1 +1 +1 +1 +1 +51129 1 +1 +1 +1 +1 +51155 1 +1 +51172 1 +1 +1 +51186 1 +1 +1 +1 +1 +51207 1 +1 +1 +51212 1 +51215 1 +51219 1 +51222 1 +51227 1 +51229 1 +51235 1 +51238 1 +51240 1 +51242 1 +1 +1 +51254 1 +1 +1 +1 +1 +51272 1 +1 +51288 1 +51302 1 +1 +1 +1 +1 +1 +51326 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +51345 1 +1 +1 +51359 1 +1 +51374 1 +1 +1 +51397 1 +1 +1 +1 +1 +51422 1 +1 +1 +1 +1 +1 +1 +51450 1 +1 +1 +1 +1 +1 +1 +1 +51474 1 +1 +51478 1 +1 +1 +1 +1 +1 +51499 1 +1 +1 +1 +1 +1 +51507 1 +1 +1 +1 +51523 1 +1 +1 +1 +1 +51529 1 +1 +51540 1 +51545 1 +1 +1 +1 +1 +1 +51559 1 +1 +1 +51572 1 +1 +1 +51583 1 +1 +1 +51591 1 +51604 1 +51620 1 +1 +51640 1 +51656 1 +1 +51673 1 +51684 1 +1 +51693 1 +1 +1 +51701 1 +1 +1 +1 +51710 1 +1 +1 +1 +1 +51721 1 +51724 1 +1 +51730 1 +51733 1 +1 +51739 1 +1 +51744 1 +1 +51753 1 +51759 1 +51768 1 +51771 1 +1 +51781 1 +1 +51785 1 +1 +1 +51796 1 +51798 1 +51801 1 +51808 1 +51815 1 +51828 1 +51834 1 +1 +51845 1 +51855 1 +51864 1 +1 +51867 1 +1 +1 +1 +51873 1 +51875 1 +1 +1 +1 +1 +1 +51890 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +51907 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +51933 1 +1 +1 +1 +1 +1 +1 +1 +51945 1 +1 +1 +1 +1 +1 +1 +1 +51965 1 +1 +1 +1 +51988 1 +1 +1 +52016 1 +1 +1 +52030 1 +52043 1 +1 +1 +1 +52074 1 +1 +1 +1 +1 +1 +1 +52108 1 +1 +1 +1 +1 +52132 1 +1 +52138 1 +1 +1 +52160 1 +1 +52165 1 +1 +1 +52186 1 +1 +1 +52192 1 +52226 1 +52310 1 +1 +1 +52335 1 +52355 1 +1 +1 +52364 1 +1 +52377 1 +52389 1 +52398 1 +1 +52406 1 +52417 1 +52424 1 +52426 1 +52428 1 +52433 1 +1 +52440 1 +52442 1 +52449 1 +52460 1 +52473 1 +1 +1 +1 +1 +1 +52488 1 +52518 1 +52570 1 +1 +52595 1 +1 +1 +1 +1 +1 +1 +1 +52612 1 +1 +1 +1 +1 +1 +1 +52622 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +52644 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +52671 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +52692 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +52711 1 +1 +1 +1 +1 +1 +1 +1 +52726 1 +1 +1 +1 +1 +1 +1 +1 +52741 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +52757 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +52770 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +52789 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +52813 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 diff --git a/tf/0.3/modifiers.tf b/tf/0.3/modifiers.tf new file mode 100644 index 0000000..e4ea2e6 --- /dev/null +++ b/tf/0.3/modifiers.tf @@ -0,0 +1,11 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=sequence of modifiers after a sign +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=str +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +29124 @v diff --git a/tf/0.3/museum.tf b/tf/0.3/museum.tf new file mode 100644 index 0000000..6d820a5 --- /dev/null +++ b/tf/0.3/museum.tf @@ -0,0 +1,44 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=museum name from metadata field "museum.name" +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=str +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +59226 The British Museum +Louvre Museum +The British Museum +The British Museum +The British Museum +The British Museum +The British Museum +The British Museum +The British Museum +The British Museum +The British Museum +The British Museum +The British Museum +The British Museum +The British Museum +The British Museum +The British Museum +The British Museum +The British Museum +The British Museum +The British Museum +The British Museum +The British Museum +The British Museum +The British Museum +The British Museum +The British Museum +The British Museum +The British Museum +The British Museum +The British Museum +The British Museum +The British Museum +The British Museum diff --git a/tf/0.3/note.tf b/tf/0.3/note.tf new file mode 100644 index 0000000..a3ac037 --- /dev/null +++ b/tf/0.3/note.tf @@ -0,0 +1,70 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=note comment to a line +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=str +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +60418 pace CADS242a +BBR No. 26 ii 10 +60427 BAM385i20 +60429 paceCADB159,3’ +17f.seeJMC 14: 33 v13ff.; STT281i20f. +60433 i20ff.seeBM76023+i1-5 +60435 i22f.seeBAM50622f. +here and elsewhere PEŠ.DU₈/GABA = piš-irtu = piširtu? [HS] +60441 BAM506: 5; BAM508iv1f.;CT51.199 2-4 +60444 i31f.seeBAM3iv33-34;CT51.199 5-13; Heeßel and Al-rawi 2003, 223 i 43-45: JMC10:12ll.77ff.(AO11447r.29-30); BAM506:7;BAM508iv9f. +60453 40’see BM 32277+ 19’ +41f.seeBAM506obv14f. +60456 1f.seeBAM506obv16f. +60461 6f.seeBAM506obv18’. +60464 ii9’-12’seeBAM50619’-21’ +60471 16f.see BAM507obv2’-5’. BAM50626f. +60477 22-36 see BAM508iv18-34 +60482 one or two lines more or less, worth checking if K.15184 is not to be placed in the middle of the tablet [SVP], 22’-29’=UH5142ff. 27-30seeBAM508iv23-27 +60486 KAL7no13, ‘Diarrhea Tablet’ BAM506:32-37, BAM507 6-14; CT51.199 14-20;BAM508iv28-31 +60489 34-36seeBAM50635-37;BAM507:9-13: BAM508iv32-34:CT51.199 18ff. +60491 KAL7no13 follows the same incantations’ sequence +60494 GAP! 53-57Cf. JMC14:29 ii11ff.; JMC 17: 1f. +60499 JMC 14: 29f.ii15ff.; note the same sequence of 2 prescriptions on the Louvre tablet, AO 6774 +60502 ii61f.seeBAM3iii50ff. +bam480iv26ff +ii63ff.seeBAM3iv12f.; Heeßel and Al-rawi 2003, 223 i 30-36; JMC10:12ll.70ff.(AO11447r.18-21) +60508 note:ii67f.seeBAM3iv14f. +60525 note:iii12-15seeJMC14,29ii1ff. +60556 ‘place a say and hear’ = qabâ u šemâ šakin, šuila language, e.g. AGH 108: 21: UFBG 249ff.). +60560 note:iii52-56seeBM41373i6-10 +60565 join does not look great [SVP] +60570 note:62f.seeJMC14iv8f. +60577 note:cf.CADZ169a,IR for zuʾu +60588 ll. 78f'. GUR-šu]m-ma TI and nin-urta KIN-ma on K.17098 [SVP] +60598 11-14seeCTN4,113ii4ff // BM 41289 ii 4′-13′ = iv 11-19; JMC14iv10-14 +60602 ScurlockTinitus10 +60605 18f.see BAM512 4f.′ ... +60607 note:iv19seeJMC14,AO 6774iii17f.;CTN4113ii9-10 +60611 (+) K.20108-ZsomborFöldi +60616 29ff. // BAM3iv28ff.etc, see JMC7pp.25f.; 29-31see JMC14,AO 6774iii4-9; BAM3iv28-30; CTN4113ii11-15 +60637 BABBAR ša₂ ŠA₃-šu₂ see CT 55 150: 3 [courtesy A.Attia] +60663 similar in AMT 30,13: 6'-8' +60670 (+) K.6585+ +60689 (+) K.16401 +60692 or MUŠ.DIM₂.GURUN#.NA? instead of SUD +60699 (+) K.6585+ +60710 (Humbaba-lizard = pi-zal-lu-ru šá EDIN, Izbu Comm. I 43.) +60712 edition of the incantation Collins, medical incantations 195ff.; also in Assyrian dialect +60723 (+?) K.2450+ (BAM 542), but the middle dividing rulings do not seem to correspond. +60726 edition of the incantation Collins, medical incantations 268ff; l. 4 see K.13890 (BAM 541): EN₂ ši it-t[a- +60735 parallel to CTN 4, 196 ii 4ff.' +60743 (+)K.2439 +60752 see Sm.310:12 +60758 see AMT 24, 2: 1'-7' +60764 see AMT 24, 2: 8ff.' +60770 see AMT 24, 2: 17ff.' also BAM 539 +60777 edition of a similar or the same incantation Collins, medical incantations 276. +60779 iv 34ff.' see AMT 23, 6:1ff. +60788 see CT 17,50: 25f. +60790 see AMT 23, 6: 1'-17'. edition of the incantation Collins, medical incantations 266ff. diff --git a/tf/0.3/number.tf b/tf/0.3/number.tf new file mode 100644 index 0000000..b0d6e4d --- /dev/null +++ b/tf/0.3/number.tf @@ -0,0 +1,972 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=numeric value of a number sign +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=int +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +5 5 +173 2 +694 7 +699 7 +702 7 +807 1 +3 +815 10 +832 3 +845 10 +875 5 +917 1 +3 +937 3 +1297 3 +1716 3 +1727 3 +1731 4 +1764 1 +1766 2 +1768 3 +1817 3 +1860 3 +1865 4 +1911 8 +2185 1 +2273 7 +2364 1 +2409 1 +2490 7 +2830 3 +2884 3 +2959 4 +3059 5 +3105 7 +3241 7 +3412 1 +3429 15 +3434 15 +3439 3 +3528 3 +3629 11 +3636 1 +3814 7 +3817 8 +3832 15 +3845 1 +3862 1 +3873 15 +3895 1 +3897 2 +3899 3 +3912 3 +4623 1 +4629 2 +4646 20 +4805 7 +5097 14 +5104 14 +5164 10 +5171 10 +5356 1 +2 +5363 1 +2 +5369 10 +5374 3 +5379 2 +5382 10 +5412 1 +2 +5474 7 +5527 2 +5532 2 +5601 1 +2 +5607 1 +2 +5613 1 +2 +5618 1 +2 +5624 1 +2 +5629 1 +2 +5634 1 +2 +5640 1 +2 +5646 1 +2 +5654 1 +2 +5660 1 +2 +5666 1 +2 +5672 1 +2 +5680 10 +5684 10 +5690 1 +2 +5695 1 +2 +5701 1 +2 +5707 1 +2 +5712 16 +5735 3 +6108 1 +2 +6114 1 +2 +6122 1 +2 +6128 3 +6426 5 +6674 7 +6879 12 +6944 7 +6955 1 +7409 7 +7650 7 +7653 7 +7668 7 +7687 15 +7689 150 +7696 15 +7698 150 +7728 30 +7787 30 +8047 7 +8183 3 +8266 7 +8300 150 +8497 7 +8753 60 +8778 3 +8924 7 +8932 7 +9090 10 +9094 7 +9245 3 +9268 5 +9397 2 +9401 1 +9719 1 +3 +9740 1 +3 +9756 3 +9760 1 +3 +9766 1 +3 +9784 3 +9824 1 +3 +9830 1 +3 +9838 10 +9858 3 +9871 10 +9900 5 +9923 1 +9929 10 +9940 1 +3 +9959 3 +9990 1 +3 +10010 3 +10014 10 +10033 10 +10048 1 +10074 1 +10079 1 +2 +10083 1 +3 +10090 1 +3 +10098 1 +3 +10103 10 +10133 1 +3 +10171 1 +3 +10176 1 +3 +10208 1 +3 +10286 3 +10332 3 +10356 3 +10395 3 +10416 3 +10428 1 +3 +10451 3 +10510 3 +10538 3 +10565 3 +10576 1 +3 +10582 1 +3 +10594 3 +10598 1 +3 +10612 3 +10623 1 +3 +10637 3 +10660 3 +10832 10 +10852 3 +10916 1 +3 +10938 3 +10942 1 +3 +10948 1 +3 +10967 3 +10971 1 +3 +10985 1 +3 +10998 1 +3 +11014 1 +3 +11124 1 +3 +11130 1 +3 +11136 1 +3 +11141 1 +3 +11146 1 +3 +11152 1 +3 +11267 1 +11463 3 +11526 1 +3 +11542 1 +2 +11555 1 +3 +11671 1 +3 +11677 1 +3 +11740 3 +11754 2 +11813 15 +11817 5 +11838 3 +12162 1 +12176 3 +12188 10 +12194 10 +12199 10 +12205 10 +12210 10 +12215 10 +12220 10 +12226 10 +12231 10 +12235 10 +12259 1 +3 +12534 2 +12664 13 +12733 7 +12756 7 +12760 3 +12764 3 +12779 3 +12872 3 +12912 7 +13122 3 +13228 6 +13319 3 +13349 2 +13389 1 +13587 7 +13603 7 +13670 7 +13675 8 +13682 3 +13748 8 +14015 3 +14053 5 +14063 15 +14065 150 +3 +14137 3 +14201 7 +14304 1 +15634 7 +15637 7 +15744 10 +15749 10 +15763 10 +15768 10 +16271 1 +16273 2 +16275 3 +16461 10 +16465 10 +16469 10 +16474 10 +16478 10 +16482 10 +17120 1 +17168 1 +17192 150 +17438 6 +17481 10 +17485 10 +17490 10 +17494 10 +17499 10 +17505 10 +17509 10 +17513 10 +17518 10 +17522 10 +17527 10 +17532 10 +17536 10 +17540 10 +17544 10 +17552 10 +17557 10 +17562 10 +17569 10 +17573 10 +17796 7 +17803 4 +18041 10 +18044 1 +3 +18112 10 +18115 1 +3 +18184 10 +18187 1 +3 +18271 7 +18595 2 +18795 8 +18922 5 +19028 3 +19062 20 +19119 1 +19239 8 +19505 2 +19541 3 +19583 1 +19621 3 +19679 1 +19717 3 +19780 1 +19793 3 +19800 3 +19914 1 +19927 3 +19934 3 +19981 1 +19994 3 +20051 3 +20093 1 +20095 2 +20097 3 +20125 1 +20132 2 +20155 3 +20163 4 +20241 1 +20243 2 +20245 3 +20366 1 +20464 1 +20485 3 +20494 4 +20544 1 +20761 1 +20874 1 +21160 1 +21319 30 +21356 7 +21428 7 +21493 7 +21510 7 +21540 7 +21579 7 +21606 9 +21648 7 +21731 7 +21833 7 +21923 3 +21967 3 +22046 3 +22344 1 +22351 1 +22365 3 +22376 4 +22379 2 +22496 3 +22729 2 +23180 3 +23209 7 +23340 3 +23386 50 +23487 3 +23611 1 +23702 3 +23975 1 +23980 3 +24088 40 +24143 1 +24158 20 +24160 20 +24303 5 +24308 5 +24425 1 +24427 2 +24429 3 +24507 7 +24552 3 +24628 2 +24644 7 +24670 7 +24703 1 +24869 1 +24939 7 +25038 11 +25086 1 +25089 21 +25212 11 +25233 9 +25265 1 +25295 1 +25300 1 +2 +25306 4 +25415 7 +25491 15 +25617 1 +25659 30 +25680 30 +25763 7 +25772 7 +25856 1 +25915 7 +26019 1 +26075 9 +26123 9 +26155 7 +26373 3 +26471 5 +26476 6 +26481 5 +26644 1 +26654 6 +26705 5 +26942 7 +26949 1 +26970 3 +26994 20 +27070 14 +27248 3 +27252 3 +27257 3 +27262 1 +27385 1 +27443 9 +27691 7 +27762 50 +27764 50 +27774 2 +27889 40 +27944 7 +28088 1 +28090 2 +28092 3 +28094 4 +28117 7 +28119 7 +28556 1 +28560 7 +28562 7 +29107 10 +29123 3 +29196 10 +29280 1 +29282 2 +29284 3 +29504 6 +29509 5 +29553 3 +29696 1 +29726 5 +29782 3 +29849 14 +30027 3 +30031 3 +30036 3 +30041 1 +30164 1 +30222 9 +30470 7 +30526 2 +30640 40 +30695 7 +30835 1 +30837 2 +30839 3 +30841 4 +30863 7 +30865 7 +31203 1 +31207 7 +31209 7 +31834 2 +31843 7 +31845 7 +32071 30 +32083 30 +32101 30 +32278 7 +32369 7 +32661 7 +32904 7 +32906 7 +32956 7 +33141 7 +33144 15 +7 +33148 150 +33152 7 +33154 7 +33158 7 +33225 7 +33227 7 +33240 7 +33300 7 +33306 7 +33432 3 +33633 7 +33635 7 +33830 7 +33944 2 +34022 7 +34045 18 +34113 7 +34115 7 +34189 150 +34196 9 +34219 7 +34276 19 +34280 9 +34340 15 +34395 1 +34405 7 +34442 11 +34470 7 +34525 2 +34592 3 +35160 7 +35163 7 +35273 10 +35279 10 +35291 10 +35297 10 +35301 10 +36539 2 +36719 1 +2 +36725 1 +2 +36730 1 +2 +36736 1 +2 +36741 1 +2 +36748 1 +2 +36754 1 +2 +36762 1 +2 +36767 1 +2 +36773 1 +2 +36780 1 +2 +36788 1 +2 +36795 1 +2 +36801 1 +2 +36807 1 +3 +36814 1 +3 +36822 10 +36827 10 +36833 1 +36837 1 +36842 1 +36846 1 +36873 9 +36878 4 +37345 3 +37384 3 +37536 3 +37626 3 +37637 2 +37882 12 +37983 17 +38123 7 +38166 14 +38180 10 +38187 10 +38192 10 +38199 10 +38202 10 +38208 10 +38213 1 +38217 1 +2 +38221 1 +2 +38291 3 +38431 7 +38540 5 +38564 8 +38593 15 +38598 15 +38604 15 +39139 4 +39150 14 +39158 5 +39166 21 +39172 10 +39180 15 +39186 1 +2 +39195 90 +39203 10 +39209 4 +39217 10 +39223 4 +39231 10 +39237 1 +2 +39247 10 +39253 4 +39260 10 +39266 4 +39276 10 +39694 5 +39920 6 +40176 7 +40368 5 +40883 15 +41568 9 +41878 10 +41944 5 +41949 5 +42058 7 +42061 7 +42193 1 +42197 1 +42221 10 +42465 3 +42527 3 +43403 3 +43820 3 +43826 4 +44053 3 +44066 3 +44298 5 +44506 4 +44538 2 +44570 1 +2 +44576 1 +2 +44581 1 +2 +44588 1 +2 +44594 1 +2 +44599 1 +2 +44604 1 +2 +44610 1 +2 +44616 1 +2 +44622 1 +2 +44627 1 +2 +44633 1 +2 +44664 1 +3 +44670 1 +3 +44676 1 +3 +44682 1 +3 +44687 1 +3 +44714 1 +44736 1 +2 +44742 1 +2 +44773 1 +2 +44778 1 +2 +44786 1 +2 +44791 1 +2 +44797 1 +2 +44891 1 +2 +44897 1 +2 +44902 1 +2 +44907 1 +2 +44989 1 +2 +44995 1 +2 +45041 14 +45051 1 +2 +45068 1 +2 +45733 3 +45741 7 +45858 1 +3 +45864 1 +3 +45869 10 +45872 1 +2 +45883 5 +45903 1 +46098 2 +46101 1 +2 +46249 7 +46251 7 +46308 1 +46351 1 +2 +46492 3 +46601 7 +46810 10 +46816 10 +46923 10 +46929 10 +47209 3 +47227 1 +3 +47234 1 +3 +47377 5 +47396 4 +47403 4 +47411 4 +47427 90 +47607 7 +47675 10 +47738 5 +47881 1 +2 +47886 1 +2 +47892 1 +3 +47897 10 +47902 10 +48033 9 +48070 7 +48077 7 +48176 7 +48191 1 +48343 10 +48453 5 +48552 11 +48920 1 +2 +48926 1 +2 +48932 1 +2 +48937 1 +2 +48942 1 +2 +48947 1 +2 +48953 1 +2 +48961 1 +2 +48966 1 +2 +48973 1 +2 +48980 1 +2 +48988 1 +2 +48997 10 +49002 10 +49009 21 +49206 2 +49278 1 +2 +49285 1 +2 +49292 1 +2 +49297 1 +2 +49303 1 +2 +49412 1 +3 +49419 1 +3 +49426 1 +3 +49470 1 +2 +49476 1 +2 +49483 1 +2 +49489 1 +2 +49784 3 +49808 1 +3 +49813 1 +3 +49819 1 +3 +49824 1 +3 +49830 1 +3 +49835 1 +3 +49840 1 +3 +49847 1 +3 +49854 8 +49879 3 +49925 1 +2 +49931 1 +2 +49937 1 +2 +49942 1 +2 +49949 1 +2 +49955 1 +2 +49963 1 +2 +49969 1 +2 +49975 1 +2 +49981 1 +2 +49986 1 +2 +49991 1 +2 +49997 1 +2 +50002 1 +2 +50007 1 +3 +50013 1 +3 +50020 10 +50024 10 +50030 16 +50055 3 +50099 1 +2 +50106 1 +2 +50112 10 +50129 1 +3 +50187 2 +50235 1 +2 +50242 1 +2 +50248 2 +50253 2 +50258 3 +50263 3 +50413 2 +50556 7 +50558 7 +50709 7 +51144 1 +2 +51151 1 +2 +51166 10 +51276 1 +51311 3 +51667 10 +51757 7 +51930 3 +52157 10 +52162 5 +52222 3 +52242 5 +52331 3 +52480 4 diff --git a/tf/0.3/oslots.tf b/tf/0.3/oslots.tf new file mode 100644 index 0000000..260d106 --- /dev/null +++ b/tf/0.3/oslots.tf @@ -0,0 +1,40391 @@ +@edge +@converters=Cale Johnson, Dirk Roorda +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=str +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +52830 1-4 +9-12 +20-21 +33-37 +50 +57 +66-77 +91-107 +111 +119-132 +144-153 +155 +162-172 +177-182 +196-214 +227-247 +248-250 +256-257 +258 +258 +260-262 +262 +264-266 +268-281 +284-286 +287-293 +296-298 +301-306 +305 +310-322 +326-338 +341-343 +350-360 +365-381 +388-401 +406-416 +418-438 +443-444 +448 +455 +462-476 +483-484 +493-494 +504-506 +511-523 +536-549 +557-575 +587-606 +619-632 +634 +639-646 +654-667 +673 +680 +687-689 +704-705 +707 +711-712 +712 +716-724 +725-740 +741-750 +755-766 +755 +767-771 +772 +775-781 +782-785 +794-801 +802-805 +816-822 +823-826 +826 +833-835 +836-837 +852-853 +854-855 +867-870 +871-874 +890-895 +896-898 +902-907 +908-913 +920 +921-923 +924-934 +938-940 +941-949 +952-955 +956-958 +965-971 +972-974 +980-983 +984-990 +992-993 +994-1002 +1003-1007 +1009-1022 +1026-1039 +1043-1055 +1061 +1066-1073 +1081-1093 +1096 +1101-1112 +1123-1133 +1139 +1145-1153 +1153 +1159 +1160-1171 +1175 +1180 +1183 +1184-1192 +1200 +1201-1211 +1212 +1216 +1222-1223 +1224-1230 +1233-1234 +1235-1243 +1255-1256 +1257-1264 +1274-1276 +1277-1281 +1291-1293 +1294-1295 +1295 +1305-1307 +1308-1309 +1314-1316 +1317 +1327 +1335-1342 +1358-1362 +1363-1364 +1365 +1368-1369 +1370 +1372 +1373 +1374-1375 +1384-1385 +1386-1388 +1396-1398 +1399 +1401 +1413 +1414-1415 +1429 +1430-1431 +1437 +1440-1441 +1442 +1449 +1450 +1464 +1465 +1467 +1472-1474 +1473 +1475-1476 +1484-1485 +1486-1487 +1492-1493 +1494 +1497-1498 +1500 +1501 +1502 +1505-1506 +1508 +1510-1511 +1513 +1515-1517 +1522-1524 +1528 +1533-1535 +1537 +1539 +1543 +1547 +1548 +1550-1552 +1553-1555 +1556-1562 +1561 +1571-1575 +1574 +1577 +1581 +1588 +1590-1592 +1596-1598 +1601 +1605 +1612 +1615 +1615 +1616 +1618 +1619-1620 +1621-1629 +1630-1632 +1634-1643 +1644 +1645 +1647-1654 +1655 +1658-1662 +1663-1664 +1667-1671 +1672-1674 +1677-1678 +1678 +1681-1683 +1686 +1689-1690 +1692 +1694-1700 +1720-1722 +1723-1724 +1735 +1749-1753 +1754-1757 +1781-1784 +1784 +1787-1788 +1800 +1813 +1824 +1827-1829 +1828 +1831 +1833 +1835 +1835 +1859-1863 +1885-1886 +1891 +1892 +1902 +1905-1907 +1909 +1929-1931 +1938 +1946-1949 +1950 +1958 +1962-1966 +1967-1968 +1992 +1993-1995 +2009 +2011-2013 +2013 +2027 +2030-2032 +2030-2031 +2045 +2047-2050 +2055 +2058 +2060 +2063-2066 +2069-2070 +2089-2090 +2093-2094 +2111-2113 +2115-2117 +2126-2128 +2130-2131 +2142 +2143-2145 +2145 +2155 +2156-2159 +2173 +2174 +2174 +2180 +2181-2188 +2181 +2189-2191 +2191 +2197 +2201-2212 +2213-2215 +2223 +2224-2233 +2225 +2232 +2234-2235 +2236 +2244-2249 +2250-2253 +2264-2268 +2269-2270 +2280-2283 +2284-2286 +2288-2293 +2296 +2297-2302 +2306-2307 +2311-2312 +2313-2314 +2316-2317 +2327 +2331-2332 +2336 +2337-2338 +2355-2361 +2385-2387 +2410-2414 +2431-2435 +2436 +2456-2462 +2459 +2476-2483 +2485 +2489 +2494-2500 +2502 +2508-2509 +2515 +2521-2523 +2528-2536 +2543-2545 +2553-2555 +2565 +2577-2580 +2577 +2588 +2595-2597 +2620 +2623 +2625 +2627-2628 +2635 +2639-2643 +2644-2645 +2650-2651 +2659-2660 +2661-2662 +2667-2668 +2671 +2683 +2686-2687 +2690 +2691-2692 +2693 +2700 +2704-2705 +2733 +2734 +2756-2759 +2758-2759 +2768-2769 +2770 +2776 +2778-2780 +2797-2804 +2827-2829 +2828 +2848-2849 +2867-2869 +2868 +2876 +2883-2891 +2902-2909 +2903 +2908 +2918-2919 +2926-2927 +2934-2940 +2949 +2952-2953 +2962 +2967 +2981 +2991 +2998-3002 +2999 +3000 +3013 +3019 +3030-3033 +3045 +3056-3058 +3063 +3069-3070 +3080-3083 +3082 +3089 +3094-3096 +3098 +3109 +3117-3120 +3133-3150 +3164-3180 +3197-3198 +3199 +3203 +3208 +3212 +3219-3222 +3228-3229 +3240-3245 +3256 +3262 +3269 +3274 +3279 +3287 +3294-3295 +3308-3310 +3311 +3315-3316 +3328 +3333-3334 +3349 +3374-3375 +3374 +3374 +3379 +3382 +3387 +3394 +3395-3397 +3398 +3403 +3409-3410 +3420 +3423 +3424 +3432 +3443 +3444-3445 +3454 +3456-3457 +3460 +3468 +3469-3471 +3479 +3482 +3488 +3492-3493 +3494-3499 +3515-3516 +3517-3518 +3537 +3540-3541 +3542-3545 +3554 +3566 +3567 +3568-3569 +3582 +3594 +3599-3600 +3601 +3611 +3612 +3619 +3620-3623 +3628 +3628 +3637-3643 +3642 +3658-3671 +3663 +3678 +3684 +3686-3691 +3692 +3708-3710 +3718-3719 +3724 +3730-3731 +3732-3733 +3735-3736 +3736 +3739 +3740 +3745 +3745 +3746-3753 +3749 +3759-3760 +3762-3764 +3772 +3782-3785 +3794-3795 +3796-3797 +3798-3799 +3810 +3812 +3813-3815 +3828-3832 +3848-3852 +3849 +3854-3855 +3866 +3875-3879 +3881 +3888-3892 +3889-3891 +3894-3896 +3905-3906 +3917 +3923-3924 +3924 +3928 +3931-3933 +3952 +3961 +3963 +3979-3981 +3990-3991 +3994-4003 +3996 +3999 +4020-4021 +4024 +4029 +4037 +4042-4045 +4045 +4055 +4072 +4086-4088 +4094-4096 +4097 +4107-4109 +4113 +4116 +4118-4124 +4135-4137 +4151-4154 +4164 +4173 +4175 +4182 +4185-4188 +4196 +4199 +4207-4209 +4215-4216 +4218 +4222-4225 +4226-4228 +4232 +4234-4236 +4237 +4242-4243 +4244-4245 +4253-4255 +4256-4257 +4263-4265 +4266-4267 +4268 +4273 +4277 +4280-4282 +4285-4291 +4294 +4299 +4306 +4310 +4312 +4319-4320 +4329 +4332 +4337-4338 +4343-4347 +4350-4351 +4355-4356 +4360 +4363 +4364 +4369-4372 +4377-4378 +4386-4388 +4398 +4412-4414 +4418 +4423 +4426 +4431-4432 +4448 +4461-4462 +4461 +4470 +4480 +4487-4488 +4493-4496 +4502-4504 +4509 +4520 +4524 +4527 +4529-4531 +4539-4545 +4548 +4554-4556 +4557 +4564-4566 +4567-4568 +4572-4576 +4577 +4580 +4581 +4584 +4585 +4588-4589 +4590-4594 +4599 +4600 +4610 +4611-4612 +4622-4627 +4628 +4633-4636 +4637-4668 +4639 +4650 +4652 +4655 +4669-4672 +4673-4675 +4677-4683 +4698-4705 +4718-4721 +4727 +4731 +4740-4747 +4778 +4782 +4788 +4791 +4794 +4797 +4800 +4803 +4844 +4871 +4879 +4900-4902 +4924 +4943 +5005 +5080 +5121 +5126 +5129 +5132 +5135 +5138 +5142 +5151-5152 +5166 +5167-5169 +5173 +5182-5186 +5197-5198 +5204-5208 +5209 +5213 +5220-5225 +5232-5236 +5259-5260 +5261 +5264 +5266 +5270 +5274 +5278 +5289 +5307-5312 +5335-5338 +5368 +5384 +5396 +5470 +5477 +5502-5505 +5529 +5530-5532 +5549-5552 +5553-5558 +5556 +5564 +5565-5568 +5567 +5571 +5572-5575 +5576-5578 +5576 +5579 +5586-5595 +5596-5599 +5597 +5610 +5616-5620 +5616 +5621 +5627-5628 +5628 +5629-5631 +5652 +5657 +5663 +5665 +5666-5668 +5671 +5675 +5682 +5695-5697 +5722-5723 +5726 +5754-5755 +5763 +5783-5784 +5786 +5790 +5810 +5813 +5817 +5820 +5823 +5873 +5933 +5940 +5944 +5957-5960 +5966-5971 +5979-5986 +5990 +5992-5993 +5997 +5999 +6001 +6003 +6007-6010 +6013 +6019-6021 +6027 +6039 +6055 +6063 +6068 +6073 +6078 +6082 +6087 +6091 +6156 +6158 +6168-6169 +6169 +6171 +6198 +6209 +6219 +6231 +6234 +6235-6237 +6256 +6264 +6271-6274 +6280 +6283 +6286 +6290 +6293-6297 +6318-6320 +6341 +6342 +6348 +6350 +6409 +6413 +6419 +6421 +6423 +6472-6475 +6494 +6495-6497 +6521-6522 +6541-6542 +6566-6567 +6568 +6584 +6592 +6593-6594 +6642-6644 +6662-6665 +6677 +6680 +6683 +6686-6690 +6688 +6695 +6699 +6708-6714 +6722 +6727 +6730-6733 +6732 +6735 +6742 +6754 +6757 +6760 +6763-6766 +6764 +6767 +6789-6791 +6792 +6803 +6805 +6809-6810 +6813-6815 +6831-6832 +6840 +6844 +6847 +6851 +6855 +6861 +6864 +6867 +6870 +6873 +6877 +6901 +6903 +6920 +6924 +6928 +6931 +6934 +6937 +6941 +6943 +6954 +6961 +6962-6963 +6964 +6969 +6974-6977 +6983-6984 +6994-6999 +7003 +7007 +7012-7017 +7023 +7024-7025 +7027-7039 +7044 +7045-7057 +7065-7079 +7086-7101 +7102 +7112-7126 +7135-7146 +7155-7163 +7171-7179 +7177 +7182 +7184 +7185-7194 +7200-7203 +7204-7212 +7213-7216 +7219-7220 +7221-7225 +7225 +7229 +7230-7236 +7246 +7247-7253 +7263-7264 +7266 +7280-7284 +7288 +7296-7302 +7299 +7321-7328 +7333 +7353-7360 +7378-7380 +7385-7388 +7386 +7392 +7393-7394 +7401-7408 +7417-7418 +7423-7429 +7423 +7439-7441 +7445-7449 +7458-7463 +7465-7467 +7472-7474 +7475-7477 +7480 +7490-7499 +7500-7504 +7515-7520 +7521-7525 +7523 +7532-7534 +7533 +7535-7550 +7552-7556 +7564-7582 +7585-7587 +7585 +7593-7604 +7606-7608 +7613-7620 +7623-7624 +7628-7636 +7639 +7642-7643 +7649 +7656 +7658 +7660-7662 +7665 +7669-7672 +7675 +7681-7683 +7691 +7696-7697 +7705 +7708 +7713-7715 +7723 +7727 +7729-7731 +7733 +7741 +7752 +7777 +7779-7780 +7786 +7888 +7892 +7896 +7901 +7902 +7909-7910 +7924 +7927-7928 +7945-7947 +7946 +7955 +7957-7964 +7969-7970 +7973-7980 +7989 +7991-7996 +7999-8004 +8005 +8011-8018 +8014 +8021-8027 +8035 +8041-8048 +8055-8057 +8068-8069 +8073 +8079 +8083 +8089 +8110-8114 +8135-8137 +8155 +8162 +8167 +8169 +8185-8187 +8188-8191 +8193 +8197 +8198 +8203 +8212-8213 +8224-8227 +8241-8242 +8246 +8358 +8366 +8424 +8435 +8445 +8500-8505 +8521-8525 +8528 +8546-8552 +8554-8563 +8570 +8579 +8580-8586 +8583 +8587 +8594 +8595-8606 +8613-8614 +8627 +8635 +8642-8643 +8653 +8660-8663 +8672-8674 +8682-8684 +8685 +8694-8697 +8702-8707 +8714 +8724-8729 +8729 +8740 +8752 +8755 +8760 +8770 +8960-8961 +8979 +9001 +9013-9014 +9032-9033 +9054 +9060 +9064 +9069 +9073 +9076 +9077 +9084-9085 +9093 +9101-9102 +9121 +9143-9144 +9162 +9172-9174 +9175 +9178-9179 +9180 +9186-9188 +9193-9199 +9206-9208 +9213-9215 +9224-9226 +9232-9234 +9249-9252 +9256 +9259 +9261 +9263 +9265-9267 +9276-9277 +9287-9290 +9297-9304 +9300 +9303 +9306 +9309-9313 +9319-9321 +9323-9327 +9326 +9330 +9336 +9337-9339 +9340 +9347-9349 +9350-9353 +9361 +9370-9372 +9414 +9417 +9428 +9430 +9432 +9502 +9506 +9542 +9542 +9544-9566 +9567-9568 +9573-9587 +9588 +9593-9607 +9593 +9608-9609 +9619-9633 +9634-9635 +9643-9652 +9653-9656 +9663-9665 +9666-9671 +9671 +9673-9674 +9673 +9729 +9748 +9776 +9793 +9804 +9823 +9843-9846 +9850 +9859-9861 +9880-9886 +9902-9906 +9915-9921 +9928 +9932 +9935-9939 +9943-9945 +9951-9954 +9951 +9960-9962 +9966-9969 +9976-9978 +9981-9985 +9986 +9993-9996 +9999-10002 +10002 +10010-10013 +10021-10022 +10027-10032 +10028 +10041-10044 +10046 +10055-10056 +10065-10073 +10078 +10081-10082 +10089 +10095-10097 +10096 +10106 +10108 +10109 +10111-10113 +10114 +10116 +10117-10118 +10124-10130 +10137 +10138-10147 +10141 +10150 +10157-10166 +10174 +10179-10190 +10180 +10182 +10196-10205 +10210 +10215-10217 +10220 +10222 +10224-10225 +10227 +10228 +10231 +10232-10234 +10240 +10241-10242 +10249 +10257 +10258-10260 +10266-10270 +10278-10279 +10290-10291 +10293-10295 +10301 +10303 +10313-10320 +10324 +10336-10341 +10360-10363 +10377-10380 +10377 +10387 +10399-10401 +10399 +10408 +10421-10422 +10422 +10432 +10434-10435 +10435 +10443 +10449 +10488 +10503-10505 +10514 +10519 +10530 +10542 +10544 +10547 +10551-10552 +10571-10572 +10585-10587 +10603-10604 +10619-10621 +10627-10635 +10642-10643 +10643 +10665 +10665 +10677 +10688 +10702 +10705 +10707 +10711 +10716 +10719 +10727 +10733 +10736 +10748 +10776-10778 +10783 +10790 +10805 +10807 +10826 +10832-10833 +10859-10861 +10884-10885 +10890 +10898-10900 +10926 +10927 +10975 +10981-10984 +10988 +11001 +11003-11005 +11017 +11020-11021 +11030 +11033-11036 +11043-11044 +11050-11051 +11053 +11055 +11058 +11058 +11064-11067 +11072-11074 +11079-11081 +11083-11085 +11092-11093 +11094 +11096 +11100-11101 +11106 +11119-11121 +11124-11128 +11134 +11139 +11144-11145 +11149 +11154-11158 +11155 +11160-11162 +11166 +11168-11169 +11175-11176 +11182 +11187 +11188-11192 +11203 +11206-11208 +11206 +11209-11214 +11217 +11226-11227 +11228-11234 +11242-11243 +11244-11246 +11246 +11249-11251 +11249 +11251 +11253 +11264-11266 +11271-11275 +11286-11288 +11295-11297 +11299 +11304-11306 +11312-11316 +11323-11325 +11330-11332 +11337-11338 +11344-11348 +11353-11354 +11358-11361 +11366 +11373-11378 +11382-11385 +11392-11396 +11401-11402 +11409-11416 +11419-11420 +11427-11433 +11438 +11440-11441 +11442 +11445-11446 +11448 +11449 +11452 +11452 +11454 +11456 +11457-11458 +11460 +11466 +11468-11473 +11474 +11481-11482 +11486 +11488 +11497-11499 +11506-11508 +11520-11522 +11530-11533 +11537-11538 +11545-11546 +11550-11551 +11557-11559 +11564 +11569-11570 +11574-11575 +11574 +11579 +11582-11583 +11587 +11594-11595 +11597-11600 +11603 +11608 +11609-11612 +11616 +11621-11622 +11623-11626 +11630 +11635-11636 +11637-11640 +11650-11651 +11653-11662 +11668 +11674 +11676 +11679-11685 +11690 +11701-11708 +11715 +11720-11726 +11731 +11745-11752 +11750 +11763 +11772-11775 +11776 +11787 +11793-11795 +11809 +11815-11818 +11821-11824 +11834 +11842-11844 +11848-11852 +11848-11849 +11864 +11871-11873 +11879-11880 +11889 +11896-11900 +11912 +11923 +11928 +11932-11936 +11945 +11949-11953 +11959 +11967-11968 +11967 +11973 +11979 +11983-11988 +11986 +11996 +12002-12003 +12004 +12012 +12016-12020 +12022 +12024-12025 +12029 +12035-12037 +12045 +12049-12053 +12053 +12059 +12063-12068 +12074 +12078-12081 +12089 +12093-12100 +12100 +12118 +12122-12127 +12133 +12137-12140 +12144 +12148-12149 +12163-12164 +12183 +12185 +12191 +12197 +12202 +12208-12212 +12209 +12267 +12276-12277 +12284 +12300-12302 +12303 +12306 +12308-12309 +12313 +12320 +12333-12336 +12336 +12339 +12342 +12362-12365 +12383 +12388-12391 +12399 +12418-12421 +12426 +12429 +12443 +12447-12449 +12449 +12452 +12455 +12465-12466 +12470 +12481-12483 +12504-12505 +12512 +12513-12514 +12515 +12544 +12552 +12555 +12559 +12563 +12567-12569 +12570 +12587 +12609 +12619 +12623 +12625 +12628-12630 +12628 +12630 +12633 +12636 +12638 +12643 +12647-12652 +12648 +12652 +12655 +12659 +12671 +12676-12681 +12698-12704 +12720-12721 +12722-12726 +12739 +12768-12769 +12797-12798 +12818 +12823-12825 +12842-12843 +12846-12848 +12851 +12858 +12862 +12866-12871 +12892-12893 +12894-12900 +12909-12915 +12918 +12928 +12932 +12943-12948 +12957-12962 +12984-12989 +13010-13012 +13033 +13056 +13070 +13074 +13076 +13077-13079 +13079 +13090 +13093 +13099 +13100 +13103 +13104-13106 +13133 +13197 +13201 +13205 +13217 +13242-13243 +13266-13270 +13292-13297 +13317-13323 +13337 +13343-13348 +13367-13371 +13374 +13394-13398 +13398 +13409 +13423 +13491 +13494 +13497 +13510 +13514 +13518 +13550-13555 +13571-13575 +13597-13600 +13617-13619 +13634-13642 +13641 +13664-13667 +13684-13688 +13702-13704 +13702 +13719-13724 +13719 +13723 +13726 +13729 +13734 +13737 +13739 +13744 +13744 +13755 +13763-13764 +13779-13781 +13784 +13787-13788 +13787 +13789 +13794 +13796-13802 +13802 +13805 +13808 +13810 +13812 +13819-13823 +13838-13839 +13838 +13849-13853 +13856 +13858 +13869-13872 +13875 +13886 +13889-13894 +13898-13901 +13899 +13919-13925 +13926-13928 +13933-13935 +13936-13938 +13940 +13944 +13946 +13950-13951 +13953-13955 +13956-13959 +13963 +13973-13976 +13979 +13984 +13988 +13990-13991 +13993-13996 +14004 +14019-14023 +14025 +14028 +14030 +14033 +14035-14036 +14037 +14039-14042 +14050-14052 +14056-14061 +14070-14078 +14078 +14084-14085 +14088-14091 +14098-14100 +14099 +14105-14107 +14112-14117 +14125 +14132-14134 +14144-14148 +14158-14161 +14164-14168 +14168 +14171 +14173 +14174-14176 +14177 +14180-14181 +14180 +14186-14188 +14191-14192 +14191 +14196-14199 +14208 +14210-14211 +14220-14222 +14232-14235 +14241-14244 +14247 +14250-14253 +14255 +14257 +14258 +14259 +14260 +14262-14263 +14265-14269 +14266 +14271-14273 +14275 +14278 +14279-14281 +14283-14284 +14290 +14291-14294 +14300 +14303-14305 +14315 +14326 +14328 +14331 +14369-14370 +14392-14394 +14403 +14407 +14443-14446 +14454 +14455-14456 +14455 +14458 +14461 +14462-14464 +14465 +14468 +14472-14473 +14472 +14474-14476 +14477 +14482 +14483-14484 +14498-14499 +14516 +14533 +14534 +14536 +14540 +14543 +14547 +14550 +14571 +14572 +14574 +14580 +14589 +14596 +14614-14615 +14616 +14620 +14623 +14626 +14628-14629 +14630-14632 +14641 +14642-14645 +14655-14668 +14669-14672 +14673 +14685-14687 +14685 +14687 +14698-14699 +14700-14703 +14720 +14728 +14729 +14752 +14753-14755 +14756 +14764-14766 +14789 +14795 +14798 +14802 +14809 +14810 +14833 +14834-14835 +14836 +14836 +14839 +14842 +14845 +14849 +14857-14858 +14859 +14868 +14870 +14877-14878 +14877 +14879-14883 +14884 +14886 +14901-14902 +14904-14908 +14909-14910 +14909 +14924-14928 +14932 +14936-14938 +14949-14951 +14950 +14958 +14973-14976 +14992-14993 +14997 +15004 +15006 +15013 +15037 +15053-15054 +15083 +15086 +15088 +15090 +15094 +15095-15096 +15099 +15105 +15106 +15112-15113 +15120 +15130-15131 +15139-15140 +15144 +15149 +15152-15153 +15156 +15157-15160 +15165 +15166 +15170 +15181 +15185 +15187-15188 +15191 +15196 +15202 +15209 +15233 +15251 +15252 +15255 +15258 +15266-15268 +15289-15291 +15296-15298 +15298 +15300 +15303 +15308 +15311-15314 +15311 +15313 +15316 +15318-15320 +15320 +15323 +15325 +15328 +15330-15335 +15344-15348 +15357-15362 +15369 +15370 +15371 +15376-15380 +15382 +15384 +15386 +15392-15402 +15413-15420 +15428 +15431 +15432-15439 +15438 +15450 +15451-15455 +15464 +15467-15472 +15467 +15473 +15481 +15481 +15488-15491 +15489-15491 +15498 +15501 +15504 +15505-15509 +15517 +15523-15526 +15536 +15539 +15540-15544 +15541-15542 +15546 +15553 +15557 +15563-15564 +15574 +15578-15579 +15591-15592 +15596 +15602 +15612 +15648 +15660-15662 +15660 +15666 +15669 +15676-15681 +15688 +15689-15700 +15702 +15707-15715 +15707 +15714-15715 +15724-15727 +15735 +15744-15746 +15751-15759 +15762-15764 +15770-15784 +15791-15800 +15810-15818 +15820 +15826-15834 +15841-15852 +15861-15869 +15874-15886 +15891-15897 +15900-15913 +15917-15934 +15939-15944 +15950-15967 +15975-15989 +15993 +16002-16016 +16019 +16023 +16029-16032 +16040-16044 +16041 +16058 +16060-16065 +16069 +16074 +16079-16082 +16084 +16088-16089 +16095 +16098 +16101-16102 +16118 +16121 +16123 +16129 +16145 +16147 +16153 +16161 +16186 +16190 +16194 +16203 +16206 +16228 +16230 +16234 +16237 +16278-16283 +16292 +16297 +16300-16301 +16301 +16313 +16318 +16337 +16340 +16342 +16345 +16371 +16374 +16405 +16407 +16428 +16471 +16477 +16529-16534 +16544 +16548 +16556-16558 +16574 +16587-16589 +16593 +16599 +16606-16615 +16631-16638 +16638 +16641 +16652-16657 +16673-16676 +16694 +16705 +16733 +16772 +16776 +16788 +16793 +16822 +16827 +16852-16853 +16867 +16867 +16873-16874 +16873 +16877 +16884-16888 +16892-16898 +16901-16916 +16918-16936 +16939 +16942 +16944-16947 +16948 +16952 +16957 +16959 +16969-16971 +16973-16979 +16992 +16995 +17000-17002 +17005 +17013 +17023-17025 +17030 +17033 +17036 +17039 +17051 +17055 +17064 +17102 +17108 +17111 +17115 +17123 +17125 +17167 +17172 +17204 +17210 +17214 +17245 +17251 +17294 +17309 +17313 +17340-17346 +17350 +17360 +17363-17372 +17378 +17380 +17381-17382 +17384 +17388 +17389-17391 +17399-17402 +17403-17410 +17417 +17420 +17422-17425 +17423 +17427-17430 +17427 +17436 +17441-17442 +17445-17448 +17447 +17469-17472 +17483 +17487 +17492 +17493-17495 +17496 +17501 +17511 +17512-17514 +17515 +17520 +17524 +17530-17534 +17535 +17538 +17548-17552 +17565-17570 +17583-17588 +17600-17605 +17613-17614 +17617-17619 +17617 +17619-17620 +17623 +17627-17629 +17632-17635 +17644-17645 +17649-17653 +17653 +17664-17666 +17666 +17670-17674 +17675 +17678 +17683 +17685-17686 +17688 +17690-17695 +17693 +17698 +17702 +17707-17709 +17709 +17712 +17713-17716 +17714 +17719 +17721 +17726 +17730-17731 +17732 +17735-17737 +17739 +17744 +17745 +17751-17754 +17754 +17757-17759 +17759 +17781-17782 +17818 +17819-17820 +17821 +17836 +17849-17850 +17871-17874 +17896-17898 +17915-17916 +17925 +17929 +17932 +17933-17934 +17934 +17935 +17939 +17943 +17951 +17952-17953 +17971-17972 +17974 +17977 +17983 +17987-17988 +17999 +18002 +18005 +18007 +18008 +18013 +18017 +18029-18033 +18031 +18061 +18064 +18068 +18071 +18125-18127 +18137 +18140 +18148-18149 +18149 +18161 +18164 +18168 +18170-18176 +18190-18201 +18204 +18208 +18210-18212 +18219 +18222 +18225-18226 +18230-18235 +18236 +18239-18240 +18243-18246 +18248-18249 +18252-18253 +18252 +18255-18256 +18255 +18262-18263 +18267 +18272-18274 +18284-18285 +18290-18291 +18300-18303 +18311 +18314 +18322-18323 +18324 +18330 +18331 +18334-18336 +18337-18338 +18341-18347 +18351-18363 +18364 +18367-18371 +18376-18386 +18387-18394 +18402-18410 +18411-18416 +18419 +18427-18435 +18444 +18447 +18451 +18452-18457 +18464 +18470-18476 +18477 +18492-18498 +18509 +18515-18520 +18533-18538 +18560-18563 +18573 +18579-18582 +18597-18598 +18606 +18611-18616 +18617 +18619 +18622 +18639-18643 +18652-18662 +18673-18676 +18680-18685 +18694 +18698 +18705-18712 +18728-18731 +18737-18743 +18744 +18748-18749 +18748 +18750 +18753 +18756 +18765 +18773 +18775 +18780-18783 +18786 +18788 +18791-18794 +18804-18805 +18807 +18812 +18813-18814 +18824 +18834-18840 +18841 +18842 +18850 +18853 +18858 +18870-18871 +18878 +18882-18883 +18892 +18903-18913 +18906 +18911 +18915 +18920-18931 +18934 +18938-18941 +18957 +18959-18967 +18959 +18963 +18967 +18970 +18976 +18985-18986 +18992 +19014-19015 +19045 +19048 +19051 +19054 +19057 +19060 +19063 +19072 +19077 +19107 +19109 +19113 +19116 +19124 +19159 +19173 +19202 +19208 +19220 +19223 +19225 +19227 +19232 +19235 +19236 +19255 +19277 +19292 +19295 +19304 +19311 +19323 +19327 +19345 +19348 +19364-19366 +19365 +19371 +19375 +19387 +19407 +19411 +19433-19434 +19445 +19451-19453 +19466-19467 +19513 +19521 +19523 +19527 +19529-19534 +19533 +19536 +19547 +19549-19552 +19562-19563 +19564 +19574-19579 +19585-19586 +19596 +19599-19605 +19599 +19601 +19605 +19623-19624 +19627 +19629-19634 +19647-19648 +19649 +19658 +19659 +19668 +19679-19680 +19692-19694 +19695 +19698-19699 +19699 +19701 +19703 +19712 +19716-19719 +19723-19724 +19724 +19735-19736 +19742-19745 +19747-19748 +19758-19761 +19763-19767 +19769-19771 +19780-19791 +19794-19798 +19808 +19811 +19814 +19815 +19816 +19817-19826 +19827-19837 +19838-19847 +19848-19861 +19862-19870 +19871-19880 +19887-19888 +19889-19896 +19889 +19893 +19901 +19902-19909 +19914-19932 +19942-19954 +19958-19971 +19981-19998 +20004-20017 +20025-20035 +20039-20056 +20061 +20062 +20067 +20069 +20070-20087 +20086 +20090 +20107-20112 +20128 +20133 +20135-20136 +20135 +20137-20139 +20138-20139 +20138 +20140-20141 +20140-20141 +20144 +20161-20164 +20167-20170 +20182 +20189-20190 +20199 +20223 +20225-20226 +20238 +20253 +20300 +20300 +20315-20316 +20315 +20330 +20349 +20355 +20358 +20377 +20381 +20403 +20405 +20412 +20420-20423 +20434-20437 +20437 +20445-20447 +20447 +20449 +20452 +20454 +20456-20457 +20457 +20460 +20464-20467 +20470-20471 +20479-20486 +20483 +20504-20506 +20517 +20520-20521 +20527-20529 +20542 +20555-20556 +20564 +20566 +20567-20572 +20576-20577 +20576 +20580-20583 +20582 +20586-20591 +20599-20601 +20609 +20613-20615 +20613 +20625 +20627 +20640 +20649 +20658 +20670-20673 +20672 +20677-20678 +20688 +20697-20702 +20707-20710 +20710 +20711 +20728-20729 +20734 +20755-20756 +20765-20768 +20780 +20783-20785 +20790-20791 +20804-20806 +20814-20818 +20816 +20830-20831 +20839-20841 +20841 +20844 +20845-20846 +20847 +20849-20851 +20854 +20859-20862 +20866-20867 +20867 +20871-20873 +20886-20887 +20892-20894 +20892 +20903-20905 +20904 +20917-20921 +20919 +20920 +20922 +20923-20925 +20924 +20931-20933 +20938 +20941 +20943-20951 +20953-20957 +20963 +20965 +20973-20980 +20982-20987 +20992-20994 +20993 +20997 +21001-21003 +21005-21006 +21009 +21010 +21014-21016 +21019-21020 +21025-21028 +21026 +21030 +21033 +21036 +21039 +21041 +21043 +21045 +21050 +21052 +21054 +21055-21057 +21059 +21060-21062 +21064 +21069 +21073-21075 +21080 +21087-21089 +21093 +21108-21111 +21124 +21133 +21135-21137 +21139 +21141 +21143-21144 +21157 +21166-21171 +21171 +21194-21195 +21216-21221 +21235 +21241-21242 +21245 +21249 +21253 +21254-21258 +21267 +21271-21275 +21271 +21285 +21289-21294 +21290 +21310-21313 +21315 +21318 +21328-21330 +21329 +21340 +21344-21346 +21354-21357 +21363-21371 +21376 +21381-21387 +21388 +21397 +21399-21412 +21400 +21415-21419 +21421-21422 +21422 +21424 +21426-21430 +21435-21439 +21444 +21448-21459 +21458 +21461 +21472-21484 +21491-21494 +21500-21508 +21506 +21516-21525 +21518 +21538 +21548-21550 +21558 +21566 +21577-21580 +21586 +21587-21594 +21596-21600 +21603 +21604-21605 +21610-21611 +21612 +21616 +21618 +21619-21630 +21631-21635 +21641-21654 +21655-21659 +21667 +21680-21684 +21682 +21711 +21723 +21739-21741 +21760 +21768 +21783 +21789 +21794 +21795 +21796-21799 +21803 +21805 +21817 +21820-21822 +21823 +21835-21837 +21840-21841 +21857 +21858 +21862 +21864 +21876 +21886-21887 +21892 +21913-21916 +21931-21932 +21935 +21938 +21950 +21953-21957 +21975-21977 +21978-21979 +21981 +21991-21997 +21997 +21998-21999 +22008 +22009-22012 +22012 +22023-22031 +22031 +22032-22034 +22039 +22042-22055 +22056-22058 +22064-22074 +22065 +22075-22077 +22076 +22083-22091 +22092-22093 +22092 +22094 +22098-22108 +22099 +22106 +22109 +22116-22127 +22119 +22128 +22133 +22137-22154 +22137 +22145 +22160-22168 +22160 +22170 +22175-22190 +22177 +22180 +22192 +22199-22208 +22215-22227 +22234 +22236-22237 +22236 +22239 +22246-22247 +22257 +22262-22263 +22266 +22270 +22272-22273 +22277 +22284-22285 +22291 +22299 +22301-22305 +22314-22316 +22320-22321 +22327 +22332-22335 +22347-22348 +22347 +22352-22361 +22354 +22357 +22374 +22381-22383 +22394-22400 +22395 +22405 +22409 +22412-22413 +22416 +22427-22429 +22433 +22439-22444 +22442 +22451-22453 +22461 +22463-22464 +22475-22479 +22484 +22488 +22489 +22494-22495 +22502-22503 +22510-22511 +22518-22519 +22526-22528 +22537 +22546-22548 +22555-22556 +22562 +22574-22580 +22585 +22591 +22593 +22598 +22600-22601 +22605 +22609-22610 +22619-22620 +22622 +22628-22629 +22628 +22631 +22632 +22635-22637 +22639 +22642 +22645-22646 +22648-22652 +22654 +22656 +22657 +22659 +22660 +22661 +22662 +22663 +22664 +22665 +22666 +22667 +22669-22670 +22671 +22674 +22676 +22677 +22680-22682 +22687-22690 +22695-22696 +22699 +22704-22705 +22711-22714 +22719-22723 +22726-22728 +22726 +22732 +22734 +22735-22737 +22738-22739 +22741-22742 +22744 +22748-22750 +22751-22752 +22753 +22757-22759 +22760-22761 +22762-22763 +22764-22765 +22766-22767 +22768 +22770-22771 +22772-22773 +22775-22777 +22778-22779 +22781-22783 +22784-22785 +22786 +22789 +22793-22794 +22798-22799 +22804-22805 +22808-22809 +22813 +22816 +22818-22819 +22822 +22827 +22830 +22833 +22834-22835 +22838-22840 +22843-22844 +22849 +22851 +22855 +22859-22863 +22867 +22868 +22871-22873 +22877 +22885 +22891 +22892-22894 +22901-22904 +22909 +22917-22918 +22923 +22938 +22941 +22954 +22964-22965 +22965 +22979 +22982 +22985-22986 +22992 +22995 +22998-22999 +23004 +23006 +23010 +23013 +23020 +23033 +23038-23039 +23059-23060 +23080-23081 +23091 +23101-23105 +23121-23130 +23125 +23142-23147 +23153 +23158 +23160-23161 +23163 +23164 +23165-23166 +23169 +23182-23184 +23198-23200 +23212-23214 +23222 +23225 +23237-23239 +23239 +23256-23257 +23268 +23275-23276 +23291 +23318 +23342-23343 +23347 +23359-23360 +23360 +23362 +23365 +23374-23375 +23385 +23390 +23391-23393 +23402 +23408 +23409-23413 +23424 +23425-23426 +23429 +23432-23433 +23432 +23439-23445 +23458-23459 +23460-23466 +23479-23480 +23481-23491 +23492 +23497-23498 +23499 +23503 +23505 +23507-23508 +23510-23511 +23515 +23519 +23523-23525 +23529-23531 +23537 +23542-23545 +23547-23550 +23547 +23556 +23561-23562 +23563 +23566 +23569 +23571-23573 +23575-23576 +23579 +23582 +23584 +23588 +23590-23591 +23593-23594 +23600-23601 +23602-23604 +23608-23609 +23617-23618 +23620 +23628-23631 +23645-23649 +23652-23654 +23661-23670 +23675-23679 +23683-23690 +23694-23698 +23703-23706 +23709 +23712-23717 +23725 +23728 +23733 +23737 +23743-23752 +23758-23762 +23769-23771 +23773 +23777 +23780 +23783-23785 +23786-23802 +23788 +23803-23817 +23818-23822 +23826-23828 +23829-23846 +23843 +23850 +23859-23870 +23880-23892 +23884 +23894 +23896-23913 +23904 +23915 +23917-23928 +23935-23953 +23961-23972 +23975-23978 +23979-23987 +23996 +24001 +24004 +24009-24011 +24024-24025 +24038-24043 +24052 +24056-24063 +24061 +24079-24080 +24087 +24089-24093 +24090 +24096 +24100 +24105 +24153 +24164 +24166 +24168 +24169 +24241 +24245 +24275-24276 +24282-24285 +24288 +24289 +24292 +24302 +24306 +24313 +24314-24316 +24327 +24340-24343 +24349 +24356 +24359 +24364 +24367 +24373 +24376 +24379 +24381 +24386-24387 +24390 +24392 +24399 +24400 +24403 +24404 +24414 +24430-24431 +24439 +24445 +24450 +24472-24473 +24472 +24475 +24483-24485 +24487 +24501 +24516 +24524-24525 +24527 +24541 +24551 +24560 +24563 +24572-24573 +24572 +24577 +24584 +24587 +24607 +24627 +24648 +24664 +24676-24677 +24690 +24702-24707 +24723-24725 +24729 +24735 +24738 +24740-24742 +24743 +24746 +24748 +24751 +24753 +24757-24758 +24759-24761 +24760 +24763 +24770 +24772-24773 +24774-24775 +24790-24791 +24792-24793 +24795 +24798 +24804-24805 +24806-24808 +24807 +24819 +24820-24823 +24838 +24839-24842 +24842 +24854-24859 +24860-24861 +24861 +24863 +24867 +24868 +24873 +24874 +24877-24878 +24879-24880 +24880 +24882 +24883 +24885 +24886-24887 +24888-24889 +24890-24891 +24892-24893 +24894 +24896-24897 +24897 +24899 +24901 +24902-24903 +24906 +24908 +24914 +24921 +24933-24935 +24943-24944 +24953 +24955 +24961 +24969-24970 +24981-24988 +24998 +25004-25005 +25015 +25019 +25020 +25024 +25031 +25035-25036 +25054 +25072-25076 +25091-25092 +25112-25114 +25113 +25120 +25132 +25136-25137 +25144 +25156-25157 +25157 +25168 +25174-25175 +25177 +25186 +25187-25189 +25190 +25195 +25201 +25230 +25235-25236 +25244 +25254 +25258 +25262 +25264 +25276-25277 +25279 +25299 +25309 +25318-25320 +25339 +25343-25345 +25346 +25353 +25359-25360 +25359 +25363 +25365 +25369 +25372-25373 +25386-25389 +25391 +25400-25402 +25411 +25426-25427 +25427 +25437-25439 +25443 +25448 +25451 +25455 +25458-25465 +25468-25469 +25476-25477 +25478 +25483-25487 +25483 +25488 +25490 +25492-25493 +25497-25498 +25503 +25515 +25518-25520 +25535-25539 +25583 +25588 +25591 +25631 +25635 +25658 +25679 +25728 +25733 +25739 +25750 +25755 +25777-25779 +25780 +25793-25795 +25793 +25809-25819 +25829-25830 +25831 +25845 +25865-25868 +25868 +25876-25881 +25884 +25890 +25896-25898 +25911-25914 +25927-25930 +25931 +25939 +25952-25956 +25960 +25964 +25969-25970 +25973 +25974 +25979 +25985-25986 +25989 +25991 +25995 +25997 +25998-26000 +26008 +26011 +26013-26014 +26031 +26047 +26049 +26053 +26056 +26060 +26070 +26073 +26084 +26091 +26092 +26096 +26099 +26105 +26108 +26134 +26137 +26141 +26142 +26146 +26149 +26182 +26188 +26191 +26196 +26207 +26218 +26225 +26229-26230 +26231 +26235 +26236-26239 +26247-26248 +26253 +26254 +26256-26257 +26258 +26262 +26263 +26268 +26269 +26277 +26280 +26284 +26287 +26288-26291 +26301-26309 +26319 +26321-26327 +26336 +26340-26347 +26362-26367 +26381-26383 +26392-26396 +26418-26425 +26437 +26444-26451 +26455-26458 +26463-26470 +26474-26482 +26480 +26486-26488 +26489 +26490-26498 +26499-26500 +26505-26508 +26509-26511 +26513 +26514 +26515 +26516 +26517 +26518-26538 +26541-26542 +26543-26553 +26549 +26557 +26559-26563 +26564-26582 +26570 +26581 +26589-26591 +26592-26597 +26593 +26600-26601 +26609-26610 +26611 +26617-26619 +26618 +26620-26627 +26631 +26642-26643 +26644-26647 +26648 +26657 +26661-26668 +26669-26672 +26687-26688 +26689-26691 +26695 +26704 +26705-26712 +26713-26715 +26717 +26719 +26723-26727 +26728-26735 +26745 +26749 +26757-26770 +26771-26774 +26776-26782 +26785-26788 +26789 +26794 +26803 +26805-26808 +26813-26815 +26826-26828 +26830-26831 +26834-26840 +26849-26858 +26856 +26860 +26871-26875 +26874 +26883-26889 +26900-26901 +26901 +26909-26923 +26924 +26925 +26929 +26932-26944 +26932 +26935 +26940 +26958-26961 +26962 +26970-26979 +26974 +26996-27003 +27009-27017 +27023-27034 +27047-27052 +27056-27071 +27060 +27064 +27086-27101 +27114-27118 +27125-27134 +27128 +27141-27155 +27163-27175 +27185-27199 +27203 +27212-27223 +27234-27238 +27245-27264 +27265-27266 +27274-27296 +27283 +27302-27322 +27303 +27321 +27328-27344 +27353-27370 +27360 +27369 +27380-27393 +27403-27416 +27407 +27429-27437 +27450-27456 +27452 +27456 +27462-27465 +27466-27468 +27469-27476 +27477-27485 +27486-27495 +27489 +27498-27504 +27505-27512 +27524-27525 +27526-27532 +27547 +27548-27550 +27564-27574 +27588-27595 +27601 +27611 +27615-27624 +27636 +27640 +27644-27651 +27645 +27649 +27653 +27660 +27671-27673 +27679-27683 +27709-27713 +27729-27733 +27758-27760 +27771 +27778-27779 +27800 +27810-27811 +27813 +27819 +27842-27843 +27865-27866 +27884-27887 +27888 +27891 +27896 +27900 +27904 +27906-27910 +27911 +27915-27919 +27920 +27927-27931 +27938-27959 +27966-27980 +27986-28002 +28008-28018 +28025-28040 +28045 +28047-28061 +28068 +28072-28083 +28093-28095 +28102 +28109-28116 +28127-28128 +28135-28138 +28148-28149 +28158-28162 +28170 +28178 +28179-28181 +28190 +28198-28200 +28214 +28227 +28228 +28233 +28245 +28303 +28313 +28323-28324 +28343 +28358-28359 +28375-28378 +28389-28390 +28391 +28392-28394 +28395-28400 +28396 +28401-28403 +28408-28416 +28417-28420 +28424 +28425 +28427-28430 +28436 +28438 +28445-28446 +28454-28461 +28464-28469 +28478-28485 +28488-28496 +28501 +28502-28504 +28508-28509 +28510-28523 +28510 +28519 +28527 +28528-28544 +28547-28548 +28549-28552 +28557-28565 +28566-28567 +28572-28580 +28581-28584 +28595 +28597-28609 +28610-28611 +28617-28618 +28622-28625 +28626-28628 +28637-28639 +28646-28648 +28649-28651 +28662-28663 +28664-28665 +28672-28674 +28673 +28682 +28688-28689 +28690-28691 +28701 +28715 +28716-28718 +28740-28741 +28756 +28823 +28836-28837 +28849-28851 +28859-28862 +28863 +28893-28894 +28901 +28907-28908 +28918 +28924 +28971 +28979-28984 +28987 +28991-29000 +29007-29015 +29022-29034 +29037-29041 +29044-29068 +29069-29070 +29073 +29082-29085 +29086 +29092-29100 +29092 +29114-29121 +29134 +29153 +29156-29160 +29161 +29164 +29184-29189 +29197-29200 +29215-29216 +29217-29218 +29222-29226 +29226 +29244-29245 +29246-29257 +29272-29279 +29277 +29301-29304 +29317-29321 +29327-29328 +29336 +29341-29343 +29352-29353 +29362-29363 +29363 +29365-29367 +29372-29376 +29381-29382 +29384-29386 +29388-29392 +29398 +29399-29400 +29403-29405 +29410-29411 +29412 +29418-29419 +29423-29427 +29428-29429 +29437-29438 +29452-29455 +29456-29457 +29467 +29480-29481 +29482-29484 +29501-29503 +29508 +29512-29514 +29517 +29527-29531 +29531 +29539 +29547-29548 +29551 +29558-29561 +29561 +29565 +29570 +29573 +29576-29580 +29601-29606 +29611 +29622-29626 +29644-29645 +29659-29661 +29661 +29673-29677 +29679 +29681 +29683-29684 +29692-29695 +29700 +29701-29702 +29711-29713 +29725 +29737-29738 +29746 +29747 +29750 +29755-29756 +29764-29768 +29777-29781 +29785-29787 +29786 +29791-29799 +29803-29808 +29811-29813 +29821-29822 +29832-29834 +29837-29838 +29842-29843 +29847-29850 +29861-29863 +29865-29883 +29891 +29892-29899 +29902 +29903-29912 +29906 +29918 +29919-29933 +29938-29940 +29941-29952 +29960-29962 +29963-29979 +29981 +29986-29989 +29990-30003 +30010-30012 +30013-30017 +30022-30023 +30024-30035 +30047-30052 +30057-30069 +30062 +30080 +30082 +30084-30095 +30100 +30105-30106 +30113-30121 +30131 +30139-30144 +30139 +30148 +30156-30158 +30169-30174 +30181 +30186 +30193-30195 +30207 +30228 +30231 +30235 +30239-30240 +30247 +30256-30257 +30264 +30268 +30283 +30303-30304 +30305-30306 +30325-30326 +30327-30329 +30340-30342 +30343-30350 +30365-30366 +30367-30377 +30380 +30389-30393 +30390 +30394-30408 +30415 +30419-30422 +30419 +30423-30434 +30424 +30428 +30432 +30438 +30446-30449 +30450-30452 +30457 +30458-30473 +30484-30487 +30488-30491 +30496 +30497-30501 +30511-30513 +30514-30520 +30523 +30526-30540 +30544-30554 +30552 +30563-30564 +30566 +30572 +30639 +30642 +30647 +30651 +30655 +30662 +30690-30691 +30714-30717 +30732-30734 +30752-30758 +30773-30781 +30783-30792 +30791 +30795-30800 +30801-30815 +30817-30824 +30825-30842 +30844-30845 +30846-30849 +30852-30854 +30860-30874 +30876 +30883-30895 +30897-30898 +30906-30908 +30911-30913 +30914-30916 +30921 +30922-30933 +30934-30947 +30954-30962 +30957 +30963-30973 +30971 +30977 +30978-30982 +30983-30997 +31005-31010 +31011-31013 +31016-31018 +31019-31021 +31024-31025 +31026-31038 +31043-31046 +31047-31058 +31065-31067 +31068-31077 +31083-31086 +31087-31096 +31099-31102 +31103-31114 +31116-31121 +31121 +31122-31135 +31136-31138 +31146-31149 +31150-31158 +31150 +31159 +31166-31167 +31168-31181 +31187-31188 +31189-31192 +31195 +31196-31214 +31221-31227 +31228-31240 +31243-31244 +31245-31255 +31256-31268 +31270-31271 +31280 +31289 +31308 +31508 +31526 +31532 +31566-31567 +31582-31583 +31582 +31598-31599 +31598 +31615-31616 +31628-31629 +31647-31648 +31655-31657 +31680-31681 +31691 +31694-31695 +31709-31717 +31718-31719 +31721-31725 +31726-31728 +31729-31730 +31738-31747 +31748-31751 +31759-31763 +31764-31766 +31778-31787 +31788-31791 +31800-31808 +31809-31810 +31813-31816 +31817-31818 +31819-31822 +31827-31828 +31841-31842 +31844-31852 +31860-31862 +31864-31868 +31888-31890 +31909-31910 +31931-31932 +31951 +31954-31955 +31958 +31962 +31966 +31974 +31978-31979 +32025 +32060-32061 +32065 +32070 +32075 +32082 +32097 +32100 +32137-32138 +32143-32146 +32147-32148 +32153-32156 +32155-32156 +32158-32161 +32161 +32164-32177 +32180-32194 +32195 +32197-32213 +32214 +32222-32242 +32243 +32245 +32248-32254 +32255 +32259 +32264 +32270-32274 +32287-32290 +32302-32305 +32321 +32323-32326 +32326 +32329 +32332 +32334 +32337 +32339 +32342-32344 +32342 +32345 +32347 +32350 +32356 +32360-32362 +32360 +32366 +32373 +32377 +32381-32384 +32390 +32399 +32402-32403 +32406 +32409 +32412 +32415-32416 +32415 +32418 +32420 +32424 +32427 +32431 +32434-32435 +32438 +32441 +32446 +32450 +32452-32455 +32463 +32469-32471 +32484-32486 +32484 +32494 +32497 +32501-32502 +32506 +32509 +32512 +32517 +32522 +32523 +32523 +32526 +32529 +32539 +32540 +32540 +32547 +32551 +32556 +32557 +32557 +32564 +32566 +32568 +32570 +32576 +32579 +32629 +32636 +32651 +32654 +32657 +32678 +32680 +32688 +32690-32692 +32691 +32707 +32709 +32714 +32716-32732 +32735-32751 +32759-32771 +32778-32785 +32794-32801 +32805 +32812-32816 +32828-32831 +32843-32844 +32843 +32850 +32856 +32888 +32897 +32909 +32919 +32922 +32925 +32930 +32961 +33004 +33007 +33028 +33033 +33044 +33048 +33050 +33105 +33111 +33125 +33128 +33166 +33186-33188 +33197 +33216 +33218-33219 +33219 +33233 +33234 +33234 +33235 +33248 +33249 +33261-33262 +33263-33264 +33273 +33278-33279 +33280-33285 +33284 +33287 +33297-33299 +33302-33305 +33315-33318 +33319-33325 +33331-33334 +33336-33353 +33354-33370 +33371-33390 +33391-33392 +33397-33410 +33414-33431 +33438-33450 +33457-33472 +33474 +33478-33495 +33501-33507 +33511-33513 +33517-33522 +33523 +33530-33532 +33536-33545 +33549 +33552-33553 +33557 +33559-33561 +33562 +33565-33566 +33572-33573 +33581-33582 +33591-33592 +33600-33602 +33617-33618 +33618 +33622 +33661 +33684 +33686-33687 +33690 +33697 +33703 +33714 +33722-33723 +33723 +33738 +33741 +33743-33745 +33757 +33772 +33773-33774 +33777 +33783 +33795 +33820 +33920-33924 +33942-33943 +33959 +33963-33964 +33982-33983 +33985 +33991 +34036-34040 +34049-34050 +34054 +34061-34063 +34071-34072 +34072 +34078 +34080-34083 +34084 +34092-34094 +34100-34109 +34116-34124 +34130-34143 +34141 +34152-34159 +34159 +34162-34165 +34167-34168 +34171-34177 +34178 +34185-34187 +34189-34193 +34195 +34199 +34201 +34204 +34205-34208 +34207 +34210 +34214 +34227 +34236-34237 +34244 +34283 +34285 +34314 +34326 +34343 +34345-34346 +34349 +34365 +34370 +34386 +34398 +34409 +34424 +34425 +34433 +34445 +34447 +34448 +34459-34460 +34474 +34475 +34484 +34523 +34527-34528 +34534 +34538 +34539-34540 +34548 +34549-34550 +34570 +34574 +34585-34586 +34602-34611 +34604 +34615 +34617 +34620 +34634-34644 +34658-34665 +34676-34682 +34689-34690 +34691 +34697-34705 +34714-34720 +34732-34740 +34751-34762 +34773-34784 +34787 +34789-34799 +34804-34819 +34822-34838 +34842-34862 +34865-34874 +34877-34897 +34900-34913 +34916-34930 +34919 +34923 +34935-34942 +34947-34958 +34959 +34962-34976 +34980-34992 +34993 +34996 +35000-35009 +35010 +35014-35027 +35018-35020 +35028 +35031 +35033-35034 +35039-35044 +35054-35060 +35061 +35064 +35066-35067 +35071 +35073-35080 +35092-35096 +35098 +35115-35123 +35124 +35134 +35137-35142 +35155-35159 +35172-35175 +35174-35175 +35176 +35188 +35191-35195 +35197 +35204 +35210-35216 +35217 +35220-35221 +35228 +35230-35231 +35234 +35241-35245 +35244 +35247-35248 +35249 +35251-35252 +35254 +35257 +35261 +35276 +35278 +35287 +35296 +35310 +35327 +35343 +35349 +35350 +35365 +35374 +35383-35384 +35400 +35409 +35436 +35445 +35449 +35473 +35487 +35491 +35498 +35500 +35503 +35506 +35534 +35538 +35549 +35571 +35578 +35604 +35630 +35637-35638 +35649 +35656-35657 +35663-35664 +35673-35684 +35687 +35689-35698 +35701-35720 +35725-35734 +35736-35758 +35764-35787 +35791-35795 +35797-35818 +35820-35846 +35844 +35852-35874 +35877-35901 +35904-35924 +35925 +35926-35949 +35955-35970 +35971 +35975-35989 +35996-36015 +36022-36035 +36035 +36041-36043 +36044 +36048-36049 +36055-36057 +36058 +36061 +36067-36086 +36087 +36091-36110 +36115-36128 +36132-36150 +36154-36171 +36175 +36177-36178 +36180-36181 +36183 +36189 +36194 +36202-36203 +36204 +36206 +36210 +36211 +36218-36224 +36221 +36225 +36227-36228 +36233 +36236-36237 +36241 +36245 +36248 +36252 +36258-36261 +36267-36270 +36271 +36271 +36274 +36276 +36277 +36280-36281 +36280 +36282 +36285 +36286-36289 +36290-36291 +36295-36298 +36299-36300 +36302 +36303-36306 +36306 +36307 +36310 +36313-36322 +36325 +36331-36339 +36350-36354 +36363 +36368-36370 +36387 +36388-36393 +36394 +36407 +36408-36411 +36420 +36430-36434 +36450-36456 +36471-36474 +36484-36486 +36497-36501 +36509-36518 +36519-36537 +36543-36547 +36550 +36561 +36563 +36565 +36567-36576 +36589-36591 +36611-36613 +36629-36630 +36636 +36640 +36644-36647 +36657-36659 +36672-36675 +36699 +36702 +36708 +36728 +36733 +36751 +36758 +36766 +36770 +36786 +36798 +36806 +36811 +36825 +36945 +36961 +36981 +36984 +36986 +36989 +37001 +37018 +37032 +37095 +37122 +37129 +37147 +37156 +37168 +37184 +37192 +37204 +37337 +37339 +37340 +37342 +37365-37366 +37380-37382 +37387-37391 +37395 +37407-37411 +37415 +37428-37431 +37435 +37445-37447 +37452 +37465-37466 +37486 +37512 +37513-37515 +37517 +37524 +37529 +37540-37542 +37554 +37564-37568 +37590-37591 +37593 +37599-37600 +37603-37604 +37609-37611 +37614 +37616 +37619 +37623-37624 +37630 +37632-37635 +37646-37648 +37656 +37658 +37670 +37673 +37682-37683 +37688 +37759 +37759 +37761 +37764 +37770 +37772-37774 +37790 +37794 +37801-37803 +37801 +37824-37825 +37838-37840 +37853 +37853 +37856 +37858 +37862-37864 +37865 +37869 +37871 +37874-37875 +37874 +37876 +37881 +37884-37887 +37898 +37901 +37908-37909 +37909 +37911 +37913 +37917 +37919 +37920 +37925 +37929-37930 +37929 +37941-37943 +37944 +37947 +37951-37952 +37951 +37954 +37962 +37964-37965 +37970 +37972 +37973-37974 +37975 +37982 +37983-37986 +37988-37989 +37990-37991 +37997 +37998 +37999-38004 +38004 +38008-38010 +38013-38014 +38013 +38021-38023 +38025-38026 +38028 +38031 +38035-38037 +38043-38044 +38043 +38047 +38050 +38052-38057 +38058 +38061 +38065-38067 +38072-38079 +38085-38087 +38089 +38090-38091 +38091 +38100-38102 +38114 +38115 +38116-38118 +38133 +38135 +38137-38141 +38138 +38144 +38147 +38150 +38153-38164 +38153 +38156 +38160 +38163 +38168-38170 +38179-38183 +38182 +38190-38191 +38207-38212 +38210 +38216 +38220-38224 +38225 +38236-38239 +38248 +38259-38265 +38274-38276 +38275 +38278 +38279 +38282 +38286 +38289 +38305-38306 +38307 +38311 +38317 +38321 +38322 +38323 +38328 +38334 +38336 +38337 +38340-38343 +38341 +38342 +38344 +38346 +38349 +38350-38351 +38352-38353 +38355 +38359-38362 +38361 +38363 +38364 +38370 +38372 +38375 +38381-38382 +38395-38396 +38395 +38397 +38400 +38403 +38405 +38409-38410 +38409 +38424 +38425 +38426 +38433 +38437-38438 +38444 +38453-38455 +38464 +38482-38483 +38491 +38494 +38497 +38500 +38502-38503 +38508 +38515 +38517 +38522-38523 +38525 +38528 +38535 +38537 +38542-38544 +38546 +38549 +38554 +38557 +38568-38570 +38595 +38600 +38606 +38667 +38670 +38675 +38678 +38719-38722 +38733 +38744 +38753-38756 +38757 +38767 +38768-38770 +38771 +38772-38774 +38776-38778 +38779 +38780-38782 +38783-38784 +38785-38786 +38790-38793 +38798-38799 +38803 +38804-38806 +38807 +38811-38812 +38817-38821 +38824-38827 +38832-38835 +38843-38846 +38853-38855 +38864-38866 +38871 +38879-38880 +38955 +38990 +39019 +39043 +39046-39048 +39047 +39052 +39056 +39061-39064 +39068-39075 +39076 +39085-39086 +39088 +39096 +39100-39101 +39101 +39104-39106 +39109-39112 +39120-39121 +39123-39127 +39132 +39138-39140 +39151-39152 +39167 +39168 +39182 +39183 +39196 +39197-39199 +39211 +39240 +39256 +39269 +39279-39280 +39287 +39306-39307 +39327 +39339 +39357 +39388 +39436 +39439 +39441 +39458 +39463 +39577 +39583 +39590 +39597 +39602 +39613 +39623 +39631 +39638 +39646 +39667 +39673 +39680 +39686 +39710 +39723 +39726 +39734 +39742 +39752 +39758 +39766 +39770 +39771-39772 +39792 +39797 +39811 +39817 +39862 +39870 +39878 +39884-39885 +39886 +39894 +39907-39909 +39911 +39923 +39924 +39936 +39938-39940 +39948 +39954 +39964 +39966 +39971-39972 +39971 +39974 +39979 +39981 +39984-39985 +39988-39989 +39995 +40001-40002 +40008-40010 +40015 +40019 +40021-40023 +40030-40032 +40047-40049 +40054 +40074 +40080-40081 +40082 +40105-40106 +40107 +40110 +40136-40137 +40145 +40151 +40161-40165 +40186-40190 +40196 +40211 +40232 +40245 +40250-40251 +40256 +40262 +40265-40272 +40274 +40285-40286 +40289-40292 +40299 +40316 +40317 +40318 +40322 +40339 +40340 +40343 +40396 +40408 +40421 +40429 +40447 +40464 +40474 +40513 +40524 +40535 +40557 +40566 +40586-40587 +40618 +40624 +40642 +40649 +40666 +40679 +40699 +40704 +40727 +40751-40752 +40775-40776 +40785 +40791 +40799 +40801-40805 +40806 +40814 +40822 +40825 +40831 +40832-40836 +40843 +40845 +40846-40847 +40851-40853 +40875-40879 +40905-40906 +40910 +40920 +40927 +40930-40933 +40935 +40945 +40953 +40957-40959 +40964 +40968 +40986-40987 +41030-41031 +41052-41054 +41060 +41072 +41095-41098 +41101 +41112 +41114 +41117 +41129-41130 +41145 +41167 +41182-41183 +41189 +41193 +41200 +41212 +41232-41234 +41238 +41239-41241 +41247 +41248-41257 +41261-41262 +41273-41274 +41275-41282 +41292 +41293-41299 +41307 +41312 +41313-41320 +41331 +41332-41335 +41340 +41358-41360 +41370 +41388 +41420-41421 +41443 +41451 +41454 +41464 +41467 +41475 +41477 +41481 +41498 +41513 +41518 +41522 +41528 +41535 +41559 +41563 +41566 +41579-41581 +41583 +41600-41601 +41603-41607 +41630 +41631-41632 +41635-41638 +41639 +41643 +41659-41660 +41661-41667 +41667 +41671 +41675 +41690-41692 +41693-41700 +41711 +41712 +41718 +41722-41725 +41725 +41728 +41730 +41733 +41734-41737 +41745 +41746-41748 +41757 +41758-41760 +41764-41768 +41769-41770 +41772 +41775-41776 +41775 +41777-41779 +41783-41784 +41785-41786 +41791-41795 +41796-41798 +41799 +41802-41803 +41804-41805 +41808-41811 +41814-41815 +41816-41818 +41819-41822 +41826-41827 +41826 +41828-41830 +41832-41835 +41842 +41843-41847 +41854-41855 +41856 +41858 +41866-41867 +41872 +41883-41900 +41903-41905 +41921-41933 +41939-41941 +41946 +41952-41955 +41952 +41955 +41959-41967 +41969 +41971-41974 +41984 +41985-41989 +41995 +42002-42005 +42006 +42017-42020 +42033-42037 +42040 +42044-42047 +42051-42055 +42066-42069 +42081-42086 +42094-42097 +42105 +42106-42111 +42119-42120 +42122-42123 +42124-42127 +42129-42131 +42138 +42140 +42142-42145 +42151-42152 +42153-42156 +42166-42169 +42173-42175 +42176-42179 +42196-42200 +42205 +42206-42209 +42221-42222 +42226-42230 +42240 +42247-42248 +42248 +42251-42253 +42257-42261 +42265 +42267 +42276-42278 +42279-42280 +42282-42285 +42285 +42288 +42290 +42308-42312 +42316-42320 +42323 +42326 +42331 +42333 +42342-42345 +42348-42349 +42370-42372 +42374-42376 +42396-42397 +42399-42401 +42423-42425 +42426-42427 +42436-42437 +42438 +42444 +42445-42446 +42449 +42450 +42467-42470 +42471-42472 +42487-42489 +42490 +42504 +42505 +42510-42511 +42512 +42515 +42520-42523 +42532-42534 +42541-42544 +42542 +42549-42550 +42551 +42555 +42565-42566 +42567-42568 +42567 +42571 +42572 +42576 +42583-42584 +42583 +42585-42588 +42602 +42603-42608 +42617 +42622 +42626-42627 +42628-42632 +42649 +42651-42654 +42655-42661 +42665-42667 +42673-42675 +42676 +42677-42697 +42696 +42702-42707 +42708-42726 +42732-42734 +42735-42748 +42754-42756 +42757-42771 +42772 +42782-42783 +42784-42785 +42789-42791 +42792 +42798-42800 +42801-42802 +42802 +42813-42814 +42814 +42815-42819 +42826-42827 +42828 +42833 +42838-42840 +42841 +42849 +42851 +42852-42859 +42862 +42864 +42867 +42870 +42874 +42875-42885 +42898-42899 +42900-42909 +42913 +42924-42925 +42926 +42935-42936 +42937 +42950-42953 +42956-42957 +42958 +42975-42976 +42977-42978 +42994-42995 +42996 +43012 +43013-43015 +43027-43029 +43030 +43033 +43037-43039 +43038 +43041 +43051-43053 +43054-43055 +43066-43074 +43079 +43080-43084 +43097-43103 +43104 +43115-43116 +43117-43120 +43121 +43123-43124 +43134 +43143 +43144-43146 +43147 +43158 +43172 +43179 +43180-43182 +43183 +43188-43190 +43197 +43211 +43212-43217 +43236-43242 +43257-43263 +43275 +43282 +43286 +43291-43293 +43311 +43313 +43315-43317 +43323-43325 +43328 +43332 +43335 +43340-43343 +43347 +43349 +43349 +43365 +43368 +43381-43382 +43398 +43400 +43406-43411 +43416 +43419 +43422 +43426 +43432 +43446-43449 +43451 +43453 +43461 +43462 +43469 +43470 +43473 +43474 +43476-43477 +43480-43482 +43483 +43494 +43495 +43507-43509 +43513 +43525-43526 +43533 +43536 +43543 +43555 +43561-43570 +43584 +43590-43602 +43605 +43609 +43616 +43621 +43622-43629 +43636 +43639 +43645 +43649 +43654 +43658 +43665 +43668-43669 +43688-43689 +43691 +43700 +43704 +43709 +43729 +43731 +43733 +43738 +43744 +43748 +43751 +43752-43762 +43763 +43768 +43774 +43780 +43781-43789 +43797 +43807-43819 +43837-43838 +43839 +43843 +43846-43849 +43856 +43857-43860 +43861 +43863 +43865-43866 +43867-43868 +43870 +43873 +43882-43883 +43884 +43890 +43892-43894 +43895-43896 +43901-43902 +43903-43907 +43908-43919 +43928 +43931 +43939-43942 +43945 +43949 +43957-43959 +43965 +43974-43975 +43977 +43980 +43981 +43986-43987 +44001 +44003-44007 +44019 +44024 +44028 +44030 +44031-44037 +44037 +44056 +44057-44059 +44077 +44078-44081 +44097 +44098 +44109 +44110 +44115-44116 +44117 +44118 +44122 +44132 +44133 +44134 +44145-44147 +44160 +44172 +44176 +44182-44183 +44191-44192 +44200 +44201 +44210 +44211-44212 +44219-44225 +44226-44228 +44230 +44231 +44235 +44237-44238 +44239-44240 +44250-44251 +44252-44253 +44259 +44265 +44266 +44280 +44281 +44297 +44298-44301 +44303-44305 +44306-44311 +44323 +44324-44331 +44344 +44346 +44347-44359 +44365-44372 +44374-44385 +44402-44411 +44430-44433 +44443 +44451-44457 +44470-44477 +44480-44492 +44495-44503 +44513 +44515-44516 +44518-44519 +44520-44521 +44522-44523 +44531 +44540-44541 +44547 +44555 +44557-44561 +44562 +44573-44579 +44591-44592 +44591 +44602-44607 +44602 +44607 +44620-44621 +44625 +44630 +44636 +44645 +44646-44647 +44675 +44685 +44690 +44718 +44725 +44733-44734 +44752 +44755 +44758 +44770-44771 +44794 +44800 +44808 +44814-44815 +44820 +44836-44837 +44856 +44916 +44931 +44949 +44961 +44979 +45021-45023 +45031-45032 +45045-45046 +45053-45054 +45057 +45062-45063 +45070 +45078-45080 +45084-45086 +45097-45102 +45113 +45113 +45123-45128 +45136 +45139-45145 +45144 +45153-45156 +45166-45173 +45172 +45175 +45179-45181 +45188 +45189-45195 +45197 +45200-45202 +45200 +45204 +45207 +45209 +45210-45218 +45223-45225 +45226 +45239-45243 +45246-45248 +45247 +45252 +45259-45262 +45263 +45265 +45266 +45269 +45274-45278 +45280 +45283 +45287 +45295-45305 +45307 +45308 +45312 +45315 +45319-45329 +45325 +45330 +45331-45332 +45336 +45337-45355 +45338 +45345 +45356-45357 +45362-45363 +45364-45365 +45367-45368 +45370 +45379 +45381 +45384-45385 +45389-45393 +45395 +45397 +45400 +45404 +45413-45417 +45422 +45434 +45446-45448 +45452 +45471 +45476-45478 +45481 +45484 +45488 +45502 +45505-45509 +45512-45513 +45515 +45535 +45538-45539 +45540-45541 +45540 +45543 +45546 +45554 +45560 +45562 +45577 +45580 +45584 +45588-45590 +45588 +45593 +45595 +45619-45620 +45628 +45631 +45634 +45637 +45638-45639 +45640 +45640 +45644 +45647 +45650 +45654 +45656 +45661-45662 +45661 +45663 +45664 +45668 +45685 +45687 +45688 +45691 +45701 +45702 +45713 +45714 +45719 +45720 +45736 +45745 +45750 +45753 +45757 +45762 +45771 +45775 +45776 +45778-45779 +45781-45782 +45787 +45791 +45794 +45797 +45798 +45800 +45802-45804 +45807 +45813-45814 +45815 +45821 +45823 +45829 +45833 +45835 +45848 +45850 +45857 +45868 +45877-45879 +45896 +45899 +45913-45914 +45915 +45921 +45927 +45933 +45938-45940 +45943-45944 +45949 +45966-45967 +45968-45969 +45968 +45978 +45986 +46015 +46016 +46034 +46054 +46078 +46085 +46086 +46088 +46089 +46113 +46141 +46144 +46165 +46181 +46191 +46195-46197 +46223 +46227 +46231 +46248 +46254 +46256 +46257 +46264-46265 +46274 +46282 +46294 +46299 +46312 +46317 +46318 +46321 +46322-46323 +46326 +46329 +46337-46338 +46346 +46347-46348 +46354 +46362-46363 +46370-46371 +46375 +46384-46385 +46386-46387 +46389-46391 +46393-46395 +46397-46400 +46400 +46402 +46405 +46411-46413 +46478 +46481 +46484 +46488 +46489-46490 +46510-46511 +46526 +46529 +46533 +46534-46535 +46561-46562 +46562 +46575 +46578 +46580 +46584 +46588 +46592 +46597 +46616 +46650 +46663 +46670 +46707 +46708 +46715 +46718-46719 +46724 +46740-46741 +46761-46762 +46771 +46773 +46783-46786 +46803 +46807-46808 +46813 +46824 +46825-46826 +46828-46830 +46828 +46834 +46838 +46839-46841 +46842-46843 +46842 +46855 +46862-46863 +46864-46869 +46867 +46872 +46881 +46882-46886 +46900-46903 +46919 +46921 +46926 +46954-46956 +46970 +46974 +46987-46989 +46990 +47003 +47006 +47008 +47014-47017 +47016 +47031 +47042-47046 +47056 +47060 +47067-47070 +47081 +47091 +47092-47096 +47096 +47099 +47103 +47122-47125 +47150 +47159 +47161-47166 +47162 +47167 +47169 +47171 +47181-47183 +47193-47198 +47205-47207 +47212-47215 +47237 +47239 +47240-47245 +47263 +47267-47270 +47281 +47295-47298 +47306 +47309 +47313 +47318 +47319 +47323 +47326 +47329 +47330 +47333 +47336 +47339 +47341 +47344 +47352 +47354 +47372 +47388-47389 +47414 +47420-47426 +47421 +47428 +47439 +47457 +47475 +47486 +47487 +47497 +47512 +47514 +47518 +47520 +47523 +47526 +47528 +47531 +47534 +47536-47538 +47536 +47541 +47562 +47568-47570 +47572-47573 +47603-47605 +47606-47608 +47610 +47613 +47616 +47621 +47627 +47631 +47636-47638 +47652 +47654 +47656 +47659 +47661-47662 +47663-47664 +47688-47689 +47690 +47714 +47722 +47725 +47729 +47732 +47734 +47735 +47743-47744 +47748 +47771 +47776-47777 +47776 +47787 +47791 +47792 +47802 +47809-47810 +47815 +47823 +47827 +47831-47833 +47838 +47847-47851 +47849 +47854 +47877-47885 +47884 +47889 +47895 +47899 +47908 +47909-47916 +47941-47947 +47969-47973 +48001-48008 +48008 +48010 +48013 +48020 +48025 +48030 +48031-48035 +48062-48066 +48074 +48080 +48086-48088 +48091 +48107-48108 +48130 +48134-48137 +48157 +48163 +48164-48167 +48182-48183 +48200-48205 +48208-48210 +48226 +48228-48230 +48234 +48242-48244 +48246-48248 +48264-48265 +48280-48281 +48304 +48306-48310 +48307 +48311 +48316 +48319 +48321 +48324 +48326 +48332-48335 +48345 +48354-48357 +48383-48385 +48389 +48403 +48411-48412 +48435 +48438 +48441 +48443 +48445 +48450 +48515 +48518 +48521 +48524 +48527 +48529 +48535 +48540 +48544 +48548 +48567 +48577 +48636 +48650 +48654 +48664 +48669 +48677 +48683 +48685 +48704 +48708 +48714 +48715 +48720 +48722 +48727 +48731 +48735 +48761 +48766 +48778 +48784 +48786 +48789 +48791 +48794 +48810 +48820 +48824 +48825 +48827 +48830 +48840 +48844 +48847-48848 +48874-48876 +48890-48891 +48895 +48902 +48904-48906 +48909 +48920-48923 +48929 +48935 +48936-48941 +48945 +48950 +48957 +48958-48960 +48965 +48970 +48972-48979 +48986 +48992 +48995-48996 +49000 +49006-49008 +49012-49013 +49015-49016 +49017 +49019-49020 +49026-49027 +49027 +49030 +49036-49041 +49048-49053 +49052 +49069-49071 +49075-49077 +49085 +49101 +49103 +49115-49122 +49123 +49126 +49129 +49132 +49135-49139 +49157-49163 +49185-49186 +49185 +49195 +49197 +49200 +49203 +49218-49219 +49229 +49278-49279 +49282 +49288 +49295 +49312 +49315-49317 +49325 +49340-49342 +49344 +49349 +49353 +49361 +49363 +49366-49368 +49372 +49387 +49402 +49417 +49423 +49430 +49439 +49453 +49474 +49479 +49488 +49514 +49529 +49556 +49558 +49562 +49566 +49568 +49575 +49589 +49603 +49607 +49609 +49612 +49614 +49617 +49622 +49624 +49626 +49628 +49629 +49635 +49651 +49686 +49689 +49695 +49697 +49702 +49707 +49713 +49715 +49739-49740 +49747-49748 +49762-49763 +49766 +49769-49771 +49786-49788 +49822 +49827 +49833 +49838 +49851 +49856-49857 +49888-49889 +49924 +49931-49933 +49934 +49940 +49945 +49947 +49961 +49962 +49966 +49969-49973 +49972 +49995-49996 +50012 +50016 +50022 +50030 +50042 +50072-50073 +50106-50108 +50111 +50114 +50148-50151 +50170-50172 +50190 +50209-50211 +50247 +50248-50252 +50255 +50278 +50282-50284 +50304 +50307 +50311 +50315 +50318 +50320 +50349 +50353 +50363 +50367 +50428 +50439 +50441 +50444 +50516 +50520 +50548-50550 +50558 +50560-50572 +50573 +50578-50584 +50590-50597 +50601-50605 +50611-50618 +50619 +50622 +50624-50636 +50637 +50637 +50641-50651 +50652 +50658-50665 +50672-50674 +50676 +50680-50682 +50683 +50686 +50690 +50698-50702 +50703-50706 +50719-50721 +50722-50725 +50737 +50738-50744 +50757 +50758-50765 +50775 +50776-50779 +50784-50788 +50789-50790 +50795 +50796-50801 +50805-50807 +50808 +50813 +50815-50821 +50825-50833 +50834 +50837 +50840-50846 +50840 +50847 +50849 +50852-50860 +50861 +50867-50870 +50876-50879 +50880 +50887-50892 +50902-50908 +50909 +50911 +50912-50914 +50919-50920 +50921-50924 +50932-50935 +50936-50937 +50945-50947 +50948-50949 +50949 +50952 +50965-50968 +50969 +50987 +50988 +51009-51012 +51013-51015 +51021 +51025 +51035-51036 +51037-51039 +51044 +51059-51060 +51061 +51065 +51079 +51080-51081 +51082-51084 +51093 +51096 +51104-51107 +51108 +51120 +51129-51131 +51132-51133 +51155 +51156-51157 +51170 +51172-51173 +51174 +51175 +51186-51189 +51190-51191 +51207-51208 +51209 +51212-51213 +51215 +51219 +51222-51223 +51227 +51229 +51235 +51238-51239 +51240 +51242-51245 +51243 +51247 +51250 +51252 +51254-51256 +51254 +51256 +51257-51259 +51258 +51261 +51265 +51269 +51272-51274 +51288-51289 +51302-51308 +51319 +51323 +51326-51336 +51329 +51333 +51345-51348 +51359-51361 +51374-51377 +51392 +51394 +51397-51402 +51397 +51398 +51400 +51402 +51405 +51408 +51410 +51412 +51416 +51417 +51422-51429 +51422 +51433 +51441 +51443 +51450-51458 +51450 +51453 +51474-51475 +51478-51484 +51478 +51480 +51483 +51485 +51487 +51489 +51499-51504 +51499 +51507-51511 +51510 +51512 +51521 +51523-51528 +51529-51530 +51540 +51545-51550 +51559-51561 +51569 +51572-51574 +51583-51585 +51591 +51598 +51604 +51620-51621 +51640 +51653 +51655 +51656-51657 +51669 +51673 +51677 +51684-51685 +51688 +51693-51695 +51701-51704 +51707 +51710-51714 +51720 +51721-51722 +51724-51725 +51730 +51733-51734 +51735 +51739-51740 +51744-51745 +51753 +51759-51760 +51768 +51769 +51771-51772 +51774 +51780 +51781-51782 +51785-51788 +51796 +51798 +51801 +51803 +51808 +51815 +51828 +51834 +51835 +51845 +51846 +51855 +51856 +51864 +51865 +51867-51869 +51870 +51873 +51875-51881 +51890-51895 +51896-51899 +51902 +51907-51911 +51912-51919 +51918 +51921 +51933-51937 +51938-51941 +51945-51950 +51951-51952 +51953 +51965-51968 +51979 +51984 +51988-51990 +51990 +52016-52018 +52019 +52030-52031 +52043-52044 +52045-52047 +52062 +52074-52076 +52077-52080 +52085 +52101 +52108-52109 +52110-52112 +52115 +52132-52133 +52138 +52139-52140 +52160-52161 +52160 +52164 +52165 +52166-52167 +52170 +52173 +52186-52188 +52192-52193 +52203 +52226-52227 +52256 +52265 +52273 +52282 +52285 +52289 +52294 +52310-52313 +52335 +52335 +52347 +52355-52357 +52357 +52364-52366 +52365 +52373 +52377 +52389 +52389 +52398-52399 +52406-52407 +52417 +52424 +52426 +52428 +52433-52434 +52440 +52442-52443 +52449 +52460 +52473-52478 +52488 +52491 +52502 +52504 +52507 +52518 +52570-52571 +52577 +52581 +52586-52587 +52595-52601 +52602-52603 +52612-52618 +52620 +52622-52638 +52644-52664 +52668 +52671-52684 +52692-52702 +52707 +52711-52718 +52726-52733 +52734 +52736 +52741-52749 +52750-52751 +52757-52768 +52770-52787 +52787 +52789-52811 +52813-52829 +1-266 +267-715 +716-1007 +1008-1369 +1370-1500 +1501-1547 +1548-1615 +1616-1671 +1672-1693 +1694-4766 +4767-9541 +9542-9674 +9675-14442 +14443-15170 +15171-18733 +18734-22564 +22565-24281 +24282-24390 +24391-24690 +24691-26257 +26258-29068 +29069-32163 +32164-34648 +34649-34958 +34959-36675 +36676-41229 +41230-44523 +44524-50555 +50556-50908 +50909-51208 +51209-51801 +51802-51873 +51874-52618 +52619-52829 +1-266 +267-446 +447-715 +716-955 +956-1007 +1008-1369 +1370-1500 +1501-1547 +1548-1615 +1616-1671 +1672-1693 +1694-3893 +3894-4766 +4767-7377 +7378-9541 +9542-9674 +9675-12033 +12034-14442 +14443-15089 +15090-15170 +15171-17181 +17182-18733 +18734-20554 +20555-22564 +22565-23164 +23165-24281 +24282-24390 +24391-24690 +24691-25808 +25809-26257 +26258-27678 +27679-29068 +29069-30557 +30558-32163 +32164-33393 +33394-34648 +34649-34875 +34876-34958 +34959-36184 +36185-36675 +36676-39397 +39398-41229 +41230-43303 +43304-44523 +44524-47172 +47173-50555 +50556-50814 +50815-50908 +50909-51208 +51209-51801 +51802-51873 +51874-52429 +52430-52618 +52619-52829 +1-4 +5-12 +13-21 +22-37 +38-50 +51-77 +78-107 +108-132 +133-153 +154-172 +173-182 +183-214 +215-247 +248-257 +258-266 +267 +268-286 +287-295 +296-300 +301-309 +310-325 +326-340 +341-349 +350-364 +365-387 +388-405 +406-417 +418-442 +443-445 +446 +447 +448-454 +455-461 +462-482 +483-492 +493-503 +504-510 +511-535 +536-556 +557-586 +587-618 +619-638 +639-653 +654-672 +673-679 +680-686 +687-703 +704-715 +716-740 +741-766 +767-781 +782-801 +802-822 +823-835 +836-853 +854-870 +871-895 +896-907 +908-923 +924-940 +941-955 +956-971 +972-983 +984-993 +994-1007 +1008 +1009-1025 +1026-1042 +1043-1065 +1066-1080 +1081-1100 +1101-1122 +1123-1144 +1145-1159 +1160-1183 +1184-1200 +1201-1223 +1224-1234 +1235-1256 +1257-1276 +1277-1293 +1294-1307 +1308-1316 +1317 +1318 +1319-1342 +1343-1362 +1363-1369 +1370-1373 +1374-1385 +1386-1398 +1399-1413 +1414-1429 +1430-1441 +1442-1449 +1450-1464 +1465-1474 +1475-1485 +1486-1493 +1494-1500 +1501-1506 +1507-1511 +1512-1517 +1518-1524 +1525-1528 +1529-1535 +1536-1539 +1540-1543 +1544-1547 +1548-1549 +1550-1555 +1556-1570 +1571-1580 +1581-1589 +1590-1595 +1596-1604 +1605-1615 +1616-1618 +1619-1629 +1630-1643 +1644-1654 +1655-1662 +1663-1671 +1672-1676 +1677-1680 +1681-1685 +1686-1688 +1689-1691 +1692-1693 +1694-1722 +1723-1753 +1754-1786 +1787-1812 +1813-1836 +1837-1863 +1864-1886 +1887-1907 +1908-1931 +1932-1949 +1950-1966 +1967-1992 +1993-2009 +2010-2027 +2028-2045 +2046-2066 +2067-2090 +2091-2113 +2114-2128 +2129-2142 +2143-2155 +2156-2173 +2174-2188 +2189-2212 +2213-2233 +2234-2249 +2250-2268 +2269-2283 +2284-2296 +2297-2312 +2313-2332 +2333-2349 +2350-2379 +2380-2405 +2406-2424 +2425-2452 +2453-2470 +2471-2489 +2490-2502 +2503-2515 +2516-2536 +2537-2555 +2556-2580 +2581-2597 +2598-2620 +2621-2643 +2644-2660 +2661-2687 +2688-2700 +2701-2728 +2729-2753 +2754-2770 +2771 +2772-2788 +2789-2820 +2821-2839 +2840-2862 +2863-2877 +2878-2900 +2901-2916 +2917-2925 +2926-2933 +2934-2948 +2949-2951 +2952-2966 +2967-2980 +2981-2997 +2998-3012 +3013-3018 +3019-3029 +3030-3044 +3045-3055 +3056-3068 +3069-3079 +3080-3093 +3094-3108 +3109-3116 +3117-3132 +3133-3163 +3164-3196 +3197-3211 +3212-3227 +3228-3239 +3240-3255 +3256-3261 +3262-3273 +3274-3286 +3287-3293 +3294-3307 +3308-3332 +3333-3348 +3349-3373 +3374-3397 +3398-3423 +3424-3443 +3444-3468 +3469-3493 +3494-3516 +3517-3541 +3542-3566 +3567-3582 +3583-3611 +3612-3628 +3629-3651 +3652-3683 +3684-3702 +3703-3715 +3716-3723 +3724-3731 +3732-3734 +3735-3739 +3740-3745 +3746-3758 +3759-3761 +3762-3771 +3772-3781 +3782-3793 +3794-3808 +3809-3821 +3822-3841 +3842-3858 +3859-3880 +3881-3892 +3893 +3894-3904 +3905-3930 +3931-3960 +3961-3978 +3979-3993 +3994-4019 +4020-4028 +4029-4036 +4037-4041 +4042-4054 +4055-4071 +4072-4093 +4094-4106 +4107-4117 +4118-4134 +4135-4150 +4151-4172 +4173-4184 +4185-4195 +4196-4206 +4207-4214 +4215-4217 +4218-4225 +4226-4236 +4237-4243 +4244-4255 +4256-4265 +4266-4267 +4268-4272 +4273-4276 +4277-4279 +4280-4284 +4285-4293 +4294-4298 +4299-4305 +4306-4309 +4310-4311 +4312-4318 +4319-4328 +4329-4331 +4332-4336 +4337-4342 +4343-4349 +4350-4354 +4355-4357 +4358-4361 +4362-4366 +4367-4373 +4374-4381 +4382-4391 +4392-4404 +4405-4422 +4423-4438 +4439-4457 +4458 +4459-4462 +4463-4470 +4471-4480 +4481-4488 +4489-4496 +4497-4504 +4505-4509 +4510-4520 +4521-4531 +4532-4545 +4546-4556 +4557-4566 +4567-4576 +4577-4580 +4581-4584 +4585-4589 +4590-4599 +4600-4610 +4611-4627 +4628-4636 +4637-4668 +4669-4683 +4684-4705 +4706-4721 +4722-4750 +4751-4766 +4767-4790 +4791-4812 +4813-4833 +4834-4857 +4858-4883 +4884-4906 +4907-4919 +4920-4955 +4956-4970 +4971-4985 +4986-5002 +5003-5016 +5017-5041 +5042-5067 +5068-5094 +5095-5116 +5117-5137 +5138-5153 +5154-5170 +5171-5186 +5187-5208 +5209-5236 +5237-5260 +5261-5281 +5282-5303 +5304-5330 +5331-5355 +5356-5386 +5387-5409 +5410-5432 +5433-5466 +5467-5501 +5502-5529 +5530-5552 +5553-5575 +5576-5595 +5596-5628 +5629-5665 +5666-5694 +5695-5721 +5722-5753 +5754-5782 +5783-5809 +5810-5832 +5833-5856 +5857-5887 +5888-5918 +5919-5939 +5940-5965 +5966-5989 +5990-5994 +5995 +5996 +5997-5998 +5999-6000 +6001-6002 +6003-6005 +6006 +6007-6032 +6033-6048 +6049-6072 +6073-6099 +6100-6126 +6127-6150 +6151-6180 +6181-6205 +6206-6222 +6223-6248 +6249-6260 +6261-6276 +6277-6301 +6302-6325 +6326-6349 +6350-6370 +6371-6395 +6396-6420 +6421-6441 +6442-6471 +6472-6494 +6495-6519 +6520-6539 +6540-6564 +6565-6591 +6592-6610 +6611-6631 +6632-6640 +6641-6661 +6662-6685 +6686-6707 +6708-6741 +6742-6766 +6767-6775 +6776-6788 +6789-6808 +6809-6830 +6831-6850 +6851-6872 +6873-6891 +6892-6918 +6919-6943 +6944-6954 +6955-6969 +6970-6984 +6985-7003 +7004-7023 +7024-7044 +7045-7064 +7065-7085 +7086-7111 +7112-7134 +7135-7154 +7155-7170 +7171-7184 +7185-7203 +7204-7212 +7213-7220 +7221-7229 +7230-7246 +7247-7262 +7263-7279 +7280-7295 +7296-7319 +7320-7351 +7352-7376 +7377 +7378-7384 +7385-7400 +7401-7421 +7422-7443 +7444-7463 +7464-7474 +7475-7499 +7500-7520 +7521-7550 +7551-7582 +7583-7604 +7605-7620 +7621-7636 +7637-7639 +7640-7643 +7644-7649 +7650-7656 +7657-7662 +7663-7675 +7676-7691 +7692-7705 +7706-7731 +7732-7752 +7753-7773 +7774-7798 +7799-7815 +7816-7832 +7833-7849 +7850-7863 +7864-7884 +7885-7904 +7905-7923 +7924-7944 +7945-7956 +7957-7972 +7973-7997 +7998-8019 +8020-8038 +8039-8059 +8060-8072 +8073-8095 +8096-8119 +8120-8144 +8145-8158 +8159-8170 +8171-8187 +8188-8197 +8198-8209 +8210-8220 +8221-8236 +8237-8252 +8253-8276 +8277-8288 +8289-8314 +8315-8335 +8336-8362 +8363-8385 +8386-8407 +8408-8426 +8427-8447 +8448-8474 +8475-8488 +8489-8510 +8511-8528 +8529-8552 +8553 +8554-8579 +8580-8594 +8595-8612 +8613-8626 +8627-8634 +8635-8641 +8642-8652 +8653-8659 +8660-8671 +8672-8681 +8682-8693 +8694-8701 +8702-8723 +8724-8745 +8746-8766 +8767-8788 +8789-8813 +8814-8836 +8837-8855 +8856-8872 +8873-8896 +8897-8920 +8921-8940 +8941-8959 +8960-8978 +8979-9000 +9001-9012 +9013-9031 +9032-9053 +9054-9075 +9076-9083 +9084-9100 +9101-9120 +9121-9142 +9143-9161 +9162-9174 +9175-9179 +9180-9185 +9186-9205 +9206-9223 +9224-9231 +9232-9248 +9249-9264 +9265-9286 +9287-9308 +9309-9322 +9323-9336 +9337-9349 +9350-9369 +9370-9383 +9384-9399 +9400-9414 +9415-9443 +9444-9458 +9459-9480 +9481-9496 +9497-9513 +9514-9525 +9526-9541 +9542-9566 +9567-9587 +9588-9607 +9608-9633 +9634-9652 +9653-9665 +9666-9674 +9675-9692 +9693-9713 +9714-9733 +9734-9759 +9760-9787 +9788-9803 +9804-9823 +9824-9846 +9847-9861 +9862-9886 +9887-9906 +9907-9921 +9922-9928 +9929-9945 +9946-9962 +9963-9978 +9979-9996 +9997-10013 +10014-10032 +10033-10046 +10047-10056 +10057-10073 +10074-10082 +10083-10097 +10098-10108 +10109-10113 +10114-10116 +10117-10121 +10122-10132 +10133-10152 +10153-10170 +10171-10193 +10194-10207 +10208-10214 +10215-10219 +10220-10221 +10222-10223 +10224-10226 +10227 +10228-10231 +10232-10240 +10241-10257 +10258-10265 +10266-10277 +10278-10289 +10290-10300 +10301-10312 +10313-10335 +10336-10359 +10360-10376 +10377-10398 +10399-10419 +10420-10427 +10428-10454 +10455-10471 +10472-10487 +10488-10513 +10514-10541 +10542-10568 +10569-10575 +10576-10597 +10598-10615 +10616-10622 +10623-10640 +10641 +10642-10663 +10664-10686 +10687-10697 +10698-10722 +10723-10747 +10748-10775 +10776-10804 +10805-10831 +10832-10858 +10859-10883 +10884-10897 +10898-10923 +10924-10941 +10942-10970 +10971-10997 +10998-11013 +11014-11029 +11030-11042 +11043-11057 +11058-11071 +11072-11099 +11100-11123 +11124-11159 +11160-11174 +11175-11187 +11188-11208 +11209-11227 +11228-11243 +11244-11266 +11267-11288 +11289-11306 +11307-11325 +11326-11338 +11339-11354 +11355-11366 +11367-11385 +11386-11402 +11403-11420 +11421-11441 +11442-11448 +11449-11456 +11457-11466 +11467-11482 +11483-11499 +11500-11522 +11523-11538 +11539-11551 +11552-11570 +11571-11583 +11584-11595 +11596-11608 +11609-11622 +11623-11636 +11637-11651 +11652-11676 +11677-11699 +11700-11718 +11719-11743 +11744-11769 +11770-11791 +11792-11819 +11820-11840 +11841-11870 +11871-11895 +11896-11931 +11932-11948 +11949-11982 +11983-12015 +12016-12032 +12033 +12034-12048 +12049-12062 +12063-12077 +12078-12092 +12093-12121 +12122-12136 +12137-12147 +12148-12161 +12162-12179 +12180-12204 +12205-12230 +12231-12252 +12253-12275 +12276-12299 +12300-12332 +12333-12361 +12362-12387 +12388-12415 +12416-12443 +12444-12466 +12467-12483 +12484-12505 +12506-12532 +12533-12558 +12559-12582 +12583-12591 +12592-12603 +12604-12615 +12616-12637 +12638-12663 +12664-12688 +12689-12711 +12712-12729 +12730-12757 +12758-12787 +12788-12814 +12815-12839 +12840-12863 +12864-12893 +12894-12908 +12909-12942 +12943-12956 +12957-12983 +12984-13009 +13010-13016 +13017-13041 +13042-13069 +13070-13096 +13097-13125 +13126-13145 +13146-13170 +13171-13191 +13192-13227 +13228-13235 +13236-13263 +13264-13290 +13291-13316 +13317-13342 +13343-13366 +13367-13393 +13394-13421 +13422-13446 +13447-13471 +13472-13493 +13494-13518 +13519-13547 +13548 +13549-13560 +13561-13585 +13586-13609 +13610-13621 +13622-13651 +13652-13672 +13673-13692 +13693-13707 +13708-13733 +13734-13750 +13751-13773 +13774-13795 +13796-13818 +13819-13848 +13849-13868 +13869-13897 +13898-13925 +13926-13935 +13936-13955 +13956-13972 +13973-13992 +13993-14018 +14019-14038 +14039-14055 +14056-14083 +14084-14097 +14098-14104 +14105-14111 +14112-14122 +14123-14129 +14130-14140 +14141-14151 +14152-14170 +14171-14184 +14185-14193 +14194-14204 +14205-14215 +14216-14228 +14229-14238 +14239-14247 +14248-14254 +14255-14256 +14257 +14258 +14259 +14260 +14261-14269 +14270-14281 +14282-14290 +14291-14302 +14303-14312 +14313-14326 +14327-14344 +14345-14359 +14360-14381 +14382-14405 +14406-14426 +14427-14442 +14443-14454 +14455-14461 +14462-14473 +14474-14482 +14483-14499 +14500-14516 +14517-14533 +14534-14550 +14551-14571 +14572-14580 +14581-14596 +14597-14615 +14616-14629 +14630-14641 +14642-14668 +14669-14699 +14700-14728 +14729-14752 +14753-14763 +14764-14788 +14789-14809 +14810-14835 +14836-14858 +14859-14883 +14884-14908 +14909-14935 +14936-14957 +14958-14980 +14981-14996 +14997-15012 +15013-15036 +15037-15052 +15053-15079 +15080 +15081-15083 +15084-15086 +15087-15088 +15089 +15090-15094 +15095-15099 +15100-15105 +15106-15113 +15114-15120 +15121-15131 +15132-15140 +15141-15149 +15150-15156 +15157-15165 +15166-15170 +15171-15189 +15190-15212 +15213-15234 +15235-15247 +15248-15270 +15271-15295 +15296-15317 +15318-15343 +15344-15365 +15366-15385 +15386-15407 +15408-15425 +15426-15447 +15448-15461 +15462-15482 +15483-15498 +15499-15517 +15518-15533 +15534-15557 +15558-15570 +15571-15585 +15586-15599 +15600-15620 +15621-15645 +15646-15659 +15660-15675 +15676-15688 +15689-15706 +15707-15720 +15721-15731 +15732-15741 +15742-15760 +15761-15784 +15785-15800 +15801-15818 +15819-15834 +15835-15852 +15853-15869 +15870-15886 +15887-15897 +15898-15913 +15914 +15915 +15916-15934 +15935-15944 +15945-15967 +15968-15989 +15990-16016 +16017-16032 +16033-16044 +16045-16065 +16066-16082 +16083-16105 +16106-16126 +16127-16143 +16144-16166 +16167-16193 +16194-16223 +16224-16242 +16243-16258 +16259-16290 +16291 +16292-16323 +16324-16348 +16349-16359 +16360-16383 +16384-16397 +16398-16426 +16427-16448 +16449-16473 +16474-16500 +16501-16528 +16529-16543 +16544-16547 +16548-16555 +16556-16573 +16574-16586 +16587-16605 +16606-16630 +16631-16650 +16651-16671 +16672-16693 +16694-16714 +16715-16737 +16738-16751 +16752-16776 +16777-16803 +16804-16826 +16827-16851 +16852-16872 +16873-16891 +16892-16917 +16918-16936 +16937 +16938 +16939-16947 +16948-16959 +16960-16979 +16980-17002 +17003-17025 +17026-17055 +17056-17078 +17079-17104 +17105-17127 +17128-17157 +17158-17179 +17180 +17181 +17182-17204 +17205-17227 +17228-17245 +17246-17259 +17260-17281 +17282-17300 +17301-17329 +17330-17354 +17355-17375 +17376 +17377 +17378-17380 +17381-17388 +17389-17402 +17403-17426 +17427-17444 +17445-17466 +17467-17489 +17490-17508 +17509-17526 +17527-17543 +17544-17561 +17562-17580 +17581-17596 +17597-17614 +17615-17629 +17630-17645 +17646-17666 +17667-17686 +17687-17709 +17710-17731 +17732-17754 +17755-17776 +17777-17800 +17801-17814 +17815-17831 +17832-17843 +17844-17866 +17867-17891 +17892-17910 +17911-17928 +17929-17951 +17952-17972 +17973 +17974-17990 +17991-18012 +18013-18037 +18038-18058 +18059-18073 +18074-18087 +18088-18111 +18112-18134 +18135-18158 +18159-18180 +18181-18201 +18202-18212 +18213-18219 +18220-18226 +18227-18235 +18236-18240 +18241-18246 +18247-18249 +18250 +18251 +18252-18256 +18257-18263 +18264-18274 +18275-18285 +18286-18291 +18292-18303 +18304-18314 +18315-18323 +18324-18330 +18331-18336 +18337-18363 +18364-18386 +18387-18410 +18411-18426 +18427-18450 +18451-18468 +18469-18490 +18491-18512 +18513-18530 +18531-18557 +18558-18574 +18575-18593 +18594-18603 +18604-18635 +18636-18650 +18651-18672 +18673-18688 +18689-18717 +18718-18733 +18734-18743 +18744-18749 +18750-18756 +18757-18765 +18766-18773 +18774-18783 +18784-18794 +18795-18805 +18806-18814 +18815-18824 +18825-18840 +18841-18850 +18851-18858 +18859-18871 +18872-18883 +18884-18892 +18893-18913 +18914-18931 +18932-18941 +18942-18967 +18968-18986 +18987-19015 +19016-19042 +19043-19069 +19070-19104 +19105-19121 +19122-19137 +19138-19161 +19162-19185 +19186-19219 +19220-19238 +19239-19254 +19255-19276 +19277-19288 +19289-19319 +19320-19338 +19339-19354 +19355-19378 +19379-19396 +19397-19425 +19426-19444 +19445-19462 +19463-19487 +19488-19504 +19505-19517 +19518-19539 +19540-19557 +19558-19582 +19583-19595 +19596-19622 +19623-19646 +19647-19657 +19658-19667 +19668-19678 +19679-19691 +19692-19715 +19716-19734 +19735-19757 +19758-19779 +19780-19807 +19808-19814 +19815 +19816 +19817-19826 +19827-19837 +19838-19847 +19848-19861 +19862-19870 +19871-19888 +19889-19901 +19902-19913 +19914-19941 +19942-19957 +19958-19980 +19981-20003 +20004-20024 +20025-20038 +20039-20060 +20061-20066 +20067-20069 +20070-20105 +20106-20131 +20132-20160 +20161-20182 +20183-20199 +20200-20226 +20227-20253 +20254-20274 +20275-20300 +20301-20330 +20331-20355 +20356-20380 +20381-20400 +20401-20414 +20415-20440 +20441-20460 +20461-20478 +20479-20503 +20504-20526 +20527-20554 +20555-20566 +20567-20585 +20586-20612 +20613-20639 +20640-20657 +20658-20669 +20670-20696 +20697-20727 +20728-20754 +20755-20782 +20783-20803 +20804-20829 +20830-20848 +20849-20870 +20871-20902 +20903-20930 +20931-20962 +20963-20991 +20992-21009 +21010-21018 +21019-21024 +21025-21029 +21030-21032 +21033-21035 +21036-21037 +21038-21039 +21040-21041 +21042-21043 +21044-21045 +21046-21057 +21058-21075 +21076-21089 +21090-21111 +21112-21137 +21138-21157 +21158-21171 +21172-21195 +21196-21221 +21222-21245 +21246-21263 +21264-21281 +21282-21300 +21301-21321 +21322-21337 +21338-21353 +21354-21362 +21363-21380 +21381-21398 +21399-21420 +21421-21425 +21426-21434 +21435-21447 +21448-21471 +21472-21490 +21491-21499 +21500-21515 +21516-21537 +21538-21547 +21548-21557 +21558-21565 +21566-21576 +21577-21586 +21587-21603 +21604-21611 +21612-21630 +21631-21654 +21655-21679 +21680-21710 +21711-21738 +21739-21767 +21768-21795 +21796-21822 +21823-21839 +21840-21861 +21862 +21863-21887 +21888-21916 +21917-21932 +21933-21957 +21958-21977 +21978-21997 +21998-22008 +22009-22031 +22032-22055 +22056-22074 +22075-22091 +22092-22108 +22109-22127 +22128-22154 +22155-22168 +22169-22190 +22191-22208 +22209-22227 +22228-22239 +22240-22247 +22248-22257 +22258-22266 +22267-22277 +22278-22293 +22294-22306 +22307-22322 +22323-22337 +22338-22364 +22365-22387 +22388-22404 +22405-22420 +22421-22432 +22433-22447 +22448-22457 +22458-22471 +22472-22483 +22484-22491 +22492-22501 +22502-22509 +22510-22517 +22518-22525 +22526-22536 +22537-22545 +22546-22554 +22555-22561 +22562-22564 +22565-22580 +22581-22591 +22592-22601 +22602-22610 +22611-22620 +22621-22622 +22623-22631 +22632-22637 +22638-22642 +22643-22646 +22647-22652 +22653-22654 +22655-22656 +22657 +22658-22659 +22660 +22661 +22662 +22663 +22664 +22665 +22666 +22667-22670 +22671-22676 +22677-22682 +22683-22690 +22691-22696 +22697-22699 +22700-22705 +22706-22714 +22715-22723 +22724-22728 +22729-22732 +22733-22734 +22735-22737 +22738-22740 +22741-22743 +22744-22747 +22748-22750 +22751-22752 +22753-22756 +22757-22759 +22760-22761 +22762-22763 +22764-22765 +22766-22767 +22768-22769 +22770-22771 +22772-22774 +22775-22777 +22778-22780 +22781-22783 +22784-22785 +22786-22787 +22788-22789 +22790-22794 +22795-22799 +22800-22805 +22806-22809 +22810-22813 +22814-22816 +22817-22819 +22820-22822 +22823-22827 +22828-22830 +22831-22835 +22836-22844 +22845-22855 +22856-22867 +22868-22877 +22878-22894 +22895-22909 +22910-22932 +22933-22954 +22955-22979 +22980-22992 +22993-23004 +23005-23033 +23034-23060 +23061-23071 +23072-23094 +23095-23113 +23114-23135 +23136-23148 +23149-23153 +23154-23158 +23159-23161 +23162-23164 +23165-23184 +23185-23200 +23201-23214 +23215-23239 +23240-23257 +23258-23276 +23277-23291 +23292-23305 +23306-23317 +23318-23341 +23342-23358 +23359-23373 +23374-23390 +23391-23408 +23409-23424 +23425-23438 +23439-23459 +23460-23480 +23481-23498 +23499-23503 +23504-23505 +23506-23508 +23509-23511 +23512-23515 +23516-23519 +23520-23525 +23526-23531 +23532-23537 +23538-23550 +23551-23556 +23557-23562 +23563-23566 +23567-23569 +23570-23573 +23574-23576 +23577-23582 +23583-23588 +23589-23594 +23595-23601 +23602-23609 +23610-23618 +23619-23631 +23632-23649 +23650-23670 +23671-23690 +23691-23698 +23699-23706 +23707-23717 +23718-23725 +23726-23733 +23734-23737 +23738-23752 +23753-23762 +23763-23771 +23772-23777 +23778-23785 +23786-23802 +23803-23817 +23818-23828 +23829-23858 +23859-23879 +23880-23895 +23896-23916 +23917-23934 +23935-23960 +23961-23974 +23975-23991 +23992-24000 +24001-24019 +24020-24028 +24029-24044 +24045-24063 +24064-24080 +24081-24093 +24094-24104 +24105-24118 +24119-24130 +24131-24150 +24151-24182 +24183-24197 +24198-24219 +24220-24235 +24236-24252 +24253-24264 +24265-24281 +24282-24288 +24289-24302 +24303-24316 +24317-24327 +24328-24343 +24344-24356 +24357-24364 +24365-24373 +24374-24381 +24382-24387 +24388-24390 +24391 +24392-24399 +24400-24414 +24415-24431 +24432-24450 +24451-24473 +24474-24487 +24488-24501 +24502-24516 +24517-24527 +24528-24541 +24542-24551 +24552-24560 +24561-24573 +24574-24587 +24588-24607 +24608-24627 +24628-24648 +24649-24664 +24665-24677 +24678-24690 +24691-24707 +24708-24725 +24726-24742 +24743-24758 +24759-24773 +24774-24791 +24792-24805 +24806-24819 +24820-24838 +24839-24859 +24860-24867 +24868-24873 +24874-24878 +24879-24882 +24883-24885 +24886-24887 +24888-24889 +24890-24891 +24892-24893 +24894-24895 +24896-24899 +24900-24903 +24904-24908 +24909-24914 +24915-24921 +24922-24935 +24936-24944 +24945-24955 +24956-24970 +24971-24988 +24989-25005 +25006-25019 +25020-25036 +25037-25054 +25055-25080 +25081-25095 +25096-25117 +25118-25141 +25142-25165 +25166-25176 +25177-25194 +25195-25211 +25212-25229 +25230-25236 +25237-25244 +25245-25254 +25255-25264 +25265-25279 +25280-25299 +25300-25323 +25324-25347 +25348-25371 +25372-25399 +25400-25425 +25426-25436 +25437-25442 +25443-25447 +25448-25454 +25455-25457 +25458-25467 +25468-25475 +25476-25487 +25488-25491 +25492-25496 +25497-25502 +25503-25517 +25518-25531 +25532-25553 +25554-25567 +25568-25589 +25590-25609 +25610-25642 +25643-25663 +25664-25684 +25685-25707 +25708-25730 +25731-25756 +25757-25776 +25777-25792 +25793-25808 +25809-25828 +25829-25844 +25845-25864 +25865-25875 +25876-25895 +25896-25910 +25911-25926 +25927-25938 +25939-25951 +25952-25963 +25964-25973 +25974-25979 +25980-25995 +25996-26014 +26015-26031 +26032-26047 +26048-26074 +26075-26083 +26084-26102 +26103-26122 +26123-26133 +26134-26158 +26159-26181 +26182-26203 +26204-26220 +26221-26230 +26231-26239 +26240-26248 +26249-26253 +26254-26257 +26258-26263 +26264-26268 +26269-26277 +26278-26291 +26292-26309 +26310-26327 +26328-26347 +26348-26367 +26368-26383 +26384-26396 +26397-26425 +26426-26451 +26452-26470 +26471-26498 +26499-26508 +26509-26513 +26514 +26515 +26516 +26517 +26518-26542 +26543-26563 +26564-26591 +26592-26610 +26611-26619 +26620-26643 +26644-26668 +26669-26688 +26689-26704 +26705-26727 +26728-26770 +26771-26775 +26776-26784 +26785-26793 +26794-26804 +26805-26812 +26813-26825 +26826-26833 +26834-26848 +26849-26870 +26871-26882 +26883-26899 +26900-26908 +26909-26931 +26932-26957 +26958-26969 +26970-26995 +26996-27008 +27009-27022 +27023-27046 +27047-27055 +27056-27085 +27086-27113 +27114-27124 +27125-27140 +27141-27162 +27163-27184 +27185-27211 +27212-27233 +27234-27244 +27245-27273 +27274-27301 +27302-27327 +27328-27352 +27353-27379 +27380-27402 +27403-27428 +27429-27449 +27450-27468 +27469-27485 +27486-27504 +27505-27525 +27526-27547 +27548-27563 +27564-27587 +27588-27614 +27615-27643 +27644-27670 +27671-27678 +27679-27708 +27709-27728 +27729-27757 +27758-27773 +27774-27805 +27806-27838 +27839-27860 +27861-27880 +27881-27902 +27903-27923 +27924-27931 +27932-27959 +27960-27980 +27981-28002 +28003-28024 +28025-28046 +28047-28068 +28069-28095 +28096-28102 +28103-28128 +28129-28149 +28150-28170 +28171-28190 +28191-28219 +28220-28238 +28239-28254 +28255-28266 +28267-28282 +28283-28303 +28304-28324 +28325-28343 +28344-28359 +28360-28378 +28379-28400 +28401-28416 +28417-28424 +28425-28426 +28427-28437 +28438-28444 +28445-28453 +28454-28463 +28464-28477 +28478-28487 +28488-28501 +28502-28509 +28510-28527 +28528-28548 +28549-28565 +28566-28580 +28581-28609 +28610-28625 +28626-28648 +28649-28663 +28664-28689 +28690-28715 +28716-28739 +28740-28755 +28756-28769 +28770-28790 +28791-28814 +28815-28822 +28823-28835 +28836-28848 +28849-28866 +28867-28880 +28881-28894 +28895-28908 +28909-28922 +28923-28930 +28931-28939 +28940-28947 +28948-28955 +28956-28962 +28963-28970 +28971-28986 +28987-29003 +29004-29016 +29017-29035 +29036-29043 +29044-29068 +29069-29085 +29086-29100 +29101-29121 +29122-29135 +29136-29160 +29161-29189 +29190-29216 +29217-29245 +29246-29271 +29272-29300 +29301-29316 +29317-29326 +29327-29340 +29341-29351 +29352-29361 +29362-29371 +29372-29383 +29384-29398 +29399-29411 +29412-29427 +29428-29455 +29456-29481 +29482-29500 +29501-29526 +29527-29546 +29547-29556 +29557-29574 +29575-29597 +29598-29616 +29617-29638 +29639-29654 +29655-29667 +29668-29679 +29680-29684 +29685-29695 +29696-29702 +29703-29713 +29714-29725 +29726-29738 +29739-29746 +29747-29756 +29757-29768 +29769-29781 +29782-29787 +29788-29799 +29800-29813 +29814-29834 +29835-29843 +29844-29863 +29864-29891 +29892-29902 +29903-29918 +29919-29940 +29941-29962 +29963-29989 +29990-30012 +30013-30023 +30024-30052 +30053-30080 +30081-30106 +30107-30131 +30132-30158 +30159-30181 +30182-30207 +30208-30228 +30229-30247 +30248-30264 +30265-30283 +30284-30304 +30305-30326 +30327-30342 +30343-30366 +30367-30393 +30394-30422 +30423-30449 +30450-30457 +30458-30487 +30488-30496 +30497-30513 +30514-30525 +30526-30543 +30544-30557 +30558-30586 +30587-30611 +30612-30631 +30632-30653 +30654-30674 +30675-30682 +30683-30710 +30711-30729 +30730-30748 +30749-30770 +30771-30792 +30793-30815 +30816-30842 +30843-30849 +30850-30874 +30875-30895 +30896-30913 +30914-30933 +30934-30962 +30963-30982 +30983-31010 +31011-31018 +31019-31025 +31026-31046 +31047-31067 +31068-31086 +31087-31102 +31103-31121 +31122-31135 +31136-31149 +31150-31167 +31168-31188 +31189-31195 +31196-31227 +31228-31244 +31245-31255 +31256-31271 +31272-31296 +31297-31322 +31323-31346 +31347-31361 +31362-31375 +31376-31396 +31397-31412 +31413-31419 +31420-31441 +31442-31460 +31461-31473 +31474-31487 +31488-31501 +31502-31530 +31531-31548 +31549-31565 +31566-31581 +31582-31597 +31598-31614 +31615-31627 +31628-31646 +31647-31654 +31655-31679 +31680-31693 +31694-31717 +31718-31725 +31726-31747 +31748-31763 +31764-31787 +31788-31808 +31809-31818 +31819-31842 +31843-31862 +31863-31885 +31886-31906 +31907-31928 +31929-31949 +31950-31972 +31973-31989 +31990-32007 +32008-32025 +32026-32039 +32040-32061 +32062-32088 +32089-32116 +32117-32129 +32130-32151 +32152-32163 +32164-32179 +32180-32196 +32197-32221 +32222-32247 +32248-32269 +32270-32286 +32287-32301 +32302-32322 +32323-32341 +32342-32359 +32360-32380 +32381-32401 +32402-32414 +32415-32433 +32434-32451 +32452-32468 +32469-32483 +32484-32500 +32501-32522 +32523-32539 +32540-32556 +32557-32575 +32576-32596 +32597-32610 +32611-32627 +32628-32645 +32646-32660 +32661-32677 +32678-32689 +32690-32706 +32707-32714 +32715 +32716-32734 +32735-32758 +32759-32777 +32778-32793 +32794-32811 +32812-32827 +32828-32842 +32843-32858 +32859-32876 +32877-32884 +32885-32906 +32907-32928 +32929-32949 +32950-32970 +32971-32987 +32988-33003 +33004-33023 +33024-33046 +33047-33077 +33078-33095 +33096-33120 +33121-33140 +33141-33166 +33167-33184 +33185-33199 +33200-33215 +33216-33233 +33234-33248 +33249-33262 +33263-33279 +33280-33299 +33300-33318 +33319-33334 +33335-33353 +33354-33370 +33371-33390 +33391-33392 +33393 +33394-33410 +33411-33431 +33432-33450 +33451-33472 +33473-33495 +33496-33507 +33508-33522 +33523-33545 +33546-33561 +33562-33573 +33574-33592 +33593-33618 +33619-33635 +33636-33645 +33646-33656 +33657-33672 +33673-33687 +33688-33703 +33704-33723 +33724-33745 +33746-33763 +33764-33782 +33783-33800 +33801-33808 +33809-33829 +33830-33849 +33850-33867 +33868-33885 +33886-33901 +33902-33924 +33925-33943 +33944-33964 +33965-33983 +33984-33999 +34000-34007 +34008-34026 +34027-34044 +34045-34053 +34054-34070 +34071-34091 +34092-34099 +34100-34115 +34116-34129 +34130-34151 +34152-34161 +34162-34169 +34170 +34171-34184 +34185-34200 +34201-34213 +34214-34235 +34236-34252 +34253-34261 +34262-34284 +34285-34304 +34305-34325 +34326-34344 +34345-34361 +34362-34368 +34369-34385 +34386-34408 +34409-34423 +34424-34432 +34433-34446 +34447-34458 +34459-34473 +34474-34483 +34484-34503 +34504-34518 +34519-34538 +34539-34560 +34561-34576 +34577-34590 +34591-34601 +34602-34633 +34634-34648 +34649-34665 +34666-34682 +34683-34705 +34706-34720 +34721-34740 +34741-34762 +34763-34784 +34785-34799 +34800-34819 +34820-34838 +34839-34862 +34863-34874 +34875 +34876-34897 +34898-34913 +34914-34930 +34931-34942 +34943-34958 +34959-34976 +34977-34992 +34993-35009 +35010-35027 +35028-35044 +35045-35060 +35061-35080 +35081-35096 +35097-35123 +35124-35142 +35143-35159 +35160-35175 +35176-35195 +35196-35216 +35217-35232 +35233-35246 +35247-35256 +35257-35272 +35273-35290 +35291-35313 +35314-35329 +35330-35348 +35349-35364 +35365-35382 +35383-35399 +35400-35416 +35417-35427 +35428-35443 +35444-35464 +35465-35489 +35490-35518 +35519-35537 +35538-35562 +35563-35577 +35578-35591 +35592-35611 +35612-35636 +35637-35655 +35656-35672 +35673-35688 +35689-35700 +35701-35724 +35725-35735 +35736-35763 +35764-35790 +35791-35796 +35797-35819 +35820-35848 +35849 +35850-35874 +35875-35901 +35902-35924 +35925-35949 +35950-35970 +35971-35989 +35990-36015 +36016-36035 +36036-36043 +36044-36049 +36050-36057 +36058-36061 +36062-36086 +36087-36110 +36111-36128 +36129-36150 +36151-36171 +36172-36175 +36176-36178 +36179-36181 +36182-36183 +36184 +36185 +36186-36189 +36190-36194 +36195-36203 +36204-36211 +36212-36228 +36229-36237 +36238-36245 +36246-36252 +36253-36261 +36262-36270 +36271-36276 +36277-36281 +36282-36289 +36290-36298 +36299-36302 +36303-36322 +36323-36339 +36340-36354 +36355-36370 +36371-36393 +36394-36411 +36412-36434 +36435-36456 +36457-36474 +36475-36486 +36487-36501 +36502-36518 +36519-36537 +36538-36547 +36548-36576 +36577-36591 +36592-36613 +36614-36630 +36631-36647 +36648-36659 +36660-36675 +36676-36697 +36698-36718 +36719-36753 +36754-36787 +36788-36821 +36822-36845 +36846-36876 +36877-36896 +36897-36919 +36920-36936 +36937-36955 +36956-36974 +36975-36995 +36996-37008 +37009-37022 +37023-37030 +37031-37054 +37055-37084 +37085-37102 +37103-37109 +37110-37127 +37128-37144 +37145-37164 +37165-37181 +37182-37201 +37202-37223 +37224-37254 +37255-37283 +37284-37313 +37314-37339 +37340-37366 +37367-37391 +37392-37411 +37412-37431 +37432-37447 +37448-37466 +37467-37486 +37487-37515 +37516-37543 +37544-37572 +37573-37598 +37599-37622 +37623-37645 +37646-37669 +37670-37694 +37695-37726 +37727-37758 +37759-37789 +37790-37823 +37824-37852 +37853-37873 +37874-37897 +37898-37918 +37919-37940 +37941-37963 +37964-37989 +37990-38012 +38013-38024 +38025-38042 +38043-38064 +38065-38084 +38085-38099 +38100-38113 +38114-38132 +38133-38152 +38153-38178 +38179-38206 +38207-38235 +38236-38258 +38259-38287 +38288 +38289-38306 +38307-38322 +38323-38336 +38337-38353 +38354-38370 +38371-38382 +38383-38396 +38397-38410 +38411-38425 +38426-38438 +38439-38455 +38456-38464 +38465-38483 +38484-38504 +38505-38524 +38525-38545 +38546-38571 +38572-38603 +38604-38629 +38630-38659 +38660-38686 +38687-38713 +38714-38722 +38723-38733 +38734-38744 +38745-38756 +38757-38767 +38768-38771 +38772-38778 +38779 +38780-38784 +38785-38793 +38794-38799 +38800-38806 +38807-38812 +38813-38827 +38828-38835 +38836-38855 +38856-38866 +38867-38880 +38881-38891 +38892-38909 +38910-38926 +38927-38943 +38944-38962 +38963-38986 +38987-39013 +39014-39036 +39037-39060 +39061-39083 +39084-39093 +39094-39098 +39099-39108 +39109-39119 +39120-39131 +39132-39137 +39138-39149 +39150-39165 +39166-39179 +39180-39194 +39195-39207 +39208-39221 +39222-39236 +39237-39251 +39252-39264 +39265-39280 +39281-39307 +39308-39336 +39337-39367 +39368-39396 +39397 +39398-39432 +39433-39454 +39455-39475 +39476-39502 +39503-39527 +39528-39556 +39557-39576 +39577-39595 +39596-39622 +39623-39645 +39646-39672 +39673-39693 +39694-39721 +39722-39740 +39741-39764 +39765-39791 +39792-39809 +39810-39827 +39828-39841 +39842-39861 +39862-39885 +39886-39909 +39910-39923 +39924-39940 +39941-39954 +39955-39964 +39965-39974 +39975-39979 +39980-39985 +39986-39989 +39990-39995 +39996-40002 +40003-40010 +40011-40015 +40016-40019 +40020 +40021-40046 +40047-40079 +40080-40104 +40105-40135 +40136-40160 +40161-40185 +40186-40210 +40211-40231 +40232-40244 +40245-40255 +40256-40264 +40265-40288 +40289-40312 +40313-40335 +40336-40362 +40363-40384 +40385-40404 +40405-40426 +40427-40445 +40446-40471 +40472-40491 +40492-40511 +40512-40532 +40533-40555 +40556-40570 +40571-40589 +40590-40611 +40612-40641 +40642-40671 +40672-40692 +40693-40716 +40717-40727 +40728-40752 +40753-40776 +40777-40805 +40806-40836 +40837-40853 +40854-40879 +40880-40906 +40907-40933 +40934-40960 +40961-40989 +40990-41011 +41012-41032 +41033-41054 +41055-41072 +41073-41098 +41099-41130 +41131-41145 +41146-41167 +41168-41183 +41184-41200 +41201-41212 +41213-41229 +41230 +41231 +41232-41238 +41239-41247 +41248-41274 +41275-41292 +41293-41312 +41313-41331 +41332-41355 +41356-41383 +41384-41416 +41417-41446 +41447-41473 +41474-41494 +41495-41518 +41519-41547 +41548-41575 +41576-41599 +41600-41630 +41631-41660 +41661-41692 +41693-41711 +41712-41718 +41719 +41720 +41721 +41722-41733 +41734-41745 +41746-41757 +41758-41768 +41769-41776 +41777-41784 +41785-41795 +41796-41803 +41804-41815 +41816-41827 +41828-41842 +41843-41855 +41856-41867 +41868-41900 +41901-41933 +41934-41967 +41968-42000 +42001-42032 +42033-42050 +42051-42080 +42081-42105 +42106-42123 +42124-42152 +42153-42175 +42176-42205 +42206-42225 +42226-42256 +42257-42281 +42282-42315 +42316-42347 +42348-42373 +42374-42398 +42399-42425 +42426-42437 +42438-42444 +42445-42470 +42471-42489 +42490-42504 +42505-42511 +42512-42534 +42535-42550 +42551-42566 +42567-42584 +42585-42602 +42603-42627 +42628-42654 +42655-42675 +42676 +42677-42707 +42708-42734 +42735-42756 +42757-42783 +42784-42791 +42792-42800 +42801-42814 +42815-42827 +42828-42840 +42841-42851 +42852-42874 +42875-42899 +42900-42925 +42926-42936 +42937-42957 +42958-42976 +42977-42995 +42996-43012 +43013-43029 +43030-43053 +43054-43079 +43080-43116 +43117-43143 +43144-43179 +43180-43211 +43212-43235 +43236-43256 +43257-43290 +43291-43302 +43303 +43304 +43305-43328 +43329-43356 +43357-43368 +43369-43395 +43396-43420 +43421-43443 +43444-43461 +43462-43469 +43470-43473 +43474-43477 +43478 +43479 +43480-43494 +43495-43509 +43510-43526 +43527-43543 +43544-43570 +43571-43602 +43603-43629 +43630-43645 +43646-43669 +43670-43689 +43690-43709 +43710-43731 +43732-43762 +43763-43789 +43790-43819 +43820-43838 +43839-43843 +43844 +43845 +43846-43856 +43857-43866 +43867-43873 +43874-43883 +43884-43894 +43895-43902 +43903-43919 +43920-43931 +43932-43949 +43950-43965 +43966-43981 +43982-44001 +44002-44024 +44025-44030 +44031-44056 +44057-44077 +44078-44097 +44098-44109 +44110-44116 +44117 +44118 +44119-44122 +44123-44133 +44134-44147 +44148-44160 +44161-44172 +44173-44183 +44184-44192 +44193-44200 +44201-44210 +44211-44225 +44226-44238 +44239-44251 +44252-44265 +44266-44280 +44281-44297 +44298-44305 +44306-44323 +44324-44344 +44345 +44346 +44347-44373 +44374-44401 +44402-44429 +44430-44450 +44451-44469 +44470-44479 +44480-44510 +44511 +44512 +44513-44514 +44515-44517 +44518-44519 +44520-44521 +44522-44523 +44524 +44525-44541 +44542-44561 +44562-44580 +44581-44609 +44610-44639 +44640-44660 +44661-44692 +44693-44710 +44711-44732 +44733-44769 +44770-44813 +44814-44835 +44836-44850 +44851-44872 +44873-44901 +44902-44925 +44926-44947 +44948-44973 +44974-44988 +44989-45008 +45009-45029 +45030-45050 +45051-45067 +45068-45083 +45084-45112 +45113-45132 +45133-45152 +45153-45178 +45179-45199 +45200-45222 +45223-45245 +45246-45264 +45265-45279 +45280-45306 +45307-45330 +45331-45355 +45356-45363 +45364-45370 +45371 +45372 +45373-45380 +45381-45394 +45395-45418 +45419-45449 +45450-45479 +45480-45511 +45512-45539 +45540-45561 +45562-45590 +45591-45618 +45619-45639 +45640-45662 +45663-45687 +45688-45701 +45702-45713 +45714-45719 +45720-45735 +45736-45744 +45745-45749 +45750-45756 +45757-45761 +45762-45770 +45771-45774 +45775 +45776-45777 +45778-45780 +45781-45786 +45787-45790 +45791-45793 +45794 +45795 +45796 +45797 +45798 +45799-45800 +45801-45807 +45808-45814 +45815-45821 +45822-45833 +45834-45848 +45849-45857 +45858-45879 +45880-45896 +45897-45914 +45915-45921 +45922-45944 +45945-45969 +45970-45987 +45988-46013 +46014-46030 +46031-46054 +46055-46085 +46086-46113 +46114-46141 +46142-46165 +46166-46197 +46198-46227 +46228-46254 +46255-46282 +46283-46299 +46300-46317 +46318-46338 +46339-46363 +46364-46385 +46386-46410 +46411-46432 +46433-46458 +46459-46481 +46482-46501 +46502-46528 +46529-46552 +46553-46579 +46580-46605 +46606-46628 +46629-46658 +46659-46684 +46685-46713 +46714-46736 +46737-46756 +46757-46780 +46781-46802 +46803-46824 +46825-46838 +46839-46863 +46864-46881 +46882-46899 +46900-46915 +46916-46949 +46950-46982 +46983-47010 +47011-47037 +47038-47063 +47064-47090 +47091-47116 +47117-47146 +47147-47166 +47167-47171 +47172 +47173-47183 +47184-47198 +47199-47215 +47216-47245 +47246-47270 +47271-47298 +47299-47329 +47330-47354 +47355-47389 +47390-47426 +47427-47453 +47454-47486 +47487-47512 +47513-47538 +47539-47570 +47571-47605 +47606-47638 +47639-47662 +47663-47689 +47690-47714 +47715-47744 +47745-47771 +47772-47787 +47788-47802 +47803-47827 +47828-47838 +47839-47867 +47868-47901 +47902-47931 +47932-47959 +47960-47992 +47993-48020 +48021-48051 +48052-48076 +48077-48097 +48098-48116 +48117-48147 +48148-48183 +48184-48210 +48211-48230 +48231-48248 +48249-48265 +48266-48281 +48282-48310 +48311-48335 +48336-48357 +48358-48385 +48386-48412 +48413-48443 +48444-48471 +48472-48498 +48499-48526 +48527-48556 +48557-48593 +48594-48620 +48621-48646 +48647-48676 +48677-48695 +48696-48725 +48726-48750 +48751-48780 +48781-48809 +48810-48832 +48833-48848 +48849-48876 +48877-48906 +48907-48941 +48942-48979 +48980-48996 +48997-49008 +49009-49013 +49014-49016 +49017 +49018 +49019-49025 +49026-49035 +49036-49047 +49048-49068 +49069-49074 +49075-49084 +49085-49100 +49101-49114 +49115-49134 +49135-49156 +49157-49184 +49185-49217 +49218-49248 +49249-49277 +49278-49314 +49315-49339 +49340-49365 +49366-49393 +49394-49418 +49419-49446 +49447-49466 +49467-49495 +49496-49521 +49522-49545 +49546-49571 +49572-49603 +49604-49628 +49629-49654 +49655-49675 +49676-49705 +49706-49735 +49736-49764 +49765-49788 +49789-49823 +49824-49861 +49862-49896 +49897-49930 +49931-49968 +49969-50001 +50002-50029 +50030-50050 +50051-50071 +50072-50105 +50106-50147 +50148-50169 +50170-50189 +50190-50208 +50209-50247 +50248-50281 +50282-50310 +50311-50339 +50340-50361 +50362-50389 +50390-50411 +50412-50425 +50426-50457 +50458-50472 +50473-50494 +50495-50510 +50511-50527 +50528-50539 +50540-50555 +50556-50572 +50573-50584 +50585-50597 +50598-50605 +50606-50618 +50619-50636 +50637-50651 +50652-50665 +50666-50682 +50683-50702 +50703-50721 +50722-50737 +50738-50757 +50758-50775 +50776-50788 +50789-50795 +50796-50807 +50808-50813 +50814 +50815-50833 +50834-50846 +50847-50860 +50861-50870 +50871-50879 +50880-50892 +50893-50908 +50909-50911 +50912-50920 +50921-50935 +50936-50947 +50948-50968 +50969-50987 +50988-51012 +51013-51036 +51037-51060 +51061-51081 +51082-51107 +51108-51131 +51132-51155 +51156-51173 +51174-51189 +51190-51208 +51209-51211 +51212-51214 +51215-51218 +51219-51221 +51222-51226 +51227-51228 +51229-51234 +51235-51241 +51242-51256 +51257-51271 +51272-51287 +51288-51301 +51302-51325 +51326-51344 +51345-51358 +51359-51373 +51374-51396 +51397-51421 +51422-51449 +51450-51473 +51474-51498 +51499-51522 +51523-51537 +51538-51540 +51541-51550 +51551-51561 +51562-51574 +51575-51585 +51586-51591 +51592-51604 +51605-51621 +51622-51640 +51641-51657 +51658-51673 +51674-51685 +51686-51695 +51696-51704 +51705-51714 +51715-51725 +51726-51734 +51735-51745 +51746-51753 +51754-51768 +51769-51782 +51783-51796 +51797-51801 +51802-51808 +51809-51815 +51816-51828 +51829-51834 +51835-51845 +51846-51855 +51856-51864 +51865-51869 +51870-51873 +51874 +51875-51895 +51896-51911 +51912-51937 +51938-51950 +51951-51968 +51969-51990 +51991-52018 +52019-52044 +52045-52076 +52077-52109 +52110-52138 +52139-52165 +52166-52191 +52192-52225 +52226-52253 +52254-52284 +52285-52314 +52315-52341 +52342-52362 +52363-52388 +52389-52405 +52406-52423 +52424-52428 +52429 +52430 +52431 +52432-52434 +52435-52440 +52441-52449 +52450-52460 +52461-52478 +52479-52488 +52489-52518 +52519-52533 +52534-52555 +52556-52571 +52572-52601 +52602-52618 +52619 +52620-52638 +52639-52664 +52665-52684 +52685-52702 +52703-52718 +52719-52733 +52734-52749 +52750-52768 +52769 +52770-52788 +52789-52812 +52813-52829 +1-3 +4 +5 +6-8 +9 +10 +11 +12 +13 +14-15 +16-18 +19-20 +21 +22 +23-25 +26-27 +28-31 +32 +33-36 +37 +38-40 +41-42 +43-44 +45-47 +48 +49 +50 +51 +52-53 +54 +55-57 +58 +59 +60-61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78-80 +81 +82 +83 +84 +85-86 +87-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-157 +158 +159 +160-161 +162 +163 +164 +165 +166 +167 +168 +169 +170 +171 +172 +173 +174-176 +177 +178 +179 +180 +181 +182 +183 +184 +185-187 +188-190 +191-193 +194-196 +197 +198 +199 +200 +201 +202 +203 +204 +205 +206 +207 +208 +209 +210 +211 +212 +213 +214 +215 +216 +217 +218-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-253 +254-256 +257 +258-259 +260 +261 +262-265 +266 +268 +269 +270 +271 +272 +273 +274 +275 +276 +277 +278 +279 +280-282 +283-286 +287 +288 +289 +290 +291 +292 +293 +294-295 +296 +297-298 +299-300 +301 +302 +303 +304 +305-307 +308-309 +310 +311 +312 +313 +314 +315 +316 +317 +318 +319 +320 +321-323 +324-325 +326 +327 +328 +329 +330 +331 +332 +333 +334 +335 +336 +337 +338-340 +341 +342 +343-345 +346-347 +348-349 +350 +351 +352 +353 +354 +355 +356 +357 +358 +359 +360 +361 +362-364 +365 +366 +367 +368 +369 +370 +371 +372 +373 +374 +375 +376 +377 +378 +379 +380 +381-383 +384-387 +388 +389 +390 +391 +392 +393 +394 +395 +396 +397 +398 +399 +400 +401-405 +406 +407 +408 +409 +410 +411 +412 +413-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 +448 +449-451 +452-454 +455 +456-458 +459-461 +462 +463 +464 +465 +466 +467 +468 +469 +470 +471 +472 +473 +474 +475-476 +477-480 +481-482 +483 +484-486 +487-489 +490-492 +493 +494-496 +497-500 +501-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-533 +534-535 +536 +537 +538 +539 +540 +541 +542 +543 +544 +545 +546 +547 +548-551 +552-554 +555-556 +557 +558 +559 +560 +561 +562 +563 +564 +565 +566 +567 +568 +569 +570 +571 +572 +573 +574 +575 +576-578 +579-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-607 +608-610 +611-613 +614-615 +616-618 +619 +620 +621 +622 +623 +624 +625 +626 +627 +628 +629 +630 +631 +632-633 +634-635 +636-638 +639 +640 +641 +642 +643 +644 +645 +646-647 +648-650 +651-653 +654 +655 +656 +657 +658 +659 +660 +661 +662 +663 +664 +665 +666-668 +669-670 +671-672 +673 +674 +675 +676 +677 +678 +679 +680 +681-682 +683-686 +687 +688-689 +690-692 +693 +694 +695-698 +699-700 +701 +702-703 +704 +705 +706 +707-710 +711 +712-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-751 +752 +753 +754-755 +756 +757 +758 +759 +760 +761 +762 +763 +764 +765 +766 +767 +768 +769 +770-771 +772-774 +775-776 +777 +778 +779 +780 +781 +782 +783 +784 +785-787 +788-790 +791-792 +793 +794 +795 +796 +797 +798 +799 +800 +801 +802 +803 +804-806 +807-808 +809 +810 +811-814 +815 +816 +817 +818 +819 +820 +821 +822 +823 +824 +825-826 +827-828 +829-830 +831-833 +834 +835 +836 +837-841 +842-844 +845 +846 +847-849 +850 +851 +852 +853 +854 +855-856 +857 +858 +859 +860-861 +862 +863-865 +866 +867 +868 +869 +870 +871 +872 +873 +874 +875 +876 +877-879 +880-881 +882 +883 +884-886 +887-888 +889-892 +893 +894 +895 +896 +897 +898 +899-900 +901 +902 +903 +904 +905 +906 +907 +908 +909 +910 +911 +912 +913 +914-916 +917-918 +919 +920-921 +922 +923 +924 +925 +926 +927 +928 +929 +930 +931 +932 +933 +934-935 +936-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-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 +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-1041 +1042 +1043 +1044 +1045 +1046 +1047 +1048 +1049 +1050 +1051 +1052 +1053 +1054 +1055 +1056-1057 +1058-1060 +1061-1065 +1066 +1067 +1068 +1069 +1070 +1071 +1072 +1073 +1074 +1075-1079 +1080 +1081 +1082 +1083 +1084 +1085 +1086 +1087 +1088 +1089 +1090 +1091 +1092-1093 +1094-1095 +1096-1098 +1099-1100 +1101 +1102 +1103 +1104 +1105 +1106 +1107 +1108 +1109 +1110 +1111 +1112 +1113-1114 +1115 +1116 +1117-1121 +1122 +1123 +1124 +1125 +1126 +1127 +1128 +1129 +1130 +1131-1133 +1134 +1135-1136 +1137-1138 +1139-1142 +1143-1144 +1145 +1146 +1147 +1148 +1149 +1150 +1151 +1152 +1153-1155 +1156-1158 +1159 +1160 +1161 +1162 +1163 +1164 +1165 +1166 +1167 +1168 +1169 +1170 +1171-1172 +1173-1174 +1175-1177 +1178-1179 +1180-1181 +1182-1183 +1184 +1185 +1186 +1187 +1188 +1189 +1190 +1191 +1192 +1193-1195 +1196-1199 +1200 +1201 +1202 +1203 +1204 +1205 +1206 +1207 +1208 +1209 +1210 +1211 +1212-1215 +1216-1219 +1220 +1221 +1222 +1223 +1224 +1225 +1226 +1227 +1228 +1229 +1230 +1231-1233 +1234 +1235 +1236 +1237 +1238 +1239 +1240 +1241 +1242 +1243 +1244-1245 +1246-1247 +1248 +1249 +1250-1251 +1252-1255 +1256 +1257 +1258 +1259 +1260 +1261 +1262 +1263 +1264-1265 +1266-1267 +1268 +1269 +1270-1271 +1272-1275 +1276 +1277 +1278 +1279 +1280 +1281 +1282 +1283-1284 +1285-1286 +1287 +1288 +1289-1293 +1294 +1295-1296 +1297 +1298-1300 +1301-1303 +1304 +1305 +1306 +1307 +1308 +1309-1310 +1311 +1312 +1313 +1314 +1315 +1316 +1317 +1319 +1320 +1321 +1322 +1323 +1324-1325 +1326-1328 +1329-1332 +1333-1336 +1337 +1338 +1339 +1340 +1341 +1342 +1343-1344 +1345-1346 +1347 +1348-1350 +1351 +1352 +1353-1355 +1356-1357 +1358 +1359 +1360 +1361 +1362 +1363 +1364 +1365-1366 +1367-1368 +1369 +1370 +1371 +1372 +1373 +1374 +1375-1377 +1378-1380 +1381 +1382-1384 +1385 +1386 +1387-1389 +1390 +1391 +1392 +1393 +1394 +1395 +1396-1397 +1398 +1399 +1400 +1401-1404 +1405-1407 +1408-1410 +1411 +1412 +1413 +1414 +1415-1417 +1418-1419 +1420-1423 +1424 +1425 +1426 +1427 +1428 +1429 +1430 +1431-1432 +1433-1435 +1436 +1437-1440 +1441 +1442 +1443 +1444 +1445 +1446-1448 +1449 +1450 +1451 +1452 +1453-1455 +1456 +1457 +1458-1459 +1460-1462 +1463 +1464 +1465 +1466-1468 +1469-1470 +1471 +1472-1473 +1474 +1475 +1476 +1477-1478 +1479 +1480 +1481-1482 +1483 +1484 +1485 +1486 +1487-1489 +1490-1492 +1493 +1494 +1495 +1496 +1497 +1498 +1499 +1500 +1501 +1502-1505 +1506 +1507 +1508-1510 +1511 +1512 +1513-1516 +1517 +1518 +1519 +1520-1521 +1522 +1523 +1524 +1525-1526 +1527 +1528 +1529 +1530 +1531-1532 +1533 +1534 +1535 +1536 +1537-1538 +1539 +1540-1541 +1542 +1543 +1544 +1545 +1546 +1547 +1548 +1549 +1550 +1551-1554 +1555 +1556 +1557 +1558 +1559-1560 +1561-1563 +1564-1565 +1566-1567 +1568 +1569-1570 +1571 +1572-1573 +1574-1575 +1576 +1577-1578 +1579-1580 +1581 +1582 +1583 +1584 +1585-1586 +1587 +1588-1589 +1590 +1591-1594 +1595 +1596 +1597 +1598 +1599-1600 +1601-1602 +1603-1604 +1605 +1606 +1607-1608 +1609 +1610 +1611-1613 +1614-1615 +1616 +1617 +1618 +1619 +1620-1621 +1622 +1623 +1624 +1625 +1626 +1627 +1628 +1629 +1630 +1631-1634 +1635 +1636 +1637 +1638 +1639 +1640 +1641 +1642 +1643 +1644 +1645-1646 +1647-1648 +1649 +1650 +1651 +1652 +1653 +1654 +1655 +1656-1657 +1658 +1659 +1660 +1661 +1662 +1663 +1664-1666 +1667 +1668 +1669 +1670 +1671 +1672 +1673-1675 +1676 +1677 +1678-1680 +1681 +1682 +1683-1684 +1685 +1686 +1687-1688 +1689 +1690 +1691 +1692 +1693 +1694 +1695 +1696-1698 +1699-1701 +1702 +1703-1705 +1706 +1707-1709 +1710 +1711 +1712-1713 +1714 +1715-1717 +1718-1720 +1721 +1722 +1723-1724 +1725-1726 +1727-1728 +1729 +1730 +1731 +1732-1733 +1734 +1735-1737 +1738-1739 +1740-1742 +1743-1746 +1747 +1748 +1749 +1750-1752 +1753 +1754-1756 +1757-1759 +1760-1761 +1762-1763 +1764-1765 +1766-1767 +1768-1769 +1770-1772 +1773 +1774-1775 +1776-1778 +1779-1780 +1781-1783 +1784 +1785-1786 +1787 +1788-1789 +1790 +1791-1792 +1793-1794 +1795 +1796-1798 +1799 +1800-1801 +1802 +1803 +1804 +1805-1807 +1808-1810 +1811 +1812 +1813-1814 +1815-1816 +1817-1818 +1819 +1820-1822 +1823 +1824-1826 +1827 +1828-1829 +1830 +1831-1834 +1835-1836 +1837-1839 +1840-1842 +1843-1844 +1845-1847 +1848 +1849 +1850-1852 +1853 +1854-1856 +1857-1858 +1859-1861 +1862 +1863 +1864 +1865 +1866-1867 +1868-1870 +1871-1873 +1874-1876 +1877 +1878-1879 +1880-1882 +1883-1884 +1885-1886 +1887-1888 +1889-1891 +1892-1895 +1896 +1897-1899 +1900-1901 +1902-1903 +1904-1907 +1908-1909 +1910 +1911 +1912-1913 +1914-1915 +1916-1917 +1918 +1919-1921 +1922-1923 +1924-1926 +1927 +1928-1930 +1931 +1932-1933 +1934 +1935-1937 +1938-1941 +1942-1944 +1945-1946 +1947 +1948-1949 +1950-1952 +1953 +1954-1956 +1957-1958 +1959-1961 +1962-1963 +1964 +1965-1966 +1967 +1968 +1969-1971 +1972-1975 +1976-1978 +1979 +1980 +1981-1983 +1984-1985 +1986 +1987-1988 +1989-1990 +1991 +1992 +1993 +1994-1997 +1998 +1999-2005 +2006-2007 +2008 +2009 +2010-2011 +2012 +2013 +2014-2016 +2017-2018 +2019 +2020-2021 +2022-2023 +2024 +2025 +2026 +2027 +2028 +2029 +2030 +2031 +2032-2035 +2036 +2037-2041 +2042-2043 +2044 +2045 +2046 +2047 +2048 +2049-2051 +2052-2054 +2055-2057 +2058-2059 +2060-2061 +2062 +2063 +2064 +2065 +2066 +2067 +2068 +2069 +2070-2072 +2073 +2074-2076 +2077 +2078-2080 +2081-2083 +2084 +2085-2086 +2087-2088 +2089 +2090 +2091 +2092-2093 +2094-2096 +2097-2099 +2100 +2101 +2102-2103 +2104-2105 +2106-2108 +2109 +2110-2112 +2113 +2114 +2115 +2116-2118 +2119 +2120-2122 +2123-2124 +2125 +2126-2127 +2128 +2129 +2130 +2131 +2132-2135 +2136 +2137 +2138 +2139-2140 +2141 +2142 +2143 +2144 +2145-2147 +2148 +2149-2150 +2151 +2152-2153 +2154 +2155 +2156 +2157 +2158-2160 +2161 +2162-2163 +2164-2165 +2166 +2167-2168 +2169 +2170-2171 +2172 +2173 +2174-2175 +2176-2177 +2178-2180 +2181-2184 +2185-2186 +2187 +2188 +2189 +2190 +2191-2192 +2193 +2194 +2195-2196 +2197-2198 +2199-2200 +2201-2202 +2203-2204 +2205 +2206-2207 +2208 +2209-2211 +2212 +2213 +2214 +2215-2217 +2218 +2219 +2220 +2221-2222 +2223-2224 +2225-2227 +2228-2229 +2230-2231 +2232-2233 +2234-2236 +2237-2239 +2240-2241 +2242-2244 +2245-2246 +2247 +2248 +2249 +2250 +2251 +2252-2254 +2255-2257 +2258-2259 +2260-2265 +2266 +2267 +2268 +2269 +2270 +2271-2272 +2273 +2274-2275 +2276 +2277 +2278-2280 +2281-2282 +2283 +2284 +2285 +2286-2288 +2289 +2290 +2291 +2292 +2293 +2294 +2295 +2296 +2297 +2298 +2299-2300 +2301-2303 +2304-2305 +2306 +2307 +2308 +2309 +2310 +2311 +2312 +2313 +2314 +2315 +2316 +2317-2319 +2320 +2321 +2322 +2323-2324 +2325-2326 +2327-2328 +2329-2330 +2331 +2332 +2333 +2334 +2335 +2336-2338 +2339 +2340-2342 +2343 +2344 +2345 +2346-2348 +2349 +2350 +2351 +2352-2354 +2355 +2356 +2357-2358 +2359 +2360-2361 +2362-2363 +2364-2365 +2366-2367 +2368 +2369-2370 +2371-2373 +2374-2375 +2376 +2377-2379 +2380 +2381-2382 +2383 +2384 +2385 +2386 +2387 +2388 +2389-2393 +2394 +2395 +2396-2397 +2398-2399 +2400-2402 +2403-2405 +2406 +2407-2408 +2409 +2410 +2411 +2412 +2413 +2414 +2415 +2416 +2417-2418 +2419 +2420-2422 +2423-2424 +2425 +2426 +2427-2429 +2430-2433 +2434 +2435 +2436-2438 +2439 +2440-2442 +2443 +2444 +2445 +2446 +2447-2448 +2449-2451 +2452 +2453-2454 +2455 +2456-2458 +2459-2462 +2463-2465 +2466-2467 +2468 +2469-2470 +2471 +2472 +2473-2475 +2476-2477 +2478 +2479 +2480-2482 +2483 +2484-2485 +2486 +2487 +2488 +2489 +2490 +2491-2492 +2493 +2494 +2495-2497 +2498-2499 +2500 +2501 +2502 +2503 +2504 +2505-2507 +2508 +2509 +2510-2512 +2513 +2514 +2515 +2516 +2517 +2518-2520 +2521-2522 +2523 +2524 +2525 +2526 +2527-2528 +2529 +2530-2531 +2532 +2533-2535 +2536 +2537 +2538-2539 +2540 +2541-2543 +2544-2545 +2546 +2547 +2548-2549 +2550 +2551 +2552-2554 +2555 +2556 +2557 +2558-2560 +2561-2564 +2565-2567 +2568-2569 +2570-2572 +2573-2575 +2576 +2577-2578 +2579-2580 +2581 +2582-2583 +2584 +2585-2586 +2587-2589 +2590 +2591-2592 +2593 +2594-2595 +2596 +2597 +2598 +2599 +2600-2602 +2603 +2604 +2605-2607 +2608 +2609 +2610-2612 +2613-2615 +2616 +2617-2619 +2620 +2621-2622 +2623-2624 +2625-2627 +2628 +2629-2631 +2632-2633 +2634-2635 +2636 +2637-2638 +2639 +2640-2642 +2643 +2644 +2645 +2646 +2647-2649 +2650-2651 +2652 +2653-2654 +2655-2656 +2657-2660 +2661 +2662 +2663 +2664-2665 +2666 +2667-2668 +2669 +2670-2671 +2672-2674 +2675-2678 +2679-2681 +2682 +2683-2684 +2685-2686 +2687 +2688 +2689 +2690-2691 +2692-2693 +2694 +2695 +2696 +2697-2699 +2700 +2701 +2702 +2703-2704 +2705-2707 +2708-2709 +2710 +2711-2712 +2713 +2714-2715 +2716 +2717 +2718-2719 +2720 +2721-2722 +2723-2725 +2726 +2727 +2728 +2729 +2730 +2731 +2732-2734 +2735 +2736 +2737-2738 +2739 +2740-2741 +2742-2743 +2744-2745 +2746-2747 +2748 +2749 +2750-2751 +2752 +2753 +2754 +2755 +2756 +2757 +2758 +2759 +2760 +2761-2762 +2763 +2764-2765 +2766 +2767 +2768 +2769 +2770 +2772 +2773 +2774-2775 +2776-2779 +2780 +2781-2782 +2783 +2784 +2785-2787 +2788 +2789 +2790 +2791-2792 +2793-2794 +2795-2796 +2797 +2798 +2799 +2800 +2801-2802 +2803 +2804 +2805-2806 +2807-2808 +2809-2810 +2811 +2812 +2813-2815 +2816 +2817 +2818-2819 +2820 +2821-2823 +2824 +2825-2826 +2827 +2828 +2829-2831 +2832 +2833-2835 +2836 +2837-2838 +2839 +2840 +2841 +2842-2844 +2845-2846 +2847 +2848 +2849 +2850 +2851-2852 +2853-2854 +2855 +2856 +2857-2859 +2860-2862 +2863 +2864 +2865-2866 +2867 +2868 +2869 +2870-2871 +2872 +2873 +2874 +2875-2876 +2877 +2878-2880 +2881-2882 +2883-2885 +2886 +2887-2889 +2890 +2891-2892 +2893 +2894 +2895-2897 +2898-2900 +2901 +2902-2903 +2904 +2905 +2906 +2907 +2908 +2909 +2910-2911 +2912-2913 +2914-2915 +2916 +2917 +2918 +2919-2921 +2922 +2923 +2924-2925 +2926 +2927 +2928-2929 +2930-2932 +2933 +2934 +2935 +2936-2938 +2939-2940 +2941-2944 +2945-2948 +2949 +2950 +2951 +2952 +2953 +2954-2955 +2956-2957 +2958-2961 +2962-2964 +2965 +2966 +2967 +2968 +2969 +2970-2973 +2974 +2975-2976 +2977 +2978 +2979-2980 +2981 +2982-2983 +2984-2986 +2987 +2988 +2989 +2990 +2991-2993 +2994-2995 +2996-2997 +2998 +2999 +3000-3003 +3004-3006 +3007-3008 +3009-3010 +3011-3012 +3013 +3014 +3015 +3016 +3017-3018 +3019 +3020-3021 +3022 +3023 +3024-3026 +3027-3029 +3030 +3031-3033 +3034 +3035-3036 +3037-3039 +3040-3041 +3042 +3043-3044 +3045 +3046 +3047 +3048 +3049-3050 +3051-3053 +3054-3055 +3056 +3057-3058 +3059 +3060 +3061-3063 +3064-3066 +3067-3068 +3069 +3070 +3071-3072 +3073 +3074 +3075 +3076-3077 +3078 +3079 +3080 +3081 +3082-3084 +3085-3087 +3088 +3089-3091 +3092-3093 +3094 +3095-3096 +3097 +3098-3100 +3101-3104 +3105 +3106-3107 +3108 +3109 +3110 +3111-3114 +3115-3116 +3117 +3118 +3119-3120 +3121-3122 +3123 +3124-3126 +3127 +3128-3130 +3131-3132 +3133-3134 +3135-3136 +3137-3140 +3141-3143 +3144 +3145-3146 +3147-3149 +3150-3152 +3153-3155 +3156-3159 +3160 +3161 +3162-3163 +3164-3166 +3167 +3168-3170 +3171 +3172-3174 +3175-3176 +3177-3179 +3180 +3181 +3182 +3183 +3184-3185 +3186 +3187 +3188-3189 +3190-3192 +3193-3195 +3196 +3197 +3198 +3199-3201 +3202 +3203-3206 +3207 +3208-3211 +3212-3213 +3214-3215 +3216 +3217-3218 +3219 +3220-3222 +3223 +3224-3226 +3227 +3228 +3229-3230 +3231-3234 +3235 +3236-3237 +3238 +3239 +3240 +3241 +3242-3243 +3244 +3245 +3246-3248 +3249-3250 +3251 +3252-3253 +3254 +3255 +3256 +3257 +3258-3259 +3260 +3261 +3262 +3263 +3264-3267 +3268 +3269-3270 +3271-3273 +3274 +3275-3276 +3277 +3278-3279 +3280 +3281-3283 +3284-3286 +3287 +3288-3289 +3290-3291 +3292-3293 +3294 +3295-3297 +3298 +3299 +3300-3301 +3302 +3303-3304 +3305-3307 +3308-3310 +3311-3312 +3313 +3314 +3315-3318 +3319 +3320-3322 +3323-3324 +3325 +3326 +3327 +3328-3332 +3333-3336 +3337 +3338-3339 +3340 +3341 +3342 +3343 +3344-3346 +3347-3348 +3349 +3350-3351 +3352-3354 +3355 +3356 +3357 +3358-3360 +3361-3362 +3363 +3364-3366 +3367 +3368-3370 +3371-3373 +3374-3376 +3377 +3378 +3379-3381 +3382-3385 +3386 +3387-3389 +3390-3392 +3393 +3394-3397 +3398-3402 +3403-3406 +3407-3408 +3409-3411 +3412-3413 +3414 +3415-3416 +3417 +3418 +3419-3420 +3421-3423 +3424 +3425-3427 +3428-3430 +3431-3432 +3433-3435 +3436-3437 +3438-3440 +3441-3443 +3444 +3445 +3446-3448 +3449-3451 +3452 +3453 +3454-3457 +3458 +3459 +3460-3462 +3463 +3464 +3465-3467 +3468 +3469 +3470 +3471-3473 +3474-3476 +3477 +3478 +3479-3482 +3483 +3484 +3485 +3486-3487 +3488-3491 +3492 +3493 +3494 +3495 +3496-3498 +3499-3500 +3501 +3502-3505 +3506 +3507 +3508 +3509 +3510-3511 +3512-3514 +3515 +3516 +3517 +3518 +3519-3521 +3522-3524 +3525 +3526-3527 +3528-3529 +3530-3532 +3533-3535 +3536 +3537-3539 +3540-3541 +3542 +3543-3544 +3545 +3546-3547 +3548 +3549 +3550 +3551-3552 +3553-3554 +3555 +3556-3558 +3559 +3560 +3561-3564 +3565-3566 +3567-3570 +3571-3573 +3574 +3575-3576 +3577-3578 +3579-3582 +3583 +3584 +3585-3587 +3588-3589 +3590-3592 +3593 +3594-3595 +3596-3598 +3599-3600 +3601-3603 +3604-3605 +3606-3608 +3609 +3610-3611 +3612-3614 +3615-3617 +3618 +3619-3622 +3623 +3624-3625 +3626-3628 +3629 +3630-3632 +3633-3635 +3636-3637 +3638 +3639 +3640-3641 +3642-3643 +3644-3645 +3646-3648 +3649-3650 +3651 +3652 +3653 +3654-3656 +3657-3658 +3659-3661 +3662 +3663-3664 +3665-3667 +3668-3669 +3670-3672 +3673 +3674 +3675 +3676 +3677 +3678-3679 +3680-3682 +3683 +3684-3686 +3687 +3688 +3689 +3690 +3691 +3692-3693 +3694-3695 +3696-3698 +3699-3701 +3702 +3703 +3704 +3705-3707 +3708-3709 +3710 +3711 +3712-3714 +3715 +3716 +3717 +3718 +3719 +3720-3722 +3723 +3724 +3725 +3726 +3727 +3728 +3729 +3730 +3731 +3732 +3733 +3734 +3735 +3736-3738 +3739 +3740 +3741 +3742-3743 +3744 +3745 +3746 +3747 +3748 +3749-3751 +3752 +3753 +3754-3756 +3757-3758 +3759 +3760 +3761 +3762 +3763-3764 +3765 +3766 +3767 +3768-3771 +3772 +3773 +3774-3776 +3777-3778 +3779 +3780-3781 +3782 +3783-3786 +3787-3789 +3790-3792 +3793 +3794 +3795 +3796-3798 +3799 +3800-3801 +3802 +3803 +3804-3805 +3806 +3807-3808 +3809 +3810-3811 +3812 +3813 +3814 +3815 +3816 +3817 +3818 +3819-3820 +3821 +3822 +3823 +3824-3826 +3827-3829 +3830 +3831 +3832 +3833 +3834 +3835-3836 +3837 +3838-3839 +3840 +3841 +3842 +3843 +3844 +3845 +3846 +3847-3849 +3850 +3851 +3852 +3853 +3854 +3855-3857 +3858 +3859 +3860 +3861 +3862 +3863 +3864-3866 +3867 +3868-3869 +3870 +3871-3872 +3873 +3874 +3875 +3876 +3877 +3878 +3879 +3880 +3881-3884 +3885 +3886-3887 +3888 +3889-3891 +3892 +3894 +3895-3896 +3897-3898 +3899-3900 +3901-3902 +3903 +3904 +3905 +3906 +3907-3908 +3909 +3910 +3911 +3912-3913 +3914 +3915-3917 +3918 +3919-3920 +3921 +3922 +3923 +3924-3926 +3927 +3928-3930 +3931 +3932-3934 +3935-3937 +3938-3940 +3941 +3942-3943 +3944-3945 +3946-3948 +3949 +3950-3951 +3952 +3953 +3954-3956 +3957-3960 +3961 +3962 +3963-3966 +3967-3969 +3970-3972 +3973-3974 +3975-3976 +3977 +3978 +3979 +3980 +3981-3982 +3983 +3984 +3985-3986 +3987-3989 +3990-3991 +3992 +3993 +3994 +3995 +3996-3997 +3998 +3999-4001 +4002 +4003 +4004-4005 +4006 +4007 +4008 +4009-4011 +4012 +4013 +4014-4016 +4017-4019 +4020 +4021 +4022 +4023 +4024 +4025 +4026 +4027-4028 +4029 +4030 +4031 +4032-4033 +4034-4035 +4036 +4037 +4038-4040 +4041 +4042 +4043-4045 +4046-4048 +4049 +4050-4051 +4052-4053 +4054 +4055 +4056-4060 +4061-4062 +4063 +4064 +4065-4066 +4067 +4068-4071 +4072 +4073-4074 +4075-4078 +4079-4080 +4081-4083 +4084-4085 +4086 +4087 +4088 +4089-4091 +4092 +4093 +4094 +4095 +4096 +4097-4099 +4100-4102 +4103-4104 +4105 +4106 +4107 +4108-4111 +4112 +4113-4115 +4116-4117 +4118 +4119 +4120-4121 +4122-4123 +4124-4125 +4126-4127 +4128 +4129-4130 +4131-4132 +4133 +4134 +4135 +4136 +4137 +4138-4140 +4141-4143 +4144-4145 +4146 +4147-4148 +4149 +4150 +4151 +4152 +4153-4155 +4156-4157 +4158-4160 +4161-4162 +4163 +4164-4167 +4168 +4169 +4170-4172 +4173 +4174 +4175-4180 +4181 +4182-4183 +4184 +4185 +4186-4190 +4191-4193 +4194 +4195 +4196 +4197 +4198 +4199-4201 +4202 +4203 +4204 +4205 +4206 +4207 +4208 +4209-4211 +4212-4213 +4214 +4215 +4216 +4217 +4218 +4219 +4220 +4221-4222 +4223-4224 +4225 +4226 +4227-4230 +4231 +4232-4233 +4234-4236 +4237 +4238 +4239 +4240-4241 +4242 +4243 +4244 +4245-4247 +4248-4249 +4250 +4251 +4252-4253 +4254 +4255 +4256 +4257 +4258 +4259 +4260-4262 +4263-4265 +4266 +4267 +4268 +4269-4271 +4272 +4273 +4274-4276 +4277 +4278 +4279 +4280 +4281 +4282 +4283-4284 +4285 +4286 +4287 +4288-4290 +4291-4293 +4294 +4295 +4296-4298 +4299 +4300 +4301-4303 +4304-4305 +4306 +4307-4308 +4309 +4310 +4311 +4312 +4313 +4314 +4315 +4316 +4317-4318 +4319 +4320 +4321 +4322-4324 +4325-4327 +4328 +4329 +4330-4331 +4332 +4333 +4334 +4335-4336 +4337 +4338 +4339 +4340 +4341-4342 +4343 +4344 +4345-4346 +4347 +4348-4349 +4350 +4351-4352 +4353-4354 +4355 +4356 +4357 +4358 +4359 +4360 +4361 +4362 +4363 +4364-4366 +4367 +4368-4370 +4371 +4372-4373 +4374 +4375-4377 +4378 +4379-4381 +4382 +4383-4385 +4386 +4387 +4388 +4389-4390 +4391 +4392-4393 +4394-4396 +4397 +4398 +4399 +4400 +4401 +4402-4403 +4404 +4405-4406 +4407 +4408 +4409 +4410 +4411-4413 +4414 +4415 +4416-4417 +4418-4419 +4420-4421 +4422 +4423-4425 +4426-4428 +4429 +4430 +4431 +4432 +4433 +4434 +4435 +4436-4437 +4438 +4439 +4440 +4441-4443 +4444-4446 +4447 +4448 +4449-4450 +4451-4452 +4453 +4454-4457 +4459-4461 +4462 +4463-4464 +4465 +4466-4467 +4468 +4469 +4470 +4471 +4472 +4473-4475 +4476-4477 +4478-4479 +4480 +4481 +4482 +4483 +4484-4485 +4486-4487 +4488 +4489 +4490-4492 +4493-4495 +4496 +4497 +4498 +4499 +4500-4501 +4502-4503 +4504 +4505 +4506-4508 +4509 +4510 +4511 +4512-4514 +4515-4516 +4517-4518 +4519 +4520 +4521 +4522 +4523-4524 +4525 +4526 +4527-4529 +4530 +4531 +4532 +4533-4536 +4537-4539 +4540-4542 +4543-4544 +4545 +4546 +4547 +4548-4550 +4551-4553 +4554 +4555 +4556 +4557-4559 +4560 +4561 +4562 +4563 +4564-4565 +4566 +4567 +4568 +4569 +4570 +4571-4574 +4575 +4576 +4577 +4578 +4579 +4580 +4581-4583 +4584 +4585 +4586 +4587 +4588 +4589 +4590 +4591 +4592-4594 +4595 +4596 +4597 +4598 +4599 +4600 +4601 +4602 +4603-4605 +4606 +4607 +4608 +4609 +4610 +4611 +4612 +4613-4615 +4616-4617 +4618 +4619 +4620 +4621-4622 +4623-4624 +4625-4626 +4627 +4628-4630 +4631 +4632 +4633-4635 +4636 +4637-4638 +4639-4643 +4644 +4645 +4646 +4647 +4648-4650 +4651 +4652-4653 +4654 +4655-4658 +4659-4660 +4661-4664 +4665-4668 +4669-4672 +4673-4674 +4675-4677 +4678-4679 +4680-4683 +4684 +4685 +4686-4688 +4689-4690 +4691-4693 +4694-4695 +4696-4697 +4698-4700 +4701 +4702-4705 +4706-4707 +4708 +4709-4710 +4711 +4712 +4713-4714 +4715-4716 +4717-4719 +4720-4721 +4722-4726 +4727-4729 +4730 +4731-4733 +4734-4735 +4736-4738 +4739 +4740-4743 +4744-4745 +4746-4747 +4748-4750 +4751-4752 +4753-4755 +4756-4759 +4760-4761 +4762-4764 +4765-4766 +4767 +4768 +4769-4771 +4772 +4773 +4774-4775 +4776 +4777-4778 +4779-4781 +4782-4784 +4785-4787 +4788-4790 +4791-4793 +4794-4796 +4797-4799 +4800-4802 +4803-4804 +4805 +4806-4808 +4809 +4810-4811 +4812 +4813 +4814 +4815-4816 +4817 +4818 +4819-4820 +4821 +4822-4825 +4826 +4827-4828 +4829-4831 +4832-4833 +4834 +4835 +4836-4837 +4838 +4839 +4840 +4841 +4842-4843 +4844-4846 +4847-4848 +4849-4851 +4852 +4853-4855 +4856-4857 +4858 +4859-4861 +4862 +4863 +4864 +4865 +4866 +4867 +4868-4869 +4870 +4871-4873 +4874-4875 +4876-4878 +4879-4883 +4884 +4885-4887 +4888-4889 +4890-4892 +4893-4894 +4895-4897 +4898-4900 +4901-4902 +4903 +4904-4905 +4906 +4907 +4908-4909 +4910 +4911 +4912 +4913-4915 +4916-4918 +4919 +4920 +4921 +4922 +4923 +4924-4926 +4927-4928 +4929-4930 +4931-4932 +4933-4934 +4935-4936 +4937 +4938 +4939 +4940-4942 +4943-4945 +4946 +4947-4948 +4949-4950 +4951-4952 +4953-4954 +4955 +4956 +4957 +4958 +4959 +4960 +4961 +4962-4963 +4964-4965 +4966-4967 +4968-4969 +4970 +4971 +4972 +4973 +4974 +4975-4977 +4978 +4979-4980 +4981-4982 +4983-4984 +4985 +4986 +4987 +4988-4989 +4990 +4991 +4992 +4993 +4994 +4995 +4996-4998 +4999-5002 +5003 +5004-5005 +5006-5008 +5009-5010 +5011 +5012-5013 +5014-5015 +5016 +5017 +5018 +5019 +5020 +5021 +5022-5024 +5025-5029 +5030-5031 +5032 +5033 +5034 +5035 +5036-5037 +5038-5041 +5042 +5043 +5044 +5045-5047 +5048 +5049-5051 +5052-5053 +5054-5056 +5057 +5058-5060 +5061-5063 +5064 +5065-5067 +5068-5069 +5070-5072 +5073 +5074-5076 +5077-5082 +5083 +5084 +5085-5086 +5087-5088 +5089 +5090-5092 +5093-5094 +5095 +5096 +5097-5098 +5099-5101 +5102-5103 +5104-5105 +5106-5108 +5109-5110 +5111 +5112-5114 +5115-5116 +5117 +5118 +5119 +5120 +5121-5123 +5124 +5125 +5126-5128 +5129-5131 +5132-5134 +5135-5137 +5138-5141 +5142-5143 +5144-5145 +5146 +5147 +5148 +5149 +5150 +5151 +5152 +5153 +5154 +5155 +5156-5157 +5158-5163 +5164 +5165 +5166-5167 +5168 +5169 +5170 +5171 +5172 +5173-5178 +5179 +5180-5181 +5182 +5183 +5184 +5185 +5186 +5187 +5188 +5189-5190 +5191 +5192 +5193-5195 +5196-5197 +5198-5200 +5201-5206 +5207-5208 +5209-5211 +5212 +5213-5215 +5216 +5217-5221 +5222 +5223 +5224 +5225 +5226-5228 +5229-5230 +5231 +5232 +5233 +5234 +5235 +5236 +5237-5239 +5240 +5241 +5242-5243 +5244 +5245-5246 +5247-5248 +5249-5251 +5252 +5253-5254 +5255-5256 +5257-5259 +5260 +5261-5263 +5264-5265 +5266-5268 +5269 +5270-5272 +5273 +5274-5276 +5277 +5278-5281 +5282-5283 +5284 +5285 +5286 +5287-5288 +5289-5290 +5291-5292 +5293 +5294-5295 +5296-5297 +5298 +5299-5300 +5301-5302 +5303 +5304 +5305 +5306-5307 +5308 +5309 +5310 +5311 +5312 +5313-5314 +5315 +5316-5318 +5319 +5320-5321 +5322-5324 +5325-5326 +5327-5330 +5331-5334 +5335-5337 +5338-5342 +5343 +5344 +5345-5346 +5347 +5348-5350 +5351-5352 +5353 +5354-5355 +5356-5357 +5358 +5359 +5360-5362 +5363-5364 +5365 +5366 +5367-5368 +5369 +5370 +5371-5373 +5374 +5375 +5376 +5377-5378 +5379 +5380 +5381 +5382 +5383 +5384-5386 +5387 +5388 +5389 +5390-5391 +5392 +5393 +5394 +5395 +5396-5397 +5398-5399 +5400 +5401-5404 +5405 +5406-5407 +5408-5409 +5410-5411 +5412-5413 +5414 +5415-5416 +5417-5418 +5419 +5420-5421 +5422 +5423-5424 +5425-5426 +5427-5430 +5431-5432 +5433 +5434 +5435 +5436 +5437-5438 +5439 +5440-5442 +5443-5444 +5445 +5446 +5447 +5448 +5449-5450 +5451-5452 +5453 +5454-5455 +5456 +5457-5458 +5459-5461 +5462-5465 +5466 +5467 +5468 +5469 +5470-5473 +5474 +5475-5476 +5477-5479 +5480-5481 +5482 +5483 +5484-5485 +5486 +5487-5488 +5489-5490 +5491 +5492-5493 +5494 +5495-5496 +5497-5499 +5500 +5501 +5502 +5503 +5504 +5505 +5506-5508 +5509 +5510-5512 +5513-5515 +5516-5518 +5519-5520 +5521 +5522 +5523 +5524 +5525-5526 +5527 +5528-5529 +5530-5531 +5532 +5533-5534 +5535 +5536-5537 +5538 +5539-5540 +5541-5542 +5543-5544 +5545 +5546-5547 +5548-5551 +5552 +5553 +5554 +5555 +5556-5558 +5559 +5560 +5561 +5562-5563 +5564-5566 +5567-5570 +5571-5575 +5576-5578 +5579-5581 +5582 +5583 +5584-5585 +5586 +5587 +5588 +5589 +5590 +5591 +5592 +5593 +5594 +5595 +5596 +5597-5598 +5599-5600 +5601-5602 +5603 +5604-5606 +5607-5608 +5609 +5610-5612 +5613-5614 +5615 +5616-5617 +5618-5619 +5620 +5621-5623 +5624-5625 +5626 +5627-5628 +5629-5630 +5631 +5632 +5633 +5634-5635 +5636 +5637 +5638-5639 +5640-5641 +5642 +5643 +5644-5645 +5646-5647 +5648 +5649-5653 +5654-5655 +5656 +5657-5659 +5660-5661 +5662 +5663-5665 +5666-5667 +5668 +5669 +5670-5671 +5672-5673 +5674 +5675-5677 +5678-5679 +5680 +5681 +5682-5683 +5684 +5685 +5686 +5687-5689 +5690-5691 +5692 +5693 +5694 +5695-5696 +5697 +5698-5700 +5701-5702 +5703 +5704 +5705-5706 +5707-5708 +5709 +5710-5711 +5712 +5713-5714 +5715-5717 +5718-5719 +5720 +5721 +5722 +5723-5724 +5725 +5726-5728 +5729 +5730-5732 +5733-5734 +5735 +5736-5737 +5738 +5739-5740 +5741-5742 +5743-5744 +5745 +5746 +5747-5748 +5749-5752 +5753 +5754 +5755 +5756-5757 +5758-5762 +5763-5765 +5766 +5767-5768 +5769-5770 +5771-5772 +5773 +5774 +5775 +5776-5777 +5778-5780 +5781-5782 +5783 +5784 +5785 +5786-5788 +5789 +5790-5793 +5794 +5795-5796 +5797-5798 +5799 +5800 +5801 +5802 +5803-5804 +5805-5807 +5808-5809 +5810 +5811 +5812 +5813-5816 +5817-5819 +5820-5822 +5823-5824 +5825 +5826 +5827 +5828 +5829-5830 +5831 +5832 +5833 +5834 +5835 +5836-5837 +5838-5840 +5841 +5842 +5843-5845 +5846 +5847 +5848-5849 +5850 +5851-5852 +5853-5855 +5856 +5857 +5858 +5859 +5860-5863 +5864 +5865-5867 +5868-5869 +5870 +5871 +5872-5873 +5874 +5875 +5876 +5877 +5878 +5879-5880 +5881 +5882-5883 +5884-5886 +5887 +5888 +5889 +5890 +5891-5894 +5895 +5896-5898 +5899-5900 +5901 +5902 +5903-5904 +5905 +5906 +5907 +5908 +5909 +5910-5911 +5912 +5913-5914 +5915-5917 +5918 +5919 +5920 +5921 +5922-5923 +5924 +5925-5927 +5928-5929 +5930 +5931-5933 +5934-5936 +5937-5938 +5939 +5940 +5941 +5942 +5943 +5944-5946 +5947 +5948-5949 +5950 +5951 +5952 +5953 +5954 +5955-5956 +5957 +5958 +5959 +5960 +5961 +5962 +5963 +5964 +5965 +5966 +5967 +5968 +5969 +5970 +5971 +5972 +5973 +5974-5975 +5976-5977 +5978-5979 +5980 +5981 +5982 +5983 +5984 +5985 +5986-5987 +5988 +5989 +5990 +5991 +5992 +5993 +5994 +5997 +5998 +5999 +6000 +6001 +6002 +6003 +6004 +6005 +6007 +6008 +6009-6010 +6011-6012 +6013-6015 +6016 +6017 +6018 +6019 +6020 +6021 +6022 +6023 +6024 +6025 +6026 +6027 +6028 +6029 +6030-6031 +6032 +6033 +6034 +6035-6036 +6037-6038 +6039-6041 +6042 +6043 +6044 +6045 +6046 +6047 +6048 +6049 +6050 +6051-6052 +6053-6054 +6055-6059 +6060 +6061 +6062 +6063-6065 +6066 +6067 +6068-6070 +6071 +6072 +6073-6075 +6076 +6077 +6078-6079 +6080 +6081 +6082-6084 +6085 +6086 +6087-6088 +6089 +6090 +6091-6093 +6094 +6095 +6096 +6097 +6098 +6099 +6100 +6101 +6102-6104 +6105-6107 +6108-6109 +6110 +6111-6113 +6114-6115 +6116 +6117-6119 +6120-6121 +6122-6123 +6124 +6125 +6126 +6127 +6128 +6129 +6130-6131 +6132-6133 +6134-6136 +6137-6139 +6140-6141 +6142 +6143 +6144-6145 +6146 +6147-6148 +6149-6150 +6151-6152 +6153-6154 +6155-6156 +6157-6158 +6159 +6160 +6161 +6162-6163 +6164 +6165 +6166 +6167-6169 +6170-6171 +6172 +6173 +6174 +6175 +6176 +6177 +6178-6179 +6180 +6181-6182 +6183-6184 +6185-6188 +6189 +6190-6192 +6193-6194 +6195 +6196 +6197 +6198-6201 +6202 +6203 +6204 +6205 +6206 +6207 +6208 +6209-6211 +6212 +6213 +6214-6215 +6216 +6217 +6218 +6219-6220 +6221 +6222 +6223 +6224 +6225-6226 +6227-6229 +6230-6231 +6232-6233 +6234-6236 +6237-6238 +6239 +6240 +6241 +6242-6243 +6244 +6245-6246 +6247-6248 +6249-6251 +6252 +6253 +6254-6255 +6256 +6257 +6258-6259 +6260 +6261 +6262 +6263 +6264-6266 +6267 +6268 +6269 +6270 +6271 +6272-6273 +6274-6275 +6276 +6277 +6278 +6279 +6280-6282 +6283-6285 +6286-6288 +6289 +6290-6292 +6293 +6294 +6295 +6296 +6297-6299 +6300-6301 +6302 +6303 +6304-6306 +6307 +6308 +6309-6310 +6311 +6312-6313 +6314-6315 +6316-6317 +6318-6319 +6320 +6321 +6322 +6323-6324 +6325 +6326 +6327 +6328-6329 +6330-6334 +6335-6337 +6338-6339 +6340-6341 +6342-6344 +6345 +6346-6347 +6348-6349 +6350-6351 +6352 +6353-6354 +6355-6356 +6357-6358 +6359-6361 +6362 +6363-6364 +6365 +6366-6367 +6368-6369 +6370 +6371 +6372 +6373 +6374 +6375 +6376-6377 +6378-6380 +6381-6382 +6383-6387 +6388-6390 +6391-6393 +6394-6395 +6396 +6397-6398 +6399-6400 +6401-6402 +6403-6404 +6405 +6406 +6407-6408 +6409-6412 +6413-6415 +6416 +6417-6418 +6419-6420 +6421-6422 +6423-6425 +6426 +6427-6429 +6430 +6431-6432 +6433-6435 +6436 +6437 +6438-6439 +6440-6441 +6442-6444 +6445 +6446 +6447-6448 +6449-6450 +6451 +6452 +6453-6454 +6455 +6456-6458 +6459 +6460 +6461-6463 +6464-6466 +6467 +6468-6469 +6470 +6471 +6472 +6473-6474 +6475-6479 +6480-6481 +6482-6483 +6484-6485 +6486-6490 +6491 +6492 +6493 +6494 +6495 +6496 +6497 +6498 +6499 +6500-6502 +6503-6504 +6505-6506 +6507-6509 +6510-6513 +6514-6516 +6517-6519 +6520-6521 +6522 +6523-6525 +6526-6527 +6528-6531 +6532 +6533 +6534-6536 +6537-6539 +6540-6544 +6545-6548 +6549-6553 +6554-6555 +6556-6557 +6558-6561 +6562-6563 +6564 +6565-6567 +6568-6570 +6571-6574 +6575-6577 +6578-6581 +6582 +6583 +6584-6587 +6588-6589 +6590-6591 +6592-6594 +6595-6598 +6599-6603 +6604-6606 +6607-6608 +6609-6610 +6611-6612 +6613 +6614 +6615 +6616-6617 +6618-6619 +6620-6622 +6623 +6624-6626 +6627-6629 +6630 +6631 +6632-6634 +6635 +6636-6637 +6638 +6639-6640 +6641 +6642 +6643-6647 +6648 +6649 +6650 +6651 +6652-6654 +6655-6658 +6659-6661 +6662-6664 +6665-6667 +6668 +6669-6671 +6672 +6673-6675 +6676-6677 +6678-6680 +6681-6683 +6684 +6685 +6686 +6687 +6688-6690 +6691-6693 +6694 +6695-6697 +6698 +6699-6701 +6702 +6703 +6704 +6705-6706 +6707 +6708 +6709 +6710 +6711 +6712 +6713 +6714-6716 +6717-6718 +6719 +6720 +6721 +6722-6724 +6725 +6726 +6727-6730 +6731 +6732-6733 +6734 +6735-6737 +6738 +6739 +6740 +6741 +6742 +6743 +6744-6745 +6746 +6747 +6748 +6749-6750 +6751 +6752-6753 +6754-6756 +6757-6759 +6760-6763 +6764-6766 +6767-6769 +6770 +6771 +6772 +6773 +6774 +6775 +6776 +6777 +6778 +6779 +6780 +6781 +6782-6784 +6785-6787 +6788 +6789 +6790 +6791 +6792-6796 +6797 +6798-6800 +6801-6802 +6803-6804 +6805-6807 +6808 +6809 +6810-6813 +6814 +6815 +6816 +6817 +6818 +6819 +6820 +6821 +6822 +6823 +6824 +6825-6826 +6827-6828 +6829-6830 +6831 +6832 +6833-6834 +6835-6836 +6837-6839 +6840-6843 +6844-6846 +6847-6850 +6851-6854 +6855-6857 +6858-6860 +6861-6863 +6864-6866 +6867-6869 +6870-6872 +6873-6876 +6877-6878 +6879 +6880-6882 +6883 +6884-6885 +6886-6887 +6888 +6889 +6890-6891 +6892 +6893 +6894-6895 +6896-6899 +6900 +6901-6902 +6903-6906 +6907 +6908 +6909 +6910 +6911 +6912 +6913-6914 +6915-6916 +6917-6918 +6919 +6920-6922 +6923 +6924-6926 +6927 +6928-6930 +6931-6933 +6934-6936 +6937-6939 +6940 +6941-6943 +6944 +6945-6947 +6948-6949 +6950-6951 +6952 +6953 +6954 +6955 +6956 +6957 +6958-6960 +6961-6963 +6964-6965 +6966-6967 +6968 +6969 +6970 +6971 +6972-6973 +6974 +6975 +6976 +6977 +6978-6979 +6980 +6981-6982 +6983-6984 +6985 +6986-6988 +6989-6991 +6992-6994 +6995-6997 +6998-7000 +7001-7003 +7004 +7005 +7006 +7007-7008 +7009 +7010-7012 +7013-7014 +7015-7017 +7018 +7019-7020 +7021-7023 +7024-7026 +7027 +7028 +7029 +7030 +7031 +7032 +7033 +7034 +7035 +7036 +7037 +7038 +7039-7042 +7043-7044 +7045 +7046 +7047 +7048 +7049 +7050 +7051 +7052 +7053 +7054-7058 +7059-7061 +7062-7064 +7065 +7066 +7067 +7068 +7069 +7070 +7071 +7072 +7073 +7074 +7075 +7076 +7077 +7078 +7079-7080 +7081 +7082 +7083-7085 +7086 +7087 +7088 +7089 +7090 +7091 +7092 +7093 +7094 +7095 +7096 +7097 +7098 +7099 +7100 +7101 +7102-7104 +7105-7106 +7107-7108 +7109-7110 +7111 +7112 +7113 +7114 +7115 +7116 +7117 +7118 +7119 +7120 +7121 +7122 +7123 +7124 +7125 +7126-7127 +7128-7129 +7130-7131 +7132 +7133-7134 +7135 +7136 +7137 +7138 +7139 +7140 +7141 +7142 +7143 +7144 +7145 +7146-7147 +7148 +7149 +7150-7152 +7153-7154 +7155 +7156 +7157 +7158 +7159 +7160 +7161 +7162 +7163-7164 +7165 +7166 +7167-7170 +7171 +7172 +7173 +7174 +7175 +7176 +7177-7180 +7181 +7182-7184 +7185 +7186 +7187 +7188 +7189 +7190 +7191 +7192 +7193-7196 +7197-7199 +7200-7203 +7204 +7205 +7206 +7207 +7208 +7209 +7210 +7211 +7212 +7213 +7214 +7215 +7216 +7217-7218 +7219-7220 +7221 +7222 +7223 +7224 +7225-7227 +7228-7229 +7230 +7231 +7232 +7233 +7234 +7235 +7236 +7237-7238 +7239 +7240-7241 +7242-7244 +7245-7246 +7247 +7248 +7249 +7250 +7251 +7252 +7253-7254 +7255 +7256-7258 +7259 +7260-7262 +7263 +7264-7265 +7266-7269 +7270-7271 +7272 +7273-7275 +7276-7277 +7278-7279 +7280 +7281 +7282 +7283 +7284-7286 +7287 +7288-7291 +7292 +7293-7295 +7296-7297 +7298-7300 +7301-7305 +7306-7308 +7309 +7310-7312 +7313-7315 +7316-7319 +7320 +7321 +7322-7324 +7325-7326 +7327-7329 +7330-7332 +7333 +7334-7339 +7340-7341 +7342-7346 +7347-7351 +7352-7354 +7355 +7356 +7357 +7358 +7359 +7360 +7361 +7362-7363 +7364 +7365-7366 +7367-7370 +7371 +7372 +7373-7374 +7375-7376 +7378 +7379-7381 +7382-7384 +7385 +7386-7389 +7390 +7391-7394 +7395-7397 +7398-7400 +7401-7403 +7404 +7405 +7406 +7407 +7408 +7409-7410 +7411-7412 +7413 +7414-7415 +7416-7419 +7420-7421 +7422 +7423-7424 +7425 +7426 +7427-7429 +7430-7433 +7434 +7435-7437 +7438-7440 +7441-7443 +7444 +7445-7446 +7447-7449 +7450-7452 +7453 +7454-7456 +7457-7460 +7461-7463 +7464-7465 +7466 +7467 +7468 +7469-7470 +7471-7472 +7473 +7474 +7475-7477 +7478 +7479 +7480-7483 +7484-7485 +7486 +7487 +7488 +7489-7490 +7491 +7492 +7493 +7494 +7495 +7496 +7497 +7498 +7499 +7500 +7501-7502 +7503 +7504-7505 +7506 +7507-7508 +7509-7511 +7512-7515 +7516 +7517 +7518 +7519 +7520 +7521-7522 +7523-7524 +7525-7527 +7528-7530 +7531-7532 +7533-7534 +7535 +7536 +7537 +7538 +7539 +7540 +7541 +7542 +7543 +7544 +7545 +7546 +7547 +7548 +7549 +7550 +7551-7552 +7553 +7554 +7555 +7556-7558 +7559-7561 +7562-7563 +7564 +7565 +7566 +7567 +7568 +7569 +7570 +7571 +7572 +7573 +7574 +7575 +7576 +7577 +7578 +7579 +7580 +7581 +7582 +7583-7584 +7585-7587 +7588-7589 +7590-7592 +7593-7594 +7595 +7596 +7597 +7598 +7599 +7600 +7601 +7602 +7603 +7604 +7605-7606 +7607 +7608 +7609 +7610-7612 +7613-7614 +7615 +7616 +7617 +7618 +7619 +7620 +7621 +7622 +7623 +7624 +7625-7627 +7628 +7629 +7630 +7631 +7632 +7633 +7634 +7635 +7636 +7637-7638 +7639 +7640-7642 +7643 +7644-7646 +7647 +7648 +7649 +7650-7651 +7652 +7653-7654 +7655 +7656 +7657 +7658-7661 +7662 +7663 +7664 +7665-7666 +7667 +7668-7669 +7670 +7671 +7672 +7673-7674 +7675 +7676 +7677 +7678-7680 +7681 +7682 +7683 +7684 +7685 +7686 +7687 +7688 +7689 +7690 +7691 +7692 +7693-7694 +7695 +7696 +7697 +7698 +7699-7703 +7704-7705 +7706 +7707 +7708-7709 +7710 +7711-7712 +7713 +7714 +7715-7717 +7718 +7719 +7720 +7721-7723 +7724-7726 +7727-7728 +7729-7731 +7732 +7733-7734 +7735-7737 +7738-7740 +7741-7742 +7743-7744 +7745 +7746-7747 +7748-7752 +7753-7755 +7756 +7757-7759 +7760-7762 +7763-7765 +7766 +7767-7769 +7770-7771 +7772-7773 +7774-7775 +7776 +7777-7778 +7779 +7780-7782 +7783-7784 +7785 +7786-7787 +7788 +7789-7790 +7791-7792 +7793 +7794 +7795 +7796-7798 +7799-7800 +7801 +7802-7803 +7804 +7805-7807 +7808-7809 +7810 +7811 +7812 +7813-7815 +7816-7817 +7818 +7819-7820 +7821 +7822-7824 +7825-7826 +7827 +7828 +7829 +7830-7832 +7833-7834 +7835 +7836 +7837 +7838-7840 +7841-7842 +7843 +7844-7845 +7846 +7847-7849 +7850-7851 +7852 +7853 +7854 +7855 +7856-7859 +7860-7863 +7864-7865 +7866-7870 +7871-7872 +7873-7875 +7876-7877 +7878-7880 +7881-7882 +7883 +7884 +7885-7887 +7888-7891 +7892-7895 +7896-7899 +7900-7901 +7902-7904 +7905-7906 +7907 +7908 +7909 +7910-7911 +7912 +7913 +7914 +7915-7916 +7917 +7918 +7919-7920 +7921-7922 +7923 +7924 +7925-7926 +7927 +7928-7929 +7930 +7931-7932 +7933-7935 +7936-7939 +7940-7942 +7943-7944 +7945 +7946-7947 +7948-7950 +7951-7953 +7954 +7955-7956 +7957 +7958-7959 +7960 +7961-7962 +7963-7965 +7966-7968 +7969 +7970 +7971 +7972 +7973 +7974-7976 +7977-7979 +7980-7982 +7983 +7984-7986 +7987-7988 +7989-7991 +7992 +7993-7994 +7995-7997 +7998-7999 +8000-8002 +8003-8004 +8005-8006 +8007-8009 +8010-8011 +8012-8013 +8014-8015 +8016-8019 +8020-8021 +8022 +8023 +8024 +8025-8027 +8028-8029 +8030-8031 +8032 +8033 +8034 +8035 +8036 +8037 +8038 +8039-8041 +8042 +8043 +8044 +8045 +8046 +8047-8048 +8049-8050 +8051 +8052-8053 +8054-8057 +8058-8059 +8060 +8061 +8062 +8063 +8064 +8065 +8066 +8067 +8068 +8069 +8070-8072 +8073-8075 +8076-8078 +8079 +8080 +8081-8082 +8083-8085 +8086 +8087-8088 +8089-8090 +8091 +8092-8093 +8094 +8095 +8096 +8097 +8098-8099 +8100 +8101 +8102-8103 +8104-8105 +8106-8107 +8108-8110 +8111 +8112 +8113-8114 +8115 +8116-8119 +8120 +8121-8122 +8123 +8124 +8125-8127 +8128 +8129-8131 +8132 +8133 +8134 +8135 +8136 +8137 +8138 +8139 +8140 +8141 +8142-8144 +8145-8146 +8147-8148 +8149-8151 +8152-8154 +8155 +8156 +8157 +8158 +8159-8161 +8162-8165 +8166-8167 +8168 +8169 +8170 +8171-8172 +8173 +8174-8175 +8176-8179 +8180-8182 +8183-8184 +8185 +8186 +8187 +8188 +8189 +8190 +8191 +8192 +8193 +8194 +8195 +8196 +8197 +8198 +8199-8201 +8202-8203 +8204-8206 +8207 +8208 +8209 +8210 +8211 +8212 +8213 +8214 +8215-8216 +8217 +8218-8219 +8220 +8221 +8222-8223 +8224-8225 +8226-8227 +8228-8231 +8232-8233 +8234-8236 +8237-8238 +8239-8240 +8241 +8242-8243 +8244-8245 +8246-8247 +8248 +8249-8250 +8251 +8252 +8253-8255 +8256 +8257-8258 +8259-8260 +8261-8262 +8263 +8264 +8265 +8266-8267 +8268 +8269 +8270-8272 +8273-8274 +8275-8276 +8277 +8278 +8279-8281 +8282 +8283-8286 +8287 +8288 +8289-8291 +8292 +8293-8294 +8295-8296 +8297-8298 +8299 +8300 +8301 +8302-8303 +8304 +8305 +8306-8308 +8309-8312 +8313-8314 +8315 +8316-8319 +8320-8321 +8322-8323 +8324 +8325-8326 +8327-8328 +8329-8330 +8331 +8332-8333 +8334-8335 +8336 +8337-8340 +8341-8342 +8343-8346 +8347-8348 +8349-8350 +8351-8353 +8354-8357 +8358-8361 +8362 +8363-8365 +8366-8367 +8368-8369 +8370-8371 +8372 +8373 +8374-8375 +8376-8377 +8378 +8379-8380 +8381-8383 +8384-8385 +8386 +8387-8389 +8390-8391 +8392-8393 +8394-8395 +8396-8397 +8398-8399 +8400 +8401-8402 +8403-8404 +8405-8407 +8408-8409 +8410-8412 +8413-8415 +8416-8417 +8418 +8419 +8420-8422 +8423 +8424-8426 +8427 +8428-8430 +8431 +8432 +8433-8434 +8435-8437 +8438-8440 +8441 +8442 +8443-8444 +8445-8447 +8448-8450 +8451 +8452-8453 +8454 +8455-8456 +8457-8459 +8460-8461 +8462-8464 +8465-8466 +8467-8469 +8470-8471 +8472-8474 +8475-8476 +8477-8479 +8480-8481 +8482-8484 +8485-8486 +8487 +8488 +8489-8491 +8492 +8493 +8494 +8495-8496 +8497 +8498-8499 +8500 +8501 +8502-8503 +8504 +8505-8506 +8507-8508 +8509-8510 +8511 +8512-8513 +8514-8518 +8519-8521 +8522-8523 +8524-8526 +8527-8528 +8529 +8530-8531 +8532 +8533-8535 +8536-8537 +8538 +8539-8542 +8543 +8544 +8545-8548 +8549 +8550 +8551 +8552 +8554 +8555 +8556 +8557 +8558 +8559 +8560 +8561 +8562 +8563-8564 +8565-8566 +8567-8568 +8569 +8570-8572 +8573-8575 +8576 +8577-8578 +8579 +8580-8582 +8583-8586 +8587-8590 +8591 +8592-8594 +8595 +8596 +8597 +8598 +8599 +8600 +8601 +8602 +8603 +8604 +8605-8606 +8607 +8608-8609 +8610-8612 +8613 +8614 +8615 +8616 +8617-8618 +8619-8622 +8623-8626 +8627 +8628 +8629-8630 +8631 +8632 +8633-8634 +8635 +8636 +8637-8641 +8642 +8643 +8644 +8645 +8646-8647 +8648 +8649 +8650-8652 +8653 +8654 +8655 +8656 +8657 +8658 +8659 +8660-8662 +8663 +8664 +8665 +8666 +8667 +8668 +8669 +8670-8671 +8672 +8673-8678 +8679-8681 +8682 +8683 +8684 +8685-8686 +8687 +8688-8689 +8690 +8691-8692 +8693 +8694-8696 +8697 +8698-8699 +8700-8701 +8702 +8703 +8704 +8705 +8706 +8707 +8708 +8709 +8710-8713 +8714-8717 +8718-8720 +8721-8722 +8723 +8724 +8725 +8726 +8727 +8728 +8729-8730 +8731 +8732-8734 +8735-8736 +8737-8738 +8739 +8740-8742 +8743-8745 +8746 +8747 +8748-8750 +8751 +8752-8753 +8754 +8755-8758 +8759 +8760-8762 +8763 +8764 +8765 +8766 +8767-8769 +8770-8773 +8774 +8775-8776 +8777 +8778-8779 +8780 +8781 +8782-8783 +8784-8787 +8788 +8789 +8790-8791 +8792-8793 +8794-8795 +8796-8797 +8798 +8799-8800 +8801-8803 +8804-8806 +8807-8809 +8810 +8811-8813 +8814-8815 +8816-8819 +8820-8822 +8823 +8824-8826 +8827-8829 +8830-8831 +8832-8835 +8836 +8837 +8838 +8839-8840 +8841 +8842-8843 +8844-8847 +8848-8849 +8850-8851 +8852 +8853-8855 +8856-8857 +8858-8859 +8860-8861 +8862-8863 +8864-8865 +8866-8868 +8869-8870 +8871-8872 +8873 +8874-8875 +8876-8878 +8879-8883 +8884-8885 +8886-8887 +8888-8889 +8890-8891 +8892-8896 +8897-8899 +8900-8902 +8903 +8904 +8905 +8906-8908 +8909 +8910-8912 +8913 +8914-8916 +8917-8919 +8920 +8921-8923 +8924 +8925 +8926 +8927 +8928-8929 +8930 +8931 +8932-8933 +8934-8935 +8936-8938 +8939-8940 +8941 +8942-8943 +8944-8945 +8946-8948 +8949-8950 +8951 +8952-8954 +8955-8956 +8957-8959 +8960-8961 +8962-8964 +8965 +8966-8967 +8968-8971 +8972 +8973-8975 +8976-8978 +8979-8980 +8981-8983 +8984-8985 +8986-8987 +8988 +8989-8990 +8991-8993 +8994-8998 +8999-9000 +9001-9004 +9005-9006 +9007-9009 +9010-9012 +9013-9014 +9015-9017 +9018-9019 +9020-9022 +9023-9024 +9025-9027 +9028-9029 +9030-9031 +9032-9033 +9034-9036 +9037 +9038-9040 +9041 +9042-9044 +9045-9046 +9047-9048 +9049-9053 +9054 +9055 +9056-9058 +9059 +9060-9062 +9063 +9064-9067 +9068 +9069-9071 +9072 +9073-9075 +9076 +9077-9079 +9080 +9081 +9082 +9083 +9084-9086 +9087 +9088-9089 +9090 +9091 +9092 +9093 +9094-9096 +9097 +9098-9100 +9101 +9102-9103 +9104-9105 +9106 +9107 +9108-9109 +9110-9112 +9113-9114 +9115-9116 +9117-9118 +9119-9120 +9121 +9122-9124 +9125-9126 +9127-9128 +9129 +9130 +9131 +9132 +9133-9134 +9135-9137 +9138-9139 +9140-9142 +9143-9144 +9145-9146 +9147-9149 +9150-9151 +9152-9153 +9154-9156 +9157-9159 +9160-9161 +9162 +9163 +9164 +9165 +9166 +9167-9169 +9170 +9171 +9172 +9173 +9174 +9175 +9176 +9177 +9178 +9179 +9180 +9181 +9182 +9183 +9184 +9185 +9186 +9187 +9188 +9189-9191 +9192 +9193 +9194 +9195 +9196 +9197 +9198 +9199 +9200-9202 +9203-9205 +9206 +9207 +9208 +9209-9210 +9211 +9212 +9213 +9214 +9215 +9216 +9217 +9218 +9219-9221 +9222 +9223 +9224-9226 +9227 +9228 +9229 +9230-9231 +9232-9234 +9235-9236 +9237-9238 +9239-9240 +9241 +9242-9244 +9245-9246 +9247-9248 +9249 +9250 +9251-9253 +9254-9255 +9256-9257 +9258 +9259-9260 +9261-9262 +9263-9264 +9265 +9266 +9267 +9268 +9269-9271 +9272 +9273-9274 +9275 +9276 +9277 +9278-9279 +9280 +9281-9283 +9284-9286 +9287-9289 +9290-9291 +9292 +9293 +9294-9295 +9296-9297 +9298 +9299 +9300-9302 +9303-9305 +9306-9308 +9309 +9310 +9311 +9312 +9313 +9314 +9315-9320 +9321 +9322 +9323 +9324 +9325 +9326-9329 +9330-9331 +9332-9333 +9334 +9335 +9336 +9337 +9338 +9339 +9340-9342 +9343 +9344 +9345 +9346 +9347-9348 +9349 +9350 +9351 +9352-9354 +9355-9357 +9358 +9359-9360 +9361-9365 +9366 +9367 +9368 +9369 +9370 +9371 +9372 +9373 +9374 +9375 +9376 +9377 +9378-9379 +9380-9382 +9383 +9384 +9385 +9386-9387 +9388 +9389 +9390 +9391-9392 +9393-9395 +9396-9398 +9399 +9400 +9401-9402 +9403 +9404 +9405-9407 +9408 +9409 +9410-9411 +9412 +9413-9414 +9415-9416 +9417-9421 +9422 +9423 +9424 +9425 +9426-9428 +9429 +9430-9431 +9432-9435 +9436-9437 +9438-9439 +9440-9443 +9444-9447 +9448-9449 +9450-9452 +9453-9454 +9455-9458 +9459 +9460 +9461-9463 +9464-9465 +9466-9468 +9469-9470 +9471-9472 +9473-9475 +9476 +9477-9480 +9481-9482 +9483 +9484-9485 +9486 +9487 +9488-9489 +9490-9491 +9492-9494 +9495-9496 +9497-9501 +9502-9504 +9505 +9506-9508 +9509-9510 +9511-9513 +9514 +9515-9518 +9519-9520 +9521-9522 +9523-9525 +9526-9527 +9528-9530 +9531-9534 +9535-9536 +9537-9539 +9540-9541 +9542-9544 +9545 +9546 +9547 +9548 +9549 +9550 +9551 +9552 +9553 +9554 +9555 +9556 +9557 +9558 +9559 +9560 +9561 +9562 +9563 +9564 +9565 +9566 +9567 +9568 +9569-9570 +9571-9572 +9573 +9574 +9575 +9576 +9577 +9578 +9579 +9580 +9581 +9582 +9583 +9584 +9585 +9586 +9587 +9588-9592 +9593-9594 +9595 +9596 +9597 +9598 +9599 +9600 +9601 +9602 +9603 +9604 +9605 +9606 +9607 +9608 +9609 +9610-9613 +9614-9617 +9618-9620 +9621 +9622 +9623 +9624 +9625 +9626 +9627 +9628 +9629 +9630 +9631 +9632 +9633 +9634-9637 +9638-9641 +9642 +9643 +9644 +9645 +9646 +9647 +9648 +9649 +9650 +9651 +9652 +9653 +9654 +9655 +9656-9657 +9658-9659 +9660-9661 +9662 +9663-9664 +9665 +9666 +9667 +9668 +9669 +9670 +9671-9672 +9673 +9674 +9675 +9676 +9677-9678 +9679 +9680-9681 +9682 +9683 +9684-9685 +9686-9687 +9688-9690 +9691-9692 +9693-9695 +9696-9698 +9699-9701 +9702-9704 +9705-9707 +9708-9710 +9711-9713 +9714 +9715 +9716-9718 +9719-9720 +9721 +9722-9724 +9725-9727 +9728 +9729-9730 +9731-9732 +9733 +9734-9735 +9736-9737 +9738 +9739 +9740-9741 +9742 +9743-9744 +9745 +9746 +9747-9748 +9749-9750 +9751-9752 +9753-9754 +9755-9757 +9758 +9759 +9760-9761 +9762 +9763-9765 +9766-9767 +9768 +9769 +9770-9772 +9773 +9774 +9775-9776 +9777-9778 +9779-9780 +9781-9782 +9783-9785 +9786 +9787 +9788-9790 +9791-9792 +9793-9795 +9796-9797 +9798 +9799 +9800-9801 +9802 +9803 +9804-9805 +9806 +9807-9809 +9810-9812 +9813-9814 +9815 +9816-9817 +9818 +9819-9821 +9822-9823 +9824-9825 +9826 +9827-9829 +9830-9831 +9832 +9833 +9834-9837 +9838 +9839 +9840-9842 +9843 +9844 +9845 +9846 +9847 +9848 +9849-9850 +9851-9852 +9853-9854 +9855-9856 +9857-9859 +9860 +9861 +9862 +9863-9867 +9868-9870 +9871 +9872 +9873-9875 +9876 +9877 +9878-9879 +9880 +9881 +9882 +9883 +9884 +9885 +9886 +9887 +9888-9890 +9891 +9892-9893 +9894 +9895 +9896-9898 +9899 +9900 +9901 +9902 +9903 +9904 +9905 +9906 +9907 +9908-9909 +9910-9912 +9913-9914 +9915 +9916 +9917 +9918 +9919 +9920 +9921 +9922-9924 +9925-9926 +9927 +9928 +9929 +9930 +9931 +9932-9934 +9935 +9936 +9937 +9938 +9939 +9940-9941 +9942 +9943 +9944 +9945 +9946 +9947 +9948 +9949 +9950-9951 +9952-9953 +9954-9955 +9956-9957 +9958-9960 +9961 +9962 +9963-9966 +9967 +9968 +9969 +9970 +9971-9972 +9973-9974 +9975 +9976 +9977 +9978 +9979 +9980 +9981 +9982 +9983 +9984 +9985 +9986-9989 +9990-9991 +9992 +9993 +9994 +9995 +9996 +9997 +9998 +9999 +10000 +10001-10002 +10003-10004 +10005-10006 +10007-10008 +10009-10011 +10012 +10013 +10014 +10015 +10016 +10017-10020 +10021-10022 +10023 +10024 +10025 +10026 +10027-10028 +10029-10030 +10031 +10032 +10033 +10034 +10035 +10036-10039 +10040-10041 +10042 +10043 +10044 +10045 +10046 +10047-10049 +10050-10051 +10052 +10053-10055 +10056 +10057 +10058-10060 +10061-10062 +10063 +10064 +10065 +10066-10068 +10069-10070 +10071-10072 +10073 +10074 +10075 +10076 +10077-10078 +10079-10080 +10081 +10082 +10083-10084 +10085 +10086 +10087-10089 +10090-10091 +10092 +10093 +10094-10096 +10097 +10098-10099 +10100 +10101-10102 +10103 +10104 +10105 +10106-10107 +10108 +10109 +10110-10112 +10113 +10114 +10115 +10116 +10117 +10118-10119 +10120 +10121 +10122-10126 +10127 +10128-10129 +10130 +10131-10132 +10133-10134 +10135 +10136 +10137-10138 +10139 +10140 +10141-10144 +10145-10146 +10147 +10148 +10149-10150 +10151-10152 +10153-10154 +10155-10156 +10157 +10158 +10159 +10160 +10161 +10162 +10163 +10164 +10165-10166 +10167-10168 +10169 +10170 +10171-10172 +10173 +10174-10175 +10176-10177 +10178 +10179 +10180-10183 +10184 +10185 +10186 +10187 +10188 +10189 +10190-10191 +10192 +10193 +10194-10195 +10196 +10197 +10198 +10199 +10200-10201 +10202 +10203-10204 +10205 +10206-10207 +10208-10209 +10210 +10211-10212 +10213 +10214 +10215 +10216-10217 +10218 +10219 +10220 +10221 +10222 +10223 +10224 +10225-10226 +10227 +10228 +10229 +10230-10231 +10232 +10233-10234 +10235-10236 +10237-10238 +10239 +10240 +10241 +10242-10243 +10244 +10245 +10246 +10247 +10248-10249 +10250-10251 +10252-10253 +10254-10255 +10256 +10257 +10258 +10259-10261 +10262-10263 +10264 +10265 +10266 +10267 +10268-10269 +10270-10272 +10273-10274 +10275 +10276-10277 +10278 +10279-10280 +10281-10282 +10283-10284 +10285-10287 +10288 +10289 +10290 +10291 +10292 +10293-10294 +10295-10296 +10297-10298 +10299 +10300 +10301 +10302 +10303 +10304 +10305-10306 +10307-10308 +10309-10310 +10311 +10312 +10313 +10314 +10315 +10316 +10317 +10318 +10319 +10320 +10321 +10322 +10323-10324 +10325-10326 +10327-10328 +10329-10330 +10331-10333 +10334 +10335 +10336 +10337 +10338 +10339 +10340 +10341 +10342 +10343-10345 +10346 +10347-10348 +10349-10350 +10351-10352 +10353-10354 +10355-10357 +10358 +10359 +10360 +10361 +10362 +10363 +10364 +10365-10368 +10369-10371 +10372 +10373 +10374 +10375-10376 +10377-10381 +10382 +10383 +10384 +10385 +10386-10387 +10388-10389 +10390-10391 +10392-10393 +10394-10396 +10397 +10398 +10399-10402 +10403 +10404 +10405 +10406 +10407-10408 +10409-10410 +10411-10412 +10413-10414 +10415-10417 +10418 +10419 +10420 +10421-10422 +10423 +10424 +10425 +10426-10427 +10428-10429 +10430 +10431 +10432-10437 +10438 +10439 +10440 +10441 +10442-10443 +10444-10445 +10446-10447 +10448-10449 +10450-10452 +10453 +10454 +10455-10456 +10457-10459 +10460 +10461 +10462-10463 +10464-10465 +10466-10467 +10468-10469 +10470 +10471 +10472 +10473-10475 +10476 +10477-10478 +10479-10480 +10481 +10482 +10483-10484 +10485 +10486-10487 +10488-10491 +10492-10494 +10495 +10496 +10497 +10498-10500 +10501-10502 +10503-10504 +10505-10506 +10507-10508 +10509-10511 +10512 +10513 +10514-10518 +10519-10521 +10522 +10523 +10524 +10525-10527 +10528 +10529-10530 +10531-10532 +10533-10534 +10535-10536 +10537-10539 +10540 +10541 +10542-10543 +10544-10546 +10547-10548 +10549-10551 +10552-10553 +10554-10555 +10556 +10557 +10558-10559 +10560-10561 +10562-10563 +10564-10566 +10567 +10568 +10569-10570 +10571 +10572 +10573 +10574-10575 +10576-10577 +10578 +10579-10581 +10582-10583 +10584 +10585 +10586 +10587-10588 +10589-10590 +10591-10592 +10593-10595 +10596 +10597 +10598-10599 +10600 +10601-10603 +10604 +10605-10606 +10607-10608 +10609-10610 +10611-10613 +10614 +10615 +10616-10617 +10618-10619 +10620 +10621 +10622 +10623-10624 +10625 +10626 +10627-10628 +10629 +10630-10631 +10632-10633 +10634-10635 +10636-10638 +10639 +10640 +10642-10643 +10644-10645 +10646 +10647 +10648 +10649-10651 +10652 +10653-10654 +10655-10656 +10657-10658 +10659-10661 +10662 +10663 +10664 +10665-10666 +10667-10668 +10669-10670 +10671-10673 +10674-10675 +10676 +10677-10679 +10680-10681 +10682 +10683-10684 +10685-10686 +10687-10688 +10689-10691 +10692 +10693 +10694-10695 +10696 +10697 +10698 +10699 +10700 +10701-10702 +10703-10704 +10705-10706 +10707-10709 +10710 +10711-10713 +10714-10715 +10716-10717 +10718 +10719-10722 +10723 +10724-10725 +10726 +10727-10728 +10729 +10730-10732 +10733-10735 +10736-10738 +10739-10740 +10741-10742 +10743-10745 +10746-10747 +10748-10750 +10751 +10752 +10753 +10754-10756 +10757 +10758-10759 +10760-10761 +10762 +10763 +10764-10765 +10766-10767 +10768-10769 +10770-10771 +10772-10773 +10774-10775 +10776 +10777-10778 +10779 +10780-10781 +10782 +10783-10786 +10787-10788 +10789 +10790-10791 +10792 +10793-10794 +10795 +10796 +10797-10798 +10799 +10800-10801 +10802-10804 +10805 +10806 +10807-10810 +10811-10812 +10813 +10814-10816 +10817-10820 +10821-10823 +10824-10825 +10826-10830 +10831 +10832 +10833 +10834-10835 +10836 +10837-10839 +10840 +10841 +10842 +10843 +10844-10846 +10847-10848 +10849-10850 +10851-10853 +10854-10855 +10856-10858 +10859 +10860 +10861-10862 +10863-10865 +10866-10867 +10868-10869 +10870-10871 +10872-10873 +10874-10876 +10877-10878 +10879-10880 +10881 +10882 +10883 +10884-10885 +10886-10887 +10888 +10889 +10890-10891 +10892-10894 +10895-10897 +10898 +10899 +10900-10901 +10902 +10903-10904 +10905-10907 +10908-10911 +10912 +10913-10915 +10916-10917 +10918 +10919-10921 +10922 +10923 +10924 +10925 +10926-10927 +10928-10929 +10930-10932 +10933-10934 +10935-10936 +10937-10939 +10940 +10941 +10942-10943 +10944 +10945-10947 +10948-10949 +10950 +10951-10952 +10953 +10954-10956 +10957-10958 +10959-10961 +10962-10963 +10964-10965 +10966-10968 +10969 +10970 +10971-10972 +10973 +10974 +10975-10976 +10977 +10978 +10979-10980 +10981-10982 +10983 +10984 +10985-10986 +10987 +10988-10989 +10990 +10991 +10992-10993 +10994-10995 +10996 +10997 +10998-10999 +11000 +11001-11004 +11005 +11006 +11007 +11008-11009 +11010-11011 +11012 +11013 +11014-11015 +11016 +11017-11020 +11021 +11022 +11023 +11024-11025 +11026-11027 +11028 +11029 +11030-11033 +11034 +11035 +11036 +11037-11038 +11039-11040 +11041 +11042 +11043 +11044 +11045-11046 +11047-11048 +11049 +11050 +11051-11052 +11053-11054 +11055-11057 +11058-11059 +11060-11062 +11063-11066 +11067 +11068-11069 +11070 +11071 +11072 +11073 +11074-11075 +11076-11077 +11078-11079 +11080-11082 +11083-11086 +11087 +11088 +11089-11090 +11091 +11092 +11093 +11094-11095 +11096-11099 +11100 +11101 +11102 +11103-11105 +11106-11110 +11111-11112 +11113 +11114 +11115 +11116 +11117-11118 +11119-11121 +11122-11123 +11124-11125 +11126 +11127-11129 +11130-11131 +11132 +11133 +11134-11135 +11136-11137 +11138 +11139-11140 +11141-11142 +11143 +11144-11145 +11146-11147 +11148 +11149-11151 +11152-11153 +11154 +11155-11159 +11160 +11161-11164 +11165 +11166-11167 +11168 +11169 +11170 +11171-11172 +11173-11174 +11175 +11176 +11177-11178 +11179 +11180 +11181-11182 +11183-11184 +11185-11186 +11187 +11188 +11189 +11190 +11191-11192 +11193-11195 +11196 +11197-11199 +11200-11202 +11203-11205 +11206-11207 +11208 +11209 +11210 +11211 +11212 +11213 +11214 +11215 +11216 +11217-11219 +11220-11222 +11223-11225 +11226 +11227 +11228 +11229 +11230 +11231 +11232 +11233-11234 +11235-11237 +11238 +11239 +11240-11241 +11242 +11243 +11244 +11245 +11246-11248 +11249-11250 +11251-11252 +11253-11254 +11255 +11256-11257 +11258-11260 +11261 +11262 +11263-11264 +11265 +11266 +11267 +11268 +11269-11270 +11271-11272 +11273-11274 +11275-11276 +11277-11279 +11280-11282 +11283-11285 +11286 +11287 +11288 +11289-11290 +11291 +11292 +11293-11294 +11295-11296 +11297 +11298 +11299-11300 +11301-11303 +11304-11306 +11307 +11308-11310 +11311-11312 +11313-11316 +11317-11319 +11320-11321 +11322-11325 +11326-11330 +11331-11334 +11335-11338 +11339-11345 +11346-11352 +11353 +11354 +11355-11357 +11358 +11359 +11360 +11361-11362 +11363-11366 +11367-11369 +11370 +11371 +11372-11373 +11374 +11375 +11376 +11377 +11378 +11379-11380 +11381-11382 +11383 +11384 +11385 +11386 +11387 +11388-11389 +11390-11393 +11394-11397 +11398 +11399-11400 +11401-11402 +11403 +11404-11405 +11406 +11407-11410 +11411 +11412 +11413 +11414-11416 +11417-11418 +11419 +11420 +11421 +11422-11423 +11424 +11425 +11426 +11427 +11428 +11429 +11430 +11431 +11432 +11433 +11434-11435 +11436 +11437 +11438 +11439 +11440 +11441 +11442 +11443 +11444 +11445-11446 +11447-11448 +11449 +11450 +11451 +11452 +11453 +11454-11456 +11457 +11458-11459 +11460-11461 +11462-11464 +11465 +11466 +11467 +11468 +11469 +11470 +11471 +11472 +11473-11474 +11475-11476 +11477-11479 +11480 +11481 +11482 +11483 +11484 +11485 +11486-11487 +11488 +11489 +11490-11492 +11493 +11494 +11495-11497 +11498 +11499 +11500 +11501 +11502 +11503-11505 +11506 +11507-11509 +11510 +11511-11513 +11514-11515 +11516 +11517 +11518 +11519 +11520 +11521 +11522 +11523 +11524 +11525 +11526-11527 +11528 +11529-11531 +11532 +11533-11534 +11535-11536 +11537 +11538 +11539 +11540 +11541 +11542-11543 +11544 +11545 +11546-11547 +11548-11549 +11550 +11551 +11552 +11553 +11554 +11555-11556 +11557 +11558 +11559 +11560 +11561 +11562 +11563-11564 +11565-11566 +11567-11568 +11569 +11570 +11571 +11572 +11573 +11574 +11575 +11576 +11577 +11578-11579 +11580-11581 +11582 +11583 +11584 +11585 +11586 +11587 +11588 +11589 +11590-11591 +11592-11593 +11594 +11595 +11596 +11597 +11598 +11599 +11600 +11601 +11602-11603 +11604-11605 +11606-11607 +11608 +11609 +11610 +11611 +11612 +11613 +11614 +11615-11616 +11617-11618 +11619-11620 +11621 +11622 +11623 +11624 +11625 +11626 +11627 +11628 +11629-11630 +11631-11632 +11633-11634 +11635 +11636 +11637 +11638 +11639 +11640 +11641 +11642-11644 +11645 +11646-11647 +11648-11649 +11650 +11651 +11652 +11653 +11654 +11655 +11656 +11657 +11658 +11659 +11660 +11661 +11662-11664 +11665 +11666 +11667-11668 +11669-11670 +11671-11672 +11673 +11674-11676 +11677-11678 +11679 +11680 +11681 +11682 +11683 +11684 +11685 +11686 +11687 +11688 +11689-11690 +11691-11692 +11693-11695 +11696 +11697-11698 +11699 +11700 +11701 +11702 +11703 +11704 +11705 +11706 +11707 +11708-11709 +11710-11711 +11712 +11713 +11714-11715 +11716-11717 +11718 +11719 +11720 +11721 +11722 +11723 +11724 +11725 +11726-11727 +11728 +11729 +11730-11731 +11732-11734 +11735-11736 +11737-11738 +11739-11741 +11742 +11743 +11744 +11745 +11746 +11747 +11748 +11749 +11750-11753 +11754 +11755-11757 +11758-11759 +11760 +11761 +11762-11763 +11764 +11765 +11766-11767 +11768 +11769 +11770 +11771 +11772 +11773 +11774 +11775 +11776-11779 +11780 +11781 +11782-11783 +11784 +11785 +11786-11787 +11788-11789 +11790 +11791 +11792 +11793 +11794-11796 +11797-11799 +11800-11801 +11802 +11803-11805 +11806 +11807 +11808-11809 +11810-11811 +11812-11815 +11816-11818 +11819 +11820 +11821 +11822 +11823-11824 +11825-11826 +11827-11828 +11829 +11830 +11831 +11832 +11833-11834 +11835-11836 +11837-11839 +11840 +11841 +11842 +11843-11844 +11845-11848 +11849 +11850-11852 +11853-11856 +11857-11858 +11859-11860 +11861 +11862 +11863-11864 +11865-11866 +11867 +11868-11869 +11870 +11871 +11872 +11873-11874 +11875-11878 +11879 +11880-11883 +11884-11885 +11886 +11887 +11888-11889 +11890-11891 +11892-11894 +11895 +11896 +11897 +11898 +11899-11901 +11902-11904 +11905 +11906-11908 +11909 +11910 +11911-11912 +11913-11914 +11915-11916 +11917 +11918 +11919 +11920-11922 +11923-11924 +11925 +11926 +11927-11928 +11929-11930 +11931 +11932 +11933 +11934 +11935 +11936 +11937 +11938-11939 +11940 +11941 +11942 +11943 +11944-11945 +11946-11947 +11948 +11949 +11950 +11951 +11952 +11953-11955 +11956 +11957 +11958-11959 +11960-11961 +11962-11963 +11964 +11965 +11966 +11967-11971 +11972 +11973-11975 +11976 +11977 +11978-11979 +11980-11981 +11982 +11983 +11984 +11985 +11986-11987 +11988-11989 +11990-11991 +11992 +11993 +11994 +11995-11996 +11997-11998 +11999-12000 +12001 +12002 +12003 +12004-12008 +12009 +12010 +12011-12012 +12013-12014 +12015 +12016 +12017 +12018 +12019 +12020 +12021 +12022-12025 +12026 +12027 +12028-12029 +12030-12031 +12032 +12034 +12035 +12036 +12037 +12038 +12039-12041 +12042 +12043 +12044-12045 +12046-12047 +12048 +12049 +12050 +12051 +12052 +12053-12055 +12056 +12057 +12058-12059 +12060-12061 +12062 +12063 +12064 +12065 +12066 +12067-12068 +12069-12070 +12071 +12072 +12073-12074 +12075-12076 +12077 +12078 +12079 +12080 +12081 +12082-12083 +12084-12085 +12086 +12087 +12088-12089 +12090-12091 +12092 +12093 +12094 +12095 +12096 +12097 +12098 +12099-12100 +12101-12102 +12103-12104 +12105 +12106 +12107 +12108-12109 +12110-12114 +12115 +12116 +12117-12118 +12119-12120 +12121 +12122 +12123 +12124 +12125 +12126 +12127-12129 +12130 +12131 +12132-12133 +12134-12135 +12136 +12137 +12138 +12139 +12140 +12141 +12142 +12143-12144 +12145-12146 +12147 +12148 +12149 +12150-12152 +12153-12156 +12157 +12158-12159 +12160-12161 +12162 +12163 +12164 +12165-12167 +12168-12169 +12170-12172 +12173-12174 +12175-12177 +12178 +12179 +12180 +12181 +12182 +12183 +12184 +12185-12187 +12188 +12189 +12190 +12191-12193 +12194 +12195 +12196 +12197-12198 +12199 +12200 +12201 +12202-12204 +12205 +12206 +12207 +12208-12209 +12210 +12211 +12212 +12213-12214 +12215 +12216 +12217 +12218-12219 +12220 +12221 +12222 +12223-12225 +12226 +12227 +12228-12230 +12231 +12232 +12233 +12234 +12235 +12236 +12237 +12238 +12239-12240 +12241-12242 +12243 +12244 +12245-12246 +12247-12248 +12249-12250 +12251 +12252 +12253-12254 +12255-12256 +12257 +12258 +12259-12260 +12261 +12262-12263 +12264 +12265 +12266-12267 +12268-12269 +12270-12271 +12272-12273 +12274 +12275 +12276 +12277 +12278 +12279-12281 +12282-12283 +12284-12286 +12287-12288 +12289-12290 +12291 +12292 +12293 +12294-12295 +12296-12297 +12298 +12299 +12300 +12301 +12302 +12303-12305 +12306-12307 +12308-12311 +12312 +12313-12315 +12316 +12317-12319 +12320-12321 +12322-12323 +12324 +12325 +12326 +12327-12328 +12329-12330 +12331 +12332 +12333 +12334 +12335 +12336-12338 +12339-12340 +12341 +12342-12343 +12344-12345 +12346-12347 +12348 +12349-12350 +12351-12352 +12353 +12354 +12355 +12356-12357 +12358-12359 +12360 +12361 +12362 +12363 +12364-12366 +12367-12368 +12369-12370 +12371 +12372-12373 +12374-12375 +12376-12378 +12379-12381 +12382 +12383-12387 +12388 +12389 +12390 +12391 +12392 +12393-12394 +12395 +12396-12397 +12398 +12399-12402 +12403-12404 +12405 +12406-12408 +12409 +12410-12411 +12412-12413 +12414 +12415 +12416 +12417 +12418 +12419-12422 +12423-12425 +12426-12428 +12429-12430 +12431-12432 +12433 +12434-12436 +12437 +12438-12439 +12440-12441 +12442 +12443 +12444 +12445 +12446 +12447 +12448 +12449-12451 +12452-12454 +12455-12456 +12457-12458 +12459 +12460 +12461-12462 +12463-12464 +12465 +12466 +12467 +12468 +12469 +12470-12471 +12472-12473 +12474 +12475 +12476 +12477 +12478-12479 +12480-12481 +12482 +12483 +12484 +12485 +12486-12488 +12489-12490 +12491 +12492-12494 +12495-12498 +12499 +12500 +12501-12503 +12504-12505 +12506 +12507 +12508-12509 +12510-12511 +12512-12514 +12515-12518 +12519 +12520 +12521-12522 +12523 +12524 +12525 +12526-12527 +12528-12530 +12531-12532 +12533-12535 +12536 +12537-12539 +12540-12542 +12543 +12544 +12545 +12546-12548 +12549-12550 +12551 +12552-12554 +12555-12558 +12559-12562 +12563-12565 +12566 +12567 +12568-12570 +12571-12572 +12573 +12574 +12575 +12576-12577 +12578-12580 +12581-12582 +12583 +12584 +12585-12587 +12588 +12589-12591 +12592 +12593-12597 +12598 +12599-12601 +12602 +12603 +12604-12606 +12607 +12608-12609 +12610-12612 +12613-12615 +12616-12618 +12619-12622 +12623-12624 +12625-12627 +12628-12629 +12630-12632 +12633-12634 +12635 +12636-12637 +12638-12639 +12640-12642 +12643-12644 +12645-12647 +12648-12650 +12651 +12652-12654 +12655-12658 +12659-12663 +12664 +12665-12666 +12667-12669 +12670 +12671-12674 +12675-12676 +12677 +12678-12679 +12680-12682 +12683 +12684-12685 +12686-12688 +12689 +12690-12691 +12692-12695 +12696-12699 +12700-12703 +12704-12707 +12708-12711 +12712-12714 +12715-12718 +12719-12721 +12722-12724 +12725-12727 +12728 +12729 +12730-12732 +12733 +12734-12737 +12738 +12739-12741 +12742-12743 +12744 +12745 +12746-12748 +12749-12750 +12751 +12752 +12753-12754 +12755 +12756-12757 +12758-12759 +12760-12761 +12762-12763 +12764-12765 +12766-12769 +12770-12772 +12773-12777 +12778 +12779-12780 +12781 +12782 +12783-12785 +12786-12787 +12788 +12789-12790 +12791 +12792-12793 +12794 +12795-12798 +12799-12800 +12801 +12802-12803 +12804 +12805-12808 +12809-12810 +12811 +12812-12813 +12814 +12815-12818 +12819-12820 +12821 +12822-12825 +12826-12828 +12829-12830 +12831-12834 +12835-12836 +12837-12838 +12839 +12840-12842 +12843-12844 +12845 +12846-12847 +12848-12849 +12850-12851 +12852-12853 +12854-12856 +12857 +12858-12861 +12862-12863 +12864 +12865 +12866 +12867 +12868 +12869 +12870 +12871 +12872-12873 +12874 +12875 +12876-12877 +12878-12881 +12882 +12883-12884 +12885-12887 +12888 +12889 +12890 +12891 +12892 +12893 +12894 +12895 +12896 +12897 +12898 +12899 +12900-12901 +12902 +12903-12904 +12905-12906 +12907-12908 +12909-12911 +12912 +12913-12916 +12917 +12918-12920 +12921 +12922 +12923 +12924-12925 +12926 +12927 +12928-12930 +12931 +12932-12933 +12934-12935 +12936-12939 +12940-12942 +12943 +12944-12947 +12948-12949 +12950 +12951-12952 +12953 +12954-12956 +12957-12962 +12963-12966 +12967-12972 +12973-12976 +12977-12978 +12979-12980 +12981-12983 +12984 +12985 +12986 +12987-12990 +12991-12994 +12995-12998 +12999-13003 +13004-13007 +13008 +13009 +13010-13012 +13013 +13014-13016 +13017 +13018 +13019 +13020-13022 +13023-13024 +13025-13028 +13029 +13030 +13031-13032 +13033-13036 +13037-13038 +13039-13041 +13042-13044 +13045 +13046 +13047 +13048-13050 +13051 +13052 +13053-13055 +13056-13057 +13058-13059 +13060-13063 +13064 +13065-13067 +13068-13069 +13070-13071 +13072-13073 +13074-13075 +13076-13078 +13079-13081 +13082-13084 +13085 +13086-13087 +13088-13089 +13090-13096 +13097 +13098-13099 +13100-13102 +13103-13105 +13106 +13107-13108 +13109 +13110 +13111-13112 +13113 +13114 +13115 +13116-13117 +13118 +13119-13121 +13122-13123 +13124-13125 +13126-13127 +13128 +13129-13131 +13132 +13133 +13134 +13135 +13136 +13137 +13138-13139 +13140-13141 +13142-13143 +13144-13145 +13146-13147 +13148 +13149 +13150 +13151 +13152 +13153-13155 +13156-13157 +13158-13160 +13161-13162 +13163-13164 +13165-13168 +13169-13170 +13171-13173 +13174-13175 +13176-13178 +13179-13180 +13181-13184 +13185-13186 +13187-13189 +13190-13191 +13192 +13193 +13194 +13195-13196 +13197-13200 +13201-13204 +13205-13209 +13210 +13211 +13212-13214 +13215 +13216 +13217-13219 +13220-13222 +13223 +13224-13225 +13226-13227 +13228 +13229-13231 +13232 +13233-13235 +13236 +13237 +13238-13239 +13240 +13241-13242 +13243 +13244-13246 +13247-13248 +13249-13250 +13251-13252 +13253-13255 +13256-13258 +13259-13260 +13261-13263 +13264-13266 +13267 +13268 +13269-13272 +13273-13275 +13276-13277 +13278-13281 +13282-13284 +13285 +13286 +13287-13290 +13291-13293 +13294 +13295 +13296 +13297-13298 +13299-13300 +13301 +13302 +13303 +13304 +13305-13306 +13307-13308 +13309-13310 +13311 +13312 +13313 +13314 +13315 +13316 +13317 +13318-13320 +13321 +13322-13323 +13324 +13325 +13326 +13327-13328 +13329-13330 +13331 +13332 +13333 +13334 +13335-13336 +13337-13342 +13343 +13344 +13345 +13346 +13347 +13348-13350 +13351 +13352-13353 +13354 +13355 +13356 +13357-13358 +13359-13360 +13361 +13362 +13363 +13364 +13365-13366 +13367 +13368 +13369 +13370 +13371 +13372 +13373-13374 +13375-13376 +13377 +13378 +13379-13381 +13382-13383 +13384 +13385 +13386 +13387 +13388-13390 +13391 +13392-13393 +13394 +13395 +13396 +13397 +13398-13399 +13400 +13401 +13402-13403 +13404-13405 +13406 +13407 +13408-13409 +13410-13411 +13412 +13413 +13414 +13415-13417 +13418 +13419-13420 +13421 +13422 +13423 +13424 +13425-13426 +13427-13428 +13429-13431 +13432 +13433-13435 +13436 +13437-13438 +13439-13441 +13442 +13443-13444 +13445-13446 +13447 +13448-13450 +13451-13453 +13454-13456 +13457-13459 +13460-13462 +13463-13465 +13466 +13467-13468 +13469-13470 +13471 +13472-13473 +13474-13475 +13476-13477 +13478-13479 +13480-13482 +13483 +13484-13485 +13486 +13487-13488 +13489-13490 +13491-13492 +13493 +13494-13495 +13496 +13497-13498 +13499 +13500-13502 +13503-13504 +13505-13506 +13507-13509 +13510-13512 +13513 +13514-13517 +13518 +13519-13521 +13522-13523 +13524-13527 +13528 +13529-13535 +13536-13538 +13539-13540 +13541-13543 +13544-13545 +13546 +13547 +13549-13551 +13552-13553 +13554-13555 +13556 +13557-13560 +13561-13563 +13564-13568 +13569 +13570 +13571 +13572 +13573 +13574 +13575 +13576-13577 +13578 +13579 +13580-13583 +13584-13585 +13586 +13587-13588 +13589-13590 +13591 +13592 +13593-13596 +13597 +13598 +13599 +13600 +13601-13602 +13603 +13604-13605 +13606 +13607-13608 +13609 +13610 +13611-13612 +13613 +13614-13616 +13617-13619 +13620-13621 +13622 +13623 +13624-13626 +13627 +13628-13629 +13630-13632 +13633-13636 +13637 +13638 +13639 +13640 +13641-13642 +13643-13644 +13645-13647 +13648-13649 +13650-13651 +13652 +13653 +13654-13658 +13659 +13660-13661 +13662 +13663 +13664 +13665 +13666 +13667 +13668 +13669-13671 +13672 +13673 +13674-13676 +13677-13681 +13682-13683 +13684-13686 +13687-13691 +13692 +13693 +13694 +13695-13697 +13698-13699 +13700-13701 +13702-13703 +13704-13705 +13706-13707 +13708 +13709 +13710-13712 +13713-13718 +13719-13722 +13723-13725 +13726-13728 +13729-13730 +13731-13733 +13734-13735 +13736 +13737-13738 +13739-13743 +13744-13747 +13748 +13749-13750 +13751-13753 +13754 +13755-13758 +13759 +13760 +13761-13762 +13763 +13764 +13765-13768 +13769-13771 +13772-13773 +13774 +13775 +13776-13778 +13779-13783 +13784-13786 +13787-13788 +13789-13791 +13792-13793 +13794-13795 +13796 +13797 +13798 +13799 +13800 +13801 +13802-13804 +13805-13807 +13808-13811 +13812-13816 +13817 +13818 +13819 +13820 +13821 +13822 +13823 +13824 +13825 +13826-13827 +13828 +13829-13830 +13831 +13832 +13833 +13834-13835 +13836 +13837 +13838-13839 +13840 +13841 +13842 +13843-13844 +13845-13847 +13848 +13849 +13850 +13851 +13852-13855 +13856-13857 +13858-13862 +13863-13865 +13866 +13867-13868 +13869-13871 +13872-13873 +13874-13876 +13877 +13878 +13879 +13880-13882 +13883 +13884 +13885 +13886-13888 +13889 +13890 +13891 +13892 +13893 +13894 +13895-13897 +13898 +13899-13901 +13902 +13903-13904 +13905-13906 +13907-13910 +13911-13913 +13914-13916 +13917-13918 +13919 +13920 +13921 +13922 +13923 +13924 +13925 +13926 +13927 +13928 +13929-13932 +13933 +13934 +13935 +13936-13937 +13938-13939 +13940-13942 +13943-13945 +13946-13949 +13950-13952 +13953 +13954 +13955 +13956-13957 +13958-13960 +13961 +13962 +13963-13964 +13965-13966 +13967 +13968 +13969-13972 +13973 +13974 +13975-13977 +13978 +13979-13983 +13984-13987 +13988-13992 +13993 +13994 +13995 +13996-13997 +13998-13999 +14000 +14001 +14002 +14003-14004 +14005-14006 +14007-14009 +14010-14011 +14012-14013 +14014-14016 +14017 +14018 +14019 +14020 +14021-14023 +14024 +14025-14027 +14028-14029 +14030-14032 +14033-14034 +14035 +14036 +14037-14038 +14039 +14040 +14041 +14042 +14043 +14044-14045 +14046 +14047 +14048-14049 +14050-14051 +14052-14054 +14055 +14056 +14057 +14058 +14059 +14060 +14061 +14062 +14063 +14064 +14065 +14066-14068 +14069-14071 +14072 +14073 +14074 +14075 +14076 +14077-14078 +14079-14080 +14081 +14082 +14083 +14084 +14085 +14086-14088 +14089 +14090-14091 +14092 +14093-14094 +14095-14097 +14098 +14099-14103 +14104 +14105 +14106-14108 +14109-14111 +14112 +14113 +14114 +14115 +14116-14117 +14118-14120 +14121-14122 +14123 +14124 +14125 +14126 +14127-14128 +14129 +14130 +14131 +14132 +14133-14135 +14136-14138 +14139 +14140 +14141 +14142 +14143-14145 +14146 +14147-14148 +14149-14151 +14152-14154 +14155 +14156-14158 +14159 +14160-14162 +14163-14164 +14165 +14166-14167 +14168-14170 +14171-14172 +14173-14175 +14176 +14177-14178 +14179-14180 +14181 +14182-14184 +14185 +14186 +14187 +14188 +14189 +14190-14191 +14192-14193 +14194-14196 +14197 +14198-14199 +14200-14202 +14203 +14204 +14205 +14206 +14207 +14208-14209 +14210 +14211-14213 +14214-14215 +14216 +14217 +14218 +14219-14221 +14222 +14223-14226 +14227 +14228 +14229-14231 +14232-14233 +14234 +14235-14238 +14239 +14240 +14241-14242 +14243 +14244 +14245 +14246-14247 +14248 +14249-14251 +14252 +14253-14254 +14255 +14256 +14257 +14258 +14259 +14260 +14261 +14262 +14263 +14264 +14265-14266 +14267-14268 +14269 +14270 +14271 +14272 +14273 +14274 +14275-14276 +14277 +14278-14280 +14281 +14282 +14283 +14284-14285 +14286 +14287 +14288 +14289 +14290 +14291 +14292 +14293-14296 +14297-14298 +14299 +14300-14302 +14303 +14304-14305 +14306 +14307 +14308-14309 +14310 +14311-14312 +14313-14314 +14315-14319 +14320 +14321 +14322 +14323 +14324-14326 +14327 +14328-14329 +14330 +14331-14334 +14335-14336 +14337-14340 +14341-14344 +14345-14348 +14349-14350 +14351-14353 +14354-14355 +14356-14359 +14360 +14361 +14362-14364 +14365-14366 +14367-14369 +14370-14371 +14372-14373 +14374-14376 +14377 +14378-14381 +14382-14383 +14384 +14385-14386 +14387 +14388 +14389-14390 +14391-14392 +14393-14395 +14396-14397 +14398-14402 +14403-14405 +14406 +14407-14409 +14410-14411 +14412-14414 +14415 +14416-14419 +14420-14421 +14422-14423 +14424-14426 +14427-14428 +14429-14431 +14432-14435 +14436-14437 +14438-14440 +14441-14442 +14443 +14444 +14445 +14446 +14447 +14448-14452 +14453 +14454 +14455-14457 +14458-14460 +14461 +14462 +14463 +14464 +14465-14467 +14468-14471 +14472-14473 +14474 +14475 +14476 +14477-14481 +14482 +14483 +14484 +14485 +14486-14487 +14488-14491 +14492-14493 +14494-14495 +14496 +14497 +14498 +14499 +14500 +14501 +14502 +14503-14504 +14505-14508 +14509-14512 +14513-14514 +14515 +14516 +14517-14518 +14519-14520 +14521-14522 +14523-14524 +14525 +14526 +14527 +14528-14529 +14530-14532 +14533 +14534-14535 +14536-14538 +14539 +14540-14541 +14542 +14543-14545 +14546 +14547-14549 +14550 +14551 +14552 +14553 +14554-14557 +14558-14561 +14562 +14563-14564 +14565 +14566-14567 +14568 +14569-14570 +14571 +14572-14573 +14574-14576 +14577-14579 +14580 +14581 +14582-14585 +14586-14589 +14590 +14591 +14592 +14593-14594 +14595 +14596 +14597 +14598 +14599 +14600 +14601 +14602-14603 +14604 +14605-14606 +14607-14610 +14611-14612 +14613-14614 +14615 +14616-14617 +14618-14619 +14620-14622 +14623-14625 +14626-14628 +14629 +14630 +14631 +14632 +14633-14634 +14635-14636 +14637-14638 +14639-14640 +14641 +14642 +14643 +14644-14648 +14649-14652 +14653-14655 +14656 +14657 +14658 +14659 +14660 +14661 +14662 +14663 +14664 +14665 +14666 +14667 +14668 +14669-14670 +14671-14672 +14673-14674 +14675-14676 +14677 +14678 +14679 +14680 +14681 +14682-14683 +14684 +14685-14686 +14687-14688 +14689 +14690 +14691 +14692 +14693 +14694-14695 +14696 +14697-14698 +14699 +14700 +14701 +14702 +14703 +14704-14705 +14706 +14707 +14708 +14709 +14710-14713 +14714-14716 +14717-14718 +14719 +14720-14723 +14724 +14725-14728 +14729-14730 +14731-14733 +14734 +14735 +14736-14739 +14740-14741 +14742 +14743 +14744-14746 +14747 +14748 +14749-14751 +14752 +14753 +14754 +14755 +14756-14758 +14759 +14760 +14761-14762 +14763 +14764 +14765 +14766-14770 +14771-14774 +14775-14777 +14778-14780 +14781-14783 +14784-14785 +14786-14788 +14789-14790 +14791-14792 +14793-14794 +14795-14797 +14798-14801 +14802-14804 +14805 +14806 +14807 +14808 +14809 +14810 +14811 +14812 +14813 +14814 +14815-14816 +14817-14818 +14819-14822 +14823-14824 +14825 +14826-14827 +14828 +14829-14830 +14831-14832 +14833-14835 +14836-14838 +14839-14841 +14842-14844 +14845-14848 +14849-14851 +14852 +14853 +14854 +14855 +14856-14857 +14858 +14859-14862 +14863-14865 +14866-14867 +14868-14869 +14870-14872 +14873-14875 +14876 +14877-14878 +14879-14880 +14881 +14882 +14883 +14884-14885 +14886-14889 +14890 +14891 +14892-14895 +14896 +14897 +14898 +14899-14900 +14901 +14902 +14903-14904 +14905-14907 +14908 +14909-14911 +14912 +14913 +14914 +14915 +14916 +14917-14918 +14919 +14920-14921 +14922-14924 +14925 +14926 +14927 +14928 +14929 +14930 +14931 +14932-14934 +14935 +14936 +14937-14938 +14939-14940 +14941 +14942-14945 +14946 +14947 +14948 +14949 +14950-14953 +14954 +14955 +14956 +14957 +14958 +14959 +14960 +14961 +14962 +14963-14964 +14965-14966 +14967-14970 +14971-14972 +14973 +14974-14975 +14976 +14977-14978 +14979-14980 +14981 +14982-14983 +14984 +14985 +14986-14989 +14990-14991 +14992-14993 +14994 +14995 +14996 +14997-14999 +15000 +15001 +15002 +15003 +15004-15008 +15009 +15010 +15011 +15012 +15013 +15014 +15015 +15016 +15017 +15018-15019 +15020-15022 +15023-15026 +15027-15029 +15030-15032 +15033-15034 +15035-15036 +15037 +15038-15039 +15040 +15041 +15042-15045 +15046-15047 +15048-15049 +15050 +15051 +15052 +15053 +15054 +15055 +15056 +15057 +15058-15059 +15060-15061 +15062-15065 +15066-15069 +15070-15072 +15073-15074 +15075 +15076-15077 +15078-15079 +15081 +15082 +15083 +15084 +15085 +15086 +15087 +15088 +15090 +15091 +15092 +15093 +15094 +15095 +15096 +15097 +15098 +15099 +15100 +15101 +15102 +15103 +15104 +15105 +15106-15108 +15109 +15110-15111 +15112 +15113 +15114-15115 +15116-15117 +15118 +15119 +15120 +15121 +15122 +15123 +15124-15127 +15128-15130 +15131 +15132-15135 +15136 +15137-15139 +15140 +15141 +15142-15143 +15144-15147 +15148 +15149 +15150-15151 +15152 +15153 +15154 +15155 +15156 +15157 +15158 +15159 +15160 +15161-15162 +15163-15164 +15165 +15166 +15167 +15168 +15169 +15170 +15171 +15172 +15173-15176 +15177-15179 +15180 +15181-15183 +15184 +15185-15189 +15190 +15191-15192 +15193-15194 +15195 +15196-15198 +15199 +15200 +15201 +15202-15203 +15204 +15205-15207 +15208 +15209 +15210-15212 +15213-15214 +15215 +15216-15218 +15219-15220 +15221 +15222-15224 +15225 +15226-15228 +15229-15230 +15231 +15232-15234 +15235 +15236 +15237 +15238-15240 +15241-15243 +15244-15245 +15246-15247 +15248 +15249 +15250-15251 +15252-15254 +15255-15257 +15258-15259 +15260-15263 +15264 +15265 +15266 +15267 +15268 +15269 +15270 +15271-15273 +15274-15275 +15276 +15277-15278 +15279 +15280 +15281 +15282 +15283-15284 +15285-15287 +15288-15290 +15291-15292 +15293-15294 +15295 +15296 +15297 +15298-15299 +15300-15302 +15303-15304 +15305 +15306-15307 +15308-15310 +15311-15312 +15313-15315 +15316-15317 +15318-15319 +15320-15322 +15323-15324 +15325-15326 +15327 +15328-15329 +15330-15331 +15332 +15333 +15334 +15335 +15336-15337 +15338-15339 +15340 +15341-15343 +15344 +15345-15347 +15348 +15349 +15350-15352 +15353 +15354 +15355-15356 +15357-15359 +15360-15362 +15363-15364 +15365 +15366 +15367 +15368 +15369-15370 +15371-15373 +15374 +15375-15376 +15377 +15378 +15379 +15380 +15381-15382 +15383 +15384-15385 +15386-15387 +15388-15389 +15390-15391 +15392 +15393 +15394 +15395 +15396 +15397 +15398 +15399 +15400 +15401-15403 +15404 +15405-15407 +15408-15409 +15410 +15411-15413 +15414 +15415 +15416 +15417 +15418-15420 +15421-15422 +15423-15424 +15425 +15426 +15427 +15428-15430 +15431-15433 +15434 +15435 +15436 +15437 +15438-15441 +15442 +15443-15445 +15446 +15447 +15448 +15449 +15450-15451 +15452 +15453 +15454 +15455 +15456 +15457-15458 +15459-15460 +15461 +15462 +15463 +15464-15466 +15467-15468 +15469 +15470 +15471 +15472 +15473-15476 +15477 +15478-15480 +15481-15482 +15483 +15484 +15485-15486 +15487 +15488 +15489 +15490 +15491 +15492 +15493 +15494-15495 +15496-15497 +15498 +15499 +15500 +15501-15503 +15504-15505 +15506 +15507 +15508 +15509 +15510-15511 +15512 +15513 +15514 +15515 +15516 +15517 +15518 +15519 +15520-15522 +15523 +15524 +15525 +15526-15528 +15529-15530 +15531-15532 +15533 +15534 +15535 +15536-15538 +15539-15540 +15541-15544 +15545 +15546-15548 +15549 +15550-15552 +15553-15554 +15555-15556 +15557 +15558 +15559 +15560 +15561-15562 +15563-15565 +15566-15567 +15568-15569 +15570 +15571 +15572 +15573 +15574-15575 +15576 +15577 +15578 +15579 +15580-15583 +15584-15585 +15586 +15587-15588 +15589-15590 +15591 +15592 +15593 +15594 +15595-15596 +15597-15598 +15599 +15600 +15601 +15602-15605 +15606 +15607 +15608 +15609-15610 +15611 +15612-15616 +15617 +15618 +15619-15620 +15621 +15622-15625 +15626 +15627 +15628-15629 +15630-15633 +15634-15635 +15636 +15637-15638 +15639 +15640 +15641 +15642-15644 +15645 +15646 +15647 +15648-15650 +15651-15653 +15654 +15655 +15656-15659 +15660-15662 +15663-15665 +15666-15667 +15668 +15669-15671 +15672 +15673-15675 +15676 +15677 +15678 +15679 +15680 +15681 +15682 +15683-15686 +15687-15688 +15689 +15690 +15691 +15692 +15693 +15694 +15695 +15696 +15697 +15698-15700 +15701-15703 +15704-15705 +15706 +15707-15710 +15711 +15712 +15713 +15714 +15715 +15716-15718 +15719-15720 +15721 +15722 +15723-15725 +15726 +15727-15729 +15730-15731 +15732 +15733 +15734 +15735 +15736-15737 +15738-15740 +15741 +15742 +15743 +15744 +15745 +15746-15748 +15749 +15750 +15751-15753 +15754 +15755 +15756 +15757 +15758 +15759 +15760 +15761 +15762 +15763 +15764 +15765-15767 +15768 +15769 +15770-15771 +15772 +15773 +15774 +15775 +15776 +15777 +15778 +15779 +15780 +15781 +15782 +15783 +15784 +15785-15786 +15787-15788 +15789-15790 +15791 +15792 +15793 +15794 +15795 +15796 +15797 +15798 +15799 +15800 +15801 +15802-15804 +15805 +15806-15807 +15808-15809 +15810 +15811 +15812 +15813 +15814 +15815 +15816 +15817 +15818 +15819 +15820-15823 +15824-15825 +15826 +15827 +15828 +15829 +15830 +15831 +15832 +15833 +15834 +15835-15836 +15837-15838 +15839-15840 +15841-15842 +15843 +15844 +15845 +15846 +15847 +15848 +15849 +15850 +15851 +15852 +15853-15854 +15855 +15856 +15857 +15858 +15859-15860 +15861 +15862 +15863 +15864 +15865 +15866 +15867 +15868 +15869 +15870-15871 +15872-15873 +15874 +15875 +15876 +15877 +15878 +15879 +15880 +15881 +15882 +15883 +15884 +15885 +15886 +15887 +15888-15890 +15891 +15892 +15893 +15894 +15895 +15896 +15897 +15898-15899 +15900 +15901 +15902 +15903 +15904 +15905 +15906 +15907 +15908 +15909 +15910 +15911 +15912 +15913 +15916-15917 +15918 +15919 +15920 +15921 +15922 +15923 +15924 +15925 +15926 +15927 +15928 +15929 +15930 +15931 +15932 +15933 +15934 +15935 +15936-15938 +15939 +15940 +15941 +15942 +15943 +15944 +15945 +15946 +15947 +15948-15949 +15950 +15951 +15952 +15953 +15954 +15955 +15956 +15957 +15958 +15959 +15960 +15961 +15962 +15963 +15964 +15965 +15966 +15967 +15968-15970 +15971-15972 +15973 +15974-15976 +15977 +15978 +15979 +15980 +15981 +15982 +15983 +15984 +15985 +15986 +15987 +15988 +15989 +15990 +15991 +15992 +15993-15995 +15996-15997 +15998 +15999 +16000 +16001 +16002 +16003 +16004 +16005 +16006 +16007 +16008 +16009 +16010 +16011 +16012 +16013 +16014 +16015 +16016 +16017 +16018 +16019-16020 +16021-16022 +16023-16026 +16027-16028 +16029 +16030 +16031 +16032 +16033 +16034 +16035-16037 +16038 +16039 +16040-16041 +16042 +16043 +16044 +16045 +16046 +16047 +16048-16049 +16050-16051 +16052 +16053-16055 +16056 +16057 +16058-16060 +16061 +16062 +16063 +16064 +16065 +16066-16068 +16069-16071 +16072 +16073 +16074-16076 +16077-16078 +16079 +16080 +16081 +16082 +16083 +16084-16087 +16088-16090 +16091 +16092-16094 +16095-16097 +16098-16100 +16101 +16102 +16103-16104 +16105 +16106-16107 +16108-16110 +16111 +16112 +16113 +16114-16116 +16117 +16118-16119 +16120 +16121-16122 +16123-16124 +16125-16126 +16127-16128 +16129-16130 +16131 +16132 +16133 +16134-16135 +16136-16137 +16138-16139 +16140 +16141 +16142 +16143 +16144 +16145-16148 +16149 +16150-16151 +16152 +16153-16157 +16158 +16159 +16160 +16161-16163 +16164-16165 +16166 +16167 +16168 +16169 +16170-16171 +16172-16173 +16174-16176 +16177-16179 +16180-16184 +16185 +16186-16189 +16190-16193 +16194-16197 +16198 +16199-16200 +16201 +16202 +16203-16205 +16206-16207 +16208-16209 +16210-16211 +16212 +16213 +16214 +16215-16217 +16218 +16219-16220 +16221-16222 +16223 +16224 +16225-16227 +16228-16229 +16230-16233 +16234-16236 +16237-16239 +16240 +16241-16242 +16243-16244 +16245 +16246 +16247 +16248-16250 +16251-16252 +16253-16254 +16255-16256 +16257-16258 +16259 +16260 +16261-16263 +16264-16266 +16267 +16268-16270 +16271-16272 +16273-16274 +16275-16276 +16277-16279 +16280 +16281 +16282-16283 +16284-16286 +16287 +16288 +16289-16290 +16292-16296 +16297-16299 +16300 +16301-16302 +16303 +16304-16305 +16306 +16307-16308 +16309-16310 +16311-16312 +16313-16315 +16316-16317 +16318-16319 +16320 +16321 +16322-16323 +16324 +16325 +16326-16327 +16328-16330 +16331-16334 +16335-16336 +16337-16339 +16340-16341 +16342-16343 +16344-16345 +16346-16348 +16349 +16350 +16351-16352 +16353 +16354 +16355-16356 +16357-16358 +16359 +16360 +16361 +16362-16363 +16364-16366 +16367-16370 +16371-16373 +16374-16375 +16376-16377 +16378 +16379-16381 +16382-16383 +16384 +16385 +16386-16387 +16388-16389 +16390 +16391 +16392-16393 +16394-16396 +16397 +16398 +16399 +16400 +16401-16403 +16404 +16405-16406 +16407-16409 +16410-16412 +16413-16414 +16415 +16416 +16417-16418 +16419 +16420 +16421-16422 +16423-16424 +16425-16426 +16427-16428 +16429-16430 +16431 +16432 +16433-16435 +16436-16437 +16438 +16439 +16440 +16441-16442 +16443-16444 +16445-16446 +16447-16448 +16449 +16450 +16451 +16452-16454 +16455-16457 +16458-16460 +16461 +16462 +16463 +16464 +16465 +16466 +16467-16468 +16469 +16470 +16471-16473 +16474 +16475 +16476-16477 +16478 +16479 +16480 +16481 +16482 +16483 +16484-16487 +16488-16489 +16490-16491 +16492 +16493 +16494-16496 +16497-16499 +16500 +16501-16502 +16503-16505 +16506 +16507-16509 +16510-16512 +16513-16515 +16516-16517 +16518-16520 +16521-16522 +16523 +16524-16525 +16526-16527 +16528 +16529 +16530 +16531 +16532-16534 +16535-16537 +16538-16539 +16540 +16541-16543 +16544 +16545 +16546 +16547 +16548 +16549-16551 +16552-16555 +16556 +16557 +16558 +16559 +16560 +16561 +16562 +16563 +16564-16566 +16567 +16568 +16569-16570 +16571-16573 +16574 +16575 +16576-16578 +16579-16582 +16583 +16584 +16585 +16586 +16587 +16588 +16589 +16590-16591 +16592 +16593-16595 +16596-16598 +16599-16602 +16603-16604 +16605 +16606 +16607 +16608 +16609 +16610 +16611 +16612 +16613 +16614 +16615 +16616-16619 +16620-16621 +16622 +16623-16624 +16625-16627 +16628-16630 +16631 +16632 +16633 +16634 +16635 +16636 +16637 +16638-16640 +16641-16642 +16643 +16644 +16645 +16646-16649 +16650 +16651 +16652 +16653 +16654 +16655 +16656 +16657 +16658 +16659-16660 +16661-16663 +16664 +16665 +16666-16667 +16668-16669 +16670-16671 +16672 +16673 +16674-16675 +16676-16677 +16678-16680 +16681 +16682-16683 +16684 +16685-16686 +16687-16689 +16690 +16691-16693 +16694 +16695 +16696 +16697 +16698-16699 +16700-16701 +16702 +16703 +16704-16705 +16706-16707 +16708-16710 +16711-16712 +16713-16714 +16715 +16716 +16717-16718 +16719-16720 +16721-16723 +16724 +16725-16726 +16727 +16728-16729 +16730-16732 +16733-16735 +16736 +16737 +16738 +16739 +16740-16742 +16743-16744 +16745-16747 +16748-16749 +16750-16751 +16752 +16753 +16754-16757 +16758-16761 +16762-16764 +16765 +16766-16768 +16769-16771 +16772-16774 +16775-16776 +16777 +16778-16780 +16781-16783 +16784 +16785-16786 +16787 +16788-16789 +16790 +16791 +16792-16793 +16794-16795 +16796-16799 +16800-16801 +16802-16803 +16804 +16805 +16806-16807 +16808-16809 +16810-16812 +16813 +16814-16815 +16816 +16817-16818 +16819-16821 +16822-16824 +16825-16826 +16827-16829 +16830 +16831-16833 +16834-16836 +16837 +16838-16839 +16840 +16841 +16842 +16843-16845 +16846-16847 +16848-16851 +16852 +16853 +16854-16855 +16856-16857 +16858-16860 +16861 +16862-16863 +16864 +16865-16866 +16867-16872 +16873-16876 +16877-16878 +16879-16880 +16881 +16882 +16883 +16884 +16885 +16886 +16887 +16888 +16889-16890 +16891 +16892 +16893 +16894 +16895 +16896 +16897 +16898-16901 +16902 +16903 +16904 +16905 +16906 +16907 +16908 +16909 +16910 +16911 +16912 +16913 +16914 +16915-16917 +16918 +16919 +16920 +16921 +16922 +16923 +16924 +16925 +16926 +16927 +16928 +16929 +16930 +16931 +16932 +16933 +16934 +16935 +16936 +16939-16941 +16942-16946 +16947 +16948-16951 +16952-16956 +16957 +16958 +16959 +16960 +16961 +16962-16964 +16965-16966 +16967-16968 +16969 +16970 +16971 +16972 +16973 +16974-16975 +16976 +16977 +16978 +16979 +16980 +16981 +16982-16984 +16985-16987 +16988-16989 +16990-16991 +16992-16994 +16995-16997 +16998 +16999 +17000 +17001 +17002 +17003-17004 +17005-17007 +17008 +17009-17010 +17011-17012 +17013-17016 +17017 +17018-17019 +17020-17022 +17023 +17024 +17025 +17026-17028 +17029 +17030-17032 +17033-17034 +17035 +17036-17038 +17039-17042 +17043-17044 +17045-17047 +17048 +17049-17050 +17051-17052 +17053-17055 +17056-17057 +17058-17061 +17062 +17063 +17064-17065 +17066-17069 +17070 +17071-17072 +17073-17076 +17077-17078 +17079 +17080 +17081-17082 +17083-17084 +17085-17087 +17088 +17089-17090 +17091-17092 +17093 +17094 +17095-17096 +17097-17099 +17100-17101 +17102-17104 +17105 +17106-17107 +17108-17110 +17111-17114 +17115-17119 +17120 +17121 +17122-17124 +17125-17127 +17128-17130 +17131 +17132-17133 +17134-17135 +17136 +17137 +17138-17139 +17140-17141 +17142 +17143 +17144-17146 +17147-17149 +17150-17152 +17153-17155 +17156-17157 +17158-17160 +17161-17162 +17163-17167 +17168 +17169 +17170-17171 +17172-17173 +17174 +17175-17176 +17177 +17178-17179 +17182 +17183 +17184-17185 +17186-17187 +17188-17190 +17191 +17192-17193 +17194-17195 +17196 +17197 +17198-17199 +17200-17204 +17205 +17206-17208 +17209 +17210-17211 +17212 +17213 +17214-17215 +17216 +17217 +17218 +17219-17220 +17221 +17222-17223 +17224 +17225-17226 +17227 +17228 +17229 +17230-17231 +17232-17234 +17235 +17236 +17237 +17238-17239 +17240 +17241-17242 +17243 +17244-17245 +17246 +17247 +17248 +17249 +17250-17251 +17252-17253 +17254-17256 +17257-17258 +17259 +17260 +17261 +17262-17263 +17264-17266 +17267-17268 +17269-17271 +17272-17274 +17275-17278 +17279-17281 +17282-17284 +17285-17288 +17289-17290 +17291 +17292 +17293 +17294-17295 +17296-17299 +17300 +17301 +17302 +17303-17304 +17305-17307 +17308 +17309-17311 +17312 +17313-17316 +17317-17318 +17319-17321 +17322-17324 +17325 +17326 +17327-17329 +17330-17334 +17335-17336 +17337-17339 +17340-17341 +17342 +17343 +17344 +17345 +17346-17347 +17348-17349 +17350-17352 +17353-17354 +17355 +17356 +17357 +17358 +17359-17360 +17361-17362 +17363 +17364-17366 +17367 +17368 +17369-17371 +17372-17373 +17374-17375 +17378 +17379 +17380 +17381 +17382-17383 +17384-17387 +17388 +17389 +17390-17391 +17392 +17393-17395 +17396 +17397-17398 +17399 +17400 +17401 +17402 +17403 +17404 +17405 +17406 +17407 +17408 +17409 +17410-17413 +17414-17416 +17417-17419 +17420-17422 +17423-17426 +17427-17430 +17431-17432 +17433 +17434-17435 +17436-17437 +17438 +17439-17440 +17441 +17442-17443 +17444 +17445 +17446 +17447-17448 +17449-17451 +17452-17455 +17456-17458 +17459 +17460-17461 +17462-17464 +17465-17466 +17467 +17468 +17469 +17470 +17471-17472 +17473 +17474-17475 +17476-17477 +17478 +17479-17480 +17481 +17482 +17483-17484 +17485 +17486 +17487-17489 +17490 +17491 +17492-17493 +17494 +17495 +17496-17498 +17499 +17500 +17501-17504 +17505 +17506 +17507-17508 +17509 +17510 +17511-17512 +17513 +17514 +17515-17517 +17518 +17519 +17520-17521 +17522 +17523 +17524-17526 +17527 +17528 +17529 +17530-17531 +17532 +17533 +17534-17535 +17536 +17537 +17538-17539 +17540 +17541 +17542 +17543 +17544 +17545 +17546-17549 +17550 +17551 +17552 +17553 +17554 +17555-17556 +17557 +17558 +17559-17561 +17562 +17563 +17564-17565 +17566 +17567 +17568 +17569 +17570 +17571-17572 +17573 +17574 +17575-17576 +17577-17578 +17579 +17580 +17581 +17582 +17583-17584 +17585 +17586 +17587 +17588-17589 +17590 +17591 +17592 +17593 +17594-17596 +17597 +17598 +17599-17601 +17602 +17603 +17604 +17605-17606 +17607-17610 +17611-17612 +17613-17614 +17615 +17616 +17617 +17618 +17619-17621 +17622 +17623-17624 +17625-17626 +17627-17629 +17630-17631 +17632 +17633 +17634-17635 +17636 +17637 +17638 +17639-17640 +17641-17643 +17644-17645 +17646 +17647 +17648-17651 +17652 +17653-17654 +17655-17656 +17657 +17658-17660 +17661 +17662-17663 +17664 +17665 +17666 +17667 +17668 +17669-17672 +17673-17674 +17675-17676 +17677 +17678-17681 +17682 +17683-17684 +17685-17686 +17687 +17688-17691 +17692 +17693-17696 +17697 +17698-17700 +17701 +17702-17704 +17705 +17706 +17707 +17708 +17709 +17710 +17711-17712 +17713 +17714-17715 +17716 +17717 +17718-17719 +17720 +17721-17723 +17724 +17725 +17726-17731 +17732-17734 +17735-17737 +17738 +17739-17742 +17743-17744 +17745-17746 +17747-17749 +17750-17751 +17752 +17753 +17754 +17755-17756 +17757 +17758 +17759-17761 +17762-17764 +17765-17766 +17767-17769 +17770-17772 +17773-17775 +17776 +17777-17778 +17779-17780 +17781 +17782-17784 +17785 +17786-17788 +17789-17791 +17792-17793 +17794-17795 +17796-17797 +17798-17800 +17801 +17802 +17803-17804 +17805 +17806-17808 +17809-17812 +17813-17814 +17815 +17816 +17817 +17818-17819 +17820 +17821-17823 +17824 +17825 +17826 +17827 +17828-17830 +17831 +17832 +17833 +17834 +17835-17836 +17837 +17838 +17839 +17840-17842 +17843 +17844 +17845 +17846-17849 +17850-17851 +17852-17854 +17855-17858 +17859-17861 +17862-17866 +17867-17869 +17870-17872 +17873-17874 +17875-17877 +17878 +17879-17881 +17882-17886 +17887-17891 +17892-17894 +17895-17896 +17897-17898 +17899-17903 +17904 +17905 +17906 +17907 +17908 +17909-17910 +17911-17914 +17915 +17916-17917 +17918 +17919-17920 +17921-17922 +17923 +17924 +17925-17927 +17928 +17929-17931 +17932-17933 +17934 +17935-17938 +17939-17941 +17942 +17943-17946 +17947 +17948 +17949 +17950-17951 +17952 +17953 +17954 +17955 +17956 +17957 +17958-17960 +17961-17963 +17964-17965 +17966-17968 +17969-17972 +17974-17976 +17977-17979 +17980 +17981 +17982 +17983-17984 +17985-17986 +17987-17989 +17990 +17991 +17992 +17993-17996 +17997-17998 +17999-18001 +18002-18004 +18005-18007 +18008-18012 +18013-18016 +18017-18019 +18020-18022 +18023-18024 +18025-18026 +18027-18029 +18030 +18031-18033 +18034 +18035-18037 +18038-18040 +18041 +18042 +18043 +18044-18045 +18046 +18047 +18048-18049 +18050 +18051 +18052 +18053 +18054-18055 +18056-18057 +18058 +18059 +18060 +18061-18063 +18064-18066 +18067 +18068-18069 +18070 +18071-18073 +18074-18075 +18076 +18077 +18078 +18079 +18080-18081 +18082-18083 +18084-18085 +18086-18087 +18088 +18089 +18090-18092 +18093-18097 +18098 +18099 +18100 +18101 +18102-18103 +18104-18106 +18107-18108 +18109-18111 +18112 +18113 +18114 +18115-18116 +18117 +18118 +18119-18120 +18121 +18122 +18123-18124 +18125 +18126 +18127 +18128-18132 +18133-18134 +18135 +18136 +18137-18139 +18140-18142 +18143-18145 +18146 +18147 +18148 +18149 +18150 +18151 +18152-18153 +18154-18156 +18157-18158 +18159 +18160 +18161-18163 +18164-18166 +18167 +18168-18169 +18170 +18171 +18172 +18173 +18174 +18175 +18176 +18177 +18178 +18179-18180 +18181-18183 +18184 +18185 +18186 +18187-18188 +18189 +18190 +18191 +18192 +18193 +18194 +18195 +18196 +18197 +18198 +18199 +18200 +18201 +18202 +18203 +18204-18206 +18207 +18208-18211 +18212 +18213-18214 +18215 +18216 +18217 +18218 +18219 +18220 +18221 +18222-18225 +18226 +18227 +18228 +18229-18232 +18233-18234 +18235 +18236-18239 +18240 +18241 +18242 +18243-18245 +18246 +18247-18248 +18249 +18252-18254 +18255 +18256 +18257-18259 +18260-18262 +18263 +18264 +18265-18266 +18267-18270 +18271-18272 +18273 +18274 +18275 +18276 +18277-18278 +18279-18281 +18282-18284 +18285 +18286-18287 +18288 +18289 +18290 +18291 +18292 +18293 +18294-18296 +18297 +18298 +18299 +18300 +18301 +18302 +18303 +18304 +18305-18307 +18308-18310 +18311-18313 +18314 +18315 +18316 +18317-18320 +18321-18322 +18323 +18324-18326 +18327-18328 +18329 +18330 +18331 +18332 +18333 +18334-18335 +18336 +18337 +18338 +18339-18340 +18341-18343 +18344-18346 +18347-18350 +18351 +18352 +18353 +18354 +18355 +18356 +18357 +18358 +18359 +18360 +18361 +18362 +18363 +18364-18366 +18367 +18368 +18369 +18370 +18371 +18372-18373 +18374-18376 +18377 +18378 +18379 +18380 +18381 +18382 +18383 +18384 +18385 +18386 +18387 +18388 +18389 +18390 +18391 +18392 +18393 +18394-18395 +18396-18398 +18399-18402 +18403 +18404 +18405 +18406 +18407 +18408 +18409 +18410 +18411 +18412 +18413 +18414 +18415 +18416 +18417 +18418 +18419-18420 +18421-18422 +18423-18425 +18426 +18427 +18428 +18429 +18430 +18431 +18432 +18433 +18434-18437 +18438-18440 +18441-18443 +18444-18446 +18447-18450 +18451-18455 +18456-18458 +18459 +18460 +18461 +18462 +18463-18464 +18465-18466 +18467-18468 +18469 +18470 +18471 +18472 +18473 +18474 +18475 +18476 +18477-18479 +18480 +18481-18485 +18486-18487 +18488-18489 +18490 +18491 +18492 +18493 +18494 +18495 +18496 +18497 +18498 +18499 +18500-18502 +18503-18505 +18506-18508 +18509-18511 +18512 +18513 +18514 +18515-18519 +18520-18521 +18522 +18523-18524 +18525 +18526-18529 +18530 +18531 +18532 +18533-18537 +18538-18539 +18540-18542 +18543 +18544-18546 +18547-18548 +18549-18551 +18552 +18553 +18554 +18555 +18556 +18557 +18558-18560 +18561 +18562 +18563 +18564 +18565-18569 +18570 +18571-18572 +18573-18574 +18575-18576 +18577-18580 +18581-18583 +18584 +18585 +18586 +18587-18591 +18592 +18593 +18594 +18595-18596 +18597 +18598 +18599-18600 +18601 +18602-18603 +18604-18605 +18606-18610 +18611 +18612 +18613 +18614 +18615-18617 +18618 +18619-18620 +18621 +18622-18625 +18626-18627 +18628-18631 +18632-18635 +18636-18639 +18640-18641 +18642-18644 +18645-18646 +18647-18650 +18651 +18652 +18653-18655 +18656-18657 +18658-18660 +18661-18662 +18663-18664 +18665-18667 +18668 +18669-18672 +18673-18674 +18675 +18676-18677 +18678 +18679 +18680-18681 +18682-18683 +18684-18686 +18687-18688 +18689-18693 +18694-18696 +18697 +18698-18700 +18701-18702 +18703-18705 +18706 +18707-18710 +18711-18712 +18713-18714 +18715-18717 +18718-18719 +18720-18722 +18723-18726 +18727-18728 +18729-18731 +18732-18733 +18734 +18735 +18736 +18737-18740 +18741-18742 +18743 +18744-18747 +18748-18749 +18750-18752 +18753-18755 +18756 +18757 +18758 +18759-18761 +18762-18764 +18765 +18766-18767 +18768 +18769 +18770-18771 +18772 +18773 +18774 +18775-18776 +18777 +18778-18780 +18781-18782 +18783 +18784 +18785 +18786-18787 +18788-18790 +18791-18793 +18794 +18795 +18796-18798 +18799 +18800-18801 +18802 +18803-18804 +18805 +18806-18808 +18809-18811 +18812-18813 +18814 +18815-18818 +18819-18821 +18822 +18823 +18824 +18825 +18826 +18827 +18828-18829 +18830-18832 +18833-18835 +18836-18839 +18840 +18841-18843 +18844-18845 +18846-18848 +18849 +18850 +18851 +18852 +18853-18854 +18855-18857 +18858 +18859-18862 +18863 +18864-18866 +18867-18870 +18871 +18872-18873 +18874 +18875-18877 +18878-18880 +18881-18882 +18883 +18884-18885 +18886 +18887-18889 +18890 +18891 +18892 +18893 +18894 +18895 +18896-18898 +18899-18901 +18902-18905 +18906-18907 +18908-18910 +18911-18913 +18914-18915 +18916-18917 +18918-18920 +18921 +18922 +18923-18924 +18925-18926 +18927 +18928-18929 +18930-18931 +18932 +18933 +18934 +18935 +18936 +18937 +18938-18940 +18941 +18942 +18943 +18944-18946 +18947-18949 +18950-18952 +18953-18956 +18957-18958 +18959-18962 +18963-18966 +18967 +18968 +18969 +18970-18971 +18972-18973 +18974 +18975 +18976-18977 +18978 +18979 +18980-18981 +18982-18983 +18984-18985 +18986 +18987 +18988-18989 +18990-18991 +18992-18994 +18995-18998 +18999-19001 +19002 +19003-19006 +19007 +19008-19011 +19012 +19013-19015 +19016 +19017-19020 +19021-19023 +19024 +19025-19027 +19028-19029 +19030 +19031 +19032-19033 +19034-19035 +19036 +19037 +19038-19040 +19041-19042 +19043 +19044 +19045-19047 +19048-19050 +19051-19053 +19054-19056 +19057-19059 +19060-19062 +19063-19065 +19066-19068 +19069 +19070 +19071 +19072-19073 +19074-19075 +19076 +19077-19078 +19079-19080 +19081 +19082-19084 +19085-19086 +19087-19089 +19090 +19091 +19092-19093 +19094 +19095-19096 +19097 +19098 +19099 +19100-19102 +19103-19104 +19105 +19106 +19107-19108 +19109-19112 +19113-19115 +19116-19118 +19119-19120 +19121 +19122 +19123 +19124-19125 +19126-19127 +19128 +19129 +19130-19132 +19133 +19134-19136 +19137 +19138 +19139 +19140 +19141-19142 +19143-19145 +19146-19148 +19149-19152 +19153 +19154-19157 +19158 +19159-19161 +19162-19164 +19165 +19166 +19167 +19168-19169 +19170-19172 +19173-19177 +19178 +19179 +19180-19182 +19183-19185 +19186 +19187 +19188 +19189-19190 +19191-19193 +19194-19196 +19197-19200 +19201 +19202-19204 +19205-19207 +19208-19212 +19213 +19214 +19215 +19216-19218 +19219 +19220-19222 +19223-19224 +19225-19226 +19227-19228 +19229-19231 +19232-19233 +19234-19235 +19236-19238 +19239 +19240-19242 +19243-19244 +19245 +19246-19247 +19248 +19249 +19250 +19251-19253 +19254 +19255-19257 +19258 +19259-19260 +19261-19263 +19264-19267 +19268 +19269-19270 +19271-19273 +19274-19276 +19277-19279 +19280 +19281 +19282 +19283-19285 +19286-19288 +19289-19291 +19292-19293 +19294 +19295-19297 +19298-19300 +19301-19303 +19304-19308 +19309 +19310 +19311-19312 +19313 +19314-19316 +19317-19319 +19320-19322 +19323-19326 +19327-19329 +19330-19332 +19333 +19334-19335 +19336-19338 +19339-19341 +19342-19345 +19346 +19347 +19348-19349 +19350 +19351-19353 +19354 +19355 +19356 +19357-19359 +19360-19363 +19364 +19365-19366 +19367-19370 +19371-19373 +19374 +19375-19376 +19377-19378 +19379 +19380 +19381-19382 +19383-19384 +19385 +19386 +19387-19388 +19389 +19390 +19391-19393 +19394-19395 +19396 +19397 +19398 +19399-19401 +19402-19405 +19406 +19407-19408 +19409 +19410 +19411-19414 +19415-19417 +19418 +19419 +19420-19422 +19423-19424 +19425 +19426 +19427-19430 +19431-19434 +19435-19436 +19437-19440 +19441-19444 +19445-19447 +19448-19451 +19452-19455 +19456-19457 +19458-19460 +19461-19462 +19463 +19464-19465 +19466-19467 +19468-19469 +19470-19471 +19472-19473 +19474-19475 +19476-19479 +19480-19482 +19483-19487 +19488-19490 +19491 +19492-19495 +19496-19498 +19499-19502 +19503-19504 +19505 +19506-19508 +19509 +19510 +19511-19513 +19514-19517 +19518-19520 +19521-19522 +19523-19526 +19527-19530 +19531 +19532 +19533 +19534 +19535 +19536-19537 +19538-19539 +19540 +19541-19542 +19543 +19544 +19545-19546 +19547-19548 +19549-19550 +19551 +19552 +19553-19555 +19556-19557 +19558 +19559-19561 +19562-19563 +19564-19566 +19567-19569 +19570-19572 +19573-19574 +19575-19577 +19578-19580 +19581-19582 +19583 +19584-19586 +19587 +19588 +19589-19591 +19592-19595 +19596-19598 +19599-19600 +19601-19604 +19605-19608 +19609-19611 +19612 +19613 +19614-19615 +19616 +19617 +19618-19619 +19620 +19621-19622 +19623 +19624 +19625-19626 +19627-19628 +19629 +19630 +19631 +19632-19634 +19635-19636 +19637 +19638-19640 +19641-19644 +19645-19646 +19647-19648 +19649-19651 +19652-19655 +19656-19657 +19658 +19659-19661 +19662-19665 +19666-19667 +19668-19670 +19671-19676 +19677-19678 +19679 +19680-19682 +19683 +19684 +19685-19687 +19688-19691 +19692-19694 +19695-19698 +19699 +19700 +19701-19702 +19703-19706 +19707-19708 +19709 +19710 +19711 +19712-19713 +19714-19715 +19716 +19717-19718 +19719 +19720 +19721-19722 +19723 +19724-19725 +19726-19727 +19728 +19729 +19730-19732 +19733-19734 +19735 +19736-19738 +19739-19741 +19742-19745 +19746-19750 +19751-19754 +19755-19757 +19758-19760 +19761-19763 +19764-19767 +19768-19770 +19771-19774 +19775-19777 +19778-19779 +19780 +19781-19783 +19784 +19785 +19786-19788 +19789-19792 +19793-19794 +19795 +19796 +19797 +19798-19799 +19800-19801 +19802 +19803 +19804 +19805-19806 +19807 +19808 +19809 +19810 +19811 +19812 +19813 +19814 +19815 +19816 +19817 +19818-19819 +19820-19821 +19822-19824 +19825-19826 +19827-19828 +19829-19831 +19832-19834 +19835-19837 +19838-19840 +19841 +19842-19843 +19844 +19845-19847 +19848-19850 +19851-19852 +19853-19855 +19856-19861 +19862 +19863 +19864-19866 +19867 +19868 +19869-19870 +19871-19873 +19874-19879 +19880-19882 +19883-19888 +19889-19891 +19892 +19893-19895 +19896-19897 +19898-19901 +19902-19903 +19904-19906 +19907-19908 +19909-19911 +19912-19913 +19914 +19915-19917 +19918 +19919 +19920-19922 +19923-19926 +19927-19928 +19929 +19930 +19931 +19932-19933 +19934-19935 +19936 +19937 +19938 +19939-19940 +19941 +19942 +19943-19946 +19947-19950 +19951-19954 +19955-19957 +19958-19962 +19963-19965 +19966-19968 +19969-19971 +19972-19975 +19976-19978 +19979-19980 +19981 +19982-19984 +19985 +19986 +19987-19989 +19990-19993 +19994-19995 +19996 +19997 +19998 +19999-20000 +20001-20003 +20004 +20005-20009 +20010-20013 +20014-20018 +20019-20021 +20022-20024 +20025-20027 +20028-20030 +20031-20033 +20034-20036 +20037-20038 +20039-20041 +20042 +20043 +20044-20046 +20047-20050 +20051-20052 +20053 +20054 +20055 +20056-20057 +20058-20060 +20061 +20062-20066 +20067 +20068 +20069 +20070 +20071 +20072-20074 +20075-20077 +20078-20080 +20081-20083 +20084-20085 +20086-20089 +20090-20091 +20092 +20093-20094 +20095-20096 +20097-20098 +20099 +20100 +20101-20103 +20104-20105 +20106 +20107 +20108-20109 +20110-20111 +20112 +20113 +20114-20116 +20117-20120 +20121-20123 +20124 +20125 +20126 +20127 +20128-20131 +20132 +20133 +20134 +20135-20136 +20137 +20138-20139 +20140 +20141 +20142-20143 +20144-20145 +20146 +20147 +20148 +20149-20151 +20152-20153 +20154-20156 +20157-20158 +20159-20160 +20161 +20162-20164 +20165 +20166 +20167 +20168-20170 +20171-20172 +20173-20175 +20176 +20177-20178 +20179-20182 +20183-20187 +20188 +20189 +20190-20192 +20193 +20194 +20195-20197 +20198-20199 +20200 +20201 +20202 +20203 +20204 +20205-20207 +20208-20211 +20212-20214 +20215 +20216 +20217 +20218 +20219-20220 +20221-20222 +20223-20226 +20227-20228 +20229-20231 +20232 +20233-20235 +20236-20237 +20238-20239 +20240 +20241-20242 +20243-20244 +20245-20246 +20247 +20248 +20249-20251 +20252-20253 +20254-20256 +20257-20258 +20259-20261 +20262 +20263-20264 +20265 +20266 +20267 +20268 +20269 +20270-20273 +20274 +20275 +20276 +20277 +20278-20282 +20283 +20284 +20285 +20286-20288 +20289-20292 +20293-20295 +20296 +20297 +20298-20300 +20301 +20302 +20303-20305 +20306-20307 +20308-20310 +20311-20313 +20314 +20315-20317 +20318 +20319-20321 +20322 +20323 +20324-20326 +20327-20328 +20329-20330 +20331 +20332 +20333-20335 +20336 +20337 +20338-20340 +20341-20342 +20343 +20344-20346 +20347-20348 +20349-20350 +20351-20352 +20353-20355 +20356-20357 +20358-20359 +20360-20362 +20363-20365 +20366-20367 +20368-20369 +20370 +20371 +20372-20374 +20375 +20376 +20377-20380 +20381-20382 +20383 +20384 +20385 +20386-20388 +20389 +20390 +20391 +20392 +20393-20394 +20395 +20396-20397 +20398 +20399-20400 +20401 +20402-20403 +20404 +20405-20407 +20408 +20409 +20410-20411 +20412 +20413-20414 +20415 +20416 +20417-20419 +20420-20421 +20422 +20423-20425 +20426-20428 +20429-20431 +20432-20434 +20435 +20436 +20437 +20438 +20439 +20440 +20441-20443 +20444 +20445-20446 +20447-20448 +20449-20451 +20452-20453 +20454-20455 +20456-20457 +20458-20460 +20461-20463 +20464-20465 +20466 +20467 +20468 +20469 +20470-20472 +20473 +20474-20476 +20477-20478 +20479 +20480 +20481 +20482 +20483 +20484-20486 +20487-20488 +20489-20491 +20492 +20493-20495 +20496 +20497-20499 +20500-20503 +20504 +20505 +20506-20509 +20510-20514 +20515 +20516 +20517-20519 +20520 +20521 +20522-20524 +20525-20526 +20527 +20528 +20529 +20530-20532 +20533-20534 +20535-20536 +20537 +20538 +20539 +20540 +20541 +20542-20543 +20544-20545 +20546-20547 +20548 +20549 +20550-20552 +20553-20554 +20555 +20556 +20557 +20558-20560 +20561-20562 +20563 +20564 +20565 +20566 +20567 +20568 +20569 +20570-20572 +20573-20574 +20575 +20576-20579 +20580 +20581 +20582-20583 +20584-20585 +20586 +20587 +20588-20590 +20591-20592 +20593-20595 +20596 +20597-20598 +20599 +20600 +20601 +20602 +20603 +20604-20605 +20606 +20607 +20608 +20609-20610 +20611-20612 +20613-20614 +20615-20616 +20617 +20618 +20619-20621 +20622-20623 +20624 +20625-20626 +20627-20628 +20629 +20630-20632 +20633 +20634 +20635-20637 +20638-20639 +20640 +20641-20644 +20645 +20646 +20647-20649 +20650-20651 +20652 +20653-20655 +20656-20657 +20658 +20659 +20660 +20661-20662 +20663-20664 +20665 +20666-20668 +20669 +20670 +20671 +20672 +20673-20675 +20676 +20677-20679 +20680 +20681 +20682-20684 +20685-20686 +20687-20688 +20689-20690 +20691-20693 +20694-20696 +20697 +20698-20700 +20701 +20702 +20703-20705 +20706-20707 +20708 +20709 +20710 +20711-20713 +20714-20715 +20716 +20717 +20718 +20719-20721 +20722-20723 +20724-20727 +20728-20730 +20731 +20732 +20733 +20734 +20735 +20736-20738 +20739-20740 +20741 +20742 +20743-20745 +20746-20747 +20748-20750 +20751 +20752-20753 +20754 +20755 +20756 +20757 +20758-20760 +20761-20762 +20763-20764 +20765 +20766 +20767-20769 +20770-20772 +20773-20774 +20775-20776 +20777 +20778 +20779 +20780-20781 +20782 +20783 +20784 +20785-20787 +20788-20789 +20790-20792 +20793-20795 +20796 +20797 +20798-20800 +20801-20803 +20804 +20805 +20806-20808 +20809-20810 +20811-20814 +20815 +20816-20819 +20820 +20821 +20822-20824 +20825-20826 +20827-20828 +20829 +20830 +20831-20833 +20834 +20835-20837 +20838-20839 +20840 +20841-20842 +20843 +20844-20845 +20846-20847 +20848 +20849 +20850-20851 +20852-20853 +20854-20855 +20856-20857 +20858 +20859 +20860-20862 +20863-20864 +20865-20866 +20867-20868 +20869-20870 +20871-20873 +20874-20875 +20876-20877 +20878 +20879 +20880-20882 +20883-20884 +20885 +20886 +20887 +20888-20889 +20890-20891 +20892-20893 +20894-20895 +20896 +20897 +20898-20900 +20901-20902 +20903 +20904-20907 +20908-20909 +20910 +20911 +20912 +20913-20915 +20916-20917 +20918 +20919 +20920-20921 +20922-20923 +20924 +20925-20927 +20928-20929 +20930 +20931 +20932 +20933-20935 +20936 +20937 +20938-20940 +20941-20942 +20943 +20944 +20945 +20946-20948 +20949 +20950-20952 +20953 +20954 +20955 +20956 +20957 +20958-20960 +20961-20962 +20963 +20964 +20965-20966 +20967-20968 +20969-20971 +20972 +20973 +20974-20976 +20977-20978 +20979-20983 +20984 +20985 +20986 +20987-20989 +20990-20991 +20992 +20993-20995 +20996 +20997-20999 +21000 +21001 +21002 +21003 +21004 +21005 +21006 +21007-21009 +21010 +21011 +21012 +21013 +21014 +21015 +21016-21018 +21019 +21020-21022 +21023-21024 +21025 +21026-21029 +21030 +21031-21032 +21033 +21034 +21035 +21036 +21037 +21038 +21039 +21040 +21041 +21042-21043 +21044 +21045 +21046 +21047-21048 +21049 +21050 +21051 +21052 +21053 +21054-21056 +21057 +21058 +21059-21062 +21063 +21064 +21065 +21066 +21067 +21068 +21069-21070 +21071-21074 +21075 +21076 +21077-21078 +21079 +21080 +21081 +21082-21084 +21085-21088 +21089 +21090 +21091 +21092-21093 +21094 +21095-21097 +21098-21100 +21101 +21102 +21103 +21104-21106 +21107-21110 +21111 +21112 +21113 +21114-21115 +21116 +21117 +21118-21120 +21121-21122 +21123 +21124-21127 +21128-21129 +21130-21131 +21132 +21133 +21134 +21135-21136 +21137 +21138 +21139-21140 +21141-21142 +21143 +21144-21146 +21147 +21148 +21149 +21150-21152 +21153-21154 +21155 +21156 +21157 +21158 +21159 +21160-21161 +21162-21163 +21164 +21165 +21166-21168 +21169-21170 +21171 +21172 +21173 +21174 +21175 +21176-21177 +21178 +21179-21180 +21181 +21182 +21183 +21184-21185 +21186-21187 +21188 +21189-21191 +21192-21194 +21195 +21196 +21197-21199 +21200 +21201 +21202-21204 +21205-21206 +21207-21208 +21209-21211 +21212-21213 +21214 +21215 +21216-21218 +21219-21220 +21221 +21222 +21223 +21224 +21225 +21226 +21227-21228 +21229 +21230 +21231-21233 +21234 +21235-21236 +21237 +21238 +21239 +21240-21241 +21242 +21243 +21244 +21245 +21246 +21247 +21248 +21249-21252 +21253-21254 +21255-21256 +21257 +21258 +21259-21261 +21262-21263 +21264 +21265 +21266 +21267-21269 +21270 +21271-21272 +21273-21274 +21275 +21276 +21277-21279 +21280-21281 +21282 +21283 +21284-21285 +21286-21288 +21289 +21290-21291 +21292-21293 +21294 +21295 +21296-21298 +21299-21300 +21301 +21302 +21303 +21304-21305 +21306 +21307 +21308 +21309 +21310 +21311 +21312 +21313-21314 +21315-21317 +21318-21319 +21320-21321 +21322-21323 +21324 +21325-21326 +21327 +21328 +21329-21332 +21333 +21334-21335 +21336-21337 +21338-21339 +21340-21341 +21342 +21343 +21344 +21345-21346 +21347-21348 +21349-21351 +21352-21353 +21354 +21355-21357 +21358-21361 +21362 +21363 +21364 +21365 +21366-21367 +21368 +21369 +21370 +21371 +21372 +21373 +21374-21375 +21376-21378 +21379-21380 +21381-21382 +21383 +21384-21385 +21386 +21387 +21388-21391 +21392-21393 +21394 +21395-21396 +21397-21398 +21399 +21400-21401 +21402-21403 +21404 +21405 +21406-21408 +21409-21410 +21411-21412 +21413-21414 +21415 +21416-21418 +21419-21420 +21421 +21422-21423 +21424 +21425 +21426 +21427-21429 +21430-21433 +21434 +21435 +21436 +21437 +21438 +21439 +21440 +21441 +21442-21443 +21444-21445 +21446-21447 +21448-21449 +21450 +21451-21452 +21453 +21454 +21455 +21456-21457 +21458-21459 +21460 +21461-21462 +21463-21464 +21465 +21466 +21467-21469 +21470-21471 +21472-21473 +21474-21475 +21476 +21477-21479 +21480-21481 +21482-21484 +21485 +21486 +21487-21488 +21489 +21490 +21491 +21492-21494 +21495-21498 +21499 +21500 +21501 +21502 +21503 +21504-21505 +21506-21507 +21508-21509 +21510 +21511 +21512-21513 +21514-21515 +21516 +21517 +21518-21519 +21520-21521 +21522 +21523 +21524-21526 +21527 +21528-21529 +21530-21531 +21532 +21533-21535 +21536-21537 +21538 +21539-21541 +21542-21545 +21546-21547 +21548 +21549 +21550 +21551-21552 +21553 +21554 +21555 +21556-21557 +21558 +21559 +21560 +21561-21562 +21563 +21564-21565 +21566 +21567-21568 +21569-21570 +21571 +21572-21574 +21575-21576 +21577 +21578-21580 +21581-21584 +21585-21586 +21587 +21588 +21589-21591 +21592 +21593 +21594-21596 +21597-21599 +21600 +21601 +21602 +21603 +21604 +21605-21607 +21608 +21609-21610 +21611 +21612 +21613 +21614-21615 +21616-21617 +21618-21619 +21620-21621 +21622 +21623 +21624-21626 +21627-21628 +21629 +21630 +21631 +21632-21634 +21635-21636 +21637-21639 +21640 +21641 +21642 +21643 +21644 +21645 +21646 +21647-21649 +21650-21653 +21654 +21655 +21656 +21657 +21658-21659 +21660 +21661 +21662-21664 +21665-21667 +21668 +21669 +21670 +21671 +21672 +21673 +21674 +21675 +21676-21677 +21678 +21679 +21680-21681 +21682-21683 +21684-21685 +21686 +21687-21688 +21689 +21690-21691 +21692 +21693-21695 +21696-21697 +21698-21699 +21700-21701 +21702 +21703 +21704 +21705 +21706-21708 +21709-21710 +21711 +21712 +21713-21715 +21716 +21717-21719 +21720 +21721 +21722 +21723-21725 +21726 +21727 +21728 +21729 +21730-21732 +21733-21736 +21737-21738 +21739 +21740 +21741 +21742-21743 +21744 +21745 +21746-21748 +21749-21751 +21752-21753 +21754-21755 +21756-21757 +21758-21759 +21760-21762 +21763-21764 +21765 +21766-21767 +21768 +21769 +21770 +21771 +21772-21773 +21774-21775 +21776-21777 +21778 +21779-21780 +21781-21782 +21783-21784 +21785-21786 +21787-21788 +21789-21791 +21792-21793 +21794-21795 +21796-21797 +21798 +21799-21800 +21801-21802 +21803-21804 +21805-21808 +21809 +21810 +21811 +21812-21813 +21814 +21815-21816 +21817-21818 +21819 +21820-21822 +21823 +21824-21826 +21827 +21828 +21829 +21830 +21831 +21832-21834 +21835-21838 +21839 +21840 +21841 +21842-21843 +21844-21846 +21847 +21848-21849 +21850 +21851-21852 +21853-21854 +21855-21856 +21857-21859 +21860-21861 +21862 +21863 +21864-21867 +21868-21869 +21870-21871 +21872-21873 +21874 +21875 +21876 +21877 +21878 +21879 +21880-21883 +21884 +21885 +21886-21887 +21888 +21889 +21890 +21891 +21892-21893 +21894 +21895-21896 +21897-21898 +21899 +21900 +21901 +21902-21904 +21905-21906 +21907-21908 +21909-21910 +21911 +21912-21915 +21916 +21917-21918 +21919 +21920 +21921 +21922-21924 +21925-21926 +21927-21929 +21930 +21931-21932 +21933 +21934 +21935-21936 +21937 +21938-21939 +21940 +21941 +21942 +21943-21945 +21946-21947 +21948 +21949 +21950-21951 +21952 +21953-21956 +21957 +21958-21960 +21961 +21962-21964 +21965-21966 +21967 +21968-21969 +21970-21971 +21972-21974 +21975 +21976-21977 +21978 +21979 +21980 +21981-21983 +21984-21988 +21989 +21990 +21991 +21992-21994 +21995-21996 +21997 +21998 +21999 +22000-22003 +22004-22006 +22007 +22008 +22009 +22010 +22011 +22012-22013 +22014-22015 +22016-22017 +22018-22022 +22023 +22024 +22025 +22026-22028 +22029-22030 +22031 +22032 +22033-22036 +22037-22038 +22039-22041 +22042 +22043 +22044 +22045-22047 +22048-22049 +22050-22052 +22053 +22054-22055 +22056 +22057 +22058 +22059-22060 +22061 +22062-22065 +22066-22068 +22069 +22070 +22071-22072 +22073-22074 +22075 +22076 +22077 +22078-22079 +22080 +22081 +22082-22083 +22084-22085 +22086 +22087 +22088-22089 +22090-22091 +22092-22093 +22094-22095 +22096-22097 +22098-22099 +22100 +22101 +22102-22103 +22104-22105 +22106-22107 +22108 +22109 +22110 +22111-22112 +22113-22114 +22115-22116 +22117-22118 +22119-22120 +22121 +22122 +22123 +22124-22125 +22126-22127 +22128-22129 +22130 +22131 +22132 +22133-22135 +22136 +22137-22139 +22140 +22141-22142 +22143-22144 +22145-22146 +22147-22148 +22149 +22150 +22151-22152 +22153-22154 +22155-22156 +22157-22159 +22160-22161 +22162 +22163 +22164 +22165-22166 +22167-22168 +22169 +22170-22174 +22175 +22176 +22177-22178 +22179 +22180-22182 +22183-22184 +22185 +22186 +22187-22188 +22189-22190 +22191 +22192-22195 +22196-22198 +22199-22201 +22202 +22203 +22204 +22205-22206 +22207-22208 +22209-22211 +22212 +22213-22215 +22216-22217 +22218-22219 +22220 +22221 +22222 +22223-22224 +22225-22227 +22228 +22229 +22230 +22231-22232 +22233 +22234-22235 +22236-22237 +22238 +22239 +22240-22241 +22242 +22243-22244 +22245-22246 +22247 +22248-22249 +22250 +22251-22252 +22253 +22254-22255 +22256 +22257 +22258-22259 +22260 +22261-22262 +22263 +22264 +22265 +22266 +22267-22269 +22270-22272 +22273 +22274-22275 +22276 +22277 +22278-22281 +22282-22283 +22284 +22285 +22286 +22287-22288 +22289 +22290 +22291 +22292 +22293 +22294 +22295-22297 +22298 +22299 +22300 +22301 +22302 +22303 +22304-22305 +22306 +22307-22308 +22309 +22310-22311 +22312 +22313 +22314-22315 +22316 +22317 +22318 +22319 +22320 +22321-22322 +22323-22324 +22325 +22326 +22327 +22328-22329 +22330 +22331 +22332 +22333 +22334-22335 +22336-22337 +22338 +22339 +22340-22342 +22343 +22344 +22345 +22346 +22347-22350 +22351 +22352 +22353 +22354-22355 +22356 +22357-22358 +22359 +22360 +22361 +22362-22363 +22364 +22365 +22366-22367 +22368-22370 +22371-22373 +22374 +22375-22378 +22379-22380 +22381 +22382-22384 +22385-22387 +22388-22392 +22393 +22394 +22395-22397 +22398 +22399 +22400-22402 +22403-22404 +22405-22408 +22409-22411 +22412 +22413 +22414 +22415 +22416 +22417-22418 +22419-22420 +22421-22422 +22423 +22424-22425 +22426 +22427 +22428-22430 +22431-22432 +22433-22434 +22435 +22436 +22437-22440 +22441 +22442-22444 +22445 +22446-22447 +22448-22449 +22450 +22451 +22452 +22453 +22454-22456 +22457 +22458-22459 +22460 +22461-22462 +22463 +22464-22465 +22466-22467 +22468-22471 +22472-22474 +22475 +22476-22478 +22479 +22480 +22481 +22482-22483 +22484-22486 +22487 +22488 +22489-22491 +22492 +22493 +22494 +22495-22497 +22498-22500 +22501 +22502 +22503 +22504 +22505-22507 +22508-22509 +22510 +22511 +22512 +22513-22515 +22516-22517 +22518 +22519 +22520 +22521-22523 +22524-22525 +22526 +22527-22528 +22529 +22530 +22531-22533 +22534-22536 +22537 +22538 +22539 +22540 +22541-22543 +22544-22545 +22546 +22547 +22548 +22549-22551 +22552-22554 +22555 +22556 +22557 +22558-22560 +22561 +22562 +22563 +22564 +22565 +22566 +22567-22569 +22570 +22571-22574 +22575 +22576-22577 +22578-22579 +22580 +22581 +22582 +22583-22584 +22585-22586 +22587-22588 +22589 +22590 +22591 +22592 +22593-22595 +22596 +22597 +22598-22600 +22601 +22602-22603 +22604 +22605-22606 +22607-22609 +22610 +22611-22614 +22615 +22616 +22617-22618 +22619 +22620 +22621 +22622 +22623-22627 +22628-22629 +22630 +22631 +22632-22633 +22634-22636 +22637 +22638 +22639-22640 +22641 +22642 +22643-22645 +22646 +22647-22651 +22652 +22653 +22654 +22655 +22656 +22657 +22658 +22659 +22660 +22661 +22662 +22663 +22664 +22665 +22666 +22667 +22668-22669 +22670 +22671-22673 +22674-22675 +22676 +22677 +22678 +22679-22681 +22682 +22683 +22684 +22685-22689 +22690 +22691 +22692 +22693 +22694 +22695 +22696 +22697-22698 +22699 +22700 +22701 +22702-22703 +22704 +22705 +22706 +22707 +22708-22710 +22711 +22712-22713 +22714 +22715 +22716 +22717-22719 +22720 +22721-22722 +22723 +22724 +22725 +22726-22727 +22728 +22729 +22730 +22731 +22732 +22733 +22734 +22735 +22736-22737 +22738 +22739-22740 +22741 +22742-22743 +22744 +22745 +22746-22747 +22748 +22749-22750 +22751 +22752 +22753 +22754 +22755-22756 +22757 +22758-22759 +22760 +22761 +22762 +22763 +22764 +22765 +22766 +22767 +22768 +22769 +22770 +22771 +22772 +22773-22774 +22775 +22776-22777 +22778 +22779-22780 +22781 +22782-22783 +22784 +22785 +22786 +22787 +22788 +22789 +22790 +22791 +22792-22793 +22794 +22795 +22796-22797 +22798 +22799 +22800 +22801 +22802 +22803-22804 +22805 +22806 +22807 +22808 +22809 +22810 +22811 +22812 +22813 +22814 +22815 +22816 +22817 +22818 +22819 +22820 +22821 +22822 +22823 +22824-22825 +22826 +22827 +22828 +22829 +22830 +22831 +22832 +22833-22834 +22835 +22836-22838 +22839 +22840-22841 +22842 +22843 +22844 +22845-22847 +22848 +22849 +22850 +22851-22852 +22853 +22854 +22855 +22856 +22857 +22858-22861 +22862 +22863 +22864-22866 +22867 +22868-22871 +22872 +22873 +22874-22875 +22876 +22877 +22878 +22879 +22880-22881 +22882 +22883 +22884 +22885 +22886-22888 +22889-22890 +22891-22893 +22894 +22895-22896 +22897-22899 +22900-22902 +22903 +22904 +22905-22906 +22907-22908 +22909 +22910 +22911 +22912 +22913 +22914 +22915-22916 +22917 +22918 +22919 +22920-22923 +22924-22926 +22927 +22928 +22929 +22930-22931 +22932 +22933 +22934 +22935-22937 +22938-22940 +22941 +22942 +22943 +22944 +22945 +22946 +22947 +22948 +22949 +22950 +22951-22952 +22953 +22954 +22955 +22956 +22957-22961 +22962-22964 +22965-22966 +22967 +22968 +22969 +22970 +22971 +22972 +22973-22974 +22975 +22976-22977 +22978 +22979 +22980 +22981 +22982-22984 +22985-22986 +22987 +22988 +22989-22990 +22991-22992 +22993 +22994 +22995-22997 +22998-22999 +23000 +23001 +23002-23003 +23004 +23005 +23006-23009 +23010-23012 +23013-23015 +23016-23017 +23018-23019 +23020-23022 +23023-23024 +23025-23026 +23027-23028 +23029-23031 +23032-23033 +23034-23035 +23036-23038 +23039-23042 +23043 +23044-23047 +23048-23049 +23050-23051 +23052 +23053-23054 +23055-23057 +23058-23060 +23061-23062 +23063-23065 +23066-23068 +23069-23071 +23072-23073 +23074-23075 +23076-23078 +23079-23080 +23081 +23082 +23083 +23084-23085 +23086-23087 +23088-23090 +23091-23094 +23095-23096 +23097-23099 +23100-23103 +23104-23106 +23107-23109 +23110-23111 +23112-23113 +23114-23115 +23116 +23117-23120 +23121-23122 +23123-23124 +23125-23127 +23128 +23129-23131 +23132 +23133 +23134-23135 +23136-23139 +23140-23141 +23142-23143 +23144-23145 +23146-23148 +23149-23150 +23151 +23152 +23153 +23154-23155 +23156-23157 +23158 +23159 +23160 +23161 +23162 +23163 +23164 +23165-23166 +23167-23168 +23169-23170 +23171 +23172-23173 +23174-23175 +23176 +23177-23179 +23180-23181 +23182-23183 +23184 +23185-23186 +23187-23188 +23189 +23190 +23191-23192 +23193-23194 +23195 +23196 +23197-23199 +23200 +23201-23203 +23204 +23205-23206 +23207-23208 +23209-23210 +23211-23213 +23214 +23215 +23216 +23217-23221 +23222-23223 +23224 +23225-23227 +23228-23230 +23231-23232 +23233-23235 +23236 +23237 +23238 +23239 +23240-23242 +23243 +23244 +23245-23247 +23248-23249 +23250 +23251-23252 +23253-23255 +23256-23257 +23258-23259 +23260-23262 +23263 +23264 +23265 +23266-23267 +23268-23270 +23271-23274 +23275-23276 +23277-23278 +23279-23280 +23281-23283 +23284-23286 +23287-23289 +23290-23291 +23292-23294 +23295-23297 +23298 +23299 +23300-23301 +23302 +23303 +23304-23305 +23306-23308 +23309-23311 +23312-23314 +23315 +23316-23317 +23318-23319 +23320-23322 +23323 +23324-23326 +23327-23328 +23329-23330 +23331 +23332 +23333 +23334-23336 +23337-23338 +23339 +23340-23341 +23342-23343 +23344 +23345 +23346 +23347-23350 +23351-23352 +23353 +23354 +23355-23356 +23357-23358 +23359 +23360-23361 +23362-23363 +23364 +23365-23368 +23369-23370 +23371-23373 +23374 +23375 +23376-23377 +23378 +23379-23380 +23381 +23382-23383 +23384 +23385-23386 +23387-23389 +23390 +23391-23392 +23393-23396 +23397 +23398 +23399-23400 +23401 +23402-23405 +23406-23408 +23409-23410 +23411-23412 +23413-23416 +23417-23420 +23421-23423 +23424 +23425 +23426 +23427-23428 +23429-23431 +23432-23433 +23434 +23435-23436 +23437-23438 +23439-23441 +23442-23444 +23445-23446 +23447 +23448-23449 +23450-23452 +23453-23455 +23456-23458 +23459 +23460-23461 +23462-23463 +23464-23466 +23467 +23468-23470 +23471 +23472 +23473 +23474-23475 +23476-23477 +23478 +23479 +23480 +23481-23483 +23484-23485 +23486 +23487-23488 +23489 +23490 +23491 +23492-23495 +23496-23497 +23498 +23499 +23500 +23501 +23502 +23503 +23504 +23505 +23506-23508 +23509-23510 +23511 +23512 +23513 +23514 +23515 +23516 +23517 +23518 +23519 +23520-23521 +23522 +23523-23524 +23525 +23526-23528 +23529-23530 +23531 +23532-23533 +23534-23536 +23537 +23538-23542 +23543 +23544-23545 +23546 +23547-23549 +23550 +23551-23553 +23554 +23555 +23556 +23557 +23558 +23559 +23560 +23561 +23562 +23563 +23564 +23565 +23566 +23567 +23568 +23569 +23570-23572 +23573 +23574 +23575 +23576 +23577 +23578 +23579 +23580 +23581 +23582 +23583 +23584 +23585 +23586 +23587 +23588 +23589 +23590 +23591 +23592 +23593 +23594 +23595 +23596 +23597 +23598-23600 +23601 +23602-23604 +23605-23608 +23609 +23610 +23611-23612 +23613 +23614-23615 +23616-23617 +23618 +23619 +23620-23621 +23622-23623 +23624-23625 +23626 +23627-23630 +23631 +23632 +23633-23636 +23637 +23638-23641 +23642 +23643-23644 +23645 +23646-23648 +23649 +23650 +23651-23652 +23653 +23654-23656 +23657-23659 +23660-23663 +23664 +23665-23669 +23670 +23671 +23672-23674 +23675-23676 +23677 +23678-23679 +23680-23682 +23683 +23684 +23685-23688 +23689-23690 +23691-23693 +23694-23697 +23698 +23699 +23700-23701 +23702-23703 +23704-23705 +23706 +23707 +23708 +23709-23711 +23712-23714 +23715-23716 +23717 +23718-23719 +23720-23722 +23723 +23724 +23725 +23726-23727 +23728-23731 +23732 +23733 +23734-23736 +23737 +23738-23740 +23741 +23742-23744 +23745 +23746-23749 +23750-23752 +23753-23754 +23755-23758 +23759 +23760-23761 +23762 +23763 +23764 +23765 +23766-23767 +23768 +23769 +23770-23771 +23772 +23773-23775 +23776 +23777 +23778-23779 +23780-23782 +23783-23784 +23785 +23786-23787 +23788-23790 +23791-23793 +23794-23795 +23796-23797 +23798-23800 +23801-23802 +23803-23805 +23806-23808 +23809-23810 +23811-23813 +23814-23817 +23818 +23819-23822 +23823-23825 +23826-23828 +23829-23831 +23832-23834 +23835-23836 +23837-23838 +23839-23840 +23841 +23842 +23843-23844 +23845-23847 +23848 +23849 +23850-23852 +23853-23855 +23856-23858 +23859-23860 +23861-23863 +23864 +23865-23868 +23869-23871 +23872-23874 +23875 +23876-23879 +23880-23883 +23884-23885 +23886-23889 +23890-23893 +23894-23895 +23896-23897 +23898-23900 +23901-23903 +23904-23905 +23906-23909 +23910 +23911-23914 +23915-23916 +23917-23922 +23923 +23924-23925 +23926 +23927 +23928-23930 +23931-23934 +23935 +23936-23939 +23940-23943 +23944-23946 +23947 +23948 +23949-23952 +23953-23956 +23957-23960 +23961-23963 +23964-23967 +23968-23970 +23971 +23972 +23973 +23974 +23975-23976 +23977-23978 +23979 +23980-23981 +23982 +23983 +23984-23985 +23986 +23987 +23988-23989 +23990-23991 +23992 +23993-23995 +23996 +23997-24000 +24001-24002 +24003 +24004-24006 +24007-24009 +24010 +24011 +24012-24014 +24015-24017 +24018-24019 +24020-24022 +24023 +24024-24025 +24026-24028 +24029-24030 +24031-24032 +24033-24035 +24036-24037 +24038 +24039-24040 +24041-24043 +24044 +24045-24046 +24047-24049 +24050-24051 +24052-24055 +24056 +24057-24059 +24060 +24061-24063 +24064-24068 +24069-24070 +24071-24072 +24073 +24074-24075 +24076-24079 +24080 +24081 +24082 +24083-24085 +24086 +24087-24088 +24089 +24090-24093 +24094-24095 +24096-24098 +24099 +24100-24104 +24105-24107 +24108-24110 +24111-24113 +24114-24116 +24117-24118 +24119-24121 +24122-24125 +24126-24128 +24129 +24130 +24131 +24132 +24133-24134 +24135-24137 +24138-24141 +24142-24144 +24145 +24146 +24147-24149 +24150 +24151-24152 +24153-24157 +24158 +24159 +24160 +24161 +24162-24164 +24165 +24166-24167 +24168 +24169-24172 +24173-24174 +24175-24178 +24179-24182 +24183-24186 +24187-24188 +24189-24191 +24192-24193 +24194-24197 +24198 +24199 +24200-24202 +24203-24204 +24205-24207 +24208-24209 +24210-24211 +24212-24214 +24215 +24216-24219 +24220-24221 +24222 +24223-24224 +24225 +24226 +24227-24228 +24229-24230 +24231-24233 +24234-24235 +24236-24240 +24241-24243 +24244 +24245-24247 +24248-24249 +24250-24252 +24253 +24254-24257 +24258-24259 +24260-24261 +24262-24264 +24265-24266 +24267-24269 +24270-24274 +24275-24276 +24277-24279 +24280-24281 +24282 +24283 +24284 +24285 +24286 +24287 +24288 +24289-24291 +24292-24293 +24294-24296 +24297-24299 +24300 +24301 +24302 +24303 +24304 +24305 +24306-24307 +24308 +24309 +24310-24311 +24312 +24313-24315 +24316 +24317-24318 +24319-24321 +24322-24323 +24324 +24325-24326 +24327 +24328 +24329 +24330 +24331-24333 +24334-24335 +24336-24338 +24339-24341 +24342 +24343 +24344 +24345-24346 +24347-24348 +24349-24352 +24353-24354 +24355 +24356 +24357 +24358 +24359-24361 +24362 +24363 +24364 +24365 +24366 +24367-24369 +24370 +24371 +24372 +24373 +24374 +24375 +24376-24378 +24379 +24380 +24381 +24382 +24383 +24384-24386 +24387 +24388-24389 +24390 +24392 +24393 +24394 +24395 +24396 +24397 +24398 +24399 +24400-24403 +24404-24406 +24407 +24408-24409 +24410-24411 +24412-24413 +24414 +24415-24416 +24417-24418 +24419-24420 +24421-24422 +24423-24424 +24425-24426 +24427-24428 +24429-24430 +24431 +24432 +24433 +24434-24438 +24439-24441 +24442 +24443 +24444 +24445-24446 +24447-24448 +24449 +24450 +24451 +24452 +24453 +24454-24455 +24456-24458 +24459-24461 +24462 +24463 +24464 +24465 +24466 +24467-24468 +24469-24472 +24473 +24474-24476 +24477-24479 +24480-24481 +24482 +24483 +24484 +24485 +24486 +24487 +24488 +24489 +24490-24491 +24492-24496 +24497-24498 +24499 +24500 +24501 +24502 +24503-24504 +24505-24506 +24507-24508 +24509 +24510 +24511 +24512 +24513 +24514 +24515 +24516 +24517 +24518-24519 +24520-24521 +24522-24523 +24524 +24525 +24526 +24527 +24528 +24529 +24530 +24531-24532 +24533-24534 +24535 +24536-24538 +24539 +24540 +24541 +24542 +24543 +24544-24546 +24547 +24548 +24549 +24550 +24551 +24552 +24553-24554 +24555-24557 +24558-24559 +24560 +24561 +24562 +24563-24568 +24569-24570 +24571-24572 +24573 +24574-24575 +24576-24577 +24578 +24579-24580 +24581-24584 +24585-24586 +24587 +24588-24589 +24590-24591 +24592 +24593 +24594-24595 +24596-24597 +24598-24599 +24600-24602 +24603-24605 +24606 +24607 +24608 +24609 +24610-24612 +24613 +24614-24615 +24616-24617 +24618-24619 +24620-24621 +24622 +24623 +24624 +24625 +24626 +24627 +24628-24629 +24630-24631 +24632-24633 +24634-24636 +24637 +24638 +24639-24640 +24641 +24642 +24643 +24644 +24645-24646 +24647 +24648 +24649 +24650-24651 +24652-24653 +24654-24655 +24656-24657 +24658 +24659 +24660-24661 +24662-24663 +24664 +24665-24667 +24668-24669 +24670 +24671-24672 +24673-24674 +24675-24676 +24677 +24678 +24679 +24680 +24681 +24682-24683 +24684 +24685-24687 +24688-24689 +24690 +24691 +24692 +24693-24695 +24696-24697 +24698 +24699 +24700 +24701-24702 +24703-24704 +24705-24706 +24707 +24708-24710 +24711-24713 +24714-24716 +24717-24721 +24722-24724 +24725 +24726 +24727-24728 +24729-24734 +24735-24737 +24738-24741 +24742 +24743-24745 +24746-24747 +24748-24750 +24751-24752 +24753-24754 +24755-24756 +24757 +24758 +24759 +24760-24761 +24762 +24763-24765 +24766 +24767-24768 +24769 +24770-24772 +24773 +24774-24776 +24777 +24778-24779 +24780 +24781 +24782 +24783 +24784-24785 +24786 +24787 +24788 +24789-24790 +24791 +24792 +24793 +24794 +24795-24796 +24797 +24798-24800 +24801 +24802-24803 +24804 +24805 +24806 +24807-24808 +24809 +24810-24812 +24813-24815 +24816 +24817-24818 +24819 +24820 +24821 +24822-24824 +24825-24827 +24828-24829 +24830 +24831-24833 +24834 +24835-24836 +24837 +24838 +24839-24840 +24841 +24842 +24843 +24844 +24845-24846 +24847 +24848 +24849-24851 +24852 +24853 +24854-24856 +24857-24858 +24859 +24860 +24861-24862 +24863-24865 +24866 +24867 +24868 +24869-24870 +24871 +24872 +24873 +24874 +24875 +24876-24877 +24878 +24879 +24880-24881 +24882 +24883 +24884 +24885 +24886 +24887 +24888 +24889 +24890 +24891 +24892 +24893 +24894 +24895 +24896 +24897 +24898 +24899 +24900-24902 +24903 +24904 +24905 +24906-24907 +24908 +24909 +24910 +24911 +24912 +24913 +24914 +24915-24918 +24919-24920 +24921 +24922-24924 +24925-24926 +24927-24929 +24930-24931 +24932-24934 +24935 +24936-24938 +24939 +24940 +24941 +24942-24943 +24944 +24945 +24946 +24947 +24948 +24949 +24950 +24951 +24952 +24953 +24954 +24955 +24956 +24957-24958 +24959-24960 +24961-24963 +24964-24966 +24967-24969 +24970 +24971 +24972 +24973 +24974 +24975-24976 +24977-24979 +24980 +24981-24982 +24983 +24984-24985 +24986 +24987-24988 +24989-24991 +24992-24994 +24995 +24996 +24997-24998 +24999-25001 +25002-25004 +25005 +25006-25008 +25009-25010 +25011 +25012-25014 +25015-25017 +25018 +25019 +25020-25023 +25024-25027 +25028-25029 +25030 +25031-25033 +25034 +25035 +25036 +25037 +25038 +25039-25040 +25041 +25042-25044 +25045 +25046 +25047 +25048-25049 +25050 +25051 +25052-25053 +25054 +25055 +25056-25057 +25058-25059 +25060-25062 +25063-25064 +25065 +25066 +25067-25069 +25070 +25071 +25072-25073 +25074 +25075 +25076-25078 +25079-25080 +25081-25083 +25084 +25085-25087 +25088-25090 +25091-25092 +25093-25095 +25096 +25097 +25098 +25099 +25100-25101 +25102-25104 +25105-25107 +25108-25110 +25111 +25112 +25113-25116 +25117 +25118 +25119 +25120-25123 +25124 +25125-25126 +25127 +25128-25129 +25130 +25131 +25132-25134 +25135-25136 +25137 +25138-25139 +25140 +25141 +25142 +25143 +25144-25146 +25147-25148 +25149 +25150 +25151-25154 +25155 +25156 +25157-25159 +25160 +25161-25163 +25164-25165 +25166 +25167 +25168-25169 +25170 +25171 +25172 +25173-25174 +25175 +25176 +25177-25179 +25180-25181 +25182 +25183-25185 +25186-25188 +25189-25190 +25191-25192 +25193-25194 +25195-25200 +25201-25203 +25204-25205 +25206-25207 +25208-25209 +25210-25211 +25212 +25213-25215 +25216 +25217-25218 +25219 +25220-25222 +25223-25225 +25226-25228 +25229 +25230 +25231 +25232 +25233 +25234-25235 +25236 +25237-25238 +25239-25240 +25241-25243 +25244 +25245 +25246 +25247-25249 +25250-25251 +25252 +25253 +25254 +25255-25256 +25257 +25258-25261 +25262-25263 +25264 +25265-25266 +25267-25268 +25269 +25270 +25271-25272 +25273-25274 +25275 +25276 +25277 +25278 +25279 +25280 +25281 +25282-25284 +25285 +25286-25288 +25289 +25290 +25291-25292 +25293-25294 +25295 +25296 +25297-25299 +25300-25301 +25302 +25303-25304 +25305-25308 +25309-25312 +25313 +25314-25315 +25316 +25317-25318 +25319 +25320-25322 +25323 +25324 +25325 +25326-25328 +25329-25331 +25332-25334 +25335-25336 +25337-25338 +25339-25342 +25343-25345 +25346-25347 +25348-25349 +25350-25351 +25352 +25353-25356 +25357-25358 +25359-25360 +25361-25362 +25363 +25364 +25365-25368 +25369-25371 +25372-25374 +25375 +25376 +25377 +25378 +25379 +25380-25381 +25382-25383 +25384 +25385 +25386-25387 +25388-25390 +25391-25392 +25393-25394 +25395-25397 +25398-25399 +25400-25401 +25402-25404 +25405-25406 +25407-25409 +25410 +25411 +25412 +25413 +25414 +25415-25416 +25417 +25418-25419 +25420 +25421-25422 +25423 +25424-25425 +25426 +25427-25428 +25429-25430 +25431-25433 +25434-25436 +25437 +25438 +25439 +25440-25441 +25442 +25443 +25444-25445 +25446-25447 +25448 +25449 +25450 +25451-25454 +25455 +25456 +25457 +25458 +25459-25460 +25461-25462 +25463-25464 +25465 +25466-25467 +25468 +25469-25471 +25472-25474 +25475 +25476 +25477 +25478-25482 +25483-25484 +25485-25487 +25488 +25489 +25490-25491 +25492 +25493 +25494 +25495-25496 +25497 +25498 +25499-25501 +25502 +25503 +25504 +25505 +25506-25507 +25508 +25509-25513 +25514 +25515-25517 +25518 +25519 +25520 +25521 +25522-25523 +25524 +25525-25527 +25528-25530 +25531 +25532 +25533 +25534-25535 +25536-25538 +25539 +25540 +25541 +25542 +25543 +25544 +25545 +25546 +25547 +25548-25552 +25553 +25554-25555 +25556-25557 +25558 +25559-25560 +25561 +25562-25563 +25564-25565 +25566-25567 +25568 +25569 +25570-25571 +25572-25574 +25575-25577 +25578-25579 +25580 +25581 +25582 +25583-25586 +25587 +25588-25589 +25590 +25591-25593 +25594 +25595-25598 +25599 +25600 +25601 +25602 +25603-25604 +25605 +25606 +25607-25609 +25610-25612 +25613-25614 +25615 +25616 +25617-25618 +25619 +25620 +25621 +25622 +25623-25625 +25626-25627 +25628 +25629 +25630-25631 +25632-25633 +25634 +25635-25637 +25638 +25639 +25640-25641 +25642 +25643 +25644 +25645 +25646-25648 +25649 +25650-25651 +25652 +25653-25655 +25656-25657 +25658-25663 +25664 +25665 +25666 +25667-25669 +25670-25671 +25672 +25673-25675 +25676 +25677-25678 +25679-25684 +25685 +25686 +25687-25689 +25690-25694 +25695-25697 +25698-25700 +25701 +25702 +25703 +25704-25707 +25708 +25709-25710 +25711-25713 +25714 +25715-25716 +25717-25718 +25719-25722 +25723-25724 +25725 +25726-25727 +25728-25730 +25731 +25732 +25733-25734 +25735-25736 +25737-25738 +25739-25740 +25741-25742 +25743 +25744-25746 +25747 +25748-25749 +25750-25752 +25753 +25754 +25755-25756 +25757-25760 +25761-25762 +25763 +25764 +25765-25766 +25767 +25768-25770 +25771 +25772 +25773 +25774-25776 +25777-25778 +25779 +25780-25782 +25783-25785 +25786-25787 +25788-25789 +25790-25792 +25793-25795 +25796 +25797-25798 +25799-25801 +25802-25803 +25804-25805 +25806-25808 +25809 +25810 +25811-25813 +25814-25818 +25819-25821 +25822-25824 +25825-25828 +25829 +25830 +25831-25833 +25834-25837 +25838-25840 +25841-25844 +25845 +25846-25849 +25850-25851 +25852 +25853-25855 +25856-25857 +25858-25859 +25860-25862 +25863-25864 +25865-25867 +25868 +25869-25871 +25872-25875 +25876 +25877 +25878-25880 +25881-25883 +25884-25886 +25887-25889 +25890-25892 +25893-25895 +25896 +25897-25898 +25899-25900 +25901-25902 +25903-25904 +25905-25906 +25907-25908 +25909 +25910 +25911-25913 +25914 +25915 +25916-25917 +25918-25920 +25921-25922 +25923 +25924-25926 +25927-25928 +25929 +25930 +25931-25932 +25933 +25934-25935 +25936-25937 +25938 +25939 +25940 +25941 +25942-25944 +25945-25947 +25948-25949 +25950-25951 +25952-25955 +25956 +25957-25958 +25959 +25960-25961 +25962-25963 +25964 +25965 +25966 +25967-25969 +25970 +25971 +25972 +25973 +25974 +25975 +25976-25978 +25979 +25980 +25981-25982 +25983 +25984-25986 +25987-25988 +25989-25990 +25991-25993 +25994 +25995 +25996-25997 +25998-25999 +26000-26002 +26003 +26004-26006 +26007-26009 +26010-26012 +26013 +26014 +26015-26016 +26017 +26018 +26019-26020 +26021-26022 +26023 +26024 +26025-26026 +26027-26028 +26029-26030 +26031 +26032-26034 +26035-26037 +26038 +26039 +26040-26042 +26043-26045 +26046-26047 +26048-26049 +26050-26052 +26053-26055 +26056-26059 +26060-26062 +26063-26064 +26065-26067 +26068-26069 +26070-26071 +26072 +26073-26074 +26075 +26076-26078 +26079-26080 +26081 +26082-26083 +26084-26086 +26087-26089 +26090-26091 +26092-26095 +26096-26098 +26099-26102 +26103-26104 +26105-26107 +26108-26110 +26111 +26112 +26113-26114 +26115 +26116-26117 +26118 +26119-26120 +26121 +26122 +26123 +26124-26126 +26127 +26128-26130 +26131-26133 +26134-26136 +26137-26139 +26140-26141 +26142-26145 +26146-26147 +26148 +26149-26150 +26151-26152 +26153 +26154 +26155 +26156-26158 +26159-26160 +26161 +26162-26163 +26164 +26165 +26166-26168 +26169 +26170-26171 +26172-26173 +26174 +26175-26176 +26177 +26178-26180 +26181 +26182-26185 +26186-26187 +26188-26190 +26191-26193 +26194-26195 +26196-26198 +26199 +26200 +26201-26203 +26204-26205 +26206-26208 +26209-26210 +26211 +26212-26213 +26214 +26215-26216 +26217 +26218-26220 +26221-26223 +26224-26226 +26227-26229 +26230 +26231-26233 +26234-26235 +26236-26238 +26239 +26240-26241 +26242 +26243-26244 +26245-26247 +26248 +26249-26251 +26252 +26253 +26254-26256 +26257 +26258 +26259 +26260 +26261 +26262 +26263 +26264-26265 +26266-26267 +26268 +26269-26271 +26272 +26273 +26274 +26275 +26276 +26277 +26278-26280 +26281-26282 +26283 +26284-26286 +26287-26290 +26291 +26292-26293 +26294 +26295 +26296 +26297-26298 +26299 +26300-26301 +26302 +26303-26304 +26305 +26306-26308 +26309 +26310 +26311 +26312-26314 +26315-26316 +26317 +26318 +26319-26321 +26322 +26323-26325 +26326-26327 +26328 +26329-26330 +26331-26332 +26333-26334 +26335 +26336-26338 +26339-26340 +26341 +26342 +26343-26345 +26346-26347 +26348 +26349 +26350-26352 +26353-26354 +26355-26356 +26357-26360 +26361 +26362 +26363 +26364 +26365-26367 +26368-26369 +26370 +26371-26372 +26373-26374 +26375-26377 +26378-26380 +26381 +26382-26383 +26384 +26385-26386 +26387-26388 +26389-26391 +26392-26394 +26395-26396 +26397 +26398 +26399-26401 +26402-26404 +26405 +26406-26408 +26409-26411 +26412 +26413 +26414 +26415-26416 +26417 +26418 +26419-26421 +26422-26424 +26425 +26426 +26427 +26428-26430 +26431-26432 +26433 +26434 +26435 +26436-26437 +26438-26440 +26441-26443 +26444-26446 +26447-26448 +26449-26451 +26452-26454 +26455 +26456-26458 +26459-26460 +26461 +26462-26463 +26464-26465 +26466-26468 +26469-26470 +26471 +26472 +26473 +26474-26475 +26476 +26477 +26478 +26479-26480 +26481 +26482 +26483-26485 +26486 +26487 +26488-26489 +26490-26491 +26492-26494 +26495-26497 +26498 +26499 +26500 +26501 +26502 +26503-26505 +26506-26508 +26509 +26510-26511 +26512 +26513 +26514 +26515 +26516 +26517 +26518 +26519 +26520-26522 +26523 +26524-26525 +26526-26527 +26528 +26529 +26530 +26531-26534 +26535 +26536-26537 +26538 +26539-26541 +26542 +26543-26545 +26546-26547 +26548-26549 +26550-26551 +26552 +26553 +26554 +26555 +26556 +26557-26559 +26560-26561 +26562-26563 +26564 +26565-26566 +26567-26569 +26570-26572 +26573 +26574-26575 +26576 +26577-26579 +26580 +26581 +26582 +26583 +26584-26586 +26587 +26588 +26589 +26590-26591 +26592 +26593-26595 +26596 +26597 +26598 +26599-26600 +26601-26602 +26603-26606 +26607-26609 +26610 +26611 +26612-26613 +26614-26616 +26617-26619 +26620 +26621 +26622-26624 +26625 +26626-26629 +26630 +26631-26634 +26635-26637 +26638-26640 +26641-26642 +26643 +26644 +26645 +26646-26648 +26649 +26650 +26651-26652 +26653-26656 +26657-26660 +26661 +26662-26663 +26664 +26665-26667 +26668 +26669-26670 +26671-26673 +26674 +26675 +26676-26678 +26679-26680 +26681-26684 +26685 +26686-26687 +26688 +26689 +26690-26691 +26692 +26693-26694 +26695-26697 +26698-26699 +26700 +26701 +26702-26703 +26704 +26705 +26706 +26707-26708 +26709 +26710-26711 +26712 +26713-26715 +26716 +26717-26719 +26720 +26721-26722 +26723 +26724-26726 +26727 +26728 +26729 +26730-26732 +26733 +26734 +26735-26738 +26739 +26740-26741 +26742 +26743-26744 +26745-26748 +26749-26751 +26752-26754 +26755-26756 +26757 +26758-26759 +26760-26762 +26763 +26764 +26765 +26766 +26767-26769 +26770 +26771 +26772-26774 +26775 +26776 +26777 +26778 +26779-26781 +26782-26784 +26785 +26786-26789 +26790 +26791-26793 +26794 +26795 +26796 +26797-26799 +26800 +26801 +26802-26803 +26804 +26805 +26806-26808 +26809-26812 +26813 +26814 +26815 +26816 +26817 +26818-26819 +26820 +26821-26825 +26826 +26827 +26828 +26829 +26830 +26831 +26832-26833 +26834 +26835 +26836 +26837-26838 +26839-26841 +26842 +26843 +26844-26846 +26847-26848 +26849 +26850 +26851-26853 +26854 +26855 +26856-26859 +26860-26862 +26863 +26864-26865 +26866-26867 +26868 +26869 +26870 +26871-26872 +26873 +26874-26876 +26877 +26878-26879 +26880 +26881-26882 +26883 +26884 +26885-26887 +26888 +26889 +26890-26891 +26892-26893 +26894-26895 +26896-26897 +26898-26899 +26900 +26901-26903 +26904 +26905-26906 +26907 +26908 +26909 +26910 +26911-26913 +26914-26915 +26916 +26917 +26918-26919 +26920-26921 +26922-26924 +26925-26928 +26929-26931 +26932-26934 +26935-26937 +26938-26939 +26940-26941 +26942 +26943-26945 +26946-26948 +26949-26950 +26951-26953 +26954 +26955 +26956-26957 +26958 +26959 +26960 +26961-26962 +26963-26965 +26966-26968 +26969 +26970 +26971 +26972-26974 +26975 +26976 +26977-26978 +26979 +26980-26982 +26983 +26984-26986 +26987 +26988-26990 +26991-26992 +26993-26995 +26996 +26997-26999 +27000 +27001 +27002 +27003-27005 +27006-27008 +27009-27011 +27012-27015 +27016-27018 +27019-27022 +27023-27026 +27027 +27028-27029 +27030-27032 +27033 +27034 +27035 +27036-27037 +27038-27039 +27040-27041 +27042-27044 +27045-27046 +27047-27049 +27050-27052 +27053 +27054-27055 +27056-27058 +27059 +27060-27061 +27062 +27063 +27064-27067 +27068-27069 +27070 +27071-27072 +27073 +27074-27075 +27076 +27077 +27078-27079 +27080 +27081-27083 +27084-27085 +27086 +27087-27089 +27090 +27091-27092 +27093-27095 +27096 +27097-27098 +27099 +27100-27103 +27104-27105 +27106-27109 +27110-27111 +27112-27113 +27114-27116 +27117 +27118 +27119-27121 +27122 +27123-27124 +27125-27127 +27128-27130 +27131 +27132-27133 +27134 +27135 +27136 +27137-27139 +27140 +27141 +27142 +27143-27144 +27145-27146 +27147-27148 +27149 +27150-27151 +27152-27153 +27154-27155 +27156-27162 +27163-27164 +27165-27167 +27168-27170 +27171-27174 +27175-27177 +27178-27180 +27181-27182 +27183-27184 +27185-27186 +27187-27189 +27190-27192 +27193-27195 +27196-27200 +27201-27202 +27203-27205 +27206 +27207-27208 +27209-27211 +27212-27215 +27216-27219 +27220-27221 +27222-27223 +27224-27225 +27226-27228 +27229-27233 +27234-27236 +27237 +27238 +27239-27241 +27242 +27243-27244 +27245-27247 +27248 +27249 +27250-27251 +27252 +27253 +27254 +27255-27256 +27257 +27258 +27259 +27260-27261 +27262-27263 +27264 +27265 +27266 +27267 +27268-27269 +27270-27272 +27273 +27274 +27275 +27276-27278 +27279-27280 +27281 +27282 +27283-27286 +27287 +27288-27292 +27293 +27294 +27295 +27296 +27297-27299 +27300-27301 +27302 +27303-27304 +27305-27307 +27308-27310 +27311-27313 +27314 +27315 +27316 +27317-27318 +27319-27320 +27321-27322 +27323-27324 +27325-27327 +27328 +27329-27331 +27332-27333 +27334-27335 +27336 +27337 +27338-27339 +27340 +27341-27344 +27345 +27346 +27347-27350 +27351-27352 +27353-27357 +27358-27359 +27360-27363 +27364-27365 +27366-27368 +27369-27372 +27373 +27374 +27375-27378 +27379 +27380-27382 +27383-27384 +27385-27386 +27387-27389 +27390 +27391 +27392-27395 +27396 +27397-27400 +27401-27402 +27403 +27404-27405 +27406 +27407-27409 +27410-27412 +27413 +27414-27416 +27417 +27418-27419 +27420-27421 +27422 +27423 +27424-27426 +27427-27428 +27429-27431 +27432-27433 +27434-27435 +27436-27438 +27439-27441 +27442-27444 +27445-27447 +27448-27449 +27450 +27451 +27452-27453 +27454-27455 +27456-27459 +27460 +27461 +27462 +27463 +27464 +27465-27467 +27468 +27469 +27470 +27471 +27472 +27473 +27474-27475 +27476 +27477 +27478 +27479 +27480 +27481 +27482-27484 +27485 +27486 +27487 +27488 +27489-27492 +27493-27494 +27495 +27496 +27497 +27498 +27499 +27500 +27501-27503 +27504 +27505 +27506 +27507 +27508 +27509-27510 +27511 +27512-27513 +27514-27515 +27516 +27517 +27518 +27519-27520 +27521 +27522-27523 +27524-27525 +27526 +27527 +27528-27529 +27530 +27531 +27532-27533 +27534 +27535 +27536-27537 +27538-27539 +27540-27542 +27543-27544 +27545-27547 +27548 +27549-27552 +27553-27554 +27555 +27556-27557 +27558-27559 +27560 +27561-27563 +27564 +27565-27566 +27567 +27568-27571 +27572-27575 +27576-27577 +27578-27579 +27580 +27581-27583 +27584-27585 +27586-27587 +27588 +27589-27592 +27593-27596 +27597-27598 +27599-27600 +27601-27602 +27603 +27604-27607 +27608-27610 +27611-27614 +27615-27616 +27617-27619 +27620 +27621 +27622-27624 +27625 +27626-27628 +27629 +27630 +27631-27634 +27635 +27636-27638 +27639 +27640-27643 +27644 +27645-27647 +27648 +27649-27651 +27652 +27653-27655 +27656-27657 +27658-27659 +27660-27662 +27663-27664 +27665-27667 +27668 +27669-27670 +27671-27673 +27674 +27675-27678 +27679-27681 +27682-27684 +27685 +27686 +27687 +27688 +27689-27690 +27691 +27692-27693 +27694 +27695-27696 +27697 +27698 +27699-27700 +27701 +27702-27703 +27704-27706 +27707-27708 +27709 +27710 +27711 +27712 +27713-27714 +27715 +27716-27717 +27718-27719 +27720 +27721 +27722 +27723 +27724 +27725-27726 +27727-27728 +27729 +27730 +27731-27732 +27733 +27734 +27735-27736 +27737 +27738 +27739-27740 +27741-27742 +27743-27746 +27747-27748 +27749-27751 +27752-27753 +27754 +27755 +27756-27757 +27758-27759 +27760 +27761 +27762 +27763 +27764 +27765-27766 +27767-27769 +27770 +27771-27773 +27774-27775 +27776-27778 +27779-27782 +27783 +27784-27787 +27788-27789 +27790-27791 +27792-27793 +27794-27796 +27797 +27798-27799 +27800-27802 +27803 +27804-27805 +27806-27808 +27809-27812 +27813-27814 +27815-27818 +27819-27821 +27822-27823 +27824-27828 +27829-27830 +27831-27833 +27834-27836 +27837-27838 +27839 +27840-27842 +27843 +27844-27846 +27847-27848 +27849-27850 +27851-27854 +27855 +27856-27857 +27858-27860 +27861-27865 +27866-27870 +27871 +27872-27875 +27876 +27877 +27878-27880 +27881 +27882 +27883-27886 +27887 +27888-27889 +27890 +27891-27894 +27895 +27896-27898 +27899 +27900-27902 +27903 +27904-27906 +27907-27908 +27909-27910 +27911-27913 +27914-27916 +27917-27919 +27920-27921 +27922-27923 +27924-27926 +27927 +27928-27931 +27932-27934 +27935-27937 +27938 +27939 +27940 +27941 +27942-27943 +27944 +27945-27946 +27947 +27948-27949 +27950 +27951 +27952-27953 +27954 +27955-27956 +27957-27958 +27959 +27960 +27961 +27962 +27963 +27964-27965 +27966 +27967-27968 +27969-27970 +27971 +27972 +27973 +27974-27975 +27976 +27977-27978 +27979-27980 +27981-27982 +27983-27984 +27985-27986 +27987-27988 +27989-27990 +27991-27992 +27993-27994 +27995-27997 +27998-27999 +28000-28002 +28003-28004 +28005-28006 +28007 +28008-28014 +28015-28016 +28017-28019 +28020-28021 +28022-28024 +28025-28027 +28028-28032 +28033-28035 +28036 +28037-28039 +28040-28043 +28044 +28045-28046 +28047 +28048-28050 +28051-28054 +28055 +28056-28058 +28059-28061 +28062-28065 +28066-28068 +28069 +28070-28074 +28075 +28076-28079 +28080-28081 +28082-28086 +28087-28088 +28089-28090 +28091-28092 +28093-28094 +28095 +28096-28098 +28099 +28100-28102 +28103-28105 +28106 +28107 +28108 +28109 +28110-28114 +28115-28116 +28117 +28118 +28119 +28120-28121 +28122 +28123-28124 +28125 +28126 +28127-28128 +28129 +28130 +28131 +28132 +28133-28134 +28135-28136 +28137 +28138 +28139 +28140 +28141 +28142-28143 +28144-28145 +28146-28147 +28148-28149 +28150 +28151 +28152 +28153 +28154-28155 +28156 +28157-28158 +28159-28160 +28161 +28162 +28163 +28164-28165 +28166 +28167-28168 +28169-28170 +28171-28175 +28176-28177 +28178-28180 +28181 +28182-28185 +28186-28188 +28189-28190 +28191 +28192-28193 +28194-28196 +28197-28198 +28199-28200 +28201-28204 +28205-28206 +28207-28209 +28210-28211 +28212-28213 +28214-28216 +28217 +28218-28219 +28220-28222 +28223-28226 +28227-28228 +28229-28232 +28233-28236 +28237-28238 +28239-28245 +28246-28249 +28250-28251 +28252-28254 +28255-28256 +28257-28259 +28260 +28261-28264 +28265-28266 +28267-28269 +28270 +28271-28275 +28276-28278 +28279-28282 +28283 +28284 +28285 +28286 +28287-28288 +28289 +28290-28291 +28292-28293 +28294 +28295 +28296 +28297-28298 +28299 +28300-28301 +28302-28303 +28304-28306 +28307-28308 +28309-28311 +28312-28314 +28315 +28316-28319 +28320-28321 +28322-28324 +28325-28328 +28329-28331 +28332-28333 +28334-28338 +28339-28341 +28342-28343 +28344-28346 +28347-28351 +28352-28354 +28355 +28356-28359 +28360-28362 +28363 +28364-28367 +28368-28370 +28371-28372 +28373 +28374-28378 +28379-28380 +28381-28382 +28383-28384 +28385-28386 +28387-28389 +28390-28391 +28392-28393 +28394-28395 +28396-28398 +28399-28400 +28401-28403 +28404 +28405-28409 +28410-28412 +28413-28416 +28417 +28418 +28419 +28420 +28421-28422 +28423 +28424 +28425 +28426 +28427-28429 +28430 +28431-28435 +28436-28437 +28438 +28439 +28440-28442 +28443-28444 +28445 +28446 +28447 +28448 +28449 +28450-28451 +28452-28453 +28454-28456 +28457 +28458 +28459-28461 +28462 +28463 +28464 +28465 +28466-28470 +28471-28475 +28476-28477 +28478-28480 +28481 +28482 +28483-28485 +28486 +28487 +28488-28490 +28491 +28492-28494 +28495-28497 +28498-28501 +28502 +28503 +28504-28506 +28507-28509 +28510-28512 +28513-28517 +28518 +28519-28521 +28522-28523 +28524-28527 +28528-28530 +28531-28533 +28534 +28535-28536 +28537 +28538-28539 +28540-28542 +28543-28544 +28545-28546 +28547-28548 +28549-28551 +28552 +28553 +28554 +28555 +28556-28557 +28558-28559 +28560 +28561 +28562 +28563-28564 +28565 +28566-28567 +28568 +28569 +28570-28571 +28572 +28573-28576 +28577-28578 +28579-28580 +28581 +28582-28583 +28584-28585 +28586-28587 +28588-28589 +28590-28591 +28592-28593 +28594-28595 +28596-28598 +28599-28600 +28601-28603 +28604 +28605-28607 +28608-28609 +28610-28612 +28613 +28614-28618 +28619-28621 +28622-28625 +28626 +28627-28628 +28629 +28630-28631 +28632 +28633-28634 +28635-28636 +28637-28640 +28641-28642 +28643-28644 +28645-28646 +28647-28648 +28649-28651 +28652 +28653-28656 +28657-28659 +28660-28663 +28664 +28665-28666 +28667-28668 +28669-28670 +28671-28672 +28673-28675 +28676-28677 +28678-28679 +28680 +28681 +28682-28684 +28685-28686 +28687-28689 +28690-28692 +28693-28697 +28698 +28699-28700 +28701-28702 +28703 +28704-28706 +28707-28709 +28710 +28711-28712 +28713-28715 +28716 +28717 +28718-28719 +28720 +28721-28725 +28726-28728 +28729 +28730 +28731 +28732-28733 +28734-28737 +28738-28739 +28740-28742 +28743 +28744-28747 +28748-28750 +28751-28755 +28756 +28757-28758 +28759 +28760-28761 +28762 +28763-28764 +28765-28766 +28767-28769 +28770 +28771-28773 +28774-28776 +28777-28780 +28781 +28782-28783 +28784 +28785-28787 +28788-28790 +28791-28792 +28793-28795 +28796 +28797-28798 +28799 +28800-28801 +28802-28803 +28804-28807 +28808-28809 +28810-28811 +28812-28814 +28815 +28816-28817 +28818-28819 +28820-28822 +28823 +28824-28825 +28826-28829 +28830-28832 +28833-28835 +28836-28837 +28838-28839 +28840-28842 +28843-28844 +28845-28848 +28849 +28850 +28851-28853 +28854-28856 +28857-28859 +28860 +28861-28863 +28864-28866 +28867-28870 +28871-28875 +28876 +28877 +28878-28880 +28881 +28882-28883 +28884 +28885-28888 +28889-28891 +28892-28894 +28895-28896 +28897-28900 +28901-28903 +28904 +28905-28908 +28909 +28910 +28911-28913 +28914-28917 +28918-28919 +28920-28922 +28923-28924 +28925-28926 +28927 +28928-28930 +28931-28933 +28934-28936 +28937-28939 +28940-28941 +28942-28943 +28944-28947 +28948-28949 +28950-28952 +28953-28955 +28956 +28957-28958 +28959-28962 +28963-28964 +28965-28967 +28968-28970 +28971-28972 +28973 +28974 +28975-28977 +28978 +28979-28981 +28982 +28983-28986 +28987-28988 +28989 +28990-28991 +28992-28993 +28994-28995 +28996-28998 +28999 +29000-29003 +29004 +29005 +29006-29007 +29008-29009 +29010-29012 +29013-29016 +29017-29019 +29020 +29021-29022 +29023-29025 +29026-29028 +29029 +29030-29032 +29033-29035 +29036-29038 +29039 +29040-29043 +29044 +29045-29046 +29047-29049 +29050-29051 +29052-29054 +29055-29056 +29057-29060 +29061-29063 +29064-29068 +29069-29070 +29071-29073 +29074-29075 +29076-29078 +29079-29080 +29081 +29082 +29083 +29084 +29085 +29086-29089 +29090 +29091 +29092-29094 +29095 +29096 +29097-29099 +29100 +29101-29102 +29103-29105 +29106 +29107 +29108 +29109-29110 +29111 +29112 +29113 +29114 +29115 +29116-29118 +29119-29120 +29121 +29122-29124 +29125-29127 +29128-29130 +29131-29132 +29133 +29134 +29135 +29136 +29137 +29138-29140 +29141 +29142 +29143-29144 +29145-29146 +29147-29148 +29149 +29150 +29151 +29152-29153 +29154-29155 +29156-29158 +29159-29160 +29161-29163 +29164-29168 +29169 +29170 +29171-29172 +29173-29176 +29177-29179 +29180 +29181 +29182-29183 +29184-29185 +29186-29188 +29189 +29190 +29191 +29192-29194 +29195 +29196 +29197 +29198-29199 +29200 +29201-29204 +29205-29206 +29207-29209 +29210 +29211 +29212 +29213-29214 +29215-29216 +29217 +29218-29221 +29222-29223 +29224 +29225 +29226-29228 +29229-29232 +29233 +29234 +29235-29236 +29237-29238 +29239-29241 +29242-29244 +29245 +29246 +29247 +29248-29250 +29251-29252 +29253 +29254-29256 +29257-29258 +29259 +29260-29261 +29262 +29263-29264 +29265 +29266-29268 +29269 +29270-29271 +29272 +29273 +29274-29275 +29276-29277 +29278-29279 +29280-29281 +29282-29283 +29284-29285 +29286-29288 +29289 +29290-29292 +29293 +29294-29296 +29297 +29298-29299 +29300 +29301 +29302-29303 +29304 +29305-29306 +29307-29308 +29309 +29310 +29311-29312 +29313-29314 +29315-29316 +29317-29318 +29319-29320 +29321 +29322-29324 +29325-29326 +29327 +29328 +29329 +29330-29332 +29333-29335 +29336-29338 +29339 +29340 +29341 +29342-29345 +29346 +29347 +29348-29350 +29351 +29352 +29353 +29354 +29355-29356 +29357 +29358-29360 +29361 +29362 +29363-29365 +29366 +29367-29369 +29370-29371 +29372 +29373-29374 +29375 +29376-29377 +29378-29379 +29380 +29381 +29382-29383 +29384 +29385-29387 +29388 +29389 +29390-29393 +29394 +29395 +29396 +29397 +29398 +29399-29401 +29402-29403 +29404 +29405-29407 +29408-29410 +29411 +29412 +29413-29414 +29415 +29416-29417 +29418-29419 +29420-29422 +29423-29425 +29426-29427 +29428 +29429-29431 +29432-29434 +29435 +29436-29438 +29439-29441 +29442 +29443 +29444 +29445-29446 +29447 +29448 +29449-29451 +29452-29454 +29455 +29456 +29457 +29458-29460 +29461-29462 +29463 +29464 +29465 +29466-29467 +29468-29470 +29471-29473 +29474-29476 +29477-29478 +29479-29481 +29482-29484 +29485 +29486-29488 +29489-29490 +29491 +29492-29493 +29494-29495 +29496-29498 +29499-29500 +29501 +29502-29503 +29504 +29505 +29506 +29507-29508 +29509 +29510 +29511-29513 +29514 +29515 +29516-29517 +29518-29519 +29520-29522 +29523-29525 +29526 +29527 +29528 +29529 +29530 +29531 +29532 +29533 +29534 +29535 +29536 +29537 +29538 +29539 +29540 +29541-29543 +29544-29546 +29547 +29548 +29549 +29550-29551 +29552 +29553-29554 +29555-29556 +29557 +29558 +29559 +29560-29561 +29562-29564 +29565-29567 +29568-29569 +29570-29571 +29572 +29573-29574 +29575-29576 +29577 +29578-29580 +29581 +29582-29583 +29584-29585 +29586 +29587-29588 +29589-29590 +29591-29593 +29594-29596 +29597 +29598 +29599 +29600-29602 +29603-29604 +29605-29607 +29608 +29609-29611 +29612 +29613-29614 +29615 +29616 +29617 +29618 +29619-29621 +29622 +29623-29624 +29625 +29626 +29627-29629 +29630 +29631-29633 +29634 +29635 +29636-29637 +29638 +29639 +29640 +29641-29643 +29644 +29645 +29646 +29647 +29648-29649 +29650 +29651-29653 +29654 +29655-29657 +29658-29659 +29660 +29661-29663 +29664-29665 +29666-29667 +29668 +29669-29670 +29671-29673 +29674 +29675 +29676 +29677 +29678-29679 +29680 +29681-29683 +29684 +29685 +29686 +29687-29689 +29690 +29691-29694 +29695 +29696 +29697 +29698-29700 +29701 +29702 +29703-29704 +29705-29707 +29708 +29709 +29710-29712 +29713 +29714 +29715-29716 +29717 +29718-29719 +29720-29722 +29723-29724 +29725 +29726 +29727 +29728-29729 +29730 +29731-29732 +29733 +29734-29736 +29737 +29738 +29739 +29740 +29741-29743 +29744 +29745 +29746 +29747-29749 +29750-29752 +29753-29755 +29756 +29757 +29758 +29759 +29760 +29761 +29762-29763 +29764-29767 +29768 +29769 +29770 +29771 +29772 +29773 +29774 +29775-29777 +29778-29780 +29781 +29782 +29783 +29784-29786 +29787 +29788 +29789-29791 +29792 +29793 +29794-29796 +29797-29799 +29800-29802 +29803-29806 +29807-29809 +29810-29813 +29814-29817 +29818 +29819-29820 +29821 +29822 +29823 +29824-29825 +29826-29827 +29828-29829 +29830-29832 +29833-29834 +29835-29837 +29838-29840 +29841 +29842-29843 +29844-29846 +29847 +29848 +29849 +29850-29851 +29852 +29853-29854 +29855 +29856 +29857-29858 +29859 +29860-29862 +29863 +29864 +29865-29867 +29868 +29869-29870 +29871-29873 +29874 +29875-29876 +29877 +29878-29881 +29882-29883 +29884-29887 +29888-29889 +29890-29891 +29892-29894 +29895 +29896 +29897-29899 +29900 +29901-29902 +29903-29905 +29906-29908 +29909 +29910-29911 +29912 +29913 +29914 +29915-29917 +29918 +29919 +29920 +29921-29922 +29923-29924 +29925-29926 +29927 +29928-29929 +29930-29931 +29932-29933 +29934-29940 +29941-29942 +29943-29945 +29946-29948 +29949-29952 +29953-29955 +29956-29958 +29959-29960 +29961-29962 +29963-29964 +29965-29967 +29968-29970 +29971-29973 +29974-29978 +29979-29980 +29981-29983 +29984 +29985-29986 +29987-29989 +29990-29993 +29994-29997 +29998-29999 +30000-30002 +30003-30004 +30005-30007 +30008-30012 +30013-30015 +30016 +30017 +30018-30020 +30021 +30022-30023 +30024-30026 +30027 +30028 +30029-30030 +30031 +30032 +30033 +30034-30035 +30036 +30037 +30038 +30039-30040 +30041-30042 +30043 +30044 +30045 +30046 +30047-30048 +30049-30051 +30052 +30053 +30054 +30055-30057 +30058-30059 +30060 +30061 +30062-30065 +30066 +30067-30071 +30072 +30073 +30074 +30075 +30076-30078 +30079-30080 +30081 +30082-30083 +30084-30086 +30087-30089 +30090-30092 +30093 +30094 +30095 +30096-30097 +30098-30099 +30100-30101 +30102-30103 +30104-30106 +30107 +30108-30110 +30111-30112 +30113-30114 +30115 +30116 +30117-30118 +30119 +30120-30123 +30124 +30125 +30126-30129 +30130-30131 +30132-30136 +30137-30138 +30139-30142 +30143-30144 +30145-30147 +30148-30151 +30152 +30153 +30154-30157 +30158 +30159-30161 +30162-30163 +30164-30165 +30166-30168 +30169 +30170 +30171-30174 +30175 +30176-30179 +30180-30181 +30182 +30183-30184 +30185 +30186-30188 +30189-30191 +30192 +30193-30195 +30196 +30197-30198 +30199-30200 +30201 +30202 +30203-30205 +30206-30207 +30208-30210 +30211-30212 +30213-30214 +30215-30217 +30218-30220 +30221-30223 +30224-30226 +30227-30228 +30229 +30230 +30231-30232 +30233-30234 +30235-30238 +30239 +30240 +30241 +30242 +30243 +30244-30246 +30247 +30248 +30249 +30250 +30251 +30252 +30253-30254 +30255 +30256 +30257 +30258 +30259 +30260 +30261-30263 +30264 +30265 +30266 +30267 +30268-30271 +30272-30273 +30274 +30275 +30276 +30277 +30278 +30279 +30280-30282 +30283 +30284 +30285 +30286 +30287 +30288-30289 +30290 +30291-30292 +30293-30294 +30295 +30296 +30297 +30298-30299 +30300 +30301-30302 +30303-30304 +30305 +30306 +30307-30308 +30309 +30310 +30311-30312 +30313 +30314 +30315-30316 +30317-30318 +30319-30321 +30322-30323 +30324-30326 +30327 +30328-30331 +30332-30333 +30334 +30335-30336 +30337-30338 +30339 +30340-30342 +30343 +30344-30345 +30346 +30347-30350 +30351-30354 +30355-30356 +30357-30358 +30359 +30360-30362 +30363-30364 +30365-30366 +30367 +30368-30371 +30372-30375 +30376-30377 +30378-30379 +30380-30381 +30382 +30383-30386 +30387-30389 +30390-30393 +30394-30395 +30396-30398 +30399 +30400 +30401-30403 +30404 +30405-30407 +30408 +30409 +30410-30413 +30414 +30415-30417 +30418 +30419-30422 +30423 +30424-30426 +30427 +30428-30430 +30431 +30432-30434 +30435-30436 +30437 +30438-30440 +30441-30443 +30444-30446 +30447 +30448-30449 +30450-30452 +30453 +30454-30457 +30458-30460 +30461-30463 +30464 +30465 +30466 +30467 +30468-30469 +30470 +30471-30472 +30473 +30474-30475 +30476 +30477 +30478-30479 +30480 +30481-30482 +30483-30485 +30486-30487 +30488 +30489 +30490 +30491-30492 +30493 +30494-30495 +30496 +30497 +30498-30499 +30500-30502 +30503-30504 +30505-30507 +30508-30509 +30510 +30511 +30512-30513 +30514-30515 +30516 +30517-30518 +30519-30521 +30522 +30523-30525 +30526-30527 +30528-30530 +30531-30534 +30535 +30536-30539 +30540-30541 +30542-30543 +30544-30545 +30546-30548 +30549 +30550-30551 +30552-30554 +30555 +30556-30557 +30558-30561 +30562-30565 +30566-30567 +30568-30571 +30572-30574 +30575-30576 +30577-30581 +30582-30583 +30584-30586 +30587-30588 +30589-30590 +30591 +30592-30594 +30595 +30596-30598 +30599 +30600-30601 +30602-30605 +30606 +30607-30608 +30609-30611 +30612-30616 +30617-30621 +30622 +30623-30626 +30627 +30628 +30629-30631 +30632 +30633 +30634-30637 +30638 +30639-30640 +30641 +30642-30645 +30646 +30647-30649 +30650 +30651-30653 +30654 +30655-30657 +30658-30659 +30660-30661 +30662-30664 +30665-30667 +30668-30670 +30671-30672 +30673-30674 +30675-30677 +30678 +30679-30682 +30683-30685 +30686-30688 +30689 +30690 +30691 +30692 +30693-30694 +30695 +30696-30697 +30698 +30699-30700 +30701 +30702 +30703-30704 +30705 +30706-30707 +30708-30709 +30710 +30711 +30712 +30713 +30714 +30715 +30716-30717 +30718-30719 +30720 +30721 +30722 +30723-30724 +30725 +30726-30727 +30728-30729 +30730 +30731 +30732-30733 +30734 +30735 +30736 +30737-30738 +30739-30740 +30741-30743 +30744-30745 +30746-30748 +30749-30750 +30751-30752 +30753 +30754-30760 +30761-30762 +30763-30765 +30766-30767 +30768-30770 +30771-30773 +30774-30778 +30779-30781 +30782 +30783-30785 +30786-30789 +30790 +30791-30792 +30793 +30794-30796 +30797-30800 +30801 +30802-30804 +30805-30807 +30808-30812 +30813-30815 +30816 +30817-30821 +30822 +30823-30826 +30827-30828 +30829-30833 +30834-30835 +30836-30837 +30838-30839 +30840-30841 +30842 +30843-30845 +30846 +30847-30849 +30850-30852 +30853 +30854 +30855 +30856 +30857-30860 +30861-30862 +30863 +30864 +30865 +30866-30867 +30868 +30869-30870 +30871 +30872 +30873-30874 +30875 +30876 +30877 +30878 +30879-30880 +30881-30882 +30883 +30884 +30885 +30886 +30887 +30888-30889 +30890-30891 +30892-30893 +30894-30895 +30896 +30897 +30898 +30899 +30900-30901 +30902 +30903-30904 +30905-30906 +30907 +30908-30909 +30910 +30911-30912 +30913 +30914-30918 +30919-30920 +30921-30923 +30924 +30925-30928 +30929-30931 +30932-30933 +30934 +30935-30936 +30937-30939 +30940-30941 +30942-30943 +30944-30947 +30948-30949 +30950-30952 +30953-30954 +30955-30956 +30957-30959 +30960 +30961-30962 +30963-30966 +30967-30970 +30971-30972 +30973-30976 +30977-30980 +30981-30982 +30983-30989 +30990-30993 +30994-30995 +30996-30998 +30999-31000 +31001-31003 +31004 +31005-31008 +31009-31010 +31011-31013 +31014 +31015-31018 +31019-31021 +31022-31025 +31026 +31027 +31028 +31029 +31030-31031 +31032 +31033-31034 +31035-31036 +31037 +31038 +31039 +31040-31041 +31042 +31043-31044 +31045-31046 +31047-31049 +31050-31051 +31052-31054 +31055-31057 +31058 +31059-31062 +31063-31064 +31065-31067 +31068-31071 +31072-31074 +31075-31076 +31077-31081 +31082-31084 +31085-31086 +31087-31089 +31090-31094 +31095-31097 +31098 +31099-31102 +31103-31105 +31106 +31107-31110 +31111-31113 +31114-31115 +31116 +31117-31121 +31122-31124 +31125 +31126-31128 +31129-31131 +31132-31135 +31136 +31137 +31138 +31139 +31140-31142 +31143 +31144-31146 +31147-31149 +31150-31152 +31153-31157 +31158 +31159-31161 +31162-31163 +31164-31167 +31168-31170 +31171-31173 +31174 +31175-31176 +31177 +31178-31179 +31180-31182 +31183-31184 +31185-31186 +31187-31188 +31189-31191 +31192 +31193-31195 +31196-31198 +31199 +31200 +31201 +31202 +31203-31204 +31205-31206 +31207 +31208 +31209 +31210-31211 +31212 +31213-31214 +31215 +31216 +31217-31218 +31219 +31220-31223 +31224-31225 +31226-31227 +31228 +31229-31230 +31231-31232 +31233-31234 +31235-31236 +31237-31238 +31239-31240 +31241-31242 +31243-31244 +31245-31246 +31247-31249 +31250 +31251-31253 +31254-31255 +31256-31258 +31259 +31260-31264 +31265-31267 +31268-31271 +31272 +31273-31274 +31275 +31276-31277 +31278-31279 +31280-31282 +31283-31284 +31285-31286 +31287 +31288 +31289-31291 +31292-31293 +31294-31296 +31297-31299 +31300-31304 +31305 +31306-31307 +31308-31309 +31310 +31311-31313 +31314-31316 +31317 +31318-31319 +31320-31322 +31323 +31324 +31325-31326 +31327 +31328-31332 +31333-31335 +31336 +31337 +31338 +31339-31340 +31341-31344 +31345-31346 +31347-31349 +31350 +31351-31354 +31355-31357 +31358-31361 +31362 +31363-31364 +31365 +31366-31367 +31368 +31369-31370 +31371-31372 +31373-31375 +31376 +31377-31379 +31380-31382 +31383-31386 +31387 +31388-31389 +31390 +31391-31393 +31394-31396 +31397-31398 +31399-31401 +31402 +31403-31404 +31405 +31406-31407 +31408-31409 +31410-31412 +31413-31414 +31415-31416 +31417-31419 +31420 +31421-31422 +31423-31424 +31425-31428 +31429 +31430-31431 +31432-31435 +31436-31438 +31439-31441 +31442-31443 +31444-31445 +31446-31449 +31450 +31451 +31452-31454 +31455-31457 +31458-31460 +31461-31462 +31463-31467 +31468-31470 +31471-31473 +31474-31477 +31478-31482 +31483 +31484 +31485-31487 +31488 +31489-31490 +31491 +31492-31495 +31496-31498 +31499-31501 +31502-31503 +31504-31507 +31508-31510 +31511 +31512-31516 +31517 +31518 +31519-31521 +31522-31525 +31526-31527 +31528-31530 +31531-31532 +31533-31534 +31535 +31536-31539 +31540-31542 +31543-31545 +31546-31548 +31549-31550 +31551-31552 +31553-31557 +31558-31559 +31560-31562 +31563-31565 +31566 +31567-31568 +31569-31573 +31574-31575 +31576-31578 +31579-31581 +31582-31583 +31584 +31585 +31586-31588 +31589 +31590-31592 +31593 +31594-31597 +31598-31599 +31600 +31601-31602 +31603-31604 +31605-31606 +31607-31609 +31610 +31611-31614 +31615 +31616 +31617-31618 +31619-31620 +31621-31623 +31624-31627 +31628-31630 +31631 +31632-31633 +31634-31636 +31637-31639 +31640 +31641-31643 +31644-31646 +31647-31649 +31650 +31651-31654 +31655 +31656-31657 +31658-31660 +31661-31662 +31663-31665 +31666-31667 +31668-31671 +31672-31674 +31675-31679 +31680-31681 +31682-31685 +31686 +31687 +31688-31690 +31691-31693 +31694-31696 +31697-31699 +31700-31702 +31703-31705 +31706-31708 +31709-31711 +31712 +31713-31715 +31716-31717 +31718-31720 +31721 +31722-31725 +31726-31728 +31729 +31730 +31731 +31732 +31733-31737 +31738-31739 +31740 +31741-31743 +31744-31745 +31746-31747 +31748 +31749 +31750 +31751-31752 +31753 +31754 +31755 +31756 +31757-31758 +31759 +31760-31761 +31762-31763 +31764 +31765 +31766 +31767 +31768 +31769-31771 +31772-31774 +31775 +31776 +31777-31779 +31780 +31781 +31782-31783 +31784-31786 +31787 +31788-31790 +31791-31792 +31793-31794 +31795-31797 +31798-31799 +31800-31801 +31802-31803 +31804-31805 +31806 +31807-31808 +31809-31811 +31812 +31813 +31814-31816 +31817-31818 +31819-31821 +31822-31823 +31824 +31825-31826 +31827 +31828 +31829 +31830 +31831-31832 +31833 +31834-31835 +31836-31839 +31840 +31841 +31842 +31843 +31844 +31845 +31846-31847 +31848 +31849-31850 +31851 +31852 +31853-31854 +31855 +31856-31858 +31859-31860 +31861-31862 +31863 +31864-31866 +31867 +31868-31871 +31872 +31873-31876 +31877-31879 +31880-31883 +31884-31885 +31886-31890 +31891-31894 +31895-31898 +31899 +31900 +31901 +31902-31903 +31904-31906 +31907 +31908-31912 +31913-31916 +31917-31919 +31920-31922 +31923-31926 +31927 +31928 +31929-31933 +31934 +31935-31936 +31937-31938 +31939-31944 +31945-31946 +31947-31949 +31950 +31951-31953 +31954 +31955 +31956 +31957 +31958-31961 +31962-31964 +31965 +31966-31970 +31971 +31972 +31973 +31974-31976 +31977 +31978-31980 +31981-31983 +31984-31985 +31986-31987 +31988-31989 +31990-31992 +31993-31995 +31996-31998 +31999 +32000-32001 +32002 +32003-32004 +32005-32007 +32008 +32009 +32010-32012 +32013-32014 +32015-32017 +32018-32020 +32021-32022 +32023 +32024-32025 +32026-32028 +32029-32031 +32032-32033 +32034-32036 +32037-32039 +32040-32042 +32043-32045 +32046-32048 +32049-32051 +32052-32054 +32055-32058 +32059-32061 +32062-32064 +32065-32066 +32067-32069 +32070-32071 +32072-32074 +32075-32076 +32077 +32078-32081 +32082-32083 +32084 +32085-32088 +32089 +32090 +32091 +32092-32094 +32095-32096 +32097-32098 +32099 +32100-32101 +32102-32106 +32107-32109 +32110-32112 +32113 +32114-32116 +32117-32119 +32120-32122 +32123 +32124 +32125-32126 +32127-32129 +32130 +32131 +32132-32134 +32135-32137 +32138 +32139-32141 +32142 +32143-32145 +32146 +32147 +32148-32149 +32150-32151 +32152 +32153 +32154 +32155 +32156 +32157 +32158 +32159 +32160 +32161 +32162-32163 +32164 +32165 +32166 +32167 +32168 +32169 +32170 +32171 +32172 +32173 +32174 +32175 +32176 +32177-32179 +32180 +32181 +32182 +32183 +32184 +32185 +32186 +32187 +32188 +32189 +32190 +32191 +32192 +32193 +32194 +32195-32196 +32197 +32198 +32199 +32200 +32201 +32202 +32203 +32204 +32205 +32206 +32207 +32208 +32209 +32210 +32211 +32212 +32213 +32214-32217 +32218 +32219-32221 +32222 +32223 +32224 +32225 +32226 +32227 +32228 +32229 +32230 +32231 +32232 +32233 +32234 +32235 +32236 +32237 +32238 +32239 +32240 +32241 +32242-32244 +32245-32247 +32248 +32249 +32250 +32251 +32252 +32253 +32254 +32255-32258 +32259-32260 +32261 +32262-32263 +32264-32267 +32268-32269 +32270 +32271 +32272 +32273 +32274 +32275-32276 +32277 +32278-32279 +32280-32282 +32283-32286 +32287 +32288 +32289-32291 +32292-32294 +32295-32297 +32298-32299 +32300-32301 +32302 +32303 +32304 +32305-32307 +32308-32311 +32312-32314 +32315 +32316-32317 +32318 +32319-32320 +32321-32322 +32323 +32324 +32325 +32326-32328 +32329-32331 +32332-32333 +32334-32336 +32337-32338 +32339-32341 +32342-32344 +32345-32346 +32347-32348 +32349 +32350-32352 +32353 +32354 +32355 +32356-32359 +32360-32362 +32363 +32364-32365 +32366-32367 +32368 +32369 +32370-32372 +32373-32376 +32377-32380 +32381 +32382-32384 +32385-32387 +32388 +32389 +32390-32392 +32393-32395 +32396 +32397-32398 +32399-32400 +32401 +32402-32403 +32404-32405 +32406-32408 +32409-32411 +32412-32414 +32415-32417 +32418-32419 +32420-32423 +32424-32426 +32427-32430 +32431-32433 +32434 +32435 +32436 +32437 +32438-32439 +32440 +32441-32445 +32446-32448 +32449 +32450-32451 +32452 +32453-32455 +32456-32458 +32459-32460 +32461 +32462 +32463-32466 +32467-32468 +32469 +32470-32471 +32472-32474 +32475-32477 +32478 +32479-32481 +32482-32483 +32484-32487 +32488 +32489-32490 +32491-32493 +32494-32496 +32497-32500 +32501 +32502-32503 +32504 +32505 +32506-32508 +32509-32511 +32512-32516 +32517-32522 +32523-32524 +32525 +32526-32528 +32529-32530 +32531 +32532 +32533 +32534 +32535 +32536 +32537 +32538 +32539 +32540-32543 +32544 +32545 +32546 +32547-32550 +32551-32556 +32557-32562 +32563 +32564-32565 +32566-32567 +32568-32569 +32570-32573 +32574-32575 +32576-32578 +32579-32581 +32582 +32583-32585 +32586 +32587 +32588-32589 +32590-32592 +32593 +32594-32596 +32597 +32598-32600 +32601-32602 +32603-32606 +32607-32608 +32609-32610 +32611 +32612-32614 +32615-32617 +32618-32619 +32620-32621 +32622 +32623-32625 +32626-32627 +32628 +32629-32630 +32631 +32632 +32633-32634 +32635 +32636-32637 +32638 +32639 +32640-32641 +32642 +32643 +32644 +32645 +32646 +32647 +32648 +32649 +32650 +32651-32652 +32653 +32654-32656 +32657-32660 +32661 +32662-32664 +32665-32667 +32668 +32669-32671 +32672-32675 +32676-32677 +32678-32679 +32680-32682 +32683 +32684-32686 +32687-32689 +32690-32692 +32693-32694 +32695 +32696-32697 +32698-32699 +32700-32701 +32702-32705 +32706 +32707 +32708 +32709-32710 +32711 +32712 +32713 +32714 +32716 +32717 +32718 +32719 +32720 +32721 +32722 +32723 +32724 +32725 +32726 +32727 +32728 +32729 +32730 +32731 +32732 +32733 +32734 +32735 +32736 +32737 +32738 +32739 +32740 +32741 +32742 +32743 +32744 +32745 +32746 +32747 +32748 +32749 +32750 +32751 +32752-32754 +32755-32758 +32759 +32760 +32761 +32762 +32763 +32764 +32765 +32766 +32767 +32768 +32769 +32770 +32771 +32772-32773 +32774 +32775 +32776-32777 +32778 +32779 +32780 +32781 +32782 +32783 +32784 +32785 +32786-32787 +32788 +32789 +32790-32791 +32792 +32793 +32794 +32795 +32796 +32797 +32798 +32799 +32800 +32801-32802 +32803-32804 +32805-32806 +32807-32808 +32809-32811 +32812 +32813 +32814 +32815-32817 +32818-32820 +32821-32827 +32828-32835 +32836-32837 +32838-32839 +32840-32842 +32843-32845 +32846 +32847-32849 +32850-32853 +32854 +32855-32858 +32859-32866 +32867 +32868-32869 +32870-32871 +32872 +32873-32874 +32875-32876 +32877-32879 +32880-32884 +32885-32887 +32888-32891 +32892 +32893 +32894 +32895-32896 +32897-32898 +32899 +32900-32901 +32902-32903 +32904 +32905 +32906 +32907 +32908 +32909-32910 +32911 +32912-32914 +32915-32917 +32918-32920 +32921-32923 +32924 +32925-32927 +32928 +32929 +32930-32931 +32932 +32933-32934 +32935-32936 +32937-32940 +32941-32943 +32944-32946 +32947-32948 +32949 +32950 +32951 +32952 +32953-32954 +32955 +32956-32957 +32958-32959 +32960 +32961-32962 +32963-32964 +32965 +32966-32968 +32969-32970 +32971-32972 +32973-32975 +32976-32977 +32978 +32979 +32980 +32981-32982 +32983 +32984 +32985-32986 +32987 +32988-32992 +32993 +32994-32995 +32996-32998 +32999-33000 +33001 +33002-33003 +33004-33006 +33007-33009 +33010-33012 +33013-33014 +33015 +33016 +33017-33018 +33019 +33020-33021 +33022-33023 +33024 +33025 +33026-33027 +33028-33032 +33033-33036 +33037 +33038-33039 +33040-33042 +33043 +33044-33046 +33047-33049 +33050-33052 +33053-33054 +33055 +33056 +33057 +33058-33059 +33060-33063 +33064-33065 +33066-33067 +33068 +33069 +33070-33071 +33072-33073 +33074 +33075 +33076-33077 +33078 +33079-33080 +33081-33084 +33085-33086 +33087-33088 +33089-33093 +33094-33095 +33096-33097 +33098 +33099 +33100 +33101 +33102-33103 +33104 +33105-33108 +33109 +33110-33113 +33114 +33115-33116 +33117-33118 +33119-33120 +33121-33123 +33124 +33125-33126 +33127 +33128-33130 +33131 +33132 +33133 +33134 +33135-33138 +33139-33140 +33141-33142 +33143 +33144 +33145-33146 +33147 +33148 +33149-33151 +33152 +33153 +33154 +33155 +33156 +33157 +33158-33159 +33160-33161 +33162 +33163-33165 +33166 +33167 +33168-33169 +33170-33172 +33173 +33174-33175 +33176-33178 +33179 +33180-33181 +33182-33184 +33185-33187 +33188-33191 +33192-33194 +33195 +33196-33199 +33200-33201 +33202-33204 +33205 +33206-33207 +33208-33210 +33211-33212 +33213-33215 +33216-33218 +33219-33222 +33223-33224 +33225 +33226 +33227 +33228-33229 +33230 +33231-33232 +33233 +33234-33236 +33237-33238 +33239 +33240-33241 +33242-33243 +33244 +33245-33247 +33248 +33249 +33250-33251 +33252-33253 +33254-33255 +33256-33258 +33259-33260 +33261 +33262 +33263 +33264-33266 +33267 +33268-33271 +33272-33274 +33275-33277 +33278-33279 +33280 +33281 +33282 +33283 +33284-33285 +33286 +33287-33289 +33290 +33291 +33292 +33293 +33294-33297 +33298-33299 +33300 +33301 +33302 +33303 +33304 +33305 +33306-33307 +33308-33309 +33310 +33311-33313 +33314-33315 +33316 +33317 +33318 +33319 +33320 +33321 +33322 +33323 +33324 +33325-33328 +33329-33331 +33332 +33333 +33334 +33335-33338 +33339 +33340 +33341 +33342 +33343 +33344 +33345 +33346 +33347 +33348 +33349 +33350 +33351 +33352 +33353 +33354 +33355 +33356 +33357 +33358 +33359 +33360 +33361 +33362 +33363 +33364 +33365 +33366 +33367 +33368 +33369 +33370 +33371 +33372 +33373 +33374 +33375 +33376 +33377 +33378 +33379 +33380 +33381 +33382 +33383 +33384 +33385 +33386 +33387 +33388 +33389 +33390 +33391 +33392 +33394 +33395 +33396-33397 +33398 +33399 +33400 +33401 +33402 +33403 +33404 +33405 +33406 +33407 +33408 +33409 +33410 +33411-33413 +33414 +33415 +33416 +33417 +33418 +33419 +33420 +33421 +33422 +33423 +33424 +33425 +33426 +33427 +33428 +33429 +33430 +33431 +33432-33433 +33434-33438 +33439 +33440 +33441 +33442 +33443 +33444 +33445 +33446 +33447 +33448 +33449 +33450 +33451-33453 +33454 +33455-33456 +33457 +33458 +33459 +33460 +33461 +33462 +33463 +33464 +33465 +33466 +33467 +33468 +33469 +33470 +33471 +33472 +33473 +33474-33475 +33476-33477 +33478 +33479 +33480 +33481 +33482 +33483 +33484 +33485 +33486 +33487 +33488 +33489 +33490 +33491 +33492 +33493 +33494 +33495 +33496 +33497-33498 +33499-33501 +33502 +33503 +33504 +33505 +33506 +33507 +33508 +33509-33510 +33511-33513 +33514 +33515 +33516 +33517 +33518 +33519 +33520 +33521 +33522 +33523-33526 +33527 +33528 +33529 +33530-33532 +33533-33535 +33536 +33537 +33538 +33539 +33540 +33541 +33542 +33543 +33544 +33545 +33546-33548 +33549-33550 +33551 +33552 +33553 +33554 +33555 +33556 +33557-33558 +33559 +33560 +33561 +33562-33563 +33564 +33565 +33566 +33567 +33568 +33569-33571 +33572-33573 +33574 +33575-33577 +33578-33579 +33580-33583 +33584-33586 +33587-33588 +33589-33592 +33593-33597 +33598-33601 +33602-33605 +33606-33612 +33613-33616 +33617 +33618 +33619-33621 +33622-33624 +33625 +33626 +33627-33628 +33629-33630 +33631-33632 +33633 +33634 +33635 +33636-33637 +33638 +33639-33640 +33641-33642 +33643 +33644-33645 +33646-33647 +33648 +33649 +33650 +33651 +33652 +33653-33654 +33655-33656 +33657 +33658-33659 +33660 +33661-33664 +33665-33666 +33667 +33668-33670 +33671-33672 +33673 +33674-33676 +33677 +33678-33681 +33682 +33683 +33684-33685 +33686-33687 +33688-33689 +33690-33691 +33692 +33693-33696 +33697-33698 +33699-33700 +33701 +33702-33703 +33704 +33705-33708 +33709-33710 +33711-33713 +33714-33715 +33716 +33717-33719 +33720-33721 +33722 +33723 +33724 +33725-33727 +33728-33730 +33731-33734 +33735-33736 +33737-33740 +33741-33742 +33743 +33744 +33745 +33746 +33747 +33748-33749 +33750-33751 +33752 +33753-33754 +33755 +33756 +33757-33758 +33759-33760 +33761 +33762-33763 +33764 +33765 +33766-33767 +33768 +33769 +33770-33771 +33772-33774 +33775-33776 +33777-33780 +33781-33782 +33783-33786 +33787-33788 +33789 +33790-33791 +33792-33793 +33794 +33795-33796 +33797-33798 +33799-33800 +33801-33803 +33804-33808 +33809-33811 +33812 +33813 +33814 +33815 +33816-33817 +33818-33819 +33820-33821 +33822 +33823-33824 +33825 +33826-33828 +33829 +33830 +33831-33832 +33833 +33834-33835 +33836 +33837 +33838-33839 +33840 +33841-33844 +33845-33847 +33848-33849 +33850 +33851-33854 +33855-33858 +33859-33862 +33863-33867 +33868-33871 +33872-33876 +33877-33880 +33881-33882 +33883-33885 +33886-33889 +33890-33893 +33894-33895 +33896-33899 +33900-33901 +33902 +33903 +33904-33905 +33906-33908 +33909 +33910-33911 +33912-33914 +33915 +33916-33917 +33918 +33919-33920 +33921 +33922 +33923 +33924 +33925-33926 +33927-33928 +33929-33932 +33933 +33934 +33935-33936 +33937 +33938-33939 +33940-33941 +33942-33943 +33944 +33945-33947 +33948-33952 +33953 +33954 +33955-33957 +33958 +33959-33962 +33963-33964 +33965 +33966-33967 +33968-33971 +33972-33973 +33974-33975 +33976 +33977-33978 +33979 +33980 +33981 +33982-33983 +33984 +33985-33988 +33989 +33990-33992 +33993 +33994-33995 +33996-33997 +33998-33999 +34000-34002 +34003-34007 +34008 +34009-34011 +34012 +34013 +34014-34016 +34017 +34018-34021 +34022-34023 +34024-34026 +34027-34030 +34031 +34032-34034 +34035-34036 +34037-34039 +34040-34042 +34043-34044 +34045 +34046-34048 +34049-34053 +34054 +34055-34056 +34057 +34058-34059 +34060 +34061-34062 +34063-34064 +34065 +34066-34067 +34068-34069 +34070 +34071 +34072-34074 +34075-34076 +34077 +34078-34080 +34081-34082 +34083 +34084-34087 +34088-34089 +34090-34091 +34092-34094 +34095-34099 +34100-34102 +34103 +34104 +34105 +34106 +34107 +34108 +34109 +34110 +34111-34112 +34113 +34114 +34115 +34116-34117 +34118 +34119-34120 +34121 +34122 +34123-34124 +34125 +34126-34128 +34129 +34130 +34131 +34132 +34133 +34134 +34135 +34136 +34137 +34138 +34139 +34140 +34141-34143 +34144-34146 +34147-34148 +34149-34151 +34152 +34153 +34154 +34155 +34156 +34157 +34158 +34159 +34160-34161 +34162-34164 +34165-34169 +34171 +34172 +34173 +34174 +34175 +34176 +34177 +34178-34182 +34183-34184 +34185 +34186 +34187-34188 +34189-34190 +34191 +34192 +34193 +34194 +34195 +34196-34197 +34198 +34199-34200 +34201-34203 +34204-34206 +34207-34209 +34210-34213 +34214-34217 +34218 +34219 +34220-34223 +34224-34225 +34226 +34227-34229 +34230 +34231 +34232-34235 +34236-34238 +34239 +34240-34241 +34242-34243 +34244-34246 +34247 +34248-34250 +34251-34252 +34253 +34254-34255 +34256-34257 +34258-34259 +34260-34261 +34262 +34263 +34264 +34265-34266 +34267-34268 +34269 +34270-34271 +34272 +34273-34274 +34275 +34276-34278 +34279 +34280-34281 +34282 +34283-34284 +34285-34288 +34289-34290 +34291 +34292 +34293 +34294-34295 +34296-34297 +34298-34300 +34301-34304 +34305 +34306-34307 +34308 +34309 +34310-34311 +34312 +34313 +34314-34315 +34316 +34317-34319 +34320 +34321-34322 +34323 +34324-34325 +34326 +34327 +34328 +34329-34330 +34331-34332 +34333 +34334-34335 +34336 +34337-34338 +34339 +34340-34341 +34342 +34343-34344 +34345-34346 +34347-34349 +34350-34351 +34352-34355 +34356 +34357 +34358-34360 +34361 +34362 +34363-34365 +34366-34367 +34368 +34369 +34370-34371 +34372 +34373-34375 +34376-34377 +34378-34380 +34381 +34382-34384 +34385 +34386 +34387 +34388 +34389-34390 +34391-34392 +34393 +34394 +34395-34396 +34397 +34398-34399 +34400-34401 +34402-34403 +34404 +34405 +34406 +34407-34408 +34409-34412 +34413 +34414 +34415-34416 +34417 +34418 +34419-34420 +34421-34423 +34424 +34425-34426 +34427 +34428 +34429-34430 +34431-34432 +34433 +34434 +34435 +34436-34437 +34438-34439 +34440 +34441 +34442-34443 +34444 +34445-34446 +34447-34448 +34449 +34450 +34451-34453 +34454-34455 +34456 +34457 +34458 +34459 +34460 +34461-34462 +34463-34465 +34466-34467 +34468-34469 +34470 +34471 +34472-34473 +34474 +34475-34476 +34477 +34478 +34479-34481 +34482-34483 +34484-34487 +34488-34491 +34492-34494 +34495-34497 +34498 +34499 +34500 +34501-34503 +34504 +34505 +34506-34508 +34509-34512 +34513 +34514-34515 +34516-34518 +34519 +34520-34521 +34522-34523 +34524 +34525-34526 +34527-34532 +34533 +34534-34538 +34539-34545 +34546 +34547-34548 +34549-34550 +34551 +34552-34554 +34555-34557 +34558-34560 +34561-34563 +34564 +34565-34567 +34568 +34569-34571 +34572-34573 +34574-34576 +34577 +34578 +34579-34581 +34582-34583 +34584-34586 +34587 +34588-34589 +34590 +34591 +34592-34594 +34595 +34596 +34597-34598 +34599 +34600-34601 +34602-34603 +34604-34608 +34609 +34610 +34611 +34612 +34613-34615 +34616 +34617-34618 +34619 +34620-34623 +34624-34625 +34626-34629 +34630-34633 +34634-34637 +34638-34639 +34640-34642 +34643-34644 +34645-34648 +34649 +34650 +34651-34652 +34653-34654 +34655 +34656-34657 +34658 +34659 +34660 +34661 +34662 +34663 +34664 +34665 +34666-34668 +34669 +34670-34671 +34672 +34673-34674 +34675 +34676 +34677 +34678 +34679 +34680 +34681 +34682 +34683 +34684 +34685 +34686 +34687 +34688 +34689-34690 +34691-34694 +34695 +34696-34697 +34698 +34699 +34700 +34701 +34702 +34703 +34704 +34705 +34706-34707 +34708 +34709 +34710-34711 +34712-34713 +34714 +34715 +34716 +34717 +34718 +34719 +34720 +34721 +34722 +34723 +34724 +34725 +34726 +34727 +34728-34730 +34731 +34732-34733 +34734 +34735 +34736 +34737 +34738 +34739 +34740 +34741 +34742-34744 +34745-34746 +34747-34748 +34749 +34750-34751 +34752 +34753 +34754 +34755 +34756 +34757 +34758 +34759 +34760 +34761 +34762 +34763 +34764 +34765 +34766-34767 +34768-34770 +34771-34773 +34774 +34775 +34776 +34777 +34778 +34779 +34780 +34781 +34782 +34783 +34784 +34785 +34786 +34787-34790 +34791 +34792 +34793 +34794 +34795 +34796 +34797 +34798 +34799 +34800 +34801 +34802 +34803 +34804 +34805 +34806 +34807 +34808 +34809 +34810 +34811 +34812 +34813 +34814 +34815 +34816 +34817 +34818 +34819 +34820-34821 +34822 +34823 +34824 +34825 +34826 +34827 +34828 +34829 +34830 +34831 +34832 +34833 +34834 +34835 +34836 +34837 +34838 +34839 +34840 +34841 +34842 +34843 +34844 +34845 +34846 +34847 +34848 +34849 +34850 +34851 +34852 +34853 +34854 +34855 +34856 +34857 +34858 +34859 +34860 +34861 +34862 +34863 +34864 +34865 +34866 +34867 +34868 +34869 +34870 +34871 +34872 +34873 +34874 +34876 +34877 +34878-34880 +34881-34882 +34883-34885 +34886-34887 +34888-34889 +34890-34892 +34893 +34894-34897 +34898-34899 +34900 +34901-34902 +34903 +34904 +34905-34906 +34907-34908 +34909-34911 +34912-34913 +34914-34918 +34919-34921 +34922 +34923-34925 +34926-34927 +34928-34930 +34931 +34932-34935 +34936-34937 +34938-34939 +34940-34942 +34943-34944 +34945-34947 +34948-34951 +34952-34953 +34954-34956 +34957-34958 +34959-34961 +34962 +34963 +34964 +34965 +34966 +34967 +34968 +34969 +34970 +34971 +34972 +34973 +34974 +34975 +34976 +34977 +34978 +34979 +34980 +34981 +34982 +34983 +34984 +34985 +34986 +34987 +34988 +34989 +34990 +34991 +34992 +34993-34995 +34996-34997 +34998-35000 +35001 +35002 +35003 +35004 +35005 +35006 +35007 +35008 +35009 +35010-35011 +35012 +35013 +35014 +35015 +35016 +35017 +35018 +35019 +35020 +35021 +35022 +35023 +35024 +35025 +35026 +35027 +35028-35030 +35031-35032 +35033-35036 +35037-35038 +35039 +35040 +35041 +35042 +35043 +35044 +35045 +35046 +35047-35049 +35050-35052 +35053-35055 +35056 +35057 +35058 +35059 +35060 +35061-35063 +35064-35065 +35066-35069 +35070 +35071-35074 +35075 +35076 +35077 +35078 +35079 +35080 +35081-35082 +35083 +35084 +35085 +35086 +35087-35088 +35089-35091 +35092 +35093 +35094 +35095 +35096 +35097 +35098-35099 +35100 +35101 +35102 +35103 +35104-35107 +35108-35109 +35110 +35111-35112 +35113-35114 +35115 +35116 +35117 +35118 +35119 +35120 +35121 +35122 +35123 +35124-35127 +35128 +35129 +35130 +35131-35132 +35133 +35134-35138 +35139 +35140 +35141 +35142 +35143 +35144-35147 +35148-35152 +35153 +35154-35155 +35156 +35157 +35158 +35159 +35160-35161 +35162 +35163-35164 +35165 +35166 +35167-35168 +35169-35171 +35172 +35173 +35174 +35175 +35176-35178 +35179-35181 +35182 +35183 +35184-35187 +35188-35190 +35191-35193 +35194 +35195 +35196 +35197-35199 +35200 +35201-35203 +35204-35205 +35206-35207 +35208 +35209 +35210 +35211 +35212 +35213 +35214 +35215 +35216 +35217-35219 +35220-35222 +35223 +35224-35226 +35227-35229 +35230-35231 +35232 +35233 +35234-35237 +35238 +35239 +35240 +35241 +35242 +35243 +35244 +35245-35246 +35247-35249 +35250 +35251 +35252 +35253 +35254 +35255-35256 +35257 +35258 +35259 +35260 +35261 +35262 +35263 +35264-35265 +35266 +35267-35268 +35269-35271 +35272 +35273 +35274 +35275-35278 +35279 +35280 +35281-35283 +35284 +35285 +35286-35287 +35288-35289 +35290 +35291 +35292 +35293-35296 +35297 +35298 +35299-35300 +35301 +35302 +35303 +35304-35306 +35307 +35308 +35309-35310 +35311-35312 +35313 +35314-35315 +35316 +35317 +35318-35319 +35320-35321 +35322-35324 +35325 +35326 +35327-35328 +35329 +35330 +35331-35333 +35334 +35335 +35336-35337 +35338-35339 +35340-35341 +35342 +35343-35345 +35346-35348 +35349 +35350-35353 +35354-35355 +35356 +35357-35359 +35360-35361 +35362 +35363 +35364 +35365-35366 +35367 +35368 +35369-35370 +35371-35372 +35373 +35374-35375 +35376 +35377-35380 +35381-35382 +35383-35384 +35385 +35386 +35387 +35388 +35389-35390 +35391-35393 +35394-35395 +35396 +35397 +35398-35399 +35400-35401 +35402 +35403 +35404-35405 +35406-35407 +35408 +35409-35410 +35411 +35412-35414 +35415-35416 +35417 +35418-35420 +35421-35423 +35424 +35425 +35426-35427 +35428-35429 +35430 +35431 +35432-35433 +35434-35435 +35436-35437 +35438 +35439-35441 +35442-35443 +35444 +35445-35446 +35447 +35448 +35449-35452 +35453-35454 +35455 +35456-35458 +35459-35460 +35461 +35462 +35463-35464 +35465-35466 +35467 +35468 +35469-35470 +35471-35472 +35473-35476 +35477 +35478 +35479 +35480-35481 +35482-35483 +35484 +35485-35486 +35487-35488 +35489 +35490 +35491-35494 +35495-35497 +35498-35499 +35500-35502 +35503-35505 +35506-35507 +35508 +35509 +35510 +35511-35513 +35514 +35515 +35516 +35517-35518 +35519-35520 +35521 +35522 +35523-35524 +35525-35526 +35527-35529 +35530 +35531 +35532-35533 +35534-35537 +35538-35540 +35541 +35542 +35543-35544 +35545-35546 +35547-35548 +35549-35550 +35551 +35552 +35553-35555 +35556-35558 +35559 +35560 +35561-35562 +35563-35564 +35565 +35566 +35567-35568 +35569-35570 +35571-35575 +35576 +35577 +35578-35579 +35580-35581 +35582 +35583-35585 +35586-35587 +35588 +35589 +35590-35591 +35592 +35593 +35594 +35595-35596 +35597 +35598 +35599-35601 +35602 +35603 +35604-35607 +35608-35609 +35610 +35611 +35612 +35613-35614 +35615-35617 +35618-35619 +35620 +35621-35623 +35624-35625 +35626 +35627 +35628 +35629-35630 +35631-35632 +35633-35635 +35636 +35637 +35638 +35639 +35640-35641 +35642 +35643 +35644-35646 +35647 +35648 +35649-35651 +35652-35653 +35654 +35655 +35656 +35657 +35658 +35659-35661 +35662 +35663 +35664 +35665 +35666-35668 +35669-35670 +35671-35672 +35673 +35674 +35675 +35676 +35677 +35678 +35679 +35680 +35681 +35682 +35683 +35684 +35685 +35686 +35687-35688 +35689 +35690 +35691 +35692 +35693 +35694 +35695 +35696 +35697 +35698-35699 +35700 +35701 +35702 +35703 +35704 +35705 +35706 +35707 +35708 +35709 +35710 +35711 +35712 +35713 +35714 +35715 +35716 +35717 +35718 +35719 +35720 +35721 +35722-35724 +35725 +35726 +35727 +35728 +35729 +35730 +35731 +35732 +35733 +35734 +35735 +35736 +35737 +35738 +35739 +35740 +35741 +35742 +35743 +35744 +35745 +35746 +35747 +35748 +35749 +35750 +35751 +35752 +35753 +35754 +35755 +35756 +35757 +35758 +35759-35760 +35761-35763 +35764 +35765 +35766 +35767 +35768 +35769 +35770 +35771 +35772 +35773 +35774 +35775 +35776 +35777 +35778 +35779 +35780 +35781 +35782 +35783 +35784 +35785 +35786 +35787-35788 +35789-35790 +35791 +35792 +35793 +35794 +35795 +35796 +35797 +35798 +35799 +35800 +35801 +35802 +35803 +35804 +35805 +35806 +35807 +35808 +35809 +35810 +35811 +35812 +35813 +35814 +35815 +35816 +35817-35818 +35819 +35820 +35821 +35822 +35823 +35824 +35825 +35826 +35827 +35828 +35829 +35830 +35831 +35832 +35833 +35834 +35835 +35836 +35837 +35838 +35839 +35840 +35841 +35842 +35843 +35844-35847 +35848 +35850 +35851 +35852 +35853 +35854 +35855 +35856 +35857 +35858 +35859 +35860 +35861 +35862 +35863 +35864 +35865 +35866 +35867 +35868 +35869 +35870 +35871 +35872 +35873 +35874 +35875 +35876-35878 +35879 +35880 +35881 +35882 +35883 +35884 +35885 +35886 +35887 +35888 +35889 +35890 +35891 +35892 +35893 +35894 +35895 +35896 +35897 +35898 +35899 +35900 +35901 +35902 +35903 +35904-35905 +35906 +35907 +35908 +35909 +35910 +35911 +35912 +35913 +35914 +35915 +35916 +35917 +35918 +35919 +35920 +35921 +35922 +35923 +35924 +35925-35927 +35928 +35929 +35930 +35931 +35932 +35933 +35934 +35935 +35936 +35937 +35938 +35939 +35940 +35941 +35942 +35943 +35944 +35945 +35946 +35947 +35948 +35949 +35950 +35951 +35952-35953 +35954-35955 +35956 +35957 +35958 +35959 +35960 +35961 +35962 +35963 +35964 +35965 +35966 +35967 +35968 +35969 +35970 +35971-35974 +35975 +35976 +35977 +35978 +35979 +35980 +35981 +35982 +35983 +35984 +35985 +35986 +35987 +35988 +35989 +35990 +35991 +35992-35995 +35996-35999 +36000 +36001 +36002 +36003 +36004 +36005 +36006 +36007 +36008 +36009 +36010 +36011 +36012 +36013 +36014 +36015 +36016-36019 +36020-36023 +36024 +36025 +36026 +36027 +36028 +36029 +36030 +36031 +36032 +36033 +36034 +36035 +36036 +36037 +36038 +36039-36040 +36041-36042 +36043 +36044-36046 +36047 +36048 +36049 +36050 +36051 +36052 +36053-36054 +36055-36056 +36057 +36058-36060 +36061 +36062 +36063 +36064 +36065-36066 +36067-36068 +36069 +36070 +36071 +36072 +36073 +36074 +36075 +36076 +36077 +36078 +36079 +36080 +36081 +36082 +36083 +36084 +36085 +36086 +36087-36088 +36089-36090 +36091 +36092 +36093 +36094 +36095 +36096 +36097 +36098 +36099 +36100 +36101 +36102 +36103 +36104 +36105 +36106 +36107 +36108 +36109 +36110 +36111 +36112 +36113 +36114-36115 +36116 +36117 +36118 +36119 +36120 +36121 +36122 +36123 +36124 +36125 +36126 +36127 +36128 +36129 +36130 +36131 +36132-36133 +36134 +36135 +36136 +36137 +36138 +36139 +36140 +36141 +36142 +36143 +36144 +36145 +36146 +36147 +36148 +36149 +36150 +36151-36153 +36154 +36155 +36156 +36157 +36158 +36159 +36160 +36161 +36162 +36163 +36164 +36165 +36166 +36167 +36168 +36169 +36170 +36171 +36172 +36173 +36174 +36175 +36176-36177 +36178 +36179 +36180 +36181 +36182 +36183 +36186 +36187 +36188 +36189 +36190-36191 +36192 +36193 +36194 +36195 +36196 +36197 +36198-36201 +36202 +36203 +36204-36205 +36206-36207 +36208-36209 +36210-36211 +36212 +36213 +36214-36218 +36219-36220 +36221-36224 +36225-36227 +36228 +36229 +36230 +36231-36232 +36233-36236 +36237 +36238 +36239 +36240 +36241-36242 +36243-36244 +36245 +36246 +36247 +36248-36249 +36250 +36251 +36252 +36253 +36254 +36255 +36256 +36257 +36258-36260 +36261 +36262 +36263-36265 +36266-36269 +36270 +36271-36273 +36274-36275 +36276 +36277 +36278-36279 +36280 +36281 +36282 +36283-36284 +36285-36288 +36289 +36290 +36291 +36292-36294 +36295-36297 +36298 +36299-36300 +36301 +36302 +36303 +36304 +36305 +36306 +36307-36309 +36310-36312 +36313 +36314 +36315 +36316 +36317 +36318 +36319 +36320 +36321 +36322 +36323 +36324 +36325-36326 +36327 +36328-36329 +36330 +36331 +36332 +36333 +36334 +36335 +36336 +36337 +36338 +36339 +36340-36342 +36343-36346 +36347-36349 +36350 +36351 +36352 +36353 +36354 +36355-36357 +36358-36359 +36360 +36361 +36362 +36363-36364 +36365-36366 +36367-36369 +36370 +36371 +36372 +36373-36377 +36378-36380 +36381-36383 +36384-36386 +36387-36389 +36390 +36391 +36392 +36393 +36394-36398 +36399-36401 +36402 +36403 +36404 +36405 +36406-36407 +36408 +36409 +36410 +36411 +36412 +36413 +36414-36418 +36419 +36420-36423 +36424 +36425-36429 +36430-36431 +36432 +36433 +36434 +36435 +36436 +36437-36441 +36442 +36443-36444 +36445-36447 +36448-36449 +36450-36452 +36453 +36454 +36455 +36456 +36457 +36458 +36459-36463 +36464-36465 +36466 +36467-36468 +36469 +36470-36473 +36474 +36475 +36476 +36477-36481 +36482-36483 +36484 +36485 +36486 +36487 +36488-36490 +36491-36492 +36493-36495 +36496 +36497 +36498 +36499 +36500 +36501 +36502-36504 +36505 +36506 +36507 +36508 +36509 +36510 +36511 +36512 +36513 +36514 +36515 +36516 +36517 +36518 +36519-36520 +36521-36524 +36525-36527 +36528 +36529 +36530 +36531-36535 +36536 +36537 +36538 +36539-36540 +36541 +36542 +36543-36544 +36545 +36546-36547 +36548-36549 +36550-36554 +36555 +36556 +36557 +36558 +36559-36561 +36562 +36563-36564 +36565-36568 +36569-36570 +36571-36572 +36573-36576 +36577-36580 +36581-36582 +36583-36585 +36586-36587 +36588-36591 +36592 +36593 +36594-36596 +36597-36598 +36599-36601 +36602-36603 +36604-36605 +36606-36608 +36609 +36610-36613 +36614-36615 +36616 +36617-36618 +36619-36620 +36621 +36622-36623 +36624-36625 +36626-36628 +36629-36630 +36631-36635 +36636-36638 +36639 +36640-36642 +36643-36644 +36645-36647 +36648 +36649-36652 +36653-36654 +36655-36656 +36657-36659 +36660-36661 +36662-36664 +36665-36668 +36669-36670 +36671-36673 +36674-36675 +36676 +36677 +36678 +36679-36680 +36681-36682 +36683 +36684-36686 +36687 +36688-36691 +36692 +36693 +36694-36696 +36697 +36698-36699 +36700-36702 +36703 +36704 +36705 +36706 +36707 +36708-36710 +36711 +36712-36715 +36716 +36717-36718 +36719-36720 +36721 +36722-36724 +36725-36726 +36727 +36728-36729 +36730-36731 +36732 +36733-36735 +36736-36737 +36738 +36739 +36740 +36741-36742 +36743 +36744-36746 +36747 +36748-36749 +36750 +36751-36753 +36754-36755 +36756 +36757 +36758-36761 +36762-36763 +36764 +36765-36766 +36767-36768 +36769 +36770-36772 +36773-36774 +36775 +36776-36779 +36780-36781 +36782 +36783-36787 +36788-36789 +36790 +36791 +36792-36794 +36795-36796 +36797 +36798-36800 +36801-36802 +36803 +36804 +36805-36806 +36807-36808 +36809 +36810 +36811-36813 +36814-36815 +36816 +36817-36819 +36820-36821 +36822 +36823 +36824 +36825-36826 +36827 +36828 +36829 +36830-36832 +36833 +36834 +36835 +36836 +36837 +36838 +36839-36841 +36842 +36843 +36844 +36845 +36846 +36847 +36848-36849 +36850-36851 +36852 +36853 +36854 +36855 +36856 +36857-36859 +36860-36862 +36863 +36864-36866 +36867-36868 +36869-36872 +36873 +36874-36875 +36876 +36877 +36878 +36879-36880 +36881-36882 +36883-36884 +36885-36886 +36887-36890 +36891 +36892-36893 +36894-36896 +36897-36898 +36899-36902 +36903 +36904-36905 +36906 +36907-36908 +36909-36910 +36911-36914 +36915 +36916-36917 +36918-36919 +36920-36922 +36923-36924 +36925-36928 +36929 +36930-36934 +36935 +36936 +36937 +36938-36941 +36942-36944 +36945-36946 +36947-36948 +36949-36950 +36951 +36952-36953 +36954-36955 +36956 +36957 +36958 +36959 +36960-36961 +36962-36964 +36965-36966 +36967-36968 +36969-36971 +36972 +36973 +36974 +36975-36976 +36977-36978 +36979 +36980 +36981-36983 +36984-36985 +36986-36988 +36989-36991 +36992-36995 +36996 +36997 +36998 +36999 +37000-37001 +37002 +37003 +37004 +37005 +37006-37007 +37008 +37009-37011 +37012-37013 +37014-37016 +37017-37018 +37019-37021 +37022 +37023-37024 +37025 +37026-37030 +37031-37032 +37033 +37034 +37035 +37036-37037 +37038 +37039 +37040 +37041 +37042 +37043-37044 +37045-37046 +37047 +37048 +37049 +37050 +37051 +37052-37053 +37054 +37055 +37056-37058 +37059 +37060 +37061 +37062-37063 +37064-37065 +37066 +37067 +37068-37069 +37070 +37071-37072 +37073 +37074 +37075-37076 +37077 +37078 +37079 +37080-37081 +37082-37084 +37085 +37086-37089 +37090 +37091 +37092 +37093-37094 +37095-37098 +37099 +37100 +37101 +37102 +37103 +37104 +37105 +37106 +37107 +37108 +37109 +37110 +37111-37115 +37116 +37117 +37118 +37119 +37120 +37121-37122 +37123 +37124 +37125 +37126 +37127 +37128 +37129-37130 +37131 +37132 +37133 +37134 +37135 +37136 +37137-37139 +37140 +37141 +37142 +37143 +37144 +37145 +37146 +37147-37149 +37150 +37151 +37152 +37153 +37154 +37155 +37156-37159 +37160 +37161 +37162 +37163 +37164 +37165 +37166 +37167-37168 +37169 +37170 +37171 +37172 +37173 +37174 +37175 +37176 +37177 +37178 +37179 +37180 +37181 +37182 +37183-37184 +37185 +37186 +37187 +37188 +37189 +37190 +37191 +37192-37194 +37195 +37196 +37197 +37198 +37199 +37200 +37201 +37202 +37203 +37204-37206 +37207 +37208 +37209 +37210 +37211 +37212 +37213 +37214 +37215-37217 +37218 +37219 +37220 +37221 +37222 +37223 +37224 +37225 +37226 +37227-37228 +37229-37230 +37231 +37232-37234 +37235-37239 +37240 +37241-37242 +37243-37244 +37245-37246 +37247 +37248-37249 +37250-37252 +37253-37254 +37255-37257 +37258-37261 +37262-37264 +37265-37267 +37268-37270 +37271-37273 +37274-37277 +37278 +37279 +37280 +37281-37283 +37284 +37285 +37286 +37287 +37288 +37289 +37290-37291 +37292 +37293-37295 +37296 +37297-37298 +37299-37300 +37301 +37302-37305 +37306-37308 +37309-37313 +37314-37316 +37317-37318 +37319-37320 +37321-37322 +37323-37324 +37325 +37326-37327 +37328 +37329 +37330 +37331-37333 +37334 +37335-37336 +37337-37339 +37340-37341 +37342-37344 +37345 +37346-37348 +37349 +37350-37352 +37353-37354 +37355-37356 +37357 +37358 +37359 +37360-37361 +37362 +37363-37364 +37365-37366 +37367-37369 +37370 +37371-37372 +37373-37374 +37375-37376 +37377-37378 +37379 +37380-37381 +37382 +37383-37385 +37386-37390 +37391 +37392 +37393-37394 +37395-37400 +37401 +37402 +37403 +37404 +37405-37406 +37407-37408 +37409 +37410 +37411 +37412 +37413-37414 +37415-37419 +37420 +37421 +37422 +37423-37424 +37425 +37426-37427 +37428-37429 +37430-37431 +37432 +37433-37434 +37435-37438 +37439 +37440 +37441 +37442-37443 +37444-37445 +37446-37447 +37448 +37449-37450 +37451 +37452-37454 +37455 +37456 +37457 +37458 +37459 +37460 +37461-37462 +37463-37464 +37465-37466 +37467 +37468-37469 +37470 +37471-37472 +37473 +37474-37475 +37476 +37477 +37478 +37479 +37480 +37481-37482 +37483-37484 +37485-37486 +37487 +37488 +37489 +37490 +37491 +37492-37493 +37494-37496 +37497 +37498-37500 +37501-37503 +37504 +37505 +37506 +37507 +37508 +37509 +37510-37511 +37512-37514 +37515 +37516 +37517-37519 +37520 +37521 +37522-37523 +37524-37525 +37526-37528 +37529-37532 +37533-37535 +37536 +37537-37539 +37540 +37541 +37542 +37543 +37544 +37545-37546 +37547-37549 +37550-37551 +37552 +37553 +37554-37555 +37556-37557 +37558-37559 +37560-37561 +37562 +37563-37566 +37567-37569 +37570-37572 +37573 +37574-37575 +37576-37577 +37578-37582 +37583-37586 +37587 +37588-37590 +37591-37592 +37593 +37594 +37595-37596 +37597-37598 +37599 +37600 +37601 +37602 +37603 +37604 +37605 +37606 +37607 +37608 +37609 +37610 +37611-37613 +37614-37615 +37616-37618 +37619-37620 +37621-37622 +37623 +37624 +37625 +37626 +37627 +37628 +37629 +37630-37632 +37633-37634 +37635 +37636 +37637 +37638 +37639-37641 +37642-37645 +37646 +37647 +37648 +37649 +37650-37651 +37652-37653 +37654 +37655-37656 +37657-37659 +37660-37661 +37662-37664 +37665 +37666-37667 +37668-37669 +37670 +37671-37672 +37673-37675 +37676-37677 +37678 +37679 +37680 +37681-37682 +37683-37684 +37685 +37686 +37687-37688 +37689-37690 +37691 +37692 +37693 +37694 +37695 +37696 +37697 +37698-37700 +37701-37703 +37704 +37705-37706 +37707-37712 +37713-37714 +37715-37717 +37718-37720 +37721-37723 +37724-37726 +37727-37728 +37729-37731 +37732-37733 +37734 +37735-37737 +37738-37742 +37743-37745 +37746-37750 +37751 +37752 +37753 +37754-37755 +37756 +37757-37758 +37759-37760 +37761-37763 +37764-37765 +37766 +37767 +37768 +37769 +37770-37772 +37773 +37774-37776 +37777 +37778 +37779-37780 +37781 +37782 +37783-37784 +37785 +37786-37787 +37788-37789 +37790-37793 +37794-37795 +37796 +37797-37799 +37800 +37801-37803 +37804-37805 +37806-37807 +37808 +37809-37810 +37811-37812 +37813-37814 +37815-37816 +37817-37818 +37819 +37820 +37821-37822 +37823 +37824 +37825 +37826-37827 +37828 +37829-37832 +37833-37834 +37835-37837 +37838-37840 +37841-37842 +37843-37844 +37845 +37846 +37847 +37848 +37849 +37850 +37851-37852 +37853-37855 +37856-37857 +37858-37860 +37861 +37862 +37863-37864 +37865-37866 +37867 +37868 +37869-37870 +37871-37873 +37874-37875 +37876-37878 +37879 +37880-37881 +37882 +37883-37885 +37886 +37887-37888 +37889 +37890 +37891-37892 +37893-37894 +37895-37896 +37897 +37898-37900 +37901-37903 +37904-37905 +37906 +37907-37908 +37909-37910 +37911-37912 +37913-37915 +37916 +37917-37918 +37919 +37920-37923 +37924 +37925-37928 +37929-37932 +37933-37935 +37936 +37937 +37938-37939 +37940 +37941 +37942 +37943 +37944-37946 +37947-37950 +37951-37953 +37954-37955 +37956 +37957-37958 +37959-37960 +37961-37963 +37964 +37965 +37966 +37967-37969 +37970-37971 +37972-37973 +37974 +37975-37977 +37978-37980 +37981-37982 +37983 +37984-37986 +37987 +37988 +37989 +37990 +37991-37992 +37993 +37994 +37995 +37996-37997 +37998-38000 +38001 +38002 +38003 +38004-38005 +38006 +38007 +38008 +38009 +38010-38011 +38012 +38013-38015 +38016 +38017-38018 +38019 +38020 +38021 +38022-38023 +38024 +38025 +38026-38027 +38028-38029 +38030-38031 +38032 +38033 +38034 +38035 +38036 +38037 +38038-38039 +38040-38041 +38042 +38043-38046 +38047-38049 +38050-38054 +38055 +38056 +38057 +38058-38060 +38061-38064 +38065 +38066-38067 +38068-38070 +38071 +38072 +38073 +38074-38076 +38077-38079 +38080 +38081 +38082-38083 +38084 +38085 +38086-38087 +38088 +38089-38090 +38091-38092 +38093 +38094-38096 +38097-38099 +38100 +38101 +38102 +38103-38104 +38105 +38106-38107 +38108 +38109-38110 +38111-38112 +38113 +38114 +38115-38116 +38117 +38118 +38119 +38120 +38121-38122 +38123 +38124-38126 +38127 +38128 +38129 +38130-38131 +38132 +38133 +38134 +38135-38137 +38138-38140 +38141 +38142 +38143 +38144-38146 +38147-38149 +38150-38152 +38153-38155 +38156-38159 +38160-38162 +38163-38165 +38166 +38167-38169 +38170 +38171-38172 +38173 +38174 +38175 +38176-38177 +38178 +38179 +38180 +38181 +38182-38186 +38187 +38188 +38189-38191 +38192 +38193 +38194-38196 +38197-38198 +38199 +38200 +38201 +38202 +38203 +38204-38206 +38207 +38208 +38209 +38210-38212 +38213 +38214 +38215-38216 +38217-38218 +38219 +38220 +38221-38222 +38223 +38224-38225 +38226-38228 +38229 +38230 +38231-38232 +38233 +38234-38235 +38236 +38237 +38238-38239 +38240 +38241-38242 +38243-38245 +38246 +38247 +38248 +38249 +38250 +38251 +38252-38254 +38255-38256 +38257-38258 +38259 +38260 +38261 +38262 +38263 +38264-38266 +38267 +38268-38272 +38273-38274 +38275-38278 +38279-38281 +38282-38283 +38284-38285 +38286-38287 +38289-38290 +38291 +38292 +38293 +38294 +38295-38296 +38297-38298 +38299-38301 +38302-38303 +38304 +38305 +38306 +38307-38310 +38311-38316 +38317-38320 +38321-38322 +38323-38327 +38328-38331 +38332-38333 +38334-38335 +38336 +38337-38340 +38341-38342 +38343 +38344-38345 +38346-38348 +38349-38352 +38353 +38354 +38355-38356 +38357-38359 +38360 +38361-38362 +38363 +38364-38366 +38367-38369 +38370 +38371 +38372-38374 +38375-38378 +38379 +38380 +38381 +38382 +38383 +38384 +38385 +38386-38387 +38388-38390 +38391 +38392 +38393-38394 +38395-38396 +38397-38399 +38400-38402 +38403-38404 +38405-38407 +38408 +38409-38410 +38411 +38412 +38413-38415 +38416-38418 +38419 +38420-38422 +38423 +38424-38425 +38426-38428 +38429 +38430 +38431 +38432-38434 +38435 +38436-38437 +38438 +38439 +38440 +38441 +38442-38443 +38444-38446 +38447 +38448-38449 +38450-38454 +38455 +38456 +38457 +38458-38459 +38460 +38461-38462 +38463 +38464 +38465 +38466-38468 +38469-38471 +38472 +38473-38475 +38476-38477 +38478 +38479 +38480 +38481-38482 +38483 +38484 +38485 +38486-38488 +38489-38490 +38491-38493 +38494-38496 +38497-38499 +38500-38502 +38503 +38504 +38505 +38506-38507 +38508-38511 +38512-38513 +38514 +38515-38516 +38517-38518 +38519-38520 +38521 +38522 +38523 +38524 +38525-38527 +38528-38531 +38532 +38533-38534 +38535-38536 +38537-38539 +38540 +38541-38543 +38544 +38545 +38546-38548 +38549-38551 +38552 +38553 +38554-38556 +38557-38558 +38559 +38560-38561 +38562 +38563 +38564 +38565-38566 +38567 +38568-38570 +38571 +38572 +38573 +38574-38577 +38578 +38579-38581 +38582-38584 +38585 +38586-38588 +38589 +38590 +38591-38592 +38593 +38594 +38595-38597 +38598 +38599 +38600-38603 +38604 +38605 +38606-38608 +38609-38610 +38611 +38612 +38613 +38614 +38615 +38616 +38617-38620 +38621 +38622-38623 +38624 +38625 +38626-38627 +38628-38629 +38630 +38631 +38632 +38633-38634 +38635 +38636-38637 +38638-38642 +38643 +38644 +38645-38646 +38647 +38648-38650 +38651 +38652-38654 +38655 +38656 +38657-38659 +38660-38662 +38663 +38664 +38665-38666 +38667-38669 +38670-38671 +38672 +38673-38674 +38675-38677 +38678-38680 +38681 +38682 +38683 +38684-38686 +38687 +38688 +38689 +38690-38691 +38692 +38693 +38694-38695 +38696 +38697-38698 +38699 +38700-38701 +38702-38704 +38705-38706 +38707-38712 +38713 +38714 +38715 +38716 +38717 +38718 +38719 +38720 +38721 +38722 +38723 +38724 +38725-38726 +38727 +38728-38730 +38731 +38732 +38733 +38734-38735 +38736-38737 +38738-38739 +38740 +38741-38742 +38743 +38744 +38745 +38746 +38747 +38748-38753 +38754 +38755 +38756 +38757 +38758 +38759 +38760 +38761-38762 +38763 +38764 +38765 +38766 +38767 +38768-38770 +38771 +38772 +38773-38774 +38775-38777 +38778 +38779 +38780 +38781 +38782 +38783 +38784 +38785 +38786-38787 +38788-38792 +38793 +38794-38795 +38796-38798 +38799 +38800-38802 +38803-38805 +38806 +38807-38810 +38811 +38812 +38813 +38814 +38815 +38816-38818 +38819-38820 +38821-38823 +38824 +38825 +38826 +38827 +38828-38830 +38831-38834 +38835 +38836-38837 +38838-38841 +38842-38847 +38848-38851 +38852-38855 +38856 +38857-38858 +38859-38860 +38861-38862 +38863-38866 +38867-38868 +38869 +38870-38871 +38872 +38873-38877 +38878-38880 +38881-38885 +38886 +38887-38889 +38890 +38891 +38892-38894 +38895-38897 +38898-38899 +38900-38902 +38903-38905 +38906-38909 +38910-38911 +38912-38914 +38915-38916 +38917-38918 +38919-38922 +38923-38926 +38927-38934 +38935-38938 +38939-38940 +38941 +38942 +38943 +38944 +38945 +38946-38948 +38949-38950 +38951-38952 +38953-38954 +38955-38957 +38958-38959 +38960-38962 +38963 +38964-38965 +38966 +38967-38968 +38969-38970 +38971-38972 +38973 +38974-38976 +38977-38979 +38980-38981 +38982-38983 +38984-38986 +38987-38989 +38990-38991 +38992 +38993-38995 +38996-38999 +39000-39002 +39003-39005 +39006 +39007-39010 +39011-39013 +39014-39016 +39017-39018 +39019-39021 +39022 +39023-39024 +39025-39026 +39027 +39028-39030 +39031 +39032-39034 +39035-39036 +39037 +39038 +39039-39041 +39042 +39043-39045 +39046 +39047-39050 +39051 +39052-39054 +39055 +39056-39058 +39059 +39060 +39061-39063 +39064 +39065-39067 +39068-39070 +39071 +39072 +39073 +39074 +39075-39076 +39077-39079 +39080-39081 +39082-39083 +39084 +39085 +39086 +39087 +39088 +39089 +39090 +39091 +39092-39093 +39094 +39095 +39096 +39097 +39098 +39099 +39100 +39101-39103 +39104 +39105 +39106-39107 +39108 +39109-39111 +39112 +39113 +39114 +39115-39117 +39118-39119 +39120 +39121 +39122 +39123 +39124 +39125 +39126-39127 +39128-39129 +39130-39131 +39132-39134 +39135-39137 +39138-39141 +39142 +39143-39144 +39145 +39146 +39147 +39148-39149 +39150 +39151 +39152-39155 +39156 +39157 +39158 +39159 +39160-39161 +39162 +39163 +39164-39165 +39166 +39167-39170 +39171 +39172 +39173 +39174-39175 +39176 +39177 +39178-39179 +39180 +39181 +39182-39184 +39185 +39186-39187 +39188 +39189-39190 +39191 +39192 +39193-39194 +39195 +39196-39199 +39200-39201 +39202 +39203 +39204 +39205 +39206-39207 +39208-39211 +39212 +39213-39215 +39216 +39217 +39218 +39219 +39220-39221 +39222-39225 +39226 +39227-39229 +39230 +39231 +39232 +39233-39234 +39235-39236 +39237-39238 +39239 +39240-39245 +39246 +39247 +39248 +39249 +39250-39251 +39252-39255 +39256-39258 +39259 +39260 +39261 +39262 +39263-39264 +39265-39268 +39269-39274 +39275 +39276 +39277 +39278 +39279-39280 +39281 +39282 +39283 +39284-39285 +39286-39287 +39288 +39289 +39290 +39291-39292 +39293-39296 +39297 +39298-39299 +39300-39301 +39302 +39303-39304 +39305-39307 +39308 +39309-39310 +39311-39312 +39313-39315 +39316-39317 +39318-39319 +39320-39323 +39324 +39325-39326 +39327-39328 +39329 +39330 +39331 +39332-39333 +39334-39336 +39337 +39338 +39339-39345 +39346 +39347 +39348 +39349-39350 +39351-39354 +39355 +39356 +39357-39359 +39360 +39361 +39362 +39363-39364 +39365-39367 +39368 +39369-39370 +39371 +39372 +39373 +39374 +39375 +39376 +39377 +39378-39379 +39380-39383 +39384 +39385-39386 +39387-39388 +39389 +39390 +39391 +39392-39393 +39394-39396 +39398 +39399-39400 +39401 +39402-39403 +39404 +39405 +39406 +39407-39408 +39409-39412 +39413 +39414-39415 +39416 +39417-39418 +39419 +39420 +39421 +39422-39423 +39424 +39425 +39426-39427 +39428-39429 +39430-39432 +39433 +39434-39435 +39436-39438 +39439-39440 +39441-39443 +39444 +39445 +39446 +39447 +39448-39449 +39450-39451 +39452-39454 +39455 +39456-39457 +39458-39461 +39462-39463 +39464-39467 +39468 +39469 +39470 +39471-39472 +39473-39475 +39476 +39477 +39478-39480 +39481-39482 +39483-39484 +39485 +39486 +39487-39489 +39490-39491 +39492 +39493-39495 +39496-39497 +39498-39499 +39500-39502 +39503-39505 +39506-39508 +39509 +39510 +39511 +39512-39514 +39515 +39516 +39517 +39518-39520 +39521 +39522-39525 +39526-39527 +39528 +39529 +39530-39532 +39533-39534 +39535-39537 +39538-39540 +39541-39542 +39543-39544 +39545 +39546-39547 +39548-39549 +39550-39552 +39553-39554 +39555-39556 +39557 +39558 +39559-39560 +39561 +39562-39564 +39565 +39566-39567 +39568 +39569 +39570-39574 +39575-39576 +39577-39578 +39579 +39580 +39581 +39582 +39583-39585 +39586 +39587 +39588 +39589 +39590-39591 +39592 +39593 +39594 +39595 +39596 +39597-39599 +39600 +39601 +39602-39604 +39605 +39606 +39607 +39608 +39609 +39610 +39611 +39612 +39613-39616 +39617-39618 +39619 +39620 +39621 +39622 +39623-39626 +39627 +39628 +39629 +39630 +39631-39633 +39634 +39635 +39636 +39637 +39638-39641 +39642 +39643 +39644 +39645 +39646-39649 +39650 +39651 +39652 +39653 +39654-39658 +39659 +39660 +39661-39662 +39663 +39664-39665 +39666 +39667-39668 +39669 +39670 +39671 +39672 +39673-39675 +39676 +39677 +39678 +39679 +39680-39681 +39682 +39683 +39684 +39685 +39686-39689 +39690 +39691 +39692 +39693 +39694 +39695 +39696-39697 +39698-39699 +39700 +39701 +39702 +39703 +39704 +39705-39706 +39707-39708 +39709 +39710-39712 +39713 +39714 +39715 +39716-39718 +39719 +39720 +39721 +39722 +39723-39725 +39726-39728 +39729 +39730 +39731 +39732 +39733 +39734-39736 +39737 +39738 +39739 +39740 +39741 +39742-39744 +39745 +39746 +39747 +39748 +39749 +39750 +39751 +39752-39754 +39755 +39756-39757 +39758-39760 +39761 +39762 +39763 +39764 +39765 +39766-39768 +39769 +39770-39773 +39774 +39775 +39776-39777 +39778-39782 +39783-39784 +39785-39787 +39788-39789 +39790-39791 +39792-39796 +39797-39801 +39802 +39803-39805 +39806-39809 +39810 +39811-39814 +39815 +39816 +39817-39818 +39819-39820 +39821-39823 +39824 +39825 +39826-39827 +39828 +39829 +39830-39831 +39832 +39833-39836 +39837 +39838 +39839 +39840-39841 +39842-39844 +39845 +39846-39848 +39849-39852 +39853-39855 +39856-39858 +39859-39861 +39862-39863 +39864 +39865 +39866 +39867 +39868 +39869 +39870-39872 +39873 +39874 +39875 +39876 +39877 +39878-39881 +39882 +39883 +39884 +39885 +39886-39888 +39889 +39890 +39891 +39892 +39893 +39894-39897 +39898 +39899 +39900 +39901 +39902 +39903 +39904 +39905 +39906 +39907 +39908 +39909 +39910 +39911-39912 +39913-39914 +39915 +39916 +39917 +39918 +39919-39922 +39923 +39924-39926 +39927-39928 +39929 +39930 +39931 +39932 +39933 +39934 +39935 +39936-39939 +39940 +39941 +39942 +39943-39945 +39946 +39947 +39948-39950 +39951 +39952 +39953 +39954 +39955 +39956 +39957-39958 +39959 +39960-39963 +39964 +39965 +39966-39969 +39970 +39971-39973 +39974 +39975-39976 +39977 +39978 +39979 +39980 +39981-39984 +39985 +39986-39988 +39989 +39990 +39991 +39992 +39993 +39994 +39995 +39996 +39997 +39998 +39999-40000 +40001 +40002 +40003-40005 +40006-40007 +40008-40009 +40010 +40011-40014 +40015 +40016 +40017 +40018 +40019 +40021 +40022 +40023 +40024 +40025 +40026-40027 +40028-40029 +40030 +40031 +40032 +40033-40034 +40035 +40036 +40037 +40038 +40039-40040 +40041-40042 +40043-40044 +40045 +40046 +40047 +40048 +40049 +40050-40053 +40054-40055 +40056 +40057 +40058 +40059 +40060-40061 +40062 +40063 +40064 +40065-40066 +40067-40068 +40069 +40070 +40071 +40072 +40073 +40074-40076 +40077-40078 +40079 +40080 +40081 +40082-40084 +40085 +40086-40087 +40088 +40089 +40090 +40091 +40092 +40093 +40094-40095 +40096 +40097 +40098-40099 +40100-40101 +40102 +40103 +40104 +40105 +40106 +40107-40108 +40109 +40110-40111 +40112-40116 +40117 +40118 +40119 +40120 +40121 +40122-40123 +40124 +40125 +40126 +40127-40128 +40129-40130 +40131 +40132-40133 +40134-40135 +40136 +40137 +40138-40140 +40141-40143 +40144 +40145-40148 +40149 +40150 +40151-40153 +40154 +40155 +40156-40158 +40159-40160 +40161 +40162 +40163-40165 +40166-40168 +40169-40171 +40172-40174 +40175 +40176 +40177-40180 +40181-40185 +40186 +40187 +40188 +40189 +40190-40191 +40192-40194 +40195 +40196-40200 +40201 +40202 +40203 +40204-40205 +40206-40208 +40209-40210 +40211 +40212 +40213 +40214 +40215-40217 +40218-40220 +40221-40222 +40223 +40224 +40225-40226 +40227-40229 +40230-40231 +40232 +40233 +40234 +40235 +40236 +40237 +40238 +40239 +40240 +40241-40242 +40243-40244 +40245 +40246 +40247 +40248-40250 +40251 +40252 +40253 +40254-40255 +40256 +40257 +40258-40260 +40261 +40262 +40263-40264 +40265 +40266 +40267-40269 +40270-40272 +40273 +40274-40275 +40276-40277 +40278 +40279 +40280 +40281 +40282-40285 +40286 +40287 +40288 +40289 +40290 +40291 +40292 +40293 +40294 +40295 +40296 +40297-40299 +40300 +40301 +40302 +40303-40304 +40305 +40306 +40307 +40308 +40309-40311 +40312 +40313 +40314-40315 +40316-40317 +40318-40319 +40320 +40321 +40322-40323 +40324 +40325-40326 +40327-40329 +40330 +40331 +40332-40333 +40334-40335 +40336 +40337-40338 +40339-40340 +40341 +40342-40343 +40344 +40345 +40346 +40347-40348 +40349 +40350-40352 +40353-40357 +40358-40360 +40361-40362 +40363 +40364 +40365-40366 +40367 +40368 +40369 +40370-40371 +40372 +40373 +40374 +40375 +40376 +40377-40378 +40379-40382 +40383-40384 +40385 +40386 +40387-40389 +40390-40394 +40395 +40396-40397 +40398 +40399 +40400 +40401-40402 +40403-40404 +40405 +40406 +40407 +40408-40410 +40411-40412 +40413-40414 +40415 +40416 +40417-40419 +40420 +40421-40422 +40423-40424 +40425-40426 +40427 +40428 +40429-40430 +40431-40432 +40433-40434 +40435-40436 +40437 +40438 +40439-40441 +40442-40443 +40444-40445 +40446 +40447-40451 +40452 +40453 +40454 +40455-40456 +40457-40459 +40460 +40461 +40462-40464 +40465 +40466 +40467 +40468-40469 +40470-40471 +40472 +40473 +40474-40477 +40478 +40479 +40480 +40481 +40482 +40483-40484 +40485 +40486-40489 +40490-40491 +40492 +40493 +40494-40497 +40498 +40499 +40500 +40501 +40502 +40503-40504 +40505 +40506-40509 +40510-40511 +40512 +40513-40514 +40515-40516 +40517 +40518 +40519 +40520-40522 +40523 +40524-40527 +40528 +40529 +40530 +40531-40532 +40533 +40534 +40535-40537 +40538 +40539 +40540 +40541-40543 +40544 +40545 +40546-40549 +40550-40551 +40552 +40553 +40554-40555 +40556 +40557-40561 +40562 +40563-40564 +40565 +40566 +40567 +40568 +40569-40570 +40571 +40572 +40573-40574 +40575 +40576-40577 +40578 +40579 +40580 +40581 +40582-40583 +40584 +40585-40587 +40588-40589 +40590-40593 +40594-40595 +40596 +40597 +40598-40599 +40600 +40601 +40602 +40603-40605 +40606 +40607-40608 +40609-40611 +40612 +40613 +40614-40616 +40617 +40618-40619 +40620 +40621 +40622 +40623 +40624-40626 +40627 +40628-40632 +40633 +40634 +40635 +40636 +40637 +40638-40639 +40640-40641 +40642-40644 +40645 +40646 +40647 +40648 +40649-40652 +40653 +40654 +40655 +40656 +40657 +40658-40661 +40662 +40663 +40664 +40665 +40666-40667 +40668 +40669 +40670 +40671 +40672 +40673 +40674-40676 +40677 +40678 +40679-40681 +40682-40683 +40684 +40685 +40686-40687 +40688 +40689 +40690-40691 +40692 +40693 +40694 +40695-40697 +40698 +40699-40703 +40704-40708 +40709 +40710-40712 +40713-40716 +40717 +40718 +40719-40722 +40723-40725 +40726-40727 +40728-40730 +40731 +40732-40734 +40735 +40736-40739 +40740-40741 +40742 +40743-40744 +40745-40746 +40747-40752 +40753-40755 +40756 +40757-40760 +40761-40765 +40766-40768 +40769-40772 +40773 +40774 +40775 +40776 +40777 +40778 +40779-40781 +40782-40783 +40784 +40785-40787 +40788 +40789 +40790 +40791-40793 +40794-40795 +40796 +40797 +40798 +40799-40801 +40802 +40803 +40804 +40805 +40806-40810 +40811 +40812 +40813 +40814-40816 +40817 +40818 +40819 +40820 +40821 +40822-40824 +40825-40827 +40828 +40829 +40830 +40831-40832 +40833 +40834 +40835 +40836 +40837 +40838 +40839 +40840-40842 +40843-40844 +40845-40846 +40847 +40848 +40849 +40850 +40851-40852 +40853 +40854 +40855 +40856 +40857-40861 +40862-40866 +40867-40868 +40869 +40870 +40871-40872 +40873-40875 +40876 +40877 +40878 +40879 +40880 +40881 +40882 +40883 +40884-40885 +40886-40887 +40888 +40889 +40890 +40891-40892 +40893-40895 +40896 +40897-40898 +40899 +40900 +40901-40902 +40903 +40904-40905 +40906 +40907 +40908 +40909 +40910-40912 +40913 +40914 +40915 +40916 +40917 +40918 +40919 +40920-40922 +40923 +40924 +40925 +40926 +40927-40929 +40930 +40931 +40932 +40933 +40934 +40935-40937 +40938 +40939 +40940 +40941 +40942 +40943 +40944 +40945-40947 +40948 +40949 +40950 +40951 +40952 +40953-40955 +40956 +40957 +40958 +40959-40960 +40961 +40962 +40963 +40964-40966 +40967 +40968-40971 +40972 +40973 +40974 +40975 +40976 +40977-40978 +40979-40980 +40981-40983 +40984 +40985 +40986-40987 +40988-40989 +40990 +40991 +40992-40994 +40995 +40996-40998 +40999-41001 +41002-41004 +41005-41006 +41007-41008 +41009-41011 +41012-41014 +41015-41017 +41018 +41019 +41020 +41021-41023 +41024 +41025 +41026-41029 +41030 +41031 +41032 +41033 +41034 +41035-41037 +41038 +41039-41041 +41042-41044 +41045-41046 +41047-41049 +41050 +41051 +41052-41053 +41054 +41055 +41056 +41057-41059 +41060-41062 +41063-41064 +41065 +41066-41067 +41068 +41069 +41070 +41071 +41072 +41073 +41074 +41075-41076 +41077-41078 +41079 +41080-41081 +41082 +41083 +41084 +41085-41086 +41087 +41088-41089 +41090-41092 +41093 +41094-41095 +41096 +41097 +41098 +41099-41100 +41101-41105 +41106 +41107 +41108 +41109 +41110-41112 +41113 +41114-41115 +41116 +41117-41120 +41121-41122 +41123-41126 +41127-41130 +41131-41134 +41135-41136 +41137-41139 +41140-41141 +41142-41145 +41146 +41147 +41148-41150 +41151-41152 +41153-41155 +41156-41157 +41158-41159 +41160-41162 +41163 +41164-41167 +41168-41169 +41170 +41171-41172 +41173 +41174 +41175-41176 +41177-41178 +41179-41181 +41182-41183 +41184-41188 +41189-41191 +41192 +41193-41195 +41196-41197 +41198-41200 +41201 +41202-41205 +41206-41207 +41208-41209 +41210-41212 +41213-41214 +41215-41217 +41218-41222 +41223-41224 +41225-41227 +41228-41229 +41232 +41233-41235 +41236-41237 +41238 +41239 +41240-41242 +41243 +41244-41247 +41248 +41249 +41250 +41251 +41252 +41253 +41254 +41255 +41256 +41257 +41258 +41259 +41260 +41261 +41262 +41263 +41264 +41265 +41266 +41267 +41268-41270 +41271 +41272 +41273-41274 +41275 +41276 +41277 +41278 +41279 +41280 +41281 +41282 +41283 +41284-41285 +41286-41288 +41289-41290 +41291-41292 +41293 +41294 +41295-41297 +41298-41300 +41301-41304 +41305-41306 +41307-41310 +41311-41312 +41313 +41314 +41315 +41316 +41317 +41318 +41319 +41320 +41321-41324 +41325-41329 +41330-41331 +41332 +41333 +41334 +41335 +41336 +41337-41339 +41340-41341 +41342 +41343 +41344-41345 +41346 +41347 +41348-41350 +41351 +41352-41355 +41356 +41357 +41358-41360 +41361-41363 +41364 +41365-41367 +41368 +41369-41371 +41372 +41373 +41374-41375 +41376-41378 +41379-41380 +41381-41383 +41384 +41385 +41386 +41387-41389 +41390-41392 +41393 +41394-41395 +41396-41398 +41399-41401 +41402-41403 +41404 +41405 +41406-41408 +41409 +41410 +41411-41413 +41414-41416 +41417 +41418 +41419-41421 +41422-41424 +41425-41426 +41427-41431 +41432-41434 +41435-41437 +41438-41439 +41440-41441 +41442 +41443-41444 +41445-41446 +41447 +41448-41450 +41451 +41452-41453 +41454-41455 +41456 +41457-41459 +41460 +41461 +41462 +41463-41465 +41466 +41467-41470 +41471-41473 +41474 +41475-41476 +41477 +41478 +41479 +41480-41481 +41482-41483 +41484-41485 +41486-41488 +41489-41490 +41491-41493 +41494 +41495 +41496 +41497 +41498-41499 +41500 +41501 +41502-41504 +41505-41507 +41508-41509 +41510 +41511 +41512 +41513-41515 +41516 +41517 +41518 +41519 +41520 +41521-41523 +41524-41525 +41526 +41527 +41528-41531 +41532-41533 +41534 +41535-41536 +41537-41538 +41539 +41540-41542 +41543 +41544 +41545-41547 +41548 +41549-41552 +41553-41554 +41555 +41556 +41557 +41558-41559 +41560-41562 +41563-41564 +41565 +41566-41567 +41568 +41569-41571 +41572 +41573-41574 +41575 +41576-41578 +41579 +41580-41581 +41582 +41583-41584 +41585-41586 +41587-41589 +41590-41592 +41593 +41594 +41595 +41596-41598 +41599 +41600 +41601 +41602-41604 +41605 +41606 +41607 +41608-41609 +41610-41613 +41614 +41615 +41616-41617 +41618 +41619-41622 +41623 +41624 +41625 +41626 +41627-41628 +41629 +41630 +41631 +41632 +41633 +41634 +41635 +41636 +41637-41638 +41639-41640 +41641-41642 +41643-41644 +41645 +41646 +41647-41651 +41652-41655 +41656-41657 +41658 +41659 +41660 +41661 +41662 +41663 +41664 +41665 +41666 +41667-41669 +41670 +41671-41673 +41674 +41675-41677 +41678 +41679-41680 +41681 +41682-41683 +41684 +41685-41687 +41688-41691 +41692 +41693 +41694 +41695-41697 +41698 +41699 +41700 +41701-41702 +41703-41706 +41707 +41708 +41709-41710 +41711 +41712 +41713 +41714 +41715 +41716 +41717 +41718 +41722 +41723 +41724 +41725-41727 +41728-41729 +41730-41732 +41733 +41734 +41735 +41736-41738 +41739-41741 +41742-41743 +41744 +41745 +41746 +41747 +41748-41750 +41751 +41752 +41753-41755 +41756 +41757 +41758 +41759 +41760-41762 +41763-41765 +41766-41767 +41768 +41769 +41770 +41771 +41772-41774 +41775 +41776 +41777 +41778 +41779 +41780 +41781 +41782-41783 +41784 +41785 +41786 +41787-41789 +41790-41792 +41793-41794 +41795 +41796 +41797 +41798 +41799-41801 +41802 +41803 +41804 +41805 +41806 +41807 +41808-41809 +41810 +41811-41814 +41815 +41816 +41817 +41818-41820 +41821-41823 +41824-41825 +41826 +41827 +41828 +41829 +41830 +41831 +41832 +41833 +41834 +41835-41836 +41837 +41838-41839 +41840-41841 +41842 +41843 +41844 +41845 +41846 +41847 +41848 +41849-41851 +41852-41853 +41854 +41855 +41856 +41857 +41858 +41859 +41860-41861 +41862-41863 +41864-41866 +41867 +41868 +41869 +41870-41872 +41873 +41874-41875 +41876-41877 +41878 +41879 +41880-41882 +41883-41885 +41886 +41887 +41888 +41889 +41890 +41891 +41892 +41893 +41894 +41895 +41896 +41897 +41898 +41899 +41900 +41901-41903 +41904-41906 +41907-41909 +41910-41912 +41913 +41914-41915 +41916-41919 +41920 +41921 +41922 +41923 +41924 +41925 +41926 +41927 +41928 +41929 +41930 +41931 +41932 +41933 +41934 +41935 +41936-41938 +41939 +41940-41941 +41942-41943 +41944 +41945 +41946-41948 +41949 +41950 +41951-41952 +41953 +41954 +41955-41956 +41957-41960 +41961 +41962 +41963 +41964 +41965 +41966 +41967 +41968 +41969-41970 +41971 +41972-41974 +41975-41977 +41978-41979 +41980 +41981-41983 +41984-41986 +41987-41991 +41992 +41993-41994 +41995-41997 +41998-42000 +42001 +42002 +42003 +42004 +42005 +42006-42008 +42009-42010 +42011 +42012-42013 +42014-42015 +42016 +42017 +42018 +42019 +42020-42021 +42022-42023 +42024 +42025 +42026-42028 +42029-42030 +42031-42032 +42033 +42034 +42035-42037 +42038-42039 +42040-42041 +42042 +42043 +42044 +42045 +42046-42048 +42049-42050 +42051 +42052 +42053-42055 +42056-42057 +42058-42059 +42060 +42061-42062 +42063-42064 +42065 +42066 +42067-42069 +42070-42073 +42074 +42075 +42076 +42077-42078 +42079-42080 +42081 +42082 +42083 +42084 +42085 +42086 +42087 +42088 +42089-42090 +42091-42095 +42096 +42097-42100 +42101-42103 +42104-42105 +42106 +42107 +42108 +42109 +42110 +42111-42112 +42113 +42114 +42115-42116 +42117 +42118-42119 +42120-42121 +42122-42123 +42124 +42125 +42126-42128 +42129-42131 +42132-42134 +42135-42136 +42137-42138 +42139 +42140-42141 +42142 +42143 +42144 +42145 +42146 +42147 +42148 +42149-42150 +42151-42152 +42153 +42154 +42155 +42156 +42157 +42158-42159 +42160-42162 +42163-42164 +42165 +42166 +42167 +42168 +42169 +42170 +42171-42173 +42174-42175 +42176 +42177 +42178 +42179 +42180 +42181-42182 +42183 +42184 +42185-42186 +42187-42188 +42189-42190 +42191-42192 +42193 +42194 +42195 +42196 +42197 +42198 +42199-42201 +42202 +42203 +42204-42205 +42206 +42207 +42208 +42209 +42210-42211 +42212-42213 +42214 +42215-42216 +42217-42219 +42220-42222 +42223-42224 +42225 +42226 +42227 +42228 +42229 +42230 +42231 +42232 +42233-42234 +42235-42237 +42238 +42239 +42240-42241 +42242 +42243 +42244 +42245-42246 +42247 +42248-42250 +42251-42252 +42253-42255 +42256 +42257 +42258 +42259-42261 +42262-42263 +42264 +42265-42266 +42267-42268 +42269 +42270 +42271-42272 +42273 +42274-42277 +42278-42280 +42281 +42282 +42283 +42284 +42285-42286 +42287 +42288-42289 +42290-42294 +42295 +42296 +42297 +42298-42301 +42302-42304 +42305-42306 +42307 +42308 +42309 +42310 +42311 +42312 +42313-42314 +42315 +42316 +42317 +42318-42320 +42321-42322 +42323-42325 +42326-42328 +42329 +42330-42331 +42332 +42333-42335 +42336 +42337-42339 +42340 +42341 +42342-42343 +42344 +42345 +42346-42347 +42348 +42349-42352 +42353-42356 +42357-42358 +42359-42362 +42363 +42364-42365 +42366-42367 +42368 +42369-42373 +42374-42376 +42377-42379 +42380-42383 +42384-42387 +42388-42391 +42392-42395 +42396 +42397-42398 +42399-42401 +42402-42404 +42405-42406 +42407-42409 +42410-42411 +42412 +42413-42416 +42417-42420 +42421 +42422 +42423 +42424 +42425 +42426 +42427 +42428-42430 +42431 +42432-42435 +42436-42437 +42438-42440 +42441-42444 +42445-42447 +42448-42449 +42450-42452 +42453 +42454-42456 +42457 +42458 +42459-42460 +42461 +42462-42464 +42465-42466 +42467-42469 +42470 +42471 +42472 +42473 +42474-42475 +42476 +42477 +42478-42479 +42480 +42481 +42482 +42483-42484 +42485 +42486 +42487 +42488-42489 +42490-42491 +42492-42493 +42494-42496 +42497-42498 +42499 +42500-42502 +42503 +42504 +42505-42507 +42508-42511 +42512-42514 +42515-42517 +42518-42520 +42521 +42522-42523 +42524-42525 +42526 +42527-42528 +42529-42530 +42531-42533 +42534 +42535 +42536-42538 +42539-42540 +42541 +42542-42545 +42546 +42547 +42548-42549 +42550 +42551-42554 +42555 +42556 +42557-42558 +42559 +42560 +42561 +42562 +42563 +42564-42565 +42566 +42567-42570 +42571-42572 +42573-42575 +42576-42579 +42580 +42581 +42582 +42583-42584 +42585 +42586 +42587 +42588 +42589-42590 +42591-42592 +42593 +42594-42595 +42596 +42597-42598 +42599-42601 +42602 +42603 +42604 +42605-42607 +42608-42609 +42610 +42611-42612 +42613 +42614 +42615 +42616-42617 +42618 +42619-42621 +42622-42624 +42625 +42626 +42627 +42628 +42629 +42630 +42631 +42632 +42633 +42634-42636 +42637-42638 +42639-42640 +42641-42643 +42644 +42645-42647 +42648 +42649-42650 +42651 +42652 +42653 +42654 +42655 +42656 +42657 +42658 +42659 +42660-42661 +42662-42664 +42665 +42666 +42667 +42668-42671 +42672 +42673 +42674 +42675 +42676 +42677 +42678 +42679 +42680 +42681 +42682 +42683 +42684 +42685 +42686 +42687 +42688 +42689 +42690 +42691 +42692 +42693 +42694 +42695 +42696 +42697-42699 +42700 +42701-42704 +42705 +42706 +42707 +42708 +42709 +42710 +42711 +42712 +42713 +42714 +42715 +42716 +42717 +42718 +42719 +42720 +42721 +42722 +42723 +42724 +42725 +42726 +42727-42728 +42729 +42730-42733 +42734 +42735 +42736 +42737 +42738 +42739 +42740 +42741 +42742 +42743 +42744 +42745 +42746 +42747-42749 +42750 +42751-42753 +42754-42755 +42756 +42757 +42758 +42759 +42760 +42761 +42762 +42763 +42764 +42765 +42766 +42767 +42768 +42769 +42770 +42771 +42772-42774 +42775 +42776-42778 +42779 +42780-42781 +42782 +42783 +42784 +42785-42788 +42789 +42790 +42791 +42792 +42793-42795 +42796 +42797 +42798 +42799 +42800 +42801 +42802-42804 +42805 +42806 +42807-42809 +42810-42812 +42813 +42814 +42815 +42816 +42817-42819 +42820-42822 +42823-42825 +42826-42827 +42828 +42829-42831 +42832 +42833-42836 +42837 +42838 +42839 +42840 +42841 +42842 +42843 +42844-42845 +42846-42849 +42850-42851 +42852 +42853 +42854 +42855 +42856 +42857 +42858 +42859 +42860 +42861 +42862-42863 +42864-42866 +42867-42869 +42870-42872 +42873 +42874 +42875 +42876 +42877 +42878 +42879 +42880 +42881 +42882 +42883 +42884 +42885-42886 +42887 +42888-42889 +42890-42892 +42893-42894 +42895-42897 +42898-42899 +42900 +42901 +42902 +42903 +42904 +42905 +42906 +42907 +42908 +42909 +42910-42911 +42912-42913 +42914-42915 +42916 +42917-42918 +42919-42921 +42922-42923 +42924-42925 +42926 +42927 +42928-42929 +42930 +42931-42933 +42934 +42935 +42936 +42937 +42938 +42939-42940 +42941-42943 +42944 +42945-42946 +42947-42950 +42951 +42952-42953 +42954-42955 +42956-42957 +42958 +42959 +42960-42962 +42963-42964 +42965 +42966-42967 +42968 +42969 +42970-42971 +42972-42974 +42975-42976 +42977 +42978 +42979 +42980-42981 +42982 +42983-42985 +42986-42988 +42989-42990 +42991-42993 +42994-42995 +42996 +42997-42998 +42999-43001 +43002 +43003-43004 +43005-43006 +43007-43009 +43010 +43011-43012 +43013 +43014-43016 +43017-43018 +43019-43020 +43021-43023 +43024-43027 +43028-43029 +43030 +43031 +43032 +43033 +43034 +43035 +43036 +43037 +43038 +43039-43041 +43042 +43043-43044 +43045 +43046 +43047-43048 +43049-43051 +43052-43053 +43054-43055 +43056-43058 +43059-43060 +43061-43062 +43063-43064 +43065-43066 +43067 +43068 +43069 +43070 +43071 +43072 +43073 +43074-43075 +43076-43078 +43079 +43080 +43081 +43082 +43083-43084 +43085-43087 +43088-43089 +43090 +43091-43093 +43094-43095 +43096 +43097 +43098 +43099 +43100 +43101 +43102 +43103 +43104-43105 +43106-43107 +43108 +43109 +43110-43111 +43112-43114 +43115-43116 +43117 +43118 +43119 +43120-43122 +43123 +43124-43125 +43126-43127 +43128-43130 +43131 +43132 +43133-43135 +43136 +43137 +43138-43139 +43140-43141 +43142-43143 +43144 +43145 +43146 +43147-43149 +43150 +43151 +43152 +43153-43155 +43156 +43157 +43158-43160 +43161 +43162 +43163-43164 +43165-43166 +43167-43169 +43170 +43171 +43172-43174 +43175 +43176 +43177 +43178-43179 +43180 +43181 +43182 +43183-43184 +43185 +43186 +43187-43188 +43189 +43190 +43191-43192 +43193-43195 +43196 +43197-43199 +43200-43201 +43202 +43203-43205 +43206-43207 +43208 +43209-43211 +43212 +43213 +43214 +43215-43216 +43217-43218 +43219 +43220-43221 +43222-43223 +43224 +43225-43227 +43228-43229 +43230 +43231-43232 +43233 +43234 +43235 +43236 +43237 +43238 +43239 +43240 +43241 +43242 +43243 +43244-43245 +43246-43248 +43249-43250 +43251-43253 +43254 +43255-43256 +43257 +43258 +43259 +43260 +43261 +43262 +43263 +43264-43266 +43267-43268 +43269 +43270-43271 +43272 +43273-43274 +43275-43277 +43278 +43279 +43280 +43281-43282 +43283-43284 +43285 +43286-43288 +43289-43290 +43291 +43292 +43293 +43294 +43295 +43296-43297 +43298-43300 +43301-43302 +43305 +43306 +43307-43309 +43310 +43311-43312 +43313-43314 +43315 +43316-43317 +43318 +43319 +43320 +43321-43322 +43323-43325 +43326 +43327-43328 +43329 +43330 +43331 +43332-43334 +43335-43337 +43338 +43339 +43340 +43341-43343 +43344-43345 +43346 +43347-43348 +43349 +43350 +43351-43353 +43354-43355 +43356 +43357 +43358 +43359 +43360 +43361 +43362 +43363-43364 +43365 +43366 +43367 +43368 +43369 +43370 +43371 +43372-43374 +43375 +43376-43377 +43378-43380 +43381 +43382 +43383 +43384 +43385 +43386 +43387-43388 +43389 +43390 +43391 +43392-43393 +43394-43395 +43396 +43397 +43398-43399 +43400-43402 +43403 +43404 +43405-43407 +43408 +43409-43411 +43412 +43413 +43414-43415 +43416-43418 +43419-43420 +43421 +43422-43424 +43425 +43426-43428 +43429-43430 +43431 +43432 +43433 +43434 +43435 +43436-43438 +43439 +43440 +43441 +43442-43443 +43444 +43445 +43446 +43447-43449 +43450 +43451-43452 +43453-43456 +43457 +43458 +43459 +43460-43461 +43462 +43463 +43464 +43465 +43466-43467 +43468-43469 +43470 +43471-43473 +43474 +43475 +43476 +43477 +43480 +43481 +43482 +43483-43484 +43485 +43486 +43487-43488 +43489-43492 +43493 +43494 +43495 +43496-43498 +43499-43500 +43501-43503 +43504 +43505 +43506-43508 +43509 +43510 +43511 +43512 +43513-43514 +43515-43516 +43517 +43518 +43519-43520 +43521-43525 +43526 +43527 +43528 +43529 +43530 +43531-43532 +43533-43535 +43536-43539 +43540-43541 +43542 +43543 +43544 +43545 +43546-43548 +43549-43551 +43552-43553 +43554 +43555-43556 +43557 +43558-43559 +43560 +43561 +43562 +43563 +43564 +43565 +43566 +43567 +43568 +43569 +43570 +43571-43574 +43575-43577 +43578 +43579 +43580-43581 +43582-43583 +43584-43585 +43586 +43587 +43588 +43589 +43590-43592 +43593 +43594 +43595 +43596 +43597 +43598 +43599 +43600 +43601 +43602 +43603-43604 +43605-43606 +43607-43608 +43609-43613 +43614-43615 +43616-43619 +43620 +43621-43622 +43623 +43624 +43625 +43626 +43627 +43628 +43629 +43630 +43631-43632 +43633 +43634-43635 +43636-43638 +43639-43640 +43641-43642 +43643 +43644 +43645 +43646 +43647 +43648-43649 +43650-43651 +43652-43653 +43654-43655 +43656-43657 +43658-43662 +43663-43664 +43665-43668 +43669 +43670 +43671 +43672 +43673-43675 +43676-43678 +43679-43680 +43681 +43682 +43683 +43684-43686 +43687 +43688 +43689 +43690 +43691-43694 +43695-43696 +43697-43699 +43700-43702 +43703 +43704-43707 +43708 +43709 +43710-43711 +43712 +43713 +43714 +43715-43716 +43717-43719 +43720-43721 +43722 +43723 +43724-43725 +43726 +43727 +43728-43729 +43730 +43731 +43732 +43733-43736 +43737 +43738-43740 +43741 +43742 +43743 +43744-43746 +43747 +43748-43750 +43751-43752 +43753 +43754 +43755 +43756 +43757 +43758 +43759 +43760 +43761 +43762 +43763-43767 +43768-43772 +43773 +43774-43779 +43780-43782 +43783 +43784 +43785 +43786 +43787 +43788 +43789 +43790-43791 +43792 +43793 +43794 +43795 +43796-43797 +43798-43799 +43800-43801 +43802-43803 +43804 +43805 +43806 +43807-43808 +43809 +43810 +43811 +43812 +43813 +43814 +43815 +43816 +43817 +43818 +43819 +43820 +43821-43822 +43823 +43824 +43825 +43826 +43827-43828 +43829 +43830-43831 +43832 +43833 +43834-43835 +43836-43837 +43838 +43839 +43840 +43841 +43842 +43843 +43846 +43847 +43848 +43849 +43850 +43851 +43852-43853 +43854 +43855 +43856 +43857 +43858 +43859 +43860-43862 +43863-43865 +43866 +43867 +43868 +43869 +43870-43871 +43872 +43873 +43874 +43875 +43876-43878 +43879-43881 +43882 +43883 +43884-43886 +43887-43889 +43890-43893 +43894 +43895-43896 +43897-43899 +43900-43901 +43902 +43903 +43904 +43905-43907 +43908 +43909 +43910 +43911 +43912 +43913 +43914 +43915 +43916 +43917 +43918 +43919 +43920 +43921 +43922 +43923-43925 +43926-43927 +43928 +43929 +43930 +43931 +43932 +43933-43935 +43936-43939 +43940 +43941 +43942 +43943 +43944 +43945-43946 +43947 +43948 +43949 +43950 +43951 +43952 +43953-43955 +43956-43957 +43958 +43959 +43960 +43961-43962 +43963-43964 +43965 +43966 +43967 +43968 +43969-43971 +43972-43973 +43974 +43975 +43976-43977 +43978-43980 +43981 +43982 +43983 +43984-43986 +43987 +43988 +43989-43990 +43991 +43992-43993 +43994-43995 +43996-43998 +43999-44000 +44001 +44002-44005 +44006 +44007 +44008 +44009-44010 +44011-44012 +44013-44014 +44015-44016 +44017 +44018 +44019-44020 +44021-44022 +44023 +44024 +44025 +44026 +44027 +44028 +44029 +44030 +44031 +44032 +44033 +44034 +44035 +44036 +44037-44038 +44039 +44040 +44041-44043 +44044-44045 +44046-44048 +44049-44051 +44052-44054 +44055 +44056 +44057 +44058 +44059 +44060-44062 +44063-44064 +44065-44067 +44068-44069 +44070-44071 +44072 +44073-44075 +44076 +44077 +44078 +44079 +44080 +44081 +44082-44083 +44084 +44085-44087 +44088 +44089 +44090 +44091 +44092-44093 +44094-44096 +44097 +44098 +44099 +44100 +44101-44102 +44103 +44104 +44105 +44106-44107 +44108 +44109 +44110 +44111 +44112 +44113 +44114 +44115 +44116 +44117 +44118 +44119-44121 +44122 +44123-44124 +44125-44127 +44128-44129 +44130 +44131 +44132-44133 +44134-44135 +44136 +44137-44139 +44140 +44141 +44142 +44143 +44144-44146 +44147 +44148 +44149-44150 +44151-44152 +44153-44154 +44155-44156 +44157 +44158 +44159 +44160 +44161-44162 +44163-44164 +44165-44167 +44168-44169 +44170-44171 +44172 +44173-44175 +44176-44178 +44179 +44180-44182 +44183 +44184-44186 +44187 +44188-44189 +44190-44191 +44192 +44193 +44194-44195 +44196 +44197-44198 +44199 +44200 +44201 +44202-44204 +44205-44207 +44208 +44209 +44210 +44211-44213 +44214 +44215-44218 +44219-44220 +44221 +44222 +44223-44224 +44225 +44226 +44227 +44228-44230 +44231-44234 +44235-44237 +44238 +44239 +44240-44241 +44242 +44243-44245 +44246 +44247 +44248-44249 +44250 +44251 +44252 +44253-44254 +44255-44258 +44259-44261 +44262-44263 +44264 +44265 +44266 +44267-44269 +44270-44272 +44273-44276 +44277-44279 +44280 +44281-44283 +44284-44286 +44287 +44288-44290 +44291-44292 +44293-44294 +44295 +44296 +44297 +44298 +44299-44301 +44302-44303 +44304-44305 +44306 +44307 +44308 +44309-44311 +44312-44313 +44314-44316 +44317-44318 +44319-44321 +44322 +44323 +44324 +44325 +44326 +44327 +44328 +44329 +44330-44333 +44334 +44335-44338 +44339-44341 +44342 +44343 +44344 +44346 +44347 +44348 +44349 +44350 +44351 +44352 +44353 +44354 +44355 +44356 +44357 +44358 +44359 +44360 +44361 +44362 +44363 +44364 +44365 +44366 +44367 +44368 +44369 +44370 +44371 +44372-44373 +44374 +44375 +44376 +44377 +44378 +44379 +44380 +44381 +44382 +44383-44385 +44386 +44387 +44388 +44389 +44390 +44391 +44392-44393 +44394 +44395 +44396-44399 +44400 +44401 +44402 +44403 +44404 +44405 +44406 +44407 +44408 +44409 +44410 +44411-44412 +44413 +44414 +44415 +44416-44418 +44419 +44420-44421 +44422 +44423 +44424-44425 +44426 +44427-44428 +44429 +44430 +44431 +44432 +44433 +44434 +44435 +44436 +44437 +44438-44439 +44440 +44441 +44442 +44443-44445 +44446 +44447 +44448 +44449-44450 +44451 +44452 +44453 +44454 +44455 +44456 +44457-44458 +44459 +44460-44463 +44464-44465 +44466 +44467 +44468-44469 +44470 +44471 +44472 +44473 +44474 +44475 +44476 +44477-44479 +44480 +44481 +44482 +44483 +44484 +44485 +44486 +44487 +44488 +44489 +44490 +44491-44493 +44494-44496 +44497 +44498 +44499 +44500 +44501 +44502 +44503 +44504 +44505-44507 +44508-44510 +44513 +44514 +44515 +44516-44517 +44518 +44519 +44520 +44521 +44522 +44523 +44525 +44526 +44527-44528 +44529 +44530 +44531-44532 +44533-44534 +44535-44536 +44537-44539 +44540 +44541 +44542 +44543 +44544-44545 +44546 +44547-44548 +44549-44550 +44551 +44552 +44553 +44554 +44555-44557 +44558 +44559 +44560 +44561 +44562-44565 +44566 +44567 +44568 +44569 +44570-44571 +44572 +44573-44575 +44576-44577 +44578 +44579-44580 +44581-44582 +44583 +44584-44587 +44588-44589 +44590 +44591-44593 +44594-44595 +44596 +44597-44598 +44599-44600 +44601 +44602-44603 +44604-44605 +44606 +44607-44609 +44610-44611 +44612 +44613 +44614-44615 +44616-44617 +44618 +44619 +44620-44621 +44622-44623 +44624 +44625-44626 +44627-44628 +44629 +44630-44631 +44632 +44633-44634 +44635 +44636-44639 +44640 +44641 +44642-44643 +44644 +44645-44647 +44648-44649 +44650 +44651 +44652-44654 +44655 +44656 +44657-44658 +44659-44660 +44661 +44662 +44663 +44664-44665 +44666 +44667-44669 +44670-44671 +44672 +44673 +44674-44675 +44676-44677 +44678 +44679-44681 +44682-44683 +44684 +44685-44686 +44687-44688 +44689 +44690-44692 +44693-44694 +44695-44696 +44697-44700 +44701-44703 +44704 +44705-44706 +44707-44708 +44709-44710 +44711 +44712 +44713 +44714 +44715-44716 +44717 +44718-44720 +44721 +44722 +44723 +44724-44725 +44726-44727 +44728-44730 +44731-44732 +44733 +44734 +44735 +44736-44737 +44738 +44739-44741 +44742-44743 +44744 +44745-44747 +44748 +44749 +44750 +44751-44752 +44753-44754 +44755-44757 +44758-44759 +44760 +44761 +44762-44764 +44765 +44766 +44767-44768 +44769 +44770 +44771 +44772 +44773-44774 +44775 +44776 +44777 +44778-44779 +44780 +44781 +44782-44785 +44786-44787 +44788 +44789 +44790 +44791-44792 +44793 +44794-44796 +44797-44798 +44799 +44800-44801 +44802 +44803-44804 +44805 +44806 +44807-44808 +44809-44811 +44812-44813 +44814 +44815 +44816-44817 +44818 +44819 +44820-44823 +44824-44825 +44826 +44827 +44828 +44829 +44830-44831 +44832 +44833 +44834-44835 +44836-44837 +44838-44839 +44840-44841 +44842-44843 +44844 +44845-44846 +44847-44849 +44850 +44851 +44852 +44853-44854 +44855 +44856-44859 +44860-44862 +44863 +44864 +44865 +44866-44868 +44869 +44870-44871 +44872 +44873 +44874 +44875-44876 +44877-44878 +44879 +44880 +44881-44885 +44886 +44887 +44888-44889 +44890 +44891-44892 +44893 +44894-44896 +44897-44898 +44899 +44900-44901 +44902-44903 +44904 +44905 +44906 +44907-44908 +44909 +44910-44911 +44912 +44913 +44914-44915 +44916-44917 +44918 +44919 +44920 +44921 +44922 +44923-44924 +44925 +44926 +44927 +44928-44929 +44930 +44931-44933 +44934 +44935 +44936-44937 +44938-44939 +44940 +44941 +44942-44943 +44944 +44945-44946 +44947 +44948 +44949-44951 +44952 +44953 +44954-44955 +44956-44957 +44958 +44959 +44960-44961 +44962-44963 +44964 +44965-44967 +44968 +44969 +44970 +44971-44972 +44973 +44974 +44975 +44976 +44977-44979 +44980-44982 +44983 +44984-44985 +44986 +44987 +44988 +44989-44990 +44991 +44992-44994 +44995-44996 +44997 +44998-45000 +45001 +45002 +45003-45004 +45005 +45006 +45007 +45008 +45009 +45010 +45011-45012 +45013-45014 +45015 +45016-45019 +45020 +45021-45022 +45023-45024 +45025 +45026-45027 +45028-45029 +45030-45031 +45032-45033 +45034 +45035 +45036-45038 +45039-45040 +45041 +45042-45045 +45046 +45047 +45048-45050 +45051-45052 +45053 +45054-45056 +45057-45059 +45060 +45061 +45062 +45063 +45064-45065 +45066-45067 +45068-45069 +45070 +45071-45073 +45074-45076 +45077 +45078 +45079 +45080 +45081-45082 +45083 +45084 +45085 +45086-45087 +45088-45089 +45090-45092 +45093-45094 +45095 +45096 +45097 +45098 +45099 +45100-45101 +45102-45103 +45104-45107 +45108 +45109-45110 +45111 +45112 +45113-45116 +45117 +45118 +45119 +45120 +45121 +45122 +45123 +45124-45125 +45126-45127 +45128 +45129-45130 +45131-45132 +45133 +45134 +45135 +45136-45137 +45138-45139 +45140 +45141 +45142 +45143 +45144-45146 +45147-45148 +45149 +45150 +45151 +45152 +45153 +45154 +45155 +45156 +45157 +45158 +45159-45160 +45161 +45162-45164 +45165 +45166 +45167 +45168 +45169 +45170 +45171 +45172-45174 +45175-45176 +45177-45178 +45179 +45180 +45181-45182 +45183-45185 +45186 +45187-45188 +45189 +45190 +45191 +45192 +45193 +45194 +45195 +45196 +45197-45199 +45200-45202 +45203 +45204-45206 +45207-45208 +45209-45211 +45212 +45213 +45214 +45215 +45216 +45217 +45218 +45219-45221 +45222 +45223 +45224 +45225 +45226-45227 +45228-45229 +45230 +45231 +45232 +45233 +45234 +45235 +45236 +45237 +45238 +45239 +45240 +45241 +45242 +45243 +45244 +45245 +45246 +45247-45249 +45250 +45251-45252 +45253 +45254-45255 +45256-45257 +45258 +45259 +45260 +45261 +45262 +45263-45264 +45265 +45266-45267 +45268 +45269-45271 +45272 +45273 +45274 +45275 +45276 +45277 +45278 +45279 +45280 +45281 +45282 +45283-45286 +45287-45290 +45291 +45292 +45293 +45294 +45295 +45296 +45297 +45298-45299 +45300-45301 +45302 +45303-45304 +45305-45306 +45307 +45308-45310 +45311 +45312-45313 +45314 +45315-45316 +45317 +45318 +45319-45320 +45321-45323 +45324 +45325-45327 +45328 +45329-45330 +45331 +45332-45333 +45334-45335 +45336-45337 +45338-45340 +45341 +45342 +45343 +45344 +45345-45347 +45348-45349 +45350 +45351 +45352-45354 +45355 +45356 +45357 +45358-45359 +45360-45361 +45362 +45363 +45364 +45365 +45366 +45367 +45368 +45369 +45370 +45373 +45374 +45375 +45376 +45377 +45378 +45379 +45380 +45381-45382 +45383 +45384 +45385 +45386 +45387 +45388 +45389 +45390 +45391-45392 +45393-45394 +45395-45396 +45397-45399 +45400-45402 +45403 +45404-45405 +45406-45408 +45409 +45410 +45411-45412 +45413-45414 +45415 +45416 +45417 +45418 +45419 +45420 +45421 +45422-45424 +45425 +45426 +45427 +45428-45429 +45430-45432 +45433 +45434-45436 +45437 +45438 +45439 +45440-45441 +45442-45444 +45445 +45446-45447 +45448-45449 +45450 +45451 +45452-45454 +45455-45457 +45458-45460 +45461-45462 +45463-45464 +45465 +45466-45467 +45468-45469 +45470 +45471-45473 +45474 +45475-45479 +45480 +45481-45482 +45483 +45484-45485 +45486-45487 +45488-45489 +45490-45492 +45493 +45494 +45495 +45496-45497 +45498-45499 +45500-45501 +45502 +45503 +45504 +45505 +45506 +45507 +45508 +45509 +45510 +45511 +45512 +45513 +45514 +45515-45517 +45518 +45519 +45520-45521 +45522-45524 +45525 +45526 +45527 +45528-45529 +45530-45531 +45532-45534 +45535-45538 +45539 +45540-45542 +45543-45544 +45545-45546 +45547 +45548 +45549-45550 +45551-45553 +45554-45556 +45557-45558 +45559 +45560 +45561 +45562-45563 +45564-45565 +45566 +45567 +45568-45570 +45571 +45572-45573 +45574-45575 +45576 +45577-45578 +45579 +45580-45582 +45583 +45584-45586 +45587 +45588-45590 +45591 +45592 +45593-45594 +45595-45597 +45598 +45599 +45600 +45601-45602 +45603-45604 +45605-45606 +45607 +45608 +45609-45610 +45611-45612 +45613 +45614 +45615-45617 +45618 +45619 +45620 +45621-45622 +45623-45624 +45625-45626 +45627 +45628-45630 +45631-45633 +45634-45636 +45637-45639 +45640-45643 +45644-45646 +45647-45649 +45650-45653 +45654-45655 +45656-45659 +45660 +45661-45662 +45663 +45664-45665 +45666 +45667 +45668-45670 +45671 +45672 +45673 +45674 +45675 +45676-45677 +45678-45679 +45680 +45681 +45682 +45683 +45684-45685 +45686-45687 +45688 +45689 +45690 +45691 +45692 +45693 +45694 +45695 +45696-45697 +45698 +45699 +45700 +45701 +45702 +45703 +45704 +45705-45706 +45707 +45708-45709 +45710-45711 +45712-45713 +45714 +45715 +45716 +45717-45719 +45720 +45721 +45722 +45723 +45724-45725 +45726-45727 +45728-45731 +45732-45734 +45735 +45736 +45737-45739 +45740-45742 +45743-45744 +45745 +45746 +45747-45748 +45749 +45750 +45751 +45752 +45753-45756 +45757 +45758 +45759-45760 +45761 +45762 +45763 +45764 +45765-45766 +45767 +45768-45769 +45770 +45771 +45772 +45773 +45774 +45775 +45776 +45777 +45778 +45779-45780 +45781 +45782-45785 +45786 +45787 +45788-45789 +45790 +45791 +45792-45793 +45794 +45797 +45798 +45799 +45800 +45801 +45802-45804 +45805 +45806 +45807 +45808-45809 +45810 +45811 +45812-45813 +45814 +45815-45817 +45818 +45819 +45820 +45821 +45822 +45823-45827 +45828 +45829-45831 +45832 +45833 +45834-45835 +45836-45837 +45838-45840 +45841-45843 +45844-45846 +45847 +45848 +45849 +45850-45855 +45856 +45857 +45858-45859 +45860 +45861-45863 +45864-45865 +45866 +45867-45868 +45869 +45870 +45871 +45872-45873 +45874 +45875-45876 +45877-45878 +45879 +45880-45881 +45882 +45883 +45884 +45885 +45886 +45887 +45888-45889 +45890 +45891-45892 +45893-45894 +45895 +45896 +45897-45898 +45899-45901 +45902 +45903 +45904 +45905-45907 +45908-45909 +45910 +45911 +45912-45913 +45914 +45915-45916 +45917 +45918 +45919-45920 +45921 +45922-45923 +45924 +45925-45926 +45927-45928 +45929 +45930 +45931 +45932 +45933-45936 +45937 +45938 +45939-45940 +45941-45943 +45944 +45945-45947 +45948 +45949-45951 +45952-45953 +45954 +45955 +45956 +45957-45959 +45960 +45961 +45962-45963 +45964-45965 +45966 +45967-45969 +45970-45972 +45973-45974 +45975-45976 +45977 +45978-45979 +45980 +45981 +45982-45983 +45984-45985 +45986-45987 +45988 +45989 +45990-45992 +45993-45994 +45995-45999 +46000-46001 +46002 +46003-46005 +46006-46010 +46011 +46012-46013 +46014-46015 +46016-46018 +46019-46020 +46021 +46022 +46023-46024 +46025 +46026-46027 +46028-46029 +46030 +46031 +46032 +46033 +46034-46035 +46036-46037 +46038 +46039 +46040-46041 +46042-46043 +46044 +46045-46046 +46047-46049 +46050 +46051-46052 +46053 +46054 +46055 +46056 +46057-46059 +46060-46061 +46062-46066 +46067 +46068 +46069-46070 +46071-46072 +46073-46075 +46076-46077 +46078-46080 +46081 +46082-46083 +46084-46085 +46086-46088 +46089-46092 +46093 +46094 +46095 +46096-46097 +46098 +46099-46100 +46101-46102 +46103-46105 +46106-46107 +46108 +46109-46110 +46111-46112 +46113 +46114 +46115 +46116-46118 +46119-46121 +46122-46126 +46127 +46128-46129 +46130 +46131 +46132-46133 +46134-46135 +46136-46138 +46139-46141 +46142-46143 +46144-46146 +46147 +46148-46149 +46150 +46151 +46152 +46153 +46154 +46155 +46156 +46157-46158 +46159 +46160 +46161-46162 +46163-46164 +46165 +46166 +46167 +46168-46170 +46171-46175 +46176 +46177-46178 +46179 +46180 +46181-46184 +46185 +46186-46188 +46189-46190 +46191-46193 +46194 +46195-46197 +46198 +46199 +46200 +46201-46202 +46203 +46204 +46205-46207 +46208 +46209 +46210-46213 +46214-46215 +46216-46217 +46218 +46219-46220 +46221-46222 +46223-46225 +46226-46227 +46228 +46229 +46230-46232 +46233-46237 +46238-46239 +46240-46241 +46242 +46243-46244 +46245-46246 +46247-46248 +46249 +46250 +46251 +46252-46254 +46255-46256 +46257-46259 +46260 +46261 +46262 +46263 +46264 +46265-46266 +46267-46268 +46269 +46270-46271 +46272 +46273 +46274-46280 +46281 +46282 +46283-46284 +46285 +46286-46287 +46288-46289 +46290-46291 +46292 +46293 +46294-46297 +46298 +46299 +46300 +46301-46302 +46303-46304 +46305-46306 +46307 +46308 +46309 +46310 +46311 +46312-46313 +46314 +46315 +46316 +46317 +46318-46321 +46322 +46323 +46324 +46325 +46326-46329 +46330 +46331 +46332 +46333 +46334-46335 +46336-46338 +46339 +46340 +46341 +46342-46343 +46344 +46345-46347 +46348-46350 +46351-46352 +46353 +46354-46355 +46356 +46357-46359 +46360 +46361-46363 +46364 +46365 +46366 +46367-46368 +46369 +46370-46373 +46374-46375 +46376-46377 +46378-46380 +46381 +46382 +46383-46384 +46385 +46386 +46387 +46388 +46389 +46390 +46391 +46392 +46393 +46394 +46395 +46396 +46397 +46398 +46399 +46400-46401 +46402-46404 +46405-46407 +46408 +46409 +46410 +46411 +46412 +46413 +46414 +46415 +46416 +46417 +46418 +46419 +46420-46421 +46422-46423 +46424 +46425 +46426 +46427-46431 +46432 +46433 +46434 +46435-46437 +46438-46439 +46440-46441 +46442-46443 +46444-46445 +46446 +46447-46448 +46449-46451 +46452-46454 +46455-46456 +46457-46458 +46459-46461 +46462-46463 +46464-46465 +46466 +46467-46468 +46469-46470 +46471 +46472-46474 +46475-46476 +46477-46478 +46479-46481 +46482-46484 +46485-46487 +46488-46491 +46492 +46493-46494 +46495 +46496 +46497 +46498 +46499-46500 +46501 +46502 +46503 +46504-46506 +46507-46508 +46509 +46510 +46511 +46512-46514 +46515 +46516 +46517 +46518 +46519 +46520-46522 +46523 +46524-46525 +46526-46528 +46529-46531 +46532 +46533-46535 +46536-46539 +46540 +46541 +46542 +46543-46544 +46545-46548 +46549 +46550-46552 +46553 +46554-46555 +46556 +46557 +46558-46559 +46560 +46561-46562 +46563 +46564-46566 +46567-46568 +46569 +46570-46571 +46572-46574 +46575-46577 +46578-46579 +46580-46582 +46583 +46584-46586 +46587 +46588-46590 +46591 +46592-46595 +46596 +46597-46600 +46601 +46602-46604 +46605 +46606-46607 +46608 +46609 +46610 +46611-46612 +46613-46614 +46615 +46616-46617 +46618-46620 +46621 +46622-46623 +46624 +46625-46627 +46628 +46629 +46630 +46631-46633 +46634-46635 +46636-46637 +46638 +46639 +46640-46642 +46643 +46644 +46645 +46646 +46647 +46648-46649 +46650-46652 +46653-46655 +46656-46657 +46658 +46659 +46660 +46661-46662 +46663-46666 +46667 +46668 +46669-46670 +46671-46672 +46673-46675 +46676 +46677 +46678-46679 +46680 +46681-46682 +46683 +46684 +46685 +46686 +46687-46689 +46690-46691 +46692 +46693-46694 +46695-46698 +46699-46701 +46702 +46703-46704 +46705 +46706-46707 +46708-46710 +46711-46713 +46714 +46715-46717 +46718 +46719 +46720 +46721 +46722 +46723-46724 +46725-46727 +46728 +46729 +46730-46731 +46732-46733 +46734 +46735-46736 +46737 +46738 +46739-46740 +46741 +46742 +46743-46744 +46745 +46746-46747 +46748-46750 +46751 +46752-46753 +46754-46755 +46756 +46757 +46758 +46759-46761 +46762-46763 +46764 +46765-46767 +46768 +46769 +46770 +46771-46774 +46775-46777 +46778 +46779-46780 +46781-46782 +46783 +46784 +46785-46786 +46787-46788 +46789-46790 +46791 +46792 +46793-46794 +46795 +46796-46797 +46798-46801 +46802 +46803 +46804 +46805-46806 +46807-46809 +46810 +46811 +46812 +46813-46815 +46816 +46817 +46818 +46819 +46820 +46821 +46822 +46823 +46824 +46825 +46826 +46827 +46828-46831 +46832 +46833 +46834-46837 +46838 +46839 +46840 +46841 +46842-46843 +46844 +46845 +46846 +46847-46848 +46849 +46850 +46851 +46852 +46853-46854 +46855-46857 +46858 +46859 +46860-46861 +46862-46863 +46864 +46865 +46866 +46867-46870 +46871 +46872-46877 +46878 +46879 +46880 +46881 +46882 +46883 +46884-46885 +46886 +46887-46888 +46889-46891 +46892 +46893 +46894 +46895 +46896-46898 +46899 +46900 +46901-46904 +46905-46909 +46910-46914 +46915 +46916 +46917 +46918-46920 +46921-46922 +46923 +46924 +46925 +46926-46928 +46929 +46930 +46931 +46932 +46933 +46934 +46935 +46936 +46937 +46938-46939 +46940 +46941-46942 +46943 +46944-46945 +46946-46948 +46949 +46950 +46951 +46952-46953 +46954-46955 +46956-46958 +46959-46960 +46961-46964 +46965 +46966 +46967 +46968 +46969 +46970-46972 +46973 +46974-46975 +46976 +46977-46978 +46979-46982 +46983 +46984-46985 +46986 +46987 +46988 +46989 +46990-46991 +46992 +46993-46994 +46995-46996 +46997 +46998-46999 +47000-47001 +47002 +47003-47005 +47006-47007 +47008-47010 +47011 +47012-47015 +47016-47018 +47019 +47020 +47021-47022 +47023-47024 +47025 +47026 +47027 +47028 +47029 +47030 +47031-47033 +47034-47037 +47038 +47039 +47040-47041 +47042 +47043 +47044 +47045 +47046 +47047-47049 +47050 +47051-47052 +47053 +47054 +47055 +47056-47058 +47059 +47060-47062 +47063 +47064 +47065-47066 +47067 +47068-47069 +47070-47071 +47072 +47073-47074 +47075 +47076 +47077 +47078-47079 +47080-47081 +47082-47084 +47085-47086 +47087 +47088-47089 +47090 +47091-47092 +47093 +47094 +47095 +47096-47097 +47098 +47099-47101 +47102 +47103-47105 +47106 +47107 +47108-47109 +47110-47111 +47112 +47113 +47114 +47115 +47116 +47117 +47118 +47119-47120 +47121 +47122 +47123 +47124 +47125 +47126 +47127 +47128 +47129-47130 +47131-47133 +47134-47137 +47138-47142 +47143 +47144 +47145 +47146 +47147 +47148 +47149 +47150 +47151 +47152 +47153 +47154-47155 +47156-47157 +47158-47159 +47160-47162 +47163 +47164 +47165 +47166 +47167 +47168 +47169 +47170 +47171 +47173 +47174 +47175-47176 +47177-47178 +47179-47180 +47181-47182 +47183 +47184-47185 +47186 +47187-47190 +47191-47192 +47193 +47194-47197 +47198 +47199-47201 +47202 +47203-47204 +47205-47207 +47208 +47209-47210 +47211 +47212 +47213-47214 +47215 +47216 +47217 +47218-47219 +47220 +47221 +47222 +47223 +47224-47226 +47227-47228 +47229 +47230 +47231-47233 +47234-47235 +47236 +47237 +47238-47239 +47240 +47241 +47242 +47243 +47244 +47245 +47246-47247 +47248-47250 +47251-47253 +47254-47255 +47256 +47257 +47258-47259 +47260-47263 +47264-47266 +47267 +47268 +47269 +47270 +47271 +47272 +47273-47274 +47275 +47276 +47277-47279 +47280 +47281-47282 +47283 +47284 +47285 +47286 +47287-47288 +47289-47290 +47291-47292 +47293-47294 +47295-47297 +47298 +47299 +47300 +47301 +47302 +47303 +47304-47305 +47306-47308 +47309-47312 +47313-47316 +47317-47318 +47319-47322 +47323-47325 +47326-47327 +47328 +47329 +47330-47332 +47333-47335 +47336-47338 +47339-47340 +47341-47343 +47344-47345 +47346-47348 +47349 +47350 +47351 +47352-47354 +47355-47357 +47358-47359 +47360 +47361 +47362-47363 +47364 +47365 +47366-47367 +47368 +47369-47370 +47371 +47372-47374 +47375-47376 +47377 +47378 +47379 +47380-47381 +47382 +47383 +47384 +47385 +47386-47387 +47388-47389 +47390 +47391 +47392 +47393-47394 +47395-47398 +47399 +47400-47401 +47402-47405 +47406 +47407 +47408-47409 +47410-47413 +47414-47420 +47421-47426 +47427 +47428-47431 +47432 +47433-47435 +47436 +47437 +47438 +47439-47441 +47442 +47443-47444 +47445-47446 +47447 +47448-47449 +47450-47452 +47453 +47454 +47455 +47456-47458 +47459-47461 +47462-47464 +47465 +47466 +47467 +47468 +47469-47470 +47471 +47472-47474 +47475-47477 +47478 +47479 +47480-47481 +47482-47483 +47484-47486 +47487-47489 +47490-47492 +47493 +47494 +47495 +47496 +47497-47500 +47501 +47502 +47503-47504 +47505-47507 +47508 +47509-47510 +47511-47512 +47513 +47514-47516 +47517 +47518-47521 +47522 +47523-47525 +47526-47527 +47528-47530 +47531-47533 +47534-47535 +47536-47537 +47538 +47539 +47540 +47541-47543 +47544-47545 +47546-47547 +47548-47549 +47550 +47551 +47552-47553 +47554-47555 +47556 +47557 +47558 +47559 +47560 +47561 +47562-47564 +47565-47569 +47570 +47571 +47572 +47573-47574 +47575-47580 +47581 +47582 +47583-47584 +47585 +47586-47588 +47589-47592 +47593-47595 +47596-47598 +47599-47601 +47602 +47603 +47604 +47605 +47606-47608 +47609-47610 +47611-47613 +47614-47616 +47617 +47618 +47619 +47620 +47621-47623 +47624-47625 +47626 +47627-47629 +47630 +47631-47633 +47634 +47635 +47636-47637 +47638 +47639 +47640 +47641-47642 +47643-47645 +47646 +47647 +47648-47649 +47650 +47651 +47652-47653 +47654-47655 +47656-47658 +47659-47661 +47662 +47663 +47664-47665 +47666 +47667-47668 +47669-47671 +47672 +47673-47674 +47675 +47676 +47677 +47678 +47679 +47680 +47681 +47682-47683 +47684-47685 +47686-47689 +47690 +47691-47694 +47695 +47696 +47697-47698 +47699 +47700 +47701-47702 +47703-47704 +47705 +47706-47707 +47708-47709 +47710-47711 +47712-47713 +47714 +47715 +47716 +47717-47718 +47719-47720 +47721 +47722-47723 +47724 +47725-47726 +47727-47728 +47729-47731 +47732-47734 +47735-47737 +47738 +47739-47740 +47741 +47742-47743 +47744 +47745 +47746 +47747-47748 +47749-47750 +47751 +47752-47754 +47755 +47756 +47757-47758 +47759-47760 +47761 +47762 +47763 +47764 +47765-47766 +47767 +47768-47769 +47770 +47771 +47772 +47773 +47774 +47775 +47776-47777 +47778 +47779 +47780 +47781-47782 +47783 +47784-47785 +47786 +47787 +47788 +47789 +47790 +47791-47792 +47793 +47794 +47795 +47796-47797 +47798 +47799-47800 +47801 +47802 +47803 +47804 +47805 +47806 +47807-47808 +47809-47810 +47811 +47812-47813 +47814 +47815-47816 +47817-47818 +47819 +47820 +47821-47822 +47823-47824 +47825 +47826-47827 +47828-47829 +47830 +47831 +47832-47833 +47834 +47835-47836 +47837 +47838 +47839 +47840 +47841 +47842 +47843-47844 +47845-47848 +47849-47850 +47851-47852 +47853 +47854-47855 +47856-47857 +47858-47859 +47860 +47861 +47862 +47863 +47864-47865 +47866 +47867 +47868 +47869 +47870 +47871 +47872-47874 +47875 +47876-47877 +47878-47880 +47881-47882 +47883 +47884-47885 +47886-47887 +47888 +47889-47891 +47892-47893 +47894 +47895-47896 +47897 +47898 +47899-47901 +47902 +47903 +47904 +47905-47907 +47908-47909 +47910 +47911 +47912 +47913 +47914 +47915 +47916 +47917 +47918-47919 +47920-47921 +47922-47923 +47924 +47925 +47926 +47927 +47928-47929 +47930-47931 +47932 +47933 +47934 +47935 +47936-47937 +47938-47941 +47942-47945 +47946-47949 +47950-47952 +47953-47954 +47955 +47956-47959 +47960-47962 +47963-47965 +47966-47970 +47971 +47972-47974 +47975-47977 +47978-47980 +47981-47983 +47984 +47985-47987 +47988-47992 +47993-47994 +47995 +47996 +47997-47998 +47999-48001 +48002 +48003 +48004 +48005 +48006 +48007 +48008-48009 +48010-48012 +48013-48015 +48016-48018 +48019-48020 +48021 +48022-48024 +48025-48028 +48029 +48030-48032 +48033 +48034-48036 +48037 +48038-48039 +48040 +48041 +48042 +48043-48044 +48045 +48046-48047 +48048-48051 +48052 +48053 +48054 +48055 +48056 +48057-48058 +48059 +48060-48063 +48064-48065 +48066-48068 +48069 +48070 +48071-48072 +48073 +48074-48076 +48077 +48078-48079 +48080-48082 +48083-48084 +48085 +48086 +48087 +48088 +48089-48090 +48091-48092 +48093-48095 +48096-48097 +48098 +48099 +48100-48103 +48104-48105 +48106-48107 +48108 +48109-48110 +48111 +48112-48113 +48114-48115 +48116 +48117 +48118 +48119 +48120 +48121 +48122-48123 +48124 +48125-48128 +48129-48131 +48132-48134 +48135-48136 +48137 +48138-48139 +48140 +48141-48143 +48144-48146 +48147 +48148 +48149 +48150 +48151 +48152-48155 +48156 +48157-48160 +48161-48163 +48164-48165 +48166 +48167 +48168 +48169 +48170 +48171 +48172 +48173-48174 +48175-48177 +48178 +48179 +48180 +48181-48183 +48184 +48185 +48186-48188 +48189-48190 +48191 +48192 +48193-48194 +48195 +48196 +48197-48198 +48199 +48200-48201 +48202 +48203 +48204 +48205 +48206 +48207 +48208 +48209 +48210 +48211 +48212 +48213-48216 +48217-48220 +48221 +48222-48224 +48225 +48226 +48227 +48228 +48229 +48230 +48231 +48232 +48233-48234 +48235-48238 +48239 +48240-48243 +48244 +48245 +48246 +48247 +48248 +48249 +48250 +48251 +48252-48253 +48254 +48255-48257 +48258-48260 +48261-48263 +48264 +48265 +48266 +48267 +48268-48269 +48270-48271 +48272 +48273-48275 +48276-48278 +48279 +48280 +48281 +48282 +48283 +48284 +48285-48286 +48287 +48288-48289 +48290 +48291-48293 +48294 +48295 +48296-48299 +48300 +48301 +48302-48303 +48304-48306 +48307-48310 +48311-48315 +48316-48318 +48319-48320 +48321-48323 +48324-48325 +48326-48328 +48329 +48330 +48331 +48332 +48333 +48334 +48335 +48336-48337 +48338 +48339-48340 +48341-48342 +48343 +48344 +48345-48347 +48348-48350 +48351-48353 +48354-48356 +48357 +48358 +48359 +48360-48362 +48363-48366 +48367 +48368-48370 +48371-48372 +48373 +48374-48375 +48376-48377 +48378 +48379 +48380 +48381 +48382 +48383-48384 +48385 +48386-48388 +48389-48390 +48391 +48392 +48393-48395 +48396-48397 +48398-48399 +48400 +48401-48402 +48403-48405 +48406 +48407 +48408-48409 +48410 +48411-48412 +48413 +48414 +48415-48416 +48417-48418 +48419-48421 +48422-48424 +48425-48427 +48428-48430 +48431 +48432-48433 +48434 +48435-48436 +48437 +48438-48439 +48440 +48441-48443 +48444 +48445-48448 +48449 +48450-48452 +48453 +48454-48456 +48457 +48458-48459 +48460 +48461 +48462 +48463-48464 +48465 +48466-48467 +48468-48469 +48470-48471 +48472 +48473 +48474 +48475-48476 +48477-48479 +48480-48482 +48483-48485 +48486-48490 +48491 +48492-48494 +48495-48498 +48499-48501 +48502 +48503-48504 +48505 +48506 +48507-48509 +48510-48511 +48512 +48513-48514 +48515-48517 +48518-48520 +48521-48523 +48524-48526 +48527-48528 +48529-48530 +48531 +48532-48534 +48535-48538 +48539 +48540-48543 +48544-48547 +48548-48551 +48552 +48553-48555 +48556 +48557-48558 +48559 +48560 +48561-48562 +48563 +48564 +48565 +48566 +48567-48569 +48570-48571 +48572 +48573-48574 +48575-48576 +48577-48578 +48579-48580 +48581-48582 +48583-48585 +48586-48589 +48590-48591 +48592-48593 +48594 +48595 +48596-48597 +48598-48599 +48600 +48601-48604 +48605 +48606-48608 +48609 +48610-48613 +48614-48616 +48617-48620 +48621 +48622 +48623-48626 +48627 +48628 +48629-48630 +48631 +48632 +48633 +48634-48635 +48636-48637 +48638-48639 +48640 +48641 +48642 +48643-48644 +48645-48646 +48647 +48648 +48649-48650 +48651-48652 +48653 +48654-48656 +48657 +48658-48659 +48660 +48661 +48662-48663 +48664-48667 +48668 +48669-48671 +48672 +48673-48674 +48675-48676 +48677-48678 +48679-48680 +48681-48682 +48683-48684 +48685-48687 +48688-48689 +48690-48691 +48692 +48693 +48694 +48695 +48696 +48697 +48698 +48699-48700 +48701 +48702 +48703-48704 +48705 +48706 +48707 +48708-48711 +48712 +48713-48714 +48715-48717 +48718 +48719 +48720-48721 +48722-48724 +48725 +48726 +48727-48729 +48730 +48731-48733 +48734 +48735-48737 +48738 +48739 +48740-48741 +48742 +48743-48744 +48745-48746 +48747-48750 +48751 +48752 +48753 +48754-48755 +48756-48757 +48758 +48759 +48760-48761 +48762-48764 +48765 +48766-48769 +48770 +48771-48772 +48773-48775 +48776-48777 +48778-48780 +48781-48783 +48784-48785 +48786-48787 +48788 +48789-48790 +48791-48793 +48794-48795 +48796-48797 +48798 +48799 +48800-48801 +48802-48803 +48804-48805 +48806-48807 +48808-48809 +48810-48811 +48812-48813 +48814 +48815 +48816 +48817 +48818 +48819-48820 +48821 +48822 +48823-48824 +48825-48826 +48827-48829 +48830-48832 +48833-48835 +48836-48838 +48839 +48840-48842 +48843 +48844-48846 +48847 +48848 +48849 +48850 +48851-48853 +48854 +48855-48856 +48857-48860 +48861 +48862-48865 +48866 +48867-48872 +48873 +48874-48876 +48877 +48878-48880 +48881 +48882-48885 +48886-48888 +48889-48892 +48893 +48894 +48895-48896 +48897-48898 +48899 +48900 +48901-48902 +48903 +48904 +48905 +48906 +48907 +48908 +48909-48911 +48912 +48913-48916 +48917-48919 +48920-48921 +48922 +48923-48925 +48926-48927 +48928 +48929-48931 +48932-48933 +48934 +48935-48936 +48937-48938 +48939 +48940 +48941 +48942-48943 +48944 +48945-48946 +48947-48948 +48949 +48950-48952 +48953-48954 +48955 +48956 +48957-48960 +48961-48962 +48963 +48964-48965 +48966-48967 +48968 +48969 +48970-48972 +48973-48974 +48975 +48976-48979 +48980-48981 +48982 +48983-48987 +48988-48989 +48990 +48991 +48992-48995 +48996 +48997 +48998 +48999 +49000-49001 +49002 +49003 +49004 +49005-49007 +49008 +49009 +49010-49012 +49013 +49014-49015 +49016 +49017 +49019 +49020-49021 +49022-49023 +49024 +49025 +49026 +49027-49029 +49030-49032 +49033-49034 +49035 +49036 +49037 +49038 +49039 +49040 +49041 +49042 +49043-49044 +49045-49046 +49047 +49048 +49049 +49050 +49051 +49052-49054 +49055-49056 +49057 +49058 +49059-49060 +49061-49062 +49063 +49064 +49065-49066 +49067-49068 +49069 +49070-49071 +49072 +49073 +49074 +49075 +49076-49077 +49078 +49079 +49080-49081 +49082-49083 +49084 +49085 +49086 +49087 +49088-49090 +49091-49092 +49093-49094 +49095 +49096-49097 +49098-49099 +49100 +49101 +49102 +49103-49104 +49105-49106 +49107 +49108 +49109 +49110 +49111-49112 +49113 +49114 +49115 +49116 +49117 +49118 +49119 +49120 +49121 +49122 +49123-49125 +49126-49128 +49129-49131 +49132-49134 +49135 +49136 +49137 +49138 +49139 +49140 +49141-49142 +49143 +49144 +49145 +49146 +49147-49148 +49149 +49150-49151 +49152-49155 +49156 +49157 +49158 +49159 +49160 +49161 +49162 +49163 +49164-49165 +49166 +49167-49169 +49170-49172 +49173 +49174 +49175-49176 +49177-49178 +49179-49180 +49181-49183 +49184 +49185-49188 +49189-49191 +49192-49193 +49194 +49195-49198 +49199 +49200-49202 +49203-49205 +49206 +49207 +49208 +49209-49211 +49212 +49213 +49214 +49215 +49216-49217 +49218-49219 +49220-49221 +49222 +49223 +49224 +49225-49227 +49228 +49229-49230 +49231-49232 +49233 +49234 +49235-49236 +49237 +49238-49239 +49240-49241 +49242 +49243 +49244-49245 +49246-49248 +49249 +49250 +49251-49253 +49254 +49255 +49256 +49257 +49258 +49259-49260 +49261-49262 +49263-49264 +49265 +49266-49268 +49269-49270 +49271-49273 +49274-49275 +49276-49277 +49278-49279 +49280 +49281 +49282-49284 +49285-49286 +49287 +49288-49289 +49290-49291 +49292-49293 +49294 +49295-49296 +49297-49298 +49299 +49300-49302 +49303-49304 +49305 +49306 +49307 +49308 +49309 +49310 +49311-49312 +49313-49314 +49315-49316 +49317-49318 +49319 +49320 +49321 +49322-49323 +49324 +49325-49326 +49327-49328 +49329 +49330-49332 +49333-49334 +49335-49336 +49337 +49338 +49339 +49340 +49341 +49342 +49343 +49344-49347 +49348 +49349-49351 +49352 +49353-49355 +49356 +49357 +49358-49361 +49362 +49363-49364 +49365 +49366 +49367 +49368-49370 +49371 +49372-49373 +49374-49375 +49376-49377 +49378-49379 +49380 +49381 +49382 +49383 +49384-49385 +49386 +49387-49388 +49389-49390 +49391 +49392 +49393 +49394-49395 +49396 +49397 +49398-49399 +49400-49401 +49402-49405 +49406 +49407 +49408 +49409-49410 +49411 +49412-49413 +49414 +49415 +49416-49418 +49419-49420 +49421 +49422 +49423-49425 +49426-49427 +49428 +49429 +49430-49432 +49433-49435 +49436 +49437 +49438-49439 +49440-49441 +49442-49443 +49444-49445 +49446 +49447 +49448 +49449-49451 +49452 +49453-49454 +49455-49456 +49457 +49458 +49459-49460 +49461-49462 +49463 +49464 +49465-49466 +49467 +49468 +49469 +49470-49471 +49472 +49473 +49474-49475 +49476-49477 +49478 +49479-49480 +49481 +49482 +49483-49484 +49485 +49486 +49487-49488 +49489-49490 +49491 +49492 +49493-49495 +49496 +49497 +49498 +49499 +49500-49501 +49502-49503 +49504-49505 +49506 +49507 +49508 +49509 +49510-49512 +49513 +49514-49515 +49516-49517 +49518 +49519 +49520-49521 +49522-49523 +49524 +49525 +49526-49527 +49528 +49529-49530 +49531-49532 +49533 +49534 +49535 +49536-49537 +49538 +49539 +49540 +49541-49542 +49543-49545 +49546 +49547 +49548 +49549-49551 +49552 +49553 +49554 +49555 +49556-49560 +49561 +49562-49564 +49565 +49566-49567 +49568-49570 +49571 +49572 +49573 +49574-49575 +49576-49577 +49578-49579 +49580-49581 +49582 +49583 +49584 +49585-49587 +49588 +49589-49590 +49591-49592 +49593 +49594-49596 +49597-49598 +49599-49600 +49601 +49602 +49603 +49604 +49605 +49606 +49607-49608 +49609-49611 +49612-49613 +49614-49616 +49617-49621 +49622-49623 +49624-49625 +49626-49628 +49629-49630 +49631 +49632 +49633 +49634-49635 +49636-49637 +49638-49639 +49640-49641 +49642 +49643 +49644 +49645-49647 +49648 +49649 +49650 +49651-49652 +49653-49654 +49655 +49656-49658 +49659-49661 +49662-49663 +49664 +49665 +49666-49667 +49668-49672 +49673 +49674 +49675 +49676 +49677 +49678 +49679 +49680-49684 +49685 +49686-49687 +49688 +49689-49691 +49692 +49693-49695 +49696 +49697-49700 +49701 +49702-49705 +49706 +49707-49708 +49709 +49710 +49711 +49712-49713 +49714 +49715-49716 +49717-49718 +49719 +49720 +49721 +49722-49723 +49724 +49725 +49726 +49727 +49728 +49729-49730 +49731-49733 +49734 +49735 +49736 +49737 +49738 +49739 +49740 +49741-49742 +49743 +49744-49749 +49750-49751 +49752 +49753-49754 +49755 +49756-49757 +49758 +49759 +49760 +49761 +49762 +49763-49764 +49765 +49766-49768 +49769 +49770 +49771 +49772-49773 +49774 +49775-49776 +49777-49778 +49779-49780 +49781 +49782 +49783-49785 +49786-49788 +49789 +49790 +49791 +49792-49793 +49794 +49795-49797 +49798 +49799 +49800-49803 +49804 +49805 +49806-49807 +49808-49809 +49810 +49811-49812 +49813-49814 +49815 +49816-49818 +49819-49820 +49821 +49822-49823 +49824-49825 +49826 +49827-49829 +49830-49831 +49832 +49833-49834 +49835-49836 +49837 +49838-49839 +49840-49841 +49842 +49843-49846 +49847-49848 +49849 +49850 +49851-49853 +49854 +49855-49857 +49858 +49859-49860 +49861 +49862 +49863-49864 +49865-49867 +49868 +49869 +49870 +49871 +49872 +49873-49874 +49875 +49876-49878 +49879 +49880-49881 +49882-49884 +49885-49886 +49887 +49888-49889 +49890-49894 +49895-49896 +49897 +49898 +49899-49900 +49901 +49902 +49903 +49904 +49905 +49906-49907 +49908 +49909-49910 +49911 +49912-49913 +49914-49915 +49916-49917 +49918-49921 +49922 +49923-49924 +49925-49926 +49927 +49928-49930 +49931-49932 +49933 +49934-49936 +49937-49938 +49939 +49940-49941 +49942-49943 +49944 +49945-49948 +49949-49950 +49951 +49952-49954 +49955-49956 +49957 +49958-49962 +49963-49964 +49965 +49966-49968 +49969-49970 +49971 +49972-49974 +49975-49976 +49977 +49978-49980 +49981-49982 +49983 +49984 +49985 +49986-49987 +49988 +49989 +49990 +49991-49992 +49993 +49994 +49995-49996 +49997-49998 +49999 +50000-50001 +50002-50003 +50004 +50005 +50006 +50007-50008 +50009 +50010 +50011-50012 +50013-50014 +50015 +50016-50018 +50019 +50020 +50021 +50022-50023 +50024 +50025 +50026 +50027-50029 +50030 +50031-50033 +50034 +50035-50036 +50037 +50038 +50039 +50040 +50041 +50042-50044 +50045 +50046-50048 +50049-50050 +50051 +50052-50053 +50054 +50055 +50056-50057 +50058 +50059-50060 +50061 +50062 +50063 +50064 +50065-50066 +50067-50069 +50070-50071 +50072 +50073 +50074-50075 +50076-50077 +50078 +50079 +50080 +50081 +50082-50083 +50084 +50085-50086 +50087 +50088-50089 +50090-50091 +50092-50095 +50096 +50097-50098 +50099-50100 +50101 +50102 +50103-50105 +50106-50107 +50108 +50109 +50110-50111 +50112 +50113 +50114-50116 +50117 +50118 +50119 +50120 +50121-50122 +50123-50124 +50125-50126 +50127-50128 +50129-50130 +50131 +50132-50134 +50135 +50136 +50137-50138 +50139-50140 +50141 +50142 +50143 +50144-50145 +50146 +50147 +50148 +50149 +50150 +50151 +50152-50153 +50154 +50155-50157 +50158-50159 +50160 +50161 +50162 +50163 +50164-50165 +50166-50167 +50168-50169 +50170 +50171 +50172 +50173 +50174-50176 +50177 +50178 +50179-50180 +50181-50183 +50184 +50185 +50186 +50187 +50188-50189 +50190-50191 +50192-50193 +50194-50195 +50196 +50197 +50198 +50199 +50200 +50201-50202 +50203-50206 +50207-50208 +50209 +50210 +50211 +50212 +50213 +50214-50215 +50216 +50217-50218 +50219-50221 +50222-50225 +50226 +50227 +50228-50229 +50230-50231 +50232 +50233-50234 +50235-50236 +50237 +50238 +50239-50241 +50242-50243 +50244 +50245 +50246-50247 +50248 +50249 +50250-50252 +50253 +50254 +50255-50257 +50258 +50259 +50260 +50261-50262 +50263 +50264 +50265 +50266-50267 +50268-50269 +50270-50272 +50273 +50274 +50275 +50276 +50277 +50278-50279 +50280-50281 +50282 +50283-50284 +50285-50286 +50287-50289 +50290 +50291 +50292 +50293-50296 +50297-50298 +50299 +50300 +50301 +50302 +50303 +50304-50306 +50307-50310 +50311-50313 +50314-50315 +50316 +50317-50318 +50319 +50320-50323 +50324 +50325 +50326 +50327-50328 +50329-50331 +50332-50334 +50335-50339 +50340 +50341 +50342-50343 +50344 +50345-50346 +50347-50348 +50349-50350 +50351-50352 +50353-50354 +50355-50356 +50357 +50358 +50359 +50360-50361 +50362 +50363-50365 +50366 +50367-50369 +50370-50371 +50372-50373 +50374 +50375 +50376 +50377-50378 +50379-50380 +50381 +50382-50383 +50384 +50385-50387 +50388-50389 +50390 +50391 +50392 +50393-50394 +50395-50396 +50397 +50398-50400 +50401 +50402-50405 +50406 +50407 +50408-50410 +50411 +50412 +50413-50414 +50415 +50416 +50417-50419 +50420 +50421 +50422-50423 +50424 +50425 +50426-50427 +50428-50432 +50433 +50434 +50435 +50436 +50437-50439 +50440 +50441-50442 +50443 +50444-50447 +50448-50449 +50450-50453 +50454-50457 +50458-50461 +50462-50463 +50464-50466 +50467-50468 +50469-50472 +50473 +50474 +50475-50477 +50478-50479 +50480-50482 +50483-50484 +50485-50486 +50487-50489 +50490 +50491-50494 +50495-50496 +50497 +50498-50499 +50500 +50501 +50502-50503 +50504-50505 +50506-50508 +50509-50510 +50511-50515 +50516-50518 +50519 +50520-50522 +50523-50524 +50525-50527 +50528 +50529-50532 +50533-50534 +50535-50536 +50537-50539 +50540-50541 +50542-50544 +50545-50548 +50549-50550 +50551-50553 +50554-50555 +50556 +50557 +50558 +50559-50560 +50561 +50562 +50563 +50564 +50565 +50566 +50567 +50568 +50569 +50570 +50571 +50572 +50573 +50574-50575 +50576-50578 +50579 +50580 +50581 +50582 +50583 +50584 +50585 +50586-50587 +50588-50590 +50591 +50592 +50593 +50594 +50595 +50596 +50597 +50598-50600 +50601 +50602 +50603 +50604 +50605 +50606-50607 +50608-50610 +50611 +50612 +50613 +50614 +50615 +50616 +50617 +50618 +50619-50621 +50622-50625 +50626 +50627 +50628 +50629 +50630 +50631 +50632 +50633 +50634 +50635 +50636 +50637-50639 +50640 +50641 +50642 +50643 +50644 +50645 +50646 +50647 +50648 +50649 +50650 +50651 +50652 +50653-50654 +50655-50656 +50657-50658 +50659 +50660 +50661 +50662 +50663 +50664 +50665 +50666 +50667-50669 +50670 +50671-50674 +50675-50677 +50678-50680 +50681-50682 +50683-50685 +50686-50687 +50688 +50689 +50690-50692 +50693 +50694 +50695 +50696 +50697-50700 +50701-50702 +50703 +50704 +50705 +50706 +50707 +50708 +50709-50710 +50711-50712 +50713 +50714-50716 +50717-50719 +50720-50721 +50722 +50723-50725 +50726-50728 +50729-50731 +50732-50734 +50735-50737 +50738 +50739 +50740 +50741 +50742-50746 +50747-50750 +50751-50753 +50754-50757 +50758 +50759 +50760 +50761 +50762 +50763-50765 +50766-50769 +50770-50773 +50774-50775 +50776 +50777 +50778 +50779-50780 +50781-50783 +50784-50785 +50786 +50787 +50788 +50789-50791 +50792-50793 +50794-50795 +50796 +50797 +50798 +50799 +50800 +50801 +50802-50803 +50804-50806 +50807 +50808 +50809 +50810 +50811 +50812 +50813 +50815 +50816 +50817 +50818 +50819 +50820 +50821 +50822-50824 +50825 +50826 +50827 +50828 +50829 +50830 +50831 +50832 +50833 +50834-50836 +50837-50838 +50839 +50840-50841 +50842 +50843 +50844 +50845 +50846 +50847-50848 +50849-50850 +50851 +50852 +50853 +50854 +50855 +50856 +50857 +50858 +50859 +50860 +50861 +50862-50864 +50865-50866 +50867 +50868 +50869 +50870 +50871-50873 +50874-50875 +50876 +50877 +50878 +50879 +50880-50884 +50885-50888 +50889 +50890 +50891 +50892 +50893-50899 +50900-50906 +50907 +50908 +50909 +50910 +50911 +50912 +50913-50915 +50916 +50917-50919 +50920 +50921 +50922-50924 +50925 +50926 +50927 +50928-50929 +50930 +50931 +50932-50934 +50935 +50936 +50937 +50938 +50939 +50940 +50941-50943 +50944-50946 +50947 +50948 +50949-50951 +50952-50954 +50955-50956 +50957 +50958-50959 +50960-50961 +50962-50963 +50964 +50965-50967 +50968 +50969 +50970-50972 +50973-50974 +50975-50976 +50977 +50978-50980 +50981 +50982-50983 +50984-50985 +50986 +50987 +50988 +50989-50990 +50991 +50992-50994 +50995-50997 +50998-51000 +51001-51003 +51004-51008 +51009-51011 +51012 +51013 +51014-51016 +51017-51018 +51019-51020 +51021-51023 +51024-51025 +51026 +51027 +51028-51029 +51030 +51031 +51032 +51033-51035 +51036 +51037 +51038-51040 +51041-51042 +51043 +51044-51046 +51047 +51048 +51049-51050 +51051-51052 +51053 +51054 +51055-51056 +51057 +51058-51059 +51060 +51061 +51062-51063 +51064 +51065-51067 +51068-51069 +51070 +51071 +51072 +51073 +51074 +51075 +51076-51078 +51079-51080 +51081 +51082 +51083-51085 +51086-51088 +51089-51091 +51092-51093 +51094 +51095 +51096-51097 +51098 +51099 +51100 +51101-51103 +51104-51106 +51107 +51108 +51109-51111 +51112 +51113-51115 +51116 +51117 +51118 +51119 +51120-51121 +51122 +51123-51124 +51125-51126 +51127 +51128-51130 +51131 +51132 +51133 +51134-51135 +51136 +51137 +51138 +51139 +51140-51142 +51143 +51144-51145 +51146 +51147-51149 +51150 +51151-51152 +51153 +51154 +51155 +51156 +51157-51158 +51159 +51160-51161 +51162-51164 +51165 +51166-51167 +51168 +51169 +51170-51172 +51173 +51174 +51175-51176 +51177 +51178 +51179 +51180-51182 +51183 +51184-51185 +51186-51188 +51189 +51190 +51191-51193 +51194-51195 +51196-51198 +51199 +51200-51201 +51202-51204 +51205-51207 +51208 +51209 +51210-51211 +51212 +51213-51214 +51215 +51216 +51217-51218 +51219 +51220 +51221 +51222 +51223 +51224 +51225 +51226 +51227 +51228 +51229 +51230 +51231-51233 +51234 +51235 +51236 +51237 +51238 +51239 +51240 +51241 +51242 +51243-51246 +51247-51249 +51250-51251 +51252-51253 +51254 +51255 +51256 +51257 +51258-51260 +51261-51263 +51264 +51265-51267 +51268 +51269-51271 +51272 +51273-51274 +51275 +51276-51277 +51278 +51279-51281 +51282 +51283-51284 +51285 +51286 +51287 +51288 +51289-51291 +51292-51297 +51298-51299 +51300-51301 +51302 +51303 +51304-51306 +51307-51308 +51309-51310 +51311-51312 +51313-51315 +51316-51317 +51318 +51319-51321 +51322 +51323-51325 +51326-51327 +51328 +51329-51331 +51332 +51333-51336 +51337-51338 +51339-51342 +51343-51344 +51345 +51346 +51347 +51348 +51349-51350 +51351-51352 +51353 +51354 +51355-51358 +51359 +51360 +51361 +51362-51363 +51364 +51365-51367 +51368-51371 +51372-51373 +51374 +51375 +51376-51377 +51378-51379 +51380 +51381 +51382-51383 +51384-51386 +51387-51388 +51389 +51390-51391 +51392-51393 +51394-51396 +51397 +51398-51399 +51400-51401 +51402-51404 +51405-51407 +51408-51409 +51410-51411 +51412-51415 +51416-51418 +51419 +51420 +51421 +51422 +51423 +51424 +51425-51426 +51427 +51428-51431 +51432 +51433-51434 +51435 +51436 +51437-51438 +51439-51440 +51441-51442 +51443-51445 +51446-51449 +51450 +51451 +51452 +51453-51454 +51455-51456 +51457-51459 +51460-51461 +51462-51463 +51464-51466 +51467 +51468-51469 +51470 +51471 +51472 +51473 +51474 +51475 +51476 +51477 +51478-51479 +51480-51482 +51483-51484 +51485-51486 +51487-51488 +51489-51491 +51492 +51493 +51494 +51495 +51496-51498 +51499 +51500 +51501 +51502-51503 +51504 +51505-51508 +51509 +51510-51511 +51512-51514 +51515-51518 +51519 +51520 +51521-51522 +51523-51524 +51525-51527 +51528 +51529 +51530 +51531 +51532-51533 +51534 +51535 +51536 +51537 +51538 +51539 +51540 +51541 +51542 +51543-51544 +51545 +51546-51547 +51548-51549 +51550 +51551 +51552 +51553 +51554 +51555 +51556 +51557-51560 +51561 +51562-51565 +51566 +51567 +51568 +51569-51570 +51571-51573 +51574 +51575 +51576-51577 +51578-51581 +51582-51584 +51585 +51586 +51587-51590 +51591 +51592 +51593-51594 +51595-51597 +51598-51599 +51600-51602 +51603 +51604 +51605 +51606 +51607-51608 +51609 +51610-51611 +51612-51613 +51614-51616 +51617-51620 +51621 +51622 +51623 +51624 +51625 +51626-51627 +51628-51631 +51632 +51633-51634 +51635-51638 +51639 +51640 +51641 +51642 +51643 +51644 +51645-51646 +51647 +51648 +51649-51652 +51653-51654 +51655-51656 +51657 +51658 +51659 +51660-51661 +51662-51666 +51667 +51668 +51669-51670 +51671 +51672 +51673 +51674 +51675-51676 +51677-51680 +51681-51682 +51683-51684 +51685 +51686-51687 +51688-51690 +51691-51692 +51693-51694 +51695 +51696-51697 +51698-51699 +51700-51701 +51702-51703 +51704 +51705-51706 +51707-51709 +51710-51711 +51712-51713 +51714 +51715-51717 +51718-51719 +51720-51724 +51725 +51726-51727 +51728-51729 +51730 +51731-51733 +51734 +51735-51737 +51738-51739 +51740 +51741-51743 +51744-51745 +51746-51748 +51749-51753 +51754-51756 +51757 +51758 +51759 +51760 +51761 +51762 +51763 +51764-51765 +51766 +51767 +51768 +51769-51771 +51772 +51773 +51774-51775 +51776-51778 +51779 +51780-51781 +51782 +51783 +51784 +51785 +51786-51788 +51789 +51790-51792 +51793-51794 +51795 +51796 +51797 +51798 +51799 +51800 +51801 +51802 +51803-51804 +51805 +51806 +51807 +51808 +51809-51811 +51812 +51813 +51814 +51815 +51816-51818 +51819-51820 +51821-51823 +51824 +51825 +51826 +51827 +51828 +51829-51830 +51831-51833 +51834 +51835 +51836 +51837 +51838-51840 +51841 +51842-51844 +51845 +51846 +51847-51849 +51850-51851 +51852-51854 +51855 +51856-51858 +51859-51860 +51861-51863 +51864 +51865 +51866-51868 +51869 +51870 +51871 +51872 +51873 +51875 +51876 +51877-51879 +51880-51881 +51882-51884 +51885 +51886-51887 +51888 +51889-51890 +51891 +51892 +51893 +51894 +51895 +51896 +51897 +51898 +51899 +51900 +51901 +51902-51903 +51904-51905 +51906-51908 +51909 +51910 +51911 +51912 +51913 +51914 +51915-51916 +51917 +51918-51920 +51921-51924 +51925-51926 +51927-51928 +51929 +51930-51931 +51932 +51933 +51934 +51935 +51936 +51937 +51938 +51939 +51940 +51941 +51942-51943 +51944 +51945-51948 +51949 +51950 +51951 +51952 +51953-51955 +51956-51957 +51958-51959 +51960 +51961 +51962 +51963-51964 +51965 +51966 +51967 +51968 +51969 +51970-51971 +51972 +51973-51976 +51977-51978 +51979-51981 +51982 +51983 +51984-51985 +51986-51987 +51988 +51989 +51990 +51991 +51992 +51993-51995 +51996-51997 +51998-52000 +52001 +52002-52003 +52004 +52005 +52006-52007 +52008-52010 +52011 +52012-52013 +52014-52015 +52016-52018 +52019-52020 +52021 +52022 +52023 +52024 +52025-52026 +52027 +52028 +52029 +52030 +52031 +52032-52034 +52035-52036 +52037-52038 +52039 +52040 +52041 +52042 +52043-52044 +52045-52047 +52048-52049 +52050-52051 +52052-52053 +52054 +52055-52056 +52057 +52058-52061 +52062-52065 +52066-52067 +52068 +52069 +52070 +52071 +52072-52073 +52074 +52075 +52076 +52077 +52078 +52079 +52080 +52081-52083 +52084 +52085-52087 +52088 +52089 +52090-52093 +52094 +52095 +52096-52098 +52099 +52100 +52101-52103 +52104-52105 +52106-52107 +52108 +52109 +52110 +52111 +52112 +52113 +52114 +52115-52119 +52120 +52121 +52122 +52123-52126 +52127 +52128 +52129-52130 +52131 +52132 +52133 +52134 +52135-52136 +52137 +52138 +52139 +52140 +52141-52143 +52144 +52145-52146 +52147 +52148-52150 +52151-52152 +52153-52155 +52156 +52157 +52158 +52159 +52160-52161 +52162 +52163 +52164-52165 +52166 +52167 +52168-52169 +52170-52172 +52173-52174 +52175 +52176-52177 +52178-52179 +52180 +52181-52183 +52184-52185 +52186 +52187 +52188 +52189-52190 +52191 +52192 +52193 +52194 +52195-52197 +52198-52200 +52201-52202 +52203-52206 +52207-52208 +52209-52211 +52212 +52213-52215 +52216-52217 +52218-52220 +52221-52223 +52224 +52225 +52226 +52227-52228 +52229 +52230-52231 +52232-52233 +52234 +52235 +52236 +52237-52239 +52240 +52241-52243 +52244-52246 +52247-52248 +52249 +52250-52252 +52253 +52254 +52255 +52256-52261 +52262 +52263 +52264 +52265-52268 +52269 +52270-52272 +52273-52275 +52276-52278 +52279-52280 +52281 +52282-52284 +52285-52288 +52289-52292 +52293 +52294-52296 +52297 +52298 +52299 +52300 +52301-52303 +52304-52305 +52306-52308 +52309 +52310 +52311-52313 +52314 +52315 +52316 +52317 +52318-52319 +52320 +52321 +52322 +52323-52325 +52326-52327 +52328-52329 +52330-52332 +52333-52334 +52335 +52336 +52337 +52338 +52339 +52340 +52341 +52342 +52343 +52344 +52345-52346 +52347-52348 +52349 +52350-52352 +52353-52354 +52355 +52356 +52357 +52358 +52359 +52360 +52361 +52362 +52363 +52364 +52365-52368 +52369-52372 +52373-52376 +52377 +52378 +52379 +52380 +52381 +52382 +52383 +52384 +52385-52388 +52389 +52390 +52391 +52392-52394 +52395-52396 +52397-52398 +52399 +52400 +52401 +52402 +52403-52404 +52405 +52406 +52407 +52408-52410 +52411-52412 +52413-52414 +52415 +52416 +52417 +52418 +52419 +52420 +52421 +52422 +52423 +52424 +52425 +52426 +52427 +52428 +52432 +52433 +52434 +52435-52437 +52438 +52439 +52440 +52441 +52442 +52443-52444 +52445 +52446 +52447 +52448 +52449 +52450 +52451 +52452 +52453 +52454-52455 +52456-52458 +52459 +52460 +52461 +52462 +52463 +52464-52466 +52467-52469 +52470-52471 +52472 +52473 +52474 +52475 +52476 +52477 +52478 +52479 +52480-52481 +52482 +52483 +52484-52485 +52486 +52487-52488 +52489-52490 +52491-52495 +52496 +52497 +52498 +52499 +52500-52502 +52503 +52504-52505 +52506 +52507-52510 +52511-52512 +52513-52514 +52515-52518 +52519-52522 +52523-52524 +52525-52527 +52528-52529 +52530-52533 +52534 +52535 +52536-52538 +52539-52540 +52541-52543 +52544-52545 +52546-52547 +52548-52550 +52551 +52552-52555 +52556-52557 +52558 +52559-52560 +52561 +52562 +52563-52564 +52565-52566 +52567-52569 +52570-52571 +52572-52576 +52577-52579 +52580 +52581-52583 +52584-52585 +52586 +52587 +52588-52590 +52591 +52592-52594 +52595-52596 +52597-52598 +52599-52601 +52602-52603 +52604-52606 +52607-52611 +52612-52613 +52614-52616 +52617-52618 +52620 +52621-52623 +52624 +52625 +52626 +52627 +52628 +52629 +52630 +52631 +52632 +52633 +52634 +52635 +52636 +52637 +52638 +52639-52643 +52644-52647 +52648 +52649 +52650 +52651 +52652 +52653 +52654 +52655 +52656 +52657 +52658 +52659 +52660 +52661 +52662 +52663 +52664 +52665-52667 +52668-52670 +52671 +52672 +52673 +52674 +52675 +52676 +52677 +52678 +52679 +52680 +52681 +52682 +52683 +52684 +52685-52686 +52687-52688 +52689 +52690-52691 +52692 +52693 +52694 +52695 +52696 +52697 +52698 +52699 +52700 +52701 +52702 +52703 +52704-52705 +52706 +52707-52710 +52711-52712 +52713 +52714 +52715 +52716 +52717 +52718 +52719 +52720-52722 +52723 +52724-52727 +52728 +52729 +52730 +52731 +52732 +52733 +52734-52735 +52736-52737 +52738 +52739-52742 +52743 +52744 +52745 +52746 +52747 +52748 +52749 +52750 +52751-52754 +52755-52756 +52757 +52758 +52759 +52760 +52761 +52762 +52763 +52764 +52765 +52766 +52767 +52768 +52770 +52771 +52772 +52773 +52774 +52775 +52776 +52777 +52778 +52779 +52780 +52781 +52782 +52783 +52784 +52785 +52786 +52787-52788 +52789 +52790 +52791 +52792 +52793 +52794 +52795 +52796 +52797 +52798 +52799 +52800 +52801 +52802 +52803 +52804 +52805 +52806 +52807 +52808 +52809 +52810-52811 +52812 +52813 +52814 +52815 +52816 +52817 +52818 +52819 +52820 +52821 +52822 +52823 +52824 +52825 +52826 +52827 +52828 +52829 diff --git a/tf/0.3/otext.tf b/tf/0.3/otext.tf new file mode 100644 index 0000000..9a235e6 --- /dev/null +++ b/tf/0.3/otext.tf @@ -0,0 +1,12 @@ +@config +@converters=Cale Johnson, Dirk Roorda +@editor=Cale Johnson et al. +@fmt:text-orig-full={atfpre}{atf}{atfpost}{after} +@fmt:text-orig-plain={sym}{after} +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@sectionFeatures=pnumber,face,lnno +@sectionTypes=document,face,line +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + diff --git a/tf/0.3/otype.tf b/tf/0.3/otype.tf new file mode 100644 index 0000000..dbbbaaf --- /dev/null +++ b/tf/0.3/otype.tf @@ -0,0 +1,15 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=str +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +1-52829 sign +52830-59225 cluster +59226-59259 document +59260-59313 face +59314-62395 line +62396-93211 word diff --git a/tf/0.3/pnumber.tf b/tf/0.3/pnumber.tf new file mode 100644 index 0000000..19946a6 --- /dev/null +++ b/tf/0.3/pnumber.tf @@ -0,0 +1,44 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=P number of a document +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=str +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +59226 P285136 +P479250 +P285109 +P399223 +P399313 +P400909 +P401255 +P403291 +P403381 +P394104 +P393782 +P404547 +P365742 +P394390 +P365744 +P394422 +P394434 +P394454 +P394492 +P432416 +P394520 +P394523 +P395359 +P395407 +P396343 +P393735 +P396392 +P393743 +P397315 +P397594 +P398154 +P424899 +P365747 +P425685 diff --git a/tf/0.3/primecol.tf b/tf/0.3/primecol.tf new file mode 100644 index 0000000..f7dbcea --- /dev/null +++ b/tf/0.3/primecol.tf @@ -0,0 +1,16 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=whether a prime is present on a column number +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=int +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +59437 1 +1 +1 +1 +1 +1 diff --git a/tf/0.3/primeln.tf b/tf/0.3/primeln.tf new file mode 100644 index 0000000..384b88e --- /dev/null +++ b/tf/0.3/primeln.tf @@ -0,0 +1,1307 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=whether a prime is present on a line number +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=int +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +59314 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +59330 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +59362 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +59402 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +59472 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +59567 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +59636 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +59701 1 +1 +1 +1 +59898 1 +1 +1 +1 +1 +1 +1 +60165 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +60199 1 +1 +1 +60203 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +60257 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +60309 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +60333 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +60386 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +60476 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +60540 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +60670 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +60744 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +60821 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +60856 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +60951 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +61110 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +61220 1 +1 +1 +1 +1 +1 +1 +1 +1 +61277 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +61309 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +61347 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +61394 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +61436 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +61490 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +61513 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +61721 1 +1 +1 +1 +1 +61783 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +61898 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +61917 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +61967 1 +1 +1 +1 +1 +62247 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +62266 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +62371 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +62384 1 +1 +1 +1 +1 +1 +1 +1 +62393 1 +1 +1 diff --git a/tf/0.3/publication.tf b/tf/0.3/publication.tf new file mode 100644 index 0000000..054744a --- /dev/null +++ b/tf/0.3/publication.tf @@ -0,0 +1,44 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=publication info from metadata field "publication" +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=str +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +59226 Edition by NinMed + +Edition by NinMed +Edition by NinMed +Edition by NinMed + + + + +Edition by NinMed +Edition by NinMed + +Edition by NinMed +Edition by NinMed +Edition by NinMed +Edition by NinMed +Edition by NinMed +Edition by NinMed +Edition by NinMed +Edition by NinMed +Edition by NinMed +Edition by NinMed +Edition by NinMed +Edition by NinMed +Edition by NinMed +Edition by NinMed +Edition by NinMed +Edition by NinMed +Edition by NinMed +Edition by NinMed +Edition by NinMed +Edition by NinMed +CT 23, pl. 50, Sm 0950 +Edition by NinMed diff --git a/tf/0.3/question.tf b/tf/0.3/question.tf new file mode 100644 index 0000000..a371a7b --- /dev/null +++ b/tf/0.3/question.tf @@ -0,0 +1,682 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=whether a sign has the question flag (?) +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=int +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +444 1 +689 1 +705 1 +710 1 +1 +715 1 +914 1 +1 +1 +1002 1 +1 +1194 1 +1327 1 +1334 1 +1396 1 +1552 1 +1567 1 +1610 1 +1 +1 +1 +1 +1656 1 +1 +1 +1665 1 +1 +1786 1 +1835 1 +1905 1 +1 +1 +1986 1 +2013 1 +2089 1 +2112 1 +2224 1 +2306 1 +2331 1 +2361 1 +2484 1 +1 +2543 1 +2588 1 +2700 1 +2781 1 +1 +2815 1 +2845 1 +2849 1 +2867 1 +2909 1 +2983 1 +3006 1 +3033 1 +3058 1 +1 +3083 1 +3198 1 +3308 1 +1 +1 +3432 1 +3468 1 +3492 1 +1 +3516 1 +3518 1 +3559 1 +1 +3568 1 +3636 1 +3730 1 +3760 1 +3832 1 +4003 1 +4257 1 +4282 1 +4495 1 +4528 1 +1 +1 +4555 1 +4588 1 +4889 1 +5204 1 +5207 1 +5222 1 +1 +5225 1 +5232 1 +1 +5235 1 +1 +5281 1 +5286 1 +1 +1 +5532 1 +5973 1 +5993 1 +6000 1 +6169 1 +6236 1 +6474 1 +6490 1 +6642 1 +6963 1 +6969 1 +7195 1 +7253 1 +7284 1 +7321 1 +1 +7553 1 +1 +1 +7564 1 +1 +1 +7661 1 +7673 1 +7688 1 +1 +7704 1 +1 +8047 1 +8114 1 +8241 1 +8708 1 +1 +8730 1 +9302 1 +9673 1 +10096 1 +10109 1 +1 +10200 1 +1 +1 +10225 1 +1 +10381 1 +10402 1 +10434 1 +10628 1 +10723 1 +1 +10832 1 +1 +11020 1 +11108 1 +11119 1 +11156 1 +1 +1 +11233 1 +1 +11250 1 +11267 1 +11286 1 +11410 1 +11456 1 +11529 1 +11608 1 +11678 1 +1 +11842 1 +1 +1 +12163 1 +12505 1 +12542 1 +12720 1 +1 +13104 1 +1 +13214 1 +13216 1 +13292 1 +1 +13319 1 +13349 1 +13642 1 +13685 1 +1 +13703 1 +1 +1 +13852 1 +1 +1 +13996 1 +14053 1 +14070 1 +1 +14211 1 +14232 1 +14245 1 +14263 1 +1 +1 +14268 1 +14271 1 +1 +14279 1 +15472 1 +15517 1 +15724 1 +1 +16101 1 +1 +16280 1 +1 +1 +16300 1 +1 +16305 1 +16576 1 +16651 1 +16694 1 +16943 1 +1 +1 +1 +16973 1 +16998 1 +1 +17340 1 +1 +17366 1 +17379 1 +17584 1 +17644 1 +1 +17672 1 +17674 1 +17690 1 +1 +17694 1 +1 +17703 1 +1 +1 +1 +17715 1 +17728 1 +1 +1 +1 +17735 1 +1 +1 +17750 1 +1 +17896 1 +1 +17951 1 +17957 1 +17988 1 +18007 1 +18029 1 +1 +18032 1 +1 +18176 1 +18232 1 +18234 1 +18239 1 +18243 1 +1 +1 +18247 1 +1 +18271 1 +1 +18290 1 +18331 1 +18335 1 +18549 1 +1 +1 +18572 1 +1 +1 +19365 1 +1 +19452 1 +19491 1 +19742 1 +1 +1 +1 +19748 1 +19758 1 +1 +1 +1 +19764 1 +1 +1 +19770 1 +1 +20845 1 +20903 1 +20944 1 +1 +1 +1 +1 +1 +21002 1 +21012 1 +21171 1 +21346 1 +21371 1 +21608 1 +21719 1 +1 +21772 1 +1 +21841 1 +1 +21850 1 +22215 1 +22253 1 +22379 1 +1 +1 +22619 1 +22645 1 +22669 1 +22713 1 +22722 1 +22763 1 +22765 1 +22767 1 +22804 1 +22808 1 +22814 1 +1 +22843 1 +22863 1 +22893 1 +22901 1 +1 +22923 1 +23059 1 +1 +23080 1 +23101 1 +23121 1 +23163 1 +23166 1 +23213 1 +1 +23375 1 +23390 1 +1 +1 +1 +23408 1 +1 +1 +23413 1 +23424 1 +23442 1 +1 +1 +23466 1 +23591 1 +23600 1 +23611 1 +23697 1 +23825 1 +23855 1 +23978 1 +1 +24036 1 +24077 1 +24079 1 +24104 1 +24314 1 +24340 1 +1 +1 +24571 1 +1 +24854 1 +24887 1 +25074 1 +1 +25207 1 +25235 1 +25276 1 +25345 1 +25407 1 +1 +1 +25498 1 +25535 1 +25778 1 +25830 1 +25878 1 +25880 1 +25915 1 +25969 1 +25977 1 +1 +25986 1 +26031 1 +26252 1 +26254 1 +1 +1 +26301 1 +26321 1 +26392 1 +1 +1 +1 +1 +26424 1 +26447 1 +1 +1 +1 +1 +26499 1 +26511 1 +1 +26538 1 +1 +1 +1 +26582 1 +26591 1 +26600 1 +26609 1 +26613 1 +26617 1 +26661 1 +26672 1 +26695 1 +26775 1 +26854 1 +26870 1 +26957 1 +27003 1 +27034 1 +27223 1 +27476 1 +27808 1 +27842 1 +1 +27865 1 +27919 1 +28378 1 +28389 1 +1 +1 +1 +28397 1 +28447 1 +28485 1 +28523 1 +28907 1 +29244 1 +1 +29374 1 +29383 1 +29423 1 +1 +1 +1 +1 +29454 1 +29479 1 +29481 1 +29551 1 +29679 1 +29764 1 +1 +1 +1 +29822 1 +29912 1 +29928 1 +30247 1 +30377 1 +30554 1 +30934 1 +30947 1 +31121 1 +31128 1 +31138 1 +31182 1 +31214 1 +31243 1 +31404 1 +31673 1 +31852 1 +31890 1 +31896 1 +32114 1 +32127 1 +32157 1 +32177 1 +1 +1 +32362 1 +32384 1 +32403 1 +32416 1 +32453 1 +1 +1 +32692 1 +32697 1 +33180 1 +33354 1 +33532 1 +33821 1 +34586 1 +34670 1 +1 +1 +34692 1 +34696 1 +35248 1 +1 +35539 1 +35847 1 +1 +36177 1 +36202 1 +36210 1 +36227 1 +36299 1 +1 +1 +37772 1 +37919 1 +37983 1 +37988 1 +1 +38052 1 +38208 1 +38277 1 +38545 1 +38770 1 +38879 1 +39075 1 +39098 1 +39115 1 +1 +40049 1 +40801 1 +41234 1 +41521 1 +1 +41607 1 +41737 1 +41753 1 +1 +1 +41802 1 +42069 1 +42167 1 +42203 1 +1 +1 +42497 1 +1 +42584 1 +42959 1 +42976 1 +43029 1 +43039 1 +43041 1 +43052 1 +1 +43116 1 +43752 1 +44005 1 +44237 1 +44250 1 +44304 1 +1 +44516 1 +44519 1 +44521 1 +44523 1 +44557 1 +45062 1 +1 +45100 1 +45112 1 +45122 1 +45124 1 +1 +1 +1 +45195 1 +45202 1 +45662 1 +45792 1 +46282 1 +46299 1 +46511 1 +46843 1 +47661 1 +1 +47689 1 +47744 1 +48164 1 +49739 1 +49762 1 +1 +50248 1 +1 +50721 1 +50725 1 +50765 1 +50805 1 +1 +50901 1 +51047 1 +51104 1 +1 +1 +51237 1 +51239 1 +51245 1 +51259 1 +51348 1 +51377 1 +51457 1 +1 +1 +51484 1 +51486 1 +51656 1 +51667 1 +51788 1 +51804 1 +51813 1 +51827 1 +51914 1 +51916 1 +1 +52074 1 +52201 1 +1 +52234 1 +1 +52277 1 +1 +1 +52298 1 +1 +52317 1 +52343 1 +1 +52403 1 +1 +52432 1 +1 +52435 1 +1 +1 +52518 1 diff --git a/tf/0.3/reading.tf b/tf/0.3/reading.tf new file mode 100644 index 0000000..b31ee37 --- /dev/null +++ b/tf/0.3/reading.tf @@ -0,0 +1,23580 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=reading of a sign +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=str +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +14 su +ub +hur +ri +im +su +ub +22 ša +sa +ku +tu +hi +si +a +pi +il +lat +aš +kur +ba +an +ni +44 hi +52 ma +mit +55 šar +ra +qi +ina +60 pil +ši +un +gi +ha +ba +81 ina +85 ta +kar +hu +bu +uš +111 šim +113 ina +115 tur +ar +139 ina +141 tur +ar +155 lu +160 ta +kar +187 su +gur +ru +ud +sah +le +e +si +ki +tu +215 ina +220 su +222 si +253 su +tu +gal +lab +258 u +262 u +280 a +na +ku +u +ša +an +ni +295 e +300 nu +305 gi +pisan +gen +keš +da +321 a +ge +a +nu +tuku +338 nu +ku +ku +342 nig +ge +e +346 gen +na +dumu +gu +361 šu +u +me +ti +381 ka +bi +ta +u +me +ni +gar +401 he +en +si +il +e +413 he +em +ma +ra +e +437 ina +440 ma +ina +eš +449 ka +keš +bi +he +du +a +456 ka +keš +bi +he +du +a +474 ina +476 šu +u +man +zaq +ma +ina +eš +486 ta +ma +la +a +rit +ta +šu +494 a +ha +tu +mu +še +qa +at +re +ši +šu +505 na +ši +pat +ri +522 ana +526 di +ina +529 šu +u +man +zaq +ma +ina +eš +548 as +suh +šu +ma +iṣ +ṣa +bat +556 bi +578 ma +iṣ +ṣa +bat +583 bi +585 u +603 a +na +u +ma +mi +610 ma +iṣ +ṣa +bat +615 bi +u +ma +me +633 bi +d +636 lip +pa +šir +647 bi +u +ma +me +lip +pa +šir +666 šam +ma +ka +670 šu +lib +luṭ +682 bu +i +re +du +šu +688 ap +pi +šil +ta +hi +ša +698 šu +700 šu +u +703 šu +707 urudu +na +ah +bi +ana +urudu +na +ah +bi +725 qe +752 ina +755 sar +771 ti +šim +785 eme +sal +li +mal +ma +liš +793 ina +826 sar +828 aš +830 ma +837 na +aṣ +ma +da +te +an +na +ti +850 ša +854 ša +hul +qu +ana +861 u +881 ti +ina +885 aṣ +ma +888 šu +u +za +ka +ma +920 u +935 ma +960 lu +u +ina +990 šu +1023 ana +1040 su +ma +1060 su +u +an +ki +nu +ti +1075 ta +na +ṣar +1079 ma +1093 šu +1096 šim +1100 su +1114 šu +ina +1117 tu +šap +ra +šu +ma +1133 su +ana +1136 šu +1139 u +ap +ru +ša +1144 su +1153 šim +1158 ma +1170 ana +1172 šu +1175 šim +1180 šim +1183 su +1193 i +na +qu +tu +ṣar +raš +ma +1212 u +ap +ru +ša +u +il +kul +la +ša +1232 su +ma +1244 tu +bal +ta +sak +ina +1254 su +ma +1264 tu +bal +ta +sak +ina +1274 su +ma +1286 ma +1289 ṣi +na +ah +tu +ra +1295 šim +1301 ša +šu +nu +1309 ta +sak +ina +1325 ma +1328 šu +in +nem +me +ru +in +ne +bi +ṭu +1356 tara +bak +1364 ina +dug +1368 šal +1375 i +lu +ru +sa +a +mu +1384 su +1387 e +qi +di +ša +la +1394 ina +1401 u +i +lu +ru +sa +a +mu +1410 su +še +bi +1415 tu +kaṣ +ṣa +1419 šu +e +qi +di +ma +ša +la +1427 ana +1432 id +1435 su +ina +tug +ṣi +in +di +1444 šu +la +ta +ṣa +ba +1453 bu +ṭu +tu +ina +1458 tara +bak +1462 su +1467 d +1473 mušen +1478 niš +ina +1487 gu +riš +tu +i +tel +li +1502 u +1508 u +1513 u +u +ra +nu +1520 ki +is +1525 ul +tu +1531 ki +is +1537 u +1540 ul +tu +1553 šu +ma +1559 aš +rat +d +nin +urta +1565 ma +1570 šu +1574 šim +1577 sig +1580 mi +1583 bi +za +te +1588 šim +1593 šu +ma +1599 aš +rat +d +1604 ma +1608 mi +ana +1613 šu +1615 an +1645 giš +1648 at +1657 su +1673 te +ṭer +ri +1678 u +1680 lim +1683 pa +tan +1698 šu +mur +din +ni +1703 sah +le +e +1710 ina +1712 tara +bak +1720 šu +1723 ka +la +1726 me +1728 šu +1730 ina +1733 mi +ina +šim +1738 er +ri +1742 šu +ta +kad +da +ad +1748 ina +1752 šu +1756 šu +tu +šak +kal +qer +ša +em +ma +1765 šu +1767 šu +1769 šu +1772 šu +1776 kur +sin +ni +1783 šu +1786 pap +ina +1789 ti +ina +ir +ri +1798 šu +1800 giš +1803 ana +1807 šu +ta +bi +la +1813 ka +la +1816 me +1818 šu +1820 u +kal +ma +1824 giš +1827 u +giš +šinig +1831 u +1833 d +1835 šim +1840 sah +le +e +1845 ta +bi +la +ana +1852 šu +1856 su +1858 ma +1864 ina +1867 me +1869 šu +ma +1873 su +tu +gal +lab +1878 rib +ka +1882 šu +1885 ina +eš +1891 mušen +mun +eme +sal +li +1897 ga +bi +i +1902 šim +1909 sar +1914 ṭi +pu +šum +ma +1921 šu +1924 ha +an +ṭa +u +mur +din +ni +1935 ga +bi +i +mun +eme +sal +li +an +nu +u +ṭi +pu +ša +1950 šim +1958 sar +an +nu +u +ṭi +pu +ša +1971 šu +1976 u +kal +la +ana +1981 a +hi +i +1985 ma +1988 si +ki +ma +1997 du +2002 du +ku +nu +ma +tab +la +2010 a +na +2014 e +de +e +2018 ma +2021 si +ki +ma +2035 du +2039 ku +nu +ma +tab +la +2048 ina +2051 šu +li +piš +tu +šim +2058 šim +2060 šim +2069 ina +2072 šu +2074 a +ṣa +at +u +2080 šu +a +ša +a +2085 kam +ma +2091 ša +2097 mal +ma +liš +2101 ina +2108 šu +2110 ta +maš +aš +2118 šu +2120 a +li +ka +2124 a +ana +2127 šu +2136 ina +2145 na +as +har +ina +2160 šu +2163 kam +2165 ma +u +2168 ak +ana +2171 šu +2174 šim +2180 mušen +mun +eme +sal +li +2186 niš +2189 ina +2191 giš +2193 lu +ina +2197 giš +2204 uš +ina +2211 šu +2217 šu +2219 u +2223 šim +2225 u +2232 šim +2236 mušen +sah +lu +u +2242 an +nu +ti +te +qit +ša +2254 šu +qu +qa +ni +2260 gu +ru +uš +ga +ra +aš +ša +2269 ina +2271 te +sip +2275 me +ina +2278 te +te +mer +2282 ma +2286 mal +ma +liš +2298 ina +2317 mal +ma +liš +2321 ina +2327 giš +2336 d +2344 ana +2348 šu +2354 šu +2356 ina +2365 niš +2368 ina +2377 te +eq +qi +2381 i +na +2389 i +te +ne +ṭa +a +2397 šu +2399 ma +2402 šu +ip +pa +a +ana +2408 šu +2416 ina +2422 šu +2429 šu +nu +up +pu +ha +2436 šim +2445 ina +2447 tara +bak +2451 šu +2456 ga +bi +i +mun +eme +sal +li +2466 ṭi +pu +ša +2475 šu +bar +ra +u +2480 u +kal +la +2492 me +ina +2495 te +te +mer +2499 ma +2507 šu +2512 šu +2520 šu +ar +pa +2524 ina +2526 u +2529 ša +2535 šu +2540 ša +ki +ib +ša +2545 u +ina +2560 šu +ṣu +uh +hu +ta +2569 su +tu +ha +sa +2575 šu +ina +dug +2579 tara +bak +2583 ma +ša +2587 i +šal +lu +ina +2593 u +2603 ina +2605 ta +ka +aṣ +ina +2610 te +ep +pi +ma +ʾ +da +la +i +ba +2623 šim +2625 u +2629 ga +bi +i +2635 sar +ina +2642 šu +2647 ši +ib +ri +tur +ar +2653 ki +ma +ṭi +pi +te +ṭe +ep +pi +2671 sar +sah +le +e +qa +la +a +ti +bal +ṭa +ti +ina +dug +2685 tara +bak +2690 šim +2693 sar +ina +2699 šu +2708 tur +ar +ina +2720 ina +2734 ku +ina +2738 al +2743 an +2745 ma +2748 ina +2763 ina +2776 u +2780 ina +2784 ina +2787 ka +2798 ina +2812 ina +2816 ina +2819 an +2825 tur +ar +2832 ina +mu +ša +li +2844 šu +2846 ma +2850 ina +2855 ana +2859 šu +tu +na +tak +2864 ša +2866 ti +2869 ina +2872 u +2874 ša +2876 mušen +2878 mal +ma +liš +2886 ina +mu +ša +li +2893 ana +2897 šu +2900 di +2903 mušen +2911 ma +2921 ka +ina +2925 si +2927 ina +2930 tu +la +bak +2935 ina +mu +ša +li +2940 an +ka +a +a +nam +te +te +ne +qi +2953 ana +2956 tara +bak +2962 im +2970 ku +ut +pa +a +ina +2979 te +qi +2988 ina +2990 ina +urudu +2995 at +te +qi +3000 giš +3004 ur +ne +e +3009 ta +sak +te +qi +3014 ina +3017 te +qi +3021 ta +ana +3026 šu +tu +na +tak +3031 bu +ṣi +ni +ša +nu +ri +ta +sa +rim +qut +ra +ša +nu +ri +3053 šu +3055 si +3063 mušen +mal +ma +liš +3073 ina +3075 u +3081 ina +urudu +3085 tu +kaṣ +ṣa +ina +urudu +3097 ša +urudu +3101 ta +šam +ma +aṭ +3107 mi +3111 pa +ʾa +ṣu +te +3118 ina +ir +ri +3124 te +qi +ma +3130 šu +ik +ši +a +na +3137 ki +ṣa +a +ti +bul +lu +ṭu +u +kap +pi +3149 šu +šu +ṣi +i +sah +le +e +ki +ṣa +a +ti +ina +3163 ma +ma +ʾa +du +la +ir +ri +ra +ina +3175 tara +bak +3179 šu +3183 ina +3188 rib +ki +3192 šu +3195 ma +3199 u +3203 u +3208 u +3213 ti +3215 qe +ina +3220 sah +le +e +3226 šu +3229 tur +ar +ta +pa +a +aṣ +ina +3243 me +ina +3246 te +tem +mer +3250 ma +ina +3257 ina +3266 šu +nu +ina +giš +3271 tu +tak +kap +3277 ša +3279 mušen +ana +3283 šu +il +qa +a +3288 ša +šu +ta +sak +te +qi +3295 kam +ka +di +3302 ša +kap +pi +3307 šu +tu +gal +lab +u +3315 da +aq +qi +qi +3320 up +pu +te +gu +ra +ša +3328 u +ta +lu +pa +di +la +ar +si +ni +ša +hal +li +3341 ša +3343 ša +3352 la +ki +i +ša +3357 la +na +aš +ku +3363 la +ṣa +bi +tu +ina +nem +se +te +ta +qal +lu +giš +bal +ta +ša +3379 u +3382 giš +3387 u +3390 ta +qal +lu +3394 u +3398 u +3403 u +gim +gi +ra +3413 niš +3417 ina +3420 sar +sek +ru +ti +3425 ta +la +aš +3441 te +eq +qi +3448 šu +3454 giš +3459 ina +gi +3463 ana +3467 šu +3473 šu +3479 giš +3483 ina +3488 mun +eme +sal +li +3498 šu +3500 ma +3502 ma +ʾ +du +ti +3508 ina +3511 šu +3514 šu +3521 su +tu +gal +lab +ina +3527 me +3529 šu +3533 tu +kaṣ +ṣa +3537 u +3540 tur +ar +ina +3552 si +3554 sar +3558 šu +3561 u +za +ku +u +3567 u +3574 ina +3579 te +te +niq +qi +3587 šu +3589 ma +ši +ši +tu +3594 d +3598 šu +ar +mat +3605 ak +3608 šu +3611 ma +u +3615 sah +la +na +3619 u +3628 mušen +3633 ša +šu +nu +3637 niš +3639 ina +3642 giš +3648 šu +3650 ma +3656 šu +3658 ma +ši +ši +tu +3663 d +3667 šu +ar +mat +di +gal +šu +3674 ana +3676 ša +3678 d +3682 šu +3684 u +at +kam +3690 ina +3692 giš +3698 šu +3701 ma +3707 šu +3709 ma +3712 di +gal +šu +3722 šu +3736 giš +3743 ma +3748 ina +gi +3752 ana +3756 šu +3758 ah +3764 di +ana +3768 i +gu +le +e +3774 ta +šar +rap +qut +ra +ša +šit +ti +3783 a +he +en +na +3789 šu +3792 ma +3798 šu +3801 ma +3803 ana +3805 šu +3810 šim +3812 u +3816 u +3820 ha +3826 šu +ši +ši +tu +3837 ina +3849 mušen +3855 ta +bi +la +3866 mušen +ina +3877 ina +3881 u +im +hur +lim +ina +3891 šu +3896 šu +3898 šu +3900 šu +3906 ina +3910 ina +3913 šu +3917 mušen +ina +3924 giš +bi +ni +3928 giš +3931 ina +3935 ta +la +aš +3940 šu +3950 pa +tan +ana +3956 šu +ta +ma +za +aʾ +3963 mun +eme +sal +li +si +ik +ti +3975 tur +ar +3983 ina +3987 sa +a +qi +3996 šim +3999 munus +4002 ša +4012 ana +4016 šu +tu +na +tak +4028 a +4031 ina +4038 ta +ša +qal +4045 mušen +ta +bi +la +ina +4056 u +ba +ni +a +ṣi +4062 su +ina +4066 si +4070 šu +nu +4075 ši +hi +il +tu +4081 mal +ma +liš +4086 ina +4091 e +4095 ina +4097 munus +4100 mal +ma +liš +4110 šu +nu +ana +dug +4117 at +4123 an +4125 ma +4128 ina +4136 ana +4140 šu +tu +na +tak +4146 ina +4155 šu +kat +ma +kur +ṣip +ti +4163 ina +na +4172 šu +4175 na +4182 giš +4191 a +he +e +4199 u +4203 ina +4208 ina +4220 ina +4229 šu +nu +ina +giš +4234 tu +tak +kap +4238 ina +4245 bi +la +ta +4251 ina +4258 ana +4262 šu +tu +na +tak +4270 ti +i +4275 hap +pi +4281 ina +4283 te +sip +4286 ana +4290 šu +tu +na +tak +4296 i +na +sah +4307 ta +sak +4314 ina +4317 te +qi +4320 ina +4322 ta +la +aš +4327 šu +4330 te +qi +4335 te +qi +4338 ina +4341 te +qi +4344 ina +4346 šu +4348 tu +mad +4351 ta +sak +te +qi +4364 u +4370 šu +4373 en +4377 šu +4383 a +ši +i +4387 ina +4392 a +na +nu +uh +hi +4400 ina +4409 ana +4413 šu +4415 ina +4418 giš +4423 mun +me +4426 u +ak +tam +4430 ina +4433 ina +4443 šu +ma +di +ra +4450 ra +4461 mušen +4465 ina +4475 šu +4477 ma +šam +ha +4485 šu +4487 ma +4489 ina +4493 še +e +li +4501 šu +4503 ma +4505 ina +4514 šu +4522 ša +4524 mušen +ina +4527 munus +4537 si +ik +ti +4548 d +4553 šu +4559 šu +4571 ṣi +ri +ih +ta +4582 ri +i +4594 šu +4603 kur +ṣib +ti +4608 u +4615 šu +4620 ina +4624 niš +4635 šu +4639 m +aš +šur +4650 ki +ša +d +4654 u +d +taš +me +tu +4661 ra +pa +aš +tu +iš +ru +ku +šu +e +hu +uz +zu +4675 na +mir +tu +ni +siq +tup +šar +ru +ti +ša +ina +4688 ni +a +lik +mah +ri +ia +mam +ma +šip +ru +šu +a +tu +4702 e +hu +uz +zu +bul +ṭi +4709 muh +hi +4713 liq +ti +4717 ta +hi +zu +nak +la +a +zu +gal +lu +ut +d +nin +urta +u +d +gu +la +ma +la +ba +aš +mu +ina +ṭup +pa +a +ni +aš +ṭur +as +niq +4750 ma +a +na +ta +mar +ti +ši +ta +si +ia +qe +reb +4764 ia +u +kin +4769 su +a +lam +4773 ana +ki +is +4778 šu +šu +ru +uš +giš +4785 šu +ru +uš +giš +šu +še +u +tar +muš +u +4796 lim +u +4800 u +tu +lal +u +4813 ina +4816 di +ina +4819 tuš +bat +ina +4827 pa +tan +4831 ma +ina +eš +4836 ki +is +4840 ina +4842 ša +tu +giš +4848 šu +4850 šu +ma +4853 ki +a +am +4857 nu +4865 dam +gal +kur +4870 gi +d +en +lil +a +e +nu +ub +zum +d +zar +pa +ni +tu +ša +igi +gal +la +gub +a +gir +a +ni +gub +ba +gir +a +ni +dur +ra +4901 du +ra +gir +igi +gal +gub +gir +igi +gal +4913 an +ni +ta +4917 nu +ma +4920 ana +4924 d +4929 ba +lu +pa +tan +4934 ma +4937 ana +4940 šu +ru +uš +giš +šu +še +ina +4949 ba +lu +pa +tan +4954 ma +4956 ana +4961 ina +4964 ba +lu +pa +tan +4969 ma +4971 ana +4975 a +ma +ni +4979 ba +lu +pa +tan +4984 ma +4988 ki +is +4994 ina +4998 šu +tu +še +šab +šu +5005 sar +sek +ru +ti +5010 ti +ana +5013 šu +5015 ma +5017 ana +5020 ina +5024 šu +uk +tam +ma +as +ma +u +šab +5034 ana +5037 šu +tu +qar +ra +ar +ana +5047 su +ana +šap +la +nu +5053 an +5056 šu +ana +5060 nu +tu +ša +qa +ina +me +ku +ti +5069 su +ta +ma +haṣ +ina +me +ku +ti +tu +ma +aš +šad +su +ma +ana +5086 ab +5089 ina +5092 ka +5094 ti +ša +5098 šu +5101 su +5103 at +5105 šu +5108 su +5110 at +u +qaq +qa +ra +5116 at +ana +5121 giš +5126 giš +šu +šum +u +5131 lim +u +5135 u +tar +muš +u +5142 u +5147 lu +ina +5150 lu +ina +5157 šu +it +te +net +ba +aš +šum +5166 u +5173 u +5178 e +5189 ki +is +5195 šu +ma +gal +5200 hu +mu +še +er +rit +ta +šu +5208 šu +u +5213 giš +5217 a +he +en +na +a +5224 ina +5226 mal +ma +liš +5230 qe +ina +5234 ina +5237 tu +la +bak +ina +5242 tuš +bat +ina +še +ri +5248 šal +ta +ša +hal +ana +5254 šu +5256 ak +5259 ma +5261 šim +5264 šim +5266 šim +5270 giš +5274 giš +5278 u +ur +ba +ti +5283 niš +5289 šim +5293 ina +5297 ri +5300 šu +5302 ma +5306 ki +is +5311 u +5314 šu +5317 har +šu +ina +5321 šu +5324 ra +5326 šu +u +sa +hal +šu +ip +ta +na +ru +5337 šu +ir +ta +nam +mu +u +5344 ina +5346 šu +5350 šu +eb +ṭu +ana +5355 šu +5368 sar +5377 hal +ṣa +5384 u +5388 ana +5391 di +ina +5394 ana +5396 mul +5398 tuš +bat +ina +5406 pa +tan +5409 šu +5411 šu +5415 ši +qa +5418 šu +ina +5421 šu +u +5424 šu +5427 tu +ser +šu +ma +5432 uṭ +ana +5438 i +5440 a +ma +ni +5446 ina +5449 pa +tan +5452 šu +ina +5455 šu +u +5458 šu +5461 ma +tu +ser +šu +ma +5467 ana +5470 u +5477 u +5479 lim +5483 ina +5487 pa +tan +5490 šu +ina +5493 šu +u +5496 šu +5499 ma +5502 ana +5510 ha +ru +be +di +ik +ta +5522 ina +5525 pa +tan +5529 me +5534 me +ina +5539 pa +tan +5547 šu +tu +sa +lah +ma +5553 ana +5556 urudu +5560 u +5563 ma +giš +si +ha +giš +ar +gan +na +giš +ba +ri +ra +ta +u +5579 u +at +kam +ana +5585 di +5597 giš +5600 su +5604 sah +le +e +5610 šim +5616 šim +5621 u +qut +ri +5628 sar +5649 pa +pa +si +d +5657 u +5663 u +5671 mušen +5675 u +5677 ti +5682 šim +5715 an +nu +ti +5722 ina +5725 ina +urudu +5730 ra +bi +ki +tara +bak +5737 me +5740 šu +5742 id +5745 u +5748 šu +5750 har +šu +ma +5757 šu +ik +ta +na +su +šu +u +5765 lim +5767 pa +tan +i +kal +ta +sak +ina +5776 pa +tan +5780 ma +5782 uṭ +ana +5786 u +5790 u +šur +ne +e +5795 pa +tan +5800 ina +5803 pa +tan +5807 ma +5809 uṭ +ana +5813 u +ar +zal +la +u +5820 šim +5823 šim +5829 pa +tan +5833 ana +5838 a +a +ar +5846 u +5851 pa +tan +5855 ma +5857 ana +5860 kak +ku +sa +kam +ša +5867 šu +5870 ina +5873 sar +5875 ina +5877 u +5880 aṣ +5882 pa +tan +5886 ma +5888 ana +5891 kak +ku +sa +kam +ša +5898 šu +5901 u +5904 niš +5906 ina +5908 u +5911 aṣ +5913 pa +tan +5917 ma +5919 ana +5924 ša +5927 šu +5933 sar +ta +sa +laq +5940 ana +5944 giš +šu +še +5948 pa +tan +5952 ina +5955 pa +tan +5975 um +5977 šu +5979 šu +5986 pa +tan +6010 šu +6012 šu +u +6018 lu +ina +6021 lu +ina +6024 lu +ina +6028 ana +6031 di +6036 šu +6038 šu +u +6042 lu +ina +6045 lu +ina +6052 šu +6054 šu +u +ti +ia +a +ti +ina +6063 u +6065 lim +ina +6068 u +6071 ina +6073 u +tar +muš +ina +6078 u +6080 ina +6082 u +6085 ina +6087 u +6089 ina +6091 u +6094 lu +ina +6097 lu +ina +6104 šu +6107 šu +6127 ina +6133 šal +tu +kaṣ +ṣa +ta +ša +hal +6142 ana +6145 di +ana +6148 šu +6150 ak +6152 ma +6156 sar +6158 sar +6160 ina +6164 ana +6169 sar +6171 sar +6173 ana +6176 ina +6178 tuš +bat +6181 iš +tu +6184 u +6189 ina +6195 ana +6198 u +6203 ina +6206 ana +6209 u +6211 lim +6216 ana +6219 u +6226 šu +ka +si +šu +6231 sar +6233 su +šim +6240 ina +6243 aṣ +6245 pa +tan +6248 šu +6252 lu +ina +6256 lu +ina +6261 ana +6264 šim +6269 ina +6272 pa +tan +6275 ma +6277 ana +6280 u +6282 lim +u +6286 u +tar +muš +6290 giš +6297 mal +ma +liš +6302 ina +6304 tara +sa +an +ina +6309 tuš +bat +ina +še +ri +ba +lu +pa +tan +6319 šu +6324 šu +6329 šu +ik +ta +na +su +šu +6337 šu +ma +gal +nap +hu +u +6348 šim +6350 šim +6352 ana +6354 bi +6356 di +6358 šal +ta +ša +hal +lu +ba +hir +ana +6367 šu +6369 ma +6377 ma +i +ši +bi +6382 šu +ik +ta +na +su +šu +6390 su +6393 šu +6396 u +i +sil +6400 šu +mu +še +6406 ana +6408 šu +giš +e +re +na +giš +6419 šim +6421 šim +6423 u +6433 ta +ka +sim +ana +6439 di +6441 šal +ta +ša +hal +6446 u +6449 hal +ṣa +ana +6454 di +lu +ba +hi +ir +ana +6461 maš +qe +ti +te +si +ip +ana +6469 šu +6475 it +ta +nap +ša +ru +ze +er +kar +šu +6486 ku +uṣ +ṣu +ru +u +6500 ek +le +ta +ki +i +me +e +hi +ri +ti +a +la +pa +a +na +du +u +6519 šu +ša +ar +6523 e +di +ip +na +di +i +ta +naq +qi +6534 ma +la +a +6539 šu +e +ta +na +ba +la +ša +pa +tu +šu +i +ta +na +pa +aṣ +ki +ma +6558 it +ta +nak +bir +ki +ma +6565 e +mur +ma +d +gu +la +na +di +na +at +ba +la +ṭi +6582 ina +6584 d +asal +lu +hi +u +bil +eṭ +lu +d +6595 re +me +nu +u +ip +pa +lis +su +ma +gi +ša +ma +6608 uṭ +eṭ +lu +šum +ma +6614 ina +6616 lu +ṣi +šum +ma +gi +ša +tu +ina +nap +ša +ti +li +še +ṣi +6635 ana +ki +is +6640 nu +6643 e +ta +na +ša +aš +6649 u +6651 la +i +mah +har +6658 šu +6661 šu +6664 su +gi +na +a +6677 sar +6680 sar +6683 sar +6686 ina +6688 giš +6693 aṣ +6695 u +6699 u +6703 ina +6706 ma +6708 ana +6720 ina +6722 lu +6727 u +6732 šim +6735 giš +6739 ina +6744 ki +is +6748 ana +ki +is +6753 si +u +6756 lim +u +6760 u +tar +muš +6764 u +tar +muš +u +6771 ina +6773 u +6779 ina +6785 ša +bu +la +6792 u +kak +ku +sak +ku +ša +6800 šu +6803 u +6805 u +6807 lim +6809 ina +6818 ina +6822 ina +6825 pa +tan +6828 ma +ina +eš +6833 lib +bi +lib +bi +6839 si +u +ur +ne +e +u +6847 u +ti +ia +ta +u +6855 u +6858 sah +le +e +u +tar +muš +u +6866 lim +u +6870 u +ak +tam +u +6877 giš +6884 ba +lu +pa +tan +ina +6895 šu +ik +ta +na +ar +6901 giš +6903 u +6910 ina +6913 pa +tan +6916 ma +ina +eš +6920 giš +šu +ši +6924 giš +6928 u +tar +muš +u +6933 lim +u +6937 u +6941 u +6948 ki +is +6951 bi +ina +6958 eme +sal +li +šim +6964 šim +6967 niš +6970 ina +6973 šal +6976 ana +6979 di +ana +6982 šu +6984 ak +6986 mi +na +a +ma +lu +u +lib +bu +ka +mi +na +a +ma +lu +u +lib +bu +ka +7007 d +7010 lib +bu +ka +man +nu +lu +uš +pur +ana +gu +gal +lib +bi +ka +liš +ša +a +7039 li +pat +ta +a +7054 li +par +ši +du +ma +li +ṣu +ni +zu +u +šu +7079 li +mur +7082 ul +ia +tu +un +7102 d +gu +la +7107 qiš +ta +7110 e +7127 ia +7129 bi +7132 ana +7134 ia +7147 bi +7149 ina +u +re +e +li +kul +7164 bi +7166 ina +a +sur +re +e +7177 d +a +sal +luh +u +d +gu +la +7193 iq +bu +nim +ma +a +na +ku +u +ša +an +ni +7215 ana +7220 nu +7225 gi +pisan +gen +keš +da +7239 a +pu +gen +a +ge +a +nu +tuku +7253 tuku +7255 u +nu +ku +ku +a +nu +ku +ku +7264 ne +7266 d +asal +lu +hi +igi +7272 nig +ge +e +7276 gen +na +dumu +gu +7284 ne +ke +7287 u +u +ha +šu +u +šu +u +me +ti +nam +šub +eridu +ki +ga +u +me +ni +si +7306 lu +u +lu +dumu +dingir +ra +na +ka +bi +ta +u +me +ni +gar +lu +dumu +dingir +ra +na +še +gen +he +dur +re +bu +luh +gen +ri +he +en +si +il +e +7340 im +ma +gu +du +a +ni +ta +he +em +ma +ra +e +7359 ana +7363 di +ina +7366 šu +u +man +zaq +ma +ina +7374 ma +ina +eš +7379 ka +keš +bi +he +du +a +7386 d +asal +lu +hi +dumu +eridu +ki +ga +ke +ka +keš +bi +he +du +a +7410 šu +7412 nu +ina +7415 šu +u +man +zaq +ma +ina +eš +7423 d +7425 ina +7428 ba +šu +ka +su +šu +ma +7437 ta +ma +la +a +rit +ta +šu +ul +um +mu +pe +ta +at +pa +ni +šu +ul +a +ha +tu +mu +še +qa +at +re +ši +šu +ki +ma +7469 na +ši +pat +ri +7480 u +nu +hur +ta +7485 qe +ana +7490 di +7501 šam +mu +ša +7505 bi +ina +7508 i +a +ṣi +ma +as +suh +šu +ma +7521 a +na +d +7527 ma +iṣ +ṣa +bat +7532 bi +d +7551 a +na +7558 ma +iṣ +ṣa +bat +7563 bi +7583 a +na +d +e +a +7589 ia +aq +bi +ma +7594 bi +7606 bi +7608 u +7610 lip +pa +šir +7614 bi +7625 lip +pa +šir +7638 šu +7651 šu +u +7654 šu +7658 urudu +na +ah +bi +7663 ana +7665 d +7669 šu +7674 nu +7676 ina +7678 ta +sa +rim +7685 ina +7688 u +7692 ina +na +kap +7697 u +7699 i +na +as +suk +ma +ina +eš +7708 d +7710 ina +7712 i +7716 ma +7720 ina +ma +kan +ki +a +ṣi +ma +d +7729 is +suh +šu +ša +d +7735 im +me +ru +pa +nu +šu +d +7743 šam +ma +7747 i +u +še +ri +dam +ma +iš +kun +ma +ina +qaq +qa +ri +šur +šu +šu +qaq +qa +ra +7769 šu +7771 e +nak +pa +iṣ +bat +7777 d +7779 ina +le +qi +šu +iṣ +bat +7786 d +7788 ina +7791 iṣ +bat +7795 ina +tar +ba +ṣi +iṣ +bat +7804 ina +su +pu +ri +iṣ +bat +7812 ina +su +kul +li +iṣ +bat +7821 ina +ši +ga +ri +iṣ +bat +7829 ina +er +re +ti +iṣ +bat +7837 ina +me +lul +ti +iṣ +bat +7846 ina +ur +ši +ša +iṣ +bat +7856 tu +mu +re +e +tu +ga +re +e +a +na +e +re +ši +šu +ma +7872 šu +i +di +7876 e +ma +iš +ku +nu +i +di +7888 u +ur +ne +e +u +7896 u +ti +ia +ta +7901 sar +u +7906 niš +7908 ina +7911 aṣ +7913 ana +7916 nu +ina +7920 šu +7922 ma +7925 šam +mu +ša +7929 bi +ina +7932 i +a +ṣi +ma +as +suh +šu +ma +iṣ +ṣa +bat +7944 bi +ana +d +7948 aq +bi +ma +iṣ +ṣa +bat +7955 d +7957 ana +7959 e +u +7962 ti +aq +bi +ma +iṣ +ṣa +bat +7971 u +7973 ana +u +ma +mi +7979 ma +iṣ +ṣa +bat +7984 u +ma +me +a +na +d +e +a +7993 ap +si +aq +bi +ma +7999 bi +lip +pa +šir +8004 bi +d +8007 lip +pa +šir +ki +ma +8013 bi +d +8016 ip +pa +ša +ru +8021 bi +8023 u +8025 lip +pa +šir +ki +ma +8031 bi +8033 u +8048 šu +8050 nu +ina +8053 šu +u +man +zaq +ma +ina +eš +8070 sa +bi +tu +nam +zi +tu +a +ši +tu +pi +ina +a +mat +d +8086 ina +qi +bit +d +8092 lib +luṭ +8098 el +lu +ša +ina +8103 i +aš +bu +man +nu +ub +lak +ka +8113 el +li +ša +a +me +lu +ti +ša +8122 šu +ša +la +a +ka +li +ša +8131 šu +ša +la +8141 ana +šu +bur +ri +ki +ma +ṣe +er +ka +ra +ni +ta +aṣ +ṣi +8162 u +ti +ia +ta +8167 sar +8173 ana +pa +ni +ma +aš +ti +i +ta +za +ru +8184 šu +8188 ana +8199 ti +ia +ta +8203 sar +ta +mar +raq +ina +8210 ana +8214 ina +8217 u +8222 e +sil +ki +ma +na +di +na +pi +ih +ma +ki +ma +lu +up +pi +8239 šu +u +ina +8243 šu +šu +u +giš +8250 ma +8256 ina +8260 ka +8262 ti +ša +8267 šu +ana +8272 šu +8274 ma +ina +eš +8279 nam +zi +tu +8283 la +as +su +uh +8292 ina +8296 ka +8298 ti +ša +8303 di +u +ina +8308 ka +ta +mar +raṭ +ma +ina +eš +8316 ša +ru +um +mi +ša +ru +ša +ru +8327 at +ta +ša +ru +ša +bi +rit +ze +e +u +ši +na +a +ti +at +ta +tu +ṣi +a +ma +it +ti +8353 ka +na +di +a +at +giš +8361 ka +8366 u +8373 ina +8377 di +8380 nu +8382 su +ma +ina +eš +8387 lib +bu +ma +8391 bu +8393 bu +da +an +8397 bu +qar +rad +8403 ma +li +pu +luh +ta +ki +ma +8413 la +ka +da +uš +šur +8419 ul +ia +at +tu +8424 d +gu +la +8428 a +nam +di +8432 ana +8435 d +e +a +a +nam +di +8442 ana +8445 d +a +nim +a +nam +di +ana +8455 aš +šum +mi +ni +i +aš +šum +mi +ni +i +aš +šum +ka +bat +ti +aš +šum +li +ib +bi +aš +šum +li +ib +bi +aš +šum +li +ib +bi +mar +ṣi +8503 nu +ina +8506 šu +8508 ma +ina +eš +8512 a +na +li +bur +za +ni +nu +qi +bi +ma +um +ma +a +da +pa +8528 ma +8530 at +ta +u +a +na +ku +kul +lat +8539 ni +ti +qam +ma +8545 ha +li +lu +ti +8563 qa +ti +mar +ṣi +ṣa +bat +8570 d +e +a +8574 šu +ma +8577 lib +luṭ +8583 u +8587 u +ti +ia +ta +8592 ta +mar +raq +8606 šu +ina +8609 ka +ta +mar +raṭ +8617 a +na +li +bur +na +din +iš +pur +an +ni +8628 ina +a +hi +8632 ša +8634 i +8636 ul +nu +uš +ba +am +ma +8646 ra +ši +8649 ana +mah +ri +ka +8665 ša +8667 ana +8671 u +8673 te +de +ek +ki +šu +ma +i +ne +eš +8685 d +8687 ina +8689 e +u +8692 te +8699 šu +8701 nu +8710 e +mur +šu +ma +d +asal +lu +hi +ih +ba +a +8729 dug +8731 ina +qa +ti +šu +8738 bi +ana +d +e +a +be +li +šu +8747 ul +ia +tu +un +8752 d +8754 u +d +asal +lu +hi +8760 d +gu +la +8770 u +8776 qe +8779 šu +ana +8783 ma +i +man +zaq +ma +8790 da +an +8793 bu +qar +rad +8797 bu +ša +8800 bi +ar +ra +qa +8806 šu +pur +si +it +8811 na +ši +ma +ir +ru +sa +hi +ru +ti +ul +lu +lu +ina +a +hi +šu +e +ta +šiṭ +8831 bu +e +ta +tu +ra +8837 ana +8839 dam +qi +ana +8844 da +me +eq +tu +uš +šir +8851 ma +8853 li +pu +uš +uš +šir +8860 qin +na +liq +nun +ir +ru +suh +hu +ru +ze +er +kar +šum +u +ši +i +ri +qi +tu +bu +up +pa +ni +ša +sah +pat +liš +lim +kar +šum +ir +ri +liš +te +ši +ru +ma +ri +qi +tu +lit +ru +uṣ +8905 ina +šu +bur +ri +8910 ge +šu +ti +ina +na +piš +ti +li +ṣa +a +8927 ina +8929 bi +8933 šu +8935 nu +8937 šu +ma +ina +eš +8943 bu +8945 bu +e +ki +il +8950 bu +8952 mu +ši +ti +ma +li +nam +ri +ri +i +na +qab +li +ti +ul +i +šu +a +pa +tu +ma +ul +u +šer +šu +ma +am +ma +ir +ru +su +hu +ru +ze +er +kar +šum +u +ši +i +ri +qi +tu +bu +up +pa +ni +ša +sah +pat +li +it +ru +uṣ +kar +šu +ri +qi +tu +lit +ru +uṣ +ki +ma +ša +a +ri +a +na +šu +bur +ri +ki +ma +ge +šu +te +a +na +9032 ki +ma +zu +ʾ +ti +u +u +pa +ṭi +u +di +ma +ti +ka +la +9048 šu +na +šal +li +la +ni +9055 ul +ia +ut +tu +9060 d +e +a +u +d +asal +lu +hi +9069 d +da +mu +u +d +gu +la +9077 d +9087 ana +9089 bi +9099 nu +ma +ina +9103 ka +9105 šu +9107 ina +9109 šu +i +mah +har +ba +lu +pa +tan +9118 ma +ina +eš +9123 bu +ma +9126 bu +qar +rad +9131 ša +9133 ze +ra +9137 šu +pur +sit +da +a +me +9144 bu +9146 bu +a +ia +ša +ta +lak +9153 bu +a +ia +ša +ta +ṣa +bur +9161 bu +9166 ad +9182 pad +su +9189 ša +a +ru +9200 i +pa +šar +pi +šir +šu +9209 lip +šur +ki +ši +9216 mu +ana +9219 li +še +ṣi +9228 ša +9231 šu +9238 šu +9242 an +ni +ta +9246 šu +9248 nu +9253 su +9255 at +na +9259 u +9261 u +9263 šim +9276 ina +9280 ina +9283 šu +tu +na +tak +9291 ma +ina +9295 aš +tara +bak +9300 u +9302 lim +u +9306 u +tar +muš +9315 tuš +ta +na +as +sa +qam +9323 ana +9326 u +ṣi +bu +ra +u +9337 ana +9340 u +9342 lim +9344 ina +9348 ma +9354 su +9357 su +ana +9360 šu +u +im +hur +aš +na +9374 ina +9376 ina +9382 ma +9387 šu +9405 su +a +lam +9409 ana +ki +is +9414 šu +9417 m +9428 ki +ša +d +9432 d +taš +me +tu +9439 tu +iš +ru +ku +uš +e +hu +uz +zu +9450 na +mir +tu +ni +siq +ṭup +sar +ru +ti +ša +ina +9463 ni +a +lik +mah +ri +ia +mam +ma +šip +ru +šu +a +tu +la +e +hu +uz +zu +bul +ṭi +9484 muh +hi +9488 liq +ti +9492 ta +hi +zu +nak +la +a +zu +gal +lu +ut +d +nin +urta +u +d +gu +la +ma +la +ba +aš +mu +ina +ṭup +pa +a +ni +aš +ṭur +as +niq +9525 ma +a +na +ta +mar +ti +ši +ta +si +ia +qe +reb +9539 ia +u +kin +giš +9572 šu +9588 u +9593 šim +9613 šu +ṣab +ta +šu +ma +9620 šu +9638 ša +bu +lu +te +9659 šu +9661 ma +9664 šu +9671 šim +9673 šim +9678 šu +9680 u +kal +9687 ma +9690 šu +i +9695 šu +bir +ra +ta +i +pi +ta +i +ši +ta +mur +din +na +qu +qa +na +a +ša +a +u +9718 a +9725 bu +ṭu +ta +ina +na +9732 en +9735 ka +u +kal +ina +9744 qe +ina +9748 sar +9750 aš +9752 ab +9754 ma +9763 sah +le +e +9773 ina +9776 sar +9778 aš +9780 ab +9782 ma +9788 sah +le +e +9792 ti +šim +9798 ina +9801 aš +9804 šim +9807 eme +sal +li +mal +ma +liš +9815 ina +9821 šu +te +qi +9840 hi +qa +ti +9847 ina +9850 sar +9852 aš +9854 ab +9856 ma +9863 na +aṣ +ma +da +ti +an +na +ti +9876 ša +9878 ur +ṣi +9894 ina +9896 is +sip +ma +9907 ina +9911 aṣ +ma +9914 šu +9932 giš +9948 ina +9951 sar +9953 aš +9955 ab +9957 ma +9970 ina +9986 u +9999 ina +10002 sar +10004 aš +10006 ab +10008 ma +10025 ina +10028 sar +10030 aš +10051 su +10055 su +10057 ana +10060 šu +10062 ak +ina +10065 ša +ta +ra +na +10070 u +10072 šu +10078 mušen +10089 sar +10096 sar +10106 giš +10110 sah +le +e +10119 aš +10127 ina +10131 te +qi +10137 giš +10139 ša +ina +iti +10146 is +ina +10150 sar +10152 aš +10154 ma +10166 ab +10168 ma +10174 u +10180 u +10182 d +10191 ma +10196 ina +10199 ina +kip +kip +10206 te +qi +10212 ma +10217 ma +10225 te +qi +10230 te +qi +10234 aš +10236 ab +10238 ma +10246 ina +10249 sar +10251 aš +10253 ab +10255 ma +10267 ina +10270 sa +a +qi +10276 te +qi +10280 aš +10282 ab +10284 ma +10291 ina +10294 aš +10296 ab +10298 ma +10303 ina +10306 i +šu +hat +10321 ina +10324 sar +10326 aš +10328 ab +10330 ma +10342 ina +šur +šum +mi +10350 aš +10352 ab +10354 ma +10365 du +muq +ši +na +ta +tab +bal +ina +10375 te +qi +u +10384 ina +10387 sar +10389 aš +10391 ab +10393 ma +10399 giš +10405 ina +10408 sar +10410 aš +10412 ab +10414 ma +10422 mušen +ina +10426 te +qi +10432 giš +10435 iš +10440 ina +10443 sar +10445 aš +10447 ab +10449 ma +10457 ba +aš +la +ina +10462 sir +di +10465 aš +10467 ab +10469 ma +10476 ša +kib +ša +10480 u +ina +10486 te +qi +u +10492 sah +le +e +10497 ina +šur +šum +mi +10504 aš +10506 ab +10508 ma +10514 u +hal +tap +pa +na +giš +10524 ina +šur +šum +mi +10532 aš +10534 ab +10536 ma +10542 šim +10544 šim +10547 šim +10555 si +ina +10559 aš +10561 ab +10563 ma +10571 ina +10574 te +qi +10588 aš +10590 ab +10592 ma +10606 aš +10608 ab +10610 ma +10631 aš +10633 ab +10635 ma +10643 sar +10645 lu +10648 ina +šur +šum +mi +10654 aš +10656 ab +10658 ma +10665 u +10670 su +tu +has +sa +10675 šu +ana +dug +10681 at +10686 an +10688 ma +i +tab +lu +ina +10702 mušen +10705 šim +10707 šim +10711 u +10714 ka +mun +giš +10719 u +10727 giš +10730 eme +sal +li +u +10736 u +10739 ma +la +ni +iš +10745 ka +10748 ta +pa +aṣ +ina +10756 šu +ina +10761 si +10765 su +te +qi +10769 ma +10771 šu +te +qi +10775 šu +10781 šu +10783 giš +10788 šal +ana +dug +10793 te +sip +ina +10797 tuš +bat +ina +še +ri +10804 su +10807 giš +10813 ana +10816 šu +tu +qar +ra +ar +10823 su +kun +ša +sig +10836 ana +10839 šu +10841 ina +10843 ša +ta +ra +na +10848 u +10850 šu +10854 an +na +10858 uš +10862 šu +10865 im +10872 kib +rit +10881 u +10885 niš +10888 ina +10890 giš +10894 su +tu +qat +tar +10901 šu +10904 ma +10907 šu +i +bar +ru +ra +10913 u +kal +la +10924 ina +10927 sar +10929 aš +10932 su +10934 ab +10936 ma +10953 ina +10958 aš +10961 su +10963 ab +10965 ma +10975 giš +10977 ina +10980 aš +10982 ab +10988 u +10990 ina +10993 aš +10995 ab +11001 u +u +ra +na +11006 ina +11009 aš +11011 ab +11017 u +ṣa +da +na +11022 ina +11025 aš +11027 ab +11030 u +sa +ma +na +11035 ina +11038 aš +11040 ab +11046 šu +11053 šim +11055 šim +11058 šim +11060 sah +le +e +11069 ab +11075 šu +11079 ma +11082 šu +i +bar +ru +ra +u +11090 a +11094 šim +11096 u +11103 sah +le +e +giš +11112 niš +11115 ina +11121 su +11123 id +11134 giš +11139 šim +11149 giš +si +hu +11155 giš +ar +ga +an +nu +11179 ina +11182 sar +11184 aš +11186 ab +11192 šu +11195 su +11199 šu +11202 za +giš +11206 giš +11216 ina +urudu +11220 tu +ba +har +11225 su +11233 ṭi +ṭi +11238 ina +11241 šal +11246 šim +11249 šim +11251 šim +11253 šim +11256 ṭi +ṭi +11261 ina +11264 šal +11275 kib +rit +11294 niš +11297 ina +11299 giš +11303 su +tu +qat +tar +11308 sag +ki +ni +sag +ki +he +en +gi +gi +i +bi +ni +i +bi +he +en +gi +gi +mu +ru +ub +bi +ni +mu +ru +ub +bi +he +en +gi +gi +he +en +da +a +na +mul +la +he +en +da +a +na +mul +la +11362 šu +u +zaq +qat +su +11372 tur +ar +11380 nu +11382 šu +11387 me +kug +ga +ba +da +ra +ah +ba +da +ra +ah +me +kug +ga +iz +zi +me +zi +zi +me +še +ra +še +ra +11414 hu +luh +ha +gi +gi +11423 šu +11426 la +11435 šu +ne +11443 ana +11446 šu +11448 nu +11454 u +11459 ab +11461 ma +11467 ana +11471 ina +11474 sar +11476 aš +11478 su +ma +11483 ana +11486 u +11490 su +pa +la +ina +11495 ta +la +aš +11500 ana +11503 sah +le +e +11507 ni +kip +ta +11515 niš +11518 ina +11523 ana +11529 sah +le +e +11534 aš +11536 ab +11539 ana +11547 aš +11549 ab +11552 ana +11561 ina +11564 sar +11566 aš +11568 ab +11571 ana +11574 šim +11576 ina +11579 sar +11581 aš +11584 ana +11588 ina +11591 aš +11593 ab +11596 ana +11600 ina +11603 sar +11605 aš +11607 ab +11609 ana +11613 ina +11616 sar +11618 aš +11620 ab +11623 ana +11627 ina +11630 sar +11632 aš +11634 ab +11637 ana +11641 ina +šur +šum +mi +11647 aš +11649 ab +11652 ana +11662 tu +šam +maṭ +ina +11668 sar +11670 si +11674 giš +11687 ina +11690 sar +11692 aš +11695 su +u +11698 su +11700 ana +11712 ina +11715 sar +11717 aš +11719 ana +11728 ina +11731 sar +ta +la +aš +11736 ab +11738 ma +11744 ana +11750 giš +11760 ina +11763 sar +u +11767 aš +11770 ana +11776 u +su +pa +lu +ina +11782 sir +di +u +11787 sar +11789 aš +11796 su +11799 im +11801 ab +11806 ina +11809 sar +11811 aš +11820 ana +11831 ina +11834 sar +11836 aš +11842 ina +qer +bit +11847 šu +11852 šu +u +ba +na +tu +uṣ +ṣa +rib +ki +ina +11864 sar +11866 aš +11871 ana +11875 šu +ut +bi +i +11886 ina +11889 sar +11891 aš +11894 su +11896 ana +11899 sah +le +e +bu +ṭu +ta +11909 ina +11912 sar +11914 aš +11917 ana +11920 sah +le +e +šim +11925 ina +11928 sar +11930 aš +11932 ana +11942 ina +11945 sar +11947 aš +11949 ana +11953 ṣar +ba +te +ina +11959 sar +11961 aš +11964 ana +11967 u +hal +tap +pa +na +11973 giš +11976 ina +11979 sar +11981 aš +11983 ana +11986 u +11993 ina +11996 sar +11998 aš +12001 ana +12004 u +12009 ina +12012 sar +12014 aš +12016 ana +12022 u +12026 ina +12029 sar +12031 aš +12034 ana +12039 ṣar +ba +te +ina +12045 sar +12047 aš +12049 ana +12053 šim +12056 ina +12059 sar +12061 aš +12063 ana +12071 ina +12074 sar +12076 aš +12078 ana +12086 ina +12089 sar +12091 aš +12093 ana +12097 ina +12100 sar +12102 aš +12105 ana +12108 qi +lip +še +el +le +be +nu +ina +12118 sar +12120 aš +12122 ana +12127 ṣar +ba +te +ina +12133 sar +12135 aš +12137 ana +12141 ina +12144 sar +12146 aš +12152 šu +i +šah +hu +uh +12167 su +12169 ab +tu +kaṣ +ṣa +12174 ma +12180 ana +12185 giš +12191 giš +12197 šim +12202 šim +12209 sar +12240 niš +12243 ina +12246 aš +12248 ma +12254 ka +u +kal +ina +12263 qe +ina +12267 sar +12269 aš +12271 ab +12273 ma +12276 ana +12283 ti +šim +12290 niš +12292 ina +12295 aš +12297 ab +12300 ana +12303 šim +12306 šim +12308 šim +d +12313 u +12320 šim +12323 niš +12325 ina +12328 aš +12330 ab +12333 ana +12336 šim +12339 šim +12342 šim +12352 niš +12354 ina +12357 ri +12359 ab +12366 su +12370 ma +u +12373 šu +12375 šu +12378 su +nu +pu +uh +12383 giš +12399 še +12404 niš +ina +šur +šum +mi +12411 aš +12413 ab +12416 ana +12425 ti +šim +12429 šim +12433 ina +šur +šum +mi +12439 aš +12441 ab +12444 ana +12449 giš +12452 šim +12455 šim +12459 ina +12462 aš +12464 ab +12467 ana +12470 u +12475 ina +12479 aš +12481 ab +12488 su +12490 ma +12494 šu +i +šah +hu +uh +ana +12503 šu +12505 hi +u +12509 ta +12511 zi +u +ak +tam +u +ši +ma +ha +12522 niš +12524 ina +12530 su +te +sir +12536 ina +12539 šu +i +mit +ti +12548 su +12550 si +12552 giš +bi +ni +u +kam +ka +da +u +12563 u +12570 mušen +12572 niš +12574 ina +12580 su +12582 aš +12584 munšub +al +dub +ba +munšub +al +kalag +ga +munšub +al +keš +da +keš +da +munšub +nig +gub +ba +12619 na +12623 na +12625 na +12628 na +12630 na +12633 na +12636 na +12638 na +12643 na +12648 na +12650 nu +12652 na +12655 na +12659 na +12665 ni +bi +an +nu +ti +ina +sig +12676 ak +ina +12679 šu +12682 ma +12685 tu +ik +kal +la +12690 at +ta +ba +ra +an +gi +zi +ba +an +gi +ba +te +gi +ra +zi +im +ba +ra +uz +mi +ia +aš +pa +at +ri +un +da +kur +ra +he +en +na +he +min +na +pa +ri +ša +12734 ha +ru +be +e +ša +im +12743 qe +ina +12746 ur +ba +te +tur +ar +ina +12757 šu +12759 nu +12761 šu +12763 su +12765 šu +ta +hal +la +su +e +nu +ma +ta +hal +la +ṣu +šu +12780 šu +ana +12785 šu +12787 nu +12789 i +bi +gi +i +bi +gi +he +en +zalag +ge +sag +ki +zi +sag +ki +zi +he +en +zalag +ge +sag +ki +iz +sag +ki +iz +he +en +zalag +ge +še +er +zi +he +en +zalag +ge +ma +al +la +i +di +mu +ra +an +gub +hul +bi +hul +hul +12851 mušen +12858 giš +12862 giš +12873 šu +ana +12877 nu +12880 su +ma +12884 tu +ik +kal +la +lu +ša +12891 lu +ša +12900 šu +gi +lil +šu +gi +e +ne +šu +gi +12913 ha +ru +be +e +ša +im +12922 ina +12924 tur +ar +ina +12928 giš +12932 giš +12938 su +ma +12942 im +12950 ša +12952 ma +12954 ṣi +ir +ta +ma +ni +ir +ra +an +ni +ha +ba +re +eš +ma +ni +ir +ra +an +ni +hal +hal +la +ta +la +gu +12980 ma +12986 ma +u +ba +na +aš +du +ru +na +aš +hu +ri +na +ah +mu +un +di +hu +na +ha +at +tu +uk +13022 šu +ma +gal +i +šah +hu +uh +13032 šu +d +iš +tar +šu +13038 šu +ze +nu +u +13045 ana +13048 mah +re +e +13056 zi +13059 aq +13069 an +udu +13073 uš +uzu +13076 uzu +13079 uzu +13082 tu +ṭah +ha +13087 qi +13090 giš +13093 eš +13095 le +e +13099 mušen +u +13103 u +13105 lim +13113 ina +13117 an +13119 an +ni +ta +13123 šu +13125 nu +at +ta +13129 mu +nam +mir +13138 qe +reb +13141 e +ha +iṭ +13146 ana +ku +13151 ina +13153 an +ne +e +13157 ka +kam +sa +ku +di +ni +di +in +13167 a +a +13170 us +13176 lip +si +su +lum +ni +13186 ma +13189 šu +ta +kar +ana +13197 giš +13199 a +nu +u +eli +kul +la +u +kur +ka +na +a +ša +13212 ni +kip +ta +ina +13217 munus +13223 ina +13225 šu +13227 an +13239 šu +13241 u +kal +ina +13246 ka +13248 ti +a +šar +13253 u +kal +lu +13258 at +šum +ma +13263 šu +be +eʾ +šat +13268 ša +gul +gul +li +šu +it +tar +du +13277 ma +gul +gul +la +šu +te +ser +rim +13286 ša +gul +gul +li +šu +tu +še +lam +13298 si +13302 ana +13306 an +13314 ana +13323 ma +13328 si +13332 ana +13336 an +tug +na +al +ti +ip +ti +13353 ma +13358 si +13362 ana +13366 an +13374 sar +13376 ti +13384 ana +13393 ma +13398 šim +13406 ina +13409 sar +13411 aš +13415 tu +gal +lab +13425 šum +ma +13428 ma +13431 šu +la +be +eʾ +šat +ana +li +mit +13441 šu +13446 an +13448 ur +ba +tu +ur +ba +tu +ur +ba +tu +sa +am +tu +13461 am +ma +ur +pa +ta +13467 ik +tum +13473 ma +13475 tu +13477 tu +ir +hu +13485 ma +13488 tu +im +la +lu +13494 giš +13497 giš +13501 ši +ma +13507 li +is +kir +giš +13512 ma +13514 giš +13517 mi +13520 šu +nu +ed +la +man +nu +um +ma +ša +i +pe +et +ta +ku +nu +ši +i +ri +iš +ma +ra +i +ri +iš +ma +ra +13556 la +ik +kal +lu +u +13564 hal +lu +ta +na +a +ša +13577 mi +ana +13580 he +pe +e +ti +13585 an +13588 šu +13590 nu +ina +13593 ta +pa +ti +iq +13607 e +ma +13612 nu +ina +13616 šu +tara +kas +ma +ina +eš +13626 su +13628 u +kal +e +le +nu +da +da +ni +šu +13641 giš +13643 hum +ṭam +13646 an +ma +13649 šu +ub +bal +13654 ab +bu +ut +ta +šu +13660 u +kal +kal +13668 ina +13673 ina +13677 ab +bu +ut +ta +šu +13683 šu +te +ser +rim +ka +a +a +na +am +13697 su +še +ha +u +kal +giš +13704 hum +ṭam +13707 an +13712 su +it +te +ne +ba +aš +šum +na +mu +ši +tu +na +13726 na +13729 na +13731 mar +ha +ši +na +13737 na +13739 na +13744 na +13751 an +nu +ti +ina +sig +13764 ina +13768 šu +tara +kas +ma +ina +eš +13778 su +ik +ta +na +aṣ +ṣa +šim +13787 šim +13789 šim +13794 šim +13802 giš +13805 giš +si +hu +giš +ar +gan +nu +u +ba +ri +ra +ta +13819 ana +13825 ina +13831 ša +13835 u +ina +13838 giš +13841 ina +13844 ri +13847 su +13849 ana +13852 bu +ṭu +ut +tu +šim +13858 u +kur +ka +nu +u +qu +ta +ru +ša +13869 nap +šal +ti +13875 d +13878 u +13880 ni +kip +ta +13884 u +13886 na +mu +ṣa +13899 giš +bi +ni +13905 gul +gul +13914 an +nu +ti +13932 šu +13936 qu +tar +13940 u +13944 d +13946 u +kur +ka +na +ni +kip +ta +13954 u +13957 niš +tu +dak +kak +ina +13963 giš +13967 ina +13969 tu +qat +tar +šu +13977 su +13979 u +ṣa +ṣu +um +ta +u +13988 u +pi +mu +un +zer +13997 su +13999 niš +14001 ina +14004 sar +14006 aš +14009 su +14011 ab +14013 ma +14023 su +14025 šim +14028 šim +14030 u +14033 šim +14037 šim +14046 ina +14049 ri +14051 ab +14056 ana +14064 u +14069 te +ser +rim +14075 ina +14078 sar +14080 aš +14085 ana +14088 šu +14091 ma +ina +14094 šu +14097 su +14099 na +14108 šu +i +tel +li +ana +14120 su +14126 im +14134 su +ma +14145 su +14148 šu +14151 su +14154 šu +u +14158 šu +14160 šim +ma +ta +14165 ana +14167 šu +šim +14171 šim +14173 u +14177 giš +14180 sar +14188 ina +14191 sar +14193 aš +14196 su +14199 ma +14205 ana +14208 u +14213 ma +ina +eš +14221 šu +14223 i +ta +na +ah +14231 ši +14233 šu +14235 ik +ta +ner +ru +ana +14242 hi +14247 sar +14254 id +14263 ina +14266 sar +14268 aš +14270 ana +14275 giš +14278 u +14286 lu +ina +14300 u +14309 šu +14311 u +kal +14315 m +14326 ki +ša +d +14330 u +d +taš +me +tu +14337 ra +pa +aš +tu +iš +ru +ku +šu +e +hu +uz +zu +14351 na +mir +tu +ni +siq +ṭup +šar +ru +ti +ša +ina +14364 ni +a +lik +mah +ri +ia +mam +ma +šip +ru +šu +a +tu +la +i +hu +uz +zu +bul +ṭi +14385 muh +hi +14389 liq +ti +14393 ta +hi +zu +nak +la +a +zu +gal +lu +ti +d +nin +urta +u +d +gu +la +ma +la +ba +aš +mu +ina +ṭup +pa +a +ni +aš +ṭur +as +niq +14426 ma +a +na +ta +mar +ti +ši +ta +si +ia +qe +reb +14440 ia +u +kin +14448 u +tan +ne +eh +šu +14455 u +14457 lim +u +14465 u +14468 u +ur +ne +e +šim +14477 u +14487 šu +u +ṣar +rap +šu +na +piš +14495 šu +14504 šu +i +ha +maṭ +su +i +dak +ka +su +14514 su +14525 ina +14528 pa +tan +14532 šu +14534 šim +14536 šim +14540 šim +14543 giš +bi +ni +14547 u +14557 šu +u +ha +maṭ +su +14564 šu +14568 ana +14572 šim +14574 šim +14591 ina +14594 aš +14603 ma +14606 šu +i +kaṣ +ṣa +su +14612 šu +14620 u +ak +tam +u +14625 lim +u +tar +muš +14638 šu +14640 bat +14644 it +ta +na +ša +aš +a +šu +uš +tu +14655 su +14673 giš +14678 ina +14685 šim +14687 šim +14689 ina +14692 ina +14695 šal +ana +14698 šu +14707 ina +14720 giš +14722 ha +ah +14729 gu +ur +14740 ta +sak +ina +14744 ta +la +aš +ina +14749 te +ṭer +ri +14756 u +ak +tam +14760 ina +14766 it +ta +na +ša +aš +a +šu +uš +tu +14777 su +di +ik +ša +14783 su +14785 šu +ma +a +da +14795 u +14797 lim +u +šiz +ba +na +šim +14807 ina +14816 ma +14818 šu +in +nin +me +er +nap +hu +14826 ma +gal +14833 u +14835 lim +u +14839 u +tar +muš +šim +14845 u +ti +ia +ta +u +14853 ina +14856 pa +tan +14868 šim +14870 šim +14877 giš +14884 gu +ur +giš +14897 ina +14900 aš +ina +14904 ri +14906 su +ma +14909 u +ak +tam +14913 ina +14921 šu +i +ar +ru +14929 ina +14932 u +14934 lim +14936 ina +14947 ina +14950 u +ti +ia +ta +14955 ina +14964 ma +14966 šu +in +nim +me +ru +nap +hu +14974 ma +gal +14985 la +uk +tap +pi +tu +14992 ta +sak +ina +14997 u +15001 ina +15004 u +15010 ina +15019 ma +15022 šu +in +nim +me +ru +15029 šu +15032 at +15041 la +uk +tap +pi +tu +15048 ta +sak +ina +15059 ma +15061 šu +in +nim +me +ru +in +ne +bi +ṭu +ri +du +ut +ir +ri +15081 ina +15091 šu +i +15097 mur +ti +15106 u +ak +tam +ina +hi +iq +15115 nu +hi +iq +15124 a +šu +uš +tu +15130 su +15132 ru +pu +uš +tu +15139 ši +15144 u +ap +ru +ša +15151 niš +15161 ma +gal +15179 ši +15181 u +15185 u +15191 u +15196 u +15202 u +15205 kiš +ša +ni +15210 mal +ma +liš +15215 ina +15219 tara +bak +15229 a +na +15232 ta +šap +pah +ina +15240 su +tu +gal +lab +15245 ma +ina +eš +15251 sar +u +15255 šim +15258 šim +15264 ša +15271 mal +ma +liš +15280 ana +15288 an +nu +ti +15293 tara +bak +15298 giš +15300 giš +15303 šim +15308 šim +15311 šim +15313 giš +15316 šim +15320 šim +15323 šim +15325 šim +15328 šim +15334 ina +15338 tara +bak +15348 ana +15350 ta +šap +pah +ina +15356 ri +15359 su +tu +gal +lab +15364 ma +15369 giš +15371 u +ak +tam +15382 sar +15384 giš +15386 u +15391 niš +15408 a +na +15411 ta +šap +pah +15420 su +15422 ab +15424 ma +15428 u +15431 u +15438 u +ka +man +ti +15450 šim +15455 ina +15457 tara +bak +15460 ma +15464 šim +15467 šim +15473 u +ka +man +ti +15481 šim +15486 niš +15492 ina +15494 tara +bak +15497 ma +15501 šim +15504 šim +15511 niš +15518 ina +15520 ta +la +aš +15528 su +15530 ab +15532 ma +15536 šim +15539 šim +15541 šim +d +15546 u +15553 šim +15556 niš +15559 ina +15561 tara +bak +15565 su +15567 ab +15569 ma +15574 giš +15576 ša +ina +15580 i +nam +zu +zu +15585 qi +ina +15593 ina +15596 sar +15598 aš +15602 u +ap +ru +ša +15607 ina +15612 giš +a +bu +ka +tu +ana +15620 di +15635 šu +u +15638 šu +ana +15644 šu +15648 u +15651 ni +kip +ta +ina +15656 tu +qat +tar +šu +šim +15663 ni +kip +ta +šim +15669 u +15681 ina +15683 tu +ša +ha +an +15688 id +15702 d +15705 niš +15707 sig +15718 šu +15720 as +15723 ni +kip +ta +15729 šu +15740 šu +15801 ina +a +ṣi +ka +ina +15807 ka +15809 zu +15819 ina +sig +15825 as +15842 su +15857 ina +15860 aš +15887 ina +15890 šu +15935 ina +15938 šu +15968 sah +le +e +15972 ti +15993 giš +šu +nim +16000 ina +16019 giš +16023 u +su +ba +lam +16038 ina +16041 sar +16051 ši +u +šim +ma +ta +16058 giš +16066 sah +le +e +u +16072 ina +16074 lu +16077 tara +bak +16084 u +16088 giš +d +16095 u +16098 u +16103 gu +ur +16106 gu +ur +16118 giš +16121 giš +16127 u +paṭ +giš +16131 ša +ina +16137 zu +16141 ina +16145 u +16147 d +16152 ina +na +16159 ina +16161 lu +16164 tara +bak +16173 ma +16176 šu +16179 šu +i +šam +ma +ma +šu +16186 giš +16190 šim +16194 u +16203 u +16206 giš +16211 niš +16214 ina +šur +šum +mi +16219 tara +bak +16222 ma +16228 šim +16230 u +16234 u +ak +tam +u +16244 niš +16247 ina +šur +šum +mi +16253 tara +bak +16256 ma +16258 uṭ +16263 šu +16266 šu +ina +si +pa +ri +16272 šu +16274 šu +16276 šu +ta +tak +kip +16283 ak +ni +kip +ta +ina +16290 su +16292 tug +16297 na +mu +ṣa +16301 giš +16304 bi +ni +ina +16308 šu +16310 an +16313 na +16318 na +16320 ina +16323 su +ana +16328 nu +uh +hi +16337 šim +16340 šim +16342 šim +16345 sar +ta +pa +aṣ +16353 ina +16357 tara +bak +16360 ana +16364 nu +uh +hi +16371 šim +16374 šim +16377 niš +16384 ina +16387 niš +16389 šal +ina +16393 ri +16395 su +ma +16403 šu +16405 šim +16407 šim +16418 niš +ina +16421 tara +bak +16424 ma +16426 uṭ +16428 sar +tur +ar +16433 it +ti +šu +16438 ina +16440 u +16443 tara +bak +16446 ma +16448 uṭ +16454 šu +16456 su +ma +16460 šu +16471 šim +16477 sar +16492 ina +16494 ta +la +aš +16499 šu +16501 a +na +nu +uh +hi +ša +16518 mal +ma +liš +16523 ina +16526 tara +bak +16534 šu +16536 su +ma +16539 šu +u +i +ar +ru +16545 ina +16549 i +ar +ru +16561 u +16563 la +i +mah +har +16570 šu +iš +kun +šu +16576 la +bi +ri +te +qeb +bir +šu +16584 ina +16591 id +16593 munus +16599 sig +16604 mi +16616 pa +ri +iš +tu +16626 šu +nu +ta +pat +til +16638 na +16641 na +16645 ina +16649 šu +16661 ni +kip +ta +16665 ina +16671 su +16677 šu +16679 su +ma +16683 šu +16685 u +kal +sah +le +e +16699 niš +16702 ina +16705 sar +tara +bak +16710 šu +16712 ma +16714 uṭ +16720 šu +16722 su +ma +16726 šu +16728 u +kal +sah +le +e +u +16738 ina +16743 tara +bak +16747 šu +16749 ma +16751 uṭ +16757 šu +ṣab +ta +šu +ma +16764 šu +16766 u +kal +la +sah +le +e +u +16776 sar +16786 niš +ina +dug +16790 ina +16793 sar +tara +bak +16799 šu +16801 ma +16803 uṭ +16809 šu +16811 su +ma +16815 šu +16817 u +kal +sah +le +e +u +16827 giš +16839 niš +16842 ina +16846 tara +bak +16857 šu +16859 su +ma +16863 šu +16865 u +kal +u +16873 u +16877 šim +16880 niš +16883 ina +16889 tara +bak +16898 ṣab +ta +šu +ma +16939 giš +16942 giš +16948 giš +ar +gan +nu +giš +ba +ri +ra +ta +16968 niš +16971 ina +16974 tara +bak +16980 ana +16982 ta +šap +pah +16987 su +16989 ab +16991 ma +u +16994 lim +u +16998 ina +17004 ah +na +17008 ina +17010 šu +17012 su +u +ar +zal +la +17018 gul +gul +17026 ni +kip +ta +17030 giš +17033 u +17036 giš +bi +ni +u +17044 niš +te +pe +eṣ +ina +17051 giš +17055 ma +17057 su +bal +ṭu +su +nu +ina +17064 giš +17066 tu +qat +tar +šu +17076 šu +17078 aš +17084 šu +17086 šu +ma +17090 šu +nap +hat +u +17096 qi +17100 ša +ni +d +iš +tar +ana +17107 šu +giš +si +hu +giš +ar +ga +nu +giš +ba +ri +ra +ta +17123 d +17125 u +17131 ina +17136 ina +17138 tara +bak +17144 šur +šum +mi +ši +iq +qi +šur +šum +me +17158 šur +šum +mi +17167 ki +17172 šim +17174 ina +17178 te +qi +17187 šu +17189 šu +ma +17193 šu +nap +hat +u +17199 qi +17204 ki +17206 a +ši +i +17210 giš +17212 ina +17214 šim +17217 ina +17219 tuš +bat +ina +še +ri +17225 pa +tan +17232 pu +rat +ta +17245 sar +17248 ina +17251 sar +tara +bak +17256 šu +17258 šu +17265 su +ma +i +mim +i +kaṣ +ṣa +17274 šu +nu +up +pu +ha +17289 tur +ar +17292 ina +17294 giš +17298 su +ma +17306 su +ma +17309 d +17313 d +17318 šu +17322 a +ši +pu +ki +ša +i +du +u +li +te +ep +pu +uš +17337 ma +hir +te +17347 niš +17349 su +u +17357 ina +17360 sar +tara +bak +17367 ana +17369 ta +ša +pah +17373 ab +17375 su +17383 ah +sig +17391 mi +ina +17395 šu +u +17398 šu +17413 šu +17416 šu +na +mu +ṣa +na +17423 na +17427 na +17436 u +17443 niš +17445 ina +17447 giš +17451 ma +17455 šu +17458 šu +u +17461 su +17464 ma +ina +eš +17469 ina +17478 ana +17480 šu +17483 giš +17487 giš +17492 šim +17496 šim +17501 giš +dup +ra +nu +17511 šim +17515 šim +17520 šim +17524 šim +17535 sar +17538 šim +17559 sah +le +e +17564 qi +lip +17578 niš +17581 lu +ina +17588 tara +bak +ina +17597 ana +17599 ta +šap +pah +17606 ab +17610 šu +17612 ma +ina +eš +17617 šim +17619 šim +d +17623 šim +17625 qi +lip +17635 niš +17637 ina +17640 ri +17642 id +ma +ina +eš +17653 šim +17657 ina +šur +šum +me +17663 aš +17675 u +17678 u +17683 u +17688 u +17693 u +ap +ru +šu +17698 u +17702 u +17705 ša +ana +17712 mušen +ša +giš +17719 mušen +ša +giš +bi +ni +17726 u +si +in +bu +ra +ti +šim +17735 sah +le +e +17739 u +qu +ud +ri +17744 sar +giš +17747 ta +pa +aṣ +17751 niš +17758 ina +urudu +17762 ta +qal +lu +17767 ša +šu +nu +ma +la +a +qa +lu +u +17778 niš +17781 ina +šur +šum +mi +17786 ta +la +aš +tu +gal +lab +17795 aš +17797 šu +17799 su +ma +ina +17808 šu +ta +ma +haṣ +ma +17814 uṭ +17818 u +17821 u +17826 ina +17828 ta +la +aš +17836 mušen +17838 ina +17840 ta +la +aš +17854 šu +i +bar +ru +ra +17861 šu +i +šam +ma +mu +šu +17869 šu +17872 šu +17877 šu +u +17881 šu +u +šam +ma +ma +šu +u +zaq +qa +ta +šu +bir +ka +šu +an +ha +tab +ka +e +ta +ta +na +ah +17910 su +i +dan +nin +šu +ana +17917 šu +17921 hi +qa +ša +17925 urudu +17929 giš +bi +nu +u +17935 giš +17939 u +17943 giš +17947 ana +17951 šal +17957 ib +17959 šu +ma +17969 te +se +er +šu +17974 u +17976 lim +u +17981 ina +17983 giš +17988 su +ma +17999 u +18001 lim +u +18005 u +tar +muš +u +an +ki +nu +te +giš +18017 u +18024 ti +18026 niš +ta +pa +aṣ +ina +urudu +18035 tu +šab +šal +ta +ša +hal +18048 hal +ṣa +ana +18053 ana +18055 šu +18057 ma +18061 u +18063 lim +u +18068 giš +18071 u +tu +lal +18077 ina +18080 ba +lu +pa +tan +18085 ma +18087 uṭ +18096 šu +nu +ina +18101 u +18104 tu +la +bak +18108 šal +ta +ša +hal +18119 hal +ṣa +ana +18124 di +18128 ta +hi +ṭa +šu +ma +18134 uṭ +18137 u +18140 u +18152 pa +tan +18156 ma +18158 uṭ +18161 u +18163 lim +u +18168 u +18177 ina +18180 šal +ta +ša +hal +18204 u +18206 lim +18208 giš +18217 ina +18222 giš +18224 a +pi +18236 na +18243 ni +kip +ta +18252 na +mu +ṣa +na +18260 an +nu +ti +18267 d +18272 šu +18280 su +ma +18284 šu +18287 niš +18289 ina +18296 šu +lu +ša +18300 lu +ša +18304 u +18307 šu +a +pa +a +na +mu +ṣa +18320 šu +18324 sah +le +e +18342 su +ma +pa +nu +šu +iṣ +ṣa +nun +du +18364 u +18366 lim +18376 ma +18395 su +18417 ina +18419 giš +18425 ma +18437 šu +18440 šu +18444 giš +si +hu +giš +ar +ga +nu +u +ba +ri +ra +ta +18461 ina +18464 sar +tara +bak +18468 su +18477 d +18487 šu +ur +rak +18502 si +18506 ša +ne +e +d +iš +tar +18519 ma +ma +gal +18525 la +i +na +aš +ši +18537 ma +ma +gal +18542 si +18546 šu +ma +gal +te +bu +u +18558 an +nu +tu +18575 šum +ma +18584 ina +18587 il +ta +za +az +ma +18600 šu +18602 u +kal +18606 m +18617 ki +ša +d +18621 u +d +taš +me +tu +18628 ra +pa +aš +tu +iš +ru +ku +šu +e +hu +uz +zu +18642 na +mir +tu +ni +siq +ṭup +šar +ru +ti +ša +ina +18655 ni +a +lik +mah +ri +ia +mam +ma +šip +ru +šu +a +tu +la +i +hu +uz +zu +bul +ṭi +18676 muh +hi +18680 liq +ti +18684 ta +hi +zu +nak +la +a +zu +gal +lu +ut +d +nin +urta +u +d +gu +la +ma +la +ba +aš +mu +ina +ṭup +pa +a +ni +aš +ṭur +as +niq +18717 ma +a +na +ta +mar +ti +ši +ta +si +ia +qe +reb +18731 ia +u +kin +18740 šu +18742 su +18744 šim +18748 šim +18750 u +tara +muš +giš +si +ha +18757 ina +18763 šu +nu +18766 ta +lal +18775 šim +18777 ana +18780 šu +18782 di +18784 ana +18786 giš +18788 giš +18802 ina +18807 d +18809 ku +up +ri +d +18815 tu +qat +tar +šu +hi +ib +ṣa +ša +18827 ina +18829 it +18835 šu +i +šag +gu +ma +18841 šim +d +18844 zap +pi +18853 u +18862 šu +ina +18866 šu +i +ret +ti +ma +18872 a +šar +18875 ba +ši +i +d +e +a +ib +ni +18885 šu +18887 sa +par +ti +18897 su +ma +18901 šu +i +šag +gu +ma +šim +18911 šim +18915 sar +zap +pi +18925 qu +taru +ša +18930 lat +ku +18936 ina +18948 su +ma +18952 šu +i +šag +gu +ma +šim +18959 na +18963 na +18969 ina +sig +18973 mi +ina +18976 giš +18980 piš +irtu +ib +ni +18985 nu +18988 piš +irtu +ib +ni +d +e +a +19003 li +iz +zur +šu +19008 li +is +kip +šu +19013 liš +pi +šu +19017 li +pa +sis +su +19025 an +ni +tu +19029 šu +ana +19032 lip +pi +19035 nu +ana +19040 šu +19042 an +ana +19045 šim +19048 u +19051 u +19054 u +ak +tam +u +19059 lim +u +19063 u +tara +muš +19070 ina +19072 giš +19076 ina +sig +19080 mi +19084 šu +19086 ma +ina +eš +19090 ana +19094 ina +19098 ana +19102 šu +19104 an +ana +19107 šim +19109 na +19113 na +19116 na +19120 niš +19122 ina +19124 giš +19128 ana +19132 šu +19136 šu +19140 ina +19142 it +19148 šu +i +šag +gu +ma +19154 u +ra +a +nu +19159 giš +19162 ni +kip +tu +19166 u +19168 zap +pi +19173 tug +19178 ina +19182 šu +tu +qat +tar +19188 ina +19190 it +19196 šu +i +šag +gu +ma +19202 giš +19205 ni +kip +tu +tug +19213 ina +19218 šu +19220 šim +19223 šim +19225 šim +19227 giš +19232 šim +19235 sar +im +19243 qu +19245 ša +19248 ina +19253 šu +19255 na +mu +ṣu +19269 tam +ti +19277 u +19280 ina +19285 šu +tu +qat +tar +kib +ri +tu +u +19295 giš +19298 a +za +pi +19304 tug +19309 ina +19311 giš +19316 šu +tu +qat +tar +19323 na +ga +bi +i +u +19330 sah +le +e +19334 tam +ti +kib +ri +tu +19346 ina +19348 giš +19353 šu +19359 šu +i +šag +gu +ma +19365 giš +19367 a +ra +an +di +šim +19374 ina +sig +19378 mi +ana +19384 di +ina +19388 šal +ana +19393 šu +19395 ma +19401 šu +i +šag +gu +ma +19407 giš +19411 giš +19417 ma +ana +19422 šu +19424 ma +19426 en +in +da +ra +ah +ta +ra +ah +ti +šu +maš +in +da +ra +ah +ta +ra +ah +ti +tir +ki +bi +in +da +ra +ah +ta +ra +ah +ti +tir +ki +ba +su +tu +19463 en +šu +bi +in +du +gir +bi +in +du +bur +še +bur +na +bur +na +an +na +su +ri +ih +su +ri +ih +e +ne +su +ri +ih +gaba +ni +ik +ra +ah +su +ri +ih +ta +ah +ta +ah +19513 šu +i +šag +gu +ma +19521 šim +19523 na +19527 na +19534 ina +19536 giš +19542 šu +ana +19546 nu +sig +19550 mi +ana +19555 šu +19557 an +19559 si +in +du +ib +ni +d +e +a +19573 ib +ni +du +up +ni +gu +us +sa +19591 šu +i +šag +gu +ma +19599 šim +19601 na +19605 na +19609 ni +kip +tu +ina +19616 ina +19618 tuš +bat +19622 šu +ana +19626 nu +sig +19630 ana +19634 šu +19636 an +en +ša +ra +zu +ša +ra +šag +ga +he +a +ur +sag +d +nin +urta +ša +ra +šag +ga +he +a +en +d +nin +urta +ša +ra +šag +ga +he +a +d +nin +urta +nam +ba +te +ga +e +de +tu +en +19687 šu +i +šag +gu +ma +19695 na +19701 šim +19703 u +ur +nu +u +19710 ina +19712 giš +19718 šu +ana +19722 nu +ina +sig +19727 mi +ana +19732 šu +19734 an +19736 na +pi +ir +še +ri +iš +pa +ta +ar +ri +zu +ga +li +ir +ri +pa +ta +hal +li +pa +tar +ri +su +ma +aš +pa +at +ri +pa +ku +un +di +ra +ta +aš +ik +ki +ri +ri +ša +ra +aš +tu +en +19788 šu +i +šag +gu +ma +19794 šu +ana +19799 šu +19801 šu +ana +19806 šu +19817 en +nig +e +nig +e +nig +nam +ma +us +su +ki +a +dim +ma +bi +a +ri +a +an +na +ke +sa +alan +bi +nig +an +gin +šu +nu +te +ga +hur +sag +gin +gul +gul +sa +alan +bi +zi +ir +zi +ir +e +de +nig +udug +har +ra +an +nig +udug +kaskal +am +nig +ni +zu +mu +un +ši +in +gin +na +nig +ni +zu +mu +un +ši +in +gin +na +d +nin +urta +lugal +giš +tukul +ke +gaba +zu +he +en +ga +ga +hul +dub +zi +an +na +he +pa +zi +ki +a +he +pa +19922 šu +i +šag +gu +ma +19928 šu +ana +19933 šu +19935 šu +ana +19940 šu +19942 en +hu +hu +un +ti +ib +ni +a +ti +ib +ni +ir +ra +ša +na +an +ak +ka +li +ir +ri +su +gar +ri +ša +at +ri +ku +uk +ti +hu +ma +at +ri +su +ma +aš +tu +en +19989 šu +i +šag +gu +ma +19995 šu +ana +20000 šu +li +ih +šu +en +a +me +am +ma +an +ku +um +ma +am +su +um +ma +at +ri +ki +ri +ri +ku +uk +ti +ra +ša +na +ku +uk +ti +hu +un +di +hu +ma +an +tu +en +20046 šu +i +šag +gu +ma +20052 šu +ana +20057 šu +li +ih +šu +20062 u +kur +ka +na +a +20074 šu +20077 šu +neš +ma +a +he +e +si +20086 giš +dup +ra +an +sig +20094 tum +20096 šu +20098 šu +ana +20103 šu +20105 an +20109 ma +20111 su +ana +20116 šu +ip +pu +uš +ma +neš +ma +a +20128 giš +20135 šim +20138 šim +20144 sig +20147 ana +20151 šu +20153 an +20157 an +nam +20160 uš +ina +20166 ša +20170 šu +20172 ma +ta +kap +par +20179 it +tag +ma +ru +20189 ina +20193 ana +20197 šu +20199 ah +20203 ana +20207 šu +i +pu +uš +ma +neš +mu +šu +20216 u +lu +20219 u +kal +20223 giš +dup +ra +na +20232 ana +20235 šu +20237 di +sig +20242 šu +20244 šu +20246 šu +ana +20251 šu +20253 an +neš +mu +šu +20258 te +sah +le +e +ša +mim +ma +ana +20269 ina +20277 ina +si +li +ʾ +ti +šu +20284 ana +20288 šu +ip +pu +uš +ma +20295 šu +20300 mušen +ana +20305 šu +20307 ma +neš +mu +šu +i +qal +lil +20315 giš +20319 tu +pa +aṣ +ana +20326 šu +20328 ma +ina +eš +20335 šu +20337 ša +20343 u +20346 šu +20349 šim +20358 šim +20360 a +he +e +tu +raq +qa +20367 niš +20370 ana +20374 šu +20377 mun +eme +sal +li +sig +20384 ana +20388 šu +20403 sar +20405 giš +ere +ni +ina +20410 tara +bak +20414 uṭ +20419 šu +20421 ma +20425 šu +bi +ʾ +iš +20431 su +20434 su +20438 u +ra +20442 šu +ma +la +20446 lal +šim +20449 šim +20452 šim +20454 šim +20457 sar +20465 niš +20468 ina +20470 giš +u +20476 šu +20478 ar +20487 an +nam +20490 uš +ma +ina +20499 šu +ta +kap +par +ma +20506 it +tag +ma +ru +20516 ina +gi +20520 ana +20524 šu +20526 ah +20529 ina +20532 šu +20536 ak +20540 u +20542 giš +20545 niš +20548 ana +20552 šu +20556 ana +20560 šu +20564 giš +20568 ana +20572 šu +20576 giš +20580 ina +20582 giš +20586 ana +20590 šu +20593 kam +ka +ma +ša +kim +ṣi +20603 ša +20607 ina +20609 giš +20613 sig +20616 mi +ana +20621 šu +20623 an +20625 šim +20627 šim +20633 ana +20637 šu +20642 an +ni +šu +ina +20649 mušen +20652 ana +20655 šu +20660 ina +20665 ana +20668 šu +20673 tu +daq +qaq +ina +20680 ana +20684 šu +20686 ah +20688 sar +ki +ma +20694 ta +qal +lu +ina +20701 ana +20705 šu +20707 ah +20711 giš +20714 tur +ar +20717 ana +20721 šu +20723 ah +tu +ru +ʾ +a +20729 as +si +lu +bu +20736 tu +pa +ṣa +20740 šu +ana +20745 šu +20748 kam +ka +ma +ša +kin +ṣi +20757 ša +kal +lap +bi +20762 niš +20765 ana +20769 šu +20771 an +ma +20778 u +20780 sig +20783 ana +20787 šu +20789 an +20793 tu +ha +sa +ana +20800 šu +tu +na +tak +20808 šu +20811 i +ṣar +ru +ur +20816 giš +20820 ana +20824 šu +20830 ina +20837 šu +20839 ah +20841 giš +20844 šim +20847 sar +20849 ina +20854 sig +20857 mi +ana +20862 šu +20867 šim +20875 niš +20878 ana +20882 šu +20884 an +20887 ina +20892 sig +20895 mi +ana +20900 šu +20902 an +20904 giš +20911 ana +20915 šu +20917 ah +20920 giš +20922 šim +20928 tur +ar +20931 ana +20935 šu +20938 giš +20941 sig +20944 ana +20948 šu +20956 ana +20960 šu +20962 an +20964 ša +lu +20969 ta +bi +lam +ana +20976 šu +20978 an +20985 ana +20989 šu +20991 ah +20993 giš +bi +ni +20997 giš +21000 ina +21009 mušen +21022 šu +21024 an +21026 giš +21032 an +21042 kam +21044 u +21054 šim +21059 giš +21066 ar +ina +21069 giš +21071 ta +sa +raq +ma +21080 ana +21084 šu +ta +sa +raq +ma +21090 ana +21093 sar +21098 ta +qal +lu +21102 ina +21106 šu +ta +sa +raq +ma +21116 ina +21120 šu +21122 ak +21124 giš +21133 giš +21139 šim +21141 šim +21148 ana +21152 šu +21161 niš +21164 ana +21168 šu +21174 ina +21177 šu +lu +21181 lu +21183 lu +21187 ak +21191 šu +ta +kap +par +21196 ina +21204 šu +21206 si +21208 ma +21214 ana +21218 šu +21225 ina +21229 ana +21233 šu +21235 sig +21246 ana +21249 u +21253 sig +21256 mi +ana +21261 šu +21263 an +ana +21267 šim +21271 sig +21274 mi +ana +21279 šu +21281 an +ana +21285 sar +qa +lu +te +21290 sig +21293 mi +ana +21298 šu +21300 an +21305 šu +ina +21313 aš +rat +d +21318 d +21321 ma +21324 u +21329 mun +eme +sal +li +ina +21340 šim +21342 u +21347 el +lam +21351 šu +21353 di +21360 šum +ma +21367 šu +ina +21374 aš +rat +d +nin +urta +21380 ma +21383 u +21388 mun +eme +sal +li +21397 šim +21400 sig +21403 mi +ana +21408 šu +21410 an +21413 el +lam +ana +21418 šu +21420 di +21422 šim +21432 šum +ma +21439 šu +21442 aš +rat +d +21447 ma +21450 u +21455 ina +21458 šim +21461 sig +21464 mi +ana +21469 šu +21471 an +21474 el +lam +ana +21479 šu +21481 di +sah +le +e +ina +21497 šu +ma +21504 aš +rat +d +21509 ma +21515 mar +21518 sig +21521 mi +ana +21526 šu +21530 el +lam +ana +21535 šu +21537 di +21544 šum +ma +21547 uṭ +21562 mar +ana +21565 šu +21571 ana +21574 šu +21576 di +21583 šum +ma +21586 uṭ +21591 šu +21593 ana +qer +bi +nu +ip +hur +ma +21609 šu +šum +21616 šim +21618 sig +21621 mi +ana +21626 šu +21628 an +21631 ana +21634 šu +21636 di +bu +uh +ra +21652 šum +ma +21659 šu +21661 ana +qer +bi +nu +ip +hur +ma +21677 šu +21680 aš +rat +d +21685 ma +21688 mar +ana +21691 šu +21693 ta +ṣap +pir +21704 ana +21708 šu +21710 an +21712 ana +21715 šu +21717 an +nu +u +21723 u +21726 ina +21735 šum +ma +21738 uṭ +21743 šu +21745 ana +qer +bi +nu +ip +hur +ma +21755 ni +21758 aš +rat +d +21764 ma +21767 mar +21772 ša +šu +hal +qam +21777 mar +ana +21780 šu +21783 giš +21789 giš +21794 šim +21803 šim +21805 sig +21810 ana +21813 šu +21817 šim +21819 ana +21822 šu +21824 bu +uh +ra +21837 šum +ma +21843 šu +21846 si +21848 ha +sat +lu +21854 ni +aš +rat +d +nin +urta +21861 ma +21864 giš +21871 su +21879 ana +21883 šu +21887 mar +ana +21892 sig +21900 ana +21904 šu +21906 an +21911 ana +21915 šu +21917 bah +ra +21920 u +21925 an +nam +21928 uš +ma +21932 mar +ana +21935 šim +21938 sig +21941 ana +21945 šu +21947 an +21950 šim +21952 ana +21956 šu +21958 sah +le +e +21968 u +mi +an +nam +21974 ma +21977 mar +ana +21981 giš +21990 ana +21994 šu +21996 an +21999 ana +22003 šu +22006 ma +22009 ana +22012 giš +22024 ana +22028 šu +22030 an +22032 ana +22036 šu +22039 u +22043 u +22048 an +nam +22051 uš +ma +22055 mar +22060 šu +22065 sar +tu +pa +ṣa +ana +22072 šu +22074 an +22076 giš +22079 su +22081 ina +22086 ana +22089 šu +22091 an +giš +22094 šim +22099 sar +22101 ina +22106 sig +22109 ana +22112 šu +22114 an +22119 sig +22122 ana +22125 šu +22127 an +šim +22133 giš +22137 munus +22143 ta +sak +sig +22148 mi +ana +22152 šu +22154 an +22157 dup +ra +na +sig +22163 ana +22166 šu +22168 an +22170 d +22177 giš +22180 giš +22185 ana +22188 šu +22190 an +22192 giš +22199 tu +daq +qaq +22203 ana +22206 šu +22208 an +22215 su +22217 is +22221 ana +22224 šu +tu +na +tak +22232 šu +22234 šim +22236 šim +22242 ina +22249 šu +22253 ina +22267 si +ik +ti +giš +šu +šum +22278 ha +si +sa +šu +22283 at +22288 šu +aš +gir +22295 bu +ṭu +tu +22302 ana +22305 šu +22309 ina +22311 ka +ana +22315 šu +22317 sar +tum +22322 ak +kam +ma +ša +22332 ana +22335 šu +22337 ah +22342 šu +22347 giš +22354 šim +22356 ina +sig +22360 ana +22363 šu +22366 u +me +an +na +a +22373 uš +ina +22380 me +22384 šu +ta +kap +par +22394 ina +gi +22398 ana +22402 šu +22404 ah +giš +šu +ru +uš +giš +22418 šu +22422 su +22425 šu +22428 neš +mu +šu +22432 te +šim +22442 munus +22448 tur +ar +22452 ana +22456 šu +22461 giš +22464 ki +ma +an +nam +i +te +ep +šu +22480 ina +22483 ma +tug +22489 tug +22491 šu +22500 ma +22503 ana +22507 šu +22509 di +22511 ana +22515 šu +22517 di +22519 ana +22523 šu +22525 di +22529 ana +22533 šu +tu +na +tak +22539 ana +22543 šu +22545 an +22547 ana +22551 šu +tu +na +tak +22556 ana +22560 šu +22569 šu +22575 ša +22582 ša +22584 šu +sig +22588 mi +22593 giš +22598 u +22605 šim +22611 u +pu +un +tu +ina +22618 šu +22628 giš +22632 šim +22639 u +22643 u +hi +nu +22669 šu +22671 šu +ru +uš +giš +22679 ik +kaṣ +ṣi +22683 ana +22685 tu +maš +šad +ša +ʾ +22691 ana +22698 raq +22703 šu +22706 ana +22713 su +22715 ana +22722 su +22724 ana +22726 šim +22737 an +22740 an +22743 an +22746 ina +eš +22750 raq +22755 ina +ah +22758 ina +ah +22774 an +22777 raq +22780 an +22783 raq +22793 šu +22800 ana +22803 tur +ar +22806 ana +22810 ana +22814 ina +22817 ana +22820 ana +22823 ina +22825 šu +22831 ana +22833 sum +22836 i +di +ka +22840 iš +tu +na +ah +22845 ba +lit +ta +22851 sig +22853 šu +22856 ana +22862 ša +22866 šu +22868 na +22873 ina +22875 šu +22878 ana +22880 tam +šil +22883 si +22887 di +im +a +šar +na +22895 pu +ṣa +bur +ru +mat +ba +lit +ti +ana +22906 šu +22908 an +22912 ša +ana +22916 šu +22920 ta +tab +bal +ma +tam +ši +i +22931 šu +22933 ana +22935 šu +ru +uš +giš +22943 na +ad +da +22948 ša +ana +22952 šu +22955 ana +22957 hu +um +bi +bi +tu +tu +pa +ṣa +sig +22968 ina +22971 ana +22974 šu +ša +22977 šu +22980 ana +22982 u +22985 ta +sak +ana +22990 šu +22992 an +ana +22995 u +22998 ta +sak +ana +23003 šu +23006 d +a +nu +ma +d +a +nu +d +a +nu +pu +hur +23019 e +d +a +nu +pu +hur +23026 ti +23028 tu +ib +ta +ni +tul +ta +23035 tu +ib +ta +ni +bu +ʾ +ša +nu +ša +bu +ʾ +ša +ni +23049 an +23051 su +23055 nap +ša +ta +i +ṣa +bat +ki +ma +23066 i +ṣa +bat +lu +ʾ +a +iṣ +bat +ap +pu +nu +ru +ub +ap +pi +23083 ina +bi +rit +23088 na +da +at +giš +23094 šu +sak +la +im +ti +ši +a +lak +ta +šu +up +pu +tu +im +ti +ši +re +bit +23113 šu +me +tu +la +i +sa +ha +ra +iš +tu +23124 ti +d +ku +bu +la +e +ni +qu +23133 ša +23135 šu +bu +ša +a +nu +a +a +23143 ma +a +na +ṣib +ti +šu +23154 ki +ma +mu +23160 ul +23163 d +23165 i +na +ma +har +d +23177 an +ni +ta +23181 šu +23183 nu +23185 e +ma +23188 u +23192 šu +23194 ma +ana +23197 gul +gul +li +23201 gul +gul +lu +23207 tab +li +23210 šu +23213 ma +23216 ši +it +ta +ak +ru +ma +giš +23225 giš +23231 iš +tu +a +a +nu +23245 it +ta +bak +23253 it +ta +bak +mur +ṣa +man +na +lu +uš +pur +ana +23265 ša +23268 d +23271 li +lap +pi +tu +tul +ta +tul +tu +ki +ma +šik +ke +e +lit +ta +ṣi +ṣer +ra +niš +23295 la +aš +ha +ša +23303 ana +23308 šu +aš +na +an +tu +rat +ta +23317 šu +23319 ti +23324 ti +ret +ti +23330 šu +23332 ana +23334 la +aš +hi +23338 ah +23341 šu +23343 nu +ana +23346 ša +d +23352 an +ina +23358 hi +ina +na +23362 na +23364 u +na +23370 šu +ta +bar +ram +23383 u +ša +d +23387 at +ta +ma +23393 tu +ri +dam +ma +ina +23400 e +23402 mul +23407 az +ma +23411 ka +li +ik +kal +an +ni +li +is +ku +ta +at +ta +ma +23425 ina +23428 ma +uzu +23432 uzu +23442 la +aš +ha +23446 uš +ana +23452 šu +23456 tu +rat +ta +23461 šu +23463 ti +aš +na +an +23468 te +ret +ti +23472 u +23477 šu +23479 ana +23481 la +aš +hi +23485 ah +23488 šu +23490 ana +23492 d +23497 an +23504 ru +23506 tak +ku +23509 mi +na +23520 a +na +23524 šu +23526 lup +pu +ut +23530 šu +23532 pa +šu +an +na +23538 na +ah +pi +i +23547 kuš +23551 ka +inim +ma +23570 ka +inim +ma +23574 ša +na +23583 giš +23586 ha +23589 i +23591 iš +hu +kal +23595 i +23597 iš +la +aš +la +23602 ka +inim +ma +23612 šu +ana +23615 šu +23617 nu +23620 d +23622 aš +šum +23626 ša +ik +kal +an +ni +23632 ša +ki +is +pa +at +la +ak +si +pu +šu +u +me +e +la +aq +qu +šu +23651 sa +hu +23654 ka +a +ša +am +hur +ka +ak +ta +la +šu +u +ak +ta +ab +ba +23672 a +ša +šu +23676 šu +la +23679 šu +a +a +ši +23684 la +ik +kal +an +ni +23691 ka +inim +ma +23699 ina +še +rim +23703 šu +23705 nu +23709 d +23711 nim +ib +nu +u +23716 e +23718 eri +du +ib +nu +u +gi +23726 ki +ma +mul +ni +bu +u +23734 ni +zi +iq +23738 ka +inim +ma +23746 ku +pa +tin +ni +tu +kap +pat +e +ma +ku +pa +tin +ni +23761 nu +23763 ana +23767 ma +23770 ina +eš +23773 d +23775 nu +23778 iš +tu +d +a +nim +ib +nu +23786 ul +tu +d +a +nu +ib +nu +u +an +e +an +u +ib +nu +u +23802 tu +er +ṣe +tu +ib +nu +u +23811 ib +na +a +a +tap +pa +ti +23819 a +tap +pa +ti +ib +na +a +ru +šum +ta +ru +šum +ta +ib +na +a +tul +ta +il +lik +tul +ta +ana +23843 d +23845 i +bak +ki +ana +23850 d +23852 a +il +la +ka +di +ma +ša +mi +na +ta +da +na +ana +a +ka +li +ya +mi +na +a +ta +da +na +ana +mun +zu +qi +ya +at +tan +na +ki +giš +23886 ba +ši +il +ta +ar +ma +na +a +giš +23896 ana +ku +am +mi +na +an +na +a +giš +23906 ba +ši +il +ta +u +ar +ma +na +a +giš +23917 šu +uq +qa +an +ni +ma +in +bi +rit +23927 u +la +aš +hi +šu +ši +ban +ni +ša +ši +in +ni +ma +lu +un +zu +qa +da +mi +šu +u +ša +la +aš +hi +ma +lu +uk +su +sa +ku +sa +si +šu +ka +inim +ma +23976 niš +23981 šu +ana +23985 nu +ana +23989 šu +23991 an +23993 a +ri +ki +23997 ni +ba +ri +qi +giš +24004 giš +24010 ana +24012 e +ru +ba +24018 iš +ši +iš +šu +uk +24024 ih +pi +24029 a +na +24033 it +ta +di +24037 ta +ana +24041 it +ta +di +24045 man +nu +lu +uš +pur +a +na +d +asal +lu +hi +24057 reš +ti +i +ša +d +24063 a +lu +še +bi +lam +ma +šam +me +24076 la +na +a +di +24082 ul +ya +at +tu +24087 d +24089 u +d +asal +lu +hi +ši +pat +d +da +mu +u +d +nin +kar +ra +ak +d +gu +la +24110 ma +24113 ki +li +qi +i +24119 ka +inim +ma +24133 gi +mer +24137 šu +i +na +aš +24149 šu +24153 diš +24164 ki +ša +d +24168 u +d +taš +me +tu +24175 ra +pa +aš +tu +iš +ru +ku +uš +e +hu +uz +zu +24189 na +mir +tu +ni +siq +tup +šar +ru +ti +ša +ina +24202 ni +a +lik +mah +ri +ya +mam +ma +šip +ru +šu +a +tu +la +e +hu +uz +zu +bul +ṭi +24223 muh +hi +24227 liq +ti +24231 ta +hi +zu +nak +la +a +zu +gal +lu +ut +d +nin +urta +u +d +gu +la +ma +la +ba +aš +mu +ina +tup +pa +a +ni +aš +ṭur +as +niq +24264 ma +a +na +ta +mar +ti +ši +ta +as +si +ya +qe +reb +24279 ya +u +kin +24289 u +24292 u +24295 su +nu +tu +has +sa +ina +24306 šim +24312 ana +dug +24317 a +šar +tar +ku +su +24323 ar +24326 ru +24331 la +ta +ki +24335 ma +24338 su +gu +raš +ta +24345 tu +bal +24348 šu +u +kul +ba +na +24359 u +24361 lim +24363 ina +24367 u +24371 ina +24376 u +24386 su +24400 u +24403 sar +kuš +24409 niš +24412 tur +ar +24422 niš +24426 šu +24428 šu +24430 šu +24439 u +24443 ina +24445 giš +24453 ina +24455 šu +24458 su +še +bi +te +24463 ana +24472 mušen +24475 mušen +24477 laq +laq +qa +lu +u +24488 ina +24491 šal +gul +gul +la +šu +nu +24498 qe +ina +24503 sag +ki +en +na +24508 šu +24511 an +24518 sag +ki +en +na +24523 nu +24534 qe +24542 ina +24544 u +šar +rap +24554 mi +24557 su +24559 ma +24563 u +24567 le +e +24572 mušen +24577 mušen +24584 mušen +24589 niš +tur +ar +24593 ina +24602 su +24604 ab +ma +24610 a +a +ar +24615 bat +24617 šu +24619 ti +24621 šu +24623 šu +u +24629 na +24631 šu +tu +tar +te +te +kip +ina +24639 ṣar +hi +24646 mi +24649 ša +24651 šu +24653 qe +24656 tur +ar +24659 ina +24667 su +24669 ab +24672 me +24683 uš +24685 ki +a +am +24689 nu +24695 šu +24700 ina +24704 niš +24708 e +nu +ma +24713 šu +bu +ur +ṣa +id +da +nag +ga +la +24726 ana +24728 šu +na +24735 na +24738 na +24743 na +mu +ṣa +na +24748 na +24751 na +24753 na +24760 giš +24763 giš +24767 aš +li +24770 na +as +har +24774 ta +ša +pah +ina +24784 kam +ma +ina +24790 ma +24795 giš +24798 giš +24802 aš +li +24807 šim +24810 qu +ta +ri +24815 šu +u +24826 su +ma +i +na +24833 šu +24835 nu +ri +24839 lu +u +24845 lu +u +24851 an +24858 su +24861 šim +24863 šim +24870 niš +24880 d +24906 giš +24910 ki +sa +di +24915 a +da +pa +tu +in +24927 a +pa +ti +24932 a +ša +ti +24945 ina +24947 ina +24949 ana +24956 ina +še +ri +la +am +d +24967 an +nu +ti +24973 ana +24976 di +24979 šu +24982 šu +24986 ul +24988 ar +24991 šu +tu +šam +har +ina +24998 sar +25001 šu +tu +ha +pap +25006 te +qi +it +25011 ša +25015 na +mu +ṣa +25020 na +25024 na +25031 giš +25041 u +25046 ana +25049 di +ina +25052 tuš +bat +25055 ana +25059 di +25062 šu +25064 aš +ana +25068 di +ma +25071 ina +25073 šu +ina +25077 an +ma +25080 im +an +na +nam +ina +25092 ma +i +šal +lim +25100 ki +ma +bu +la +li +25107 šu +25109 aš +25113 na +mu +ṣa +am +25120 na +kut +pa +a +ina +25132 na +25137 ina +25144 na +25151 šim +bi +zi +da +ina +25157 munus +25163 šu +25165 aš +25168 na +25171 ina +25177 šim +25180 mi +riq +25183 a +ši +i +u +25190 sar +25195 na +25201 na +mu +ṣa +25217 rib +ku +ša +25225 šu +25228 ma +25232 ina +25240 ma +25242 šu +nu +25246 ša +25258 giš +25262 giš +25266 niš +25269 ina +25284 šu +la +ina +ṭa +la +25299 mušen +25309 mun +eme +sal +li +ina +25316 u +25322 šu +25326 di +gi +il +25331 šu +ma +a +ṭi +25339 u +25346 giš +25353 u +ti +ia +tu +25359 šim +25365 mun +eme +sal +li +u +25372 mal +ma +liš +ina +25378 ana +25388 te +pu +uš +u +25397 šu +25399 si +25401 šu +25404 šu +25406 ma +25416 šu +25419 šu +25423 ul +25425 ar +25427 šim +25434 sah +le +e +25438 ina +25441 aš +25445 ma +25447 šu +25451 mun +eme +sal +li +25459 ka +la +25462 me +25464 šu +25466 u +kal +25471 šu +25474 ma +25478 d +šul +pa +e +a +d +25485 ra +hi +iṣ +25490 d +25493 ina +25496 an +25501 ma +25505 mi +šum +ma +la +i +na +aṭ +ṭa +la +25515 d +iš +tar +25519 ina +25521 u +25527 šu +25530 ma +25534 ši +li +25538 šu +25548 mi +na +te +ši +na +25558 ina +25563 e +25566 te +qi +25570 ši +li +25574 šu +šad +du +ma +25583 giš +25588 giš +25591 giš +25599 ina +25601 ina +25604 ker +ana +25609 šu +25618 niš +25628 ina +25631 sar +25633 aš +25635 u +ak +tam +ina +25641 ma +25658 d +25660 lu +ur +ma +a +25679 d +25681 lu +ur +ma +a +25689 šu +si +lu +ur +ma +a +ma +ku +ut +ga +bi +di +ša +25704 la +ba +ni +šu +ina +25711 ta +šak +kak +ina +25716 šu +25718 an +25724 an +ina +še +ri +tug +25731 ana +25733 d +25736 aṣ +25739 šim +25742 an +25744 šu +a +tu +ina +ku +tal +tug +25753 ana +25755 d +25757 tuš +za +as +su +25766 ši +ša +25770 šu +25775 ši +ma +25779 ana +lu +25783 mu +uh +ra +nam +ra +i +ni +i +qab +bi +lu +25796 ana +25799 mu +uh +ra +bal +ṣa +i +ni +i +qab +bi +25813 šu +si +lu +ur +ma +a +ma +ku +ut +ga +bi +di +ta +har +ra +aṣ +25831 lu +25834 tu +pa +har +ma +ki +a +am +i +qab +bu +u +25846 i +qab +bu +u +25852 u +25857 niš +25862 šu +25869 šu +a +tu +25878 še +me +ma +mu +uh +ra +d +25886 a +liš +ma +a +d +25892 a +lim +hu +ra +25897 a +mur +nam +ra +i +ni +a +mur +bal +ṣa +i +ni +25918 ha +še +e +25922 ma +25924 an +ni +tu +25928 nu +25930 ina +giš +25933 ina +25935 šu +25937 ma +25942 ma +ku +ut +ga +bi +di +e +ma +her +ṣi +ta +har +ra +aṣ +25958 šu +u +25961 ma +ina +eš +25967 mi +na +ta +25988 nu +šim +25991 šim +25997 sar +26004 a +ši +i +26008 d +26011 d +26020 niš +ta +sak +ana +26028 ma +26032 te +qi +tu +ša +lim +tu +ša +26043 la +te +ek +ba +ri +26049 sar +26053 u +26056 u +26060 šim +26070 šim +26073 šim +26079 rib +ku +ša +26084 u +26087 sah +le +e +26091 sar +u +26096 u +26099 u +26103 kam +mu +šim +26108 u +26111 ina +26114 šal +ina +26118 u +26127 ša +nap +šal +ti +lu +ub +ki +u +26137 u +26141 sar +u +26146 šim +26149 šim +26151 kam +mu +ša +26159 rib +ku +ša +26164 ina +26166 ta +qal +lu +ina +26174 u +26180 šu +26182 na +26186 tuš +ku +na +as +har +na +mu +ṣa +26196 šim +26204 kam +mu +26207 d +26218 lu +26225 d +26227 ku +up +ra +26231 u +26235 sar +26249 it +qur +ti +26254 šim +26265 ma +26267 šu +26269 u +ak +tam +26273 ina +26280 sar +ta +sak +26284 giš +si +ha +giš +ar +ga +nu +26296 ina +26300 i +na +26308 šu +26314 šu +26316 ma +u +26319 šim +26323 su +pa +la +26327 su +ina +26332 si +26334 id +26336 u +26345 šu +te +qi +26352 šu +26354 ma +26357 ma +ʾ +du +ti +26363 ina +26367 su +26369 ab +ina +26372 me +26374 šu +26378 tu +kaṣ +ṣa +ina +26387 ta +sak +26391 šu +te +qi +ma +ina +eš +26401 šu +ta +bi +la +26408 la +u +haš +ša +ina +26417 ana +26421 šu +26423 ru +ma +26431 tur +ar +26434 ina +26437 sar +ta +la +aš +tu +kap +pat +la +a +am +pa +tan +u +al +lat +26456 ta +ṣa +lip +26460 su +ina +26468 šu +te +qi +26480 sar +26486 ina +26489 sar +26491 aš +26494 šu +26497 šu +26503 i +ru +pu +e +gu +ma +26510 e +li +26522 šu +26525 ma +ur +ra +u +26530 la +i +ṣal +lal +ma +26536 šum +ma +26541 šu +26545 šu +26547 ma +26549 sar +tur +ar +26555 ina +26557 munus +26561 aš +26563 id +ina +še +ri +26568 šu +ma +na +as +har +ina +26579 šu +26584 ra +pa +di +ina +26591 iṣ +26593 sig +26596 u +26600 mi +tara +kas +26606 šu +ki +lal +tan +26613 ma +26616 šu +te +eq +qi +26624 šu +26626 šu +un +nu +ʾa +26631 giš +26648 mušen +26657 mun +eme +sal +li +ina +26667 šu +26671 ta +bi +la +ana +26678 šu +26680 ru +26685 ina +26692 ina +26701 la +pa +tan +26709 ina +26715 šu +26719 mušen +ina +26726 šu +26732 šu +26739 ina +26745 u +26749 u +tar +muš +mal +ma +liš +26757 ina +26760 ni +kip +tu +26764 u +26769 šu +26774 šu +26777 ana +26781 šu +ta +zar +ri +26789 sar +26791 a +ši +i +26796 ina +um +ma +tu +ina +26803 sar +26806 ta +bi +la +ta +ṭe +ep +pi +26817 u +26821 te +te +ne +eq +qi +26839 ta +bi +la +ana +26846 šu +26848 ah +26853 šu +26856 u +26860 u +26863 ina +26868 ina +26874 na +as +har +ina +26881 te +qi +26887 šu +26891 šu +pa +na +pa +ni +26897 an +tara +kas +26901 na +as +har +ina +26913 šu +šik +na +ša +26918 šak +na +26924 mušen +mun +eme +sal +li +u +26932 u +26935 šim +26940 šim +26946 an +nu +ti +26950 niš +ta +mar +raq +ina +26959 ina +26962 sar +ta +sa +pan +26968 šu +26974 mušen +26979 ina +26986 šu +26988 an +nu +u +šam +mi +26997 ib +da +du +numun +27002 ina +ki +i +ri +ba +la +ṭi +ba +la +ṭi +na +ap +ši +ir +ba +la +ṭi +na +ap +ši +ir +ba +ʾ +la +at +ina +it +ti +a +ma +lik +27038 ak +la +me +ṣa +ma +a +du +27052 šu +27060 u +27064 u +27068 tara +kas +27074 e +ma +27079 nu +ina +27083 šu +tara +kas +27087 hu +ha +hi +la +ba +ma +hu +ha +hi +la +ba +ma +u +27121 šu +27128 na +as +har +ina +27135 ana +27139 šu +27142 igi +ti +la +a +ga +ti +la +geštu +kun +na +a +ga +kun +na +u +hu +ur +sag +gi +na +ta +ša +hi +šur +ra +ta +kuš +ri +in +kuš +ri +in +ni +še +e +ru +še +e +ra +e +kal +da +mu +da +ma +i +na +ṣab +27191 a +nu +27194 a +nu +u +qa +an +na +an +27202 di +d +gu +la +27209 en +qu +ti +ṣi +im +de +ti +li +qer +ri +bu +at +ti +taš +kun +ba +laṭ +bu +ul +ṭi +27241 šu +27263 niš +27265 ina +27268 tara +bak +27272 šu +27278 šu +27280 ma +27283 šim +27288 ul +ta +ta +ni +ʾa +27295 ina +27299 šu +27301 a +27303 d +27307 šu +u +na +kap +a +ši +tu +ana +27317 di +gal +27320 šu +giš +27324 su +tu +ha +sa +ina +27334 tara +muk +ina +27338 tuš +bat +ina +27345 ana +27347 hu +li +ia +am +27352 at +27360 mun +eme +sal +li +27366 tuš +ka +a +u +zi +ba +a +27375 a +he +nu +u +27380 mal +ma +liš +27384 qe +27386 niš +tuš +te +mid +ana +27392 hu +li +ia +am +ša +ta +aš +hu +tu +27402 ak +ina +27406 u +na +27411 aš +ma +27416 šu +ina +27421 te +ana +27426 šu +27428 an +27431 šu +27433 ma +u +kal +27438 šu +ta +kar +ma +27445 an +na +a +27452 šim +27456 mun +eme +sal +li +ina +27463 ana +27467 šu +27477 ina +27480 ana +27484 šu +27489 u +ur +ne +e +27496 ina +27499 ana +27503 šu +27506 igi +bar +igi +bar +bar +igi +bar +ra +bar +bar +igi +huš +igi +huš +huš +igi +bar +ra +huš +huš +igi +bar +na +a +igi +bar +da +a +igi +bar +hul +a +27540 a +ba +tu +27545 a +ša +tu +27549 šu +har +ra +te +27556 nik +si +27561 še +en +a +27567 ša +a +gala +pe +e +a +la +pa +a +27577 a +ki +ma +27585 a +ṣil +la +ina +be +ri +ši +na +pi +ti +iq +tu +pat +qat +27600 ub +d +27603 ina +be +ru +ši +na +it +ta +di +giš +27614 šu +aš +šum +an +ni +tu +ina +27622 an +ni +te +la +na +pa +še +27630 ul +ia +at +tu +un +27636 d +e +a +u +d +asal +lu +hi +27645 d +da +mu +u +d +gu +la +27653 d +nin +girima +be +let +šip +te +d +gu +la +27664 ma +27667 ki +27682 an +nu +u +ša +27695 e +ma +27700 nu +ina +27703 šu +27706 ti +27708 su +27710 igi +bar +igi +bar +bar +igi +bar +ra +bar +bar +igi +huš +igi +huš +igi +bar +ra +huš +huš +igi +bar +na +a +igi +bar +da +a +igi +bar +hul +a +27743 a +ba +a +tu +27749 a +ša +tu +27754 ša +27757 a +ana +ku +27765 sa +niq +qa +bu +u +ša +d +gu +la +27775 ma +ši +na +ma +ah +ha +a +tu +ina +be +ru +ši +na +pa +rik +27791 u +man +na +lu +uš +pur +ana +27800 d +a +nim +ša +27805 e +liš +ša +ni +tal +li +ši +na +na +27817 ši +na +na +27822 eb +bu +li +sa +pa +a +ni +27834 ta +ma +ti +27838 ti +ša +ha +riš +tu +la +u +ri +du +a +na +lib +bi +mu +suk +ka +tu +la +27857 u +qa +te +ša +lim +la +ni +im +ma +li +ke +eṣ +ṣa +a +27872 ṣi +ri +ih +tu +ša +27880 šu +27882 ul +ia +at +tu +un +27888 d +27890 u +d +asal +lu +hi +27896 d +da +mu +u +d +gu +la +27904 d +nin +girima +be +let +šip +te +d +gu +la +27916 ma +27919 ki +27921 i +27935 an +nu +u +ša +27948 e +ma +27953 nu +ina +27956 šu +27958 ti +27961 igi +bar +igi +bar +bar +igi +bar +ra +bar +bar +igi +huš +igi +huš +huš +igi +bar +ra +huš +huš +igi +bar +na +a +igi +bar +da +a +igi +bar +hul +a +27995 a +pa +tu +28000 a +ša +tu +28005 pur +sit +28008 šu +te +eṣ +li +pa +a +tu +am +min +tab +ba +a +am +min +taš +ša +a +am +mi +ni +ik +kal +ki +na +ši +ba +a +ṣu +ša +na +a +ri +tal +tal +lu +u +ša +giš +28047 ša +ti +it +tu +ni +iq +qa +ša +ša +a +ri +i +28061 šu +al +si +ki +na +al +ka +ni +ul +al +si +ki +na +ši +ul +ta +la +ka +ni +la +am +it +ba +ki +na +ši +28110 a +he +en +na +a +28118 u +28123 e +ma +28128 nu +28132 ina +28134 šu +28136 ti +28141 ina +28143 šu +28147 ma +ina +eš +28151 igi +bar +igi +bar +bar +igi +bar +ra +bar +bar +igi +hul +igi +hul +hul +igi +bar +ra +hul +hul +ši +it +ta +ši +na +28178 d +a +ni +ina +be +ru +ši +na +pi +tiq +tu +pat +qat +ul +il +lak +a +ha +tu +a +na +le +et +a +ha +ti +ša +man +na +lu +uš +pur +a +na +28214 d +a +ni +ša +28219 e +liš +ša +ni +kan +ni +ši +na +na +28231 ši +na +na +28237 eb +bu +li +is +sa +pa +ni +im +ma +li +be +la +a +28252 a +ba +ti +28257 a +ša +ti +u +dal +ha +a +ti +28284 igi +bar +igi +bar +bar +igi +bar +ra +bar +bar +igi +suh +igi +suh +suh +igi +bar +ra +suh +suh +ši +it +ta +i +nu +a +ha +tu +ši +na +ma +ina +be +ru +ši +na +28321 u +pa +rik +ma +28326 nu +ši +na +ki +ṣir +tu +kaṣ +rat +28336 nu +ši +na +pi +tiq +tu +pat +qat +a +a +u +28348 ši +na +a +ma +a +a +u +28357 ši +na +ma +a +a +u +28364 ti +bi +ši +na +a +a +u +la +a +28374 ti +bi +ši +na +ma +ša +ar +pa +ni +i +kil +pa +ni +ṣu +lu +um +pa +ni +at +ta +pu +ṭur +d +28418 igi +bar +igi +bar +bar +28431 a +he +en +na +a +28439 ina +28442 šu +28444 su +28451 a +28458 ina +28461 šu +ša +28466 ta +ma +ad +ra +aš +ta +ma +ad +ra +aš +tu +en +28482 ina +28485 šu +ša +28504 gub +ba +a +gub +ba +a +d +28513 ip +pa +lis +su +ma +ana +d +e +a +28523 šu +i +ša +as +si +mi +na +a +e +pu +uš +ul +i +di +ša +ana +ku +i +du +u +at +ta +ti +di +28557 niš +28561 u +28566 e +ma +28571 nu +ina +28576 šu +28578 ma +ina +eš +28582 i +gi +ti +la +a +ga +ti +la +i +gi +kun +na +a +ga +kun +na +28599 ur +sag +gi +na +zu +gi +ban +da +zu +tu +en +28627 pa +la +huš +pa +la +huš +pa +la +huš +bi +nig +gi +na +bi +i +gi +pa +la +huš +bi +tu +en +28665 i +ni +eṭ +li +28670 at +i +ni +munus +28677 at +i +ni +28681 u +munus +28685 man +nu +u +bal +liṭ +ta +šap +par +i +le +qu +ni +ku +28700 ti +giš +28703 ina +pi +i +ka +te +he +pi +ina +28712 ka +te +pe +til +28717 u +28720 ina +28724 šu +nu +tu +ka +ṣar +28731 u +28734 i +bal +lu +uṭ +28756 en +an +na +im +ri +a +igi +lu +ka +gig +ga +ba +an +gar +ina +ša +me +e +ša +a +ru +i +zi +qam +ma +ina +i +in +28785 si +im +me +iš +ta +kan +an +ta +su +da +ta +im +ri +a +igi +lu +ka +gig +ga +ba +an +gar +28808 iš +tu +28811 e +ru +qu +ti +igi +gig +ga +gig +ga +ba +an +gar +28824 i +ni +mar +ṣa +a +ti +si +im +ma +iš +ta +kan +lu +bi +igi +bi +lu +lu +a +igi +bi +ba +an +suh +suh +ša +28851 šu +a +tu +i +da +šu +da +al +ha +ša +i +na +šu +a +ša +a +lu +u +lu +bi +ni +te +a +ni +še +er +gig +i +šeš +šeš +28882 šu +u +ina +ra +ma +ni +šu +mar +ṣi +iš +i +bak +ki +lu +bi +tu +ra +a +ni +d +engur +ke +igi +im +ma +an +si +ša +28911 šu +a +tu +mu +ru +us +su +d +28920 i +mur +ma +gazi +sar +kum +ma +šu +u +me +ti +ka +si +i +haš +lu +ti +le +qe +ma +tu +tu +abzu +ta +u +me +ni +si +ši +pat +ap +si +i +i +di +ma +igi +lu +ka +u +me +ni +kešda +i +ni +a +me +li +ru +kus +ma +d +engur +lu +šu +ku +ga +na +igi +lu +ba +ka +šu +tag +ga +ni +ta +d +28989 ina +28991 ša +28993 ti +i +in +a +me +li +ina +la +ba +ti +ša +im +igi +lu +ka +su +su +igi +bi +ta +ba +ra +an +e +ša +a +ru +ša +i +in +a +me +li +ud +du +pu +ina +i +ni +šu +lit +ta +ṣi +29045 i +nu +a +pa +tu +i +nu +a +ša +tu +i +nu +pur +si +in +di +da +a +mi +šu +har +ri +a +tu +29073 mušen +29081 ša +29091 ina +gi +29095 ana +29099 šu +29101 kun +ša +29105 su +29115 ana +29118 šu +29120 ak +29127 uš +29131 tur +ar +29140 šu +29146 su +29150 ina +29153 sar +29155 aš +29158 šu +29160 id +na +as +har +na +tu +uš +ka +a +29170 ina +29173 tu +tah +ha +ah +mal +ma +liš +29181 ina +29188 šu +29194 šu +29200 ana +29204 šu +29207 šu +uh +ta +ša +29212 ina +29215 te +ser +ina +29221 šu +29223 id +29226 na +aš +har +29234 ina +29241 šu +29244 ma +29250 šu +29252 ma +u +ha +an +ṭa +29259 ša +29262 ina +29268 šu +29272 ina +29275 si +29277 sar +ta +sak +29281 šu +29283 šu +29285 šu +29288 šu +29293 ina +šur +šum +me +29299 aš +29304 ša +29307 tur +ar +29310 ina +29314 te +ta +sak +29318 ma +29320 šu +29324 šu +te +qi +29328 ana +29332 šu +tu +na +tak +u +29342 ba +ri +ra +ta +ina +29348 ta +la +aš +29353 ina +29360 šu +29363 šim +29367 su +pa +la +29371 su +ina +29382 te +qi +29387 šu +29390 ma +ʾ +du +ti +29396 ina +29401 su +29403 ab +29408 tu +kaṣ +ṣa +29412 ina +29418 ta +sak +29422 šu +te +qi +ma +ina +eš +29431 šu +ta +bi +la +29438 la +u +haš +ša +ina +29447 ana +29451 šu +29453 ru +ma +29461 tur +ar +29464 ina +29467 sar +ta +la +aš +tu +kap +pat +la +a +am +pa +tan +u +al +lat +29486 ta +ṣa +lip +29490 su +ina +29498 šu +te +qi +29508 sar +29514 ina +29517 sar +29519 aš +29522 šu +29525 šu +29533 lal +a +sar +29541 e +ru +pu +e +gu +ma +29550 e +li +29554 šu +29561 sar +sah +le +e +u +29570 šim +29573 šim +29575 kam +mu +29578 ta +qal +lu +ina +29591 tuš +tab +bal +29596 šu +29602 šu +29607 šu +29611 mušen +ina +29621 šu +29629 šu +29631 sah +le +e +ina +29637 šal +29643 šu +29647 ri +šum +ma +29653 šu +29657 šu +29659 ma +29661 munus +29665 aš +29667 id +ina +še +ri +29672 šu +ma +29675 ina +29679 iṣ +29681 sig +29689 šu +29691 šu +un +nu +ʾa +29700 mušen +29705 ta +bi +la +ana +29712 šu +29717 ina +29730 ina +29736 šu +29743 šu +29747 u +29750 u +tar +muš +mal +ma +liš +29759 ina +29764 šim +bi +zi +da +29770 ša +29773 ana +29777 šu +tu +na +tak +29786 mušen +29789 ib +da +gub +29793 ina +ki +i +ri +ba +la +ṭi +ba +la +ṭi +na +ap +ši +ir +ba +la +ṭi +na +ap +ši +ir +ba +ʾ +la +at +ina +it +ti +29826 ak +la +me +ṣa +ma +a +du +29840 šu +29853 e +ma +29858 nu +ina +29862 šu +29865 hu +ha +hi +la +ba +ma +hu +ha +hi +la +ba +ma +u +29899 šu +29906 na +as +har +ina +29913 ana +29917 šu +29920 igi +ti +la +a +ga +ti +la +geštu +kun +na +a +ga +kun +na +u +hu +ur +sag +gi +na +ta +ša +hi +šur +ra +ta +kuš +ri +in +kuš +ri +in +ni +še +e +ru +še +e +ra +e +kal +da +mu +da +ma +i +na +ṣab +29969 a +nu +29972 a +nu +u +qa +an +na +an +29980 di +d +gu +la +29987 en +qu +ti +ṣi +im +de +ti +li +qer +ri +bu +at +ti +taš +ku +ni +ba +laṭ +bu +ul +ṭi +30020 šu +30042 niš +30044 ina +30047 tara +bak +30051 šu +30057 šu +30059 ma +30062 šim +30067 ul +ta +ta +ni +ʾa +30074 ina +30078 šu +30080 a +30082 d +30086 šu +u +na +kap +a +ši +tu +ana +30096 di +gal +30099 šu +giš +30103 su +tu +ha +sa +ina +30113 tara +muk +ina +30117 tuš +bat +ina +30124 ana +30126 hu +li +ia +am +30131 at +30139 mun +eme +sal +li +30145 tuš +ka +a +u +zi +ba +a +30154 a +he +nu +u +30159 mal +ma +liš +30163 qe +30165 niš +tuš +te +mid +ana +30171 hu +li +ia +am +ša +ta +aš +hu +tu +30181 ak +ina +30185 u +na +30190 aš +ma +30195 šu +ina +30200 te +ana +30205 šu +30207 an +30210 šu +30212 ma +u +kal +30217 šu +ta +kar +ma +30224 an +na +a +30231 šim +30235 mun +eme +sal +li +ina +30242 ana +30246 šu +30256 ina +30259 ana +30263 šu +30268 u +ur +ne +e +30275 ina +30278 ana +30282 šu +30285 igi +bar +igi +bar +bar +igi +bar +ra +bar +bar +igi +huš +igi +huš +huš +igi +bar +ra +huš +huš +igi +bar +na +a +igi +bar +da +a +igi +bar +hul +a +30319 a +ba +tu +30324 a +ša +tu +30328 šu +har +ra +tu +30335 nik +si +30340 še +en +a +30346 ša +a +gala +pe +e +a +la +pa +a +30356 a +ki +ma +30364 a +ṣil +la +ina +be +ri +ši +na +pi +ti +iq +tu +pat +qat +30379 ub +d +30382 ina +be +ru +ši +na +it +ta +di +giš +30393 šu +aš +šum +an +ni +tu +ina +30401 an +ni +te +la +na +pa +še +30409 ul +ia +at +tu +un +30415 d +e +a +u +d +asal +lu +hi +30424 d +da +mu +u +d +gu +la +30432 d +nin +girima +be +let +30438 d +gu +la +30443 ma +30446 ki +30461 an +nu +u +ša +30474 e +ma +30479 nu +ina +30482 šu +30485 ti +30487 su +30490 igi +huš +huš +igi +bar +ra +30500 a +pa +tu +30505 a +ša +tu +30510 ša +30513 a +ana +ku +30517 sa +niq +qa +bu +u +ša +d +gu +la +30527 ma +ši +na +ma +ah +ha +a +tu +ina +be +ru +ši +na +pa +rik +30543 u +man +na +lu +uš +pur +ana +30552 d +a +nim +ša +30557 e +liš +ša +a +ni +tal +li +ši +na +na +30570 ši +na +na +30575 eb +bu +li +sa +pa +a +ni +30587 tam +ti +30590 te +ša +ha +riš +tu +la +u +ri +du +ana +lib +bi +mu +suk +ka +tu +la +30608 u +qa +ti +ša +lis +la +ni +im +ma +li +ke +eṣ +ṣa +a +30623 ṣi +ri +ih +tu +ša +30631 šu +30633 ul +ia +at +tu +un +30639 d +30641 u +d +asal +lu +hi +30647 d +da +mu +u +d +gu +la +30655 d +nin +girima +be +let +šip +te +d +gu +la +30667 ma +30670 ki +30672 i +30686 an +nu +u +ša +30699 e +ma +30704 nu +ina +30707 šu +30709 ti +30712 igi +bar +igi +30716 bar +ra +bar +bar +igi +huš +igi +huš +huš +igi +bar +ra +huš +huš +igi +bar +na +a +30735 igi +bar +hul +a +30741 a +pa +tu +30746 a +ša +tu +30751 pur +sit +30754 šu +te +eṣ +li +pa +a +tu +am +min +tab +ba +a +am +min +taš +ša +a +am +mi +ni +ik +kal +ki +na +ši +ba +a +ṣu +ša +na +a +ri +tal +tal +lu +u +ša +giš +30793 ša +ti +it +tu +ni +iq +qa +ša +ša +a +ri +i +30807 šu +al +si +ki +na +ši +al +ka +ni +ul +al +si +ki +na +ši +ul +ta +la +ka +ni +la +am +it +ba +ki +na +ši +30857 a +he +en +na +30864 u +30869 e +ma +30874 nu +30878 ina +30880 šu +30882 ti +30887 ina +30889 šu +30893 ma +ina +eš +30897 igi +bar +igi +bar +bar +igi +bar +ra +bar +bar +30908 hul +hul +igi +bar +ra +30914 ši +it +ta +ši +na +30921 d +a +ni +ina +be +ru +ši +na +pi +tiq +tu +pat +qat +ul +il +lak +a +ha +tu +a +na +le +et +a +ha +ti +ša +man +na +lu +uš +pur +a +na +30957 d +a +ni +ša +30962 e +liš +ša +a +ni +kan +ni +ši +na +na +30975 ši +na +na +30981 eb +bu +li +is +sa +pa +ni +im +ma +li +be +la +a +30996 a +ba +tu +31001 a +ša +ti +u +dal +ha +a +ti +31027 igi +bar +igi +bar +bar +igi +bar +ra +bar +bar +igi +suh +igi +suh +suh +igi +bar +ra +suh +suh +ši +it +ta +i +nu +a +ha +tu +ši +na +ma +ina +be +ru +ši +na +31064 u +pa +rik +ma +31069 nu +ši +na +ki +ṣir +tu +kaṣ +rat +31079 nu +ši +na +pi +tiq +tu +pat +qat +a +a +u +31091 ši +na +a +ma +a +a +u +31100 ši +na +ma +a +a +u +31107 ti +bi +ši +na +a +a +u +la +a +31117 ti +bi +ši +na +ma +31138 gin +a +a +lal +la +er +gub +ba +a +gub +ba +a +d +31153 ip +pa +lis +su +ma +ana +d +e +a +31163 šu +i +ša +as +si +mi +na +a +e +pu +uš +ul +i +di +ša +ana +ku +i +du +u +at +ta +ti +di +31204 niš +31208 u +31213 e +ma +31218 nu +ina +31223 šu +31225 ma +ina +eš +31229 i +gi +ti +la +a +ga +ti +la +i +gi +kun +na +a +ga +kun +na +ur +sag +gi +na +zu +gi +ban +da +zu +tu +en +31273 i +ni +31277 at +i +ni +munus +31284 at +i +ni +31288 u +munus +31292 man +nu +u +bal +liṭ +ta +šap +par +i +le +qu +ni +ku +31307 ti +giš +31310 ina +pi +i +ka +te +he +pi +ina +31319 ka +te +pe +til +31324 u +31327 ina +31331 šu +nu +tu +ka +ṣar +31338 u +31341 i +bal +lu +uṭ +31362 en +an +na +im +ri +a +igi +lu +ka +gig +ga +ba +an +gar +ina +ša +me +e +ša +a +ru +i +zi +qam +ma +ina +i +in +31391 si +im +me +iš +ta +kan +an +ta +su +da +ta +im +ri +a +igi +lu +ka +gig +ga +ba +an +gar +iš +tu +31416 e +ru +qu +ti +igi +gig +ga +gig +ga +ba +an +gar +31429 ana +i +ni +mar +ṣa +a +ti +si +im +me +iš +ta +kan +lu +bi +igi +bi +lu +lu +a +31450 ša +31452 šu +a +tu +i +na +šu +da +al +ha +igi +bi +ba +an +suh +suh +31468 i +na +šu +a +ša +a +lu +u +lu +bi +ni +te +a +ni +še +er +gig +i +šeš +šeš +31489 šu +u +ina +ra +ma +ni +šu +mar +ṣi +iš +i +bak +ki +lu +bi +tu +ra +a +ni +d +engur +ke +igi +im +ma +an +si +31517 ša +31519 šu +a +tu +mu +ru +us +su +d +31528 i +mur +ma +gazi +sar +gaz +ga +šu +u +me +ti +31540 ka +si +i +haš +lu +ti +le +qe +ma +tu +tu +abzu +ta +u +me +ni +si +31558 ši +pat +ap +si +i +i +di +ma +igi +lu +ka +u +me +ni +kešda +31574 i +ni +a +me +li +ru +kus +ma +d +engur +lu +šu +ku +ga +na +igi +lu +ba +ka +šu +tag +ga +ni +ta +d +31600 ina +31602 ša +31604 ti +i +in +a +me +li +ina +la +ba +ti +ša +im +igi +lu +ka +su +su +igi +bi +ta +ba +ra +an +e +ša +a +ru +ša +i +in +a +me +li +ud +du +pu +ina +i +ni +šu +lit +ta +ṣi +31656 i +nu +a +pa +tu +i +nu +a +ša +tu +i +nu +pur +si +in +di +da +a +mi +šu +har +ri +a +tu +ši +na +i +bak +ka +a +ana +31689 ši +na +d +ma +mi +a +mi +in +na +ši +ma +it +ti +ni +tar +ku +si +a +ša +a +da +a +ma +u +ša +a +ra +31733 a +he +en +na +a +31740 ina +31742 šu +nu +lip +pa +tal +pap +31750 ina +31752 šu +31756 ina +31758 šu +31761 ma +ina +eš +31765 še +la +še +la +hu +tu +ul +hu +tu +ul +igi +lal +hu +tu +ul +min +igi +lal +bi +hu +tu +ul +min +ša +at +ti +pa +na +31795 ša +at +ti +pa +na +31802 i +ṭab +31816 šu +31822 bir +ki +31826 qe +31829 u +31833 ana +31835 šu +te +eṣ +ṣi +ip +31844 u +31849 e +ma +31854 nu +ina +31858 šu +31860 ma +ina +eš +31864 at +ti +na +31868 pur +si +mi +it +31873 šu +har +ra +tu +am +mi +ni +ta +aš +ša +ni +ha +ma +ha +an +da +bi +lu +šu +ur +šu +ra +e +lap +pa +a +ša +31901 ina +31904 kir +ba +ni +ina +tub +kin +na +a +te +hu +ṣa +a +ba +am +mi +ni +taš +ša +ni +zu +un +na +ni +31929 mi +ta +qu +ta +ni +31935 nab +li +la +am +ik +šu +du +ki +na +ši +ṣur +ru +nag +la +bu +ša +d +gu +la +31958 d +asal +lu +hi +d +31966 d +nin +gi +rim +ma +31973 u +d +gu +la +31980 ti +i +di +ma +ana +ku +aš +ši +31993 ha +a +mu +hu +ṣa +ba +u +mim +ma +ša +32005 šu +li +i +32009 ina +šur +ri +i +la +am +ba +ša +mu +a +la +lu +ur +da +ana +ma +ti +it +tu +u +še +er +a +32034 še +er +hu +hab +bur +ra +hab +bur +ra +ka +an +na +ka +an +nu +ki +iṣ +ra +ki +iṣ +ru +šu +bu +ul +ta +šu +bul +tu +me +er +a +d +32067 e +ṣi +id +d +32072 u +pa +har +d +32077 ina +e +ṣe +di +šu +d +32084 ina +pu +hu +ri +šu +ana +32092 me +er +hu +32096 ub +d +32099 u +d +32102 i +ši +za +nim +ma +me +er +hu +li +la +a +ša +32115 šu +un +32120 me +er +hu +ša +32127 šu +li +i +32134 šu +mur +din +ni +32139 sah +le +e +32146 ina +32148 tara +bak +32151 id +32157 ana +32195 u +32214 u +32219 mi +ki +i +32243 d +32245 na +mu +ṣa +32255 na +32259 na +32264 na +32276 di +32279 šu +32281 nu +ma +32286 šu +32289 hu +up +pat +32294 šu +32297 ma +32299 im +ina +ah +32306 su +ma +32314 ši +32321 na +32326 na +32329 na +32332 na +32334 na +32337 na +32339 na +mu +ṣa +na +32345 na +32347 na +32350 na +32354 u +32356 na +32360 na +32366 na +32368 ša +32372 ša +na +ia +ni +bu +na +ka +pa +ṣu +32385 an +nu +ti +ina +32390 munus +32399 u +32405 ak +u +tar +muš +u +32411 lim +u +32415 giš +32418 u +32420 u +ap +ru +ša +u +ak +tam +u +el +kul +la +u +32437 lu +u +32441 u +32446 u +32450 giš +32456 an +nu +ti +e +ma +32462 ina +sig +32468 mi +32476 nu +ma +ina +32481 šu +32483 su +na +aš +pu +u +ša +32491 kul +lu +mu +na +32497 na +32506 na +32509 na +32512 na +32517 na +lu +lu +da +ni +tu +na +32526 na +32529 na +32540 na +ar +zal +la +32547 na +32551 na +32557 na +32564 giš +32566 na +32568 d +32570 na +32576 na +32579 na +32588 it +ti +nap +šal +ti +u +ṣi +in +di +ša +32606 šu +32610 id +32615 an +nu +ti +32620 tu +haz +ina +32625 šu +32627 su +32629 giš +32631 ša +32636 giš +32638 ša +32644 ša +32648 ša +32651 giš +32654 giš +32657 u +32665 ṣi +in +di +ša +32675 šu +32677 id +šim +32680 šim +32688 d +32691 d +32705 šu +32709 giš +32788 ina +32791 šu +ina +32801 da +gan +imin +bi +d +utu +nam +tar +nam +tar +ra +32815 nam +ba +luh +u +me +luh +nam +mu +un +da +32826 bur +ra +nam +mu +un +da +32833 la +e +32836 al +li +ma +da +ma +da +bi +d +en +ki +lugal +abzu +ke +32850 d +asal +lu +hi +dumu +eridu +ki +ga +ke +nam +mu +un +da +bur +bur +re +32867 zi +an +na +he +pad +zi +ki +a +he +pad +32888 sig +32897 u +32901 niš +32905 u +32909 u +32915 ni +kip +ta +32919 d +32922 d +32925 giš +32930 giš +32935 gul +gul +32944 an +nu +ti +e +ma +32950 ina +32954 mi +32957 šu +32959 nu +32961 giš +32964 at +ina +32968 šu +tara +kas +gul +gul +32976 tur +ar +32979 ina +32982 su +32994 gul +gul +33004 u +33007 u +33010 sah +le +e +33014 niš +33016 ina +33024 ina +33027 šu +u +an +ki +nu +ti +u +eli +kul +la +33038 tam +ti +ni +kip +ta +33044 u +33048 d +33050 na +mu +ṣa +33054 niš +33056 ina +33063 šu +33067 šu +u +33071 šu +33073 ma +33077 uṭ +33079 sag +ki +mu +un +ta +gig +dab +ba +sag +ki +mu +un +ta +bi +gig +dab +ba +sag +ki +hul +gig +sa +gig +dab +ba +zi +d +asal +lu +hi +dumu +eridu +ki +ga +ke +zi +pad +da +hun +ga +33125 giš +33127 ša +im +33131 ša +ina +33135 i +nam +zu +zu +33140 qe +33142 šu +ana +33146 šu +ana +33149 ta +pat +til +33153 u +33159 šu +33161 nu +ina +33165 šu +33168 sag +ki +mu +un +dab +sag +si +sa +mu +un +dab +sag +sahar +ra +mu +un +dab +mu +un +dab +mu +un +dab +dab +a +da +pa +abgal +eridu +ki +ga +ke +sag +ki +mu +un +dab +sag +sahar +ra +mu +un +dab +33219 sig +33226 u +33231 e +ma +33234 na +33238 ak +33241 šu +33243 nu +ina +33247 šu +33250 a +ra +tu +e +a +ra +ba +tu +e +ti +la +33263 šu +du +du +meš +šu +ne +ne +a +meš +eridu +ki +ga +mu +un +tum +33284 giš +33286 ša +im +33290 ša +ina +33294 i +nam +zu +zu +33299 qe +33301 u +33307 šu +33309 nu +ina +33313 šu +tara +kas +33325 ri +ba +ak +ti +ti +e +na +33335 hat +ru +um +ma +33354 ku +33394 ina +33412 a +an +33433 šu +tu +šaq +ba +šu +ma +33455 kup +ra +33474 giš +33497 sag +ki +mu +un +dab +33508 sag +sahar +ra +mu +un +dab +33523 d +asal +lu +hi +sag +giš +ra +mu +un +dab +mu +un +dab +33549 na +33555 u +33557 na +33562 na +33568 ina +33571 šu +tara +kas +33575 sag +ki +ni +sag +ki +he +en +gi +gi +i +bi +ni +i +bi +he +en +gi +gi +mu +ru +ub +bi +ni +mu +ru +ub +bi +he +en +gi +gi +he +bi +da +a +na +mul +la +he +en +da +a +33622 u +aš +lam +33634 u +33639 e +ma +33645 nu +33649 u +33660 ina +sig +33666 mi +ina +33670 šu +tara +kas +33674 id +da +ta +tir +gal +gal +la +ta +tir +si +dara +maš +mah +mah +mul +mul +giš +geštin +gir +mu +un +kar +re +giš +kiši +i +gu +kal +muš +muš +šu +mu +mu +e +de +mul +mul +kur +kur +ra +sikil +e +du +i +ti +la +tu +ra +33724 du +nam +tag +ga +lu +kar +ra +mu +un +sa +a +zag +du +nig +giš +gag +ti +giš +kiri +33746 udug +hul +he +bad +a +la +hul +he +bad +gidim +hul +he +bad +gal +la +hul +he +bad +dingir +hul +he +bad +maškim +hul +he +bad +d +dim +me +he +bad +d +dim +me +a +he +bad +d +dim +me +lagab +he +bad +zi +an +na +he +pad +zi +ki +a +he +pad +33817 niš +33820 na +33834 e +ma +33839 nu +ina +33844 šu +tara +kas +ma +33851 sag +ki +dab +ba +sag +ki +dab +ba +sag +ki +dab +ba +nam +lu +u +lu +ke +sag +ki +dab +ba +dingir +re +e +ne +ke +sag +ki +dab +ba +tu +ra +hun +ga +ke +sag +ki +dab +ba +nam +lu +u +lu +gar +ra +he +en +hun +ga +33903 sag +si +sa +mu +un +dab +sag +sahar +ra +mu +un +dab +zag +gar +ra +sag +gar +ra +33925 tu +tu +gar +ra +he +en +hun +ga +zi +an +he +pad +zi +ki +a +he +pad +33953 ina +33955 tak +ṣi +ri +ša +u +33964 nu +33966 sag +ki +mu +ta +bi +gig +dab +ba +sag +ki +hul +dab +ba +sag +gig +hul +dab +ba +zi +d +asal +lu +hi +dumu +eridu +ki +ke +zi +pad +da +hun +ga +34009 an +ni +ta +ina +34014 nap +šal +ti +ina +34021 e +34023 šu +34025 nu +ma +34030 šu +34033 hi +šu +34038 hi +šu +34042 ma +ina +ah +34055 sag +du +huš +sag +du +huš +sag +du +huš +huš +sag +re +eš +sag +du +huš +lugal +d +asar +alim +he +til +lugal +d +en +ki +he +til +lugal +d +asal +lu +hi +he +til +34114 u +34119 e +ma +34124 nu +ina +34128 šu +34141 munus +aš +gar +giš +nu +zu +šim +me +mu +un +zu +34178 na +34184 šu +34190 šu +34194 ina +34198 ša +iti +34201 u +34203 lim +u +34207 u +tar +muš +u +eli +kul +la +u +ha +šu +ta +ša +34223 ša +34227 d +34230 ina +34238 pi +ina +34241 šu +34243 an +na +34247 ina +34250 šu +34252 su +34254 in +da +ri +ti +ra +ah +34261 nu +34266 šu +34268 su +34271 at +u +34282 ša +iti +34285 giš +34291 ša +ina +34295 ša +zaq +pat +34300 ša +ta +še +ṣa +aʾ +34308 ana +34311 šu +34314 šim +34316 ana +34319 šu +34321 sil +qit +34330 šu +34332 su +34335 at +u +34342 ša +iti +34349 mušen +34351 šal +bah +ru +us +su +ana +34360 šu +34365 mušen +34367 šal +34370 giš +34372 ana +34375 šu +34377 di +hi +ib +ṣa +ina +sah +le +e +34390 šu +34392 su +ina +34397 ša +iti +34403 šu +34408 an +34413 ša +34417 ina +34420 šu +u +hap +pa +34425 šim +34427 ana +34430 šu +34432 an +34437 šu +34439 su +ina +34444 ša +iti +34448 sar +ina +34451 u +haš +ša +tul +ta +ša +34459 ina +34462 šu +u +hap +pa +34469 šu +34473 an +34475 šim +34477 ana +34481 šu +34483 an +nap +ša +la +tu +tak +ṣi +ra +nu +lat +ku +tu +ba +ru +ti +ša +ana +34501 šu +ṣu +u +ša +34508 e +la +bi +ru +ti +ša +la +am +34519 ša +i +na +šuruppak +ki +34527 m +d +34531 ba +ni +34534 uru +i +ši +in +ki +m +d +34543 mu +bal +liṭ +34548 ki +ez +bu +la +mu +du +u +mu +da +a +li +kal +lim +mu +du +u +la +mu +da +a +la +u +kal +lam +34574 d +34581 su +34584 mat +qu +ta +34598 šu +34600 u +kal +34604 m +34615 ki +ša +d +34619 u +d +taš +me +tu +34626 ra +pa +aš +ta +iš +ru +ku +uš +i +hu +uz +zu +34640 na +mir +tu +ni +siq +ṭup +šar +ru +ti +34654 id +34666 ru +uš +šu +ša +sip +pi +34674 qe +34688 ana +34691 u +ap +ru +šu +ina +34706 ta +sak +ina +34711 šal +34713 su +34725 u +34728 i +le +em +ana +34742 a +bu +kat +34746 i +ta +sak +ina +hi +iq +34766 ku +ṣu +hur +ba +šu +34773 su +34785 ana +34787 lu +se +pi +i +34821 su +34876 ša +ina +34880 ni +a +lik +mah +ri +ia +mam +ma +šip +ru +šu +a +tu +la +e +hu +uz +zu +bul +ṭi +34901 muh +hi +34905 liq +ti +34909 ta +hi +zu +nak +la +a +zu +gal +lu +ut +d +nin +urta +u +d +gu +la +ma +la +ba +aš +mu +ina +ṭup +pa +a +ni +aš +ṭur +as +niq +34942 ma +a +na +ta +mar +ti +ši +ta +si +ia +qe +reb +34956 ia +u +kin +u +34993 šim +34996 šim +34998 ni +kip +ta +35010 šim +35028 šim +35031 šim +35033 šim +d +35038 niš +35045 ina +35047 ta +la +aš +tu +ba +har +35055 su +35061 šim +35064 šim +35066 šim +d +35071 u +ka +man +ti +35082 niš +35085 ina +35087 tara +bak +35091 su +35098 giš +35100 ša +ina +35104 i +nam +zu +zu +35109 qe +ina +35124 u +ap +ru +ša +35129 ina +35134 giš +a +bu +ka +tu +35161 šu +u +35164 šu +ana +35168 nu +35171 šu +35176 u +35179 ni +kip +ta +ina +35184 tu +qat +tar +šu +šim +35191 ni +kip +ta +35197 u +35204 šim +35207 niš +35209 ina +35217 na +mu +ṣu +šim +d +35228 d +35231 niš +35233 ina +sig +35246 as +ni +kip +ta +35271 šu +35278 sar +35284 ina +35287 sar +tara +bak +35296 sar +35307 ina +35310 sar +tara +bak +35321 su +ru +ša +am +ša +35327 giš +35330 ina +a +ṣi +ka +ša +ana +35337 ka +35339 zu +35343 munus +35349 ina +sig +35355 as +ina +35359 šu +35361 ma +35372 su +35374 giš +35376 ša +i +nam +zu +zu +35382 qe +35387 ina +35390 aš +35393 šu +35395 ma +35399 uṭ +35407 su +35409 giš +35411 ša +ina +zu +zu +35416 qe +ina +35420 šu +tara +kas +ma +35427 uṭ +35435 su +giš +35438 ša +ina +zu +zu +35444 ina +sig +35448 ina +sig +35453 tara +kas +ina +35458 šu +tara +kas +35464 uṭ +35472 su +sig +35478 ša +35487 u +35491 sig +35495 ta +pat +til +na +35500 na +35503 na +35506 na +35510 ina +35513 šu +35518 uṭ +35526 su +la +aš +hi +35534 sig +35538 u +aš +lu +35546 niš +35549 sig +35552 ina +35555 šu +tara +kas +ma +35562 uṭ +35570 su +tug +35576 ina +35578 sig +35581 mi +ina +35585 šu +35587 ma +35591 uṭ +35598 u +ri +mu +ta +35604 giš +35615 sah +le +e +35619 ti +35625 niš +35627 ina +35630 sar +tara +bak +35635 ma +35643 u +ri +mu +ta +35649 giš +šu +nim +35656 ina +35659 sah +le +e +35665 ina +35669 tara +bak +35672 su +35687 šim +35698 tara +bak +35722 sah +le +e +35759 gu +ur +35790 zu +35817 tara +bak +35844 u +35925 giš +35955 šu +35971 u +35995 šu +ṣab +ta +šu +ma +36020 ša +bu +lu +te +36042 šu +36044 u +36056 šu +36058 u +36068 šu +36087 u +36091 ina +36151 sah +le +e +36177 ma +36201 šu +36204 u +36206 u +36210 u +36214 lu +ur +pa +na +36221 na +36225 na +as +har +36233 na +36241 giš +36244 su +36246 ana +36248 na +36250 tu +36255 ina +36260 šu +36265 šu +u +zaq +qa +su +36271 na +mu +ṣa +na +36280 na +36283 ur +sag +d +asal +lu +hi +36294 šu +36296 su +ma +36300 niš +36307 u +36309 lim +u +tar +muš +36325 u +36349 šu +36355 ni +kip +ta +36359 niš +36361 ina +36363 giš +36369 ma +36377 ma +36380 šu +36383 šu +36387 giš +si +hu +36394 u +ba +ri +ra +ta +36404 ina +36407 sar +36418 ma +36420 d +36431 šu +36441 ma +36444 bi +36447 si +36450 ša +ne +e +36463 ma +ma +gal +36469 la +i +na +aš +ši +36481 ma +ma +gal +36490 šu +ma +gal +te +bu +u +36502 an +nu +tu +36519 šum +ma +36528 ina +36531 il +ta +za +az +ma +36544 šu +36546 u +kal +36550 m +36561 ki +ša +d +36565 d +taš +me +tu +36572 tu +iš +ru +ku +šu +e +hu +uz +zu +36583 na +mir +tu +ni +siq +ṭup +šar +ru +ti +ša +ina +36596 ni +a +lik +mah +ri +ia +mam +ma +šip +ru +šu +a +tu +la +e +hu +uz +zu +bul +ṭi +36617 muh +hi +a +di +36622 liq +ti +36626 ta +hi +zu +nak +la +a +zu +gal +lu +ut +d +nin +urta +u +d +gu +la +ma +la +ba +aš +mu +ina +ṭup +pa +a +ni +aš +ṭur +as +niq +36659 ma +a +na +ta +mar +ti +ši +ta +si +ia +qe +reb +36673 ia +u +kin +36680 šu +36682 šu +ina +ge +ši +šu +36688 im +ta +na +ʾa +36694 qer +be +na +36699 sar +36702 sar +36708 lu +36712 uš +ta +mah +har +ana +36718 šu +36728 šim +36733 šim +36744 pa +pa +si +36751 šim +36758 u +qut +ra +ti +36766 sar +36770 giš +36783 pa +pa +si +d +36792 a +ši +i +36798 u +36806 mušen +36811 u +36817 e +reš +ti +36825 šim +36854 ina +36857 ra +bi +ki +ta +rab +bak +ina +36868 ri +šu +lu +uš +ti +36875 me +36877 ina +36880 me +36882 ma +ta +mar +šum +ma +36893 šu +i +pa +šah +šum +ma +36905 šu +36907 u +kal +šum +ma +36919 id +36922 šu +šum +ma +36930 u +šam +ra +su +ma +36937 ana +36942 bu +le +e +u +36951 ša +36955 kat +36958 ina +36961 sar +ta +la +aš +36966 id +36968 šu +sah +le +e +ina +36976 ma +36978 u +ina +36981 giš +šu +nu +giš +36986 u +ak +tam +u +36992 ir +ta +na +haṣ +37001 sar +37003 ina +37006 pa +tan +37018 sar +kab +ru +ti +37026 tu +ša +ʾ +raš +šu +37032 sar +37034 ina +37040 ina +37043 pa +tan +37049 ina +37052 pa +tan +37056 a +bu +kat +37060 ana +37065 di +ina +37068 tuš +bat +ina +še +ri +37075 hal +ṣa +ana +37081 ma +i +ar +ru +37091 ina +37095 u +nam +ruq +qa +37100 ina +37107 ina +37111 me +er +gi +ra +nu +37118 ina +37122 sar +37125 ina +37129 šim +37133 ina +37142 ina +37147 giš +šu +ši +37152 ina +37156 u +al +la +nu +37162 ina +37168 mušen +37171 ina +37179 ina +37184 sar +37187 ina +37192 giš +37199 ina +37204 giš +šu +ši +37209 ina +37211 u +37215 ṣi +ba +ru +37221 ina +37227 pa +tan +37230 šu +ana +pa +re +e +e +te +ne +la +a +37241 ma +gal +37247 ina +37249 šu +mal +da +riš +37254 ku +pa +nu +šu +iṣ +ṣa +nu +du +37264 šu +37267 hu +37270 šu +kim +ṣa +šu +37277 šu +37283 ši +37285 u +37290 ma +gal +37293 i +par +ru +ina +37298 šu +37300 šu +37302 u +tab +ba +kam +37308 šu +i +te +nin +nu +u +37316 šu +tab +ku +mim +ma +37322 ma +37324 šu +ul +37331 sah +pa +su +ana +37336 šu +šim +37340 šim +37342 šim +37351 su +nu +37354 qe +37358 ina +37363 pa +tan +37366 šu +37369 ma +37372 šu +37374 šu +37376 id +bah +ra +37380 bah +ra +37386 tuš +te +še +er +ma +37395 u +a +ra +ri +a +nu +37402 ina +37405 pa +tan +37408 šu +37415 u +sah +la +a +nu +37421 ina +37426 pa +tan +37429 šu +37435 u +ṣi +bu +ru +37440 ina +37445 šu +37452 u +37456 ina +37459 u +37461 hal +ṣi +37464 šu +37473 ša +37475 e +ina +37479 u +37481 hal +ṣi +37484 šu +37493 ma +u +nap +paq +u +37500 šu +37503 du +37509 ana +37511 šu +u +37516 ša +im +37520 ina +37523 si +šim +37526 tu +sal +lat +u +37533 te +be +er +37541 ina +37544 ki +pi +i +mal +ma +liš +tara +muk +ana +37554 mul +37557 an +37561 mi +ina +37567 ša +šu +nu +ta +ša +hal +37574 pa +tan +37577 ma +i +lap +pat +su +ma +is +sal +la +ʾ +la +ta +na +kud +37592 uṭ +ina +37598 šu +37606 me +ta +37611 ur +ne +e +šim +37616 u +37619 giš +37625 ina +37629 ina +urudu +37634 šal +37636 ana +37639 i +tur +ru +i +kaṣ +ṣa +aṣ +37648 ana +37651 di +pa +na +37656 sar +i +šah +hat +37661 šu +an +na +a +ana +37667 šu +37669 ak +37673 u +37685 ina +37688 sar +tara +bak +ina +37697 ina +ti +bi +šu +37703 su +ana +37706 šu +iš +ta +na +da +as +su +37714 su +37717 šu +kim +ṣa +šu +37723 šu +37726 šu +37728 šu +ii +ʾ +aš +37733 šu +ana +pa +re +e +i +te +ne +el +la +37745 šu +iṣ +ṣa +nu +du +šu +37755 su +ana +37758 šu +giš +37761 giš +37764 šim +37770 šim +37774 eme +sal +li +ina +37779 tara +bak +ina +37784 er +ana +37787 šu +37789 ak +u +37794 šim +37800 ina +na +ur +ṣi +37805 niš +37808 ina +37813 alla +nu +37816 uš +37820 ana +37822 šu +37827 su +u +ša +šal +la +šu +37837 šu +i +hi +la +e +peš +37844 šu +37850 ana +37852 šu +šim +37856 šim +37858 šim +37865 u +37869 u +37871 u +ak +tam +giš +37876 u +37881 mušen +37888 niš +ina +37891 ba +lu +pa +tan +37896 ma +37898 sah +le +e +u +37904 kam +mu +37909 šim +37911 šim +37913 šim +37917 šim +37920 u +37925 u +37929 u +ur +nu +u +37934 su +nu +ina +37939 ma +37944 u +37947 u +37951 u +37954 šim +37960 i +37962 d +37970 u +37972 u +37975 u +37978 sah +le +e +37982 sar +37997 mušen +u +ak +tam +38004 šim +38008 ina +38011 ma +38013 u +38023 ma +38028 šim +38031 sar +38036 ina +38039 šal +38041 ma +38043 u +ur +nu +u +u +38050 u +šib +bu +ra +tu +38058 u +38061 šim +38068 an +dah +še +38077 an +nu +ti +ina +38083 ma +38089 u +38091 šim +38101 ina +38103 tuš +bat +ina +še +ri +38109 pa +tan +38112 ma +38115 u +38128 ina +38131 ma +38135 u +38138 šim +38144 u +38146 lim +u +38149 niš +u +tar +muš +u +38156 na +ga +bi +i +u +ak +tam +u +38172 niš +38174 ina +38177 ma +38182 u +sah +la +a +nu +38204 ut +hi +ra +38210 u +38216 sar +38225 sar +tuš +te +mid +ina +38231 tuš +bat +ina +še +ri +38237 ina +38239 šu +u +38242 šu +38245 ma +38252 kab +ru +ti +38256 ma +ina +eš +38261 lu +38263 lu +ah +ha +za +lu +a +mur +ri +qa +nu +38274 su +u +ur +ne +e +u +38282 u +38286 šim +38289 šim +38294 ina +38298 šal +ta +ša +hal +38304 ana +38307 u +38309 a +nu +u +mur +gab +ri +a +nu +u +a +ri +hu +u +38323 u +ṣa +ṣu +un +ta +u +si +si +ni +38333 bi +u +38337 u +38341 u +38344 u +38346 u +tar +muš +u +38355 u +38361 šim +38364 šim +38367 sah +le +e +38372 u +38375 u +sah +la +na +38380 ina +38386 qid +ha +lu +ba +ṭa +38392 ana +38394 šu +šim +38397 u +tar +muš +u +38402 lim +šim +38405 u +38409 šim +38413 a +ša +a +pa +šit +ta +u +lu +ba +ṭi +38424 u +38426 u +38437 niš +38443 su +u +38448 pa +tan +a +he +en +na +a +38456 ina +38459 ma +38465 ana +a +ša +a +pa +šit +ta +u +lu +ba +ṭi +38477 hi +38486 pa +šit +tu +38490 su +šim +38494 u +38497 u +38500 u +38508 u +38512 kam +mu +ša +lu +38517 u +38523 ma +38525 u +38528 u +38535 šim +38537 šim +38546 u +ak +tam +u +38554 šim +38557 šim +38568 i +ša +riš +38579 a +ši +a +pa +šit +tu +u +lu +ba +ṭi +38590 ana +38592 šu +38595 šim +38600 u +ur +nu +u +38606 u +38610 niš +38613 ina +38617 tu +ša +ha +an +ana +38623 šu +38625 ana +ši +bi +38629 šu +38633 pa +tan +38637 šu +i +kaṣ +ṣa +as +su +38647 ina +ge +ši +šu +38652 i +ar +ru +38657 pa +šit +ta +tu +ga +na +38664 ana +38666 šu +šim +38670 šim +38675 u +ak +tam +u +38685 su +nu +ina +38690 tara +muk +ina +38694 tuš +bat +ina +še +ri +38700 pa +tan +ta +ša +hal +38706 ma +tu +ša +ʾ +ra +šu +ma +38725 eṭ +li +38728 eṭ +li +38731 i +38734 u +ri +eṭ +li +e +el +ša +li +li +38746 ti +ma +ga +ra +aš +ga +ra +aš +ša +38758 an +ra +ti +e +zib +ba +mu +38773 ze +am +u +šim +gen +38783 eme +38785 ze +ni +za +mu +e +ši +du +a +38794 izi +gen +te +ni +ib +38800 tu +du +ga +d +nin +girim +38807 d +en +ki +ke +dag +38813 lag +mun +šu +u +me +ti +nam +šub +eridu +ki +ga +38828 ka +ka +na +u +me +ni +gar +38836 im +gen +gu +du +ni +ta +he +em +ma +ra +du +38848 bu +lu +uh +gen +he +si +il +le +38857 mar +tu +mar +tu +mar +tu +pa +šit +tu +ma +mar +tu +38871 mušen +38873 it +ta +na +al +lak +a +lak +ta +it +ta +na +za +az +ina +gi +sal +li +ša +38892 i +da +gal +a +ki +lum +ak +li +i +da +gal +ša +tu +u +ku +ru +un +ni +ki +i +tak +ka +la +ak +la +ki +i +ta +ša +ta +a +ku +ru +un +ni +a +ma +qu +tak +ku +nu +šim +ma +tu +ga +ša +a +ki +i +38946 ar +qa +at +a +ruq +38952 ša +a +ruq +lu +38957 ša +a +ruq +na +qid +sa +ina +e +ki +38971 ik +kal +ina +a +tap +pi +a +ruq +ti +38984 i +šat +ti +i +suk +ši +giš +38992 ul +u +tir +ra +pa +ni +ša +39000 i +suk +ši +kir +ba +na +ul +u +šaq +qa +a +re +ši +ša +i +suk +ši +pil +li +u +39022 u +39025 mar +tu +39028 im +ba +ri +ana +ša +ha +hi +it +bi +39038 ul +ia +ut +tu +39043 d +e +a +u +d +asal +lu +hi +39052 d +da +mu +u +d +gu +la +39064 ša +pa +šit +ti +39076 sar +pa +pi +ra +39081 niš +39083 aṣ +39093 uṭ +39098 ad +39101 d +e +a +39106 lip +ṭur +39113 u +39115 nu +hur +ti +39119 di +ana +39126 pa +tan +39129 ma +ina +eš +39146 ina +39149 šu +39157 ina +39162 u +39165 šu +39167 u +nab +ruq +qa +ina +39176 u +39179 šu +39182 u +39184 lim +ina +39191 u +39194 šu +39196 u +sis +sin +ni +39201 bi +ina +39207 šu +39213 ma +at +qa +ina +39221 šu +39230 ina +39236 šu +39240 u +a +ra +ri +a +nu +ina +39251 šu +39256 u +39259 ina +39264 šu +39269 u +me +er +gi +ra +nu +ina +39280 šu +39285 su +39287 sar +39289 ina +39292 ma +i +ar +ru +39300 hi +qa +39304 ma +i +ar +ru +39311 hi +qa +39319 ma +i +ar +ru +39327 šim +39330 ina +39333 ma +i +ar +ru +39339 u +me +er +gi +ra +a +na +39347 ina +39350 ma +i +ar +ru +39357 u +39359 lim +39361 ina +39364 ma +i +ar +ru +39372 lu +ina +39375 lu +ina +39379 ma +i +ar +ru +39388 sar +39390 ina +39393 ma +i +ar +ru +39405 ina +39408 ma +i +ar +ru +39420 ina +39422 tara +muk +ina +39426 tuš +bat +39429 ma +i +ar +ru +39436 u +39439 šim +39441 u +39444 ina +39446 ina +39448 tuš +bat +39451 ma +i +ar +ru +39458 u +39463 sar +a +he +na +a +39469 ina +39472 ma +i +ar +ru +39482 ma +39484 su +ana +39489 šu +39491 a +39495 šu +39500 ud +du +hu +39505 šu +na +šu +u +39510 u +39512 u +tar +ra +39522 u +za +bal +ma +39534 ma +39537 su +pa +nu +šu +ka +lu +39544 šu +39547 šu +ṣa +bit +ši +pir +šu +39554 ma +39560 šu +39562 pa +nu +šu +39566 ši +hat +39570 a +mur +ri +qa +nu +39577 šim +39580 ina +39583 šim +39587 ina +39590 šim +39593 ina +39597 giš +39601 ša +im +39605 ša +39610 ina +39613 u +mur +ra +an +39618 i +39620 ina +39623 u +kur +ka +na +39628 ina +39631 u +39633 lim +39635 ina +39638 u +nam +ruq +qa +39643 ina +39646 u +nam +ruq +qa +39651 ina +39660 ana +39664 tu +sak +39667 šim +39670 ina +39673 šim +39677 ina +39680 šim +39683 ina +39686 u +nam +ruq +qa +39691 ina +39700 ina +39703 ina +39705 tuš +bat +tu +sak +39710 im +39714 ina +39716 e +re +ni +u +39723 giš +bi +ni +u +39730 ina +39734 giš +bi +ni +39738 ina +39742 giš +bi +ni +39746 ina +39748 u +39752 giš +šu +ši +39758 u +39762 ina +39766 giš +39770 giš +39774 ina +39777 er +39780 šu +nu +ti +tu +sak +tu +kaṣ +ṣa +39789 ma +ina +eš +u +a +ṣu +ṣum +ta +u +a +nu +nu +ta +ina +qut +rin +ni +tu +qat +tar +šu +39811 d +39815 ša +ina +u +39820 zu +ta +mah +har +ina +39830 sip +pi +39833 ki +lal +le +e +39838 ina +39843 ra +am +39846 uṣ +ṣa +a +uš +te +eš +šir +ti +tur +ra +na +di +ta +e +ti +iq +u +39867 ina +39870 šim +39874 ina +39878 u +ka +zi +ri +39883 ina +39886 u +39890 ina +39894 giš +39899 ina +39911 u +39916 ina +39924 u +39927 qut +ri +39930 ina +39932 u +39936 giš +39948 giš +šu +ši +39955 ina +39957 tuš +bat +39960 hu +bi +bi +ta +39966 giš +39970 ša +im +39975 šum +ma +ina +39981 giš +39986 sah +le +e +40003 ta +tab +bal +40025 ina +40031 ina +40039 kab +ra +40044 mi +40054 šim +40056 ina +40058 u +40070 ina +40072 u +40074 lu +40078 ma +40082 u +ak +tam +40090 ina +40092 u +40102 ina +40107 šim +40110 šim +40118 ina +40120 u +40131 ina +40133 šu +40135 an +40140 šu +40145 giš +40150 ina +gi +40154 ana +40158 šu +40160 ah +40165 šu +40171 šu +40174 šu +40181 ri +it +ku +ba +ti +40191 qe +tu +qal +lap +ina +na +40202 ina +40208 ma +ina +eš +40215 sah +le +e +40222 su +u +40229 ma +ina +eš +40237 ina +40239 u +40242 ma +ina +eš +40248 ši +ši +ta +40252 ina +40255 šu +40258 ta +qal +lap +40264 šu +40269 šu +40274 u +40279 ina +40282 an +nu +ha +ra +40287 ina +40293 ina +40299 mušen +40301 ina +40305 ina +40308 ina +40311 šu +40316 u +40318 u +40322 u +40327 ta +ṣa +hat +ina +40333 ma +ina +eš +40340 sar +40343 mušen +40346 ina +40352 šu +te +te +ne +qi +ma +ši +ši +ta +40362 ah +40366 šu +40373 ina +40375 u +40378 šu +tu +šam +ad +ma +40389 šu +a +mur +ri +qa +nu +40396 u +40399 ina +40402 ma +ina +eš +40408 giš +šu +ši +tu +bal +ta +sak +ina +40417 tara +sa +an +40421 d +40424 ma +ina +eš +40429 u +40433 tu +bal +ta +sak +ina +40439 tara +sa +an +40443 ma +ina +eš +40447 u +an +nu +ha +ra +40453 ina +40456 ma +ina +eš +40464 mušen +40466 ina +40469 ma +ina +eš +40474 giš +40479 ina +40481 ina +40483 tuš +bat +ina +40491 šu +40499 ina +40501 ina +40503 tuš +bat +ina +40511 šu +40513 giš +40518 ina +40521 šu +40524 u +40529 ina +40532 šu +40535 giš +40539 ina +40542 šu +40546 a +bu +ka +ti +ta +sak +ina +40555 šu +40557 u +40563 ta +sak +ina +40567 u +40570 šu +40574 šu +40577 šu +40579 u +40583 šu +40585 ah +ha +zu +40595 ta +ša +40598 ta +sak +ina +40603 ah +ha +zu +ša +40608 šu +40611 am +40614 ah +ha +za +40618 šim +40621 ina +40624 šim +40634 ina +40636 u +40639 ma +ina +eš +šim +40646 ina +40649 u +ha +še +e +40654 ina +40663 ina +40666 šim +40669 ina +40674 ah +ha +za +40679 giš +šu +še +ta +sak +ina +40686 tara +muk +ina +40690 tuš +bat +40695 ah +ha +za +40699 u +ṣu +ṣe +em +ta +u +a +nu +nu +ta +ina +qut +ri +ni +tu +qat +tar +šu +u +40724 su +ma +ina +eš +ru +ša +am +ša +si +ip +pi +40736 ki +lal +le +en +40741 qe +ana +40746 di +ta +ap +ta +na +ša +aš +gi +ir +ra +40757 uṣ +ṣa +a +am +uš +te +eš +še +er +ti +tur +ra +na +di +a +am +i +40779 ah +ha +za +40783 su +40785 giš +40789 ša +40791 im +40795 qe +ina +40799 u +40806 u +40812 ina +40814 šim +40819 ina +40822 u +40824 lim +u +40828 ina +40831 u +40843 šim +40845 šim +40848 ina +40851 pa +tan +40868 niš +ina +40871 tara +40873 tu +zak +ka +40889 ina +40891 tara +40893 tu +zak +ka +40897 hal +ṣa +ana +40902 di +40904 pa +tan +40910 im +40914 ina +40916 u +40920 giš +bi +ni +ina +40927 giš +bi +ni +40935 giš +bi +ni +40939 ina +40941 u +40945 giš +šu +ši +ina +40950 u +40953 u +40957 ina +40964 giš +šu +ši +40968 giš +40972 ana +40975 ina +40978 er +40980 a +ta +ša +hal +40986 pa +tan +40992 ah +ha +zu +ana +40998 šu +41000 a +ma +41004 šu +41009 ud +du +ha +41014 šu +na +šu +u +41019 u +41021 u +tar +ra +41026 u +za +bal +ma +41035 ah +ha +zu +41041 su +pa +nu +šu +41046 šu +ka +la +šu +u +41053 šu +41055 ana +41057 šu +a +tu +lu +41064 su +41066 ub +bal +41078 id +41083 ina +lam +41086 šu +ana +41090 ru +uš +ša +ša +sip +pi +41101 m +41112 ki +ša +d +41116 u +d +taš +me +tu +41123 ra +pa +aš +tu +iš +ru +ku +uš +e +hu +uz +zu +41137 na +mir +tu +ni +siq +ṭup +šar +ru +ti +ša +ina +41150 ni +a +lik +mah +ri +ia +mam +ma +šip +ru +šu +a +tu +la +e +hu +uz +zu +bul +ṭi +41171 muh +hi +41175 liq +ti +41179 ta +hi +zu +nak +la +a +zu +gal +lu +ti +d +nin +urta +u +d +gu +la +ma +la +ba +aš +mu +ina +ṭup +pa +a +ni +aš +ṭur +as +niq +41212 ma +a +na +ta +mar +ti +ši +ta +as +si +ia +qe +reb +41227 ia +u +kin +41235 su +41237 ma +41240 kal +ma +tu +ul +i +sa +niq +šu +41258 ana +41261 ša +41263 u +41269 šu +ma +41274 šu +41283 ina +41286 e +re +ni +41297 su +kal +ma +ta +ma +tu +uq +ta +ma +li +u +mu +ur +ru +41321 za +ku +ti +šu +i +na +pa +ah +ma +41336 la +ba +ši +i +giš +41343 ina +41348 kal +ma +tu +ul +ib +ba +aš +ši +41360 su +ek +ke +ta +u +ri +šu +ta +41370 d +41373 ina +41376 e +re +ni +41383 su +41388 d +41390 ta +qal +lu +ina +41398 su +tu +kaṣ +ṣa +id +ra +ša +41406 ta +qal +lu +ina +41413 su +tu +kaṣ +ṣa +41421 su +sa +ma +nu +41426 it +i +raš +ši +šum +ma +i +na +sah +i +na +ah +41439 nu +41441 bi +41443 u +41452 di +ki +giš +41464 mušen +41466 ša +giš +41473 ti +41475 u +41478 ina +41481 sar +41483 ti +41485 aš +41488 su +41490 ab +tu +kaṣ +ṣa +41495 ša +41499 i +41504 su +sa +ma +nu +41509 it +41512 ša +na +pu +li +ša +41523 su +41525 ma +ina +41528 giš +ar +ga +ni +41533 bi +41535 u +41543 ša +41545 maš +hal +ti +41559 mušen +ha +ṣab +ti +na +41566 u +41574 niš +41578 su +ina +41583 giš +41590 an +nu +ti +ana +41597 su +ma +41604 su +41607 šum +41609 it +a +la +pa +a +ša +41619 a +sur +re +e +ša +41639 giš +41643 giš +41645 ša +ina +pi +ti +iq +ti +šu +i +ra +bu +u +bar +ša +41667 giš +sir +di +41671 giš +bi +ni +41675 giš +41690 su +ma +41697 su +41702 it +a +la +pa +a +ša +41725 šim +41728 šim +41730 u +41739 ni +kip +ta +41743 nis +41748 a +šu +u +41753 a +hi +iz +41762 su +a +šu +u +41767 it +41772 šim +41775 šim +41789 su +a +šu +u +41794 it +41799 na +41807 ana +41809 šu +u +na +hi +ri +šu +41820 su +a +šu +u +41825 it +šim +41835 lu +u +ina +41841 šu +41851 šu +41853 it +41860 ba +lu +pa +tan +41865 šu +ma +41870 a +šu +u +lu +41875 tu +41877 su +41880 sah +le +e +kab +ra +ti +41901 u +nu +ut +41905 šu +nu +ta +tab +bal +tu +ša +bal +ina +41915 ka +ta +pa +ša +aš +41936 a +šu +u +lu +41941 tu +41943 su +41946 u +41952 sar +41955 dug +41957 ta +pal +la +aš +41969 dug +41971 ina +41979 hi +41981 ta +šar +rap +gi +41987 ta +pal +la +aš +ma +ina +41994 at +dug +41998 ta +sa +niš +42006 gi +42010 a +ina +42013 šu +42015 ad +42021 al +42024 u +42030 ma +ina +eš +42035 a +šu +u +42039 it +im +42043 ina +42048 ma +42050 uṭ +42053 a +šu +u +42057 it +42059 et +u +42062 et +42065 ina +42067 tu +qat +tar +ha +an +za +a +ša +42080 qe +42087 an +ina +42090 šu +u +la +ʾa +at +ma +ana +na +hi +ri +šu +in +niq +ma +42105 uṭ +42111 tur +ar +42114 ina +42117 u +42121 ma +42123 uṭ +42128 su +a +šu +u +a +hi +iz +eriš +ti +42138 sar +42140 u +42142 ina +42147 me +šu +42152 uṭ +42159 id +sah +le +e +42164 ti +ana +42172 an +ma +42175 uṭ +42181 tu +zak +ina +42185 tuš +bat +ba +lu +pa +tan +42192 šu +42199 šur +šum +me +42204 tu +zak +42210 iš +tu +e +liš +ana +šap +liš +tu +maš +šad +42224 ma +42231 ina +42233 ta +sak +42237 su +42240 u +42243 ina +42247 ina +urudu +42252 šal +42255 ma +42259 a +šu +u +42263 it +42265 šim +42267 šim +42269 ina +42272 šu +ana +na +hi +ri +šu +in +niq +ma +42285 šim +42288 šim +42290 u +42295 ina +42298 na +hi +ri +šu +tu +qat +tar +42314 ma +42318 a +šu +u +42322 su +u +42325 lim +u +42331 sar +42333 u +42340 ina +42343 su +ina +42347 šu +42349 qar +ra +di +ia +qar +ra +di +ia +42359 qar +ra +di +ia +42364 za +ah +za +ah +u +qar +ra +di +ia +ma +hu +ul +qi +hu +ul +qi +ha +al +ti +ib +ha +al +ti +ib +ia +nu +um +ma +te +ne +eš +ma +mar +42399 di +hu +un +di +hu +un +du +li +rap +šu +ma +42411 šu +42413 i +na +a +aš +ma +ʾ +du +ma +la +42428 a +su +u +ša +a +me +lu +ti +42449 sar +šim +42454 a +ši +i +ina +42460 šu +42462 an +ni +ta +42466 šu +42468 nu +ma +42472 edin +lal +edin +na +edin +lal +edin +na +edin +ki +gir +si +ga +edin +ki +gir +si +ga +mul +ra +ku +u +ma +an +du +gi +ki +na +mul +mul +da +ta +42515 u +42518 ta +pa +aṣ +ina +42528 šu +42530 nu +42533 ma +42536 a +ši +i +42540 si +42542 u +kam +ka +di +42547 ina +42551 u +ka +man +ta +42556 ina +42563 ina +42567 u +ha +šu +u +u +42573 sah +le +e +u +zi +bu +u +42583 šim +42591 ta +sak +ina +42596 u +42601 ma +42605 a +šu +u +42609 su +ana +42612 šu +42617 mušen +42619 eme +sal +lim +u +42636 su +42638 si +42640 ma +ta +bi +lam +ana +42647 šu +42649 sig +42660 iš +ka +gi +im +ma +42668 šu +uh +di +am +42698 as +su +u +42704 šu +42728 nu +ana +na +hi +ri +šu +42747 ba +ah +ra +42751 ba +ah +ra +42755 ma +42772 u +42779 ina +42785 it +ta +mu +uh +42793 a +ša +a +42802 u +aš +lim +ina +42808 šu +ma +42817 giš +hur +hur +u +pa +ak +u +pa +ak +42833 giš +42843 ana +42845 šu +ta +šap +pak +ma +ina +eš +42862 u +42864 u +tar +muš +u +42869 lim +u +42873 ina +42886 an +ina +še +ri +42892 su +42894 si +42897 ma +ina +eš +42913 sar +42915 ti +ina +42919 e +re +ni +42929 am +ana +42933 šu +42941 tu +kaṣ +ṣa +ina +42947 e +re +ni +42951 ina +42959 in +42962 su +42964 si +42969 ina +42972 e +re +ni +42978 ana +42981 di +42983 ib +taš +lu +42988 su +42991 ku +lil +ta +43002 ina +43009 ma +43012 a +43023 su +tu +kaṣ +ṣa +ma +43040 šu +ma +ina +še +ri +ina +43048 ti +43051 su +43053 si +43056 e +re +ni +43065 tur +ar +43075 ru +43078 ma +43085 e +re +ni +43089 am +ana +43093 šu +43104 giš +43109 ina +43112 e +re +ni +43121 d +43123 ina +li +ši +43134 d +43136 ina +43139 i +43147 u +43151 ina +43158 u +ak +tam +43162 ina +43172 u +43176 ina +43183 u +43185 ina +43192 aṣ +43195 su +43197 giš +43200 tur +ar +43205 su +43207 ab +43211 su +43222 tur +ar +43227 su +43229 ab +43243 ina +43246 e +re +ni +43253 ma +43256 a +43266 su +43275 u +43279 ina +43282 sar +43284 aš +43286 u +ak +tam +43294 ina +43297 ti +43300 su +43302 si +43307 gu +raš +tu +43311 u +43313 u +43317 niš +43319 ina +43325 ma +43328 a +43332 u +ak +tam +u +43339 ina +43343 su +43345 si +43347 giš +43351 ta +qal +lu +43355 en +43366 ud +43372 sa +ma +na +ša +43378 ta +kar +ma +43384 ud +ina +43388 i +43390 u +43393 ma +ina +eš +43398 u +43400 u +ak +tam +43405 gu +raš +ti +43411 su +ina +43416 u +43418 lim +u +43422 giš +43426 giš +bi +ni +43434 ina +43438 su +43440 ina +43449 su +43451 u +43453 u +u +ra +na +43458 ina +43464 ina +43467 i +43471 i +šal +lim +43483 u +43495 ana +ku +ra +ri +43500 hi +hu +bu +uš +43505 ina +šur +šum +me +43513 u +43517 ina +43519 ta +kar +43533 u +ak +tam +u +ṣa +lam +ta +43541 niš +43548 su +ku +ra +ra +43553 it +43555 d +nisaba +43558 ta +kar +43571 laq +laq +ta +šu +ta +tab +bal +ina +43581 si +43584 giš +43588 ina +43592 šu +43605 giš +43609 giš +e +lam +ma +ku +43616 giš +kal +mar +hi +43621 d +nisaba +43630 ina +šer +ti +43635 ab +šim +43639 giš +43641 tur +ar +43644 ana +43646 ina +43649 sar +43651 si +43654 giš +43658 giš +e +lam +ma +ku +43665 giš +kal +mar +hi +43675 su +tu +gal +lab +43682 ina +43686 šu +43691 giš +ku +ma +hi +43700 u +tar +muš +43704 u +qut +ra +te +43711 niš +43713 ina +43719 su +te +sir +ina +43725 si +ina +43729 sar +43733 giš +43738 giš +43744 u +43748 u +43751 giš +43763 u +43768 u +sag +gi +la +ta +43774 u +43779 e +u +43794 ina +43797 sar +43799 aš +43801 ma +43806 ina +43821 u +me +43825 ina +43827 u +me +ina +43831 ka +ina +43835 me +43837 si +43851 ina +43861 d +43863 u +43870 im +43878 su +ku +ra +ra +43884 u +43887 sah +le +e +u +u +ra +nu +43897 e +re +ni +43905 ku +ra +ra +43932 ina +ša +ni +i +43941 ana +43945 d +nisaba +ana +43953 sa +ma +na +te +sir +43960 ina +43977 sar +43980 sar +43986 su +43996 ba +aš +la +44010 ka +u +kal +44019 giš +44037 šim +44040 ina +44048 su +tu +kaṣ +ṣa +44062 su +44064 si +44069 di +44071 ab +44073 ku +ra +ri +44085 tu +ba +har +ina +44091 u +44094 e +re +ni +44101 tur +ar +44113 a +44125 e +re +ni +44132 u +44134 u +44137 a +ma +ni +ina +44143 u +44149 su +ub +hi +im +su +ub +hi +im +a +na +44161 la +ni +hu +bi +la +a +ni +hu +bi +la +ni +44176 šim +er +ra +44180 ku +ra +ri +44184 sa +ma +na +ša +44190 ta +kar +44193 ina +44202 ki +ni +ip +ki +ni +ip +ba +ah +44214 ina +an +ṣa +ab +ti +44223 ta +kaṣ +44230 sar +u +ṣa +lam +ta +u +44240 ma +mit +44243 šar +ra +qi +ina +44248 pil +ši +un +44253 a +šar +tab +ba +ni +i +d +e +a +lip +šur +44267 at +he +ma +at +he +e +he +le +e +ma +at +he +le +44284 na +gap +pa +ša +44291 ta +kar +qut +ra +44305 hi +44309 hur +ri +im +su +ub +hur +ri +im +a +la +šu +uh +ta +44330 a +pi +il +lat +aš +kur +ba +an +ni +id +ki +ia +ul +44359 gi +ha +ba +44373 hi +44383 hu +bu +uš +44390 ina +44392 tur +ar +44396 a +la +pa +a +ina +44411 tur +ar +44416 ta +ʾa +a +ša +44436 ina +44438 tur +ar +44443 u +44445 lim +44457 ta +kar +ina +an +ṣa +ab +ti +44468 ta +kaṣ +44491 si +ki +tu +44496 su +44504 ina +44510 su +44514 a +44517 si +44528 šu +44531 gud +44545 šu +44547 u +44552 ina +44555 u +44559 ina +44562 u +šiz +ba +na +44567 ina +44573 sah +le +e +44591 giš +44602 šim +44607 šim +44625 u +44630 u +44636 u +ur +ne +e +44641 ina +44644 ina +urudu +44648 tara +bak +ina +44652 te +ṭer +ri +44656 u +44660 id +ana +44667 sah +le +e +44675 mušen +44685 šim +44690 šim +44695 ma +la +na +aṣ +ma +ti +tu +šam +ṣa +ina +44708 aš +44710 id +ana +44718 giš +44722 ina +44725 sar +44727 šal +tu +kaṣ +ṣa +44732 id +ana +44749 ina +44752 sar +44754 aš +šim +44758 šim +44760 ana +44762 ta +za +ru +44766 u +44770 ana +44794 šim +44800 šim +44805 ina +44808 sar +ta +la +aš +44813 id +44817 šu +44820 u +er +re +e +44828 ina +44832 u +44834 hal +ṣi +44837 aṣ +ba +lu +pa +tan +44843 šu +ina +44846 šu +44849 ma +44854 šu +44856 šim +su +a +di +tu +ha +sa +ina +44866 tu +la +bak +44870 pa +tan +44876 šu +44878 ma +44887 ina +44894 sah +le +e +44913 ina +44917 aš +ina +44922 u +44929 šu +44931 u +44933 lim +44935 ina +44938 tara +muk +ina +44942 tuš +bat +44945 pa +tan +44949 giš +44953 ina +44958 ina +44961 sar +tara +bak +ina +44970 u +44974 ana +44979 sar +pu +ut +ta +44984 ta +sak +ina +45001 ina +45004 aš +ina +45012 šu +45014 ma +45019 šu +45022 šu +45034 ina +45042 ku +pa +tin +ni +45048 u +al +lat +45057 giš +si +ha +45061 ina +45074 ṭe +ne +ti +ina +45082 aš +45087 šu +45089 ma +di +ik +ša +45094 ši +45099 ana +45101 šu +45103 ak +ru +pu +uš +ta +ina +45113 u +45118 ina +45123 ina +45126 tara +bak +ana +45130 šu +45132 ak +45136 šim +45143 ina +urudu +45147 tara +bak +ina +45153 ana +45158 ina +45162 i +ar +ru +45172 u +45175 u +45179 ina +45183 tara +has +su +45188 sar +45197 giš +šu +še +šim +45204 giš +45207 šim +45209 šim +45217 ina +45219 te +ṭer +ri +45223 ana +45226 u +45230 ina +45235 ina +45243 ina +45247 giš +45252 sar +ana +45255 šu +45257 ak +45263 u +45266 u +45269 u +45280 ana +45283 u +45287 u +ti +ia +ta +45292 ina +45297 ina +45300 tara +bak +ana +45304 šu +45306 ak +45308 u +45312 giš +45315 giš +45317 ina +45321 tara +has +su +45325 giš +45330 sar +ana +45333 šu +45335 ak +šim +45338 šim +45344 ina +urudu +45348 tara +bak +ina +45352 te +ṭer +ri +45359 šu +45361 ma +45373 ana +45381 u +45390 ana +45392 šu +45394 ak +šim +45397 šim +45400 šim +45404 šim +45410 ina +45415 ina +45419 ana +45422 šim +45426 ina +45429 ma +i +ar +ru +45434 giš +45438 ina +45441 ma +i +ar +ru +45450 ina +45452 giš +45455 tara +has +su +45464 am +ana +45467 šu +45469 ak +45471 giš +šu +še +45481 u +45484 u +45488 šim +45494 ina +45499 ma +45504 ina +45508 ina +45512 ana +45515 u +45518 ina +45521 ma +i +ar +ru +45527 ina +45531 ma +i +ar +ru +u +45540 u +45543 šim +45546 sar +ina +45551 tara +has +su +šim +45557 ta +sak +45563 am +45566 ana +45568 tu +na +tak +ana +45573 šu +45575 ak +45577 giš +45580 giš +45584 giš +45588 giš +45592 giš +šim +45595 šim +45599 ina +45604 ma +45608 ina +45613 ina +45615 te +ṭer +ri +45622 šu +45624 ma +mim +ma +45628 u +45631 u +45634 u +45637 u +45640 u +ur +ne +e +u +tar +muš +u +45649 lim +u +eli +kul +la +u +45656 u +im +hur +45661 giš +45664 u +45668 u +45672 ina +45675 ina +45677 šu +45680 ina +45682 ina +45685 sar +45696 kab +ra +ša +45704 ina +45708 pa +tan +45711 šu +45713 bat +45716 šu +u +sak +ka +45723 ina +45728 ta +kan +nak +ma +45737 i +ar +ru +45746 ina +45753 giš +45758 ina +45764 ina +45767 u +45774 ad +45780 aš +45784 šu +ma +45789 ma +45793 uṭ +45815 u +45819 ina +45823 giš +45827 a +ša +im +45832 ina +45835 sar +45837 su +hi +bi +iš +hi +bi +iš +u +al +lat +45850 u +a +zu +ki +ra +ni +45868 sar +45886 ana +45889 ma +45891 pa +tan +45899 u +45910 ana +45913 ma +45915 šim +45918 ina +45923 ma +45927 u +45931 ina +45933 giš +45938 ina +45940 šu +45942 ak +ma +45945 ša +ru +ra +ša +u +45955 ana +45960 u +45963 i +45968 mušen +45970 u +al +lat +45978 u +45981 ina +45992 šu +45995 it +ta +ne +bi +ṭu +46001 šu +ana +par +re +e +e +ta +ne +pa +aš +ana +46013 šu +46015 sar +u +46022 ina +46026 pa +tan +46031 ana +46034 u +46037 su +46045 pa +tan +u +na +ṣab +46059 šu +46062 it +te +ne +bi +ṭu +46068 ina +46070 šu +46072 ur +i +le +bu +46078 u +46081 ana +46083 šu +46085 an +u +46088 sar +u +zi +ba +a +46094 ina +46100 me +46108 ana +46110 šu +46112 ak +46118 šu +46121 hu +it +te +ne +bi +ṭu +46128 pa +tan +46132 bah +ra +46135 šu +i +ar +ru +46143 šal +u +46151 ana +46155 u +46157 hal +ṣa +46160 ana +46162 šu +46164 ak +46170 šu +it +te +nen +bi +ṭu +46177 pa +tan +46180 ina +dug +46191 u +46195 eme +sal +li +ana +46203 ana +46205 tu +na +tak +ana +46210 na +aš +pak +ti +46215 ak +46218 ina +46222 ka +ka +lu +šu +46227 su +46232 šu +it +te +ne +bi +ṭu +46242 ana +46244 šu +46246 an +46248 sar +46250 u +46252 u +al +lat +46256 sar +u +46261 ina +46266 i +46269 ana +46271 šu +46274 u +a +zu +ki +ra +a +ni +46284 ma +46288 gan +ha +46294 giš +46304 šu +46306 bat +46312 šim +46315 ina +46318 u +46321 sar +46323 ina +46326 u +46329 sar +46331 ina +46336 u +al +lat +46343 šu +46347 šu +46350 hu +46354 šim +46356 ina +šur +šum +me +46361 ta +rab +bak +ina +46368 id +ana +na +aṣ +ma +ti +46375 sar +46378 ta +za +ru +46382 u +46400 šim +46402 šim +46405 u +46408 ana +46419 lu +ba +hir +46423 šu +ina +46427 tu +šap +ra +šu +ma +46437 šu +ma +gal +nap +hu +46446 ina +46448 šu +46451 ra +46454 su +46456 su +46458 id +ra +bi +ik +46465 šal +ina +46471 u +46478 sar +46481 sar +46484 sar +sah +le +e +u +ur +ne +e +46494 me +46500 ma +46506 šu +nap +hu +46514 su +46516 u +46522 ši +ana +46525 šu +u +46528 lim +u +46533 giš +46536 a +he +nu +u +46541 ina +46544 šu +i +par +ru +ma +46550 an +ne +e +46554 hal +ṣa +u +46559 šu +46562 sar +u +46568 šal +ana +46571 šu +46573 ak +ma +šim +46578 šim +46580 šim +46584 giš +46588 giš +46592 giš +46597 u +ur +ba +ti +46615 u +šim +46618 tu +sa +mah +ina +46626 su +ma +46633 šu +nap +hu +gu +ha +u +46642 ši +46644 u +46647 ana +46649 šu +u +46653 sah +le +e +46657 niš +46659 ina +46662 šu +u +ur +ne +e +ina +46670 sar +46672 šal +ta +ša +hal +46677 lu +ba +hir +ana +46682 šu +46689 šu +nap +hu +46694 šu +ru +pu +ul +ta +46701 ši +ana +46704 šu +46707 mušen +u +tu +lal +46715 giš +šu +še +ina +46721 u +46724 sar +tu +ka +an +46730 hal +ṣa +46734 u +46737 ana +46740 di +ina +46743 tuš +bat +ina +še +ri +ta +ša +hal +46752 pa +tan +46755 ma +46761 šu +nap +hu +46771 u +46773 d +46775 di +ik +ta +ša +46785 pa +tan +46797 šu +tu +sa +lah +ma +46806 šu +e +me +er +46813 giš +46820 ina +46822 u +46825 ana +46828 giš +46834 giš +46839 ana +46842 šim +46845 ina +46849 ana +46855 munus +46858 ina +46861 šu +46863 an +ana +46867 giš +46872 giš +46879 ina +46885 šu +46887 ṣe +en +46893 lu +46896 i +lik +ma +46905 tu +uš +ṣe +en +šu +i +ši +hi +iq +ma +46920 šu +em +ru +46926 giš +šu +nim +46932 ana +46936 ina +46938 tuš +bat +ina +še +ri +46944 pa +tan +46948 ma +46953 šu +em +ru +46958 hu +46960 šu +iš +ta +na +si +46966 u +46970 giš +46974 šim +46976 ina +46978 šu +i +na +ʾ +is +46985 i +ina +46990 šim +46992 ina +46997 ana +46999 šu +47001 ak +47003 giš +47006 šim +47008 šim +47012 a +bu +ka +ti +giš +47020 ina +47025 ina +47029 ina +47031 giš +47034 ir +ta +na +haṣ +47041 šu +47049 su +47056 u +47060 giš +47064 ina +47069 šu +47071 šu +47073 hal +ṣa +ina +47081 sar +47086 šal +ana +47089 šu +47091 šim +47096 šim +47099 giš +47103 giš +47107 ina +47112 ina +47120 šu +47126 u +47128 ina +47130 šu +47133 ra +47137 šu +up +ta +ṭa +aṭ +ra +47153 ina +47159 sar +47162 sar +47176 šu +e +sil +47182 šu +47184 a +ba +du +u +me +ni +ir +a +ba +du +u +me +ni +ir +47203 es +li +47210 šu +ana +47214 nu +47219 šu +47221 u +47223 la +i +mah +har +47239 sar +47247 šu +47255 ma +47257 ša +47259 šu +i +ša +haṭ +aṭ +im +me +si +47274 šu +47276 la +i +mah +har +47281 giš +47284 ina +47286 u +47291 ba +lu +pa +tan +47296 šu +ma +47302 u +47305 ṭu +u +47309 u +47313 u +ur +nu +u +47318 sar +u +ti +ia +ta +u +47326 u +47330 šim +47333 šim +47336 šim +47339 giš +47341 giš +47344 šim +47352 giš +47360 ina +47362 tara +muk +ina +47366 tuš +bat +ina +še +ri +ina +urudu +47376 šal +47380 hal +ṣa +ana +47385 ana +47387 šu +47389 ak +ana +47394 ma +47400 mat +qa +47408 mat +qu +47414 u +a +ra +ri +ia +nu +47421 u +mer +gi +ra +a +nu +47428 u +si +sin +ni +47433 mal +ma +liš +47437 ina +47439 lu +47443 pa +tan +47446 ma +ina +47449 šu +47452 ma +47458 šu +ga +an +nu +ga +ah +ha +47467 u +47469 muṭ +ṭu +47474 ši +u +47479 ina +47483 ma +i +ar +ru +u +47490 sah +le +e +47494 ina +47497 u +ur +ne +e +ina +47504 šal +tu +kaṣ +ṣa +ana +47510 šu +47512 ak +47514 giš +47518 u +47520 d +47523 giš +bi +ni +šim +47528 šim +47531 šim +47534 šim +47536 šim +47539 ina +47544 tara +bak +47547 ma +47551 ina +47556 ina +47560 ina +47562 giš +47565 ir +ta +na +haṣ +ma +47574 šu +e +ta +na +ša +aš +ma +47582 u +47585 la +i +mah +har +47592 šu +47595 šu +47598 su +gi +na +a +47610 sar +47613 sar +47616 sar +47619 ina +47621 giš +47627 u +47631 u +47634 ina +47637 ma +47642 šu +ha +ah +ha +47647 ana +47649 šu +47652 šim +47654 šim +47656 u +47659 šim +47663 ina +47668 šal +ta +ša +hal +lu +ba +hir +47678 ana +47682 pa +tan +47685 šu +i +ar +ru +ma +ina +47697 hal +ṣa +u +47706 pa +tan +47709 šu +47711 bat +47713 šu +47717 ha +hu +47720 su +47722 u +47725 giš +47729 u +47732 u +47734 sar +u +47745 ina +47748 sar +tara +bak +ina +47758 šu +47760 id +47764 ina +47768 pa +tan +47772 ana +47776 šim +47779 ina +47784 pa +tan +47788 ana +47791 u +47795 ina +47799 pa +tan +47806 ina +47808 šu +47810 hur +ana +47813 šu +47815 u +47819 ša +ina +47822 ka +d +47831 ina +47835 pa +tan +47842 ina +47844 šu +i +le +eb +bu +u +47854 u +47859 niš +47861 ina +47864 pa +tan +47872 di +ik +ši +ina +47877 šu +47880 šu +47884 giš +47889 giš +47895 šim +47899 giš +47905 eme +sal +li +šim +47917 ina +47921 šal +47924 ana +47927 ana +47929 šu +47931 ak +47935 ina +47937 šu +uš +tar +ʾ +ab +i +le +he +eb +ki +ib +su +šu +še +pi +47954 su +u +47959 šu +47962 šu +47965 šu +u +šam +ma +mu +šu +u +47974 šu +47977 šu +ma +ṭu +u +ni +ip +še +47987 šu +i +ta +na +nu +u +47995 ina +kal +47998 me +u +kil +šu +48008 šim +48010 u +48013 u +48016 sah +le +e +48020 sar +48022 a +ma +ni +u +ur +ne +e +48030 giš +bi +ni +48041 ina +48045 u +48048 ta +ra +sa +an +ina +48054 ana +48057 tuš +bat +ina +48065 šal +ta +ša +hal +48074 u +48080 na +48086 ana +48089 la +am +d +48093 na +pa +hi +48097 šu +ina +48100 tu +šap +ra +šu +šum +ma +48110 mur +ana +48113 šu +48115 ak +48123 ma +la +i +še +eb +bi +48131 šu +48134 hu +48136 šu +48139 har +48141 it +ta +šu +bi +sik +ta +48150 ina +48152 ta +mah +ha +ah +48157 giš +48163 sar +48170 u +48172 la +i +lem +48179 ša +48181 i +ša +ti +48186 hu +šah +hu +48190 su +48195 ina +48197 tuš +bat +ina +še +ri +48213 ma +ʾ +di +iš +e +na +ah +ma +48222 e +dip +ma +48231 ina +48234 sar +ir +ta +na +haṣ +48253 ma +la +i +ar +ru +ṣe +me +er +a +za +pi +48267 u +48271 šal +48273 ši +bi +šu +u +al +lat +hi +ri +48286 ma +la +ip +ru +la +iṣ +nu +uh +48296 ze +e +ze +na +48301 ana +48303 šu +giš +si +hu +giš +ar +ga +nu +giš +ba +ri +ra +ta +šim +48319 šim +48321 šim +48324 šim +48326 giš +48329 ina +48337 su +ana +48340 šu +48342 ak +48345 šim +48349 su +ma +48353 šu +48356 ma +48360 an +šu +tu +iṣ +bat +su +ma +la +u +šar +da +48373 ina +48377 šal +48379 ana +48382 ana +48384 šu +48388 ka +tug +48393 ta +ṣap +pu +48397 šu +ta +kar +48403 munus +48406 ina +48409 šu +48411 ina +eš +48418 ma +48421 šu +pa +al +qa +di +ig +la +ma +a +ṭi +ana +48433 šu +48435 u +48438 u +48441 giš +bi +ni +48445 u +am +ha +ra +48450 u +48459 niš +48461 ina +48464 aṣ +48466 pa +tan +48469 ma +ina +eš +48476 ma +48479 su +48482 su +48485 šu +im +ta +na +aš +ši +ina +48494 šu +u +pa +aš +šaṭ +ṭe +en +šu +la +ṣa +bit +48509 šu +48511 za +ana +48514 šu +u +48517 lim +u +48521 u +tar +muš +u +48527 u +48529 u +48535 u +48540 u +48544 u +kam +ka +du +u +eli +kul +la +48558 niš +48560 ina +48563 u +48565 ana +48567 d +gu +la +tuš +bat +ina +še +ri +la +am +d +48580 hi +la +am +ma +am +ma +iš +ši +qu +šu +48591 ma +ina +eš +48597 su +48599 ma +48601 ši +ne +e +ti +48608 ši +ina +da +ba +bi +šu +ik +ka +šu +ik +ta +ner +ru +u +48623 ip +te +nar +ru +48629 bi +šit +48633 ana +48635 šu +u +48640 ina +48643 pa +tan +48646 šu +ina +48650 sar +48654 giš +48657 ana +48659 šu +48664 giš +ur +ne +e +ina +gi +48672 ina +48674 šu +48676 ad +šim +48683 šim +48685 šim +48689 niš +48692 ina +48698 ina +48704 sar +48708 u +ur +ne +e +u +48714 sar +šim +48720 šim +48722 šim +48727 giš +48731 giš +48735 giš +48740 kal +bi +48744 niš +48753 ina +48757 šu +ina +48761 sar +48763 su +ma +48766 giš +48770 ana +48772 šu +48774 ak +ma +48778 šim +48782 ad +ma +šim +48786 šim +48789 šim +48791 giš +bi +nu +u +48797 niš +48799 ina +48805 su +48807 ma +ina +eš +u +48814 ina +48817 ina +48820 sar +48824 sar +šim +48827 šim +48830 šim +48840 giš +48844 giš +šu +še +48851 di +ik +šu +ina +48856 šu +48859 su +ma +48862 ši +ne +ʾ +ti +48867 i +ša +an +na +ʾ +šu +ina +ge +ši +šu +48878 i +par +ru +ina +da +ba +bi +šu +ik +ka +šu +ik +te +ner +ru +48895 bi +šit +48898 bi +48902 sar +48907 u +48909 lu +48912 la +uš +ta +mah +har +ut +ta +šar +48929 šim +48935 giš +48945 giš +48950 giš +48957 u +qut +ra +ti +48965 sar +48970 giš +48986 d +48992 u +ka +man +ta +49000 šim +49014 šum +ma +49027 giš +bi +nu +u +49034 ma +49036 ana +49040 ina +49043 pa +tan +49046 ma +49048 ana +49052 u +49058 ina +49062 aš +ina +49066 ri +49068 id +49071 aš +ina +49077 aš +ina +49081 šu +49083 ma +49087 ina +49094 aš +49097 šu +49099 ma +49103 u +49109 ina +49112 aš +49115 ana +49123 u +49126 u +49129 u +49132 u +tar +muš +49142 niš +49144 ina +49147 um +mi +ša +49151 šu +ta +ša +haṭ +ma +49165 šu +49169 a +ki +ṣir +te +49180 šu +qer +be +na +49185 u +ur +ne +e +49195 u +49197 d +49200 u +49203 šim +49213 ina +49216 tara +bak +49219 ma +49223 ina +49228 ina +dug +49231 tara +bak +ina +49236 ri +49239 šu +ur +ra +u +49245 id +49247 šu +ma +49251 ta +hab +bu +49257 ina +49259 hal +ṣa +49262 šu +49264 bat +49266 i +ar +ru +49270 su +49273 šu +iš +tu +49277 u +49282 giš +bi +ni +49288 giš +49295 šim +49309 ina +49312 sar +tara +bak +49316 ma +49320 ina +49324 ina +dug +49327 tara +bak +ina +49334 ri +ur +ri +u +49340 ana +49344 giš +49349 giš +49353 giš +49361 ku +49363 šim +49366 ina +49371 ina +dug +49374 tara +bak +49377 ma +49381 ina +49383 u +49386 ina +dug +49389 tara +bak +ina +49394 ur +ri +u +49399 id +49402 u +ti +ia +ta +ina +49409 pa +tan +49417 mušen +49423 u +49430 u +49433 ta +haš +šal +ina +49439 sar +tara +bak +49443 ma +49447 ina +49452 ina +dug +49455 tara +bak +ina +49460 ri +ur +ri +u +49466 id +ana +49474 u +49479 u +49488 mušen +49497 ina +49500 tara +bak +49503 ma +49508 ina +49513 ina +dug +49516 tara +bak +ina +49521 ri +ur +ra +u +49527 id +49529 giš +49533 ina +49536 pa +tan +49539 ina +49542 šal +tara +has +su +ana +49552 ina +49556 u +49558 d +49560 ri +49562 giš +49566 giš +49568 šim +49572 ina +49575 sar +tara +bak +49579 ma +49583 ina +49588 ina +dug +49591 tara +bak +ina +49598 ri +ur +ri +u +49604 ana +49607 šim +49609 šim +49612 šim +49614 šim +49617 u +ba +ri +ra +ta +šim +49624 giš +49626 giš +49629 šim +49632 ina +49635 sar +tara +bak +49639 ma +49643 ina +49648 u +49650 ina +dug +49653 tara +bak +ina +49659 te +ṭer +ri +ur +ra +u +49667 id +49673 ina +49676 ana +49686 u +49689 u +49695 sar +49697 giš +49702 giš +49707 giš +49710 ina +49713 sar +ina +dug +49717 tara +bak +ina +49722 ur +ra +u +49727 ina +49730 šal +tara +has +su +49736 ina +49738 u +49741 pa +tan +49744 tu +ša +ʾ +ra +šu +ma +49756 ka +la +49759 u +49761 ina +49765 ina +giš +49768 šu +la +49771 ina +še +ri +49776 ti +49778 šu +49788 šum +49793 šu +49797 a +49800 ta +aš +ni +qa +49805 ana +49807 šu +49822 šim +49827 šim +49833 šim +49838 šim +49851 giš +bi +ni +49860 niš +49862 ina +49865 tal +tap +pat +ina +49872 u +49878 šu +49883 su +ma +49886 ta +ina +49889 ka +u +še +ṣa +am +ma +ina +eš +49899 ki +ṣir +49904 u +49907 šu +la +49910 šu +ina +49913 šu +49917 šu +i +sa +hal +šu +ana +49924 šu +49928 sah +le +e +49934 šim +49940 šim +49945 u +49947 d +49952 ka +si +i +49958 pa +pa +si +d +49966 u +49972 u +50012 mušen +50016 u +50018 ti +50022 šim +50036 niš +50039 ina +50041 ina +urudu +50046 ra +bi +ki +tara +bak +ina +50057 me +50060 šu +50063 u +50066 šu +50068 šu +ma +ina +eš +50074 ki +ṣir +50077 bi +50080 u +50083 šu +50086 šu +ina +50089 šu +50092 ip +te +ne +ru +ana +50098 šu +50111 sar +50114 u +50118 ana +50121 ba +lu +pa +tan +50126 šu +50128 šu +50136 ina +50138 šu +50140 ma +50142 u +50145 šu +50148 ana +50153 i +50155 a +ma +ni +50159 niš +50161 ina +50164 pa +tan +50167 ma +ina +eš +ana +50179 qi +lip +50185 ina +50189 me +ba +lu +pa +tan +50195 šu +50202 šu +tu +sa +lah +ma +ina +eš +50212 u +50215 šu +50218 šu +50221 šu +ir +ta +nam +mu +50227 ina +50229 šu +50231 ur +ana +50234 šu +50247 sar +50255 u +50261 hal +ṣa +50267 i +50269 niš +tuš +te +mid +50274 ina +50276 ina +50278 mul +50280 tuš +bat +ina +še +ri +50286 šal +ta +ša +hal +50291 ina +50293 tah +ta +na +su +50298 šu +50301 u +50304 giš +si +ha +giš +ar +ga +nu +giš +50315 sar +50318 sar +50320 giš +50324 ana +50328 šal +ta +ša +hal +mar +ha +ṣi +tu +ša +at +tam +ma +ina +50343 su +50346 šu +50348 aš +giš +50353 u +50358 ina +50361 šu +50363 giš +50367 giš +šu +še +50373 niš +50376 ina +50381 ina +50386 su +ma +ina +eš +50394 šu +50396 šu +ina +ge +ši +šu +50402 im +ta +na +ʾ +50408 qer +be +na +50417 su +a +lam +50421 ana +ki +is +50428 m +50439 ki +ša +d +50443 u +d +taš +me +tu +50450 ra +pa +aš +tu +iš +ru +ku +uš +e +hu +uz +zu +50464 na +mir +tu +ni +siq +ṭup +šar +ru +ti +ša +ina +50477 ni +a +lik +mah +ri +ia +mam +ma +šip +ru +šu +a +tu +la +e +hu +uz +zu +bul +ṭi +50498 muh +hi +50502 liq +ti +50506 ta +hi +zu +nak +la +a +zu +gal +lu +ut +d +nin +urta +u +d +gu +la +ma +la +ba +aš +mu +ina +ṭup +pa +a +ni +aš +ṭur +as +niq +50539 ma +a +na +ta +mar +ti +ši +ta +si +ia +qe +reb +50553 ia +u +kin +50557 u +50574 sag +ki +mu +un +dab +50585 sag +sahar +ra +mu +un +dab +50598 a +da +pa +abgal +50606 sag +ki +mu +un +dab +50622 sig +50637 na +50653 a +ra +tu +e +a +ra +50666 šu +du +du +meš +šu +ne +ne +a +meš +eridu +ki +ga +mu +un +tum +50686 giš +50689 ša +im +50693 ša +ina +50697 i +nam +zu +zu +50702 qe +50710 šu +50712 nu +ina +50716 šu +tara +kas +ma +50721 uṭ +50723 sur +ru +ga +su +ma +hu +ma +ak +tu +ti +e +na +ha +at +ru +50742 ki +in +re +eš +na +ha +at +ri +50751 uk +kiš +tum +si +na +an +na +50763 lu +pi +tu +šab +ki +im +50770 an +ta +sur +ra +50779 tu +e +di +pa +ra +tu +e +50789 ha +ta +ra +hat +ra +50802 a +ra +ba +še +ra +50821 ra +mu +un +dab +50837 na +50840 na +50847 na +50849 na +50862 sag +ki +ni +sag +ki +50871 i +bi +ni +i +bi +50880 mu +ru +ub +bi +ni +mu +ru +ub +bi +50893 he +bi +da +a +na +mul +la +he +en +da +a +na +mul +la +50913 a +šu +u +ana +50919 šu +50924 tu +ina +50929 ši +ana +50934 ti +50939 ana +50941 ta +za +ru +50945 su +ma +50949 na +50952 na +50955 ta +sak +ina +50963 šu +50965 sa +ar +ʾi +50972 šu +50974 qe +50976 šu +50981 ša +50984 ta +sak +50990 nu +50995 ki +in +ip +ki +ni +ip +ki +ni +ip +šu +uh +ki +ni +ip +ši +ha +ma +51014 a +šu +u +51020 it +šim +51025 sar +u +51029 niš +51031 ina +51035 su +51038 a +šu +u +51042 it +51044 giš +šu +ši +51048 ina +51051 tara +muk +ina +51055 tuš +bat +ina +še +ri +51063 ma +51065 gi +51068 tur +ar +51071 ina +51073 u +51076 ša +pil +ti +giš +51083 a +šu +u +a +hi +iz +e +riš +ti +51093 sar +51096 u +51098 ina +51103 su +51106 ma +51111 su +51113 sah +le +e +ina +51120 šim +51122 ana +51124 šu +51126 an +51134 pa +tan +51138 u +51142 ma +51147 šur +šum +me +51159 ana +51162 tu +maš +šad +51170 giš +šu +ši +51175 u +51177 ina +51182 su +u +ka +la +51188 šu +51193 šu +51198 su +ana +51201 šu +51204 su +51207 šu +51211 ti +51213 te +qi +51217 te +qi +51223 ina +51233 šu +51237 ku +51239 ti +51243 na +51247 na +mu +ṣa +na +51252 na +51254 na +51258 na +51261 na +51265 giš +bi +ni +51269 giš +51277 niš +51279 ta +ša +pah +ina +51291 šu +ka +a +a +man +nam +ma +51299 ma +ina +eš +51304 e +nu +ma +bir +ṣa +51310 ru +51312 šu +ki +a +am +liq +bi +ša +d +en +lil +u +d +nin +lil +ana +ku +ša +d +iš +tar +u +d +na +na +a +ana +ku +i +qab +bi +ma +51344 uṭ +51347 ana +51350 zu +51352 qe +ina +51355 tu +kab +ba +ab +51360 ina +51367 šu +te +eq +qi +ma +ina +eš +51376 bir +ṣi +a +na +51383 e +51388 an +ana +51391 bi +giš +51394 u +51398 u +51400 giš +51402 giš +51405 giš +51408 giš +51410 giš +51412 giš +51416 šim +d +51420 u +51423 ina +51425 tuš +bat +ina +51433 d +51435 ina +51437 ṭa +bi +51440 šu +im +51443 im +51451 ina +51453 šim +51458 su +ma +51464 i +mar +ma +51468 bir +ṣi +ana +51478 giš +51480 u +51483 giš +51485 giš +51487 giš +51489 giš +51492 ana +51497 di +ma +51500 ina +51502 tuš +bat +ina +51510 im +51512 im +51519 ina +51521 šim +51526 su +ma +51532 bir +ṣi +ana +51543 mu +kil +51547 ti +51549 su +51551 lu +51553 lu +51555 ina +51557 tu +še +li +ma +51562 li +in +na +di +ina +51569 d +51571 e +re +bi +51576 ap +ti +51584 di +51587 i +pet +tu +šu +51592 u +mu +šu +ša +a +ti +giš +51600 ṣa +al +lu +51607 mu +kil +51611 ti +51613 su +maš +qi +ta +nar +ma +ak +ta +51625 ina +51627 šu +la +zi +iz +ma +u +ma +gal +i +li +hi +ib +51641 u +51647 u +51649 a +me +lu +ti +giš +51655 šim +51658 ina +51661 er +ir +ta +na +haṣ +ma +51669 giš +51674 en +ur +sag +d +asal +lu +hi +igi +bi +he +pa +51686 ur +sag +d +ša +zu +igi +bi +he +pa +51696 ur +sag +den +ki +igi +bi +he +pa +51705 ur +sag +d +nin +urta +igi +bi +he +pa +51715 ad +da +mu +dumu +sag +d +51722 na +an +de +51726 dumu +mu +nam +tar +51731 nu +un +bar +51735 lu +a +zu +di +ku +51741 nu +tar +re +tu +en +ka +inim +ma +sag +hul +ha +za +kam +51760 ina +51765 ak +51769 u +51771 lim +51774 u +51776 giš +kan +u +51780 giš +51786 ta +la +pap +ina +51792 šu +51794 su +51803 giš +51805 ṣu +51809 gir +giš +ša +e +ta +51816 ti +i +ru +51821 e +ri +iš +la +a +ši +a +51831 id +ra +nu +51836 i +ša +ti +i +ri +la +ib +šu +u +51847 id +ra +ni +a +a +u +še +ṣa +51856 gir +giš +ši +a +a +ib +ba +ni +51866 gir +giš +šu +51879 su +51882 mat +qu +ti +51900 ina +51902 giš +51908 su +51916 šu +51918 giš +51921 u +mur +ra +nu +51926 šu +51931 šu +ina +51942 su +u +51945 za +ku +ti +šu +51953 u +mur +ru +51961 ina +51970 su +u +51973 za +ku +ti +šu +51978 ah +u +51981 lim +ina +51984 giš +51995 su +51998 mat +qu +ti +52002 zap +pi +52011 ša +52014 tur +ar +52018 su +52020 ab +52024 ina +52032 šu +ru +uš +52051 niš +tur +ar +52056 ru +52058 an +nu +ha +ru +na +ga +bi +i +52067 niš +52070 ina +52085 u +52094 ina +52101 giš +52105 lu +52115 giš +nu +ur +ma +a +52127 ina +52130 aš +52135 tur +ar +52143 su +52150 su +52152 ab +sah +le +e +52160 šim +52164 šim +52170 šim +52173 šim +52175 ana +52177 bi +52179 di +ina +52190 ma +52195 a +ma +ni +ta +šar +rap +52203 na +ga +bi +i +52208 niš +tu +sa +mah +ina +52219 su +ma +52226 ina +52228 ka +52231 ta +52233 si +52237 e +re +ni +52248 ma +52251 su +ma +52256 u +ru +uš +ru +uš +ša +52265 giš +52273 u +52276 sah +le +e +52280 ti +52282 u +52285 u +52289 u +zi +ba +a +ina +na +ur +ṣi +52301 e +re +ni +52312 su +ma +52319 tu +ša +52322 ina +52329 aš +52334 su +52336 šid +su +52342 ana +52346 an +u +52353 tur +ar +52360 ti +52365 giš +52369 e +mi +il +ta +u +zi +ba +a +52383 ina +52385 tu +ša +ha +an +52394 su +52396 si +52398 ab +52404 ma +52410 su +52437 su +52455 te +52458 su +52466 šu +52469 su +52471 šu +52485 šu +52487 u +kal +52491 m +aš +šur +52500 aš +šur +ki +ša +d +52506 u +d +taš +me +tu +52514 tu +iš +ru +ku +uš +i +hu +uz +zu +52525 na +mir +tu +ni +siq +ṭup +šar +ru +ti +ša +ina +52538 ni +a +lik +mah +ri +ia +mam +ma +šip +ru +šu +a +tu +la +i +hu +uz +zu +bul +ṭi +52559 muh +hi +52563 liq +ti +52567 ta +hi +zu +nak +la +a +zu +gal +lu +tu +d +nin +urta +u +d +gu +la +ma +la +ba +aš +ba +aš +mu +ina +52594 ni +aš +ṭur +as +niq +52601 ma +a +na +ta +mar +ti +ši +ta +as +si +ia +qe +reb +52616 ia +u +kin +52621 sag +ki +ni +52639 mu +ru +ub +bi +ni +mu +ru +ub +bi +52668 u +aš +lam +52685 e +ma +52691 nu +52706 ina +sig +52712 mi +52720 id +da +ta +tir +gal +gal +la +ta +52734 mul +mul +giš +geštin +gir +mu +un +kar +re +52750 šu +mu +mu +e +de +mul +mul +52787 iti +52811 šal diff --git a/tf/0.3/remarkable.tf b/tf/0.3/remarkable.tf new file mode 100644 index 0000000..15c40c9 --- /dev/null +++ b/tf/0.3/remarkable.tf @@ -0,0 +1,57 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=whether a sign is remarkable (!) +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=int +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +1194 1 +1198 1 +1552 1 +1645 1 +2969 1 +3161 1 +3629 1 +7226 1 +10651 1 +12692 1 +14410 1 +16303 1 +16305 1 +16503 1 +24130 1 +24318 1 +26472 1 +26477 1 +26650 1 +29108 1 +29112 1 +29197 1 +29505 1 +30190 1 +32114 1 +32127 1 +33227 1 +36609 1 +37061 1 +1 +38185 1 +1 +38797 1 +38830 1 +38836 1 +41346 1 +41449 1 +42979 1 +43139 1 +45624 1 +46889 1 +47141 1 +48179 1 +49749 1 +50178 1 +50709 1 +52118 1 diff --git a/tf/0.3/ruling.tf b/tf/0.3/ruling.tf new file mode 100644 index 0000000..f4bcb4d --- /dev/null +++ b/tf/0.3/ruling.tf @@ -0,0 +1,1285 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=ruling comment to a line +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=str +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +59314 single ruling + single ruling +59317 single ruling + single ruling + single ruling +59323 single ruling + single ruling +59326 single ruling +59331 single ruling + single ruling +59340 single ruling + single ruling +59346 single ruling + single ruling +59350 single ruling + single ruling +59358 single ruling + single ruling +59362 single ruling + single ruling + single ruling + single ruling +59367 single ruling +59370 single ruling + single ruling +59373 single ruling +59375 single ruling +59381 single ruling +59383 single ruling +59385 single ruling +59387 single ruling +59389 single ruling +59391 single ruling + single ruling + single ruling +59397 single ruling +59400 single ruling +59408 single ruling + single ruling +59412 single ruling +59414 single ruling + single ruling + single ruling +59418 single ruling +59424 single ruling +59428 single ruling +59437 single ruling +59441 single ruling +59449 single ruling +59451 single ruling + single ruling + single ruling +59455 single ruling +59457 single ruling + single ruling +59460 single ruling +59463 single ruling +59466 single ruling +59468 single ruling +59473 single ruling + single ruling + single ruling +59477 single ruling + single ruling + single ruling +59481 single ruling + single ruling +59484 single ruling +59486 single ruling +59488 single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling +59497 single ruling + single ruling + single ruling +59501 single ruling +59504 single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling +59514 single ruling +59516 single ruling +59518 single ruling +59520 single ruling +59522 single ruling +59524 single ruling + single ruling +59527 single ruling +59530 single ruling +59537 single ruling + single ruling + single ruling +59542 single ruling + single ruling +59546 single ruling +59548 single ruling +59550 single ruling +59552 single ruling +59556 single ruling +59559 single ruling +59561 single ruling + single ruling + single ruling + single ruling + single ruling +59567 single ruling +59569 single ruling + single ruling + single ruling + single ruling +59574 single ruling + single ruling + single ruling +59578 single ruling + single ruling +59581 single ruling + single ruling +59585 single ruling + single ruling + single ruling + single ruling + single ruling +59591 single ruling + single ruling + single ruling + single ruling +59596 single ruling + single ruling +59599 single ruling + single ruling +59602 single ruling + single ruling + single ruling + single ruling +59607 single ruling + single ruling + single ruling + single ruling +59612 single ruling +59614 single ruling +59616 single ruling + single ruling + single ruling + single ruling + single ruling +59622 single ruling + single ruling + single ruling +59626 single ruling +59628 single ruling + single ruling + single ruling + single ruling +59633 single ruling +59637 single ruling +59639 single ruling +59650 single ruling +59654 single ruling +59657 single ruling +59659 single ruling + single ruling +59663 single ruling +59665 single ruling +59667 single ruling +59670 single ruling +59672 single ruling +59677 single ruling + single ruling + single ruling +59681 single ruling +59688 single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling +59702 single ruling +59704 single ruling +59706 single ruling + single ruling +59709 single ruling +59711 single ruling +59714 single ruling +59719 single ruling +59721 single ruling +59725 single ruling +59732 single ruling + single ruling +59736 single ruling + single ruling +59739 single ruling +59742 single ruling +59745 single ruling + single ruling + single ruling + single ruling +59750 single ruling +59756 single ruling +59762 single ruling + single ruling +59770 single ruling +59774 single ruling + single ruling +59778 single ruling + single ruling +59786 single ruling + single ruling +59793 single ruling +59802 single ruling +59804 single ruling +59810 single ruling + single ruling +59813 single ruling +59816 single ruling +59818 single ruling +59820 single ruling + single ruling +59823 single ruling + single ruling + single ruling + single ruling +59828 single ruling + single ruling +59831 single ruling +59834 single ruling + single ruling +59839 single ruling +59841 single ruling +59846 single ruling +59848 single ruling + single ruling + single ruling +59853 single ruling + single ruling +59860 single ruling + single ruling +59869 single ruling +59871 single ruling +59878 single ruling + single ruling + single ruling +59884 single ruling + single ruling + single ruling +59888 single ruling +59898 single ruling +59900 single ruling +59902 single ruling +59908 single ruling + single ruling + single ruling + single ruling +59913 single ruling +59916 single ruling + single ruling +59919 single ruling + single ruling +59922 single ruling + single ruling +59926 single ruling + single ruling + single ruling + single ruling +59932 single ruling + single ruling +59935 single ruling + single ruling + single ruling + single ruling + single ruling +59944 single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling +59970 single ruling +59972 single ruling +59978 single ruling +59980 single ruling +59982 single ruling + single ruling + single ruling + single ruling + single ruling + single ruling +59989 single ruling +59991 single ruling +59994 single ruling +59996 single ruling + single ruling + single ruling +60000 single ruling +60003 single ruling + single ruling + single ruling +60007 single ruling + single ruling + single ruling +60011 single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling +60023 single ruling +60025 single ruling + single ruling + single ruling + single ruling + single ruling + single ruling +60032 single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling +60040 single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling +60048 single ruling +60052 single ruling + single ruling + single ruling + single ruling +60057 single ruling + single ruling + single ruling + single ruling +60064 single ruling +60066 single ruling + single ruling +60070 single ruling +60072 single ruling +60074 single ruling +60076 single ruling +60078 single ruling + single ruling + single ruling +60083 single ruling + single ruling + single ruling +60088 single ruling +60091 single ruling + single ruling + single ruling +60101 single ruling +60105 single ruling +60107 single ruling +60110 single ruling + single ruling +60113 single ruling + single ruling +60117 single ruling +60119 single ruling + single ruling + single ruling +60124 single ruling +60126 single ruling +60128 single ruling +60130 single ruling + single ruling +60134 single ruling + single ruling +60137 single ruling +60142 single ruling + single ruling +60147 single ruling +60153 single ruling +60155 single ruling +60166 single ruling + single ruling + single ruling + single ruling +60172 single ruling +60175 single ruling +60177 single ruling + single ruling +60180 single ruling +60182 single ruling + single ruling +60185 single ruling +60189 single ruling +60191 single ruling +60193 single ruling + single ruling +60196 single ruling +60199 single ruling +60203 single ruling +60207 single ruling +60211 single ruling +60217 single ruling +60219 single ruling +60222 single ruling +60225 single ruling +60227 single ruling +60229 single ruling +60231 single ruling +60233 single ruling +60235 single ruling +60237 single ruling +60240 single ruling +60242 single ruling +60244 single ruling +60246 single ruling +60249 single ruling +60251 single ruling +60253 single ruling +60258 single ruling +60260 single ruling +60263 single ruling +60265 single ruling +60268 single ruling + single ruling +60271 single ruling +60273 single ruling + single ruling +60276 single ruling +60278 single ruling +60280 single ruling + single ruling + single ruling +60284 single ruling + single ruling +60288 single ruling +60290 single ruling + single ruling +60294 single ruling +60296 single ruling +60298 single ruling +60300 single ruling +60302 single ruling +60304 single ruling +60315 single ruling +60319 single ruling +60323 single ruling +60325 single ruling +60327 single ruling +60330 single ruling +60333 single ruling +60335 single ruling +60338 single ruling +60346 single ruling +60348 single ruling + single ruling +60356 single ruling +60358 single ruling +60366 single ruling +60369 single ruling +60371 single ruling +60373 single ruling + single ruling +60376 single ruling +60379 single ruling +60381 single ruling +60388 single ruling +60390 single ruling +60392 single ruling +60395 single ruling +60397 single ruling +60399 single ruling +60401 single ruling +60405 single ruling + single ruling +60420 single ruling +60424 single ruling +60430 single ruling +60432 single ruling + single ruling +60435 single ruling +60437 single ruling +60439 single ruling +60441 single ruling +60443 single ruling + single ruling +60446 single ruling +60448 single ruling + single ruling +60451 single ruling +60453 single ruling + single ruling +60458 single ruling + single ruling +60461 single ruling + single ruling + single ruling +60468 single ruling + single ruling +60471 single ruling +60473 single ruling + single ruling +60485 single ruling + single ruling +60488 single ruling + single ruling +60491 single ruling + single ruling +60495 single ruling +60499 single ruling +60502 single ruling +60504 single ruling +60508 single ruling +60513 single ruling + single ruling +60525 single ruling +60535 single ruling +60537 single ruling +60539 single ruling +60543 single ruling +60545 single ruling + single ruling + single ruling +60550 single ruling +60553 single ruling +60556 single ruling +60560 single ruling +60563 single ruling +60565 single ruling +60569 single ruling +60572 single ruling +60576 single ruling +60580 single ruling +60583 single ruling +60587 single ruling +60590 single ruling +60592 single ruling +60594 single ruling +60596 single ruling +60598 single ruling + single ruling + single ruling +60602 single ruling + single ruling +60605 single ruling +60607 single ruling +60609 single ruling + single ruling +60614 single ruling +60616 single ruling +60619 single ruling +60621 single ruling +60623 single ruling +60625 single ruling +60627 single ruling +60629 single ruling +60631 single ruling + single ruling +60634 single ruling +60641 single ruling +60644 single ruling +60660 single ruling +60663 single ruling +60666 single ruling +60673 single ruling +60675 single ruling ? + single ruling +60682 single ruling +60684 single ruling ? +60690 single ruling +60692 single ruling +60697 single ruling +60699 single ruling + single ruling +60703 single ruling +60705 single ruling +60708 single ruling +60712 single ruling +60726 single ruling +60730 single ruling +60735 single ruling +60739 single ruling +60752 single ruling + single ruling +60756 single ruling +60758 single ruling +60762 single ruling +60764 single ruling +60768 single ruling +60770 single ruling +60774 single ruling +60777 single ruling +60788 single ruling +60790 single ruling +60799 single ruling + single ruling +60812 single ruling +60814 single ruling +60817 single ruling +60824 single ruling +60829 single ruling +60832 single ruling +60835 single ruling +60840 single ruling + single ruling +60846 single ruling +60848 single ruling +60850 single ruling +60852 single ruling + single ruling +60856 single ruling + single ruling +60859 single ruling +60862 single ruling + single ruling +60865 single ruling + single ruling +60871 single ruling +60873 single ruling +60875 single ruling + single ruling +60880 single ruling +60883 single ruling +60885 single ruling +60888 single ruling +60890 single ruling +60894 single ruling +60896 single ruling +60901 single ruling +60905 single ruling +60907 single ruling +60909 single ruling +60912 single ruling + single ruling + single ruling +60920 single ruling +60923 single ruling + single ruling +60926 single ruling +60928 single ruling +60930 single ruling +60936 single ruling + single ruling + single ruling +60940 single ruling + single ruling +60943 single ruling +60945 single ruling +60949 single ruling +60952 single ruling +60955 single ruling +60957 single ruling +60960 single ruling + single ruling + single ruling + single ruling + single ruling +60966 single ruling +60975 single ruling + single ruling + single ruling +60979 single ruling + single ruling + single ruling + single ruling + single ruling +60986 single ruling + single ruling + single ruling + single ruling + single ruling + single ruling +60993 single ruling +60996 single ruling + single ruling +61000 single ruling + single ruling + single ruling + single ruling + single ruling + single ruling +61009 single ruling + single ruling + single ruling + single ruling + single ruling + single ruling +61018 single ruling + single ruling + single ruling + single ruling +61028 single ruling +61030 single ruling +61039 single ruling + single ruling + single ruling +61047 single ruling + single ruling +61050 single ruling +61056 single ruling + single ruling +61063 single ruling + single ruling +61068 single ruling + single ruling + single ruling + single ruling + single ruling + single ruling +61076 single ruling +61078 single ruling + single ruling + single ruling + single ruling + single ruling +61085 single ruling + single ruling +61107 single ruling +61110 single ruling + single ruling +61113 single ruling +61115 single ruling +61117 single ruling +61119 single ruling +61121 single ruling +61124 single ruling +61126 single ruling +61129 single ruling + single ruling +61132 single ruling + single ruling +61135 single ruling +61137 single ruling + single ruling + single ruling +61143 single ruling + single ruling + single ruling +61147 single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling +61157 single ruling + single ruling + single ruling + single ruling + single ruling +61166 single ruling + single ruling +61174 single ruling + single ruling + single ruling + single ruling +61184 single ruling + single ruling + single ruling +61196 single ruling + single ruling + single ruling +61204 single ruling + single ruling +61207 single ruling +61213 single ruling + single ruling +61223 single ruling + single ruling + single ruling +61231 single ruling + single ruling +61249 single ruling + single ruling +61253 single ruling + single ruling +61256 single ruling +61258 single ruling + single ruling +61261 single ruling +61267 single ruling + single ruling +61273 single ruling + single ruling +61283 single ruling +61293 single ruling +61301 single ruling +61304 single ruling +61306 single ruling +61309 single ruling +61312 single ruling +61317 single ruling + single ruling +61327 single ruling +61329 single ruling +61331 single ruling +61334 single ruling +61336 single ruling +61338 single ruling +61340 single ruling +61343 single ruling + single ruling +61351 single ruling +61354 single ruling +61356 single ruling +61358 single ruling +61362 single ruling +61369 single ruling + single ruling +61372 single ruling +61375 single ruling +61377 single ruling + single ruling +61380 single ruling + single ruling +61383 single ruling + single ruling +61386 single ruling + single ruling +61389 single ruling +61391 single ruling +61394 single ruling +61399 single ruling +61402 single ruling +61406 single ruling +61409 single ruling +61413 single ruling +61418 single ruling +61424 single ruling +61426 single ruling +61428 single ruling +61430 single ruling +61432 single ruling +61442 single ruling +61444 single ruling +61446 single ruling +61448 single ruling + single ruling +61452 single ruling +61454 single ruling +61456 single ruling + single ruling + single ruling +61460 single ruling +61463 single ruling +61465 single ruling +61467 single ruling +61469 single ruling +61471 single ruling +61473 single ruling +61475 single ruling +61477 single ruling +61479 single ruling +61481 single ruling +61483 single ruling +61486 single ruling + single ruling +61491 single ruling +61493 single ruling +61495 single ruling +61497 single ruling +61499 single ruling +61501 single ruling +61503 single ruling + single ruling +61506 single ruling +61508 single ruling + single ruling +61514 single ruling +61517 single ruling + single ruling +61520 single ruling +61525 single ruling +61531 single ruling +61533 single ruling + single ruling + single ruling + single ruling +61538 single ruling + single ruling +61561 single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling +61574 single ruling +61580 single ruling + single ruling + single ruling + single ruling + single ruling + single ruling +61589 single ruling +61592 single ruling + single ruling +61596 single ruling + single ruling +61600 single ruling +61602 single ruling +61604 single ruling + single ruling + single ruling + single ruling +61609 single ruling +61611 single ruling + single ruling +61614 single ruling +61617 single ruling +61620 single ruling +61624 single ruling + single ruling +61627 single ruling +61629 single ruling +61631 single ruling + single ruling +61634 single ruling + single ruling + single ruling +61638 single ruling +61641 single ruling + single ruling +61646 single ruling + single ruling +61657 single ruling +61663 single ruling +61668 single ruling +61670 single ruling +61672 single ruling +61674 single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling +61691 single ruling +61693 single ruling +61695 single ruling + single ruling + single ruling +61714 single ruling +61716 single ruling +61718 single ruling + single ruling +61721 single ruling +61723 single ruling + single ruling +61727 single ruling + single ruling + single ruling + single ruling + single ruling +61733 single ruling + single ruling + single ruling + single ruling + single ruling +61739 single ruling + single ruling + single ruling + single ruling +61751 single ruling +61753 single ruling +61755 single ruling + single ruling +61758 single ruling +61760 single ruling +61762 single ruling + single ruling + single ruling + single ruling +61767 single ruling + single ruling +61770 single ruling +61772 single ruling +61783 single ruling + single ruling + single ruling + single ruling +61788 single ruling + single ruling + single ruling + single ruling +61794 single ruling +61798 single ruling +61801 single ruling +61808 single ruling + single ruling +61812 single ruling +61815 single ruling +61817 single ruling +61819 single ruling +61821 single ruling +61824 single ruling + single ruling +61827 single ruling + single ruling + single ruling + single ruling +61832 single ruling + single ruling + single ruling + single ruling + single ruling +61840 single ruling + single ruling + single ruling +61844 single ruling + single ruling + single ruling + single ruling + single ruling +61850 single ruling +61852 single ruling +61854 single ruling + single ruling +61857 single ruling + single ruling + single ruling + single ruling + single ruling + single ruling +61864 single ruling +61866 single ruling + single ruling + single ruling + single ruling + single ruling +61872 single ruling + single ruling +61875 single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling +61883 single ruling +61886 single ruling + single ruling + single ruling + single ruling +61891 single ruling + single ruling + single ruling + single ruling +61898 single ruling + single ruling + single ruling + single ruling +61906 single ruling +61917 single ruling + single ruling + single ruling +61922 single ruling + single ruling + single ruling + single ruling + single ruling + single ruling +61929 single ruling + single ruling +61940 single ruling +61942 single ruling +61945 single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling +61955 single ruling +61957 single ruling + single ruling +61962 single ruling + single ruling +61967 single ruling +61973 single ruling +61978 single ruling +61980 single ruling + single ruling + single ruling + single ruling +61985 single ruling + single ruling +61988 single ruling +61990 single ruling + single ruling + single ruling +61994 single ruling +61996 single ruling +61999 single ruling +62002 single ruling +62005 single ruling +62008 single ruling +62015 single ruling +62018 single ruling +62022 single ruling +62026 single ruling +62028 single ruling +62030 single ruling + single ruling +62033 single ruling +62035 single ruling +62039 single ruling + single ruling +62047 single ruling +62049 single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling + single ruling +62060 single ruling +62062 single ruling + single ruling +62065 single ruling +62067 single ruling +62069 single ruling + single ruling + single ruling + single ruling + single ruling + single ruling +62076 single ruling +62078 single ruling +62081 single ruling +62086 single ruling +62088 single ruling +62091 single ruling +62093 single ruling + single ruling + single ruling + single ruling + single ruling +62099 single ruling + single ruling +62103 single ruling +62106 single ruling +62112 single ruling + single ruling +62115 single ruling + single ruling +62119 single ruling +62121 single ruling +62125 single ruling +62127 single ruling +62130 single ruling +62132 single ruling +62134 single ruling +62136 single ruling + single ruling +62139 single ruling +62146 single ruling +62148 single ruling + single ruling +62151 single ruling +62153 single ruling +62156 single ruling +62158 single ruling +62160 single ruling +62164 single ruling +62168 single ruling +62170 single ruling +62172 single ruling +62174 single ruling +62186 single ruling + single ruling +62192 single ruling +62194 single ruling +62200 single ruling +62205 single ruling +62208 single ruling +62210 single ruling +62213 single ruling +62217 single ruling +62220 single ruling +62226 single ruling +62228 single ruling + single ruling +62231 single ruling +62237 single ruling +62247 single ruling +62251 single ruling +62253 single ruling +62255 single ruling +62257 single ruling +62260 single ruling +62262 single ruling +62266 single ruling +62268 single ruling +62274 single ruling +62276 single ruling + single ruling + single ruling + single ruling + single ruling +62282 single ruling +62287 single ruling +62291 single ruling +62295 single ruling +62300 single ruling +62302 single ruling +62304 single ruling +62308 single ruling +62311 single ruling +62318 single ruling +62322 single ruling +62329 single ruling + single ruling +62333 single ruling +62341 single ruling + single ruling +62346 single ruling +62348 single ruling +62350 single ruling +62355 single ruling +62357 single ruling +62359 single ruling +62361 single ruling +62363 single ruling +62365 single ruling +62372 single ruling +62374 single ruling +62385 single ruling +62388 single ruling +62392 single ruling diff --git a/tf/0.3/seal.tf b/tf/0.3/seal.tf new file mode 100644 index 0000000..c6a30e7 --- /dev/null +++ b/tf/0.3/seal.tf @@ -0,0 +1,22 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=seal comment to a line +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=str +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +59471 about 20 lines missing +59494 end of column +59566 several lines missing +59635 about 20 lines missing +59647 end of side +60456 end of column +60514 end of column +60588 end of column +60808 end of tablet +61511 missing +61720 10 lines missing +61725 22 lines missing diff --git a/tf/0.3/supplied.tf b/tf/0.3/supplied.tf new file mode 100644 index 0000000..e488ce9 --- /dev/null +++ b/tf/0.3/supplied.tf @@ -0,0 +1,28 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=whether a sign is supplied - between < > +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=int +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +57 1 +1327 1 +4778 1 +5080 1 +9093 1 +9414 1 +14589 1 +42129 1 +1 +1 +45502 1 +46223 1 +46231 1 +46346 1 +46919 1 +47457 1 +48130 1 +48895 1 diff --git a/tf/0.3/sym.tf b/tf/0.3/sym.tf new file mode 100644 index 0000000..cd545f7 --- /dev/null +++ b/tf/0.3/sym.tf @@ -0,0 +1,83586 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=essential part of a sign or of a word +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=str +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +DU₃ +DU₃ +BI +... +5 +KA +INIM +MA +x +x +x +x +EN₂ +su +ub +hur +ri +im +su +ub +... +ša₂ +sa +ku +tu₂ +hi +si +a +pi +il +lat +aš +kur +ba +an +ni +... +KA +INIM +MA +GIG +GIR +ZI +hi +DU₃ +DU₃ +BI +SIG₂ +SA₅ +... +EN₂ +ma +mit +GIM +šar +ra +qi₂ +ina +KA₂ +pil +ši +un +gi +ha +ba +x +x +x +x +x +x +x +x +x +x +x +x +DU₃ +DU₃ +BI +ina +ŠIM +IGI +GIG +ta +kar +hu +bu₄ +uš +SUN₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +IGI +GIG +MAR +šim +ŠEŠ +ina +IZI +tur +ar₂ +IGI +GIG +x +x +x +x +x +x +x +x +x +x +x +x +x +x +IGI +GIG +MAR +TI +GUD +ID₂ +ina +IZI +tur +ar₂ +IGI +GIG +x +x +x +x +x +x +x +x +x +SUN₂ +lu₂ +KURUN₂ +NA +IGI +GIG +ta +kar +x +x +x +x +x +x +x +x +x +x +x +2 +KA +INIM +MA +x +x +x +x +x +x +DIŠ +NA +SAG +DU +su +gur +ru +ud +sah +le₂ +e +si +ki +tu₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ina +A +NAGA +SAG +DU +su +LUH +si +I₃ +GIŠ +EŠ +MEŠ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +KI +MIN +SAG +DU +su +tu +gal +lab +... +u₂ +HAB +SUD₂ +MAR +u₂ +ZA +BA +LAM +... +268 x +x +x +x +x +x +x +x +x +x +x +x +a +na +ku +u₂ +ša₂ +an +ni +x +x +x +x +x +x +x +TI +e +... +LI +DUR +ŠID +nu +x +x +x +x +gi +pisan +gen₇ +keš₂ +da +x +x +x +x +x +x +x +x +x +x +x +a +ge₆ +a +nu +tuku +x +x +x +x +x +x +x +x +x +x +x +x +nu +ku₄ +ku₄ +... +nig₂ +ge₂₆ +e +: +gen +na +dumu +gu₁₀ +x +x +x +x +x +x +x +x +x +x +x +šu +u +me +ti +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ka +bi +ta +u +me +ni +gar +x +x +x +x +x +x +x +x +x +x +x +x +x +he₂ +en +si +il +e +x +x +x +x +x +x +x +he₂ +em +ma +ra +e₃ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ina +KAŠ +NAG +ma +ina +eš +... +ŠA₃ +GIG +448 ... +ka +keš₂ +bi +he₂ +du₈ +a +... +ka +keš₂ +bi +he₂ +du₈ +a +x +x +x +x +x +x +x +x +x +x +x +x +ina +KA +šu₂ +u₂ +man +zaq +ma +ina +eš +... +SIG₃ +SIG₃ +ta +ma +la +a +rit +ta +šu₂ +... +a +ha +tu +mu +še +qa +at +re +ši +šu₂ +... +na +ši +pat +ri +TU₆ +EN₂ +x +x +x +x +x +x +x +x +x +x +x +ana +UGU +EN₂ +ŠUB +di +ina +KA +šu₂ +u₂ +man +zaq +ma +ina +eš +x +x +x +x +x +x +x +x +x +x +x +x +as +suh +šu₂ +ma +iṣ +ṣa +bat +ŠA₃ +bi +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +KI +DU₁₁ +GA +ma +iṣ +ṣa +bat +ŠA₃ +bi +AN +u +KI +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +a +na +u₂ +ma +mi +DU₁₁ +GA +ma +iṣ +ṣa +bat +ŠA₃ +bi +u₂ +ma +me +x +x +x +x +x +x +x +x +x +x +x +x +x +ŠA₃ +bi +d +UTU +lip +pa +šir +x +x +x +x +x +x +x +ŠA₃ +bi +u₂ +ma +me +lip +pa +šir +x +x +x +x +x +x +x +x +x +x +x +x +šam +ma +ka +NAG +šu₂ +lib +luṭ +... +U₂ +KI +KI +MIN +KI +MIN +... +ŠA₃ +bu +i +re +du +šu +... +ap +pi +šil +ta +hi +ša₂ +7 +KA +KEŠDA +MEŠ +šu₂ +7 +šu₂ +u +7 +šu₂ +... +SAHAR +TA +urudu +na +ah +bi +ana +urudu +na +ah +bi +x +x +x +x +x +x +x +x +TI +qe₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ZI₃ +ŠE +SA +A +ina +A +GAZI +sar +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ARA₃ +ti₃ +šim +GUR₂ +GUR₂ +NAGA +SI +x +x +x +x +x +x +x +MUN +eme +sal +li₃ +mal₂ +ma +liš +HI +HI +ina +x +x +x +x +x +x +x +x +x +x +ZA₃ +HI +LI +1 +3 +SILA₃ +ŠIKA +IM +ŠU +RIN +NA +10 +GIN₂ +x +x +x +x +x +x +x +x +GAZI +sar +SILA₁₁ +aš +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +EGIR +na +aṣ +ma +da +te +an +na +ti +10 +GIN₂ +ZA₃ +HI +LI +ša₂ +KA +x +x +ša₂ +hul +qu +ana +ŠA₃ +NU +ŠUB +u₂ +MUN +A +GEŠTIN +NA +NU +x +x +x +x +x +x +x +GU₇ +5 +GIN₂ +ZA₃ +HI +LI +ARA₃ +ti₃ +ina +KAŠ +SIG₃ +aṣ +ma +NAG +šu₂ +u₂ +za +ka +ma +x +x +x +x +x +x +AN +ZAH +SUD₂ +x +x +x +x +x +x +x +x +x +x +x +x +ZA +BA +LAM +1 +3 +SILA₃ +u₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +lu +u₂ +ina +KAŠ +SAG +x +x +x +x +x +x +x +DIŠ +NA +SAG +KI +DAB +BA +TUKU +TUKU +x +x +x +x +x +x +x +x +x +UGU +šu₂ +KUM₂ +x +x +x +x +x +x +x +x +x +x +ŠU₂ +LUGAL +x +x +x +x +1009 x +x +x +x +x +x +x +x +x +x +x +x +x +x +ana +TI +BI +x +x +x +x +x +x +x +x +x +x +x +x +x +ŠEŠ₂ +su +ma +TI +x +x +x +x +x +x +x +x +x +x +x +x +x +I₃ +GIŠ +ŠEŠ₂ +MEŠ +su +u₂ +an +ki +nu +ti +x +x +x +x +x +x +x +x +x +ta +na +ṣar +BI +ma +TI +x +x +x +x +x +x +x +x +x +x +x +TI +šu₂ +I₃ +GIŠ +šim +GUR₂ +GUR₂ +ŠEŠ₂ +su +x +x +x +x +x +x +x +x +x +x +x +x +NAG +šu₂ +ina +A₂ +tu +šap +ra +šu₂ +ma +TI +x +x +x +x +x +x +x +x +ŠUB +ŠUB +su +ana +TI +šu₂ +I₃ +GIŠ +u₂ +ap +ru₃ +ša₂ +ŠEŠ₂ +su +x +x +x +x +x +x +x +x +šim +GUR₂ +GUR₂ +NAG +MEŠ +ma +TI +x +x +x +x +x +x +x +x +x +x +ana +TI +šu₂ +I₃ +GIŠ +šim +GUR₂ +GUR₂ +I₃ +GIŠ +šim +LI +ŠEŠ₂ +su +x +x +x +x +x +x +x +x +x +i +na +qu₂ +tu +ṣar +raš(BI) +ma +TI +x +x +x +x +x +x +x +x +x +x +x +u₂ +ap +ru₃ +ša₂ +u₂ +il₃ +kul₂ +la +ša₂ +PU₂ +x +x +x +x +x +x +x +x +x +ŠEŠ₂ +su +ma +TI +x +x +x +x +x +x +x +x +x +tu +bal +ta +sak₃ +ina +I₃ +HI +HI +ŠEŠ₂ +MEŠ +su +ma +TI +x +x +x +x +x +x +x +tu +bal +ta +sak₃ +ina +I₃ +HI +HI +ŠEŠ₂ +MEŠ +su +ma +TI +DIŠ +NA +x +x +x +x +MUR +MEŠ +GIG +ma +NA +BI +ṣi +na +ah +tu +ra +... +šim +ŠEŠ +3 +U₂ +HI +A +ša₂ +šu₂ +nu +x +x +x +x +... +ta +sak₃ +ina +I₃ +x +x +x +x +... +1319 DIŠ +NA +NINDA +GU₇ +KAŠ +NAG +ma +ŠA₃ +MEŠ +šu₂ +in +nem +me +ru +in +ne₂ +bi +ṭu₂ +x +x +x +x +x +x +UD +DA +SA₂ +SA₂ +NA₄ +ZU₂ +LUM +MA +GAZ +GIM +KAM +ZI₃ +DA +tara +bak +x +x +x +x +x +... +ina +dug +UTUL₇ +ŠEG₆ +šal +... +... +x +x +... +... +i +lu +ru +sa +a +mu +GAZ +SAG +DU +su +... +... +e +qi +di +ša₂ +la +MUN +GAZ +ina +GA +HI +HI +... +... +x +u₂ +i +lu +ru +sa +a +mu +SAG +DU +su +še +bi +... +... +tu +kaṣ₃ +ṣa +EGIR +šu₂ +e +qi +di +ma +ša +la +MUN +ana +x +... +... +LAL₂ +id +SAG +DU +su +ina +tug₂ +ṣi +in +di +... +... +x +šu₂ +la +ta +ṣa +ba +... +... +x +ZI₃ +bu +ṭu +tu₂ +ina +A +tara +bak +SAG +DU +su +LAL₂ +... +... +PIŠ₁₀ +d +ID₂ +NAGA +SI +U₅ +ARGAB +mušen +... +... +ŠEŠ +DIŠ +niš +ina +GISSU +HAD₂ +DU +GAZ +SIM +... +... +gu +riš +tu₂ +i +tel +li +... +... +x +x +x +x +x +... +NUMUN +u₂ +NU +LUH +HA +... +NUMUN +u₂ +AB₂ +DUH +... +NUMUN +u₂ +u₅ +ra +nu +... +DIŠ +NA +ki +is +ŠA₃ +GIG +... +ul +tu +x +... +DIŠ +NA +ki +is +ŠA₃ +GIG +... +NUMUN +u₂ +x +... +ul +tu +x +... +x +x +x +... +... +x +... +GUR +GUR +šu +ma +TI +... +NA +BI +aš +rat +d +nin +urta +KIN +ma +DUG₄ +GA +x +x +šu₂ +... +I₃ +GIŠ +šim +GIG +SUD +sig₂ +AKA₃ +NIGIN +mi +... +x +bi +za +te +: +I₃ +šim +LI +... +GUR +GUR +šu +ma +TI +... +NA +BI +aš +rat +d +UTU +KIN +ma +... +x +NIGIN +mi +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +... +x +... +... +PIŠ₁₀ +ID₂ +x +x +x +x +x +x +x +x +... +NAM +LU₂ +U₁₈ +LU +x +x +x +x +x +x +x +x +x +... +giš +EREN +TAG +at +x +x +x +x +x +x +... +ŠEŠ₂ +su +ŠE₁₀ +x +x +x +x +... +LU₂ +U₁₈ +LU +x +x +x +x +x +... +te +ṭer₅ +ri +LAL +... +u₂ +IGI +lim +... +NU +pa +tan +NAG +... +ZU₂ +LUM +... +SUR +LAL +... +x +DIŠ +NA +IGI +MIN +šu₂ +mur +din +ni +DIRI +sah +le₂ +e +ZI₃ +ŠE +SA +A +ina +KAŠ +tara +bak +LAL +UD +3 +KAM₂ +IGI +MIN +šu₂ +NU +DU₈ +ka +la +UD +me +3 +šu₂ +KEŠDA +ina +4 +UD +mi +ina +šim +MAN +DU +er +ri +IGI +MIN +šu₂ +ta +kad +da +ad +A +ina +ŠA₃ +IGI +MIN +šu₂ +ŠUB +IGI +MIN +šu₂ +tu +šak +kal +qer +ša₂ +em +ma +1 +šu₂ +2 +šu₂ +3 +šu₂ +IGI +MIN +šu₂ +KEŠDA +I₃ +UDU +kur +sin +ni +MAŠ +DA₃ +IGI +MIN +šu₂ +x +x +pap +ina +EGIR +ti₃ +ina +ir +ri +A +GAR₅ +SUD₂ +IGI +MIN +šu₂ +MAR +giš +HAB +SUD₂ +ana +UGU +IGI +MIN +šu₂ +ta +bi +la₁₂ +MAR +LAL +ka +la +UD +me +3 +šu₂ +KEŠDA +u₂ +kal +ma +ZI +giš +MAŠ +HUŠ +u +giš +šinig +NUMUN +u₂ +KI +d +IŠKUR +šim +LI +ŠE +SA +A +sah +le₂ +e +HE +HE +ta +bi +la₁₂ +ana +UGU +SAG +DU +šu₂ +MAR +SAG +DU +su +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +ina +4 +UD +me +DU₈ +šu₂ +ma +SAG +DU +su +tu +gal +lab +U₂ +rib +ka +IGI +MIN +šu₂ +MAR +MEŠ +ina +eš +U₂ +BABBAR +U₅ +ARGAB +mušen +mun +eme +sal +li₃ +NA₄ +ga +bi +i +NAGA +SI +šim +SES +IM +GU₂ +EN +NA +GAZI +sar +PAP +8 +U₂ +MEŠ +ṭi₅ +pu +šum +ma +NA +IGI +MIN +šu₂ +UD +DA +ha +an +ṭa +u +mur +din +ni +DIRI +U₂ +BABBAR +NA₄ +ga +bi +i +mun +eme +sal +li₃ +an +nu +u₂ +ṭi +pu +ša₂ +IGI +MIN +šim +GUR₂ +GUR₂ +ZI₃ +ŠE +SA +A +GAZI +sar +an +nu +u₂ +ṭi +pu +ša₂ +IGI +MIN +DIŠ +NA +IGI +MIN +šu₂ +GID₂ +DA +GID₂ +DA +u₂ +kal +la +ana +E₂ +a +hi +i +DU +ma +KA₂ +GU₃ +si +ki +ma +x +... +... +GID₂ +DA +GID₂ +du +KIMIN +GID₂ +DA +GID₂ +du +ku +nu +ma +tab +la +MIN +... +a +na +E₂ +NU +e +de +e +DU +ma +KA₂ +GU₃ +si +ki +ma +x +x +x +... +HI +x +x +x +GID₂ +DA +GID₂ +du +KIMIN +GID₂ +GID₂ +ku +nu +ma +tab +la +x +... +DIŠ +NA +ina +IGI +MIN +šu₂ +li +piš +tu₄ +šim +GUR₂ +GUR₂ +šim +LI +šim +HAB +NUMUN +ŠINIG +... +SUD₂ +... +DIŠ +NA +ina +IGI +MIN +šu₂ +SIG₂ +a +ṣa +at +u +IGI +MIN +šu₂ +a +ša₂ +a +MUN +kam₂ +ma +I₃ +UDU +ELLAG₂ +... +ša₂ +UDU +NITA₂ +LAL₃ +KUR +RA +mal₂ +ma +liš +SUD₂ +ina +I₃ +NUN +HE +HE +IGI +MIN +šu₂ +MAR +ta +maš +aš +... +DIŠ +NA +IGI +MIN +šu₂ +UZU +a +li +ka₁₃ +DIRI +a +ana +TI +šu₂ +... +x +x +NUMUN +GI +ZU₂ +LUM +MA +ina +LAL₃ +SUD₂ +MAR +: +x +... +x +x +na₄ +as +har +ina +I₃ +NUN +SUD₂ +MAR +: +x +... +DIŠ +NA +IGI +MIN +šu₂ +UZU +DU +kam₂ +DIRI +ma +u +DU +ak +ana +TI +šu₂ +x +... +šim +GIG +U₂ +BABBAR +U₅ +ARGAB +mušen +mun +eme +sal +li₃ +1 +niš +SUD₂ +... +ina +MUD₂ +giš +EREN +lu +ina +I₃ +GIŠ +giš +EREN +HE +HE +ZA +NA +DU₃ +uš +ina +A +MEŠ +SUD₂ +IGI +MIN +šu₂ +MAR +DIŠ +NA +IGI +MIN +šu₂ +UZU +u +MUD₂ +DIRI +MEŠ +šim +SES +u₂ +KUR +RA +U₂ +BABBAR +I₃ +UDU +šim +GIG +U₅ +ARGAB +mušen +sah +lu +u +U₂ +MEŠ +an +nu +ti +te +qit +ša₂ +UZU +DU +DIŠ +NA +IGI +MIN +šu₂ +qu₃ +qa +ni +DIRI +MEŠ +gu +ru +uš +ga +ra +aš +ša +ŠAH +... +ina +TUG₂ +te +sip +7 +UD +me +ina +KUN₄ +te +te +mer +E₁₁ +ma +... +x +x +mal +ma₂ +liš +SUD₂ +x +x +x +x +x +x +... +... +ina +I₃ +UDU +GIR₃ +PAD +DU +LUGUD₂ +DA +UDU +... +x +x +x +SUD₂ +MAR +x +x +x +... +mal₂ +ma +liš +SUD₂ +ina +LAL₃ +I₃ +NUN +I₃ +GIŠ +giš +EREN +SAHAR +URUDU +SUD₂ +MAR +DIŠ +KIMIN +ZI₃ +d +ŠE +TIR +KI +ŠE +SA +A +SUD₂ +ana +UGU +IGI +MIN +šu₂ +DUB +DIŠ +NA +IGI +MIN +šu₂ +... +ina +I₃ +UDU +ELLAG₂ +UDU +NITA₂ +GAB +LAL₃ +1 +niš +HE +HE +ina +I₃ +UDU +GIR₃ +PAD +DU +GID₂ +DA +SUD₂ +te +eq +qi₂ +DIŠ +i +na +IGI +x +x +x +x +x +i +te +ne₂ +ṭa +a +NA +BI +KIN +šu₂ +SUMUN +ma +IGI +MIN +šu₂ +ip +pa +a +ana +TI +šu₂ +1 +GIN₂ +x +x +x +x +x +ina +I₃ +NUN +SUD₂ +IGI +MIN +šu₂ +MAR +MEŠ +DIŠ +NA +IGI +MIN +šu₂ +nu +up +pu +ha +... +ZI₃ +šim +GUR₂ +GUR₂ +ZI₃ +ŠE +SA +A +GAZ +SIM +ina +KAŠ +tara +bak +IGI +MIN +šu₂ +LAL +U₂ +BABBAR +NA₄ +ga +bi +i +mun +eme +sal +li₃ +U₂ +HI +A +ṭi +pu +ša₂ +IGI +MIN +DIŠ +NA +IGI +MIN +šu₂ +bar +ra +u +ER₂ +u₂ +kal +la +... +GAB +LAL₃ +x +x +x +x +7 +UD +me +ina +KUN₄ +te +te +mer +E₁₁ +ma +... +x +... +DIŠ +NA +IGI +MIN +šu₂ +... +SUD₂ +IGI +MIN +šu₂ +MAR +x +... +DIŠ +NA +IGI +MIN +šu₂ +ar +pa +... +ina +I₃ +u +SAHAR +URUDU +ša +ŠEN +TUR +SUD₂ +IGI +MIN +šu₂ +MAR +ŠIKA +LIBIR +RA +ša₂ +ki +ib +ša +TUK +u₂ +ina +I₃ +SAHAR +URUDU +SUD₂ +MAR +LAL₃ +KUR +RA +... +DIŠ +NA +IGI +MIN +šu₂ +ṣu +uh +hu +ta +GEŠTIN +KA₅ +A +SIG₇ +su +tu +ha +sa +A +MEŠ +šu₂ +ina +dug +UTUL₂ +tara +bak +IGI +DUL +ma +ša₂ +AN +TA +i +šal +lu +ina +SAHAR +URUDU +u +I₃ +GIŠ +SUD₂ +MAR +DIŠ +KIMIN +ZA₃ +HI +LI +ina +GA +ta +ka +aṣ +ina +NININDU +te +ep +pi +ma +ʾ +da +la +i +ba +x +... +I₃ +UDU +šim +GIG +u₂ +KUR +KUR +NA₄ +ga +bi +i +U₂ +BABBAR +GAZI +sar +ina +I₃ +NUN +SUD₂ +IGI +MIN +šu₂ +MAR +DIŠ +KIMIN +NINDA +ši +ib +ri +tur +ar₂ +SUD₂ +ki +ma +ṭi +pi +te +ṭe +ep +pi +DIŠ +KIMIN +ZI₃ +GU₂ +GAL +ZI₃ +GU₂ +TUR +ZI₃ +GAZI +sar +sah +le +e +qa +la +a +ti +bal +ṭa +ti +ina +dug +UTUL₂ +tara +bak +LAL +DIŠ +KIMIN +šim +BAL +GAZI +sar +ina +GA +SUD₂ +IGI +MIN +šu₂ +MAR +DIŠ +KIMIN +U₂ +BABBAR +AN +ZAH +GE₆ +tur +ar₂ +ina +I₃ +NUN +SUD₂ +MAR +: +DIŠ +KIMIN +KU₃ +GAN +ina +I₃ +UDU +GIR₃ +PAD +DU +UDU +SUD₂ +MAR +DIŠ +KIMIN +ZI₂ +BAL +GI +ku₆ +ina +MUN +NA₂ +al +EN +HAD₂ +DU +GAR +an +UD +ma +HAD₂ +DU +ina +I₃ +SAHAR +URUDU +SUD₂ +MAR +DIŠ +KIMIN +ZI₂ +x +x +x +UGU +GIR₂ +ZABAR +ina +I₃ +NUN +SUD₂ +MAR +x +x +... +2772 DIŠ +KIMIN +U₂ +BABBAR +u₂ +GEŠTIN +KA₅ +A +ina +I₃ +GIŠ +ŠUB +ina +ŠU +SI +ka +MAR +DIŠ +KIMIN +SAG +DU +EME +ŠID +HAD₂ +DU +SUD₂ +ina +I₃ +ŠUB +MAR +: +DIŠ +KIMIN +EME +ŠID +E₂ +GAR₈ +HAD₂ +DU +SUD₂ +ina +ŠU +LU₂ +ZABAR +ina +NE +GAR +an +MAR +GAG +TI +TI +UDU +tur +ar₂ +SUD₂ +... +UD +3 +KAM₂ +ina +mu +ša₂ +li₃ +GAR +SAG +UŠ +MAR +DIŠ +NA +IGI +MIN +šu₂ +DUL +ma +x +x +SUD₂ +ina +I₃ +NUN +HE +HE +ana +ŠA₃ +IGI +MIN +šu₂ +tu +na +tak +UGU +ša +SUN₂ +ti₃ +SUD₂ +... +ina +I₃ +GIŠ +u +UGU +ša +TU +mušen +NITA +mal +ma +liš +HE +HE +UD +3 +KAM₂ +ina +mu +ša₂ +li₃ +GAR +SAG +UŠ +ana +ŠA₃ +IGI +MIN +šu₂ +ŠUB +ŠUB +di +NUNUZ +UGA +mušen +SUD₂ +x +x +x +x +EGIR +E₁₁ +ma +GIR₂ +ZABAR +I₃ +NUN +ŠEŠ₂ +x +... +ŠU +MEŠ +ka +ina +A +LUH +si +... +ina +I₃ +NUN +tu +la +bak +MAR +... +ina +mu +ša₂ +li₃ +GAR +an +ka +a +a +nam +te +te +ne₂ +qi₂ +... +SUD₂ +MAR +... +ana +I₃ +GIŠ +tara +bak +IGI +4 +GAL₂ +LA +im +KAL +GUG +SUD₂ +MAR +... +x +SILAₓ(KISAL) +ku +ut +pa +a +ina +I₃ +GIŠ +EREN +SUD₂ +te +qi₂ +... +x +: +GEŠTIN +KA₅ +A +SUD₂ +ina +I₃ +ina +urudu +ŠEN +TUR +BAL +at +te +qi₂ +... +NUMUN +giš +NIG₂ +GAN₂ +GAN₂ +ur₂ +ne₂ +e +UR +BI +ta +sak₃ +te +qi₂ +... +ina +I₃ +SUD₂ +te +qi₂ +... +x +ta +ana +ŠA₃ +IGI +MIN +šu₂ +tu +na +tak +... +bu +ṣi +ni +ša₂ +nu +ri₃ +ta +sa +rim +qut +raₓ(AG₂) +ša +nu +ri₃ +... +x +KI +A +NAGA +SI +IGI +MIN +šu₂ +LUH +si +... +U₂ +BABBAR +5 +GIN₂ +U₅ +ARGAB +mušen +mal +ma +liš +HE +HE +... +DILIM₂ +A +BAR₂ +ina +I₃ +u +SAHAR +URUDU +SUD₂ +MAR +... +ina +urudu +ŠEN +TUR +tu +kaṣ₃ +ṣa +ina +urudu +ŠEN +TUR +HE +HE +... +SAHAR +URUDU +ša +urudu +ŠEN +TUR +ta +šam +ma +aṭ +7 +UD +mi +MAR +... +x +pa +ʾa +ṣu₂ +te +I₃ +UDU +... +ina +ir +ri +A +GAR₅ +SUD₂ +te +qi₂ +ma +PA +IGI +MIN +šu₂ +ik +ši +a +na +IGI +MIN +ki +ṣa +a +ti +bul +lu +ṭu +u₃ +kap +pi +IGI +MIN +šu₂ +šu +ṣi +i +sah +le₂ +e +ki +ṣa +a +ti +ina +NININDU(SUG) +TE +ma +ma +ʾa +du +la +ir +ri +ra +ina +I₃ +GIŠ +BUR +tara +bak +IGI +MIN +šu₂ +MAR +URUDU +SUMUN +ina +I₃ +NUN +SUD₂ +GIN₇ +rib +ki +IGI +MIN +šu₂ +MAR +MEŠ +ma +TI +... +A +u₂ +IN₆ +UŠ₂ +A +u₂ +EME +UR +GI₇ +A +u₂ +GEŠTIN +KA₅ +A +... +ti +TI +qe₂ +ina +SAHAR +URUDU +A +sah +le₂ +e +SUD₂ +IGI +MIN +šu₂ +MAR +... +tur +ar₂ +ta +pa +a +aṣ +ina +SAHAR +URUDU +SUD₂ +MAR +... +7 +UD +me +ina +KUN₄ +te +tem +mer +E₁₁ +ma +ina +SAHAR +URUDU +SUD₂ +MAR +... +ina +SAHAR +URUDU +SUD₂ +MAR +... +x +IGI +MEŠ +šu₂ +nu +ina +giš +DALA₂ +tu +tak₂ +kap +... +U₂ +MEŠ +ša +UGA +mušen +ana +TUR +MEŠ +šu₂ +il +qa +a +... +ša₂ +šu +ta +sak₃ +te +qi₂ +... +kam +ka +di +SUD₂ +UGU +GIG +GIR +ša +kap +pi +IGI +MIN +šu₂ +tu +gal +lab +u₂ +BAL +NUMUN +U₂ +da +aq +qi₂ +qi₂ +ŠE₁₀ +up +pu +te +gu +ra +ša₂ +GI +NUMUN +u₂ +ta +lu +pa +di +la +ar +si₃ +ni +ša +hal +li +U₈ +ša +GUB₃ +ša +MAŠ +TAB +BA +U₃ +TU +ELLAG₂ +MAŠ₂ +TUR +la +ki +i +ša +U₂ +la +na +aš +ku +ŠE +BAR +la +ṣa +bi +tu₂ +ina +nem +se +te +ta +qal₃ +lu +giš +bal +ta₅ +ša +MUN +u₂ +GUR₂ +UŠ +giš +GEŠTIN +KA₅ +A +NUMUN +u₂ +NIG₂ +GIDRU +ta +qal +lu +NUMUN +u₂ +EME +UR +GI₇ +u₂ +KUR₄ +GI +RIN +NA +u₂ +gim +gi +ra +U₂ +BABBAR +GI +DUG₃ +GA +1 +niš +SUD₂ +HE +HE +ina +A +GAZI +sar +sek +ru +ti +SED +ta +la₃ +aš +UD +15 +KAM₂ +LAL +MEŠ +UD +15 +KAM₂ +U₂ +BABBAR +UD +3 +KAM₂ +te +eq +qi₂ +DIŠ +NA +IGI +MIN +šu₂ +IGI +SIG₇ +SIG₇ +DIRI +BAR +giš +NU +UR₂ +MA +SUD₂ +ina +gi +SAG +KUD +ana +ŠA₃ +IGI +MIN +šu₂ +BUN₂ +DIŠ +NA +IGI +MIN +šu₂ +IGI +SIG₇ +SIG₇ +DIRI +ŠIKA +giš +NU +UR₂ +MA +ina +I₃ +SUD₂ +MAR +: +mun +eme +sal +li₃ +SUD₂ +MAR +DIŠ +NA +IGI +MIN +šu₂ +GIG +ma +UD +ma +ʾ +du +ti +NU +BAD +ina +KUM₂ +SAG +šu₂ +IGI +MIN +šu₂ +GISSU +DIRI +... +MI +SAG +DU +su +tu +gal +lab +ina +UD +me +3 +šu₂ +NIG₂ +SILA₁₁ +GA₂ +tu +kaṣ₃ +ṣa +NUMUN +u₂ +IN₆ +UŠ₂ +tur +ar₂ +ina +I₃ +NUN +DILIM₂ +A +BAR₂ +SUD₂ +MAR +A +LUH +si +GAZI +sar +UGU +IGI +MIN +šu₂ +GAR +EN +u₂ +za +ku +u₂ +GUR +GUR +u₂ +GEŠTIN +KA₅ +A +LAL₃ +KUR +RA +ina +I₃ +NUN +HE +HE +te +te +niq +qi₂ +DIŠ +NA +IGI +MIN +šu₂ +GIG +ma +ši +ši +tu +UGU +d +LAMA +IGI +MIN +šu₂ +ar₂ +mat +ER₂ +HI +A +DU +ak +IGI +MIN +šu₂ +GISSU +DIRI +ma +u₂ +UKUŠ₂ +LAGAB +sah +la +na +NUMUN +u₂ +EME +UR +GI₇ +... +U₂ +BABBAR +U₅ +ARGAB +mušen +11 +U₂ +HI +A +ša +šu +nu +1 +niš +SUD₂ +ina +I₃ +GIŠ +giš +EREN +HE +HE +IGI +MIN +šu₂ +MAR +ma +TI +DIŠ +NA +IGI +MIN +šu₂ +GIG +ma +ši +ši +tu +UGU +d +LAMA +IGI +MIN +šu₂ +ar₂ +mat +di +gal +šu +DUGUD +ana +BABBAR +ša +UGU +d +LAMA +IGI +MIN +šu₂ +ZI +u₂ +at +kam₂ +... +SUD₂ +... +ina +I₃ +giš +EREN +HE +HE +IGI +MIN +šu₂ +MAR +MES +ma +TI +DIŠ +NA +IGI +MIN +šu₂ +GIG +ma +... +x +di +gal +šu +DUGUD +x +x +... +SUD₂ +IGI +MIN +šu₂ +MAR +... +x +UM +IM +DU +KU +BAD +... +... +SUD₂ +MAR +... +giš +NAM +TAR +NITA₂ +... +x +GU₇ +ma +x +x +... +SUD₂ +ina +gi +SAG +KUD +ana +ŠA₃ +IGI +MIN +šu₂ +MU₂ +ah +... +SUD₂ +MIN +... +ŠUB +di +ana +UGU +ŠIKA +i₃ +gu +le +e +... +x +ta +šar₂ +rap +qut +ra +ša₂ +šit +ti +... +a +he +en +na +IGI +MIN +šu₂ +MAR +MEŠ +ma +TI +DIŠ +NA +IGI +MIN +šu₂ +... +x +ma +DUGUD +ana +TI +šu₂ +ILLU +NU +LUH +ILLU +šim +BULUH +u₂ +... +7 +ITI +u +8 +ITI +ZI +ha +TI +DIŠ +NA +IGI +MIN +šu₂ +ši +ši +tu₂ +DIRI +... +15 +ŠE +ŠIKA +U₂ +BABBAR +ina +I₃ +NUN +SUD₂ +MAR +DIŠ +NA +MIN +1 +GIN₂ +U₅ +ARGAB +mušen +... +SUD₂ +... +x +x +ta +bi +la₁₂ +MAR +DIŠ +NA +MIN +1 +GIN₂ +U₅ +ARGAB +mušen +ina +I₃ +NUN +SUD₂ +MAR +: +15 +ŠE +ŠIKA +... +ina +... +SUD₂ +MAR +u₂ +im +hur +lim +ina +I₃ +NUN +SUD₂ +IGI +MIN +šu₂ +MAR +3894 ... +1 +šu₂ +2 +šu₂ +3 +šu₂ +I₃ +NUN +SUD₂ +MAR +... +ina +I₃ +NUN +SUD₂ +ina +ITI +3 +šu₂ +MAR +U₅ +ARGAB +mušen +ina +I₃ +NUN +SUD₂ +MAR +PA +giš +bi +ni +PA +giš +MA +NU +ina +A +GEŠTIN +NA +ta +la +aš +IGI +MIN +šu₂ +LAL +U₂ +BABBAR +NAGA +SI +UR +TAL₂ +TAL₂ +NU +pa +tan +ana +ŠA₃ +IGI +MIN +šu₂ +ta +ma +za +aʾ +... +x +mun +eme +sal +li₃ +si +ik +ti +ŠE +SA +A +HE +HE +tur +ar₂ +SUD₂ +MAR +DIŠ +... +SAHAR +URUDU +ina +ŠA₃ +I₃ +UDU +sa +a +qi₂ +MAŠ +DA₃ +SUD₂ +MAR +DIŠ +... +šim +SES +GA +munus +U₂ +ZUG₂ +ša₂ +NITA +U₃ +TU +SUD₂ +MAR +LAL₃ +I₃ +NUN +NA +ana +ŠA₃ +IGI +MIN +šu₂ +tu +na +tak₂ +DIŠ +... +x +x +... +IM +NU +E₃ +a +... +x +ina +I₃ +NUN +HE +HE +MAR +... +ta +ša +qal₃ +MAR +... +U₅ +ARGAB +mušen +ta +bi +la₁₂ +ina +I₃ +NUN +HE +HE +KIMIN +... +u₂ +ba +ni +a +ṣi +SIG₇ +su +ina +A +LUH +si +GAZ +A +MEŠ +šu₂ +nu +... +HAD₂ +DU +ši +hi +il +tu₂ +SAHAR +URUDU +mal +ma +liš +HE +HE +ina +A +LUH +LAL₃ +KUR +e +SUD₂ +MAR +... +ina +GA +munus +U₂ +ZUG₂ +mal +ma +liš +HE +HE +SUD₂ +MAR +... +A +MEŠ +šu₂ +nu +ana +dug +BUR +ZI +SUR +at +... +EN +HAD₂ +DU +GAR +an +UD +ma +HAD₂ +DU +ina +SAHAR +URUDU +I₃ +NUN +SUD₂ +MAR +... +ana +ŠA₃ +IGI +MIN +šu₂ +tu +na +tak₂ +I₃ +UDU +ina +SAHAR +URUDU +SUD₂ +MAR +DIŠ +... +IGI +MIN +šu₂ +kat₂ +ma +kur +ṣip +ti +A +ŠA₃ +ina +na₄ +BAR +DU₃ +E +SUD₂ +ŠA₃ +IGI +MIN +šu₂ +... +x +na₄ +KA +GI +NA +DAB +BA +SUHUŠ +giš +GIŠIMMAR +NITA₂ +... +IM +SAHAR +NA₄ +KUR +RA +a +he +e +SUD₂ +MAR +... +x +GURUN +u₂ +UKUŠ₂ +LAGAB +GAZ +ina +I₃ +SUD₂ +MAR +... +ina +LAL₃ +KUR +RA +I₃ +NUN +MIN +... +SUD₂ +MAR +... +SUD₂ +ina +I₃ +NUN +HE +HE +... +... +IGI +MEŠ +šu₂ +nu +ina +giš +DALA₂ +tu +tak₂ +kap +... +ina +DILIM₂ +A +BAR₂ +SUD₂ +MAR +... +bi +la +ta +HAD₂ +DU +GAZ +ina +I₃ +NUN +SUD₂ +MAR +... +SUD₂ +ana +ŠA₃ +IGI +MIN +šu₂ +tu +na +tak₂ +... +MAR +... +x +ti +i +BAD +... +x +hap +pi +... +SUD₂ +MAR +... +ina +TUG₂ +te +sip +... +ana +ŠA₃ +IGI +MIN +šu₂ +tu +na +tak₂ +... +GIŠ +i +na +sah +... +x +A +GAR +GAR +MAŠ +DA₃ +... +ta +sak₃ +MAR +... +x +... +x +ina +A +SUD₂ +te +qi₂ +... +ina +KAŠ +ta +la₃ +aš +IGI +MIN +šu₂ +LAL +... +te +qi₂ +... +x +SUD₂ +te +qi₂ +... +ina +I₃ +SUD₂ +te +qi₂ +... +ina +IGI +šu₂ +GIG +tu +mad +... +ta +sak₃ +te +qi₂ +... +SUD₂ +MAR +x +x +... +KEŠDA +KAŠ₃ +... +u₂ +KUR +KUR +ŠA₃ +IGI +MIN +šu₂ +... +ARA₃ +en +DIŠ +IGI +MIN +šu₂ +... +ZA₃ +HI +LI +U₂ +a +ši +i +... +ina +GA +HE +HE +MAR +a +na +nu +uh₂ +hi +x +... +x +ina +I₃ +HE +HE +MAR +I₃ +UDU +ŠIKA +MUN +ana +ŠA₃ +IGI +MIN +šu₂ +... +ina +I₃ +GIŠ +giš +EREN +HE +HE +MAR +mun +me₅ +SILIM +u₂ +ak +tam +SUD₂ +ina +LAL₃ +... +ina +LAL₃ +BABBAR +GIR₂ +ZABAR +MIN +DIŠ +NA +IGI +MIN +šu₂ +ma +di +ra +x +... +x +ra +U₂ +BABBAR +NUMUN +GI +ZU₂ +LUM +MA +4459 U₅ +ARGAB +mušen +... +A +GAR₅ +ina +I₃ +NUN +BIL₂ +x +... +DIŠ +NA +IGI +MIN +šu₂ +GISSU +ma +šam +ha +... +DIŠ +NA +IGI +ZAG +šu₂ +GISSU +ma +... +ina +GIR₂ +ŠU +I +še +e +li +... +DIŠ +NA +IGI +GUB₃ +šu₂ +GISSU +ma +... +ina +GIR₂ +ŠU +I +... +DIŠ +NA +IGI +MIN +šu₂ +GIG +GA +ZALAG +GA +x +... +UGU +ša +TI₈ +mušen +ina +GA +munus +U₂ +ZUG₂ +SUD₂ +... +NUMUN +GI +ZU₂ +LUM +MA +si +ik +ti +ŠE +SA +A +HE +HE +... +DIŠ +NA +d +LAMA +MEŠ +IGI +MIN +šu₂ +GISSU +DIRI +... +IGI +MIN +šu₂ +MAR +DIŠ +KIMIN +ILLU +LI +TAR +... +DIŠ +IGI +LU₂ +GISSU +ṣi +ri +ih +ta₅ +DIRI +... +... +x +x +... +... +ri +i +... +... +x +DIŠ +KIMIN +... +DIŠ +NA +IGI +MIN +šu₂ +x +x +DIRI +x +... +... +x +MUD₂ +kur +ṣib +ti +GU₄ +GE₆ +u +x +... +DIŠ +NA +IGI +MIN +šu₂ +LU₃ +LU₃ +LAL₃ +BABBAR +ina +I₃ +NUN +1 +niš +HE +HE +... +DUB +2 +KAM₂ +DIŠ +NA +IGI +MIN +šu₂ +GIG +E₂ +GAL +m +aš +šur +DU₃ +A +LUGAL +ŠU₂ +20 +KUR +AN +ŠAR₂ +ki +ša +d +AG +u +d +taš +me +tu₄ +GEŠTU +MIN +ra +pa +aš₂ +tu₄ +iš +ru +ku +šu₂ +e +hu +uz +zu +IGI +MIN +na +mir +tu₄ +ni +siq +tup +šar +ru +ti +ša +ina +LUGAL +MEŠ +ni +a +lik +mah +ri +ia +mam₂ +ma +šip +ru +šu +a +tu₂ +NU +e +hu +uz +zu +bul +ṭi +TA +muh +hi +EN +UMBIN +liq +ti +BAR +MEŠ +ta +hi +zu +nak +la +a +zu +gal +lu +ut +d +nin +urta +u +d +gu +la +ma +la +ba +aš₂ +mu +ina +ṭup +pa +a +ni +aš₂ +ṭur₃ +as +niq +IGI +KAR₂ +ma +a +na +ta +mar +ti +ši +ta +si +ia +qe₂ +reb +E₂ +GAL +ia +u₂ +kin +DIŠ +NA +su +a +lam +GIG +ana +ki +is +ŠA₃ +GUR +šu₂ +šu +ru +uš +giš +NAM +TAR +šu +ru +uš +giš +šu +še +u₂ +tar +muš +u₂ +IGI +lim +u₂ +IGI +NIŠ +u₂ +tu +lal +u₂ +ŠAKIRA +7 +U₂ +HI +A +ŠEŠ +TEŠ₂ +BI +SUD₂ +ina +KAŠ +ŠUB +di +ina +MUL +tuš +bat +ina +A₂ +GU₂ +ZI +GA +NU +pa +tan +NAG +MEŠ +ma +ina +eš +DIŠ +NA +ki +is +ŠA₃ +GIG +ina +UD +ša₂ +tu +giš +MA₂ +GUR₈ +U₅ +šu₂ +E₁₁ +šu₂ +ma +TU₆ +ki +a +am +ŠID +nu +EN₂ +E₂ +NU +RU +LU +RA +GAR +dam +gal +kur +MIN +: +gi +d +en +lil₂ +a₂ +e +nu +ub +zum +d +zar +pa +ni +tu₄ +ša +igi +gal₂ +la +gub +a +gir₃ +a +ni +gub +ba +gir₃ +a +ni +dur₂ +ra +: +du +ra +gir₃ +igi +gal₂ +gub +gir₃ +igi +gal₂ +TU₆ +EN₂ +TU₆ +an +ni +ta +ŠID +nu +ma +TI +ana +KI +MIN +UZU +d +NIN +KILIM +HAD₂ +A +ba +lu +pa +tan +NAG +ma +TI +: +ana +KI +MIN +šu +ru +uš +giš +šu₂ +še +ina +A +MEŠ +ba +lu +pa +tan +NAG +ma +TI +ana +KI +MIN +MUN +SUD₂ +ina +A +MEŠ +ba +lu +pa +tan +NAG +ma +TI +ana +KI +MIN +MUN +a +ma +ni₇ +SUD₂ +ba +lu +pa +tan +NAG +ma +TI +DIŠ +NA +ki +is +ŠA₃ +GIG +NA +BI +ina +UGU +GIR₃ +MIN +šu₂ +tu +še +šab +šu₂ +A +GAZI +sar +sek +ru +ti +KUM₂ +ti +ana +UGU +šu₂ +DUB +ma +TI +ana +KI +MIN +ina +UGU +GIR₃ +MIN +šu₂ +uk +tam +ma +as +ma +u₂ +šab +A +ŠED₇ +ana +UGU +SAG +šu₂ +tu +qar +ra +ar₂ +ana +KI +MIN +SAG +DU +su +ana +šap +la +nu +GAR +an +GIR₃ +MIN +šu₂ +ana +AN +TA +nu +tu +ša₂ +qa +ina +me +ku +ti +TE +su +ta +ma +haṣ +ina +me +ku +ti +tu +ma +aš +šad +su +ma +ana +ŠA₃ +DU₁₀ +ab +DU₁₁ +GA +ina +ŠU +SI +ka +GAL +ti +ša +GUB₃ +14 +šu₂ +GU +DU +su +TAG +at +14 +šu₂ +SAG +DU +su +TAG +at +u +qaq +qa +ra +TAG +at +ana +KI +MIN +SUHUŠ +giš +NAM +TAR +NITA₂ +SUHUŠ +giš +šu +šum +u₂ +IGI +lim +u₂ +IGI +NIŠ +u₂ +tar +muš +u₂ +IN +NU +UŠ +u₂ +EME +UR +GI₇ +SUD₂ +lu +ina +A +lu +ina +KAŠ +NAG +DIŠ +NA +ŠA₃ +šu₂ +it +te +net +ba +aš +šum +10 +SILAₓ +u₂ +x +x +x +x +10 +SILAₓ +u₂ +MA₂ +ERIŠ₄ +MA₂ +LA₂ +e +SUD₂ +HI +HI +x +x +x +x +TI +DIŠ +NA +ki +is +ŠA₃ +GIG +ŠA₃ +MEŠ +šu₂ +ma +gal +MU₂ +MU₂ +hu +mu +še +er +rit +ta +šu₂ +GU₇ +šu₂ +u₂ +IGI +NIŠ +SUHUŠ +giš +NAM +TAR +NITA₂ +a +he +en +na +a +GAZ +SIM +ina +ŠA₃ +mal +ma +liš +TI +qe₂ +ina +KAŠ +NAG +ina +A +ŠED₇ +tu +la +bak +ina +MUL₄ +tuš +bat +ina +še +ri₃ +ŠEG₆ +šal +ta +ša₂ +hal +ana +DUR₂ +šu₂ +DUB +ak +SI +SA₂ +ma +TI +šim +GUR₂ +GUR₂ +šim +LI +šim +GAM +MA +PA +giš +GE₆ +PAR₃ +PA +giš +ŠE +HAR +NUMUN +u₂ +ur +ba +ti +DIŠ +niš +GAZ +SIM +KI +I₃ +UDU +šim +HAB +HI +HI +ina +KUŠ +EDIN +SUR +ri +SAG +ŠA₃ +šu₂ +LAL₂ +ma +TI +DIŠ +NA +ki +is +ŠA₃ +GIG +NINDA +u +KAŠ +ŠA₃ +šu₂ +NU +IGI +har +šu₂ +ina +KA +šu₂ +GUR +GUR +ra +TUN₃ +šu₂ +u₂ +sa +hal +šu₂ +ip +ta +na +ru +UZU +MEŠ +šu₂ +ir +ta +nam +mu +u₂ +IM +ina +DUR₂ +šu₂ +NIGIN +ŠA₃ +MEŠ +šu₂ +eb +ṭu₂ +ana +TI +šu₂ +1 +2 +SILA₃ +A +ZU₂ +LUM +MA +1 +2 +SILA₃ +A +GAZI +sar +10 +SILAₓ +A +GEŠTIN +NA +3 +GIN₂ +I₃ +hal +ṣa +2 +GIN₂ +LAL₃ +10 +GIN₂ +u₂ +KUR +RA +SUD₂ +ana +ŠA₃ +ŠUB +di +ina +GE₆ +ana +IGI +mul +UZ₃ +tuš +bat +ina +A₂ +GU₂ +ZI +GA +NU +pa +tan +NAG +šu₂ +EGIR +šu₂ +1 +2 +SILA₃ +ši +qa +NAG +šu₂ +ina +KA +šu₂ +u +DUR₂ +šu₂ +SI +SA₂ +tu +ser +šu₂ +ma +TI +uṭ +ana +KI +MIN +MUN +KUR +i +MUN +a +ma +ni₇ +TEŠ₂ +BI +SUD₂ +ina +KAŠ +NU +pa +tan +NAG +šu₂ +ina +KA +šu₂ +u +DUR₂ +šu₂ +SI +SA₂ +ma +tu +ser +šu₂ +ma +TI +ana +KI +MIN +u₂ +NU +LUH +HA +7 +ŠE +MEŠ +u₂ +IGI +lim +TEŠ₂ +BI +SUD₂ +ina +KAŠ +SAG +NU +pa +tan +NAG +šu₂ +ina +KA +šu₂ +u +DUR₂ +šu₂ +SI +SA₂ +ma +KI +MIN +ana +KI +MIN +ZI₃ +ŠE +SA +A +ZI₃ +ha +ru +be +di +ik +ta +ZU₂ +LUM +MA +TEŠ₂ +BI +SUD₂ +ina +KAŠ +NU +pa +tan +2 +UD +me +NAG +MEŠ +2 +UD +me +ina +A +MEŠ +NU +pa +tan +NAG +MEŠ +A +MEŠ +SAG +ŠA₃ +šu₂ +tu +sa +lah₂ +ma +TI +ana +KI +MIN +urudu +ŠEN +TUR +A +u +KAŠ +DIRI +ma +giš +si +ha +giš +ar₂ +gan +na +giš +ba +ri +ra +ta +u₂ +HAR +HAR +u₂ +at +kam₂ +ana +ŠA₃ +ŠUB +di +x +x +x +x +x +x +x +x +x +x +I₃ +giš +EREN +ŠEŠ₂ +su +1 +2 +SILA₃ +sah +le₂ +e +1 +2 +SILA₃ +šim +GUR₂ +GUR₂ +1 +2 +SILA₃ +šim +LI +1 +2 +SILA₃ +u₂ +qut +ri +1 +2 +SILA₃ +GAZI +sar +1 +2 +SILA₃ +ZI₃ +MUNU₆ +1 +2 +SILA₃ +ZI₃ +GU₂ +GAL +1 +2 +SILA₃ +ZI₃ +GU₂ +TUR +1 +2 +SILA₃ +pa +pa +si +d +ID₂ +1 +2 +SILA₃ +u₂ +KUR +RA +1 +2 +SILA₃ +u₂ +AB₂ +DUH +1 +2 +SILA₃ +ŠE₁₀ +TU +mušen +1 +2 +SILA₃ +u₂ +KAM +ti +A +ŠA₃ +10 +GIN₂ +šim +MAŠ +10 +GIN₂ +KA +A +AB +BA +1 +2 +SILA₃ +ZI₃ +GIG +1 +2 +SILA₃ +ZU₂ +LUM +MA +1 +2 +SILA₃ +DIDA +SIG +GA +1 +2 +SILA₃ +ZI₃ +KUM +16 +U₂ +MEŠ +an +nu +ti +TEŠ₂ +BI +GAZ +SIM +ina +KAŠ +SAG +ina +urudu +ŠEN +TUR +GIM +ra +bi +ki +tara +bak +3 +UD +me +SAG +ŠA₃ +šu₂ +LAL₂ +id +NINDA +MEŠ +u +KAŠ +ŠA₃ +šu₂ +IGI +har +šu₂ +ma +TI +DIŠ +NA +ŠA₃ +šu₂ +ik +ta +na +su +šu₂ +u₂ +IGI +lim +NU +pa +tan +i +kal +ta +sak₃ +ina +KAŠ +NU +pa +tan +NAG +MEŠ +ma +TI +uṭ +ana +KI +MIN +u₂ +IGI +NIŠ +SUHUŠ +u₂ +šur +ne₂ +e +NU +pa +tan +GU₇ +MEŠ +SUD₂ +ina +KAŠ +NU +pa +tan +NAG +MEŠ +ma +TI +uṭ +ana +KI +MIN +u₂ +ar₂ +zal +la +u₂ +HAR +HAR +šim +GUR₂ +GUR₂ +šim +x +x +x +x +NU +pa +tan +KI +MIN +ana +KI +MIN +I₃ +UDU +a +a +ar +DINGIR +KI +I₃ +NUN +NA +u +MUN +HI +HI +NU +pa +tan +GU₇ +MEŠ +ma +TI +ana +KI +MIN +kak +ku +sa +kam₂ +ša₂ +PA +MEŠ +šu₂ +DAGAL +MEŠ +ina +A +GAZI +sar +SUD₂ +ina +KAŠ +u +LAL₃ +SIG₃ +aṣ +NU +pa +tan +NAG +MEŠ +ma +TI +ana +KI +MIN +kak +ku +sa +kam₂ +ša₂ +PA +MEŠ +šu₂ +DAGAL +MEŠ +u +MUN +DIŠ +niš +SUD₂ +ina +KAŠ +u +LAL₃ +SIG₃ +aṣ +NU +pa +tan +NAG +MEŠ +ma +TI +ana +KI +MIN +KIŠI₁₆ +HAB +ša₂ +PA +MEŠ +šu₂ +DAGAL +MEŠ +GIM +LU +UB₂ +sar +ta +sa +laq +NAG +MEŠ +TI +ana +KI +MIN +SUHUŠ +giš +šu +še +NU +pa +tan +GU₇ +SUD₂ +ina +KAŠ +NU +pa +tan +NAG +x +x +x +x +x +x +x +TI +DIŠ +NA +x +x +x +x +x +TUKU +UD +um +ŠA₃ +šu₂ +DAB +šu₂ +x +x +x +x +x +NU +pa +tan +NAG +TI +... +x +... +KAŠ +MIN +5997 ... +x +... +SA +... +x +... +x +x +6007 DIŠ +NA +ŠA₃ +šu₂ +GU₇ +šu₂ +u₂ +HAR +HAR +MUN +SUD₂ +lu +ina +A +lu +ina +KAŠ +lu +ina +GEŠTIN +EN₂ +ana +ŠA₃ +ŠUB +di +NAG +DIŠ +NA +ŠA₃ +šu₂ +GU₇ +šu₂ +u₂ +HAR +HAR +lu +ina +A +lu +ina +KAŠ +NAG +DIŠ +NA +ŠA₃ +šu₂ +GU₇ +šu₂ +u₂ +ti +ia +a +ti +ina +KAŠ +NAG +u₂ +IGI +lim +ina +KAŠ +u₂ +IGI +NIŠ +ina +KAŠ +u₂ +tar +muš +ina +KAŠ +u₂ +DILI +ina +KAŠ +u₂ +GAMUN +GE₆ +ina +KAŠ +u₂ +HAB +ina +KAŠ +u₂ +HAR +HAR +lu +ina +KAŠ +lu +ina +GEŠTIN +DIŠ +NA +ŠA₃ +MEŠ +šu₂ +GU₇ +MEŠ +šu₂ +1 +2 +SILA₃ +ZU₂ +LUM +MA +1 +2 +SILA₃ +NIG₂ +AR₃ +RA +GIG +BA +1 +2 +SILA₃ +LAGAB +MUNU₆ +ina +3 +SILA₃ +KAŠ +SAG +ŠEG₆ +šal +tu +kaṣ₃ +ṣa +ta +ša₂ +hal +I₃ +GIŠ +ana +IGI +ŠUB +di +ana +DUR₂ +šu₂ +DUB +ak +UD +ma +LU +UB₂ +SUM +sar +GAMUN +sar +SUD₂ +ina +KAŠ +NAG +: +ana +KI +MIN +HI +IS +sar +SUM +sar +SUD₂ +ana +A +ŠUB +ina +MUL₄ +tuš +bat +NAG +iš +tu +NAG +u₂ +NINDA +I₃ +DE₂ +A +ina +I₃ +NUN +NA +GU₇ +: +ana +KI +MIN +u₂ +NU +LUH +HA +SUD₂ +ina +KAŠ +NAG +ana +KI +MIN +u₂ +IGI +lim +SUD₂ +KI +MIN +: +ana +KI +MIN +u₂ +SIKIL +SIG₇ +GU₇ +DIŠ +NA +ŠA₃ +šu₂ +ka +si +šu₂ +SUM +sar +SIG₇ +su +šim +GUR₂ +GUR₂ +TEŠ₂ +BI +SUD₂ +ina +A +SIG₃ +aṣ +NU +pa +tan +NAG +šu₂ +ZU₂ +LUM +MA +lu +ina +I₃ +ŠAH +lu +ina +I₃ +GIŠ +GU₇ +ana +KI +MIN +šim +ŠE +LI +BABBAR +SUD₂ +ina +KAŠ +NU +pa +tan +NAG +ma +TI +ana +KI +MIN +u₂ +IGI +lim +u₂ +IGI +NIŠ +u₂ +tar +muš +SUHUŠ +giš +NAM +TAR +NITA₂ +x +x +x +mal +ma +liš +HI +HI +ina +KAŠ +tara₃ +sa +an +ina +MUL₄ +tuš +bat +ina +še +ri₃ +ba +lu +pa +tan +NAG +šu₂ +A +GAZI +NU +NAG +šu₂ +TI +DIŠ +NA +ŠA₃ +šu₂ +ik +ta +na +su +šu₂ +ŠA₃ +MEŠ +šu₂ +ma +gal +nap +hu +u₂ +HAR +HAR +GI +DU₁₀ +GA +šim +MUG +šim +LI +ana +ŠA₃ +bi +ŠUB +di +ŠEG₆ +šal +ta +ša₂ +hal +lu +ba +hir₂ +ana +DUR₂ +šu₂ +DUB +ma +TI +DIŠ +NA +NINDA +GU₇ +KAŠ +NAG +ma +i +ši +bi +ŠA₃ +šu₂ +ik +ta +na +su +šu₂ +DAB +MEŠ +su +ŠA₃ +MEŠ +šu₂ +MU₂ +MU₂ +u +i +sil +ŠA₃ +šu₂ +mu +še +KIN +NIM +GIG +ana +TI +šu₂ +giš +e +re +na +giš +ŠUR +MIN₃ +GI +DU₁₀ +GA +šim +BAL +šim +GIR₂ +u₂ +HAR +HAR +5 +U₂ +HI +A +ŠEŠ +TEŠ₂ +BI +ta +ka +sim +ana +KAŠ +ŠUB +di +ŠEG₆ +šal +ta +ša₂ +hal +LAL₃ +u +I₃ +GIŠ +hal +ṣa +ana +ŠA₃ +ŠUB +di +lu +ba +hi +ir +ana +KUŠ +maš +qe₂ +ti +te +si +ip +ana +DUR₂ +šu₂ +DUB +TI +EN₂ +ŠA₃ +MEŠ +it +ta +nap +ša₂ +ru +ze +er +kar +šu₂ +ŠA₃ +NIGIN +ku +uṣ +ṣu +ru +u₂ +x +x +x +x +x +x +x +x +x +ek +le +ta +ki +i +me +e +hi +ri +ti +a +la +pa +a +na +du +u₂ +IGI +MEŠ +šu₂ +ša +ar +EDIN +e +di +ip +na +di +i +ta +naq +qi₂ +ŠU +EDIN +ma +la +a +IGI +MEŠ +šu₂ +e +ta +na +ba +la +ša +pa +tu +šu₂ +i +ta +na +pa +aṣ +ki +ma +KU₆ +MEŠ +it +ta +nak +bir +ki +ma +MUŠ +e +mur +ma +d +gu +la +na +di +na +at +ba +la +ṭi +NAM +LU₂ +U₁₈ +LU +ina +E₂ +d +asal +lu₂ +hi +u₂ +bil +eṭ +lu +d +AMAR +UTU +re +me₂ +nu +u +ip +pa +lis +su +ma +gi +ša +ma +TI +uṭ +eṭ +lu +šum₂ +ma +IM +ina +DUR₂ +lu +ṣi +šum₂ +ma +gi +ša +tu +ina +nap +ša₂ +ti +li +še +ṣi +TU₆ +EN₂ +KA +INIM +MA +ana +ki +is +ŠA₃ +ŠID +nu +DIŠ +NA +e +ta +na +ša₂ +aš₂ +NINDA +u +KAŠ +la +i +mah +har +MAŠ +SILA₃ +MIN +šu₂ +GU₇ +MEŠ +šu₂ +SAG +DU +su +gi +na +a +LAL +I₃ +NUN +NA +GU₇ +UD +7 +KAM₂ +SUM +sar +SUM +SIKIL +sar +GA +RAŠ +sar +NU +GU₇ +ina +A +giš +ŠE +NU +RA +MEŠ +aṣ +NUMUN +u₂ +UKUŠ₂ +HAB +NUMUN +u₂ +HAR +HAR +SUD₂ +ina +KAŠ +NAG +ma +TI +ana +KI +MIN +x +x +x +NIG₂ +SILA₁₁ +GA₂ +HAD₂ +A +SUD₂ +ina +KAŠ +lu₂ +KURUN₂ +NA +NAG +NUMUN +u₂ +UKUŠ₂ +HAB +: +NUMUN +šim +LI +NUMUN +giš +ŠE +NU +SUD₂ +ina +KAŠ +NAG +DIŠ +NA +ki +is +ŠA₃ +GIG +ana +ki +is +ŠA₃ +KUD +si +u₂ +IGI +lim +u₂ +IGI +NIŠ +u₂ +tar +muš +: +u₂ +tar +muš₈ +u₂ +KUR +RA +SUD₂ +ina +I₃ +u +KAŠ +NAG +x +x +x +ina +KAŠ +NAG +PEŠ₂ +SILA₃ +GAZ +ša₂ +bu +la +GU₇ +x +x +x +u₂ +kak +ku +sak +ku +ša₂ +PA +MEŠ +šu₂ +DAGAL +MEŠ +u₂ +HAB +u₂ +IGI +lim +SUD₂ +ina +I₃ +KUR +RA +: +I₃ +SIKIL +NAG +MUN +ina +KAŠ +NAG +MUN +ina +A +NU +pa +tan +NAG +ma +ina +eš +DIŠ +NA +lib₃ +bi +lib₃ +bi +GU₃ +GU₃ +si +u₂ +ur₂ +ne₂ +e +u₂ +HAR +HAR +u₂ +ti +ia +ta₅ +u₂ +NU +LUH +HA +u₂ +KUR +RA +sah +le₂ +e +u₂ +tar +muš₈ +u₂ +IGI +lim +u₂ +IGI +NIŠ +u₂ +ak +tam +u₂ +IN +NU +UŠ +giš +ŠINIG +12 +U₂ +HI +A +ŠEŠ +ba +lu +pa +tan +ina +KAŠ +NAG +MEŠ +DIŠ +NA +ŠA₃ +šu₂ +ik +ta +na +ar +PA +giš +ŠINIG +u₂ +IN +NU +UŠ +GIŠ +BUR₂ +SUD₂ +ina +KAŠ +NU +pa +tan +NAG +ma +ina +eš +SUHUŠ +giš +šu +ši +SUHUŠ +giš +NAM +TAR +NITA₂ +u₂ +tar +muš₈ +u₂ +IGI +lim +u₂ +IGI +NIŠ +u₂ +IN₆ +UŠ₂ +NUMUN +u₂ +IN₆ +UŠ₂ +7 +U₂ +HI +A +ki +is +ŠA₃ +bi +ina +KAŠ +NAG +1 +GIN₂ +MUN +eme +sal +li₃ +šim +GUR₂ +GUR₂ +šim +LI +DIŠ +niš +GAZ +SIM +ina +KAŠ +ŠEG₆ +šal +x +x +ana +ŠA₃ +ŠUB +di +ana +DUR₂ +šu₂ +DUB +ak +EN₂ +mi +na +a +ma +lu +u₂ +lib +bu +ka +mi +na +a +ma +lu +u₂ +lib +bu +ka +x +x +x +d +x +x +lib +bu +ka +man +nu +lu +uš +pur +ana +gu +gal +lib +bi +ka +liš +ša₂ +a +x +x +x +x +x +x +x +x +x +x +x +x +li +pat +ta +a +ID₂ +MEŠ +x +x +x +x +x +x +x +x +x +li +par +ši +du +ma +li +ṣu +ni +zu +u₂ +šu₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +li +mur +EN₂ +ul +ia +tu +un +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +d +gu +la +TI +LA +qiš +ta₅ +TI +e +EN₂ +EN₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +GU₇ +ia +ŠA₃ +bi +KI +SIKIL +ana +GAZ +ia +x +x +x +x +x +x +x +x +x +x +x +ŠA₃ +bi +GUD +ina +u₂ +re +e +li +kul +x +x +x +x +x +x +x +x +ŠA₃ +bi +ŠAH +ina +a +sur +re +e +x +x +x +x +x +x +d +a +sal +luh +u +d +gu +la +x +x +x +x +x +x +x +x +iq +bu +nim +ma +a +na +ku +u₂ +ša₂ +an +ni +x +x +x +x +x +x +x +x +x +... +EN₂ +ana +UGU +LI +DUR +ŠID +nu +x +x +x +x +gi +pisan(E₂) +gen₇ +keš₂ +da +x +x +x +x +x +x +x +x +: +a +pu₂ +gen₇ +a +ge₆ +a +nu +tuku +x +x +x +x +x +x +tuku +: +u₂ +nu +ku₄ +ku₄ +a +nu +ku₄ +ku₄ +... +ne +: +d +asal +lu₂ +hi +igi +: +nig₂ +ge₂₆ +e +: +gen +na +dumu +gu₁₀ +x +x +x +x +ne +ke₄ +: +u₃ +u₂ +ha +šu +u₂ +šu +u +me +ti +nam +šub +eridu +ki +ga +u +me +ni +si₃ +: +lu₂ +u₁₈ +lu +dumu +dingir +ra +na +ka +bi +ta +u +me +ni +gar +lu₂ +dumu +dingir +ra +na +še₁₀ +gen₇ +he₂ +dur₂ +re +bu +luh +gen₇ +ri +he₂ +en +si +il +e +: +im +ma +gu +du +a +ni +ta +he₂ +em +ma +ra +e₃ +KID₃ +KID₃ +BI +x +x +x +x +ana +UGU +EN₂ +ŠUB +di +ina +KA +šu₂ +u₂ +man +zaq +ma +ina +KAŠ +NAG +ma +ina +eš +7378 ... +ka +keš₂ +bi +he₂ +du₈ +a +... +d +asal +lu₂ +hi +dumu +eridu +ki +ga +ke₄ +ka +keš₂ +bi +he₂ +du₈ +a +KID₃ +KID₃ +BI +x +x +x +x +EN₂ +7 +šu₂ +ŠID +nu +ina +KA +šu₂ +u₂ +man +zaq +ma +ina +eš +EN₂ +d +ŠAKKAN₂ +ina +EDIN +ŠA₃ +ba +šu₂ +ka +su +šu₂ +ma +SAHAR +SIG₃ +SIG₃ +ta +ma +la +a +rit +ta +šu₂ +ul +um +mu +pe +ta +at +pa +ni +šu₂ +ul +a +ha +tu +mu +še +qa +at +re +ši +šu₂ +ki +ma +DI +GI +DA +na +ši +pat +ri +TU₆ +EN₂ +KID₃ +KID₃ +BI +LAG +MUN +u₂ +nu +hur +ta₅ +TI +qe₂ +ana +UGU +EN₂ +ŠUB +di +x +x +x +x +x +x +x +x +x +EN₂ +šam +mu +ša₂ +ŠA₃ +bi +ina +KUR +i +a +ṣi +ma +as +suh +šu +ma +x +x +x +x +x +a +na +d +UTU +DU₁₁ +GA +ma +iṣ +ṣa +bat +ŠA₃ +bi +d +UTU +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +a +na +NENNI +A +NENNI +DU₁₁ +GA +ma +iṣ +ṣa +bat +ŠA₃ +bi +NENNI +A +NENNI +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +a +na +d +e₂ +a +EN +ia +aq +bi +ma +ŠA₃ +bi +x +x +x +x +x +x +x +x +x +x +ŠA₃ +bi +AN +u +KI +lip +pa +šir +ŠA₃ +bi +x +x +x +x +x +x +ŠA₃ +NENNI +A +NENNI +lip +pa +šir +x +x +x +x +x +x +x +x +x +NAG +šu₂ +... +KA +INIM +MA +... +KID₃ +KID₃ +BI +x +x +... +7 +šu₂ +u +7 +šu₂ +x +... +TA +urudu +na +ah +bi +... +ana +IGI +d +UTU +EN₂ +7 +šu₂ +x +x +x +ŠID +nu +... +ina +KI +ta +sa +rim +x +x +x +x +ina +GIR₃ +15 +u +150 +x +... +ina +na +kap +GIR₃ +15 +u +150 +i +na +as +suk +ma +ina +eš +EN₂ +ŠA₃ +d +UTU +ina +KUR +i +x +x +GIG +ma +: +U₂ +ŠA₃ +ina +ma₂ +kan +ki +a +ṣi +ma +d +30 +is +suh +šu +ša₂ +d +UTU +im +me +ru +pa +nu +šu₂ +d +UTU +šam +ma +TA +KUR +i +u₂ +še +ri +dam +ma +iš +kun +ma +ina +qaq +qa +ri +šur +šu +šu +qaq +qa +ra +DIRI +SI +MEŠ +šu₂ +AN +e +nak +pa +iṣ +bat +ŠA₃ +d +UTU +ina +le +qi₂ +šu +iṣ +bat +ŠA₃ +d +30 +ina +DUNGU +MEŠ +iṣ +bat +ŠA₃ +GUD +ina +tar +ba +ṣi +iṣ +bat +ŠA₃ +UDU +NITA₂ +ina +su +pu +ri +iṣ +bat +ŠA₃ +ANŠE +ina +su +kul +li +iṣ +bat +ŠA₃ +UR +GI₇ +ina +ši +ga +ri +iṣ +bat +ŠA₃ +ŠAH +ina +er +re +ti +iṣ +bat +ŠA₃ +GURUŠ +ina +me +lul +ti +iṣ +bat +ŠA₃ +KI +SIKIL +ina +ur +ši +ša₂ +iṣ +bat +ŠA₃ +NENNI +A +NENNI +tu +mu +re +e +tu +ga +re +e +a +na +e +re +ši +šu +ma +SU +šu₂ +i +di +: +e +ma +iš +ku +nu +i +di +TU₆ +EN₂ +KID₃ +KID₃ +BI +u₂ +ur₂ +ne₂ +e +u₂ +NU +LUH +HA +u₂ +ti +ia +ta₅ +GAZI +sar +u₂ +KUR +RA +DIŠ +niš +SUD₂ +ina +KAŠ +SIG₃ +aṣ +EN₂ +ana +ŠA₃ +ŠID +nu +ina +ŠU +GUB₃ +šu₂ +NAG +ma +TI +EN₂ +šam +mu +ša₂ +ŠA₃ +bi +ina +KUR +i +a +ṣi +ma +as +suh +šu₂ +ma +iṣ +ṣa +bat +ŠA₃ +bi +ana +d +UTU +aq +bi +ma +iṣ +ṣa +bat +ŠA₃ +d +UTU +ana +AN +e +u +KI +ti₃ +aq +bi +ma +iṣ +ṣa +bat +ŠA₃ +AN +u +KI +ana +u₂ +ma +mi +DU₁₁ +GA +ma +iṣ +ṣa +bat +ŠA₃ +u₂ +ma +me +a +na +d +e₂ +a +EN +ap +si +aq +bi +ma +ŠA₃ +bi +lip +pa +šir₃ +ŠA₃ +bi +d +UTU +lip +pa +šir₃ +ki +ma +ŠA₃ +bi +d +UTU +ip +pa +ša₂ +ru +ŠA₃ +bi +AN +u +KI +lip +pa +šir₃ +ki +ma +ŠA₃ +bi +AN +u +KI +... +x +x +x +KID₃ +KID₃ +BI +x +x +x +x +EN₂ +7 +šu₂ +ŠID +nu +ina +KA +šu₂ +u₂ +man +zaq +ma +ina +eš +EN₂ +ER₂ +IR +UD +LI +AN +x +x +x +x +sa +bi +tu₄ +nam +zi +tu₄ +a +ši +tu₄ +pi +ina +a +mat +d +AMAR +UTU +ina +qi₂ +bit +d +UTU +LU₂ +lib +luṭ +TU₆ +EN₂ +EN₂ +IM +el +lu +ša₂ +ina +KUR +i +aš₂ +bu +man +nu +ub +lak +ka +x +x +el +li +ša₂ +a +me +lu +ti +ša₂ +UZU +šu₂ +ša₂ +la +a +ka +li₃ +ša₂ +BUR₃ +BUR₃ +šu +ša₂ +la +x +x +x +x +x +IR +IM +ana +šu +bur +ri +ki +ma +ṣe +er +ka +ra +ni₇ +ta +aṣ +ṣi +... +x +TU₆ +EN₂ +KID₃ +KID₃ +BI +u₂ +ti +ia +ta₅ +GAZI +sar +x +... +x +I₃ +GIŠ +ana +pa +ni +ma +aš +ti +i +ta +za +ru₃ +3 +šu₂ +EN₂ +ŠID +... +ana +KI +MIN +... +x +... +x +x +x +... +... +ti +ia +ta₅ +GAZI +sar +ta +mar +raq +ina +KAŠ +NAG +ana +KI +MIN +... +ina +I₃ +GIŠ +u +KAŠ +SAG +NAG +EN₂ +e +sil +ki +ma +na +di +na +pi +ih +ma +ki +ma +lu +up +pi +KA +NA +šu +u₂ +ina +KA +šu₂ +šu +u₂ +giš +PEŠ₃ +NU +E₃ +ma +TU₆ +EN₂ +KID₃ +KID₃ +BI +ina +ŠU +SI +GIR₃ +ka +GAL +ti +ša₂ +GUB₃ +EN₂ +7 +šu₂ +ana +UGU +LI +DUR +šu₂ +ŠUB +ma +ina +eš +EN₂ +ŠA₃ +nam +zi +tu₄ +KAŠ +la +as +su +uh +TU₆ +EN₂ +KID₃ +KID₃ +BI +ina +ŠU +SI +GIR₃ +ka +GAL +ti +ša₂ +150 +EN₂ +ŠUB +di +u +ina +ŠU +SI +ka +ta₅ +mar +raṭ +ma +ina +eš +EN₂ +ša +ru +um +mi +ša₂ +ru +ša₂ +ru +IZI +DINGIR +MEŠ +at +ta₅ +ša +ru +ša +bi +rit +ze +e +u +ši +na +a +ti +at +ta₅ +tu +ṣi +a +ma +it +ti +DINGIR +MEŠ +ŠEŠ +MEŠ +ka +na +di +a +at +giš +GU +ZA +ka +EN₂ +KID₃ +KID₃ +BI +u₂ +EME +UR +GI₇ +HAD₂ +A +SUD₂ +ina +I₃ +GIŠ +ŠUB +di +EN₂ +ŠID +nu +ŠEŠ₂ +su +ma +ina +eš +EN₂ +lib +bu +ma +ŠA₃ +bu +ŠA₃ +bu +da +an +ŠA₃ +bu +qar +rad +GIM +UR +MAH +ma +li +pu +luh +ta₅ +ki +ma +UR +BAR +RA +la +ka +da +uš +šur +EN₂ +ul +ia +at +tu₂ +EN₂ +d +gu +la +EN₂ +a +nam +di +EN₂ +ana +DUMU +MUNUS +d +e₂ +a +a +nam +di +EN₂ +ana +DUMU +MUNUS +d +a +nim +a +nam +di +ana +DUMU +MUNUS +DINGIR +aš +šum +mi +ni +i +aš +šum +mi +ni +i +aš +šum +ka +bat +ti +aš +šum +li +ib +bi +aš +šum +li +ib +bi +aš +šum +li +ib +bi +mar +ṣi +TU₆ +EN₂ +KID₃ +KID₃ +BI +SIG₂ +BABBAR +DUR +NU +NU +7 +KA +KEŠDA +KEŠDA +EN₂ +ŠID +nu +ina +EGIR +šu₂ +KEŠDA +ma +ina +eš +EN₂ +a +na +li +bur +za +ni +nu +qi₂ +bi +ma +um +ma +a +da +pa +ABGAL +ma +TA +at +ta₅ +u +a +na +ku +kul +lat +KUR +ni +ti +qam +ma +A +PU₂ +ha +li +lu +ti +x +x +x +x +8554 x +x +x +x +x +x +x +x +x +qa₂ +ti +mar +ṣi +ṣa +bat +EN₂ +d +e₂ +a +ŠUB +šu₂ +ma +LU₂ +lib +luṭ +EN₂ +KID₃ +KID₃ +BI +u₂ +NU +LUH +HA +u₂ +ti +ia +ta₅ +MUN +ta +mar +raq +x +x +x +x +x +x +x +x +x +x +GUB₃ +šu₂ +ina +ŠU +ka +ta +mar +raṭ +EN₂ +... +x +TIM +a +na +li +bur +na +din +iš +pur +an +ni +... +ina +a +hi +PU₂ +ša₂ +KUR +i +... +ul +nu +uš +ba +am +ma +... +NENNI +A +NENNI +ra +ši +DINGIR +ana +mah +ri +ka +... +x +MI +AL +MU +TU₆ +EN₂ +KID₃ +KID₃ +BI +... +x +ša₂ +EN₂ +ana +x +x +ŠUB +u₂ +... +te +de +ek +ki +šu +ma +i +ne +eš +EN₂ +... +DUMU +d +UTU +ina +AN +e +u +KI +te +MIN +KID₃ +KID₃ +BI +... +NI₂ +šu₂ +ŠID +nu +EN₂ +x +x +x +x +x +BAL +IN +e +mur +šu₂ +ma +d +asal +lu₂ +hi +ih +ba +a +A +MEŠ +ABZU +x +x +x +x +GIM +dug +GAN +ina +qa₂ +ti +šu +GIŠ +HUR +ŠA₃ +bi +ana +d +e₂ +a +be +li₂ +šu +EN₂ +ul +ia +tu +un +EN₂ +d +60 +u +d +asal +lu₂ +hi +EN₂ +d +gu +la +GAŠAN +EN₂ +TU₆ +EN₂ +KID₃ +KID₃ +BI +u₂ +NU +LUH +HA +MUN +TI +qe₂ +EN₂ +3 +šu₂ +ana +ŠA₃ +ŠUB +ma +i +man +zaq +ma +TI +EN₂ +da +an +ŠA₃ +bu +qar +rad +ŠA₃ +bu +ša₂ +ŠA₃ +bi +ar +ra +qa +IGI +MIN +šu₂ +pur +si +it +MUD₂ +na +ši +ma +ir +ru +sa +hi +ru +ti +ul +lu +lu +ina +a +hi +šu₂ +e +ta +šiṭ +ŠA₃ +bu +e +ta +tu +ra +MIN +ana +GURUŠ +dam +qi₂ +ana +KI +SIKIL +da +me +eq +tu₄ +uš +šir₃ +GURUŠ +ma +E₂ +li +pu +uš +uš +šir₃ +KI +SIKIL +qin +na +liq +nun +ir +ru +suh₄ +hu +ru +ze +er +kar +šum +u₃ +ši +i +ri +qi₂ +tu₂ +bu +up +pa +ni +ša₂ +sah +pat +liš +lim +kar +šum +ir +ri +liš +te +ši +ru +ma +ri +qi₂ +tu₄ +lit +ru +uṣ +GIM +IM +ina +šu +bur +ri +GIM +ge +šu +ti +ina +na +piš +ti +li +ṣa +a +EN₂ +KID₃ +KID₃ +BI +7 +LAG +MUN +ina +ŠA₃ +bi +ŠUB +EN₂ +7 +šu₂ +ŠID +nu +NAG +šu₂ +ma +ina +eš +EN₂ +ŠA₃ +bu +ŠA₃ +bu +e +ki +il +ŠA₃ +bu +GIM +mu +ši +ti₃ +ma +li +nam +ri +ri +i +na +qab +li +ti +ul +i +šu +a +pa +tu₂ +ma +ul +u₂ +šer₃ +šu +ma +am +ma +ir +ru +su +hu +ru +ze +er +kar +šum +u₃ +ši +i +ri +qi₂ +tu +bu +up +pa +ni +ša₂ +sah +pat +li +it +ru +uṣ +kar +šu₂ +ri +qi₂ +tu₂ +lit +ru +uṣ +ki +ma +ša₂ +a +ri +a +na +šu +bur +ri +ki +ma +ge +šu +te +a +na +ZI +MEŠ +ki +ma +zu +ʾ +ti +u +u₂ +pa +ṭi +u +di +ma +ti +ka +la +SU +šu₂ +na +šal +li +la +ni +EN₂ +ul +ia +ut +tu +EN₂ +d +e₂ +a +u +d +asal +lu₂ +hi +EN₂ +d +da +mu +u +d +gu +la +EN₂ +d +NIN +GIRIM₃ +EN +EN₂ +TU₆ +EN₂ +KID₃ +KID₃ +BI +ana +ŠA₃ +bi +10 +LAG +MUN +ŠUB +7 +TA +AM₃ +EN₂ +ŠID +nu +ma +ina +GUB₃ +ka +KAŠ₃ +šu +IGI +ina +GUB₃ +šu +i +mah +har +ba +lu +pa +tan +NAG +ma +ina +eš +EN₂ +ŠA₃ +bu +ma +ŠA₃ +bu +qar +rad +ŠA₃ +KAS₄ +ša +ŠA₃ +ze +ra +IGI +MIN +šu₂ +pur +sit₂ +da +a +me +ŠA₃ +bu +ŠA₃ +bu +a +ia +ša₂ +ta +lak +ŠA₃ +bu +a +ia +ša₂ +ta +ṣa +bur +ŠA₃ +bu +... +x +x +x +ad +SAHAR +HI +A +x +x +x +x +x +... +x +x +x +x +... +x +pad +su +x +x +x +x +x +ša₂ +a +ru +x +x +x +x +x +x +x +x +i +pa +šar +pi +šir₃ +šu +x +x +x +lip +šur +ki +ši +x +x +x +mu +ana +KA₂ +li +še +ṣi +TU₆ +EN₂ +KA +INIM +MA +IM +ša₂ +ŠA₃ +DAB +šu₂ +KID₃ +KID₃ +BI +I₃ +GIŠ +ŠA₃ +šu₂ +EŠ +MEŠ +EN₂ +an +ni +ta₅ +3 +šu₂ +ŠID +nu +DIŠ +NA +LI +DUR +su +DU₈ +at +na₄ +PEŠ₄ +ANŠE +u₂ +SIKIL +u₂ +ŠAKIRA +šim +LI +x +x +x +5 +U₂ +HI +A +ŠEŠ +TEŠ₂ +BI +SUD₂ +ina +KAŠ +HI +HI +ina +LI +DUR +šu₂ +tu +na +tak +U₂ +HI +A +ŠEŠ +ma +ina +KAŠ +SILA₁₁ +aš +tara +bak +x +x +u₂ +IGI +lim +u₂ +IGI +NIŠ +u₂ +tar +muš +x +x +x +x +SUD₂ +SUR +tuš +ta +na +as +sa₃ +qam₂ +... +TI +ana +KI +MIN +u₂ +ṣi +bu +ra +u₂ +DILI +TEŠ₂ +BI +SUD₂ +x +... +ana +KI +MIN +u₂ +IGI +lim +SUD₂ +ina +GEŠTIN +SUR +NAG +ma +TI +DIŠ +NA +LI +DUR +su +ŠUB +MEŠ +su +ana +TI +šu₂ +u₂ +im +hur +aš +na +SUHUŠ +x +x +x +x +x +x +TI +ina +KAŠ +ina +GEŠTIN +DU₁₀ +GA +NAG +MEŠ +ma +TI +DIŠ +NA +ŠA₃ +šu₂ +GIG +GA +AB₂ +KUG +GA +I₃ +NUN +NA +UD +2 +KAM₂ +NAG +DUB +1 +KAM₂ +DIŠ +NA +su +a +lam +GIG +ana +ki +is +ŠA₃ +GUR +šu₂ +E₂ +GAL +m +AN +ŠAR₂ +DU₃ +A +LUGAL +ŠU₂ +MAN +KUR +AN +ŠAR₂ +ki +ša +d +AG +d +taš +me +tu₄ +GEŠTU +MIN +DAGAL +tu₄ +iš +ru +ku +uš +e +hu +uz +zu +IGI +MIN +na +mir +tu₄ +ni +siq +ṭup +sar +ru +ti +ša +ina +LUGAL +MEŠ +ni +a +lik +mah +ri +ia +mam₂ +ma +šip +ru +šu +a +tu +la +e +hu +uz +zu +bul +ṭi +TA +muh +hi +EN +UMBIN +liq +ti +BAR +MEŠ +ta +hi +zu +nak +la +a +zu +gal +lu +ut +d +nin +urta +u +d +gu +la +ma +la +ba +aš +mu +ina +ṭup +pa +a +ni +aš₂ +ṭur +as +niq +IGI +KAR₂ +ma +a +na +ta +mar +ti +ši +ta +si +ia +qe₂ +reb +E₂ +GAL +ia +u₂ +kin +giš +KIŠI₁₆ +HAB +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +NA +SAG +KI +GUB₃ +šu₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +u₂ +SU +AN +DAR +RA +šim +MUG +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +NA +SAG +KI +MIN +šu₂ +ṣab +ta +šu₂ +ma +IGI +MIN +šu₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +DUH +ŠE +GIŠ +I₃ +ša₂ +bu +lu +te +GAZ +SIM +x +x +x +x +x +x +x +x +x +DIŠ +NA +SA +SAG +KI +ZAG +šu₂ +ZI +ma +IGI +ZAG +šu₂ +... +x +x +x +x +x +šim +BULUH +šim +... +DIŠ +NA +UGU +šu₂ +KUM₂ +u₂ +kal +SA +ZI +SAG +KI +TUKU +ma +IGI +MIN +šu₂ +i +BAR₃ +IGI +MIN +šu₂ +bir +ra +ta₅ +i +pi +ta₅ +i +ši +ta₅ +mur +din +na +qu₃ +qa +na +a +ša₂ +a +u₃ +ER₂ +ŠUB +ŠUB +a +1 +3 +SILA₃ +ZA₃ +HI +LI +bu +ṭu +ta₅ +ina +na₄ +KINKIN +ARA₃ +en +SIM +SAG +ka +u₂ +kal +ina +ŠA₃ +1 +3 +SILA₃ +TI +qe₂ +ina +A +GAZI +sar +SILA₁₁ +aš +SAR +ab +LAL +ma +UD +3 +KAM +NU +DU₈ +1 +3 +SILA₃ +sah +le₂ +e +1 +3 +SILA₃ +ZI₃ +ŠE +SA +A +ina +A +GAZI +sar +SILA₁₁ +aš +SAR +ab +LAL +ma +UD +3 +KAM +NU +DU₈ +sah +le₂ +e +ARA₃ +ti₃ +šim +GUR₂ +GUR₂ +NAGA +SI +ina +KAŠ +SILA₁₁ +aš +KI +MIN +šim +ŠEŠ +MUN +eme +sal +li₃ +mal₂ +ma +liš +HI +HI +ina +I₃ +NUN +SUD₂ +IGI +MIN +šu₂ +te +qi₂ +1 +3 +SILA₃ +ZA₃ +HI +LI +1 +3 +SILA₃ +ŠIKA +IM +ŠU +RIN +NA +10 +GIN₂ +hi +qa +ti +x +x +x +x +ina +A +GAZI +sar +SILA₁₁ +aš +SAR +ab +LAL +ma +UD +3 +KAM +NU +DU₈ +EGIR +na +aṣ +ma +da +ti +an +na +ti +10 +GIN₂ +ZA₃ +HI +LI +ša₂ +KA +ur +ṣi +x +x +x +x +x +x +x +MUN +A +GEŠTIN +NA +NU +TAG +TAG +ina +NINDA +is +sip₃ +ma +GU₇ +5 +GIN₂ +x +x +x +x +x +ina +KAŠ +SAG +SIG₃ +aṣ +ma +NAG +šu₂ +x +x +x +x +x +x +x +UD +1 +KAM₂ +AN +ZAH +SUD₂ +... +10 +GIN₂ +GURUN +giš +MAŠ +HUŠ +x +x +x +x +x +1 +3 +SILA₃ +x +x +x +GAZ +SIM +ina +A +GAZI +sar +SILA₁₁ +aš +SAR +ab +LAL +ma +UD +3 +KAM +NU +DU₈ +ŠIM +BI +ZI +DA +x +x +x +ina +I₃ +UDU +UR +MAH +SUD₂ +x +x +x +x +x +x +x +x +x +x +u₂ +ZA +BA +LAM +1 +3 +SILA₃ +x +x +x +x +GAZ +SIM +ina +A +GAZI +sar +SILA₁₁ +aš +SAR +ab +LAL +ma +UD +3 +KAM +NU +DU₈ +10 +GIN₂ +ZI₃ +DUH +ŠE +GIŠ +I₃ +HAD₂ +DU +GAZ +SIM +ina +A +GAZI +sar +SILA₁₁ +aš +KI +MIN +10 +GIN₂ +ZI₃ +DUH +ŠE +GIŠ +I₃ +HAD₂ +DU +GAZ +SIM +... +x +... +UD +1 +KAM +GABA +su +LAL +SAG +DU +su +... +ana +SAG +DU +šu₂ +DUB +ak +ina +E₂ +ša₂ +ta +ra +na₇ +TUKU +u₂ +TUŠ +šu₂ +... +1 +GIN₂ +U₅ +ARGAB +mušen +1 +2 +GIN₂ +... +1 +3 +SILA₃ +NUMUN +BABBAR +HI +sar +1 +3 +SILA₃ +NUMUN +LU +UB₂ +sar +... +1 +3 +SILA₃ +ZI₃ +KUM +10 +GIN₂ +PA +giš +x +... +NUMUN +sah +le₂ +e +... +x +x +... +... +SILA₁₁ +aš +KI +MIN +IM +SAHAR +NA₄ +KUR +RA +ina +I₃ +NUN +SUD₂ +te +qi₂ +1 +3 +SILA₃ +PA +giš +PEŠ₃ +ša +ina +iti +BAR₂ +ZAG +GAR +KUD +is +ina +A +GAZI +sar +SILA₁₁ +aš +GUR +ma +HAD₂ +A +GAZ +SIM +x +x +x +x +x +x +SAR +ab +LAL +ma +KI +MIN +1 +3 +SILA₃ +u₂ +HAB +1 +3 +SILA₃ +NUMUN +u₂ +KI +d +IŠKUR +x +x +x +x +x +x +LAL +ma +KI +MIN +NAGA +SI +ina +I₃ +SUD₂ +ina +kip +kip +NITA +HI +HI +SUD₂ +te +qi₂ +1 +3 +... +LAL +ma +KI +MIN +... +LAL +ma +KI +MIN +... +x +... +x +... +te +qi₂ +... +... +SUD₂ +te +qi₂ +... +SILA₁₁ +aš +SAR +ab +LAL +ma +KI +MIN +... +HAD₂ +A +GAZ +SIM +ina +A +GAZI +sar +SILA₁₁ +aš +SAR +ab +LAL +ma +KI +MIN +... +GIR₃ +PAD +DA +GID₂ +DA +SUD₂ +MAR +... +ina +I₃ +UDU +sa +a +qi₂ +MAŠ +DA₃ +SUD₂ +te +qi₂ +... +SILA₁₁ +aš +SAR +ab +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +... +ina +GA +SILA₁₁ +aš +SAR +ab +LAL +ma +KI +MIN +... +x +ina +LAL₃ +KUR +i +šu +hat +KU₃ +SIG₁₇ +SUD₂ +MAR +x +x +x +x +x +x +GAZ +SIM +ina +A +GAZI +sar +SILA₁₁ +aš +SAR +ab +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +x +x +x +x +GAZ +SIM +ina +šur +šum +mi +KAŠ +ŠEG₆ +GA₂ +SILA₁₁ +aš +SAR +ab +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +x +x +x +x +x +du +muq +ši +na +ta +tab +bal +ina +LAL₃ +SUD₂ +te +qi₂ +u₂ +KUR +GI +RIN₂ +NA +GAZ +SIM +ina +A +GAZI +sar +SILA₁₁ +aš +SAR +ab +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +giš +ŠE +NU₂ +A +GAZ +SIM +ina +A +GAZI +sar +SILA₁₁ +aš +SAR +ab +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +U₅ +ARGAB +mušen +ina +LAL₃ +SUD₂ +te +qi₂ +1 +3 +SILA₃ +PA +giš +MA₂ +ERIŠ₄ +iš +MA₂ +RA +GAZ +SIM +ina +A +GAZI +sar +SILA₁₁ +aš +SAR +ab +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +IM +BABBAR +ba +aš +la +ina +I₃ +sir₂ +di +SILA₁₁ +aš +SAR +ab +LAL₂ +ma +KI +MIN +ŠIKA +I₃ +GU +LA +ša +kib +ša₂₅ +TUKU +u₂ +ina +I₃ +SAHAR +URUDU +SUD₂ +te +qi₂ +u₂ +ZA +BA +LAM +sah +le₂ +e +GAZ +SIM +ina +šur +šum +mi +KAŠ +SAG +SILA₁₁ +aš +SAR +ab +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +u₂ +hal +tap +pa +na₇ +giš +MAŠ +HUŠ +GAZ +SIM +ina +šur +šum +mi +KAŠ +ŠEG₆ +GA₂ +SILA₁₁ +aš +SAR +ab +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +šim +LI +šim +GUR₂ +GUR₂ +šim +BULUH +ZA₃ +HI +LI +NAGA +SI +LUH +si +ina +GA +SILA₁₁ +aš +SAR +ab +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +SAHAR +URUDU +ina +LAL₃ +SUD₂ +te +qi₂ +1 +3 +SILA₃ +ZA₃ +HI +LI +1 +3 +SILA₃ +DIDA +... +SILA₁₁ +aš +SAR +ab +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +1 +3 +SILA₃ +ZA₃ +HI +LI +... +SILA₁₁ +aš +SAR +ab +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +KUG +GAN +AN +ZAH +... +SUD₂ +MAR +1 +3 +SILA₃ +ZI₃ +GU₂ +GAL +... +SILA₁₁ +aš +SAR +ab +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +10642 GAZI +sar +BIL₂ +lu +GAZ +SIM +ina +šur +šum +mi +KAŠ +SILA₁₁ +aš +SAR +ab +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +NUMUN +u₂ +EME +UR +GI₇ +SIG₇ +su +tu +has₂ +sa₃ +A +šu₂ +ana +dug +BUR +ZI +SUR +at +EN +HAD₂ +DU +GAR +an +UD +ma +i +tab +lu +ina +I₃ +SAHAR +URUDU +SUD₂ +MAR +U₂ +BABBAR +U₅ +ARGAB +mušen +I₃ +UDU +šim +GIG +šim +GAM +MA +NUMUN +u₂ +SI +SA₂ +ka +mun +giš +ŠINIG +NUMUN +u₂ +IN +NU +UŠ +ŠE₁₀ +UR +GI₇ +PA +giš +ŠINIG +MUN +eme +sal +li₃ +u₂ +KUR +RA +u₂ +GAMUN +GE₆ +ma +la +ni +iš +IGI +MIN +ka +ŠU +TI +ta +pa +aṣ +ina +I₃ +SUD₂ +IGI +MIN +šu₂ +ina +NAGA +SI +LUH +si +EN +ER₂ +KUD +su +te +qi₂ +UD +ma +LAL +šu₂ +te +qi₂ +EGIR +šu₂ +DILIM₂ +A +BAR₂ +NU +DU₈ +šu₂ +A +giš +ŠE +NU₂ +A +ŠEG₆ +šal +ana +dug +GAN +SAHAR₂ +te +sip +ina +MUL₄ +tuš +bat +ina +še +ri₃ +SAG +DU +su +ŠEŠ₂ +A +giš +ŠE +NU₂ +A +ŠEG₆ +GA₂ +ana +SAG +DU +šu₂ +tu +qar +ra +ar₂ +SAG +DU +su +kun +ša₂₅ +sig₂ +GA +RIG₂ +AK +A +KEŠDA +10 +SILAₓ +I₃ +GIŠ +ana +SAG +DU +šu₂ +DUB +ina +E₂ +ša₂ +ta +ra +na₇ +TUKU +u₂ +TUŠ +šu₂ +UD +3 +KAM₂ +an +na₇ +DU₃ +DU₃ +uš +DIŠ +NA +UGU +šu₂ +KUM₂ +KUM₂ +im +IM +BABBAR +NAGA +SI +IN +GUN₃ +kib +rit +GIR₃ +PAD +DA +NAGA +SI +I₃ +HUL +u +I₃ +KU₆ +DIŠ +niš +HI +HI +ina +NE +giš +KIŠI₁₆ +SAG +DU +su +tu +qat +tar +DIŠ +NA +UGU +šu₂ +KUM₂ +TUKU +ma +IGI +MIN +šu₂ +i +bar +ru +ra +MUD₂ +u₂ +kal +la +1 +3 +SILA₃ +ZA₃ +HI +LI +GAZ +SIM +ina +A +GAZI +sar +SILA₁₁ +aš +SAG +DU +su +SAR +ab +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +1 +3 +SILA₃ +ZA₃ +HI +LI +1 +3 +SILA₃ +ZI₃ +KUM +ina +A +GEŠTIN +NA +SILA₁₁ +aš +SAG +DU +su +SAR +ab +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +1 +3 +SILA₃ +PA +giš +PEŠ₃ +ina +GA +SILA₁₁ +aš +SAR +ab +KI +MIN +1 +3 +SILA₃ +u₂ +HAB +ina +GA +SILA₁₁ +aš +SAR +ab +KI +MIN +1 +3 +SILA₃ +u₂ +u₅ +ra +na +... +ina +GA +SILA₁₁ +aš +SAR +ab +KI +MIN +1 +3 +SILA₃ +u₂ +ṣa +da +na +... +ina +GA +SILA₁₁ +aš +SAR +ab +KI +MIN +u₂ +sa +ma +na₇ +... +ina +GA +SILA₁₁ +aš +SAR +ab +KI +MIN +DIŠ +NA +UGU +šu₂ +UD +DA +TAB +... +ŠEG₆ +GA₂ +šim +LI +šim +GUR₂ +GUR₂ +šim +BULUH +sah +le₂ +e +DUH +ŠE +GIŠ +I₃ +... +SAR +ab +KI +MIN +DIŠ +NA +UGU +šu₂ +UD +DA +TAB +ma +IGI +MIN +šu₂ +i +bar +ru +ra +u₃ +MUD₂ +DIRI +a +x +x +x +šim +LI +u₂ +NU +LUH +HA +x +x +x +sah +le₂ +e +giš +MA₂ +ERIŠ₄ +MA₂ +RA +DIŠ +niš +GAZ +SIM +ina +DIDA +HI +HI +SAG +DU +su +LAL +id +1 +3 +SILA₃ +ZA₃ +HI +LI +1 +3 +SILA₃ +ZI₃ +giš +EREN +1 +3 +SILA₃ +šim +LI +1 +3 +SILA₃ +IM +DI +1 +3 +SILA₃ +giš +si +hu +1 +3 +SILA₃ +giš +ar₂ +ga +an +nu +... +DUH +ŠE +GIŠ +I₃ +ZI₃ +GU₂ +GAL +ZI₃ +MUNU₆ +DIDA +ŠEG₆ +GA₂ +ŠU +TI +... +SILA₃ +ŠU +TI +ina +A +GAZI +sar +SILA₁₁ +aš +SAR +ab +LAL +DIŠ +NA +MURUB₄ +UGU +šu₂ +GIR₂ +GIR₂ +su +SIG₂ +SAG +DU +šu₂ +GUB +GUB +za +giš +GUR₂ +GUR₂ +giš +x +x +x +x +x +x +x +x +SUD₂ +ina +urudu +ŠEN +TUR +tu +ba +har +SAG +DU +su +x +x +x +x +x +x +KAŠ +ṭi +ṭi +I₃ +NUN +NA +ina +IZI +ŠEG₆ +šal +x +x +x +x +šim +GUR₂ +GUR₂ +šim +LI +šim +MUG +šim +ŠEŠ +KAŠ +ṭi +ṭi +I₃ +NUN +NA +ina +IZI +ŠEG₆ +šal +x +x +1 +NINDA +IM +BABBAR +NAGA +SI +IN +GUN₃ +kib +rit +GIR₃ +PAD +DU +LU₂ +U₁₈ +LU +GIR₃ +PAD +DU +ŠAH +x +x +I₃ +HUL +I₃ +KU₆ +DIŠ +niš +HI +HI +ina +NE +giš +KIŠI₁₆ +SAG +DU +su +tu +qat +tar +EN₂ +sag +ki +ni +sag +ki +he₂ +en +gi₄ +gi₄ +i +bi₂ +ni +i +bi₂ +he₂ +en +gi₄ +gi₄ +mu +ru +ub +bi +ni +mu +ru +ub +bi +he₂ +en +gi₄ +gi₄ +he₂ +en +da +a +na +mul +la +he₂ +en +da +a +na +mul +la +TU₆ +EN₂ +KA +INIM +MA +DIŠ +NA +MURUB₄ +UGU +šu₂ +u₂ +zaq +qat +su +KID₃ +KID₃ +BI +BAR +MUŠ +tur +ar₂ +x +x +x +x +EN₂ +ŠID +nu +UGU +šu₂ +x +x +x +EN₂ +me +kug +ga +ba +da +ra +ah +ba +da +ra +ah +me +kug +ga +iz +zi +me +zi +zi +me +še +ra +še +ra +x +x +x +hu +luh +ha +gi₄ +gi₄ +TU₆ +EN₂ +EN₂ +KA +šu +GIM +KA +la +x +x +x +x +x +x +GIM +KA +šu +ne +x +x +x +TU₆ +EN₂ +... +ana +MURUB₄ +UGU +šu₂ +ŠID +nu +... +x +x +x +x +u₂ +KUR +RA +... +SAR +ab +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +ana +KI +MIN +... +ina +A +GAZI +sar +SILA₁₁ +aš +LAL₂ +su +ma +x +x +x +ana +KI +MIN +u₂ +x +... +x +su +pa +la₁₂ +ina +KAŠ +ta +la₃ +aš +x +x +ana +KI +MIN +sah +le₂ +e +... +ni +kip +ta₅ +ZI₃ +ŠE +SA +A +DIŠ +niš +GAZ +SIM +ina +KAŠ +SILA₁₁ +x +x +ana +KI +MIN +1 +3 +SILA₃ +sah +le₂ +e +... +SILA₁₁ +aš +SAR +ab +x +x +ana +KI +MIN +1 +2 +SILA₃ +... +SILA₁₁ +aš +SAR +ab +x +x +ana +KI +MIN +1 +3 +SILA₃ +... +GAZ +SIM +ina +A +GAZI +sar +SILA₁₁ +aš +SAR +ab +x +x +ana +KI +MIN +šim +... +ina +A +GAZI +sar +SILA₁₁ +aš +x +x +ana +KI +MIN +... +ina +KAŠ +SILA₁₁ +aš +SAR +ab +x +x +ana +KI +MIN +... +ina +A +GAZI +sar +SILA₁₁ +aš +SAR +ab +LAL +ana +KI +MIN +... +ina +A +GAZI +sar +SILA₁₁ +aš +SAR +ab +x +x +ana +KI +MIN +... +ina +A +GAZI +sar +SILA₁₁ +aš +SAR +ab +x +x +ana +KI +MIN +... +ina +šur +šum +mi +KAŠ +SILA₁₁ +aš +SAR +ab +x +x +ana +KI +MIN +x +x +x +x +x +x +x +tu +šam +maṭ +ina +A +GAZI +sar +LUH +si +1 +3 +SILA₃ +giš +MAŠ +HUŠ +1 +3 +SILA₃ +x +x +x +x +x +GAZ +SIM +ina +A +GAZI +sar +SILA₁₁ +aš +SAG +DU +su +u +GABA +su +LAL +ana +KI +MIN +x +x +x +x +x +ZI₃ +KUM +HI +HI +ina +A +GAZI +sar +SILA₁₁ +aš +LAL +ana +KI +MIN +x +x +x +x +ZI₃ +KUM +ina +A +GAZI +sar +ta +la₃ +aš +SAR +ab +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +ana +KI +MIN +x +x +x +giš +HA +LU +UB₂ +2 +SILA₃ +TA +AM₃ +HI +HI +ina +A +GAZI +sar +u +KAŠ +SILA₁₁ +aš +KI +MIN +ana +KI +MIN +x +x +x +u₂ +su +pa +lu +ina +I₃ +sir₂ +di +u +A +GAZI +sar +SILA₁₁ +aš +KI +MIN +DIŠ +NA +SAG +DU +su +KUM₂ +KUM₂ +im +SAR +ab +ZI₃ +ZIZ₂ +AN +NA +ina +A +GAZI +sar +SILA₁₁ +aš +UD +15 +KAM₂ +: +UD +5 +KAM₂ +LAL₂ +ana +KI +MIN +IM +GU₂ +UD +DA +SA₂ +SA₂ +GAZ +SIM +ina +A +GAZI +sar +SILA₁₁ +aš +UD +3 +KAM₂ +LAL₂ +DIŠ +ina +qer +bit +SAG +DU +šu₂ +: +MURUB₄ +SAG +DU +šu₂ +u₂ +ba +na +tu +uṣ +ṣa +rib +ki +ina +A +GAZI +sar +SILA₁₁ +aš +I₃ +EŠ +MEŠ +LAL +ana +KUM₂ +SAG +DU +šu +ut +bi +i +ŠIKA +IM +ŠU +RIN +NA +ZI₃ +KUM +ina +A +GAZI +sar +SILA₁₁ +aš +SAG +DU +su +LAL +ana +KI +MIN +sah +le₂ +e +bu +ṭu +ta₅ +ZI₃ +ŠE +SA +A +ina +A +GAZI +sar +SILA₁₁ +aš +LAL +: +ana +KI +MIN +sah +le₂ +e +šim +LI +ina +A +GAZI +sar +SILA₁₁ +aš +LAL +ana +KI +MIN +x +x +x +HAD₂ +DU +GAZ +SIM +ina +A +GAZI +sar +SILA₁₁ +aš +LAL +ana +KI +MIN +DE₃ +ṣar +ba +te +ina +A +GAZI +sar +SILA₁₁ +aš +LAL +: +ana +KI +MIN +u₂ +hal +tap +pa +na₇ +GURUN +giš +MAŠ +HUŠ +ina +A +GAZI +sar +SILA₁₁ +aš +LAL +ana +KI +MIN +u₂ +GEŠTIN +KA₅ +A +HAD₂ +A +SUD₂ +ina +A +GAZI +sar +SILA₁₁ +aš +LAL +: +ana +KI +MIN +u₂ +MA₂ +ERIŠ₄ +MA₂ +RA +ina +A +GAZI +sar +SILA₁₁ +aš +LAL +ana +KI +MIN +x +x +x +u₂ +ZA +BA +LAM +ina +A +GAZI +sar +SILA₁₁ +aš +LAL +12034 ana +KI +MIN +... +DE₃ +ṣar +ba +te +ina +A +GAZI +sar +SILA₁₁ +aš +LAL +ana +KI +MIN +... +šim +GUR₂ +GUR₂ +ina +A +GAZI +sar +SILA₁₁ +aš +LAL +ana +KI +MIN +... +ZI₃ +KUM +HI +HI +ina +A +GAZI +sar +SILA₁₁ +aš +LAL +ana +KI +MIN +... +ZI₃ +KUM +HI +HI +ina +A +GAZI +sar +SILA₁₁ +aš +LAL +ana +KI +MIN +... +ina +A +GAZI +sar +SILA₁₁ +aš +LAL +: +ana +KI +MIN +qi₂ +lip +še +el +le +be₂ +nu +ina +A +GAZI +sar +SILA₁₁ +aš +LAL +ana +KI +MIN +... +DE₃ +ṣar +ba +te +ina +A +GAZI +sar +SILA₁₁ +aš +LAL +ana +KI +MIN +... +ina +A +GAZI +sar +SILA₁₁ +aš +LAL +DIŠ +... +SAG +DU +šu₂ +i +šah +hu +uh +ZI +SAG +KI +TUKU +TUKU +1 +GIN₂ +... +SAG +DU +su +SAR +ab +tu +kaṣ₃ +ṣa +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +ana +KI +MIN +... +ZI₃ +giš +ŠUR +MIN₃ +10 +GIN₂ +ZI₃ +giš +MAN +DU +10 +GIN₂ +ZI₃ +šim +LI +10 +GIN₂ +ZI₃ +šim +GUR₂ +GUR₂ +10 +GIN₂ +ZI₃ +GAZI +sar +10 +GIN₂ +ZI₃ +GU₂ +GAL +10 +GIN₂ +ZI₃ +GU₂ +TUR +10 +GIN₂ +BAR +ZU₂ +LUM +MA +10 +GIN₂ +ZA₃ +HI +LI +10 +GIN₂ +DIDA +SIG₅ +10 +GIN₂ +ZI₃ +MUNU₆ +DIŠ +niš +HI +HI +ina +KAŠ +SILA₁₁ +aš +GUR +ma +HAD₂ +A +GAZ +SIM +SAG +ka +u₂ +kal +ina +ŠA₃ +1 +3 +SILA₃ +TI +qe₂ +ina +A +GAZI +sar +SILA₁₁ +aš +SAR +ab +LAL +ma +KI +MIN +ana +KI +MIN +ZA₃ +HI +LI +ARA₃ +ti₃ +šim +GUR₂ +GUR₂ +NAGA +SI +DIŠ +niš +SUD₂ +ina +KAŠ +SILA₁₁ +aš +SAR +ab +KI +MIN +ana +KI +MIN +šim +GUR₂ +GUR₂ +šim +LI +šim +d +NIN +URTA +NUMUN +u₂ +AB₂ +DUH +KA +A +AB +BA +šim +ŠEŠ +DIŠ +niš +SUD₂ +ina +KAŠ +SILA₁₁ +aš +SAR +ab +KI +MIN +ana +KI +MIN +šim +GUR₂ +GUR₂ +šim +LI +ILLU +šim +BULUH +ZU₂ +LUM +I₃ +UDU +ELLAG₂ +UDU +NITA₂ +DIŠ +niš +SUD₂ +ina +KUŠ +SUR +ri +SAR +ab +KI +MIN +DIŠ +NA +SAG +DU +su +UD +DA +TAB +ma +u +SU +šu₂ +GU₇ +šu₂ +SAG +DU +su +nu +pu +uh +PA +giš +MES +MA₂ +GAN +NA +x +x +x +SIM +ZI₃ +GU₂ +GAL +ZI₃ +GU₂ +TUR +ZI₃ +še +IN +NU +HA +DIŠ +niš +ina +šur +šum +mi +KAŠ +SILA₁₁ +aš +SAR +ab +KI +MIN +ana +KI +MIN +DUH +ŠE +GIŠ +I₃ +HAD₂ +A +ti +šim +GUR₂ +GUR₂ +šim +LI +ZI₃ +KUM +ina +šur +šum +mi +KAŠ +SILA₁₁ +aš +SAR +ab +KI +MIN +ana +KI +MIN +x +x +giš +HAR +HAR +šim +GUR₂ +GUR₂ +šim +LI +ZI₃ +KUM +ina +KAŠ +SILA₁₁ +aš +SAR +ab +KI +MIN +ana +KI +MIN +u₂ +LAL +HAD₂ +A +SUD₂ +ina +A +ŠED₇ +SILA₁₁ +aš +SAR +ab +KI +MIN +DIŠ +NA +SAG +DU +su +KUM₂ +ma +SIG₂ +SAG +DU +šu₂ +i +šah +hu +uh +ana +KUM₂ +SAG +DU +šu₂ +ZI +hi +u +SIG₂ +DU +ta₅ +GUB +zi +u₂ +ak +tam +u₂ +ši +ma +ha +U₂ +BABBAR +DIŠ +niš +SUD₂ +ina +A +HI +HI +SAG +DU +su +te +sir +UD +2 +KAM +ina +SAG +DU +šu₂ +i +mit +ti₃ +x +x +x +SAG +DU +su +LUH +si +NUMUN +giš +bi +ni +u₂ +kam₂ +ka +da +u₂ +NIG₂ +GAN₂ +GAN₂ +u₂ +NIG₂ +GIDRU +ŠIKA +NUNUZ +GA +NU₁₁ +mušen +DIŠ +niš +SUD₂ +ina +I₃ +HI +HI +SAG +DU +su +ŠEŠ₂ +aš +EN₂ +munšub₂ +al +dub₂ +ba +munšub₂ +al +kalag +ga +munšub₂ +al +keš₂ +da +keš₂ +da +munšub₂ +nig₂ +gub +ba +TU₆ +EN₂ +KA +INIM +MA +SIG₂ +SAG +DU +NIG₂ +GUB +BA +KEŠ₂ +DA +KAM₂ +DU₃ +DU₃ +BI +na₄ +DU₈ +ŠI +A +na₄ +GUG +na₄ +ZA +GIN₃ +na₄ +NIR₂ +na₄ +BABBAR +MIN₅ +na₄ +IGI +KU₆ +na₄ +ŠUBA +na₄ +ŠUBA +A₂ +ZI +DA +na₄ +ŠUBA +A₂ +GUB₃ +BU +na₄ +KUR +nu +DAB +na₄ +MUŠ +GIR₂ +na₄ +AŠ +GI₃ +GI₃ +na₄ +UGU +AŠ +GI₃ +GI₃ +13 +ni +bi +an +nu +ti +ina +sig₂ +HE₂ +ME +DA +E₃ +ak +ina +SIG₂ +šu₂ +KEŠ₂ +DA +ma +SIG₂ +DU +tu₂ +ik +kal +la +EN₂ +at +ta +ba +ra +an +gi +zi +ba +an +gi +ba +te +gi +ra +zi +im +ba +ra +uz +mi +ia +aš +pa +at +ri +un +da +kur +ra +he₂ +en +na +he₂ +min +na +pa +ri +ša₂ +TU₆ +EN₂ +KID₃ +KID₃ +BI +7 +ha +ru +be₂ +e +ša₂ +im +SI +SA₂ +TI +qe₂ +ina +IZI +ur +ba +te +tur +ar₂ +ina +I₃ +HI +HI +EN₂ +7 +šu₂ +ŠID +nu +3 +šu₂ +ŠEŠ₂ +su +3 +šu₂ +ta +hal +la +su +e +nu +ma +ta +hal +la +ṣu +šu₂ +EN₂ +3 +šu₂ +ana +UGU +SAG +DU +šu₂ +ŠID +nu +EN₂ +i +bi +gi +i +bi +gi +he₂ +en +zalag₂ +ge +sag +ki +zi₂ +sag +ki +zi₂ +he₂ +en +zalag₂ +ge +sag +ki +iz +sag +ki +iz +he₂ +en +zalag₂ +ge +še +er +zi +he₂ +en +zalag₂ +ge +ma +al +la₂ +i +di +mu +ra +an +gub +hul +bi +hul +hul +EN₂ +KID₃ +KID₃ +BI +SAG +DU +BURU₅ +KUR +RA +SAG +DU +IGIRA₂ +mušen +SAG +DU +BURU₅ +HABRUD +DA +NITA₂ +giš +U₄ +HI +IN +giš +GIŠIMMAR +x +x +x +x +x +x +x +EN₂ +3 +šu₂ +ana +ŠA₃ +ŠID +nu +EŠ +MEŠ +su +ma +SIG₂ +DU +tu₂ +ik +kal +la +lu +ša₂ +NITA₂ +lu +ša₂ +MUNUS +x +x +x +x +x +x +šu +gi +lil +šu +gi +e +ne +šu +gi +KID₃ +KID₃ +BI +7 +ha +ru +be₂ +e +ša₂ +im +SI +SA₂ +TI +ina +IZI +tur +ar₂ +ina +I₃ +giš +ŠUR +MIN₃ +MUD₂ +giš +EREN +HI +HI +EŠ +MEŠ +su +ma +SI +SA₂ +im +EN₂ +MU +UL +LU +U +HUL +A +ša₂ +GAL₂ +ma +DINGIR +ṣi +ir +ta +ma +ni +ir +ra +an +ni +ha +ba +re +eš +ma +ni +ir +ra +an +ni +hal +hal +la +ta +la +gu +DIM₂ +ma +TI +LA +ŠE₃ +x +x +ma +u +ba +na +aš +du +ru +na +aš +hu +ri +na +ah +mu +un +di +hu +na +ha +at +tu +uk +TU₆ +EN₂ +KA +INIM +MA +SIG₂ +KEŠ₂ +DA +KAM₂ +DIŠ +NA +SIG₂ +TE +MEŠ +šu₂ +ma +gal +i +šah +hu +uh +NA +BI +DINGIR +šu₂ +d +iš₈ +tar₃ +šu₂ +KI +šu₂ +ze +nu +u +KID₃ +KID₃ +BI +ana +IGI +MUL +mah +re +e +KEŠDA +KEŠDA +ZU₂ +LUM +MA +zi₃ +EŠA +DUB +aq +NINDA +I₃ +DE₂ +A +LAL₃ +I₃ +NUN +NA +GAR +an +udu +SISKUR +DU₃ +uš +uzu +ZAG +uzu +ME +HE₂ +uzu +KA +NE +tu +ṭah +ha +KAŠ +BAL +qi₂ +GIŠ +GAN₂ +giš +MA₂ +EREŠ₄ +eš +MA₂ +le +e +U₅ +ARGAB +mušen +u₂ +IGI +NIŠ +u₂ +IGI +lim +ŠE₁₀ +MA₂ +LAH₅ +KI +I₃ +HI +HI +ina +IGI +MUL +GAR +an +EN₂ +an +ni +ta₅ +3 +šu₂ +ŠID +nu +at +ta +MUL +mu +nam +mir +x +x +x +x +x +x +qe₂ +reb +AN +e +ha +iṭ +UB +MEŠ +ana +ku +NENNI +A +NENNI +ina +GE₆ +an +ne₂ +e +IGI +ka +kam₂ +sa +ku +di +ni +di +in +EŠ +BAR +a +a +TAR +us +U₂ +HI +A +ŠEŠ +MEŠ +lip +si +su +lum +ni +A₂ +GU₂ +ZI +GA +ZALAG +ma +TE +MEŠ +šu₂ +ta +kar +ana +KI +MIN +GIŠ +GAN₂ +giš +LU₂ +a +nu +u₂ +eli +kul +la +u₂ +kur +ka +na +a +ša₂ +KUR +ni +kip +ta₅ +ina +KUŠ +munus +AŠ₂ +GAR₃ +GIŠ₃ +NU +ZU +ina +GU₂ +šu₂ +GAR +an +6 +KA +INIM +MA +SIG₂ +KEŠ₂ +DA +KAM +DIŠ +NA +UGU +šu₂ +A +u₂ +kal +ina +ŠU +SI +ka +GAL +ti +a +šar +A +MEŠ +u₂ +kal +lu +TAG +TAG +at +šum +ma +UZU +GIŠ +šu₂ +be₂ +eʾ +šat +A +ša +gul +gul +li +šu₂ +it +tar +du +BAD +ma +gul +gul +la +šu₂ +te +ser +rim +A +ša +gul +gul +li +šu₂ +tu +še +lam +TUG₂ +SIG +A +LUH +si +I₃ +GIŠ +SUD +ana +UGU +GIG +GAR +an +KU +KU +GIŠ +KIN₂ +ŠE₁₀ +BAHAR₂ +SUD₂ +ana +UGU +GIG +MAR +UD +3 +KAM +LAL +DU₈ +ma +TUG₂ +SIG +A +LUH +si +I₃ +GIŠ +SUD +ana +UGU +GIG +GAR +an +tug₂ +na +al +ti +ip +ti +x +x +x +x +x +UD +2 +KAM +LAL +DU₈ +ma +TUG₂ +SIG +A +LUH +si +I₃ +GIŠ +SUD +ana +UGU +GIG +GAR +an +x +x +x +x +x +x +GAZI +sar +BIL₂ +ti +KI +ZI₃ +ŠE +SA +A +HI +HI +ana +UGU +GIG +MAR +UD +1 +KAM +LAL +DU₈ +ma +x +x +x +x +šim +LI +GAZ +KI +ZI₃ +KUM +HI +HI +ina +A +GAZI +sar +SILA₁₁ +aš +LAL +IGI +GIG +tu +gal +lab +EN +TI +LA +LAL₂ +x +x +x +šum₄ +ma +TAG +ma +UZU +GIŠ +šu₂ +la +be₂ +eʾ +šat +ana +li +mit +SAG +DU +šu₂ +NE +NA₄ +MEŠ +GAR +an +EN₂ +ur +ba +tu₄ +ur +ba +tu₄ +ur +ba +tu₄ +sa +am +tu₄ +ZI +am +ma +ur +pa +ta +SA₅ +ik +tum₃ +IM +ŠEG₃ +SA₅ +ZI +ma +KI +tu₂ +SA₅ +tu₄ +ir +hu +A +ZI +GA +SA₅ +ZI +ma +ID₂ +SA₅ +tu₄ +im +la +lu₂ +ENGAR +SA₅ +giš +MAR +SA₅ +giš +DUSU +SA₅ +IL₂ +ši +ma +A +MEŠ +SA₅ +MEŠ +li +is +kir +giš +IG +ma +SA₅ +giš +SAG +KUL +mi +SA₅ +KA₂ +šu₂ +nu +ed +la +man +nu +um +ma +ša₂ +i +pe +et +ta +ku +nu +ši +i +ri +iš +ma +ra +i +ri +iš +ma +ra +TU₆ +EN₂ +13549 KA +INIM +MA +A +MEŠ +SAG +DU +la +ik +kal +lu +u₂ +DU₃ +DU₃ +BI +hal +lu +ta +na +a +ša₂ +GIR₃ +EME₃ +x +x +x +x +NIGIN +mi +ana +ŠA₃ +he +pe +e +ti +GAR +an +EN₂ +7 +šu₂ +ŠID +nu +ina +TUG₂ +ta +pa +ti₄ +iq +x +x +x +x +NU +NU +7 +KA +KEŠDA +KEŠDA +e +ma +KEŠDA +EN₂ +ŠID +nu +ina +SAG +KI +šu₂ +tara +kas₂ +ma +ina +eš +DIŠ +NA +SAG +DU +su +A +u₂ +kal +e +le +nu +da +da +ni +šu₂ +x +x +x +x +giš +EREN +hum +ṭam₂ +GAR +an +ma +A +šu₂ +ub +bal +DIŠ +NA +ab +bu +ut +ta +šu₂ +A +u₂ +kal +kal +UD +x +x +x +x +ina +UD +7 +KAM +LAL +ina +UD +8 +KAM +ab +bu +ut +ta +šu₂ +3 +šu₂ +te +ser +rim +ka +a +a +na +am +LAL₂ +DIŠ +NA +SAG +DU +su +še +ha +u₂ +kal +giš +EREN +hum +ṭam₂ +GAR +an +DIŠ +NA +SAG +DU +su +it +te +ne₂ +ba +aš +šum +na₄ +mu +ši +tu₄ +na₄ +MUŠ +GIR₂ +na₄ +DAG +GAZ +na₄ +GUG +mar +ha +ši +na₄ +ZU₂ +GE₂ +na₄ +NIR₂ +na₄ +AN +ZA +GUL +ME +na₄ +AMAŠ +PA +E₃ +8 +NA₄ +MEŠ +an +nu +ti +ina +sig₂ +HE₂ +ME +DA +SIG₂ +BABBAR +NU +NU +E₃ +ina +SAG +KI +MIN +šu₂ +tara +kas₂ +ma +ina +eš +DIŠ +NA +SAG +DU +su +ik +ta +na +aṣ +ṣa +šim +GUR₂ +GUR₂ +šim +LI +šim +MAN +DU +ŠIM +ŠAL +šim +BAL +x +x +x +x +x +x +giš +EREN +SUMUN +giš +si +hu +giš +ar₂ +gan +nu +u₂ +ba +ri +ra +ta₅ +GI +DU₁₀ +ana +KI +MIN +x +x +x +ina +I₃ +UDU +ELLAG₂ +UDU +NITA₂ +ša₂ +MUN +NU +ŠUB +u +ina +MUD₂ +giš +EREN +SUD₂ +ina +KUŠ +SUR +ri +SAG +DU +su +LAL +ana +KI +MIN +bu +ṭu +ut +tu₄ +šim +BULUH +u₂ +kur +ka +nu +u +qu +ta +ru +ša₂ +SAG +DU +nap +šal +ti +SAG +DU +PIŠ₁₀ +d +ID₂ +BABBAR +u +GE₆ +ni +kip +ta +NITA₂ +u +MUNUS +na₄ +mu +ṣa +x +x +x +x +x +KA +A +AB +BA +NUMUN +giš +bi +ni +SI +DARA₃ +MAŠ +gul +gul +NAM +LU₂ +U₁₈ +LU +U₂ +HI +A +an +nu +ti +TEŠ₂ +BI +SUD₂ +x +x +x +x +x +x +x +x +x +SAG +KI +MEŠ +šu₂ +x +x +x +qu₅ +tar₅ +SAG +DU +u₂ +KUR +KUR +PIŠ₁₀ +d +ID₂ +u₂ +kur +ka +na₇ +ni +kip +ta +NITA₂ +u +MUNUS +DIŠ +niš +tu +dak +kak +ina +MUD₂ +giš +EREN +HI +HI +ina +NE +tu +qat +tar +šu +DIŠ +NA +SAG +DU +su +GIG +u₂ +ṣa +ṣu +um +ta₅ +u₂ +MUR +DU₃ +DU₃ +u₂ +pi +mu +un +zer +x +x +x +SIG₇ +su +DIŠ +niš +SUD₂ +ina +A +GAZI +sar +SILA₁₁ +aš +SAG +DU +su +SAR +ab +LAL +ma +UD +3 +KAM₂ +NU +DU₈ +DIŠ +NA +SAG +DU +su +DUGUD +šim +GUR₂ +GUR₂ +šim +LI +u₂ +KUR +KUR +šim +ŠEŠ +KI +ILLU +šim +BULUH +x +x +x +ELLAG₂ +GUD +HI +HI +ina +KUŠ +SUR +ri +SAR +ab +UD +5 +KAM₂ +LAL₂ +ana +KI +MIN +x +x +x +x +15 +u +150 +3 +TA +AM₃ +te +ser +rim +x +x +x +ina +A +GAZI +sar +SILA₁₁ +aš +I₃ +ŠEŠ₂ +LAL +... +ana +SAG +DU +šu₂ +... +DUGUD +ma +ina +ZI +šu₂ +SAG +DU +su +... +na₄ +NA +ZA₃ +HI +LI +SUD₂ +... +SAG +DU +šu₂ +i +tel +li +ana +KI +MIN +... +HI +HI +SAG +DU +su +EŠ +MEŠ +DIŠ +NA +... +im +HAD₂ +A +GAZ +SIM +KI +... +LAL +su +ma +UD +3 +KAM +NU +DU₈ +DIŠ +NA +SAG +DU +su +... +IGI +šu₂ +GID₂ +DA +su +ŠU +MIN +šu₂ +u +GIR₃ +MIN +šu₂ +... +šim +ma +ta₅ +TUKU +MEŠ +ana +TI +šu₂ +šim +GUR₂ +GUR₂ +šim +LI +u₂ +KUR +KUR +... +giš +ILDAG₂ +GAZI +sar +ZI₃ +ŠE +SA +A +DIDA +SIG₅ +... +ina +A +GAZ +sar +SILA₁₁ +aš +SAG +DU +su +... +LAL₂ +ma +UD +7 +KAM₂ +NU +DU₈ +ana +KI +MIN +u₂ +x +... +ŠEŠ₂ +MEŠ +ma +ina +eš +DIŠ +NA +MURUB₄ +SAG +DU +šu₂ +... +i +ta +na +ah +GAZ +ŠA₃ +TUKU +MEŠ +ši +ELLAG₂ +šu₂ +... +ik +ta +ner +ru +ana +GIG +ZI +hi +... +DIDA +SIG₅ +GAZI +sar +ZI₃ +ŠE +SA +A +... +LAL +id +... +x +... +... +... +... +x +... +ina +A +GAZI +sar +SILA₁₁ +aš +... +ana +KI +MIN +... +x +giš +ŠINIG +NUMUN +u₂ +AB₂ +DUH +... +x +... +KAŠ +SAG +lu +ina +GEŠTIN +NAG +... +DIŠ +NA +SAG +KI +DAB +BA +TUKU +TUKU +NUMUN +u₂ +UKUŠ₂ +HAB +DUB +1 +KAM₂ +DIŠ +NA +UGU +šu₂ +KUM₂ +u₂ +kal +E₂ +GAL +m +AN +ŠAR₂ +DU₃ +A +LUGAL +ŠU₂ +MAN +KUR +AN +ŠAR₂ +ki +ša +d +AG +u +d +taš +me +tu₄ +GEŠTU +MIN +ra +pa +aš₂ +tu +iš +ru +ku +šu₂ +e +hu +uz +zu +IGI +MIN +na +mir +tu +ni +siq +ṭup +šar +ru +ti +ša +ina +LUGAL +MEŠ +ni +a +lik +mah +ri +ia +mam₂ +ma +šip +ru +šu +a +tu +la +i +hu +uz +zu +bul +ṭi +TA +muh +hi +EN +UMBIN +liq +ti +BAR +MEŠ +ta +hi +zu +nak +la +a +zu +gal +lu +ti +d +nin +urta +u +d +gu +la +ma +la +ba +aš₂ +mu +ina +ṭup +pa +a +ni +aš₂ +ṭur +as +niq +IGI +KAR₂ +ma +a +na +ta +mar +ti +ši +ta +si +ia +qe₂ +reb +E₂ +GAL +ia +u₂ +kin +DIŠ +NA +x +x +x +u₂ +tan +ne₂ +eh +šu₂ +x +... +u₂ +IGI +lim +u₂ +IGI +NIŠ +... +DIŠ +KI +MIN +u₂ +HAR +HAR +u₂ +ur₂ +ne₂ +e +šim +... +DIŠ +KI +MIN +u₂ +HAR +LUM +BA +ŠIR +... +DIŠ +NA +SAG +ŠA₃ +šu₂ +u₂ +ṣar +rap +šu₂ +na +piš +KIRI₄ +šu₂ +DUGUD +NA +BI +... +DIŠ +NA +SAG +ŠA₃ +šu₂ +i +ha +maṭ +su +i +dak +ka +su +UH₂ +su +x +... +UD +DA +SA₂ +SA₂ +I₃ +GIŠ +BARA₂ +GA +ina +A +NU +pa +tan +NAG +NAG +šu₂ +... +šim +LI +šim +GUR₂ +GUR₂ +ILLU +šim +BULUH +PA +giš +bi +ni +PA +u₂ +IN₆ +UŠ₂ +... +DIŠ +NA +MURUB₄ +MAŠ +SILA₃ +MIN +šu₂ +u₂ +ha +maṭ +su +KI +UH₂ +šu₂ +MUD₂ +ŠUB +ŠUB +ana +UD +DA +... +šim +LI +šim +GUR₂ +GUR₂ +ZA₃ +HI +LI +... +PA +GI +ZU₂ +LUM +MA +IM +GU₂ +EN +NA +GAZ +ina +KAŠ +SILA₁₁ +aš +x +... +DIŠ +NA +NINDA +GU₇ +KAŠ +NAG +ma +SAG +ŠA₃ +šu₂ +i +kaṣ₃ +ṣa +su +ŠA₃ +šu₂ +MU₂ +MU₂ +... +UD +DA +SA₂ +SA₂ +u₂ +ak +tam +u₂ +IGI +lim +u₂ +tar +muš +... +DIŠ +KI +MIN +I₃ +GIŠ +BARA₂ +GA +EME +šu₂ +DAB +bat +... +DIŠ +NA +it +ta +na +ša +aš +a +šu +uš +tu₄ +ŠUB +ŠUB +su +x +x +x +x +x +x +x +x +x +x +x +x +x +UD +DA +SA₂ +SA₂ +giš +GEŠTIN +KA₅ +A +SUD₂ +ina +KAŠ +NAG +UZU +GUR₄ +RA +GU₇ +šim +LI +šim +HAB +ina +KAŠ +NAG +ina +KAŠ +ŠEG₆ +šal +ana +DUR₂ +šu₂ +DUB +DIŠ +KI +MIN +GEŠTIN +KA₅ +A +SUD₂ +ina +KAŠ +NAG +IM +GU₂ +EN +NA +A +GAR +GAR +MAŠ +DA₃ +PA +giš +KIŠI₁₆ +ha +ah +PA +GI +ZU₂ +LUM +MA +gu +ur +GI +ŠUL +HI +ZI₃ +GIG +DUH +ŠE +GIŠ +I₃ +ta +sak₃ +ina +KAŠ +ta +la₃ +aš +ina +TUG₂ +te +ṭer +ri +LAL +DIŠ +KI +MIN +u₂ +ak +tam +SUD₂ +ina +KAŠ +SAG +NAG +DIŠ +NA +it +ta +na +ša +aš +a +šu +uš +tu₄ +ŠUB +ŠUB +su +di +ik +ša +TAG +TAG +su +UH₂ +šu₂ +ma +a +da +NAG +NAG +UD +DA +SA₂ +SA₂ +u₂ +IGI +lim +u₂ +šiz +ba +na₇ +šim +ŠE +LI +BABBAR +SUD₂ +ina +KAŠ +NAG +DIŠ +NA +NINDA +GU₇ +KAŠ +NAG +ma +ŠA₃ +šu₂ +in +nin +me +er +nap +hu +A +ma +gal +NAG +UD +DA +SA₂ +SA₂ +u₂ +IGI +lim +u₂ +IGI +NIŠ +u₂ +tar +muš +šim +GAM +MA +u₂ +ti +ia₂ +ta₅ +u₂ +HAR +HAR +SUD₂ +ina +KAŠ +NU +pa +tan +NAG +IM +GU₂ +EN +NA +A +GAR +GAR +MAŠ +DA₃ +šim +LI +šim +GUR₂ +GUR₂ +ZA₃ +HI +LI +PA +giš +GEŠTIN +KA₅ +A +x +x +x +gu +ur +giš +GI +ŠUL +HI +ZI₃ +GIG +DUH +ŠE +GIŠ +I₃ +SUD₂ +ina +KAŠ +SILA₁₁ +aš +ina +TUG₂ +SUR +ri +LAL +su +ma +TI +u₂ +ak +tam +SUD₂ +ina +KAŠ +NAG +UZU +GUR₄ +RA +GU₇ +ŠA₃ +šu₂ +i +ar₂ +ru₃ +x +x +x +SUD₂ +ina +KAŠ +NAG +u₂ +IGI +lim +SUD₂ +ina +I₃ +GIŠ +BARA₂ +GA +NAG +IM +GU₂ +EN +NA +SUD₂ +ina +KAŠ +NAG +u₂ +ti +ia₂ +ta₅ +SUD₂ +ina +KAŠ +NAG +DIŠ +NA +NINDA +GU₇ +KAŠ +NAG +ma +ŠA₃ +šu₂ +in +nim +me +ru +nap +hu +A +ma +gal +NAG +UD +DA +SA₂ +SA₂ +GURUN +UKUŠ₂ +HAB +EN +la +uk +tap +pi +tu +HAD₂ +DU +ta +sak₃ +ina +KAŠ +NAG +u₂ +KUR +RA +SUD₂ +ina +KAŠ +NAG +u₂ +HAR +LUM +BA +ŠIR +SUD₂ +ina +KAŠ +NAG +DIŠ +NA +NINDA +GU₇ +KAŠ +NAG +ma +ŠA₃ +MEŠ +šu₂ +in +nim +me +ru +KAŠ₃ +MEŠ +šu₂ +DAB +DAB +at +UD +DA +SA₂ +SA₂ +GURUN +UKUŠ₂ +HAB +EN +la +uk +tap +pi +tu +HAD₂ +DU +ta +sak₃ +ina +KAŠ +NAG +DIŠ +NA +NINDA +GU₇ +KAŠ +NAG +ma +ŠA₃ +šu₂ +in +nim +me +ru +in +ne₂ +bi +ṭu₂ +ri +du +ut +ir +ri +TUKU +UD +DA +SA₂ +SA₂ +15081 ina +x +... +DIŠ +NA +... +x +... +15090 x +šu₂ +i +x +... +DIŠ +NA +mur +ti +... +NA +BI +x +x +GIG +... +u₂ +ak +tam +ina +hi +iq +KAŠ +... +EGIR +nu +hi +iq +KAŠ +x +... +DIŠ +KI +MIN +a +šu +uš +tu₂ +ŠUB +ŠUB +su +... +ru +pu +uš +tu +NU +TUKU +TUKU +ši +... +NU +GID₂ +DA +u₂ +ap +ru +ša₂ +x +... +DIŠ +niš +x +x +x +x +... +DIŠ +NA +x +x +ma +gal +TUKU +TUKU +... +... +x +x +x +... +DIŠ +NA +SAG +KI +DAB +BA +TUKU +TUKU +ši +NUMUN +u₂ +UKUŠ₂ +HAB +NUMUN +u₂ +UKUŠ₂ +TI +GI +LA +NUMUN +u₂ +EME +UR +GI₇ +NUMUN +u₂ +HUR +SAG +NUMUN +HAB +NUMUN +u₂ +DILI +NUMUN +kiš +ša₂ +ni +GAZ +SIM +mal₂ +ma +liš +HI +HI +ina +A +GEŠTIN +NA +tara +bak +ZI₃ +ŠE +SA +A +ZI₃ +ZIZ₂ +A +AN +a +na +IGI +ta +šap +pah +ina +KUŠ +SUR +SAG +DU +su +tu +gal +lab +LAL +ma +ina +eš +DIŠ +KIMIN +GAZI +sar +u₂ +AB₂ +DUH +šim +GUR₂ +GUR₂ +šim +BULUH +DUH +ŠE +GIŠ +I₃ +ša +x +x +x +x +ZI₃ +GIG +mal₂ +ma +liš +HI +HI +DIDA +SIG₅ +GA +SUD₂ +ana +ŠA₃ +ŠUB +ŠEG₆ +GA₂ +U₂ +HI +A +an +nu +ti +HI +HI +tara +bak +LAL +DIŠ +KIMIN +giš +EREN +giš +ŠUR +MIN₃ +šim +GIR₂ +GI +DU₁₀ +GA +šim +GUR₂ +GUR₂ +šim +LI +giš +EREN +SUMUN +šim +MUG +ŠIM +ŠAL +šim +MAN +DU +šim +HAB +šim +BULUH +ILLU +šim +BULUH +TEŠ₂ +BI +GAZ +SIM +ina +GEŠTIN +ŠUR +RA +tara +bak +ZI₃ +ŠE +SA +A +ZI₃ +ZIZ₂ +A +AN +ana +IGI +ta +šap +pah +ina +KUŠ +SUR +ri +SAG +DU +su +tu +gal +lab +LAL +ma +TI +DIŠ +KIMIN +NUMUN +giš +ILDAG₂ +u₂ +ak +tam +NUMUN +AB₂ +DUH +x +x +x +x +GAZI +sar +NUMUN +giš +HAB +u₂ +LAG +A +ŠA₃ +DIŠ +niš +x +x +x +x +x +x +x +x +x +ŠE +SA +A +ZI₃ +ZIZ₃ +A +AN +a +na +IGI +ta +šap +pah +x +x +x +x +SAG +DU +su +SAR +ab +LAL +ma +TI +DIŠ +KIMIN +u₂ +HAR +HAR +u₂ +KUR +KUR +x +x +x +x +u₂ +ka +man +ti +KA +A +AB +BA +ZI₃ +GIG +DIDA +SIG₅ +šim +x +x +x +x +ina +KAŠ +tara +bak +LAL +ma +TI +DIŠ +KIMIN +šim +GUR₂ +GUR₂ +šim +LI +x +x +x +NUMUN +u₂ +ka +man +ti +KA +A +AB +BA +šim +ŠEŠ +ZI₃ +GIG +DIŠ +niš +GAZ +SIM +x +x +x +ina +KAŠ +tara +bak +LAL +ma +TI +DIŠ +KIMIN +šim +GUR₂ +GUR₂ +šim +LI +x +x +x +x +DIŠ +niš +GAZ +SIM +ZI₃ +GIG +DIDA +SIG₅ +ina +KAŠ +ta +la₃ +aš +x +x +x +SAG +DU +su +SAR +ab +LAL₂ +ma +TI +DIŠ +KIMIN +šim +GUR₂ +GUR₂ +šim +LI +šim +d +NIN +URTA +NUMUN +u₂ +AB₂ +DUH +KA +A +AB +BA +šim +MUG +DIŠ +niš +GAZ +SIM +ina +KAŠ +tara +bak +SAG +DU +su +SAR +ab +LAL +ma +TI +DIŠ +KIMIN +PA +giš +GIŠIMMAR +ša₂ +ina +NU +IM +i +nam +zu +zu +TI +qi₂ +ina +UD +DA +HAD₂ +A +GAZ +SIM +ina +A +GAZI +sar +SILA₁₁ +aš +LAL +DIŠ +KIMIN +u₂ +ap₂ +ru +ša₂ +SUD₂ +ina +I₃ +HI +HI +ILLU +giš +a +bu +ka +tu₂ +ana +ŠA₃ +ŠUB +di +EN₂ +A +RA +ŠE +RA +MIN +IZI +BIL +LI +NUMUN +KI +IB +GAR +7 +šu₂ +u +7 +šu₂ +ana +ŠA₃ +ŠID +SAG +KI +šu₂ +LAL₂ +DIŠ +KIMIN +u₂ +KUR +KUR +ni +kip +ta +ina +NE +tu +qat +tar +šu₂ +šim +GUR₂ +GUR₂ +ni +kip +ta +šim +LI +NUMUN +u₂ +AB₂ +DUH +KA +A +AB +BA +x +x +x +x +x +ina +IZI +tu +ša₂ +ha +an +LAL +id +x +x +x +x +x +x +x +x +KA +A +AB +BA +UH₂ +d +ID₂ +DIŠ +niš +SUD₂ +sig₂ +HE₂ +ME +DA +x +x +x +x +x +SAG +KI +šu₂ +KEŠDA +as +DIŠ +KIMIN +ni +kip +ta +... +SAG +KI +šu₂ +TAG +TAG +DIŠ +KIMIN +x +... +HI +HI +SAG +KI +šu₂ +TAG +DIŠ +KIMIN +10 +GIN₂ +ZA₃ +HI +LI +10 +GIN₂ +ŠE +SA +A +x +x +x +x +x +x +LAL +DIŠ +KIMIN +10 +GIN₂ +ZA₃ +HI +LI +10 +GIN₂ +IM +BABBAR +x +x +x +x +x +x +x +x +x +x +x +x +x +TUKUM +BI +LU₂ +U₃ +SAG +KI +x +x +x +x +x +x +x +x +x +x +ina +a +ṣi +ka +ina +GUB₃ +ka +GUB +zu +x +x +x +x +x +x +x +x +x +ina +sig₂ +HE₂ +ME +DA +KEŠDA +as₂ +x +x +x +x +x +x +x +x +x +TUKUM +BI +LU₂ +U₃ +SAG +KI +DAB +su +x +x +x +x +x +x +x +x +x +x +HAD₂ +A +GAZ +SIM +ina +KAŠ +SILA₁₁ +aš +x +x +x +x +x +x +x +x +x +TUKUM +BI +LU₂ +U₃ +x +x +x +x +x +x +x +x +x +x +x +x +x +ina +SAG +KI +šu₂ +x +x +x +x +x +x +x +TUKUM +BI +x +x +x +x +x +x +x +x +x +x +x +x +x +x +15916 TUKUM +BI +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ina +SAG +KI +šu₂ +x +x +x +x +x +x +DIŠ +LU₂ +ZI +SAG +KI +TUKU +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +sah +le₂ +e +ARA₃ +ti₃ +ZI₃ +ŠE +SA +A +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +KIMIN +PA +giš +šu +nim +HAD₂ +A +GAZ +SIM +ina +ZI₃ +GIG +x +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +KIMIN +giš +GEŠTIN +KA₅ +A +u₂ +su +ba +lam +HAD₂ +A +GAZ +x +x +x +KI +ZI₃ +ŠE +SA +A +ina +A +GAZI +sar +x +x +x +DIŠ +NA +ZI +SAG +KI +TUKU +ši +u +šim +ma +ta₅ +TUKU +PA +giš +MA +NU +x +x +x +x +x +sah +le₂ +e +u₂ +HAR +HAR +ina +KAŠ +lu₂ +KURUN₂ +NA +tara +bak +x +x +x +x +PA +u₂ +UR₂ +TAL₂ +TAL₂ +giš +d +MAŠ +KA +A +AB +BA +u₂ +HAR +HAR +u₂ +KUR +KUR +ZI₃ +GIG +gu +ur +GI +gu +ur +GI +ŠUL +HI +HENBUR₂ +GI +HENBUR₂ +GI +ŠUL +HI +NUNUZ +giš +DIH₃ +NUNUZ +giš +KIŠI₁₆ +I₃ +UDU +UR +MAH +u₂ +paṭ +giš +KIŠI₁₆ +ša₂ +ina +UGU +KI +MAH +GUB +zu +TEŠ₂ +BI +SUD₂ +ina +I₃ +ŠEŠ₂ +NUMUN +u₂ +KI +d +IŠKUR +DIDA +SIG₅ +GA +ina +na₄ +NA +ZA₃ +HI +LI +SUD₂ +ina +KAŠ +lu₂ +KURUN₂ +NA +tara +bak +LAL +DIŠ +LU₂ +ZI +SAG +KI +TUKU +ma +ŠU +MIN +šu₂ +GIR₃ +MIN +šu₂ +i +šam +ma +ma +šu₂ +PA +giš +HA +LU +UB₂ +šim +IM +MAN +DI +u₂ +SU +AN +DAR +ZI₃ +ŠE +MUŠ₅ +ZI₃ +MUNU₆ +u₂ +HAR +HAR +giš +GEŠTIN +KA₅ +A +DIŠ +niš +GAZ +SIM +ina +šur +šum +mi +KAŠ +tara +bak +LAL +ma +TI +PA +GI +ŠUL +HI +šim +LI +u₂ +SU +AN +DAR +u₂ +ak +tam +u₂ +IN₆ +UŠ₂ +ZI₃ +GU₂ +TUR +DIŠ +niš +GAZ +SIM +ina +šur +šum +mi +KAŠ +SAG +tara +bak +LAL₂ +ma +TI +uṭ +DIŠ +NA +SAG +KI +šu₂ +GU₇ +MIN +šu₂ +ina +si +pa +ri +1 +šu₂ +2 +šu₂ +3 +šu₂ +ta +tak +kip +EN +MUD₂ +GIN +ak +ni +kip +ta₅ +ina +I₃ +EŠ +su +16292 tug₂ +NIG₂ +DARA₂ +ŠU +LAL₂ +na₄ +mu +ṣa +GEŠTU +giš +DIH₃ +SA₅ +bi +ni +ina +GU₂ +šu₂ +GAR +an +KU +KU +na₄ +SAG +KI +KU +KU +na₄ +NIR₂ +ina +I₃ +ŠEŠ₂ +su +ana +ZI +SAG +KI +nu +uh₂ +hi +DUH +ŠE +GIŠ +I₃ +SUMUN +MEŠ +šim +GUR₂ +GUR₂ +šim +HAB +šim +BULUH +GAZI +sar +ta +pa +aṣ +DIDA +SIG₅ +ZI₃ +KUM +ina +KAŠ +ŠEG₆ +GA₂ +tara +bak +LAL +ana +ZI +SAG +KI +nu +uh₂ +hi +DUH +ŠE +GIŠ +I₃ +šim +GUR₂ +GUR₂ +šim +BULUH +DIŠ +niš +GAZ +AL +U₂ +SA +ZI₃ +KUM +ina +KAŠ +DIŠ +niš +ŠEG₆ +šal +ina +TUG₂ +SUR +ri +LAL +su +ma +TI +DIŠ +NA +SA +SAG +KI +šu₂ +GIG +šim +LI +šim +GUR₂ +GUR₂ +A +GAR +GAR +MAŠ +DA₃ +ZI₃ +GIG +DIŠ +niš +ina +KAŠ +tara +bak +LAL +ma +TI +uṭ +GAZI +sar +tur +ar₂ +ZI₃ +GIG +it +ti +šu₂ +HI +HI +ina +I₃ +u +KAŠ +SAG +tara +bak +LAL +ma +TI +uṭ +DIŠ +LU₂ +SA +SAG +KI +šu₂ +DAB +su +ma +GU₇ +MIN +šu₂ +10 +KISAL +ZI₃ +GIG +10 +KISAL +ZI₃ +KUM +10 +KISAL +šim +GUR₂ +GUR₂ +10 +KISAL +GAZI +sar +10 +KISAL +ZI₃ +MUNU₆ +10 +KISAL +DUH +ŠE +GIŠ +I₃ +TEŠ₂ +BI +HI +HI +ina +KAŠ +ta +la₃ +aš +SAG +KI +šu₂ +LAL +a +na +nu +uh₂ +hi +ša₂ +SA +HI +A +ŠE +SA +A +A +GAR +GAR +MAŠ +DA₃ +mal₂ +ma +liš +HI +HI +ina +KAŠ +SAG +tara +bak +LAL +DIŠ +LU₂ +SA +SAG +KI +šu₂ +DAB +su +ma +GU₇ +šu₂ +u₃ +i +ar₂ +ru₃ +... +ina +KAŠ +NAG +... +i +ar₂ +ru₃ +ŠU +BI +GEN₇ +NAM +DIŠ +NA +... +x +NINDA +u +KAŠ +la +i +mah +har +LU₂ +BI +DINGIR +šu₂ +iš +kun +šu₂ +... +x +la +bi +ri +te +qeb +bir +šu₂ +A +ina +UGU +TU₅ +DIŠ +KIMIN +... +LAL +id +SIG₂ +munus +AŠ₂ +GAR₃ +GIŠ₃ +NU +ZU +sig₂ +HE₂ +ME +DA +NIGIN +mi +KEŠDA +DIŠ +KIMIN +x +x +x +x +x +x +x +MUNUS +pa +ri +iš +tu₂ +NU +NU +SA +MAŠ +DA₃ +KI +šu₂ +nu +ta +pat +til +x +x +x +x +x +x +x +na₄ +ZA +GIN₃ +na₄ +ZU₂ +GE₆ +E₃ +ina +SAG +KI +MIN +šu₂ +KEŠDA +SAHAR +x +x +x +x +x +x +ŠIKA +SILA +LIMMU₂ +ni +kip +ta +SUD₂ +ina +I₃ +GIŠ +HI +HI +ŠEŠ₂ +su +DIŠ +NA +SAG +KI +ZAG +šu₂ +DAB +su +ma +IGI +ZAG +šu₂ +ER₂ +u₂ +kal +sah +le₂ +e +ZI₃ +ŠE +SA +A +LAGAB +x +LAGAB +MUNU₆ +DIŠ +niš +HI +HI +ina +A +GAZI +sar +tara +bak +SAG +KI +šu₂ +LAL +ma +TI +uṭ +DIŠ +NA +SAG +KI +GUB₃ +šu₂ +DAB +su +ma +IGI +GUB₃ +šu₂ +ER₂ +u₂ +kal +sah +le₂ +e +u₂ +HAR +HAR +GAZ +SIM +ina +KAŠ +AL +ŠEG₆ +GA₂ +tara +bak +SAG +KI +šu₂ +LAL +ma +TI +uṭ +DIŠ +NA +SAG +KI +MIN +šu₂ +ṣab +ta +šu₂ +ma +IGI +MIN +šu₂ +ER₂ +u₂ +kal +la +sah +le₂ +e +u₂ +HAR +HAR +GAZI +sar +ZI₃ +ŠE +SA +A +BA +BA +ZA +MUNU₆ +DIŠ +niš +ina +dug +UTUL₇ +ina +A +GAZI +sar +tara +bak +SAG +KI +MIN +šu₂ +KEŠDA +ma +TI +uṭ +DIŠ +NA +SAG +KI +ZAG +šu₂ +DAB +su +ma +IGI +ZAG +šu₂ +MUD₂ +u₂ +kal +sah +le₂ +e +u₂ +HAR +HAR +IM +BABBAR +giš +KIŠI₁₆ +HAB +ZI₃ +ŠE +SA +A +BA +BA +ZA +MUNU₆ +DIŠ +niš +GAZ +SIM +ina +A +GEŠTIN +NA +tara +bak +ŠU +BI +AŠ +AM₃ +DIŠ +NA +SAG +KI +GUB₃ +šu₂ +DAB +su +ma +IGI +GUB₃ +šu₂ +MUD₂ +u₂ +kal +u₂ +KI +KAL +HI +RI₂ +IN +u₂ +SU +AN +DAR +šim +MUG +DIŠ +niš +GAZ +SIM +ina +x +x +x +x +x +tara +bak +MIN +x +x +x +x +x +x +ṣab +ta +šu₂ +ma +x +x +x +x +x +x +x +x +x +x +x +x +x +ŠE +SA +A +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +LAL +16939 giš +ŠUR +MIN₃ +giš +MA₂ +EREŠ +MA₂ +RA +... +giš +ar₂ +gan +nu +giš +ba +ri +ra +ta₅ +... +x +... +ŠURUN +GUD +A +GAR +GAR +MAŠ +DA₃ +DIŠ +niš +GAZ +SIM +ina +DIDA +SIG +tara +bak +x +x +x +x +ana +IGI +ta +šap +pah +SAG +DU +su +SAR +ab +LAL +ma +u₂ +IGI +lim +u₂ +IGI +NIŠ +ina +DIDA +x +x +x +ZI +ah +na₄ +SAG +KI +ina +ZAG +šu₂ +KEŠDA +su +u₂ +ar₂ +zal +la +ŠIKA +gul +gul +LU₂ +U₁₈ +LU +x +x +x +ni +kip +ta₅ +NUMUN +giš +MA +NU +u₂ +DILI +NUMUN +giš +bi +ni +u₂ +AŠ +TAL₂ +TAL₂ +DIŠ +niš +te +pe +eṣ +ina +I₃ +GIŠ +giš +EREN +HI +HI +ma +ŠEŠ₂ +su +bal +ṭu₂ +su +nu +ina +NE +giš +KIŠI₁₆ +tu +qat +tar +šu₂ +I₃ +DU₁₀ +GA +SAG +KI +MIN +šu₂ +EŠ +aš +DIŠ +NA +SAG +KI +ZAG +šu₂ +GU₇ +šu₂ +ma +IGI +ZAG +šu₂ +nap +hat +u₃ +ER₂ +BAL +qi₂ +ŠU +GIDIM +MA +ša₂ +ni +d +iš₈ +tar₂ +ana +TI +šu₂ +giš +si +hu +giš +ar₂ +ga +nu +giš +ba +ri +ra +ta₅ +1 +GIN₂ +UH₂ +d +ID₂ +u₂ +IN₆ +UŠ₂ +GI +ŠUL +HI +ina +ZI₃ +KUM +HI +HI +ina +KAŠ +tara +bak +LAL +: +DIŠ +KIMIN +šur +šum +mi +ši +iq +qi₂ +šur +šum +me +A +GEŠTIN +NA +KALAG +GA +šur +šum +mi +KAŠ +SAG +ZU₂ +LUM +MA +DILMUN +ki +1 +GIN₂ +I₃ +UDU +šim +GIG +ina +I₃ +NUN +SUD₂ +te +qi₂ +17182 DIŠ +NA +SAG +KI +GUB₃ +šu₂ +GU₇ +šu₂ +ma +IGI +150 +šu₂ +nap +hat +u +ER₂ +BAL +qi₂ +ZU₂ +LUM +MA +DILMUN +ki +U₂ +a +ši +i +MUD₂ +giš +EREN +ina +I₃ +šim +GIR₂ +SUD₂ +ina +MUL₄ +tuš +bat +ina +še +ri₃ +NU +pa +tan +MAR +DIŠ +KIMIN +IM +BABBAR +pu +rat +ta₅ +ZI₃ +MUNU₆ +ZI₃ +GU₂ +GAL +ZI₃ +GU₂ +TUR +ZI₃ +GAZI +sar +GAZ +SIM +ina +A +GAZI +sar +tara +bak +SAG +KI +šu₂ +IGI +šu₂ +LAL +DIŠ +NA +SAG +KI +DAB +su +ma +i +mim +i +kaṣ₃ +ṣa +IGI +MIN +šu₂ +nu +up +pu +ha +ŠU +GIDIM +MA +GIR₃ +PAD +DU +NAM +LU₂ +U₁₈ +LU +tur +ar₂ +SUD₂ +ina +I₃ +giš +EREN +EŠ +MEŠ +su +ma +TI +DIŠ +NA +SAG +KI +DAB +su +ma +TA +d +UTU +E₃ +EN +d +UTU +ŠU₂ +A +GU₇ +šu₂ +ŠU +GIDIM₇ +MA +a +ši +pu +ki +ša₂ +i +du +u +li +te +ep +pu +uš +I₃ +UDU +ma +hir +te +UDU +NITA₂ +x +x +x +x +DIŠ +niš +EŠ +su +u₂ +IN₆ +UŠ₂ +HAD₂ +A +GAZ +SIM +ina +A +GAZI +sar +tara +bak +ZI₃ +ŠE +SA +A +ana +IGI +ta +ša +pah +SAR +ab +LAL +su +17378 ... +LAL +... +... +ZI +ah +sig₂ +HE₂ +ME +DA +... +... +NIGIN +mi +ina +SAG +KI +šu₂ +u +GU₂ +šu₂ +KEŠDA +x +x +x +x +x +x +x +x +x +x +SAG +KI +MIN +šu₂ +GU₇ +MIN +šu₂ +na₄ +mu +ṣa +na₄ +AN +ZAH +na₄ +AN +ZAH +GE₆ +na₄ +KA +GI +NA +DAB +BA +NA₄ +AN +BAR +u₂ +DILI +6 +U₂ +MEŠ +ŠEŠ +DIŠ +niš +SUD₂ +ina +MUD₂ +giš +EREN +HI +HI +ma +SAG +KI +MIN +šu₂ +IGI +MEŠ +šu₂ +u +GU₂ +su +EŠ +MEŠ +ma +ina +eš +DIŠ +NA +ina +DAB +ŠU +GIDIM +ZI +SAG +KI +TUKU +MEŠ +ana +KAR +šu₂ +10 +GIN₂ +giš +EREN +10 +GIN₂ +giš +ŠUR +MIN₃ +10 +GIN₂ +šim +ŠEŠ +10 +GIN₂ +šim +IM +DI +10 +GIN₂ +giš +dup +ra +nu +10 +GIN₂ +ŠIM +ŠAL +10 +GIN₂ +šim +GIR₂ +10 +GIN₂ +šim +GAM +MA +10 +GIN₂ +šim +LI +10 +GIN₂ +šim +GUR₂ +GUR₂ +10 +GIN₂ +GI +DU₁₀ +GA +10 +GIN₂ +GAZI +sar +10 +GIN₂ +šim +HAB +10 +GIN₂ +LAGAB +MUNU₆ +10 +GIN₂ +DUH +ŠE +GIŠ +I₃ +x +x +10 +GIN₂ +DIDA +SIG₅ +GA +10 +GIN₂ +sah +le₂ +e +10 +GIN₂ +qi₂ +lip₂ +x +x +x +10 +GIN₂ +GU₂ +GAL +10 +GIN₂ +GU₂ +TUR +DIŠ +niš +GAZ +SIM +lu +ina +KAŠ +SAG +x +x +x +tara +bak +ina +KUŠ +SUR +ZI₃ +ZIZ₂ +A +AN +ana +IGI +ta +šap +pah +x +x +x +SAR +ab +SAG +KI +MIN +šu₂ +LAL +ma +ina +eš +DIŠ +KIMIN +šim +... +šim +d +MAŠ +ILLU +šim +BULUH +qi₂ +lip₂ +ZU₂ +LUM +MA +I₃ +UDU +ELLAG₂ +... +DIŠ +niš +GAZ +ina +KUŠ +SUR +ri +LAL +id +ma +ina +eš +DIŠ +KIMIN +DUH +ŠE +GIŠ +I₃ +... +šim +GIG +ZI₃ +KUM +ina +šur +šum +me +KAŠ +SILA₁₁ +aš +x +x +x +DIŠ +NA +SAG +KI +DAB +BA +TUKU +TUKU +u₂ +ŠAKIRA +NUMUN +u₂ +UR +TAL₂ +TAL₂ +NUMUN +u₂ +EME +UR +GI₇ +NUMUN +u₂ +NIG₂ +GAN₂ +GAN₂ +NUMUN +u₂ +ap₂ +ru +šu₂ +NUMUN +u₂ +AB₂ +DUH +NUMUN +u₂ +MAŠ +HUŠ +ša +ana +x +x +x +ŠE₁₀ +TU +mušen +ša₂ +giš +GIŠIMMAR +TI +ŠE₁₀ +SIM +mušen +ša₂ +giš +bi +ni +TI +ILLU +u₂ +si +in +bu +ra +ti +šim +GUR₂ +GUR₂ +sah +le₂ +e +NUMUN +u₂ +qu₂ +ud +ri +GAZI +sar +giš +KIŠI₁₆ +ta +pa +aṣ +DIŠ +niš +x +x +x +U₂ +MEŠ +ŠEŠ +ina +urudu +ŠEN +TUR +ta +qal +lu +U₂ +MEŠ +ša +šu +nu +ma +la +a +qa +lu +u +TI +DIŠ +niš +HI +HI +ina +šur +šum +mi +KAŠ +ta +la₃ +aš +tu +gal +lab +I₃ +GIŠ +EŠ +aš +7 +šu₂ +KEŠDA +su +ma +ina +U₄ +4 +KAM₂ +SA +SAG +KI +šu₂ +ta +ma +haṣ +ma +TI +uṭ +DIŠ +KIMIN +NUMUN +u₂ +DILI +NUMUN +u₂ +TAL₂ +TAL₂ +GAZ +SIM +ina +A +ta +la₃ +aš +LAL +DIŠ +KIMIN +ŠE₁₀ +TU +mušen +SUD₂ +ina +KAŠ +ta +la₃ +aš +LAL +DIŠ +NA +SAG +KI +DAB +BA +TUKU +TUKU +IGI +MIN +šu₂ +i +bar +ru +ra +UZU +MIN +šu₂ +i +šam +ma +mu +šu +GIR₂ +GIR₂ +šu₂ +ŠA₃ +MEŠ +šu₂ +MU₂ +MU₂ +ŠU +MIN +šu₂ +u +GIR₃ +MIN +šu₂ +u₂ +šam +ma +ma +šu₂ +u₂ +zaq +qa +ta +šu₂ +bir +ka +šu₂ +an +ha +tab +ka +e +ta +ta +na +ah +NA +BI +GIG +NU +ZI +DAB +su +i +dan +nin +šu₂ +ana +GIG +šu₂ +NU +GID₂ +DA +hi +qa +ša +KAŠ +urudu +ŠEN +TUR +DIRI +giš +bi +nu +u₂ +x +x +giš +HAŠHUR +GIŠ +GI +u₂ +TAL₂ +TAL₂ +NUMUN +giš +ŠE +NU₂ +A +ana +ŠA₃ +ŠUB +ŠEG₆ +šal +x +x +x +x +x +ib +E₁₁ +šu₂ +ma +NAGA +SI +MEŠ +IM +GU₂ +NIG₂ +NIGIN₂ +NA +te +se +er +šu₂ +17974 u₂ +IGI +lim +u₂ +IGI +NIŠ +SUD₂ +ina +MUD₂ +giš +EREN +HI +HI +ŠEŠ₂ +su +ma +TI +DIŠ +NA +SAG +KI +DAB +BA +TUKU +TUKU +u₂ +IGI +lim +u₂ +IGI +NIŠ +u₂ +tar +muš +u₂ +an +ki +nu +te +giš +HAŠHUR +GIŠ +GI +u₂ +HAR +HAR +U₂ +HI +A +ŠEŠ +ti +DIŠ +niš +ta +pa +aṣ +ina +urudu +ŠEN +TUR +ŠUB +tu +šab +šal +ta +ša₂ +hal +10 +GIN₂ +LAL₃ +1 +3 +SILA₃ +I₃ +hal +ṣa +ana +ŠA₃ +ŠUB +ana +DUR₂ +šu₂ +DUB +ma +TI +DIŠ +KIMIN +u₂ +IGI +lim +u₂ +IGI +NIŠ +NUMUN +giš +ŠINIG +NUMUN +u₂ +tu +lal +TEŠ₂ +BI +SUD₂ +ina +GEŠTIN +ŠUR +ba +lu +pa +tan +NAG +ma +TI +uṭ +DIŠ +KIMIN +ŠIM +HI +A +DU₃ +A +BI +šu₂ +nu +ina +GEŠTIN +ŠUR +u +KAŠ +SAG +tu +la +bak +ŠEG₆ +šal +ta +ša₂ +hal +10 +KISAL +LAL₃ +1 +3 +SILA₃ +I₃ +hal +ṣa +ana +ŠA₃ +ŠUB +di +x +x +x +ta +hi +ṭa +šu₂ +ma +TI +uṭ +DIŠ +KIMIN +u₂ +HAR +HAR +u₂ +KUR +KUR +NAGA +SI +MEŠ +x +x +x +x +x +NU +pa +tan +NAG +MIN +ma +TI +uṭ +DIŠ +KIMIN +u₂ +IGI +lim +u₂ +IGI +NIŠ +NUMUN +u₂ +x +x +x +x +x +x +x +SUD₂ +ina +KAŠ +ŠEG₆ +šal +ta +ša₂ +hal +10 +KISAL +LAL₃ +1 +3 +SILA₃ +x +x +x +x +x +x +x +x +x +x +x +TI +DIŠ +KIMIN +u₂ +IGI +lim +PA +giš +ŠE +NU₂ +A +... +TEŠ₂ +BI +GAZ +SIM +ina +x +... +DIŠ +KIMIN +giš +HAŠHUR +a +pi +... +DIŠ +NA +SAG +KI +DAB +BA +TUKU +TUKU +... +na₄ +AN +ZAH +GE₆ +... +DIŠ +KIMIN +ni +kip +ta₅ +... +TEŠ₂ +BI +... +18252 na₄ +mu +ṣa +na₄ +... +U₂ +HI +A +an +nu +ti +... +EN₂ +UR +SAG +d +ASAL +LU₂ +HI +7 +šu₂ +ŠID +... +DIŠ +NA +SAG +KI +DAB +su +ma +IGI +MIN +šu₂ +... +DIŠ +niš +SUD₂ +ina +KAŠ +... +DIŠ +NA +SAG +KI +šu₂ +lu +ša₂ +ZAG +lu +ša₂ +GUB₃ +... +u +IGI +MIN +šu₂ +a +pa +a +na₄ +mu +ṣa +... +DIŠ +NA +SAG +KI +ME +šu₂ +ZI +MEŠ +... +sah +le₂ +e +ARA₃ +MEŠ +x +... +KUŠ +MUŠ +GE₆ +HAD₂ +DU +... +DIŠ +NA +SAG +KI +DAB +su +ma +pa +nu +šu +iṣ +ṣa +nun +du +x +x +x +x +x +x +x +x +x +x +x +x +x +u₂ +IGI +lim +x +x +x +x +KAŠ +DU₁₀ +GA +NAG +MEŠ +ma +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +KEŠDA +su +A +RI +A +NAM +LU₂ +U₁₈ +LU +x +x +x +x +x +x +x +x +x +x +x +x +x +SUD₂ +ina +I₃ +giš +EREN +HI +HI +ŠEŠ₂ +MEŠ +ma +TI +x +x +x +x +x +x +x +SA +GU₂ +MEŠ +šu₂ +GU₇ +MEŠ +šu₂ +ŠU +GIDIM +MA +giš +si +hu +giš +ar₂ +ga +nu +u₂ +ba +ri +ra +ta₅ +GI +ŠUL +HI +GAZ +SIM +ina +A +GAZI +sar +tara +bak +LAL +su +DIŠ +NA +x +x +x +x +x +x +d +UTU +E₃ +EN +EN +NUN +UD +ZAL +LI +GU₇ +šu₂ +ur +rak +UŠ₂ +DIŠ +NA +x +x +x +x +x +ŠA₃ +ŠA₃ +GU₃ +GU₃ +si +ŠU +GIDIM +MA +ša₂ +ne₂ +e +d +iš +tar +UŠ₂ +DIŠ +NA +SAG +KI +DAB +BA +ma +ma +gal +BURU₈ +KI +NA₂ +la +i +na +aš +ši +UŠ₂ +DIŠ +NA +SAG +KI +DAB +BA +ma +ma +gal +GU₃ +GU₃ +si +SA +SAG +KI +šu₂ +ma +gal +te +bu +u +x +x +x +x +x +UŠ₂ +an +nu +tu₄ +x +x +x +x +SAG +KI +DAB +BA +KAM₂ +EN +SA +GU₂ +AL +TIL +šum +ma +SAG +KI +DAB +BA +ŠU +GIDIM +MA +ina +SU +NA +il +ta +za +az +ma +NU +DU₈ +DUB +2 +KAM₂ +DIŠ +NA +UGU +šu₂ +KUM₂ +u₂ +kal +E₂ +GAL +m +AN +ŠAR₂ +DU₃ +A +LUGAL +ŠU₂ +MAN +KUR +AN +ŠAR₂ +ki +ša +d +AG +u +d +taš +me +tu₄ +GEŠTU +MIN +ra +pa +aš₂ +tu₂ +iš +ru +ku +šu₂ +e +hu +uz +zu +IGI +MIN +na +mir +tu₄ +ni +siq +ṭup +šar +ru +ti +ša +ina +LUGAL +MEŠ +ni +a +lik +mah +ri +ia +mam₂ +ma +šip +ru +šu +a +tu +la +i +hu +uz +zu +bul +ṭi +TA +muh +hi +EN +UMBIN +liq +ti +BAR +MEŠ +ta +hi +zu +nak +la +a +zu +gal +lu +ut +d +nin +urta +u +d +gu +la +ma +la +ba +aš₂ +mu +ina +ṭup +pa +a +ni +aš₂ +ṭur +as +niq +IGI +KAR₂ +ma +a +na +ta +mar +ti +ši +ta +si +ia +qe₂ +reb +E₂ +GAL +ia +u₂ +kin +NA +BI +GIDIM +IM +RI +A +šu₂ +DAB +su +... +šim +ŠE +LI +BABBAR +šim +... +u₂ +tara +muš +giš +si +ha +... +ina +A +ŠIM +HI +A +GAR +šu +nu +... +ta +lal +NITA +NINDA +GID₂ +DA +x +... +I₃ +šim +ŠEŠ +ana +SAG +KI +šu₂ +ŠUB +di +... +ana +KIMIN +giš +EREN +giš +ŠUR +MIN₃ +GI +DUG₃ +GA +... +8 +U₂ +HI +A +ŠEŠ +UR +BI +ina +KAŠ +SAG +... +PEŠ₁₀ +d +ID₂ +ku +up +ri +d +ID₂ +... +tu +qat +tar +šu₂ +hi +ib +ṣa +ša +x +... +DIŠ +NA +ina +DAB +it +ŠU +GIDIM +MA +GEŠTU +MIN +šu₂ +i +šag +gu +ma +... +šim +d +MAŠ +zap +pi +ANŠE +KUR +RA +ZI₃ +... +MUD₂ +MUŠ +u₂ +GUD₃ +A +RI +A +... +ŠU +SI +MEŠ +šu₂ +ina +GEŠTU +MIN +šu₂ +i +ret +ti +ma +... +a +šar +TAB +ba +ši +i +d +e +a +ib +ni +... +EGIR +šu₂ +KA +sa +par +ti +SI +GU₄ +... +DIŠ +NA +GIDIM +DAB +su +ma +GEŠTU +MIN +šu₂ +i +šag +gu +ma +šim +BAL +GI +DUG₃ +GA +šim +GUR₂ +GUR₂ +GAZI +sar +zap +pi +ANŠE +KUR +RA +PAP +5 +U₂ +MEŠ +qu₅ +taru₅ +ša +GEŠTU +MIN +lat +ku +x +x +... +x +ina +MUD +UD +KA +BAR +... +DIŠ +NA +ŠU +GIDIM +MA +DAB +su +ma +GEŠTU +MIN +šu₂ +i +šag +gu +ma +šim +ŠEŠ +na₄ +EŠ₃ +ME +KAM₂ +na₄ +AŠ +GI₃ +GI₃ +... +SUD₂ +ina +sig₂ +AKA₃ +NIGIN +mi +ina +MUD₂ +giš +EREN +SUD +EN₂ +piš +irtu +ib +ni +ŠID +nu +... +EN₂ +piš +irtu +ib +ni +d +e +a +IM +MA +AN +NA +AN +KI +A +NA₄ +li +iz +zur +šu₂ +NA₄ +li +is +kip +šu₂ +NA₄ +liš +pi +šu₂ +NA₄ +li +pa +sis +su +TU₆ +EN₂ +: +EN₂ +an +ni +tu₂ +3 +šu₂ +ana +UGU +lip₂ +pi +ŠID +nu +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +ana +KIMIN +šim +GUR₂ +GUR₂ +u₂ +HAR +HAR +u₂ +KUR +KUR +u₂ +ak +tam +u₂ +IGI +lim +u₂ +IGI +20 +u₂ +tara +muš +ZA₃ +HI +LI +SUD₂ +ina +I₃ +giš +EREN +HI +HI +ina +sig₂ +AKA₃ +NIGIN +mi +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +ma +ina +eš +: +ana +KIMIN +GI +DUG₃ +ina +I₃ +GIŠ +SUD₂ +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +ana +KIMIN +šim +ŠEŠ +na₄ +AŠ₂ +GI₄ +GI₄ +na₄ +ZA +GIN₃ +na₄ +SIG₇ +SIG₇ +1 +niš +SUD₂ +ina +I₃ +giš +EREN +HI +HI +ana +ŠA₃ +GEŠTU +MIN +šu₂ +ŠUB +UZU +MIN +šu₂ +ŠEŠ₂ +DIŠ +NA +ina +DAB +it +ŠU +GIDIM +MA +GEŠTU +MIN +šu₂ +i +šag +gu +ma +NUMUN +u₂ +ra +a +nu +NUMUN +giš +MA +NU +ni +kip +tu₂ +NITA₂ +u +MUNUS +zap₂ +pi +ANŠE +KUR +RA +tug₂ +NIG₂ +DARA₂ +ŠU +LAL₂ +ina +NE +GEŠTU +MIN +šu₂ +tu +qat +tar +DIŠ +NA +ina +DAB +it +ŠU +GIDIM +MA +GEŠTU +MIN +šu₂ +i +šag +gu +ma +SUHUŠ +giš +MA +NU +ni +kip +tu₂ +tug₂ +NIG₂ +DARA₂ +ŠU +LAL₂ +ina +NE +ŠA₃ +GEŠTU +MIN +šu₂ +SAR +šim +GUR₂ +GUR₂ +šim +LI +šim +ŠEŠ +giš +EREN +GI +DUG₃ +GA +šim +MUG +GAZI +sar +im +KAL +GUG +8 +U₂ +HI +A +qu₅ +GUR +ša +GEŠTU +MIN +ina +NE +ŠA₃ +GEŠTU +MIN +šu₂ +SAR +na₄ +mu +ṣu₂ +SI +DARA₃ +MAŠ +GIR₃ +PAD +DU +NAM +LU₂ +U₁₈ +LU +KA +tam +ti₄ +GIR₃ +PAD +DU +UGU +DUL +BI +u₂ +KUR +RA +ina +NE +ŠA₃ +GEŠTU +MIN +šu₂ +tu +qat +tar +kib +ri +tu +u₂ +KU₆ +SUHUŠ +giš +MA +NU +a +za +pi +ANŠE +KUR +RA +tug₂ +NIG₂ +DARA₂ +ŠU +LAL₂ +ina +NE +giš +KIŠI₁₆ +ŠA₃ +GEŠTU +MIN +šu₂ +tu +qat +tar +SI +DARA₃ +MAŠ +na₄ +ga +bi +i +u₂ +KUR +RA +sah +le₂ +e +KA +tam +ti₄ +kib +ri +tu₂ +GIR₃ +PAD +DU +NAM +LU₂ +U₁₈ +LU +ina +NE +giš +KIŠI₁₆ +ŠA₃ +GEŠTU +MIN +šu₂ +SAR +DIŠ +NA +GEŠTU +MIN +šu₂ +i +šag +gu +ma +MUD₂ +giš +EREN +a +ra +an +di +šim +GUR₂ +GUR₂ +ina +sig₂ +AKA₃ +NIGIN +mi +ana +ŠA₃ +A +MEŠ +ŠUB +di +ina +NE +SEG₆ +šal +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +ma +TI +DIŠ +NA +GEŠTU +MIN +šu₂ +i +šag +gu +ma +MUD₂ +giš +EREN +KI +A +giš +NU +UR₂ +MA +HI +HI +ma +ana +ŠA₃ +GEŠTU +MIN +šu₂ +ŠUB +ma +TI +en₂ +in +da +ra +ah +ta +ra +ah +ti +šu +maš +in +da +ra +ah +ta +ra +ah +ti +tir +ki +bi +in +da +ra +ah +ta +ra +ah +ti +tir +ki +ba +su +tu₂ +TU₆ +EN₂ +en₂ +šu +bi +in +du₈ +gir₃ +bi +in +du₈ +bur +še +bur +na +bur +na +an +na +su +ri +ih +su +ri +ih +e +ne +su +ri +ih +gaba +ni +ik +ra +ah +su +ri +ih +ta +ah +ta +ah +TU₆ +EN₂ +2 +KA +INIM +MA +DIŠ +NA +GEŠTU +MIN +šu₂ +i +šag +gu +ma +DU₃ +DU₃ +BI +šim +ŠEŠ +na₄ +EŠ₃ +ME +KAM₂ +na₄ +AŠ₂ +GI₄ +GI₄ +SUD₂ +x +x +ina +MUD₂ +giš +EREN +HI +HI +EN₂ +3 +šu₂ +ana +ŠA₃ +ŠID +nu +sig₂ +AKA₃ +NIGIN +mi +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +EN₂ +si +in +du₈ +ib +ni +d +e₂ +a +IM +MA +NA +AN +KI +A +ib +ni +du +up +ni +gu₂ +us₂ +sa +TU₆ +EN₂ +1 +KA +INIM +MA +DIŠ +NA +GEŠTU +MIN +šu₂ +i +šag +gu +ma +DU₃ +DU₃ +BI +šim +ŠEŠ +na₄ +EŠ₃ +ME +KAM₂ +na₄ +AŠ₂ +GI₄ +GI +ni +kip +tu +ina +I₃ +HI +HI +ina +MUL +tuš +bat +EN₂ +3 +šu₂ +ana +ŠA₃ +ŠID +nu +sig₂ +AKA₃ +NIGIN +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +en₂ +ša +ra +zu +ša +ra +šag₅ +ga +he₂ +a +ur +sag +d +nin +urta +ša +ra +šag₅ +ga +he₂ +a +en +d +nin +urta +ša +ra +šag₅ +ga +he₂ +a +d +nin +urta +nam +ba +te +ga₂ +e₃ +de₃ +tu₆ +en₂ +1 +KA +INIM +MA +DIŠ +NA +GEŠTU +MIN +šu₂ +i +šag +gu +ma +DU₃ +DU₃ +BI +na₄ +EŠ₃ +ME +KAM₂ +x +x +šim +ŠEŠ +u₂ +ur +nu +u +UR +BI +SUD₂ +ina +MUD₂ +giš +EREN +HI +HI +EN₂ +3 +šu₂ +ana +ŠA₃ +ŠID +nu +ina +sig₂ +AKA₃ +NIGIN +mi +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +EN₂ +na +pi +ir +še +ri +iš +pa +ta +ar +ri +zu +ga +li +ir +ri +pa +ta +hal +li +pa +tar +ri +su +ma +aš₂ +pa +at +ri +pa +ku +un +di +ra +ta +aš₂ +ik +ki +ri +ri +ša +ra +aš +tu₆ +en₂ +1 +KA +INIM +MA +DIŠ +NA +GEŠTU +MIN +šu₂ +i +šag +gu +ma +3 +šu₂ +ana +ŠA₃ +GEŠTU +ZAG +šu₂ +3 +šu₂ +ana +ŠA₃ +GEŠTU +GUB₃ +šu₂ +MU₂ +... +x +x +... +x +x +... +... +... +en₂ +nig₂ +e₃ +nig₂ +e₃ +nig₂ +nam +ma +us₂ +su₁₃ +ki +a +dim₃ +ma +bi +a +ri +a +an +na +ke₄ +sa₇ +alan +bi +nig₂ +an +gin₇ +šu +nu +te +ga₂ +hur +sag +gin₇ +gul +gul +sa₇ +alan +bi +zi +ir +zi +ir +e +de₃ +nig₂ +udug +har +ra +an +nig₂ +udug +kaskal +am₃ +nig₂ +ni₂ +zu +mu +un +ši +in +gin +na +nig₂ +ni₂ +zu +mu +un +ši +in +gin +na +d +nin +urta +lugal +giš +tukul +ke₄ +gaba +zu +he₂ +en +ga₂ +ga₂ +hul +dub₂ +zi +an +na +he₂ +pa₂ +zi +ki +a +he₂ +pa₂ +1 +KA +INIM +MA +DIŠ +NA +GEŠTU +MIN +šu₂ +i +šag +gu +ma +3 +šu₂ +ana +ŠA₃ +GEŠTU +ZAG +šu₂ +3 +šu₂ +ana +ŠA₃ +GEŠTU +GUB₃ +šu₂ +ŠID +en₂ +hu +hu +un +ti +ib +ni +a +ti +ib +ni +ir +ra +ša₂ +na +an +ak +ka +li +ir +ri +su +gar +ri +ša₂ +at +ri +ku +uk +ti +hu +ma +at +ri +su +ma +aš +tu₆ +en₂ +1 +KA +INIM +MA +DIŠ +NA +GEŠTU +MIN +šu₂ +i +šag +gu +ma +3 +šu₂ +ana +ŠA₃ +GEŠTU +ZAG +šu₂ +li +ih +šu₂ +en₂ +a +me +am +ma +an +ku +um +ma +am +su +um +ma +at +ri +ki +ri +ri +ku +uk +ti +ra +ša₂ +na +ku +uk +ti +hu +un +di +hu +ma +an +tu₆ +en₂ +KA +INIM +MA +DIŠ +NA +GEŠTU +MIN +šu₂ +i +šag +gu +ma +3 +šu₂ +ana +ŠA₃ +GEŠTU +GUB₃ +šu₂ +li +ih +šu₂ +... +u₂ +kur +ka +na +a +... +x +... +DIŠ +NA +GEŠTU +MIN +šu₂ +GU₇ +MEŠ +šu₂ +neš +ma +a +he +e +si +I₃ +GIŠ +giš +dup +ra +an +sig₂ +AKA₃ +SUD +1 +tum +2 +šu₂ +3 +šu₂ +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +DIŠ +NA +GIG +ma +GIG +su +ana +ŠA₃ +GEŠTU +MIN +šu₂ +ip +pu +uš +ma +neš +ma +a +DUGUD +1 +GIN₂ +A +giš +NU +UR₂ +MA +2 +GIN₂ +A +šim +GIG +I₃ +šim +x +x +x +HI +HI +sig₂ +AKA₃ +SUD +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +UD +3 +KAM₂ +an +nam +DU₃ +uš +ina +UD +4 +KAM₂ +LUGUD +ša₂ +ŠA₃ +GEŠTU +MIN +šu₂ +E₁₁ +ma +ta +kap +par +GIM +MUD₂ +BABBAR +it +tag +ma +ru +IM +SAHAR +NA₄ +KUR +RA +SUD₂ +ina +GI +SAG +KUD +ana +ŠA₃ +GEŠTU +MIN +šu₂ +MU₂ +ah +DIŠ +NA +KUM₂ +ana +ŠA₃ +GEŠTU +MIN +šu₂ +i +pu +uš +ma +neš +mu +šu₂ +DUGUD +u₃ +lu +IR +u₂ +kal +I₃ +GIŠ +giš +dup +ra +na +I₃ +GIŠ +GI +DUG₃ +GA +ana +SAG +DU +šu₂ +ŠUB +di +sig₂ +AKA₃ +SUD +1 +šu₂ +2 +šu₂ +3 +šu₂ +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +neš +mu +šu₂ +BAD +te +sah +le₂ +e +ša₂ +mim +ma +ana +ŠA₃ +NU +ŠUB +ina +NINDA +ZIZ₂ +AN +NA +GU₇ +DIŠ +NA +ina +si +li +ʾ +ti +šu₂ +KUM₂ +ana +ŠA₃ +GEŠTU +MIN +šu₂ +ip +pu +uš +ma +GEŠTU +MIN +šu₂ +DUGUD +I₃ +KUR +GI +mušen +ana +ŠA₃ +GEŠTU +MIN +šu₂ +ŠUB +ma +neš +mu +šu₂ +i +qal +lil₂ +SUHUŠ +giš +NAM +TAR +NITA₂ +tu +pa +aṣ +ana +ŠA₃ +GEŠTU +MIN +šu₂ +ŠUB +ma +ina +eš +DIŠ +NA +GEŠTU +MIN +šu₂ +GIM +ša₂ +ŠU +GIDIM +MA +GU₇ +MEŠ +u₃ +SIG₃ +MEŠ +šu₂ +I₃ +GIŠ +šim +GIG +I₃ +GIŠ +GI +DUG₃ +GA +I₃ +GIŠ +šim +LI +a +he +e +tu +raq +qa +1 +niš +HI +HI +ana +ŠA₃ +GEŠTU +MIN +šu₂ +ŠUB +LAG +mun +eme +sal +li₃ +sig₂ +AKA₃ +NIGIN +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +DIDA +SIG₅ +ZI₃ +GU₂ +GAL +ZI₃ +GU₂ +TUR +ZI₃ +ZIZ₂ +AM₃ +ZI₃ +GAZI +sar +ZI₃ +giš +ere +ni +ina +KAŠ +tara +bak +LAL +TI +uṭ +DIŠ +NA +GEŠTU +MIN +šu₂ +GIG +ma +ŠA₃ +GEŠTU +MIN +šu₂ +bi +ʾ +iš +SIG₃ +MEŠ +su +GIR₂ +GIR₂ +su +x +x +x +u₂ +ra +x +GU₇ +šu₂ +ma +la +NA₂ +lal +šim +LI +šim +GUR₂ +GUR₂ +šim +GIR₂ +šim +BAL +GAZI +sar +IM +KAL +LA +IM +KAL +GUG +1 +niš +GAZ +SIM +ina +NE +giš +u₂ +GIR₂ +ŠA₃ +GEŠTU +MIN +šu₂ +SAR +ar₂ +x +x +x +x +x +UD +3 +KAM₂ +an +nam +DU₃ +uš +ma +ina +UD +4 +KAM₂ +ŠA₃ +GEŠTU +MIN +šu₂ +ta +kap +par₂ +ma +GIM +LUGUD +it +tag +ma +ru +IM +SAHAR +NA₄ +KUR +RA +SUD₂ +ina +gi +SAG +KUD +ana +ŠA₃ +GEŠTU +MIN +šu₂ +MU₂ +ah +DIŠ +NA +ina +GEŠTU +MIN +šu₂ +MUD₂ +BABBAR +DU +ak +MUD₂ +ELLAG₂ +GU₄ +u +MUD₂ +giš +EREN +1 +niš +HI +HI +ana +ŠA₃ +GEŠTU +MIN +šu₂ +BI +IZ +... +ana +ŠA₃ +GEŠTU +MIN +šu₂ +BI +IZ +A +giš +x +... +... +ana +ŠA₃ +GEŠTU +MIN +šu₂ +BI +IZ +A +giš +NU +UR₂ +MA +ina +I₃ +giš +EREN +HI +HI +ana +ŠA₃ +GEŠTU +MIN +šu₂ +BI +IZ +kam +ka +ma +ša₂ +kim +ṣi +ANŠE +x +x +x +ša₂ +GU₂ +MURGU₂ +ANŠE +ina +I₃ +giš +EREN +HI +HI +sig₂ +AKA₃ +NIGIN +mi +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +I₃ +šim +BULUH +šim +LI +ZI₂ +BIL +ZA +ZA +ana +ŠA₃ +GEŠTU +MIN +šu₂ +BI +IZ +... +x +an +ni +šu₂ +ina +I₃ +KUR +GI +mušen +HI +HI +ana +GEŠTU +MIN +šu₂ +BI +IZ +... +x +ina +ZI₃ +KUM +HI +HI +ana +GEŠTU +MIN +šu₂ +GAR +x +x +x +tu +daq +qaq +ina +GI +SAG +KUD +ana +ŠA₃ +GEŠTU +MIN +šu₂ +MU₂ +ah +GAZI +sar +ki +ma +ŠE +SA +A +ta +qal₃ +lu +ina +GI +SAG +KUD +ana +ŠA₃ +GEŠTU +MIN +šu₂ +MU₂ +ah +x +x +x +giš +MI +PAR₃ +tur +ar₂ +SUD₂ +ana +ŠA₃ +GEŠTU +MIN +šu₂ +MU₂ +ah +tu +ru +ʾ +a +x +as +si +lu +bu +x +x +x +tu +pa +ṣa +A +šu₂ +ana +ŠA₃ +GEŠTU +MIN +šu₂ +BI +IZ +kam₂ +ka +ma +ša₂ +kin₃ +ṣi +ANŠE +x +x +ša₂ +kal +lap +bi +1 +niš +HI +HI +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +ma +NAGA +SI +KUG +GAN +NITA₃ +u +MUNUS +sig₂ +AKA₃ +NIGIN +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +SUM +SIKIL +SAR +tu +ha +sa +ana +ŠA₃ +GEŠTU +MIN +šu +tu +na +tak +DIŠ +NA +GEŠTU +MIN +šu₂ +MUD₂ +BABBAR +i +ṣar +ru +ur +A +giš +NU +UR₂ +MA +ana +ŠA₃ +GEŠTU +MIN +šu₂ +BI +IZ +U₂ +BABBAR +SUD₂ +ina +GI +SAG +KUD +ŠA₃ +GEŠTU +MIN +šu₂ +MU₂ +ah +I₃ +giš +EREN +I₃ +šim +MUG +GAMUN +sar +SUD₂ +ina +I₃ +NUN +HI +HI +sig₂ +AKA₃ +NIGIN +mi +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +: +GAMUN +GI₆ +šim +ŠEŠ +I₃ +KU₆ +U₂ +KUR +RA +1 +niš +HI +HI +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +ZI₂ +ŠAH +ina +ZI₃ +KUM +HI +HI +sig₂ +AKA₃ +NIGIN +mi +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +ŠIKA +giš +NU +UR₂ +MA +HAD₂ +A +SUD₂ +ana +ŠA₃ +GEŠTU +MIN +šu₂ +MU₂ +ah +x +x +giš +EREN +šim +x +x +BIL +ZA +ZA +tur +ar₂ +SUD₂ +ana +ŠA₃ +GEŠTU +MIN +šu₂ +MU₂ +I₃ +giš +ŠUR +MIN₃ +sig₂ +AKA₃ +SUD +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +U₂ +KUR +RA +LA +... +SUD₂ +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +KAŠ +ša +lu₂ +KURUN +U₂ +BABBAR +ta +bi +lam +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +IM +SAHAR +NA₄ +KUR +RA +SUD₂ +ana +ŠA₃ +GEŠTU +MIN +šu₂ +MU₂ +ah +PA +giš +bi +ni +PA +giš +U₃ +SUH₅ +ina +NE +SAR +... +x +... +I₃ +KUR +GI +mušen +... +x +GI₃ +x +... +ZI₂ +BIL +ZA +ZA +... +GEŠTU +MIN +šu₂ +GAR +an +... +giš +NU +UR₂ +MA +... +GAR +an +... +x +HAR +... +SAR +x +... +x +... +kam₂ +... +u₂ +... +DIŠ +GEŠTU +MIN +x +... +x +... +x +šim +GUR₂ +GUR₂ +... +A +giš +NU +UR₂ +MA +x +x +x +ar +ina +NE +giš +ŠINIG +ta +sa +raq +ma +TI +DIŠ +KUG +GAN +SUD₂ +ana +ŠA₃ +GEŠTU +MIN +šu₂ +ta +sa +raq +ma +TI +ana +KIMIN +GAZI +sar +GIM +ŠE +SA +A +ta +qal +lu +SUD₂ +ina +ŠA₃ +GEŠTU +MIN +šu₂ +ta +sa +raq +ma +TI +DIŠ +NA +MUD₂ +BABBAR +ina +ŠA₃ +GEŠTU +MIN +šu₂ +DU +ak +A +giš +NU +UR₂ +MA +I₃ +GIŠ +BARA₂ +GA +I₃ +giš +EREN +HI +HI +... +A +šim +BULUH +šim +LI +ZI₂ +BIL +ZA +ZA +SIG₇ +ana +ŠA₃ +GEŠTU +MIN +šu₂ +BI +IZ +ŠE +GI₆ +... +MUD₂ +NIM +1 +niš +HI +HI +ana +ŠA₃ +GEŠTU +MIN +šu₂ +BI +IZ +TI +DIŠ +NA +ina +ŠA₃ +GEŠTU +šu₂ +lu +A +MEŠ +lu +MUD₂ +lu +MUD₂ +BABBAR +DU +ak +ŠA₃ +GEŠTU +MIN +šu₂ +ta +kap +par₂ +... +ina +GI +SAG +KUD +DUB +ŠA₃ +GEŠTU +MIN +šu₂ +LUH +si +GUR +ma +A +GEŠTIN +NA +BIL +LA₂ +ana +ŠA₃ +GEŠTU +MIN +šu₂ +BI +IZ +... +x +x +SUD₂ +ina +LAL₃ +HI +HI +ana +ŠA₃ +GEŠTU +MIN +šu₂ +DUB +sig₂ +AKA₃ +NIGIN +LAL₃ +KUR +U₂ +BABBAR +... +x +x +... +ana +KIMIN +NUMUN +u₂ +NU +LUH +HA +sig₂ +AKA₃ +NIGIN +mi +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +ana +KIMIN +NUMUN +šim +GUR₂ +GUR₂ +SUD₂ +sig₂ +AKA₃ +NIGIN +mi +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +ana +KIMIN +GAZI +sar +qa +lu +te +SUD₂ +sig₂ +AKA₃ +NIGIN +mi +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +DIŠ +NA +GEŠTU +ZAG +šu₂ +ina +KUM₂ +x +x +... +NA +BI +aš +rat +d +UTU +: +d +30 +KIN +ma +DUG₄ +GA +u +GIŠ +TUK +GAR +... +mun +eme +sal +li₃ +ina +I₃ +GIŠ +ŠUR +MIN₃ +I₃ +GIŠ +šim +GIG +u +x +... +I₃ +BUR +el +lam +SAG +DU +šu₂ +ŠUB +di +... +UD +7 +KAM₂ +GUR +GUR +šum +ma +TI +DIŠ +NA +GEŠTU +GUB₃ +šu₂ +ina +KUM₂ +... +MIN +NA +BI +aš +rat +d +nin +urta +KIN +ma +DUG₄ +GA +u +GIŠ +TUK +GAR +... +mun +eme +sal +li₃ +I₃ +GIŠ +... +I₃ +GIŠ +šim +GIG +SUD₂ +sig₂ +AKA₃ +NIGIN +mi +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +I₃ +BUR +el +lam +ana +SAG +DU +šu₂ +ŠUB +di +... +šim +LI +... +x +... +UD +7 +KAM₂ +GUR +GUR +šum +ma +TI +DIŠ +NA +GEŠTU +... +šu₂ +NA +BI +aš +rat +d +UTU +KIN +ma +DUG₄ +GA +u +GIŠ +TUK +GAR +... +ina +I₃ +GIŠ +šim +LI +SUD₂ +sig₂ +AKA₃ +NIGIN +mi +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +I₃ +BUR +el +lam +ana +SAG +DU +šu₂ +ŠUB +di +sah +le₂ +e +ina +NINDA +ZIZ₂ +AM₃ +GU₇ +MIN +... +UD +7 +KAM₂ +GUR +GUR +šu₂ +ma +TI +DIŠ +... +NA +BI +aš +rat +d +... +KIN +ma +7 +ITI +ŠAG₅ +GA +IGI +mar +... +SUD₂ +sig₂ +AKA₃ +NIGIN +mi +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +I₃ +BUR +el +lam +ana +SAG +DU +šu₂ +ŠUB +di +... +UD +7 +KAM₂ +GUR +GUR +šum +ma +TI +uṭ +DIŠ +... +GIG +UD +DA +GIG +NA +BI +ZI +GA +... +x +SIG₅ +IGI +mar +ana +TI +šu₂ +... +I₃ +GIŠ +ŠUR +MIN₃ +ana +SAG +DU +šu₂ +ŠUB +di +... +UD +7 +KAM₂ +GUR +GUR +šum +ma +TI +uṭ +DIŠ +NA +GEŠTU +MIN +šu +IR +ana +qer +bi +nu +ip +hur +ma +... +x +x +... +... +UD +9 +KAM₂ +ESIR +šu₂ +šum +... +... +x +I₃ +GIŠ +šim +GIG +sig₂ +AKA₃ +NIGIN +mi +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +I₃ +... +ana +SAG +DU +šu +ŠUB +di +bu +uh₂ +ra +x +GU₇ +MIN +... +KAŠ +NAG +MIN +UD +7 +KAM₂ +GUR +GUR +šum +ma +TI +DIŠ +NA +GEŠTU +ZAG +šu₂ +IR +ana +qer +bi +nu +ip +hur +ma +x +x +x +x +x +x +x +NE +GAL₂ +šu₂ +NA +BI +aš +rat +d +x +KIN +ma +SIG₅ +IGI +mar +ana +TI +šu₂ +GADA +ta +ṣap +pir +I₃ +GIŠ +ŠUR +MIN₃ +I₃ +GIŠ +EREN +SUD +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +... +ana +SAG +DU +šu₂ +ŠUB +an +nu +u +x +GU₇ +MIN +u₂ +HAR +HAR +ina +KAŠ +NAG +MIN +UD +7 +KAM₂ +GUR +GUR +šum +ma +TI +uṭ +DIŠ +NA +GEŠTU +GUB₃ +šu₂ +IR +ana +qer +bi +nu +ip +hur +ma +MUD₂ +BABBAR +ŠUB +ni +NA +BI +aš +rat +d +EŠ₄ +DAR +KIN +ma +SIG₅ +IGI +mar +... +x +x +x +ša +šu₂ +hal +qam +IGI +mar +ana +TI +šu₂ +I₃ +GIŠ +giš +EREN +I₃ +GIŠ +I₃ +GIŠ +giš +ŠUR +MIN₃ +I₃ +GIŠ +šim +BAL +I₃ +GIŠ +GI +DUG₃ +GA +I₃ +GIŠ +šim +GIG +sig₂ +HE₂ +ME +DA +SUD +ana +ŠA₃ +GEŠTU +šu₂ +GAR +I₃ +GIŠ +šim +GIG +ana +SAG +DU +šu₂ +ŠUB +bu +uh₂ +ra +GU₇ +MIN +KAŠ +NAG +MIN +UD +7 +KAM₂ +GUR +GUR +šum +ma +TI +DIŠ +NA +GEŠTU +šu₂ +GU₃ +GU₃ +si +IM +ha +sat +lu +MUD₂ +BABBAR +DU₃ +ni +aš +rat +d +nin +urta +KIN +ma +... +A +giš +NU +UR₂ +MA +SIG₇ +SIG₇ +RA +su +I₃ +GIŠ +SUD +x +... +x +SUD₂ +ana +SAG +KI +MEŠ +šu₂ +ŠUB +DUG₃ +IGI +mar +ana +KIMIN +MUN +SUD₂ +sig₂ +AKA₃ +NIGIN +I₃ +GIŠ +ŠUR +MIN₃ +SUD +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +I₃ +GIŠ +ŠUR +MIN₃ +ana +SAG +KI +MEŠ +šu₂ +ŠUB +bah +ra +GU₇ +u +NAG +UD +3 +KAM₂ +an +nam +DU₃ +uš +ma +DUG₃ +IGI +mar +ana +KIMIN +šim +LI +SUD₂ +sig₂ +AKA₃ +NIGIN +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +I₃ +ILLU +šim +BULUH +ana +SAG +KI +MEŠ +šu₂ +ŠUB +sah +le₂ +e +KI +NINDA +ZIZ₂ +AM₃ +GU₇ +MEŠ +3 +u₄ +mi +an +nam +DU₃ +DU₃ +ma +DUG₃ +IGI +mar +ana +KIMIN +I₃ +giš +EREN +NA +SIG₂ +GA +RIG₂ +AK +A +SUD +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +... +... +ana +SAG +KI +MEŠ +šu₂ +ŠUB +ŠUB +ma +x +... +ana +KIMIN +I₃ +giš +EREN +I₃ +GIŠ +ŠUR +MIN₃ +SIG₂ +GA +RIG₂ +AK +A +SUD +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +... +ana +SAG +KI +MEŠ +šu₂ +ŠUB +MEŠ +u₂ +HAR +HAR +GU₇ +u +NAG +UD +3 +KAM₂ +an +nam +DU₃ +uš +ma +DUG₃ +IGI +mar +DIŠ +NA +GEŠTU +ZAG +šu₂ +DUGUD +ŠUM +ŠIR +AŠ +sar +tu +pa +ṣa +ana +ŠA₃ +GEŠTU +šu₂ +GAR +an +PA +giš +ŠINIG +SIG₇ +su +SUD₂ +ina +ZI₃ +KUM₃ +HI +HI +ana +ŠA₃ +GEŠTU +šu₂ +GAR +an +giš +EREN +šim +LI +GAMUN +GI₆ +SUM +sar +SUD₂ +ina +I₃ +NUN +HI +HI +sig₂ +AKA₃ +SUD +ana +ŠA₃ +GEŠTU +šu₂ +GAR +an +I₃ +GIŠ +ŠUR +MIN₃ +sig₂ +AKA₃ +SUD +ana +ŠA₃ +GEŠTU +šu₂ +GAR +an +šim +HAB +I₃ +ŠAH +PA +giš +MAŠ +HUŠ +SIG₂ +munus +AŠ₂ +GAR₃ +GIŠ₃ +NU +ZU +ta +sak₃ +sig₂ +AKA₃ +NIGIN +mi +ana +ŠA₃ +GEŠTU +šu₂ +GAR +an +I₃ +GIŠ +dup +ra +na +sig₂ +AKA₃ +SUD +ana +ŠA₃ +GEŠTU +šu₂ +GAR +an +MUD₂ +d +NIN +KILIM +EDEN +NA +KI +I₃ +giš +EREN +I₃ +giš +ŠUR +MIN₃ +HI +HI +ana +ŠA₃ +GEŠTU +šu₂ +GAR +an +A +giš +NU +UR₂ +MA +AN +ZAH +GI₆ +tu +daq +qaq +... +ana +ŠA₃ +GEŠTU +šu₂ +GAR +an +BURU₅ +HABRUD +DA +NITA +SAG +DU +su +KUD +is +MUD₂ +MEŠ +KUM₂ +ana +ŠA₃ +GEŠTU +šu₂ +tu +na +tak +DIŠ +NA +GEŠTU +GUB₃ +šu₂ +DUGUD +šim +ŠEŠ +šim +GIG +SUD₂ +... +LAL₃ +KUR +ina +I₃ +UDU +UR +MAH +... +EGIR +šu₂ +DILIM₂ +A +BAR +ina +I₃ +GIŠ +x +... +I₃ +GIŠ +EREN +ŠE +MUŠ₅ +... +x +x +... +si +ik +ti +giš +šu +šum +... +U₂ +BABBAR +x +... +ha +si +sa +šu₂ +DAB +at +ZI₃ +... +x +GEŠTU +šu₂ +aš +gir₂ +... +x +x +ZI₃ +bu +ṭu +tu₂ +LAL +... +x +... +ana +ŠA₃ +GEŠTU +šu₂ +ŠUB +I₃ +GIŠ +ina +KA +ka +ana +ŠA₃ +GEŠTU +šu₂ +... +sar +tum +x +... +DUB +ak +kam₂ +ma +ša +AŠGAB +... +U₂ +BABBAR +x +x +ana +ŠA₃ +GEŠTU +šu₂ +MU₂ +ah +DIŠ +NA +GEŠTU +MIN +šu₂ +DUGUD +1 +GIN₂ +A +giš +NU +UR₂ +MA +1 +GIN₂ +A +šim +GIG +ina +sig₂ +AKA₃ +SUD +ana +ŠA₃ +GEŠTU +šu₂ +GAR +3 +u₄ +me +an +na +a +DU₃ +DU₃ +uš +ina +UD +4 +KAM₂ +: +2 +me +ŠA₃ +GEŠTU +MIN +šu₂ +ta +kap +par₂ +IM +SAHAR +NA₄ +KUR +RA +SUD₂ +ina +gi +SAG +KUD +ana +ŠA₃ +GEŠTU +MIN +šu₂ +MU₂ +ah +giš +šu +ru +uš +giš +NAM +TAR +NITA₂ +... +x +x +... +x +šu₂ +ŠU +TI +SIG₇ +su +SUD₂ +A +šu₂ +x +... +neš +mu +šu₂ +BAD +te +šim +HAB +I₃ +ŠAH +KA +A +AB +BA +... +munus +AŠ₂ +GAR₃ +GIŠ₃ +NU +ZU +tur +ar₂ +SUD₂ +... +ana +ŠA₃ +GEŠTU +MIN +šu₂ +ŠUB +SUM +SIKIL +PA +giš +PEŠ₃ +... +ki +ma +an +nam +i +te +ep +šu +ZAG +HI +LI +NINDA +ZIZ₂ +AN +NA +... +ina +KAŠ +NAG +ma +tug₂ +BAR +SI +x +... +tug₂ +DUL +šu₂ +x +DUB +... +UD +3 +KAM₂ +SAR +SAR +ma +TI +... +ana +ŠA₃ +GEŠTU +MIN +šu₂ +ŠUB +di +... +ana +ŠA₃ +GEŠTU +MIN +šu₂ +ŠUB +di +... +ana +ŠA₃ +GEŠTU +MIN +šu₂ +ŠUB +di +... +HI +HI +ana +ŠA₃ +GEŠTU +MIN +šu₂ +tu +na +tak +... +x +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +... +ana +ŠA₃ +GEŠTU +MIN +šu₂ +tu +na +tak +... +ana +ŠA₃ +GEŠTU +MIN +šu₂ +ŠUB +... +x +x +DIŠ +NA +ZU₂ +MEŠ +šu₂ +GIG +MUŠ +DIM₂ +GURUN +NA +ša₂ +EDIN +NA +U₅ +MEŠ +... +BABBAR +ša₂ +ŠA₃ +šu₂ +sig₂ +AKA₃ +NIGIN +mi +I₃ +x +... +SUHUŠ +giš +NAM +TAR +NITA₂ +SUHUŠ +u₂ +KUR +RA +... +U₂ +BABBAR +ILLU +šim +BULUH +A +GEŠTIN +NA +... +u₂ +pu +un +tu₂ +ina +UGU +ZU₂ +šu₂ +GAR +... +x +... +IM +SAHAR +NA₄ +KUR +RA +giš +x +x +... +šim +BULUH +ZU₂ +LUM +MA +... +PA +u₂ +SIKIL +x +... +u₂ +hi +nu +... +IM +SAHAR +NA₄ +KUR +RA +... +x +... +x +... +... +x +... +... +... +... +... +... +... +... +x +x +šu₂ +... +šu +ru +uš +giš +x +... +x +KUM₂ +ik +kaṣ₃ +ṣi +... +ana +KIMIN +tu +maš +šad +ša₂ +ʾ +... +ana +KIMIN +ZI₃ +SAHAR +MUNU₆ +... +DUB +raq +... +DIŠ +NA +ZU₂ +šu₂ +GU₇ +... +ana +KIMIN +BIL +ZA +ZA +SIG₇ +ZI₂ +su +... +ana +KIMIN +BIL +ZA +ZA +SIG₇ +ZI₂ +su +... +ana +KIMIN +šim +x +... +2 +SILA₃ +x +... +x +... +... +GAR +an +... +GAR +an +... +GAR +an +... +x +ina +eš +... +DUB +raq +... +TIN +... +x +ina +ah +... +ina +ah +... +TI +... +TI +... +TI +... +TI +... +LA +... +GABA +... +GAR +an +... +DUB +raq +... +GAR +an +... +DUB +raq +... +TI +... +x +x +... +DIŠ +NA +ZU₂ +šu₂ +... +NIGIN +I₃ +GIŠ +SUD +... +ana +KIMIN +ZI₃ +tur +ar₂ +... +ana +KIMIN +MAŠ₂ +... +ana +KIMIN +x +... +ina +I₃ +... +ana +KIMIN +... +ana +KIMIN +... +ina +ŠU +šu₂ +x +... +x +x +... +ana +KIMIN +sum +SAR +... +i +di +ka +... +iš +tu +na +ah +... +ba +lit +ta₅ +I₃ +... +x +sig₂ +AKA₃ +šu +x +... +ana +KIMIN +MUŠ +DIM₂ +GURUN +NA +ša₂ +EDIN +I₃ +UDU +šu₂ +... +na₄ +KA +GI +NA +... +ina +PAD +šu₂ +x +... +ana +KIMIN +tam +šil +GAZ +si +x +... +x +di +im +a +šar +na₄ +AD +BAR +... +pu +ṣa +bur +ru +mat +ba +lit +ti +ana +UGU +ZU₂ +šu₂ +GAR +an +... +GIM +A +ša +ana +UGU +ZU₂ +šu₂ +ŠUB +x +x +ta +tab +bal +ma +tam +ši +i +EN +TI +NU +MAR +šu₂ +TI +ana +KIMIN +šu +ru +uš +giš +NAM +TAR +NITA₂ +x +na +ad +da +x +A +ša₂ +ana +UGU +ZU₂ +šu₂ +GIG +ŠUB +ana +KIMIN +hu +um +bi +bi +tu₂ +tu +pa +ṣa +sig₂ +AKA₃ +NIGIN +ina +I₃ +SUD +ana +ŠA₃ +GEŠTU +šu₂ +ša₂ +ZU₂ +šu₂ +GIG +ŠUB +ana +KIMIN +u₂ +GAMUN +GE₆ +ta +sak₃ +ana +UGU +ZU₂ +šu₂ +GAR +an +ana +KIMIN +u₂ +KUR +KUR +ta +sak₃ +ana +UGU +ZU₂ +šu₂ +ŠEŠ₂ +EN₂ +d +a +nu +ma +d +a +nu +d +a +nu +pu +hur +AN +e +d +a +nu +pu +hur +KI +ti +KI +tu₄ +ib +ta +ni +tul +ta₅ +KI +tu₄ +ib +ta +ni +bu +ʾ +ša₂ +nu +ša₂ +bu +ʾ +ša₂ +ni +KALAG +an +DAB +su +GIM +UR +MAH +nap +ša₂ +ta₅ +i +ṣa +bat +ki +ma +UR +BAR +RA +i +ṣa +bat +lu +ʾ +a +iṣ +bat +ap +pu +nu +ru +ub +ap +pi +UZU +MUR +ina +bi +rit +ZU₂ +MEŠ +na +da +at +giš +GU +ZA +šu₂ +sak +la +im +ti +ši +a +lak +ta +šu₂ +up +pu +tu₂ +im +ti +ši +re +bit +ERI +šu₂ +me +tu₄ +la +i +sa +ha +ra +iš +tu +KI +ti₃ +d +ku₃ +bu +la +e +ni +qu +UBUR +ša₂ +AMA +šu₂ +bu +ša +a +nu +a +a +GUR +ma +a +na +ṣib +ti +šu₂ +E₂ +GAL +x +x +... +ki +ma +mu +x +... +EN₂ +ul +... +EN₂ +d +... +i +na +ma +har +d +UTU +A +KUG +GA +ŠUB +ŠUB +EN₂ +an +ni +ta +3 +šu₂ +ŠID +nu +... +e +ma +ŠID +u₂ +LAGAB +MUNU₆ +ZU₂ +šu₂ +DIRI +ma +ana +UGU +gul +gul +li +... +gul +gul +lu +GIG +ZU₂ +MU +tab +li +7 +šu₂ +DUG₃ +GA +ma +TI +EN₂ +ši +it +ta +ak +ru +ma +giš +IG +UZU +giš +SAG +KUL +GIR₃ +PAD +DU +iš +tu +a +a +nu +x +x +x +x +GIR₃ +PAD +DU +UGU +ZU₂ +it +ta +bak +KUM₂ +: +UGU +SAG +DU +it +ta +bak +mur +ṣa +man +na +lu +uš +pur +ana +IBILA +ša₂ +KUR +RA +d +AMAR +UTU +li +lap +pi +tu₄ +tul +ta₅ +tul +tu₄ +ki +ma +šik +ke +e +lit +ta +ṣi +ṣer +ra +niš +TU₆ +EN₂ +DU₃ +DU₃ +BI +la +aš₂ +ha +ša₂ +IM +KI +GAR +DU₃ +ana +ŠID +MEŠ +ZU₂ +MEŠ +šu₂ +aš₂ +na +an +tu +rat +ta +KI +ZU₂ +šu₂ +GIG +ti +ZIZ₂ +AN +NA +GI₆ +ti +ret +ti +I₃ +GIŠ +ZU₂ +šu₂ +DIRI +ana +ŠA₃ +la +aš₂ +hi +MU₂ +ah +EN₂ +3 +šu₂ +ŠID +nu +ana +HABRUD +ša₂ +d +UTU +ŠU₂ +A +GAR +an +ina +IM +IN +BUBBU +UŠ₂ +hi +ina +na₄ +KIŠIB +na₄ +ŠUBA +u +na₄ +KA +GI +NA +KA₂ +šu₂ +ta +bar +ram +EN₂ +IBILA +E₂ +MAH +IBILA +E₂ +MAH +IBILA +GAL +u +ša₂ +d +50 +at +ta +ma +TA +E₂ +KUR +tu +ri +dam +ma +ina +MURUB₄ +AN +e +KI +mul +MAR +GID₂ +DA +GUB +az +ma +DUG₄ +GA +ka +li +ik +kal +an +ni +li +is +ku +ta +at +ta +ma +x +ina +... +x +ma +uzu +UR₅ +UŠ₂ +uzu +UR₅ +NU +NAG +GU₇ +TU₆ +EN₂ +DU₃ +DU₃ +BI +la +aš₂ +ha +DU₃ +uš +ana +ŠID +MEŠ +ZU₂ +MEŠ +šu₂ +ZIZ₂ +AN +NA +tu +rat +ta +KI +ZU₂ +šu₂ +GIG +ti +aš₂ +na +an +GI₆ +te +ret +ti +LAL₃ +u +I₃ +BARA₂ +GA +ZU₂ +šu₂ +DIRI +ana +ŠA₃ +la +aš +hi +MU₂ +ah +EN₂ +3 +šu₂ +ŠID +ana +HABRUD +d +UTU +ŠU₂ +A +GAR +an +... +... +x +x +x +... +ru +... +tak +ku +... +mi +na +... +MAN +TAG +x +... +TA +NUMUN +x +... +a +na +ŠA₃ +ZU₂ +šu₂ +... +lup +pu +ut +ZU₂ +šu₂ +... +pa +šu₂ +an +na +x +... +na +ah +pi +i +: +AN +ŠU₂ +BAR +GIN₇ +kuš +A +EDIN +... +ka +inim +ma +ZU₂ +GIG +... +EN₂ +ZU₂ +GIG +ZU₂ +GIG +... +GIG +ZU₂ +x +... +x +x +... +ka +inim +ma +... +ša₂ +na +... +EN₂ +x +x +x +x +... +giš +x +x +ha +x +... +i +x +iš +hu +kal +... +i +x +iš +la +aš₂ +la +... +ka +inim +ma +ZU₂ +GIG +GA +KAM₂ +... +EN₂ +1 +šu₂ +ana +UGU +šu₂ +ŠID +nu +... +EN₂ +d +UTU +aš +šum +ZU₂ +MU +ša₂ +ik +kal +an +ni +... +ša₂ +ki +is +pa +at +la +ak +si +pu +šu +u₃ +me +e +la +aq +qu +šu₂ +... +ZU₂ +sa +hu +x +ka +a +ša₂ +am +hur +ka +ak +ta +la +šu₂ +u +ak +ta +ab +ba +x +... +GIM +a +ša₂ +šu₂ +ZU₂ +šu₂ +la +GU₇ +šu₂ +a +a +ši +ZU₂ +la +ik +kal +an +ni +TU₆ +EN₂ +ka +inim +ma +ZU₂ +GIG +GA +KAM₂ +... +ina +še +rim +3 +šu₂ +ŠID +nu +... +EN₂ +TA +d +A +nim +ib +nu +u +AN +e +... +eri +du₁₀ +ib +nu +u +gi +x +... +ki +ma +mul +ni +bu +u₂ +x +... +ni +zi +iq +... +ka +inim +ma +ZU₂ +GIG +GA +KAM +... +ku +pa +tin +ni +tu +kap +pat +e +ma +ku +pa +tin +ni +EN₂ +ŠID +nu +... +ana +UGU +ZU₂ +GAR +ma +x +... +ina +eš +EN₂ +d +A +nu +x +... +iš +tu +d +a +nim +ib +nu +... +ul +tu +d +a +nu +ib +nu +u +an +e +an +u₂ +ib +nu +u +KI +tu +er +ṣe +tu +ib +nu +u +ID₂ +MEŠ +ib +na +a +a +tap +pa +ti +... +a +tap +pa +ti +ib +na +a +ru +šum +ta +ru +šum +ta +ib +na +a +tul +ta₅ +il +lik +tul +ta₅ +ana +IGI +d +UTU +i +bak +ki +ana +IGI +d +E₂ +a +il +la +ka +di +ma +ša₂ +mi +na +ta +da +na +ana +a +ka +li +ya +mi +na +a +ta +da +na +ana +mun +zu +qi₂ +ya +at +tan +na +ki +giš +PEŠ₃ +ba +ši +il +ta +ar +ma +na +a +giš +HAŠHUR +ana +ku +am +mi +na +an +na +a +giš +PEŠ₃ +ba +ši +il +ta +u +ar +ma +na +a +giš +HAŠHUR +šu +uq +qa +an +ni +ma +in +bi +rit +ZU₂ +u +la +aš₂ +hi +šu +ši +ban +ni +ša₂ +ši +in +ni +ma +lu +un +zu +qa +da +mi +šu₂ +u +ša₂ +la +aš₂ +hi +ma +lu +uk +su +sa +ku +sa +si +šu₂ +ka +inim +ma +ZU₂ +GIG +GA +KAM₂ +DU₃ +DU₃ +BI +KAŠ +DIDA +LAGAB +MUNU₆ +1 +niš +HI +HI +EN₂ +3 +šu₂ +ana +UGU +ŠID +nu +ana +UGU +ZU₂ +šu₂ +GAR +an +EN₂ +a +ri +ki +x +ni +ba +ri +qi₂ +giš +IG +UZU +giš +SAG +KUL +GIR₃ +PAD +DU +ana +UZU +e +ru +ba +GIR₃ +PAD +DU +iš +ši +iš +šu +uk +UZU +ih +pi +GIR₃ +PAD +DU +a +na +ZU₂ +MEŠ +it +ta +di +LIL₂ +ta +ana +SAG +DU +it +ta +di +KUM₂ +man +nu +lu +uš +pur +a +na +d +asal +lu₂ +hi +DUMU +reš +ti +i +ša₂ +d +E₂ +a +lu +še +bi +lam +ma +šam +me +TI +LA +EN₂ +TI +LA +la +na +a +di +... +TU₆ +ul +ya +at +tu +EN₂ +d +40 +u +d +asal +lu₂ +hi +ši +pat +d +da +mu +u +d +nin +kar +ra +ak +d +gu +la +TI +LA +ma +NIG₂ +BA +ki +li +qi₂ +i +TU₆ +EN₂ +ka +inim +ma +ZU₂ +GIG +GA +KAM₂ +DU₃ +DU₃ +BI +NU +SAR +DIŠ +NA +gi +mer +ZU₂ +MEŠ +šu₂ +i +na +aš₂ +: +DUB +1 +KAM₂ +DIŠ +NA +ZU₂ +MEŠ +šu₂ +GIG +E₂ +GAL +diš +AN +ŠAR₂ +DU₃ +A +20 +ŠU₂ +20 +KUR +AN +ŠAR₂ +ki +ša +d +AG +u +d +taš +me +tu₄ +GEŠTU +MIN +ra +pa +aš₂ +tu₄ +iš +ru +ku +uš +e +hu +uz +zu +IGI +MIN +na +mir +tu₄ +ni +siq +tup +šar +ru +ti +ša +ina +LUGAL +MEŠ +ni +a +lik +mah +ri +ya +mam₂ +ma +šip +ru +šu +a +tu +la +e +hu +uz +zu +bul +ṭi +TA +muh +hi +EN +UMBIN +liq +ti +BAR +MEŠ +ta +hi +zu +nak +la +a +zu +gal +lu +ut +d +nin +urta +u +d +gu +la +ma +la +ba +aš₂ +mu +ina +tup +pa +a +ni +aš₂ +ṭur +as +niq +IGI +KAR₂ +ma +a +na +ta +mar +ti +ši +ta +as +si +ya +qe₂ +reb +E₂ +GAL +ya +u₂ +kin +x +x +x +x +x +x +... +u₂ +IN₆ +UŠ₂ +u₂ +SIKIL +SIG₇ +su +nu +tu +has +sa₃ +ina +x +... +5 +GIN₂ +ILLU +šim +BULUH +5 +GIN₂ +DUH +LAL₃ +ana +dug +BUR +ZI +... +a +šar +tar +ku +su +DU₈ +ar₂ +TA +DU₈ +ru +... +DIŠ +NA +I₃ +la +ta +ki +ŠEŠ₂ +ma +SAG +DU +su +gu +raš +ta₅ +DIRI +... +LUH +tu +bal +EGIR +šu₂ +u₂ +kul₂ +ba +na +HAD₂ +A +GAZ +... +DIŠ +KIMIN +u₂ +IGI +lim +SUD₂ +ina +... +DIŠ +KIMIN +u₂ +LAG +GA₂ +SUD₂ +ina +x +... +DIŠ +KIMIN +u₂ +TAL₂ +TAL₂ +x +x +... +DIŠ +NA +SAG +DU +su +... +UKUŠ₂ +HAB +... +24392 ... +x +x +GE₆ +NIM +SUD₂ +x +... +u₂ +GA +RAŠ +sar +kuš +E +SIR +SUMUN +DIŠ +niš +HAD₂ +A +tur +ar₂ +... +AN +NA +A +BAR₂ +AN +ZAH +DIŠ +niš +HI +HI +1 +šu₂ +2 +šu₂ +3 +šu₂ +... +DIŠ +KIMIN +IM +SAHAR +NA₄ +KUR +RA +u₂ +LAG +GA₂ +SUD₂ +ina +I₃ +giš +EREN +HI +HI +x +... +DIŠ +NA +ina +TUR +šu₂ +SAG +DU +su +še +bi +te +DIRI +ana +SIG₂ +BABBAR +GE₆ +SAG +DU +BURU₅ +HABRUD +DA +mušen +... +IGIRA₂ +mušen +: +laq +laq +qa +lu +u +x +x +x +x +x +... +ina +IZI +ŠEG₆ +šal +gul +gul +la +šu₂ +nu +TI +qe₂ +ina +I₃ +... +EN₂ +sag +ki +en +na +7 +šu₂ +x +x +an +x +x +x +x +... +EN₂ +sag +ki +en +na +ŠID +nu +x +x +x +... +DIŠ +KIMIN +SI +DARA₃ +MAŠ +TI +qe₂ +KI +GIR₃ +PAD +DU +x +x +... +ina +IZI +u₂ +šar₂ +rap +KI +I₃ +x +x +... +3 +UD +mi +SAG +DU +su +LAL₂ +ma +... +DIŠ +KIMIN +u₂ +MA₂ +ERIŠ₄ +MA₂ +le +e +SAG +DU +ARGAB +mušen +... +SAG +DU +BURU₅ +mušen +GE₆ +SAG +DU +BURU₅ +HABRUD +DA +mušen +SAG +DU +... +DIŠ +niš +tur +ar₂ +SUD₂ +ina +I₃ +GIŠ +DU₁₀ +GA +HI +HI +SAG +DU +su +SAR +ab +ma +x +... +DIŠ +KIMIN +a +a +ar₂ +DINGIR +DAB +bat +ŠA₃ +šu₂ +BAD +ti +TUN₂ +šu₂ +x +šu₂ +u +x +x +... +2 +na +ŠA₃ +šu₂ +tu +tar +te +te +kip +ina +KI +ṣar +hi +x +x +x +7 +UD +mi +x +... +ša₂ +ŠA₃ +šu₂ +TI +qe₂ +HAD₂ +A +tur +ar₂ +SUD₂ +ina +I₃ +GIŠ +DU₁₀ +GA +... +SAG +DU +su +SAR +ab +7 +UD +me +EŠ +MEŠ +LAL₂ +MEŠ +... +SIG₂ +BABBAR +GE₆ +EN +LAL₂ +uš +EN₂ +ki +a +am +ŠID +nu +... +DIŠ +NA +IGI +MEŠ +šu₂ +LU₃ +LU₃ +LAL₃ +BABBAR +ina +I₃ +NUN +1 +niš +HE +HE +... +e +nu +ma +IGI +MIN +šu₂ +bu +ur +ṣa +id +da +nag +ga +la +ŠU +GIDIM +MA +... +ana +TI +šu₂ +na₄ +KA +GI +NA +DAB +BA +na₄ +AN +NA +na₄ +AN +ZAH +GE₆ +... +na₄ +mu +ṣa +na₄ +ZALAG₂ +na₄ +ZA +GIN₃ +na₄ +ŠUBA +na₄ +BAL +URUDU +NITA +NA₄ +... +NUMUN +giš +ŠINIG +NUMUN +giš +MA +NU +NUMUN +aš₂ +li +NITA +na₄ +as₂ +har +... +ta +ša +pah +ina +I₃ +UDU +ELLAG₂ +GU₄ +GE₆ +GIN₇ +kam₂ +ma +ina +UGU +URUDU +SUD₂ +ma +... +DIŠ +KIMIN +NUMUN +giš +ŠINIG +NUMUN +giš +MA +NU +NUMUN +aš₂ +li +NUMUN +... +NUMUN +šim +LI +GIN₇ +qu +ta +ri +IGI +MIN +šu₂ +u +SAG +KI +... +DIŠ +NA +ŠU +GIDIM +MA +DAB +su +ma +i +na +IGI +IGI +MIN +šu₂ +GIN₇ +nu +ri +x +... +lu +u +GIN₇ +... +x +x +lu +u +GIN₇ +UD₅ +GAR +GAR +an +NA +BI +ŠU +GIDIM +MA +DAB +su +... +... +šim +LI +šim +GUR₂ +GUR₂ +x +... +... +1 +niš +SUD₂ +x +... +... +ILLU +LI +DUR +... +... +d +ID₂ +... +... +x +... +... +MAR +... +MAR +... +DIRI +... +MAR +... +x +x +x +x +... +ZU₂ +LUM +MA +... +DIŠ +KIMIN +giš +ŠINIG +... +EN₂ +ki +sa +di +x +... +a +da +pa +tu₄ +in +x +... +KA +INIM +MA +IGI +MIN +a +pa +ti +IGI +MEŠ +a +ša +ti +... +DU₃ +DU₃ +BI +7 +ŠE +ILLU +LI +DUR +... +ina +GE₆ +ina +UR₃ +ana +IGI +MUL +x +... +x +... +ina +še +ri₃ +la +am +d +UTU +E₃ +U₂ +HI +A +an +nu +ti +... +x +x +ana +ŠA₃ +ŠUB +di +IGI +MIN +šu₂ +MAR +EGIR +šu₂ +DILIM₂ +A +BAR₂ +ul +DU₈ +ar₂ +IGI +MIN +šu₂ +tu +šam +har +ina +A +GAZI +sar +IGI +MIN +šu₂ +tu +ha +pap +... +te +qi₂ +it +IGI +MIN +ša +ŠU +GIDIM +MA +na₄ +mu +ṣa +NA₄ +... +na₄ +AN +ZAH +BABBAR +na₄ +AN +ZAH +GE₆ +KU₃ +GAN +PA +giš +NAM +TAR +NITA₂ +PA +... +PAP +11 +NA₄ +MEŠ +u +U₂ +HI +A +ŠEŠ +ana +A +ŠUB +di +ina +UL +tuš +bat +... +ana +I₃ +GIŠ +ŠUB +di +IGI +MIN +šu₂ +ŠEŠ₂ +aš +ana +KAŠ +ŠUB +di +ma +NAG +ina +GU₂ +šu₂ +ina +KUŠ +GAR +an +ma +SILIM +im +an +na +nam +ina +ITI +1 +KAM₂ +UD +21 +KAM₂ +DU₃ +ma +i +šal +lim +DIŠ +KIMIN +NA₄ +SA₅ +ki +ma +bu +la +li +IGI +MIN +šu₂ +ŠEŠ₂ +aš +: +DIŠ +KIMIN +na₄ +mu +ṣa +am +KIMIN +DIŠ +KIMIN +na₄ +kut +pa +a +ina +I₃ +NUN +SUD₂ +KIMIN +: +DIŠ +KIMIN +na₄ +ZA +GIN₃ +KUR +RA +ina +I₃ +NUN +SUD₂ +KIMIN +DIŠ +KIMIN +na₄ +MUŠ +GIR₂ +KIMIN +: +DIŠ +KIMIN +šim +bi +zi +da₄ +ina +GA +munus +U₂ +ZUG₂ +SUD₂ +IGI +MIN +šu₂ +ŠEŠ₂ +aš +DIŠ +KIMIN +na₄ +ZU₂ +GE₆ +ina +I₃ +KUR +GI +SUD₂ +KIMIN +šim +GUR₂ +GUR₂ +mi +riq₂ +U₂ +a +ši +i +u₂ +KUR +RA +GAZI +sar +I₃ +UDU +GI +MEŠ +na₄ +KA +GI +NA +DAB +BA +na₄ +mu +ṣa +I₃ +GIŠ +MUŠEN +HABRUD +LIBIR +RA +DUH +LAL₃ +11 +U₂ +HI +A +ŠEŠ +rib +ku +ša +ŠU +GIDIM +MA +IGI +MIN +šu₂ +MAR +MEŠ +ma +TI +... +x +ina +9 +U₄ +KAM +... +UDU +SISKUR +DU₃ +ma +UZU +šu +nu +... +UGU +ša +GIR₃ +PAD +DU +LUGUD₂ +DA +UDU +x +... +GAMUN +GE₆ +A +giš +NU +UR₂ +MA +giš +x +... +1 +niš +HE +HE +ina +LAL₃ +I₃ +NUN +I₃ +GIŠ +EREN +SUD₂ +... +x +... +DIŠ +NA +IGI +MIN +šu₂ +la +ina +ṭa +la +NA +BI +UD +DA +TAB +BA +1 +GIN₂ +U₅ +ARGAB +mušen +1 +2 +GIN₂ +U₂ +BABBAR +IGI +4 +GAL₂ +LA +mun +eme +sal +li₃ +ina +LAL₃ +KUR +u +I₃ +NUN +SUD₂ +IGI +MIN +šu₂ +MAR +DIŠ +NA +di +gi +il +IGI +MIN +šu₂ +ma +a +ṭi +I₃ +UDU +MUŠ +GE₆ +u₂ +IN +NU +UŠ +ZU₂ +LUM +MA +giš +ŠINIG +I₃ +UDU +UR +MAH +ILLU +u₂ +ti +ia₂ +tu +UKUŠ₂ +LAGAB +šim +HAB +NAGA +SI +U₂ +BABBAR +mun +eme +sal +li₃ +u₂ +GAMUN +GE₆ +mal +ma +liš +ina +SAHAR +URUDU +ana +LAL₃ +KUR +RA +HE +HE +SUD₂ +MAR +ZA +NA +te +pu +uš +u₂ +ESI +NAGA +SI +IGI +MIN +šu₂ +LUH +si +EGIR +šu₂ +IGI +MIN +šu₂ +MAR +ma +UD +x +KAM₂ +x +... +x +ŠUB +EN +7 +šu₂ +MAR +EGIR +šu₂ +DILIM₂ +A +BAR₂ +ul +DU₈ +ar₂ +... +šim +LI +NAGA +SI +NU +LUH +HA +sah +le₂ +e +... +ina +... +SILA₁₁ +aš +LAL +... +x +ma +IGI +šu₂ +... +x +x +mun +eme +sal +li₃ +... +x +SUD₂ +... +ka +la +UD +me +X +šu₂ +KEŠDA +u₂ +kal +... +IGI +MIN +šu₂ +MAR +MEŠ +ma +TI +... +ŠU +d +šul +pa +e₃ +a +d +IŠKUR +ra +hi +iṣ +... +ŠU +d +15 +... +ina +NE +GAR +an +... +SUD₂ +MAR +MEŠ +ma +TI +... +x +mi +šum₄ +ma +la +i +na +aṭ +ṭa +la +ŠU +d +iš₈ +tar₂ +... +ina +LAL₃ +u +I₃ +NUN +SUD₂ +IGI +MIN +šu₂ +MAR +MEŠ +ma +TI +DIŠ +NA +ši +li +IGI +MIN +šu₂ +... +x +x +x +x +x +NU +NA₂ +UGU +mi +na +te +ši +na +DUGUD +I₃ +UDU +MUŠ +GE₆ +ina +I₃ +NUN +LAL₃ +KUR +e +HE +HE +te +qi₂ +DIŠ +NA +ši +li +IGI +MIN +šu₂ +šad +du +ma +KI +NA₂ +NU +IL₂ +PA +giš +ŠE +NU₂ +A +PA +giš +PEŠ₃ +PA +giš +MI +PAR₃ +PA +GI +ZU₂ +LUM +MA +ina +A +ina +NININDU +UŠ₂ +ker +ana +ŠA₃ +ŠUB +ŠUB +šu₂ +A +GAR +GAR +MAŠ +DA₃ +ŠURUN +GU₄ +1 +niš +GAZ +SIM +KI +ZI₃ +ŠE +SA +A +HE +HE +ina +A +GAZI +sar +SILA₁₁ +aš +LAL +u₂ +ak +tam +ina +KAŠ +NAG +ma +TI +DIŠ +NA +U₄ +DU₃ +A +BI +NU +IGI +DU₈ +GE₆ +DU₃ +A +BI +IGI +DU₈ +d +30 +lu +ur +ma +a +DIŠ +NA +U₄ +DU₃ +A +BI +IGI +DU₈ +GE₆ +DU₃ +A +BI +NU +IGI +DU₈ +d +30 +lu +ur +ma +a +DIŠ +NA +IGI +MIN +šu₂ +si +lu +ur +ma +a +ma +ku +ut +ga +bi +di +ša +ANŠE +UZU +la +ba +ni +šu₂ +ina +ŠU +SAR +ta +šak +kak +ina +GU₂ +šu₂ +GAR +an +A +GUB₂ +BA +A +GIN +an +ina +še +ri₃ +tug₂ +ŠA₃ +HA +ana +IGI +d +UTU +LAL +aṣ +NIG₂ +NA +šim +LI +GAR +an +LU₂ +šu₂ +a +tu₂ +ina +ku +tal +tug₂ +ŠA₃ +HA +ana +IGI +d +UTU +tuš +za +as +su +MAŠ +MAŠ +7 +NINDA +IL₂ +ši +ša₂ +IGI +MIN +šu₂ +GIG +7 +NINDA +IL₂ +ši +ma +MAŠ +MAŠ +ana +lu₂ +TU +RA +mu +uh +ra +nam +ra +i +ni +i +qab +bi +lu₂ +TU +RA +ana +MAŠ +MAŠ +mu +uh +ra +bal +ṣa +i +ni +i +qab +bi +DIŠ +NA +IGI +MIN +šu₂ +si +lu +ur +ma +a +ma +ku +ut +ga +bi +di +ta +har +ra +aṣ +... +MAŠ +lu₂ +TUR +MEŠ +tu +pa +har +ma +ki +a +am +i +qab +bu +u +... +i +qab +bu +u +I₃ +NUN +u +I₃ +GIŠ +SAG +1 +niš +HE +HE +IGI +MIN +šu₂ +MAR +MEŠ +DU₃ +DU₃ +BI +... +šu +a +tu +ŠU +BI +GIN₇ +NAM +EN₂ +... +še +me +ma +mu +uh₂ +ra +d +E₂ +a +liš +ma +a +d +E₂ +a +lim +hu +ra +... +a +mur +nam +ra +i +ni +a +mur +bal +ṣa +i +ni +TU₆ +EN₂ +DU₃ +DU₃ +BI +... +7 +ŠU +SI +ha +še +e +TI +ma +EN₂ +an +ni +tu₂ +ŠID +nu +... +ina +giš +IG +ina +ŠU +šu₂ +GAR +ma +GU₇ +... +x +PA +ma +ku +ut +ga +bi +di +e +ma +her +ṣi +ta +har +ra +aṣ +... +NUNDUM +šu₂ +u₃ +... +ma +ina +eš +... +x +GI +mi +na +ta +... +x +x +x +... +PA +ŠE +SA +A +... +DILIM₂ +A +BAR₂ +GIN₇ +NIG₂ +SILA₁₁ +GA₂ +GAR +nu +šim +LI +šim +GUR₂ +GUR₂ +U₂ +... +GAZI +sar +NAGA +SI +ZA₃ +HI +LI +U₂ +a +ši +i +PIŠ₁₀ +d +ID₂ +UH₂ +d +ID₂ +ESIR +... +I₃ +UDU +ELLAG₂ +GU₄ +1 +niš +ta +sak₃ +ana +ŠA₃ +A +BAR₂ +ŠUB +ma +ŠU +SI +MAR +te +qi₂ +tu +ša +lim +tu +ša +ŠU +UM +ME +A +la +te +ek +ba +ri +GAZI +sar +ZA₃ +HI +LI +u₂ +KUR +KUR +u₂ +MAŠ +TAB +BA +šim +GUR₂ +GUR₂ +DUH +LAL₃ +U₂ +KUR +RA +I₃ +UDU +šim +GIG +NUMUN +šim +LI +9 +U₂ +HI +A +rib +ku +ša +IGI +MIN +u₂ +KUR +RA +sah +le₂ +e +GAZI +sar +u₂ +NU +LUH +HA +u₂ +KUR +KUR +u₂ +MAŠ +TAB +BA +kam +mu +šim +GUR₂ +GUR₂ +u₂ +HAR +HAR +ina +DE₃ +ŠEG₆ +šal +ina +I₃ +GIŠ +u +DUH +LAL₃ +BABBAR +SUD₂ +9 +U₂ +HI +A +ša +nap +šal +ti +lu +ub +ki +u₂ +KUR +RA +u₂ +KUR +KUR +GAZI +sar +u₂ +MAŠ +TAB +BA +šim +SES +NUMUN +šim +LI +kam +mu +ša₂ +AŠGAB +7 +U₂ +HI +A +rib +ku +ša +IGI +MIN +ina +NE +ta +qal +lu +ina +I₃ +UDU +GAB +LAL₃ +u +I₃ +NUN +SUD₂ +IGI +MIN +šu₂ +MAR +na₄ +AN +ZAH +GE₆ +tuš +ku +na₄ +as +har +na₄ +mu +ṣa +NAGA +SI +šim +GUR₂ +GUR₂ +U₂ +BABBAR +ZA₃ +HI +LI +kam +mu +PIŠ₁₀ +d +ID₂ +I₃ +UDU +GU₄ +A +GAR₅ +DILIM₂ +A +BAR₂ +ŠU +lu₂ +A +ZU +AN +ZAH +GE₆ +PIŠ₁₀ +d +ID₂ +ku +up +ra +... +u₂ +GAMUN +GE₆ +GAZI +sar +ZA₃ +HI +LI +... +I₃ +UDU +GU₄ +I₃ +UDU +GIR₃ +PAD +DU +... +it +qur +ti +IR +... +šim +GUR₂ +GUR₂ +... +DIŠ +x +x +x +x +... +UD +ma +DU₃ +šu₂ +... +u₂ +ak +tam +SUD₂ +ina +KAŠ +ŠEG₆ +x +... +BABBAR +HI +sar +ta +sak₃ +LAL +giš +si +ha +giš +ar +ga +nu +... +I₃ +UDU +ELLAG₂ +SA₅ +ina +UD +DA +ŠUB +i +na +DILIM₂ +A +BAR₂ +SUD₂ +IGI +MIN +šu₂ +MAR +DIŠ +NA +IGI +MIN +šu₂ +GIG +ma +u₃ +DUL +šim +ŠE +LI +... +su +pa +la +SIG₇ +su +ina +A +MEŠ +LUH +si +LAL +id +GURUN +u₂ +UKUŠ₂ +LAGAB +U₂ +BABBAR +SUD₂ +... +IGI +MIN +šu₂ +te +qi₂ +DIŠ +NA +IGI +MIN +šu₂ +GIG +ma +UD +MEŠ +ma +ʾ +du +ti +NU +BAD +ina +KUM₂ +SAG +DU +su +SAR +ab +ina +UD +me +3 +šu₂ +NIG₂ +SILA₁₁ +GA₂ +tu +kaṣ₃ +ṣa +ina +I₃ +NUN +DILIM₂ +A +BAR₂ +ta +sak₃ +IGI +MIN +šu₂ +te +qi₂ +ma +ina +eš +DIŠ +NA +IGI +MIN +šu₂ +ta +bi +la₁₂ +GIG +SUM +SIKIL +la +u₂ +haš +ša₂ +ina +KAŠ +NAG +I₃ +GIŠ +ana +ŠA₃ +IGI +MIN +šu₂ +MAR +ru +ma +... +ZI₃ +NA₄ +ZU₂ +LUM +MA +tur +ar₂ +SUD₂ +ina +A +GAZI +sar +ta +la +aš +tu +kap +pat +la +a +am +pa +tan +u₂ +al +lat +BIL +ZA +ZA +SIG₇ +ta +ṣa +lip +ZI₂ +su +ina +I₃ +NUN +HE +HE +IGI +MIN +šu₂ +te +qi₂ +5 +SILA₄(KISAL) +ZI₃ +GU₂ +GAL +6 +SILA₄(KISAL) +ZI₃ +GAZI +sar +5 +GIN₂ +ZA₃ +HI +LI +ina +A +GAZI +sar +SILA₁₁ +aš +SAG +KI +šu₂ +IGI +MIN +šu₂ +LAL +EN₂ +... +x +x +i +ru +pu +e +gu +ma +... +e +li +A +... +... +... +... +... +DIŠ +NA +IGI +MIN +šu₂ +MUD₂ +DIRI +ma +ur +ra +u +GE₆ +la +i +ṣal +lal +ma +... +šum₄ +ma +ŠA₃ +IGI +MIN +šu₂ +SA₅ +IGI +MIN +šu₂ +DUL +ma +GAZI +sar +tur +ar₂ +... +ŠURUN +UDU +ina +GA +munus +U₂ +ZUG₂ +SILA₁₁ +aš +LAL +id +ina +še +ri₃ +DU₈ +šu₂ +ma +na₄ +as₃ +har +ina +I₃ +NUN +SUD₂ +IGI +MIN +šu₂ +MAR +... +SUHUŠ +U₂ +ra +pa +di +ina +GIR₂ +ZABAR +KUD +iṣ +DUR +sig₂ +HE₂ +MED +u +SIG₂ +BABBAR +NIGIN +mi +tara +kas₃ +SAG +KI +MEŠ +šu₂ +ki +lal₂ +tan +... +... +E₃ +ma +IGI +MIN +šu₂ +te +eq +qi₂ +DIŠ +NA +IGI +MIN +šu₂ +MUD₂ +šu +un +nu +ʾa +NUMUN +giš +NIG₂ +GAN₂ +GAN₂ +LAL₃ +KUR +RA +SAHAR +KU₃ +GI +HE +HE +... +1 +GIN₂ +U₅ +ARGAB +mušen +SA₉ +SILA₄(KISAL) +U₂ +BABBAR +IGI +6 +GAL₂ +LA +mun +eme +sal +li₃ +ina +I₃ +NUN +SUD₂ +IGI +MIN +šu₂ +MAR +U₂ +BABBAR +ta +bi +la₁₂ +ana +ŠA₃ +IGI +MIN +šu₂ +MAR +ru +ŠIM +BI +SIG₇ +SIG₇ +ina +I₃ +NUN +... +ŠE₁₀ +EME +ŠID +ina +I₃ +UDU +GIR₃ +PAD +DU +LUGUD₂ +DA +SUD₂ +la +pa +tan +... +5 +ŠE +U₂ +BABBAR +ina +I₃ +GIŠ +SUD₂ +IGI +MIN +šu₂ +MAR +U₅ +ARGAB +mušen +ina +I₃ +NUN +SUD₂ +IGI +MIN +šu₂ +MAR +DIŠ +NA +IGI +MIN +šu₂ +MUD₂ +DIRI +ŠIM +BI +SIG₇ +SIG₇ +ina +I₃ +NUN +SUD₂ +MAR +: +u₂ +IN +NU +UŠ +u₂ +tar +muš₈ +mal +ma +liš +HE +HE +ina +I₃ +NUN +ni +kip +tu₄ +NITA₂ +u +MUNUS +SUD₂ +IGI +MIN +šu₂ +MAR +... +IGI +MIN +šu₂ +MAR +... +ana +ŠA₃ +IGI +MIN +šu₂ +ta +zar +ri +... +ZA₃ +HI +LI +sar +U₂ +a +ši +i +... +x +ina +um +ma +tu +ina +A +GAZI +sar +LUH +... +ta +bi +la₁₂ +ta +ṭe +ep +pi +DIŠ +NA +... +x +u +I₃ +GIŠ +SUD₂ +te +te +ne₂ +eq +qi₂ +DIŠ +KIMIN +... +x +x +SUD₂ +MAR +MEŠ +DIŠ +KIMIN +... +U₂ +BABBAR +ta +bi +la₁₂ +ana +ŠA₃ +IGI +MIN +šu₂ +MU₂ +ah +DIŠ +NA +IGI +MIN +šu₂ +GIG +... +u₂ +EME +UR +GI₇ +u₂ +IN₆ +UŠ +ina +ZI₃ +KUM +HE +HE +ina +GEŠTIN +NAG +U₂ +BABBAR +... +na₄ +as +har +ina +I₃ +NUN +SUD₂ +te +qi₂ +DIŠ +NA +IGI +MIN +šu₂ +GIG +... +x +šu₂ +pa +na +pa +ni +GAR +an +tara +kas₂ +... +na₄ +as +har +ina +I₃ +NUN +SUD₂ +MAR +DIŠ +NA +IGI +MIN +šu₂ +šik +na +ša₂ +MUD₂ +šak +na +U₂ +BABBAR +U₅ +ARGAB +mušen +mun +eme +sal +li₃ +u₂ +KUR +RA +u₂ +KUR +KUR +šim +GUR₂ +GUR₂ +I₃ +UDU +šim +GIG +7 +U₂ +HI +A +an +nu +ti +1 +niš +ta +mar +raq +ina +ZI₂ +UDU +NITA₂ +... +ina +A +GAZI +sar +ta +sa +pan +IGI +MIN +šu₂ +MAR +3 +GIN₂ +U₅ +ARGAB +mušen +SA₉ +GIN₂ +U₂ +BABBAR +ina +LAL₃ +KUR +RA +SUD₂ +IGI +MIN +šu₂ +MAR +an +nu +u +šam +mi +UD +20 +KAM₂ +EN₂ +ib +da +du +numun +... +ina +ki +i +ri +ba +la +ṭi +ba +la +ṭi +na +ap +ši +ir +ba +la +ṭi₃ +na +ap +ši +ir +ba +ʾ +la +at +ina +it +ti +a +ma +lik +... +MUNUS +NU +U₃ +TU +ak +la₂ +me +ṣa +ma +a +du +TU₆ +EN₂ +KA +INIM +MA +IGI +MIN +šu₂ +MUD₂ +DIRI +MEŠ +DU₃ +DU₃ +BI +SUHUŠ +u₂ +HA +SAHAR +x +u₂ +ZA +GIN₃ +NA +tara +kas₂ +14 +KA +KEŠDA +KEŠDA +e +ma +KEŠDA +EN₂ +ŠID +nu +ina +SAG +KI +šu₂ +tara +kas₂ +EN₂ +hu +ha +hi +la +ba +ma +hu +ha +hi +la +ba +ma +u +A +GA +AŠ₂ +GA +TIL +LA +A +GA +AŠ₂ +GA +TIL +LA +TU₆ +EN₂ +KA +INIM +MA +DIŠ +NA +IGI +MIN +šu₂ +MUD₂ +DIRI +MEŠ +DU₃ +DU₃ +BI +na₄ +as₂ +har +ina +I₃ +NUN +SUD₂ +ana +ŠA₃ +IGI +MIN +šu₂ +ŠUB +EN₂ +igi +ti +la +a +ga +ti +la +geštu +kun₂ +na +a +ga +kun₂ +na +u₂ +hu +ur +sag +gi +na +ta +ša +hi +šur +ra +ta +kuš +ri +in +kuš +ri +in +ni +še +e +ru +še +e +ra +e +kal +da +mu +da +ma +i +na +ṣab +SA +a +nu +SA +a +nu +u₂ +qa +an +na +an +ŠUB +di +d +gu +la +TU₆ +TI +LA +en +qu +ti +ṣi +im +de +ti +li +qer +ri +bu +at +ti +taš +kun +ba +laṭ +bu +ul +ṭi₂ +TU₆ +EN₂ +E₂ +NU +RU +KA +INIM +MA +DIŠ +NA +IGI +MIN +šu₂ +MUD₂ +DIRI +MEŠ +KID₃ +KID₃ +BI +3 +ŠE +NAGA +SI +3 +ŠE +ILLU +LI +TAR +3 +ŠE +ŠE₁₀ +EME +ŠID +1 +niš +SUD₂ +ina +GA +UD₅ +tara +bak +IGI +MIN +šu₂ +LAL +DIŠ +NA +IGI +MIN +šu₂ +GIG +ma +MUD₂ +DIRI +šim +BULUH +HI +A +MUD₂ +ul +ta +ta +ni +ʾa +MUD₂ +ER₂ +ina +ŠA₃ +IGI +MIN +šu₂ +E₃ +a +GISSU +d +LAMA +IGI +MIN +šu₂ +u₂ +na +kap +a +ši +tu +ana +GISSU +GUR +di +gal₉ +DUGUD +šu₂ +giš +ŠINIG +SIG₇ +su +tu +ha +sa +ina +A +GEŠTIN +NA +KALA +GA +tara +muk +ina +UL +tuš +bat +ina +A₂ +GU₂ +ZI +GA +ana +ŠA₃ +hu +li +ia +am +SUR +at +IM +SAHAR +BABBAR +KUR +RA +U₂ +BABBAR +mun +eme +sal +li₃ +I₃ +UDU +tuš +ka +a +u₂ +zi +ba +a +ILLU +URUDU +a +he +nu +u₂ +SUD₂ +mal₂ +ma +liš +TI +qe₂ +1 +niš +tuš +te +mid +ana +ŠA₃ +hu +li +ia +am +ša +ta +aš₂ +hu +tu +DUB +ak +ina +I₃ +NUN +u +na₄ +ŠU +MIN₃ +SILA₁₁ +aš +ma +SAG +IGI +MIN +šu₂ +ina +ŠU +SI +BAD +te +ana +ŠA₃ +IGI +MIN +šu₂ +GAR +an +IGI +MIN +šu₂ +DUL +ma +u₂ +kal +IGI +MIN +šu₂ +ta +kar +ma +UD +9 +KAM +an +na +a +DU₃ +MEŠ +DIŠ +KIMIN +šim +SES +U₂ +BABBAR +mun +eme +sal +li₃ +ina +MUD +ZABAR +ana +ŠA₃ +IGI +MIN +šu₂ +BUN₂ +DIŠ +NA +MIN +ILLU +URUDU +U₂ +BABBAR +SUD₂ +ina +MUD +ZABAR +ana +ŠA₃ +IGI +MIN +šu₂ +BUN₂ +DIŠ +NA +MIN +u₂ +ur₂ +ne₂ +e +U₂ +BABBAR +SUD₂ +ina +MUD +ZABAR +ana +ŠA₃ +IGI +MIN +šu₂ +BUN₂ +EN₂ +igi +bar +igi +bar +bar +igi +bar +ra +bar +bar +igi +huš +igi +huš +huš +igi +bar +ra +huš +huš +igi +bar +na₂ +a +igi +bar +da +a +igi +bar +hul +a +IGI +MIN +a +ba +tu +IGI +MIN +a +ša +tu +... +šu +har +ra +te +IGI +MIN +GIN₇ +nik +si +UDU +NITA₂ +MUD₂ +še +en +a +GIN₇ +A +MEŠ +ša₂ +a +gala +pe +e +a +la +pa +a +ŠUB +a +ki +ma +DUG +A +GEŠTIN +NA +ŠUB +a +ṣil +la +ina +be +ri +ši +na +pi +ti +iq +tu₄ +pat +qat +KU₄ +ub +d +GIR₃ +ina +be +ru +ši +na +it +ta +di +giš +GU +ZA +šu₂ +aš₂ +šum₂ +an +ni +tu +ina +ŠA₃ +an +ni +te +la +na +pa +še +EN₂ +ul +ia +at +tu +un +EN₂ +d +e +a +u +d +asal +lu₂ +hi +EN₂ +d +da +mu +u +d +gu +la +EN₂ +d +nin +girima₃ +be +let +šip +te +d +gu +la +TI +ma +NIG₂ +BA +ki +TI +TU₆ +EN₂ +KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +DU₃ +DU₃ +BI +an +nu +u₂ +ša +SIG₂ +BABBAR +DUR +NU +NU +7 +KA +KEŠDA +KEŠDA +e +ma +KEŠDA +EN₂ +ŠID +nu +ina +IGI +šu₂ +TI +LA +ti +KEŠDA +su +EN₂ +igi +bar +igi +bar +bar +igi +bar +ra +bar +bar +igi +huš +igi +huš +igi +bar +ra +huš +huš +igi +bar +na₂ +a +igi +bar +da +a +igi +bar +hul +a +IGI +MIN +a +ba +a +tu +IGI +MIN +a +ša +tu +IGI +MIN +ša +MUD +DIRI +a +ana +ku +... +x +50 +NA +50 +sa +niq +qa₂ +bu +u₂ +ša₂ +d +gu +la +2 +ma +ši +na +ma +ah +ha +a +tu₄ +ina +be₂ +ru +ši +na +pa +rik +KUR +u₂ +man +na +lu +uš +pur +ana +DUMU +MUNUS +d +a +nim +ša₂ +AN +e +liš +ša₂ +ni +tal +li +ši +na +na₄ +NIR₂ +DUG +MEŠ +ši +na +na₄ +ZA +GIN₃ +eb +bu +li +sa +pa +a +ni +A +MEŠ +A +AB +BA +ta +ma +ti +DAGAL +ti +ša +ha +riš +tu +la +u₂ +ri +du +a +na +lib₃ +bi +mu +suk +ka +tu +la +LUH +u +qa +te +ša₂ +lim +la +ni +im +ma +li +ke +eṣ +ṣa +a +KUM₂ +ṣi +ri +ih +tu +ša₂ +ŠA₃ +IGI +MIN +šu₂ +EN₂ +ul +ia +at +tu +un +EN₂ +d +40 +u +d +asal +lu₂ +hi +EN₂ +d +da +mu +u +d +gu +la +EN₂ +d +nin +girima₃ +be +let +šip +te +d +gu +la +TI +LA +ma +NIG₂ +BA +ki +TI +i +TU₆ +EN₂ +KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +DU₃ +DU₃ +BI +an +nu +u₂ +ša +SIG₂ +SA₅ +DUR +NU +NU +7 +KA +KEŠDA +KEŠDA +e +ma +KEŠDA +EN₂ +ŠID +nu +ina +IGI +šu₂ +GIG +ti₃ +KEŠDA +EN₂ +igi +bar +igi +bar +bar +igi +bar +ra +bar +bar +igi +huš +igi +huš +huš +igi +bar +ra +huš +huš +igi +bar +na₂ +a +igi +bar +da +a +igi +bar +hul +a +IGI +MIN +a +pa +tu +IGI +MIN +a +ša +tu +IGI +MIN +pur +sit₂ +MUD₂ +šu +te +eṣ +li +pa +a +tu +am +min₃ +tab +ba +a +am +min₃ +taš +ša₂ +a +am +mi₃ +ni +ik +kal +ki +na +ši +ba +a +ṣu +ša +na +a +ri +tal +tal +lu +u₂ +ša₂ +giš +GIŠIMMAR +ša₂ +ti +it +tu +ni +iq +qa +ša₂ +ša₂ +a +ri +i +IN +NU +šu +al +si +ki +na +al +ka +ni +ul +al +si +ki +na +ši +ul +ta +la +ka +ni +la +am +it +ba +ki +na +ši +IM +1 +IM +2 +IM +3 +IM +4 +EN₂ +KA +INIM +MA +IGI +GIG +GA +KAM₂ +DU₃ +DU₃ +BI +SIG₂ +SA₅ +SIG₂ +BABBAR +a +he +en +na +a +NU +NU +7 +u +7 +KA +KEŠDA +KEŠDA +e +ma +KEŠDA +EN₂ +ŠID +nu +DUR +SIG₂ +SA₅ +ina +IGI +šu₂ +GIG +ti₃ +KEŠDA +DUR +SIG₂ +BABBAR +ina +IGI +šu₂ +TI +LA +KEŠDA +ma +ina +eš +EN₂ +igi +bar +igi +bar +bar +igi +bar +ra +bar +bar +igi +hul +igi +hul +hul +igi +bar +ra +hul +hul +ši +it +ta +ši +na +DUMU +MUNUS +d +a +ni +ina +be +ru +ši +na +pi +tiq +tu₄ +pat +qat +ul +il +lak +a +ha +tu +a +na +le +et +a +ha +ti +ša₂ +man +na +lu +uš +pur +a +na +DUMU +MUNUS +d +a +ni₃ +ša₂ +AN +e +liš +ša₂ +ni +kan +ni +ši +na +na₄ +NIR₂ +DUG +MEŠ +ši +na +na₄ +ZA +GIN₃ +DURU₅ +eb +bu +li +is +sa +pa +ni +im +ma +li +be +la +a +IGI +MIN +a +ba +ti +IGI +MIN +a +ša₂ +ti +u₃ +dal +ha +a +ti +TU₆ +EN₂ +KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +: +DU₃ +DU₃ +BI +ŠU +BI +GIN₇ +NAM +EN₂ +igi +bar +igi +bar +bar +igi +bar +ra +bar +bar +igi +suh₃ +igi +suh₃ +suh₃ +igi +bar +ra +suh₃ +suh₃ +ši +it +ta +i +nu +a +ha +tu +ši +na +ma +ina +be +ru +ši +na +KUR +u₂ +pa +rik +ma +UGU +nu +ši +na +ki +ṣir +tu +kaṣ₃ +rat +KI +TA +nu +ši +na +pi +tiq +tu₂ +pat +qat +a +a +u₂ +IM +ši +na +a +ma +a +a +u₂ +NU +IM +ši +na +ma +a +a +u₂ +IM +ti +bi +ši +na +a +a +u₂ +la +a +IM +ti +bi +ši +na +ma +ša +ar +pa +ni +i +kil₂ +pa +ni +ṣu +lu +um +pa +ni +at +ta +pu +ṭur +d +AMAR +UTU +TU₆ +EN₂ +KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +: +DU₃ +DU₃ +BI +ŠU +BI +GIN₇ +NAM +EN₂ +igi +bar +igi +bar +bar +x +... +... +x +DU₃ +DU₃ +BI +... +a +he +en +na +a +NU +NU +... +ina +SAG +KI +šu₂ +KEŠDA +su +EN₂ +... +x +IGI +NU +TUK +a +TU₆ +EN₂ +DU₃ +DU₃ +BI +... +ina +SAG +KI +šu₂ +ša₂ +ZAG +EN₂ +... +ta +ma +ad +ra +aš₂ +ta +ma +ad +ra +aš₂ +tu₆ +en₂ +DU₃ +DU₃ +BI +... +ina +SAG +KI +šu₂ +ša₂ +GUB₃ +KA +INIM +MA +IGI +GIG +GA +KAM₂ +DU₃ +DU₃ +BI +ŠU +BI +GIN₇ +NAM +EN₂ +... +gub +ba +a +gub +ba +a +d +AMAR +UTU +ip +pa +lis +su +ma +ana +d +e₂ +a +AD +šu₂ +i +ša₂ +as +si +mi +na +a +e +pu +uš +ul +i +di +ša +ana +ku +i +du +u +at +ta +ti +di +TU₆ +EN₂ +DU₃ +DU₃ +BI +SIG₂ +SA₅ +SIG₂ +BABBAR +1 +niš +NU +NU +7 +u +7 +KA +KEŠDA +KEŠDA +e +ma +KEŠDA +EN₂ +ŠID +nu +ina +SAG +KI +MEŠ +šu₂ +KEŠDA +ma +ina +eš +EN₂ +i +gi +ti +la +a +ga +ti +la +i +gi +kun₂ +na +a +ga +kun₂ +na +: +ur +sag +gi +na +zu +gi +ban₃ +da +zu +tu₆ +en₂ +KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +: +DU₃ +DU₃ +BI +ŠU +BI +GIN₇ +NAM +EN₂ +pa +la +huš +pa +la +huš +pa +la +huš +bi +nig₂ +gi +na +bi +i +gi +pa +la +huš +bi +tu₆ +en₂ +KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +DU₃ +DU₃ +BI +ŠU +BI +AŠ +AM₃ +EN₂ +i +ni +eṭ +li +GIG +at +i +ni +munus +KI +SIKIL +GIG +at +i +ni +GURUŠ +u +munus +KI +SIKIL +man +nu +u₂ +bal +liṭ +ta +šap +par₂ +i +le +qu +ni +ku +ŠA₃ +KU₃ +ti +giš +GIŠIMMAR +ina +pi +i +ka +te +he +pi +ina +ŠU +ka +te +pe +til +GURUŠ +u +KI +SIKIL +ina +SAG +KI +MEŠ +šu₂ +nu +tu +ka +ṣar +IGI +GURUŠ +u +KI +SIKIL +i +bal +lu +uṭ +TU₆ +EN₂ +KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +DU₃ +DU₃ +BI +ŠU +BI +AŠ +BI +AM₃ +en₂ +an +na +im +ri +a +igi +lu₂ +ka +gig +ga +ba +an +gar +ina +ša₂ +me +e +ša₂ +a +ru +i +zi +qam +ma +ina +i +in +LU₂ +si +im +me +iš +ta +kan +an +ta +su₃ +da +ta +im +ri +a +igi +lu₂ +ka +gig +ga +ba +an +gar +: +iš +tu +AN +e +ru +qu +ti +igi +gig +ga +gig +ga +ba +an +gar +... +i +ni +mar +ṣa +a +ti +si +im +ma +iš +ta +kan +lu₂ +bi +igi +bi +lu₃ +lu₃ +a +igi +bi +ba +an +suh₃ +suh₃ +ša₂ +LU₂ +šu +a +tu₂ +i +da +šu₂ +da +al +ha +ša₂ +i +na +šu₂ +a +ša₂ +a +lu₂ +u₁₈ +lu +bi +ni₂ +te +a +ni +še₃ +er₂ +gig +i₃ +šeš₂ +šeš₂ +LU₂ +šu +u₂ +ina +ra +ma +ni +šu₂ +mar +ṣi +iš +i +bak +ki +lu₂ +bi +tu +ra +a +ni +d +engur +ke₄ +igi +im +ma +an +si₃ +ša₂ +LU₂ +šu₂ +a +tu₄ +mu +ru +us +su +d +MIN +i +mur +ma +gazi +sar +kum +ma₃ +šu +u₃ +me +ti +ka +si +i +haš +lu +ti +le +qe₂ +ma +tu₆ +tu₆ +abzu +ta +u₃ +me +ni +si₃ +ši +pat +ap +si +i +i +di +ma +igi +lu₂ +ka +u₃ +me +ni +kešda +i +ni +a +me +li +ru +kus +ma +d +engur +lu₂ +šu +ku₃ +ga +na +igi +lu₂ +ba +ka +šu +tag +ga +ni +ta +d +MIN +ina +ŠU +ša₂ +KU₃ +ti +i +in +a +me +li₃ +ina +la +ba +ti +ša₂ +im +igi +lu₂ +ka +su₃ +su₃ +igi +bi +ta +ba +ra +an +e₃ +ša₂ +a +ru₃ +ša₂ +i +in +a +me +li₃ +ud +du +pu +ina +i +ni +šu₂ +lit +ta +ṣi +KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +EN₂ +i +nu +a +pa +tu₂ +i +nu +a +ša₂ +tu₂ +i +nu +pur +si +in +di +da +a +mi +šu +har +ri +a +tu₄ +KU₃ +GAN +U₅ +ARGAB +mušen +I₃ +UDU +GIR₃ +PAD +DA +LUGUD₂ +DA +ša +UDU +... +SUD₂ +... +ŠIM +BI +KU₃ +GI +SUD₂ +ina +gi +SAG +KUD +ana +ŠA₃ +IGI +MIN +šu₂ +BUN₂ +kun +ša₂₅ +SAG +DU +su +KEŠDA +10 +SILA₄(KISAL) +I₃ +GIŠ +SA₉ +SILA₄(KISAL#) +x +... +ana +SAG +DU +šu₂ +DUB +ak +... +UD +3 +KAM@v +DU₃ +DU₃ +uš +ZA₃ +HI +LI +tur +ar₂ +SUD₂ +... +x +DIŠ +NA +IGI +MIN +šu₂ +GIG +HENBUR₂ +ŠE +AM +SIG₇ +su +NAGA +SI +SUD₂ +ina +A +GAZI +sar +SILA₁₁ +aš +IGI +MIN +šu₂ +LAL +id +na₄ +as₃ +har +na₄ +tu +uš +ka +a +SUD₂ +ina +I₃ +UDU +tu +tah +ha +ah +mal +ma +liš +SUD₂ +ina +I₃ +NUN +HE +HE +IGI +MIN +šu₂ +MAR +DIŠ +NA +IGI +MIN +šu₂ +GIG +10 +SILA₄(KISAL) +I₃ +GIŠ +ana +SAG +KI +MEŠ +šu₂ +ŠUB +MEŠ +šu +uh +ta +ša +AŠGAB +ina +KUŠ +EDIN +te +ser +ina +SAG +KI +MEŠ +šu₂ +LAL +id +ILLU +URUDU +na₄ +aš₂ +har +ŠIM +BI +KU₃ +GI +SUD₂ +ina +I₃ +NUN +HE +HE +IGI +MIN +šu₂ +MAR +MEŠ +ma +TI +DIŠ +NA +IGI +MIN +šu₂ +GIG +ma +u +ha +an +ṭa +SAHAR +URUDU +ša +ŠEN +TUR +ina +I₃ +NUN +SUD₂ +IGI +MIN +šu₂ +MAR +GIR₂ +ZABAR +ina +A +LUH +si +SUM +sar +ta +sak₃ +1 +šu₂ +2 +šu₂ +3 +šu₂ +IGI +MIN +šu₂ +MAR +ZA₃ +HI +LI +ina +šur +šum +me +KAŠ +SILA₁₁ +aš +LAL +... +SAHAR +URUDU +ša +ŠEN +TUR +tur +ar₂ +GAZ +ina +I₃ +NUN +SIG₅ +te +ta +sak₃ +UD +ma +DU₃ +šu₂ +... +IGI +MIN +šu₂ +te +qi₂ +... +ana +ŠA₃ +IGI +MIN +šu₂ +tu +na +tak₂ +u₂ +IN₆ +UŠ₂ +SUD₂ +LAL +... +ba +ri +ra +ta₅ +ina +GA +ta +la₃ +aš +LAL +... +ina +DILIM₂ +A +BAR₂ +SUD₂ +IGI +MIN +šu₂ +MAR +... +šim +ŠE +LI +... +su +pa +la +SIG₇ +su +ina +A +MEŠ +... +UKUŠ₂ +LAGAB +U₂ +BABBAR +x +... +te +qi₂ +... +IGI +MIN +šu₂ +GIG +... +ma +ʾ +du +ti +NU +BAD +ina +KUM₂ +... +SAG +DU +su +SAR +ab +... +NIG₂ +SILA₁₁ +GA₂ +tu +kaṣ₃ +ṣa +... +ina +I₃ +NUN +DILIM₂ +A +BAR₂ +ta +sak₃ +IGI +MIN +šu₂ +te +qi₂ +ma +ina +eš +... +IGI +MIN +šu₂ +ta +bi +la₁₂ +GIG +SUM +SIKIL +la +u₂ +haš +ša₂ +ina +KAŠ +NAG +I₃ +GIŠ +ana +ŠA₃ +IGI +MIN +šu₂ +MAR +ru +ma +... +... +NA₄ +ZU₂ +LUM +MA +tur +ar₂ +SUD₂ +ina +A +GAZI +sar +ta +la +aš +tu +kap +pat +la +a +am +pa +tan +u₂ +al +lat +BIL +ZA +ZA +SIG₇ +ta +ṣa +lip +ZI₂ +su +ina +I₃ +NUN +HE +HE +IGI +MIN +šu₂ +te +qi₂ +... +GU₂ +GAL +6 +SILA₄(KISAL) +ZI₃ +GAZI +sar +5 +GIN₂ +ZA₃ +HI +LI +ina +A +GAZI +sar +SILA₁₁ +aš +SAG +KI +šu₂ +IGI +MIN +šu₂ +LAL +EN₂ +x +x +x +x +x +lal +a +sar +NUMUN +U₂ +x +x +x +e +ru +pu +e +gu +ma +x +x +x +e +li +A +3 +šu₂ +DUG₄ +GA +DIŠ +NA +... +GAZI +sar +sah +le₂ +e +u₂ +MAŠ +TAB +I₃ +UDU +šim +GIG +NUMUN +šim +LI +kam +mu +... +ta +qal₃ +lu +ina +I₃ +NUN +I₃ +UDU +ELLAG₂ +UDU +NITA₂ +GAB +LAL₃ +tuš +tab +bal +IGI +MIN +šu₂ +MAR +DIŠ +NA +IGI +MIN +šu₂ +... +: +IGI +MIN +šu₂ +GIG +U₅ +ARGAB +mušen +ina +I₃ +NUN +SUD₂ +MAR +DIŠ +NA +IGI +MIN +šu₂ +GIG +... +: +DIŠ +NA +IGI +MIN +šu₂ +GIG +sah +le₂ +e +ina +GA +ŠEG₆ +šal +LAL +DIŠ +NA +IGI +MIN +šu₂ +MUD₂ +... +x +ri +šum₄ +ma +ŠA₃ +IGI +MIN +šu₂ +SA₅ +IGI +MIN +šu₂ +DUL +ma +... +munus +U₂ +ZUG₂ +SILA₁₁ +aš +LAL +id +ina +še +ri₃ +DU₈ +šu₂ +ma +... +ina +GIR₂ +ZABAR +KUD +iṣ +DUR +sig₂ +HE₂ +MED +... +DIŠ +NA +IGI +MIN +šu₂ +MUD₂ +šu +un +nu +ʾa +... +1 +GIN₂ +U₅ +ARGAB +mušen +SA₉ +... +U₂ +BABBAR +ta +bi +la₁₂ +ana +ŠA₃ +IGI +MIN +šu₂ +... +ŠE₁₀ +EME +ŠID +ina +I₃ +UDU +GIR₃ +PAD +DU +LUGUD₂ +DA +... +5 +ŠE +U₂ +BABBAR +ina +I₃ +GIŠ +SUD₂ +IGI +MIN +šu₂ +MAR +... +DIŠ +NA +IGI +MIN +šu₂ +MUD₂ +DIRI +... +u₂ +IN₆ +UŠ₂ +u₂ +tar +muš +mal +ma +liš +... +NA₄ +BAL +ina +UH₂ +SUD₂ +MAR +: +šim +bi +zi +da₄ +... +MUD₂ +ša +ŠA₃ +ŠAH +ana +ŠA₃ +IGI +MIN +šu₂ +tu +na +tak +... +3 +GIN₂ +U₅ +ARGAB +mušen +... +EN₂ +ib +da +gub +... +ina +ki +i +ri +ba +la +ṭi +ba +la +ṭi +na +ap +ši +ir +ba +la +ṭi₃ +na +ap +ši +ir +ba +ʾ +la +at +ina +it +ti +... +MUNUS +NU +U₃ +TU +ak +la₂ +me +ṣa +ma +a +du +TU₆ +EN₂ +KA +INIM +MA +IGI +MIN +šu₂ +MUD₂ +DIRI +MEŠ +DU₃ +DU₃ +BI +SUHUŠ +... +14 +KA +KEŠDA +KEŠDA +e +ma +KEŠDA +EN₂ +ŠID +nu +ina +SAG +KI +šu₂ +... +EN₂ +hu +ha +hi +la +ba +ma +hu +ha +hi +la +ba +ma +u +A +GA +AŠ₂ +GA +TIL +LA +A +GA +AŠ₂ +GA +TIL +LA +TU₆ +EN₂ +KA +INIM +MA +DIŠ +NA +IGI +MIN +šu₂ +MUD₂ +DIRI +MEŠ +DU₃ +DU₃ +BI +na₄ +as₂ +har +ina +I₃ +NUN +SUD₂ +ana +ŠA₃ +IGI +MIN +šu₂ +ŠUB +EN₂ +igi +ti +la +a +ga +ti +la +geštu +kun₂ +na +a +ga +kun₂ +na +u₂ +hu +ur +sag +gi +na +ta +ša +hi +šur +ra +ta +kuš +ri +in +kuš +ri +in +ni +še +e +ru +še +e +ra +e +kal +da +mu +da +ma +i +na +ṣab +SA +a +nu +SA +a +nu +u₂ +qa +an +na +an +ŠUB +di +d +gu +la +TU₆ +TI +LA +en +qu +ti +ṣi +im +de +ti +li +qer +ri +bu +at +ti +taš +ku +ni +ba +laṭ +bu +ul +ṭi +TU₆ +EN₂ +E₂ +NU +RU +KA +INIM +MA +DIŠ +NA +IGI +MIN +šu₂ +MUD₂ +DIRI +MEŠ +KID₃ +KID₃ +BI +3 +ŠE +NAGA +SI +3 +ŠE +ILLU +LI +TAR +3 +ŠE +ŠE₁₀ +EME +ŠID +1 +niš +SUD₂ +ina +GA +UD₅ +tara +bak +IGI +MIN +šu₂ +LAL +DIŠ +NA +IGI +MIN +šu₂ +GIG +ma +MUD₂ +DIRI +šim +BULUH +HI +A +MUD₂ +ul +ta +ta +ni +ʾa +MUD₂ +ER₂ +ina +ŠA₃ +IGI +MIN +šu₂ +E₃ +a +GISSU +d +LAMA +IGI +MIN +šu₂ +u₂ +na +kap +a +ši +tu +ana +GISSU +GUR +di +gal₉ +DUGUD +šu₂ +giš +ŠINIG +SIG₇ +su +tu +ha +sa +ina +A +GEŠTIN +NA +KALA +GA +tara +muk +ina +UL +tuš +bat +ina +A₂ +GU₂ +ZI +GA +ana +ŠA₃ +hu +li +ia +am +SUR +at +IM +SAHAR +BABBAR +KUR +RA +U₂ +BABBAR +mun +eme +sal +li₃ +I₃ +UDU +tuš +ka +a +u₂ +zi +ba +a +ILLU +URUDU +a +he +nu +u₂ +SUD₂ +mal₂ +ma +liš +TI +qe₂ +1 +niš +tuš +te +mid +ana +ŠA₃ +hu +li +ia +am +ša +ta +aš₂ +hu +tu +DUB +ak +ina +I₃ +NUN +u +na₄ +ŠU +MIN₃ +SILA₁₁ +aš(NU#) +ma +SAG +IGI +MIN +šu₂ +ina +ŠU +SI +BAD +te +ana +ŠA₃ +IGI +MIN +šu₂ +GAR +an +IGI +MIN +šu₂ +DUL +ma +u₂ +kal +IGI +MIN +šu₂ +ta +kar +ma +UD +9 +KAM₂ +an +na +a +DU₃ +MEŠ +DIŠ +KIMIN +šim +SES +U₂ +BABBAR +mun +eme +sal +li₃ +ina +MUD +ZABAR +ana +ŠA₃ +IGI +MIN +šu₂ +BUN₂ +DIŠ +NA +MIN +ILLU +URUDU +U₂ +BABBAR +SUD₂ +ina +MUD +ZABAR +ana +ŠA₃ +IGI +MIN +šu₂ +BUN₂ +DIŠ +NA +MIN +u₂ +ur₂ +ne₂ +e +U₂ +BABBAR +SUD₂ +ina +MUD +ZABAR +ana +ŠA₃ +IGI +MIN +šu₂ +BUN₂ +EN₂ +igi +bar +igi +bar +bar +igi +bar +ra +bar +bar +igi +huš +igi +huš +huš +igi +bar +ra +huš +huš +igi +bar +na₂ +a +igi +bar +da +a +igi +bar +hul +a +IGI +MIN +a +ba +tu +IGI +MIN +a +ša +tu +... +šu +har +ra +tu₂ +IGI +MIN +GIN₇ +nik +si +UDU +NITA₂ +MUD₂ +še +en +a +GIN₇ +A +MEŠ +ša₂ +a +gala +pe +e +a +la +pa +a +ŠUB +a +ki +ma +DUG +A +GEŠTIN +NA +ŠUB +a +ṣil +la +ina +be +ri +ši +na +pi +ti +iq +tu₄ +pat +qat +KU₄ +ub +d +GIR₃ +ina +be +ru +ši +na +it +ta +di +giš +GU +ZA +šu₂ +aš₂ +šum₂ +an +ni +tu +ina +ŠA₃ +an +ni +te +la +na +pa +še +EN₂ +ul +ia +at +tu₂ +un +EN₂ +d +e +a +u +d +asal +lu₂ +hi +EN₂ +d +da +mu +u +d +gu +la +EN₂ +d +nin +girima₃ +be +let +EN₂ +d +gu +la +TI +LA +ma +NIG₂ +BA +ki +TI +TU₆ +EN₂ +KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +DU₃ +DU₃ +BI +an +nu +u +ša +SIG₂ +BABBAR +DUR +NU +NU +7 +KA +KEŠDA +KEŠDA +e +ma +KEŠDA +EN₂ +ŠID +nu +ina +IGI +šu₂ +TI +LA +ti +KEŠDA +su +EN₂ +... +igi +huš +huš +igi +bar +ra +... +... +IGI +MIN +a +pa +tu₂ +IGI +MIN +a +ša₂ +tu₂ +IGI +MIN +ša +MUD +DIRI +a +ana +ku +... +sa +niq +qa₂ +bu +u₂ +ša₂ +d +gu +la +2 +ma +ši +na +ma +ah +ha +a +tu₄ +ina +be₂ +ru +ši +na +pa +rik +KUR +u₂ +man +na +lu +uš +pur +ana +DUMU +MUNUS +d +a +nim +ša₂ +AN +e +liš +ša₂ +a +ni +tal +li +ši +na +na₄ +NIR₂ +DUG +MEŠ +ši +na +na₄ +ZA +GIN₃ +eb +bu +li +sa +pa +a +ni +A +MEŠ +A +AB +BA +tam +ti₃ +DAGAL +te +ša +ha +riš +tu +la +u₂ +ri +du +ana +lib₃ +bi +mu +suk +ka +tu₂ +la +LUH +u +qa +ti +ša₂ +lis +la +ni +im +ma +li +ke +eṣ +ṣa +a +KUM₂ +ṣi +ri +ih +tu₂ +ša₂ +ŠA₃ +IGI +MIN +šu₂ +EN₂ +ul +ia +at +tu +un +EN₂ +d +40 +u +d +asal +lu₂ +hi +EN₂ +d +da +mu +u +d +gu +la +EN₂ +d +nin +girima₃ +be +let +šip +te +d +gu +la +TI +LA +ma +NIG₂ +BA +ki +TI +i +TU₆ +EN₂ +KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +DU₃ +DU₃ +BI +an +nu +u +ša +SIG₂ +SA₅ +DUR +NU +NU +7 +KA +KEŠDA +KEŠDA +e +ma +KEŠDA +EN₂ +ŠID +nu +ina +IGI +šu₂ +GIG +ti₃ +KEŠDA +EN₂ +igi +bar +igi +... +bar +ra +bar +bar +igi +huš +igi +huš +huš +igi +bar +ra +huš +huš +igi +bar +na₂ +a +... +igi +bar +hul +a +IGI +MIN +a +pa +tu +IGI +MIN +a +ša +tu +IGI +MIN +pur +sit₂ +MUD₂ +šu +te +eṣ +li +pa +a +tu +am +min₃ +tab +ba +a +am +min₃ +taš +ša₂ +a +am +mi₃ +ni +ik +kal +ki +na +ši +ba +a +ṣu +ša +na +a +ri +tal +tal +lu +u₂ +ša₂ +giš +GIŠIMMAR +ša₂ +ti +it +tu +ni +iq +qa +ša +ša₂ +a +ri +i +IN +NU +šu +al +si +ki +na +ši +al +ka +ni +ul +al +si +ki +na +ši +ul +ta +la +ka +ni +la +am +it +ba +ki +na +ši +IM +1 +IM +2 +IM +3 +IM +4 +EN₂ +KA +INIM +MA +IGI +GIG +GA +KAM₂ +DU₃ +DU₃ +BI +SIG₂ +SA₅ +SIG₂ +BABBAR +a +he +en +na +NU +NU +7 +u +7 +KA +KEŠDA +KEŠDA +e +ma +KEŠDA +EN₂ +ŠID +nu +DUR +SIG₂ +SA₅ +ina +IGI +šu₂ +GIG +ti₃ +KEŠDA +DUR +SIG₂ +BABBAR +ina +IGI +šu₂ +TI +LA +KEŠDA +ma +ina +eš +EN₂ +igi +bar +igi +bar +bar +igi +bar +ra +bar +bar +... +hul +hul +igi +bar +ra +... +ši +it +ta +ši +na +DUMU +MUNUS +d +a +ni +ina +be +ru +ši +na +pi +tiq +tu₄ +pat +qat +ul +il +lak +a +ha +tu +a +na +le +et +a +ha +ti +ša₂ +man +na +lu +uš +pur +a +na +DUMU +MUNUS +d +a +ni₃ +ša₂ +AN +e +liš +ša₂ +a +ni +kan +ni +ši +na +na₄ +NIR₂ +DUG +MEŠ +ši +na +na₄ +ZA +GIN₃ +DURU₅ +eb +bu +li +is +sa +pa +ni +im +ma +li +be +la +a +IGI +MIN +a +ba +tu₂ +IGI +MIN +a +ša₂ +ti +u₃ +dal +ha +a +ti +TU₆ +EN₂ +KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +DU₃ +DU₃ +BI +ŠU +BI +GIN₇ +NAM +EN₂ +igi +bar +igi +bar +bar +igi +bar +ra +bar +bar +igi +suh₃ +igi +suh₃ +suh₃ +igi +bar +ra +suh₃ +suh₃ +ši +it +ta +i +nu +a +ha +tu +ši +na +ma +ina +be +ru +ši +na +KUR +u₂ +pa +rik +ma +UGU +nu +ši +na +ki +ṣir +tu +kaṣ₃ +rat +KI +TA +nu +ši +na +pi +tiq +tu₂ +pat +qat +a +a +u₂ +IM +ši +na +a +ma +a +a +u₂ +NU +IM +ši +na +ma +a +a +u₂ +IM +ti +bi +ši +na +a +a +u₂ +la +a +IM +ti +bi +ši +na +ma +KA +INIM +MA +IGI +GIG +GA +KAM₂ +DU₃ +DU₃ +BI +ŠU +BI +GIN₇ +NAM +EN₂ +... +gin₇ +a +a +lal +la +er₂ +gub +ba +a +gub +ba +a +d +AMAR +UTU +ip +pa +lis +su +ma +ana +d +e₂ +a +AD +šu₂ +i +ša₂ +as +si +mi +na +a +e +pu +uš +ul +i +di +ša +ana +ku +i +du +u +at +ta +ti +di +TU₆ +EN₂ +KA +INIM +MA +IGI +GIG +GA +KAM₂ +DU₃ +DU₃ +BI +SIG₂ +SA₅ +SIG₂ +BABBAR +1 +niš +NU +NU +7 +u +7 +KA +KEŠDA +KEŠDA +e +ma +KEŠDA +EN₂ +ŠID +nu +ina +SAG +KI +MEŠ +šu₂ +KEŠDA +ma +ina +eš +EN₂ +i +gi +ti +la +a +ga +ti +la +i +gi +kun₂ +na +a +ga +kun₂ +na +ur +sag +gi +na +zu +gi +ban₃ +da +zu +tu₆ +en₂ +KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +: +DU₃ +DU₃ +BI +ŠU +BI +GIN₇ +NAM +EN₂ +i +ni +GURUŠ +GIG +at +i +ni +munus +KI +SIKIL +GIG +at +i +ni +GURUŠ +u +munus +KI +SIKIL +man +nu +u₂ +bal +liṭ +ta +šap +par₂ +i +le +qu +ni +ku +ŠA₃ +KU₃ +ti +giš +GIŠIMMAR +ina +pi +i +ka +te +he +pi +ina +ŠU +ka +te +pe +til +GURUŠ +u +KI +SIKIL +ina +SAG +KI +MEŠ +šu₂ +nu +tu +ka +ṣar +IGI +GURUŠ +u +KI +SIKIL +i +bal +lu +uṭ +TU₆ +EN₂ +KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +DU₃ +DU₃ +BI +ŠU +BI +AŠ +AM₃ +en₂ +an +na +im +ri +a +igi +lu₂ +ka +gig +ga +ba +an +gar +ina +ša₂ +me +e +ša₂ +a +ru +i +zi +qam +ma +ina +i +in +LU₂ +si +im +me +iš +ta +kan +an +ta +su₃ +da +ta +im +ri +a(MIN?) +igi +lu₂ +ka +gig +ga +ba +an +gar +iš +tu +AN +e +ru +qu +ti +igi +gig +ga +gig +ga +ba +an +gar +: +ana +i +ni +mar +ṣa +a +ti +si +im +me +iš +ta +kan +lu₂ +bi +igi +bi +lu₃ +lu₃ +a +: +ša₂ +LU₂ +šu +a +tu₂ +i +na +šu₂ +da +al +ha +igi +bi +ba +an +suh₃ +suh₃ +: +i +na +šu₂ +a +ša₂ +a +lu₂ +u₁₈ +lu +bi +ni₂ +te +a +ni +še₃ +er₂ +gig +i₃ +šeš₂ +šeš₂ +LU₂ +šu +u₂ +ina +ra +ma +ni +šu₂ +mar +ṣi +iš +i +bak +ki +lu₂ +bi +tu +ra +a +ni +d +engur +ke₄ +igi +im +ma +an +si₃ +: +ša₂ +LU₂ +šu₂ +a +tu₂ +mu +ru +us +su +d +MIN +i +mur +ma +gazi +sar +gaz +ga₂ +šu +u₃ +me +ti +: +ka +si +i +haš +lu +ti +le +qe₂ +ma +tu₆ +tu₆ +abzu +ta +u +me +ni +si₃ +: +ši +pat +ap +si +i +i +di +ma +igi +lu₂ +ka +u₃ +me +ni +kešda +: +i +ni +a +me +li +ru +kus +ma +d +engur +lu₂ +šu +ku₃ +ga +na +igi +lu₂ +ba +ka +šu +tag +ga +ni +ta +d +MIN +ina +ŠU +ša₂ +KU₃ +ti +i +in +a +me +li₃ +ina +la +ba +ti +ša₂ +im +igi +lu₂ +ka +su₃ +su₃ +igi +bi +ta +ba +ra +an +e₃ +ša +a +ru +ša₂ +i +in +a +me +li₃ +ud +du +pu +ina +i +ni +šu₂ +lit +ta +ṣi +KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +EN₂ +i +nu +a +pa +tu₂ +i +nu +a +ša₂ +tu₂ +i +nu +pur +si +in +di +da +a(MIN?) +mi +šu +har +ri +a +tu₄ +ši +na +i +bak +ka +a +ana +IGI +AMA +ši +na +d +ma +mi +a +mi₃ +in +na +ši +ma +it +ti +ni +tar +ku +si +a +ša₂ +a +da +a +ma +u +ša₂ +a +ra +TU₆ +EN₂ +KA +INIM +MA +IGI +GIG +GA +A +KAM₂ +DU₃ +DU₃ +BI +SIG₂ +SA₅ +SIG₂ +BABBAR +a +he +en +na +a +NU +NU +ina +MURUB₄ +šu₂ +nu +lip₂ +pa +tal₂ +pap +SIG₂ +SA₅ +ina +IGI +šu₂ +GIG +SIG₂ +BABBAR +ina +IGI +šu₂ +TI +KEŠDA +ma +ina +eš +EN₂ +še +la₂ +še +la₂ +hu +tu +ul +hu +tu +ul +igi +lal +hu +tu +ul +min +igi +lal +bi +hu +tu +ul +min +ša +at +ti +pa +na +ŠE +GA +ša +at +ti +pa +na +ŠE +GA +i +ṭab₃ +ŠE +GA +MIN +TU₆ +EN₂ +KA +INIM +MA +DIŠ +NA +IGI +MIN +šu₂ +LU₃ +LU₃ +DU₃ +DU₃ +BI +bir +ki +UDU +TI +qe₂ +x +x +u +DUR +NU +NU +ana +2 +šu₂ +te +eṣ +ṣi +ip +x +x +x +7 +u +7 +KA +KEŠDA +KEŠDA +e +ma +KEŠDA +EN₂ +ŠID +nu +ina +SAG +KI +šu₂ +KEŠDA +ma +ina +eš +EN₂ +at +ti +na +... +pur +si +mi +it +MUD₂ +šu +har +ra +tu₂ +am +mi +ni +ta +aš +ša +ni +ha +ma +ha +an +da +bi +lu +šu +ur +šu +ra +e +lap +pa +a +ša +ID₂ +ina +SILA +MEŠ +kir +ba +ni +ina +tub +kin₂ +na +a +te +hu +ṣa +a +ba +am +mi +ni +taš +ša +ni +zu +un +na +ni +GIN₇ +MUL +mi +ta +qu +ta +ni +GIN₇ +nab +li +la +am +ik +šu +du +ki +na +ši +ṣur +ru +nag +la +bu +ša₂ +d +gu +la +EN₂ +NU +DU₈ +EN₂ +d +asal +lu₂ +hi +d +AMAR +UTU +EN₂ +d +nin +gi +rim +ma +EN +EN₂ +u +d +gu +la +EN +A +ZU +ti +i +di +ma +ana +ku +aš₂ +ši +TU₆ +EN₂ +KA +INIM +MA +ha +a +mu +hu +ṣa +ba +u +mim₃ +ma +ša +IGI +MIN +šu +li +i +EN₂ +ina +šur +ri +i +la +am +ba +ša +mu +a +la +lu +ur +da +ana +ma +ti +it +tu +u₂ +še +er +a +U₃ +TU +še +er +hu +hab +bur +ra +hab +bur +ra +ka +an +na +ka +an +nu +ki +iṣ +ra +ki +iṣ +ru +šu +bu +ul +ta +šu +bul +tu +me₂ +er +a +d +UTU +e +ṣi +id +d +30 +u₂ +pa +har +d +UTU +ina +e +ṣe +di +šu₂ +d +30 +ina +pu +hu +ri +šu₂ +ana +IGI +GURUŠ +me +er +hu +KU₄ +ub +d +UTU +u +d +30 +i +ši +za +nim +ma +me₂ +er +hu +li +la +a +ša₂ +ŠA₃ +šu₂ +un +KA +INIM +MA +me₂ +er +hu +ša +ŠA₃ +IGI +MIN +šu +li +i +DIŠ +NA +IGI +MIN +šu₂ +mur +din +ni +DIRI +sah +le₂ +e +ZI₃ +ŠE +SA +A +ina +KAŠ +tara +bak +LAL +id +x +x +x +x +x +ana +x +x +x +x +x +MEŠ +x +x +x +x +x +x +x +x +x +x +x +x +x +DU₈ +U₃ +KAM₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +u₂ +SIKIL +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +u₂ +NU +LUH +HA +BAR +mi +ki +i +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +PIŠ₁₀ +d +ID₂ +na₄ +mu +ṣa +x +x +x +x +x +x +x +na₄ +AN +ZAH +GE₆ +na₄ +ZALAG₂ +NA₄ +AN +BAR +na₄ +KA +GI +NA +DAB +BA +x +x +x +x +ŠA₃ +ŠUB +di +EN₂ +7 +šu₂ +ŠID +nu +ma +SAG +KI +MEŠ +šu₂ +x +x +hu +up +pat +IGI +MIN +šu₂ +ŠEŠ₂ +MEŠ +ma +SILIM +im +ina +ah +x +x +x +DAB +su +ma +SAG +KI +DAB +BA +TUKU +TUKU +ši +NA₄ +KUG +BABBAR +NA₄ +KUG +SIG₁₇ +na₄ +GUG +x +x +x +na₄ +MUŠ +GIR₂ +na₄ +SAG +DU +na₄ +NIR₂ +na₄ +BABBAR +DILI +na₄ +ZALAG₂ +na₄ +mu +ṣa +na₄ +AN +ZAH +na₄ +ŠUBA +na₄ +ZU₂ +GE₆ +na₄ +ŠU +U +NITA₂ +u +MUNUS +na₄ +SAG +GIL +MUD +na₄ +SAG +KI +NA₄ +AN +BAR +na₄ +PA +ša₂ +7 +GUN₃ +MEŠ +ša₂ +na₄ +ia₂ +ni +bu +na₄ +ka +pa +ṣu +NA₄ +DU₃ +A +BI +an +nu +ti +ina +SIG₂ +munus +AŠ₂ +GAR₃ +GIŠ₃ +NU +ZU +SA +MAŠ +DA₃ +u₂ +NINNI₅ +NITA₂ +NU +NU +E₃ +ak +u₂ +tar +muš +u₂ +IGI +lim +u₂ +IGI +NIŠ +giš +MA +NU +u₂ +DILI +u₂ +ap₂ +ru +ša₂ +u₂ +ak +tam +u₂ +el +kul +la +u₂ +KUR +KUR +x +x +x +lu +u₂ +x +x +u₂ +HAR +LUM +BA +ŠIR +u₂ +IN₆ +UŠ₂ +NUMUN +giš +ŠINIG +U₂ +DU₃ +A +BI +an +nu +ti +e +ma +KEŠDA +ina +sig₂ +HE₂ +ME +DA +NIGIN +mi +EN₂ +SAG +KI +MU +UN +DAB +ŠID +nu +ma +ina +SAG +KI +šu₂ +KEŠDA +su +na₄ +aš +pu +u₂ +ša₂ +UD +SAKAR +kul +lu +mu +na₄ +MUŠ +GIR₂ +na₄ +SAG +GIL +MUD +NA₄ +AN +BAR +ŠUB +AN +na₄ +SAG +DU +na₄ +SAG +KI +na₄ +ŠIM +BI +ZI +DA +na₄ +lu +lu +da +ni +tu₂ +na₄ +ŠUBA +SIG₇ +na₄ +ZA +GIN₃ +na₄ +GUG +NA₄ +BAL +SA₅ +NA₄ +BAL +GE₆ +NA₄ +BAL +SIG₇ +na₄ +ar₂ +zal +la +NA₄ +MUŠ +SA₅ +na₄ +DUR₂ +MI +NA +na₄ +DUR₂ +MI +NA +BAN₃ +DA +na₄ +GI +RIM +HI +LI +BA +NA₄ +giš +MES +na₄ +ŠURUN +d +GUD +na₄ +KA +GI +NA +DAB +BA +na₄ +BABBAR +DILI +na₄ +BABBAR +MIN₅ +NA₄ +DU₃ +A +BI +GAZ +SUD₂ +it +ti +nap +šal +ti +u +ṣi +in +di +ša +SAG +KI +DAB +HI +HI +SAG +KI +MEŠ +šu₂ +ŠEŠ₂ +MEŠ +LAL +id +NA₄ +DU₃ +A +BI +an +nu +ti +KUG +SIG₁₇ +tu +haz +ina +SAG +KI +šu₂ +KEŠDA +su +SUHUŠ +giš +DIH₃ +ša₂ +UGU +KI +MAH +SUHUŠ +giš +KIŠI₁₆ +ša₂ +UGU +KI +MAH +SI +GUD +ša +ZAG +SI +MAŠ₂ +ša +GUB₃ +NUMUN +giš +ŠINIG +NUMUN +giš +MA +NU +u₂ +A +ZAL +LA +7 +U₂ +HI +A +ṣi +in +di +ša₂ +ŠU +GIDIM +MA +SAG +KI +MEŠ +šu₂ +LAL +id +šim +LI +šim +GUR₂ +GUR₂ +KA +A +AB +BA +PIŠ₁₀ +d +ID₂ +UH₂ +d +ID₂ +I₃ +UDU +ELLAG₂ +UDU +NITA₂ +DUH +LAL₃ +HI +HI +SAG +KI +MEŠ +šu₂ +LAL +... +x +giš +x +x +x +x +... +32716 x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +GIR₃ +PAD +DU +NAM +LU₂ +U₁₈ +LU +x +x +x +x +x +x +x +x +x +x +x +x +x +UR +GI₇ +GE₆ +SIG₂ +SA +AD +x +x +x +x +x +x +x +x +HI +HI +ina +NE +SAR +šu₂ +ina +KUŠ +x +x +x +x +x +x +x +da +gan +imin +bi +d +utu +nam +tar +nam +tar +ra +x +x +x +nam +ba +luh +u +me +luh +nam +mu +un +da +MIN +bur₂ +ra +nam +mu +un +da +MIN +la₂ +e +: +al +li +ma +da +ma +da +bi +d +en +ki +lugal +abzu +ke₄ +: +d +asal +lu₂ +hi +dumu +eridu +ki +ga +ke₄ +nam +mu +un +da +bur₂ +bur₂ +re +: +zi +an +na +he₂ +pad₃ +zi +ki +a +he₂ +pad₃ +KA +INIM +MA +SAG +KI +DAB +BA +KAM₂ +DU₃ +DU₃ +BI +sig₂ +HE₂ +ME +DA +SIG₂ +BABBAR +SA +MAŠ +DA₃ +u₂ +NINNI₅ +NITA₂ +DIŠ +niš +NU +NU +7 +u +7 +KEŠDA +KEŠDA +u₂ +DILI +KA +A +AB +BA +ni +kip +ta₅ +PIŠ₁₀ +d +ID₂ +UH₂ +d +ID₂ +SUHUŠ +giš +NAM +TAR +NITA₂ +NUMUN +giš +ŠINIG +SI +DARA₃ +MAŠ +gul +gul +NAM +LU₂ +U₁₈ +LU +U₂ +HI +A +an +nu +ti +e +ma +KEŠDA +ina +SIG₂ +SA₅ +NIGIN +mi +EN₂ +7 +šu₂ +ŠID +nu +MUD₂ +giš +EREN +TAG +at +ina +SAG +KI +šu₂ +tara +kas₂ +gul +gul +LU₂ +U₁₈ +LU +tur +ar₂ +SUD₂ +ina +I₃ +ŠEŠ₂ +su +ŠE₁₀ +ŠAH +ME +ZE₂ +ŠAH +GIR₃ +PAD +DA +LUGUD₂ +DA +ŠAH +gul +gul +LU₂ +U₁₈ +LU +NAGA +SI +SI +DARA₃ +MAŠ +u₂ +KUR +RA +u₂ +GAMUN +GE₆ +sah +le₂ +e +DIŠ +niš +GAZ +ina +I₃ +UDU +GUD +LIBIR +RA +HI +HI +ina +NE +SAR +šu₂ +u₂ +an +ki +nu +ti +u₂ +eli +kul +la +KA +tam +ti₃ +ni +kip +ta₅ +NUMUN +u₂ +GUR₅ +UŠ +PIŠ₁₀ +d +ID₂ +na₄ +mu +ṣa +DIŠ +niš +SUD₂ +ina +I₃ +HI +HI +SAG +KI +MIN +šu₂ +KI +TA +UGU +šu₂ +u +MURUB₄ +UGU +šu₂ +ŠEŠ₂ +ma +NA +BI +TI +uṭ +EN₂ +sag +ki +mu +un +ta +gig +dab +ba +sag +ki +mu +un +ta +bi +gig +dab +ba +sag +ki +hul +gig +sa +gig +dab +ba +zi +d +asal +lu₂ +hi +dumu +eridu +ki +ga +ke₄ +zi +pad₃ +da +hun +ga₂ +TU₆ +EN₂ +DU₃ +DU₃ +BI +PA +giš +GIŠIMMAR +ša₂ +im +SI +SA₂ +ša₂ +ina +NU +IM +i +nam +zu +zu +TI +qe₂ +7 +šu₂ +ana +15 +7 +šu₂ +ana +150 +ta +pat +til +7 +u +7 +KEŠDA +KEŠDA +EN₂ +7 +šu₂ +ŠID +nu +ina +SAG +KI +šu₂ +KEŠDA +EN₂ +sag +ki +mu +un +dab +sag +si +sa₂ +mu +un +dab +sag +sahar +ra +mu +un +dab +mu +un +dab +mu +un +dab +dab +a +da +pa +abgal +eridu +ki +ga +ke₄ +sag +ki +mu +un +dab +sag +sahar +ra +mu +un +dab +TU₆ +EN₂ +E₂ +NU +RU +DU₃ +DU₃ +BI +sig₂ +HE₂ +ME +DA +NU +NU +7 +u +7 +KA +KEŠDA +KEŠDA +e +ma +KEŠDA +na₄ +SAG +DU +E₃ +ak +EN₂ +7 +šu₂ +ŠID +nu +ina +SAG +KI +šu₂ +KEŠDA +EN₂ +a +ra +tu +e +a +ra +ba +tu +e +ti +la +x +x +šu +du₃ +du₃ +meš +šu +ne +ne +a +meš +eridu +ki +ga +mu +un +tum₂ +TU₆ +EN₂ +x +x +x +x +giš +GIŠIMMAR +ša₂ +im +SI +SA₂ +ša₂ +ina +NU +IM +i +nam +zu +zu +TI +qe₂ +7 +u +x +x +x +EN₂ +7 +šu₂ +ŠID +nu +ina +SAG +KI +šu₂ +tara +kas₂ +x +x +x +EN₂ +x +x +x +x +x +ri +ba +ak +ti +ti +e +na +x +x +x +hat +ru +um +ma +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ku +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +EN₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +EN₂ +... +33394 ina +UGU +GI +DU₈ +x +x +x +x +x +x +x +x +x +x +x +x +x +GI +a +an +LU₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +3 +šu₂ +tu +šaq +ba +šu₂ +ma +x +x +x +x +x +x +x +x +x +x +x +x +GIR₃ +PAD +DU +LU₂ +kup +ra +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +MUD₂ +giš +EREN +I₃ +SUMUN +BARA₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +EN₂ +sag +ki +mu +un +dab +x +x +x +x +x +x +sag +sahar +ra +mu +un +dab +x +x +x +x +x +x +x +x +x +d +asal +lu₂ +hi +sag +giš +ra +mu +un +dab +mu +un +dab +x +x +x +x +x +x +x +x +x +x +DU₃ +DU₃ +BI +na₄ +ZU₂ +GE₆ +x +x +NITA +u +MUNUS +na₄ +x +x +x +x +na₄ +ŠUBA +SIG₇ +x +x +x +ina +SAG +KI +šu₂ +tara +kas₂ +EN₂ +sag +ki +ni +sag +ki +he₂ +en +gi₄ +gi₄ +i +bi₂ +ni +i +bi₂ +he₂ +en +gi₄ +gi₄ +mu +ru +ub +bi +ni +mu +ru +ub +bi +he₂ +en +gi₄ +gi₄ +he₂ +bi +da +a +na +mul +la +he₂ +en +da +a +x +x +DU₃ +DU₃ +BI +u₂ +aš +lam +NITA₂ +SA +MAŠ +DA₃ +TEŠ₂ +BI +NU +NU +7 +u +7 +KA +KEŠDA +KEŠDA +e +ma +KA +KEŠDA +EN₂ +ŠID +nu +UB +PAD +NITA₂ +u +MUNUS +x +HUL₂ +A +ŠA₃ +DAL +DAL +KI +KA +KEŠDA +ina +sig₂ +HE₂ +ME +DA +NIGIN +mi +ina +SAG +KI +šu₂ +tara +kas₂ +EN₂ +id₂ +da +ta +tir +gal +gal +la +ta +tir +si +dara₃ +maš +mah +mah +mul₄ +mul₄ +giš +geštin +gir₂ +mu +un +kar +re +giš +kiši₁₆ +i₃ +gu₇ +kal +muš +muš +šu +mu₂ +mu₂ +e +de₃ +mul +mul +kur +kur +ra +sikil +e +du₈ +i₃ +ti +la +tu +ra +x +x +du₈ +nam +tag +ga +lu₂ +kar +ra +mu +un +sa₄ +a +zag +du₈ +nig₂ +giš +gag +ti +giš +kiri₆ +x +x +x +udug +hul +he₂ +bad +a +la₂ +hul +he₂ +bad +gidim +hul +he₂ +bad +gal₅ +la₂ +hul +he₂ +bad +dingir +hul +he₂ +bad +maškim₂ +hul +he₂ +bad +d +dim₁₀ +me +he₂ +bad +d +dim₁₀ +me +a +he₂ +bad +d +dim₁₀ +me +lagab +he₂ +bad +zi +an +na +he₂ +pad₃ +zi +ki +a +he₂ +pad₃ +TU₆ +EN₂ +KA +INIM +MA +SAG +KI +DAB +BA +KE₄ +DU₃ +DU₃ +BI +SIG₂ +SA₅ +SIG₂ +BABBAR +DIŠ +niš +NU +NU +na₄ +ZALAG₂ +SI +DARA₃ +MAŠ +NA₄ +ZU₂ +LUM +MA +E₃ +7 +KA +KEŠDA +KEŠDA +e +ma +KEŠDA +EN₂ +ŠID +nu +ina +SAG +KI +MIN +šu₂ +tara +kas₂ +ma +AL +TI +EN₂ +sag +ki +dab +ba +sag +ki +dab +ba +sag +ki +dab +ba +nam +lu₂ +u₁₈ +lu +ke₄ +sag +ki +dab +ba +dingir +re +e +ne +ke₄ +sag +ki +dab +ba +tu +ra +hun +ga₂ +ke₄ +sag +ki +dab +ba +nam +lu₂ +u₁₈ +lu +gar +ra +he₂ +en +hun +ga₂ +TU₆ +EN₂ +EN₂ +sag +si +sa₂ +mu +un +dab +sag +sahar +ra +mu +un +dab +zag +gar +ra +sag +gar +ra +x +x +x +x +tu₆ +tu₆ +gar +ra +he₂ +en +hun +ga₂ +zi +an +he₂ +pad₃ +zi +ki +a +he₂ +pad₃ +TU₆ +EN₂ +2 +KA +INIM +MA +SAG +KI +DAB +BA +KAM +ina +UGU +tak +ṣi +ri +ša₂ +u₂ +LU₂ +U₁₈ +LU +ŠID +nu +EN₂ +sag +ki +mu +ta +bi +gig +dab +ba +sag +ki +hul +dab +ba +sag +gig +hul +dab +ba +zi +d +asal +lu₂ +hi +dumu +eridu +ki +ke₄ +zi +pad₃ +da +hun +ga₂ +TU₆ +EN₂ +KA +INIM +MA +SAG +KI +DAB +BA +KAM +EN₂ +an +ni +ta₅ +ina +UGU +nap +šal +ti +ina +UD +HUL +GAL₂ +e +7 +šu₂ +ŠID +nu +ma +SAG +KI +MIN +šu₂ +MURUB₄ +UGU +hi +šu₂ +KI +TA +UGU +hi +šu₂ +TAG +TAG +ma +ina +ah +18 +KA +INIM +MA +SAG +KI +DAB +BA +KAM +EN₂ +sag +du +huš +sag +du +huš +sag +du +huš +huš +sag +re +eš +sag +du +huš +lugal +d +asar +alim +he₂ +til +lugal +d +en +ki +he₂ +til +lugal +d +asal +lu₂ +hi +he₂ +til +TU₆ +EN₂ +KA +INIM +MA +SAG +KI +DAB +BA +KAM +DU₃ +DU₃ +BI +x +x +x +x +x +x +SIG₂ +BABBAR +NU +NU +7 +u +7 +KA +KEŠDA +KEŠDA +e +ma +KEŠDA +EN₂ +ŠID +nu +ina +SAG +DU +šu₂ +KEŠDA +x +x +x +x +x +x +x +x +x +x +x +munus +aš₂ +gar₃ +giš₃ +nu +zu +šim +me +mu +un +zu +x +x +x +x +x +x +x +x +TU₆ +EN₂ +KA +INIM +MA +SAG +KI +DAB +BA +KAM +34171 x +x +x +x +x +x +x +na₄ +HAR +LUM +BA +ŠIR +SAR +šu₂ +DIŠ +NA +SAG +KI +150 +šu₂ +x +x +x +ina +U₄ +9 +KAM +ša +iti +GU₄ +u₂ +IGI +lim +u₂ +IGI +NIŠ +u₂ +tar +muš +u₂ +eli +kul +la +u₂ +ha +šu +ta₅ +ša₂ +7 +SAG +DU +MEŠ +ša₂ +I₃ +SUMUN +E₂ +d +AMAR +UTU +ina +SA +AB₂ +RI +RI +GA +DU₃ +DU₃ +pi₂ +ina +GU₂ +šu₂ +GAR +an +na₄ +SAG +DU +ina +SAG +KI +šu₂ +KEŠDA +su +EN₂ +in +da +ri +ti +ra +ah +ŠID +nu +DIŠ +NA +GEŠTU +ZAG +šu₂ +TAG +su +IM +DIRI +at +u +MU₂ +MEŠ +U₄ +19 +KAM +: +U₄ +9 +KAM +ša +iti +NE +giš +NU +UR₂ +MA +KU₇ +KU₇ +ša₂ +ina +UGU +GIŠ +ša₂ +zaq +pat +A +MEŠ +ša₂ +ta +še +ṣa +aʾ +I₃ +DUG₃ +GA +ana +ŠA₃ +GEŠTU +šu₂ +ŠUB +I₃ +šim +BAL +ana +SAG +DU +šu₂ +ŠUB +sil₂ +qit +KUM₂ +GU₇ +MEŠ +DIŠ +NA +GEŠTU +GUB₃ +šu₂ +TAG +su +IM +DIRI +at +u +MU₂ +MEŠ +U₄ +15 +KAM +ša +iti +KIN +I₃ +UDU +KUR +GI +mušen +ŠEG₆ +šal +bah₃ +ru +us +su +ana +ŠA₃ +GEŠTU +MIN +šu₂ +ŠUB +UZU +KUR +GI +mušen +ŠEG₆ +šal +GU₇ +I₃ +giš +EREN +ana +SAG +DU +šu₂ +ŠUB +di +hi +ib +ṣa +ina +sah +le₂ +e +GU₇ +DIŠ +NA +KIR₄ +ZAG +šu₂ +TAG +su +ina +U₄ +1 +KAM +ša +iti +SIG₄ +ŠU +SI +GUB₃ +šu₂ +GAL +7 +NE +GAR +an +MUŠ +DIM₂ +GURUN +NA +ša₂ +EDIN +U₅ +MEŠ +ina +UGU +KIR₄ +šu₂ +u₂ +hap +pa +ILLU +šim +BULUH +ana +GEŠTU +GUB₃ +šu₂ +GAR +an +DIŠ +NA +KIR₄ +GUB₃ +šu₂ +TAG +su +ina +U₄ +11 +KAM +ša +iti +ŠU +SUM +sar +ina +UGU +u₂ +haš +ša₂ +tul +ta₅ +ša₂ +ŠA₃ +GI +ina +UGU +KIR₄ +šu₂ +u₂ +hap +pa +ŠU +SI +ZAG +šu₂ +7 +NE +GAR +an +ILLU +šim +BULUH +ana +ŠA₃ +GEŠTU +MIN +šu₂ +GAR +an +nap +ša₂ +la +tu₂ +tak +ṣi +ra +nu +lat +ku +tu₄ +ba +ru +ti +ša₂ +ana +ŠU +šu +ṣu₂ +u₂ +ša₂ +KA +ABGAL +MEŠ +e +la +bi +ru +ti +ša₂ +la +am +A +MA₂ +URU₅ +ša₂ +i +na +šuruppak +ki +MU +2 +KAM +m +d +EN +LIL₂ +ba +ni +LUGAL +uru +i₃ +ši +in +ki +m +d +EN +LIL₂ +mu +bal +liṭ +ABGAL +NIBRU +ki +ez +bu +la +mu +du +u +mu +da +a +li +kal +lim +mu +du +u +la +mu +da +a +la +u₂ +kal +lam +NIG₂ +GIG +d +AMAR +UTU +DIŠ +NA +SAG +DU +su +GIG +MEŠ +mat +qu +ta₅ +TAB +UD +DA +DIRI +DUB +3 +KAM₂ +MA +DIŠ +NA +UGU +šu₂ +KUM₂ +u₂ +kal +E₂ +GAL +m +AN +ŠAR₂ +DU₃ +A +MAN +ŠU₂ +MAN +KUR +AN +ŠAR₂ +ki +ša +d +AG +u +d +taš +me +tu₄ +GEŠTU +MIN +ra +pa +aš₂ +ta₅ +iš +ru +ku +uš +i +hu +uz +zu +IGI +MIN +na +mir +tu₄ +ni +siq +ṭup +šar +ru +ti +DIŠ +NA +UD +DA +KUR +id +ZI +SAG +KI +GIG +x +x +x +x +x +x +x +ru +uš +šu +ša +sip +pi +ABUL +TI +qe₂ +KI +x +x +x +x +x +x +x +DIŠ +NA +MIN +KUM₂ +TUKU +ana +TI +BI +u₂ +ap₂ +ru +šu₂ +ina +I₃ +GIŠ +x +x +x +x +x +x +x +x +ta +sak₃ +ina +KAŠ +ŠEG₆ +šal +ŠEŠ₂ +su +x +x +x +x +x +x +x +DIŠ +NA +MIN +NINDA +u +KAŠ +NU +i +le +em +ana +TI +BI +x +x +x +x +x +x +x +ILLU +a +bu +kat₃ +KUR +i +ta +sak₃ +ina +hi +iq +KAŠ +x +x +x +x +x +x +x +x +x +x +DIŠ +NA +MIN +ku +ṣu₂ +hur +ba +šu₂ +ŠUB +ŠUB +su +x +x +x +x +x +x +x +x +x +x +x +ana +UDUN +lu₂ +se +pi +i +x +x +x +x +x +x +x +x +x +DIŠ +NA +MIN +KUM₂ +TUKU +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ŠEŠ₂ +su +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +NA +MIN +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +34876 ša +ina +LUGAL +MEŠ +ni +a +lik +mah +ri +ia +mam₂ +ma +šip +ru +šu +a +tu +la +e +hu +uz +zu +bul +ṭi +TA +muh +hi +EN +UMBIN +liq +ti +BAR +MEŠ +ta +hi +zu +nak +la +a +zu +gal +lu +ut +d +nin +urta +u +d +gu +la +ma +la +ba +aš₂ +mu +ina +ṭup +pa +a +ni +aš₂ +ṭur +as +niq +IGI +KAR₂ +ma +a +na +ta +mar +ti +ši +ta +si +ia +qe₂ +reb +E₂ +GAL +ia +u₂ +kin +u₂ +HAR +HAR +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ZI₃ +GIG +DIDA +SIG₅ +x +x +x +x +x +x +x +x +x +x +x +x +šim +GUR₂ +GUR₂ +šim +LI +ni +kip +ta₅ +x +x +x +x +x +x +x +x +x +šim +ŠEŠ +ZI₃ +GIG +x +x +x +x +x +x +x +x +x +x +x +x +x +x +šim +GUR₂ +GUR₂ +šim +LI +šim +d +NIN +URTA +DIŠ +niš +GAZ +x +x +x +x +x +ina +KAŠ +ta +la₃ +aš +tu +ba +har +SAG +DU +su +x +x +x +x +x +šim +GUR₂ +GUR₂ +šim +LI +šim +d +NIN +URTA +NUMUN +u₂ +ka +man +ti +x +x +x +x +x +x +DIŠ +niš +GAZ +SIM +ina +KAŠ +tara +bak +SAG +DU +su +x +x +x +x +x +PA +giš +GIŠIMMAR +ša₂ +ina +NU +IM +i +nam +zu +zu +TI +qe₂ +ina +UD +DA +HAD₂ +A +x +x +x +x +x +x +x +x +x +u₂ +ap₂ +ru +ša +SUD₂ +ina +I₃ +HI +HI +ILLU +giš +a +bu +ka +tu₂ +x +x +x +x +EN₂ +A +RA +ŠE +RA +A +RA +BA +ŠE +RA +IZI +BIL +LI +x +x +x +x +7 +šu₂ +u +7 +šu₂ +ana +ŠA₃ +ŠID +nu +SAG +KI +šu₂ +x +x +x +x +u₂ +KUR +KUR +ni +kip +ta +ina +NE +tu +qat +tar +šu₂ +šim +GUR₂ +GUR₂ +ni +kip +ta +x +x +NUMUN +u₂ +AB₂ +DUH +KA +A +AB +BA +šim +ŠEŠ +DIŠ +niš +SUD₂ +ina +IZI +x +x +x +x +x +x +na₄ +mu +ṣu₂ +šim +d +MAŠ +KA +A +AB +BA +UH₂ +d +ID₂ +DIŠ +niš +SUD₂ +ina +sig₂ +HE₂ +ME +DA +NIGIN +I₃ +ŠEŠ₂ +x +x +x +x +KEŠDA +as +ni +kip +ta +x +x +x +x +... +TAG +TAG +... +x +x +x +... +x +x +I₃ +UDU +ELLAG₂ +HI +HI +SAG +KI +šu₂ +TAG +10 +GIN₂ +ZA₃ +HI +LI +sar +10 +GIN₂ +ŠE +SA +A +ina +A +GAZI +sar +tara +bak +LAL +10 +GIN₂ +ZA₃ +HI +LI +sar +10 +GIN₂ +IM +BABBAR +10 +GIN₂ +ZI₃ +ŠE +SA +A +ina +A +GAZI +sar +tara +bak +LAL +TUKUM +BI +LU₂ +U₃ +SAG +KI +DAB +su +ru +ša +am +ša +SUHUŠ +giš +IG +ABUL +ina +a +ṣi +ka +ša₂ +ana +GUB₃ +ka +GUB +zu +ŠU +TI +SIG₂ +munus +AŠ₂ +GAR₃ +GIŠ₃ +NU +ZU +ina +sig₂ +HE₂ +ME +DA +KEŠDA +as₂ +ina +SAG +KI +šu₂ +KEŠDA +ma +NA +BI +TI +TUKUM +BI +LU₂ +U₃ +SAG +KI +DAB +su +PA +giš +GIŠIMMAR +ša +i +nam +zu +zu +TI +qe₂ +HAD₂ +A +GAZ +SIM +ina +KAŠ +SILA₁₁ +aš +SAG +KI +šu₂ +LAL +ma +NA +BI +TI +uṭ +TUKUM +BI +LU₂ +U₃ +SAG +KI +DAB +su +PA +giš +GIŠIMMAR +ša +ina +zu +zu +TI +qe₂ +ina +SAG +KI +šu₂ +tara +kas₂ +ma +NA +BI +TI +uṭ +TUKUM +BI +LU₂ +U₃ +SAG +KI +DAB +su +giš +DIH₃ +ša +ina +zu +zu +ŠU +TI +ina +sig₂ +AKA₃ +NIGIN +ina +sig₂ +HE₂ +ME +DA +tara +kas₂ +ina +SAG +KI +šu₂ +tara +kas₂ +NA +BI +TI +uṭ +TUKUM +BI +LU₂ +U₃ +SAG +KI +DAB +su +sig₂ +HE₂ +ME +DA +MUNUS +ša₂ +MUD +AL +KUD +NU +NU +SA +MAŠ +DA₃ +u₂ +NINNI₅ +NITA₂ +KI +sig₂ +HE₂ +ME +DA +ta +pat +til +na₄ +NIR₂ +na₄ +MUŠ +GIR₂ +na₄ +BABBAR +DILI +na₄ +ZU₂ +GE₆ +KEŠDA +ina +SAG +KI +šu₂ +KEŠDA +NA +BI +TI +uṭ +TUKUM +BI +LU₂ +U₃ +SAG +KI +DAB +su +la +aš +hi +MUŠ +TAB +GIR₂ +TAB +sig₂ +HE₂ +ME +DA +u₂ +aš₂ +lu +NITA₂ +SA +MAŠ +DA₃ +DIŠ +niš +NU +NU +sig₂ +AKA₃ +NIGIN +ina +SAG +KI +šu₂ +tara +kas₂ +ma +NA +BI +TI +uṭ +TUKUM +BI +LU₂ +U₃ +SAG +KI +DAB +su +tug₂ +NIG₂ +DARA₂ +ŠU +LAL₂ +ina +DUR +sig₂ +AKA₃ +NIGIN +mi +ina +SAG +KI +šu₂ +KEŠDA +ma +NA +BI +TI +uṭ +DIŠ +LU₂ +ZI +SAG +KI +TUKU +u₃ +ri +mu +ta₅ +TUKU +PA +giš +ŠE +DU₃ +A +HAD₂ +DU +GAZ +SIM +ZI₃ +ŠE +MUŠ₅ +sah +le₂ +e +ARA₃ +ti₃ +ZI₃ +ŠE +SA +A +DIŠ +niš +SUD₂ +ina +A +GAZI +sar +tara +bak +LAL +LAL +ma +TI +DIŠ +NA +ZI +SAG +KI +TUKU +u₃ +ri +mu +ta₅ +TUKU +PA +giš +šu +nim +HAD₂ +A +GAZ +SIM +ina +ZI₃ +GIG +sah +le₂ +e +x +x +x +ina +A +GEŠTIN +NA +tara +bak +LAL +su +x +x +x +x +x +x +x +x +x +x +x +x +GAZ +SIM +šim +ŠEŠ +x +x +x +x +x +x +x +x +x +tara +bak +LAL +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ZI₃ +GIG +sah +le₂ +e +x +x +x +x +x +x +x +x +x +x +TI +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +GI +gu +ur +GI +ŠUL +HI +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +KI +MAH +GUB +zu +x +x +x +x +x +ŠEŠ₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +tara +bak +LAL +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +u₂ +SU +AN +DAR +ZI₃ +35850 DIŠ +NA +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ZI₃ +ŠE +SA +A +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +NA +SAG +KI +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +giš +KIŠI₁₆ +HAB +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +NA +SAG +KI +GUB₃ +šu₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +u₂ +SU +AN +DAR +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +NA +SAG +KI +MIN +šu₂ +ṣab +ta +šu₂ +ma +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +DUH +ŠE +GIŠ +I₃ +ša₂ +bu +lu +te +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +NA +SA +SAG +KI +ZAG +šu₂ +... +u₂ +SI +SA₂ +ZI₃ +GIG +... +DIŠ +NA +SA +SAG +KI +GUB₃ +šu₂ +... +u₂ +SI +SA₂ +... +DIŠ +NA +SA +SAG +KI +ZAG +šu₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +u₂ +EME +UR +GI₇ +ina +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +NA +SA +SAG +KI +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +NA +SA +SAG +KI +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +sah +le₂ +e +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +NA +x +... +LAL +ma +... +DIŠ +NA +... +DIŠ +... +36186 DIŠ +KIMIN +x +... +ZU₂ +LUM +SA₅ +x +... +DIŠ +NA +SA +SAG +KI +MIN +šu₂ +ZI +... +u₂ +ŠAKIRA +u₂ +EME +UR +GI₇ +u₂ +... +U₂ +BABBAR +lu +ur +pa +na +: +IM +BABBAR +na₄ +NIG₂ +KALAG +GA +na₄ +as +har +... +DIŠ +KIMIN +KU +KU +na₄ +AŠ₂ +GI₄ +GI₄ +... +DIŠ +KIMIN +PA +giš +ŠINIG +SIG₇ +su +... +ana +ŠA₃ +na₄ +PEŠ₄ +tu +x +... +DIŠ +NA +ina +DAB +GIDIM +SAG +KI +šu₂ +... +SA +IGI +MIN +šu₂ +u₂ +zaq +qa +su +... +na₄ +mu +ṣa +na₄ +x +... +NA₄ +AN +BAR +na₄ +... +EN₂ +ur +sag +d +asal +lu₂ +hi +... +DIŠ +NA +SAG +KI +šu₂ +DAB +su +ma +... +DIŠ +niš +SUD₂ +... +x +x +x +x +u₂ +IGI +lim +u₂ +tar +muš +x +x +x +x +x +x +x +x +x +x +SIG₂ +BABBAR +u₂ +NINNI₅ +NITA₂ +NU +NU +EN₂ +x +x +x +x +x +x +x +x +x +A +RI +A +NAM +LU₂ +U₁₈ +LU +SAG +KI +šu₂ +x +x +x +x +x +ni +kip +ta₅ +DIŠ +niš +SUD₂ +ina +I₃ +giš +EREN +HI +HI +ŠEŠ₂ +MEŠ +ma +TI +DIŠ +NA +SAG +KI +DAB +BA +ma +SA +GU₂ +šu₂ +GU₇ +MEŠ +šu₂ +ŠU +GIDIM +MA +giš +si +hu +x +x +x +x +u₂ +ba +ri +ra +ta₅ +GI +ŠUL +HI +GAZ +SIM +ina +A +GAZI +sar +x +x +x +x +DIŠ +NA +SAG +KI +DAB +BA +ma +TA +d +UTU +ŠU₂ +A +EN +EN +NUN +UD +ZAL +LI +GU₇ +šu₂ +x +x +x +DIŠ +NA +SAG +KI +DAB +BA +ma +ŠA₃ +ŠA₃ +bi +GU₃ +GU₃ +si +ŠU +GIDIM +ša₂ +ne₂ +e +x +x +x +x +DIŠ +NA +SAG +KI +DAB +BA +ma +ma +gal +BURU₈ +KI +NA₂ +la +i +na +aš +ši +UŠ₂ +DIŠ +NA +SAG +KI +DAB +BA +ma +ma +gal +x +x +x +SA +SAG +KI +šu₂ +ma +gal +te +bu +u₂ +x +x +x +x +x +x +an +nu +tu₄ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +šum +ma +SAG +KI +DAB +BA +ŠU +GIDIM +MA +ina +SU +NA +il +ta +za +az +ma +NU +DU₈ +DUB +2 +KAM₂ +DIŠ +NA +UGU +šu₂ +KUM₂ +u₂ +kal +E₂ +GAL +m +AN +ŠAR₂ +DU₃ +A +MAN +ŠU₂ +MAN +KUR +AN +ŠAR₂ +ki +ša +d +AG +d +taš +me +tu₄ +GEŠTUG +MIN +DAGAL +tu₂ +iš +ru +ku +šu₂ +e +hu +uz +zu +IGI +MIN +na +mir +tu₄ +ni +siq +ṭup +šar +ru +ti +ša +ina +LUGAL +MEŠ +ni +a +lik +mah +ri +ia +mam₂ +ma +šip +ru +šu₂ +a +tu +la +e +hu +uz +zu +bul +ṭi +TA +muh +hi +a +di +UMBIN +liq +ti +BAR +MEŠ +ta +hi +zu +nak +la +a +zu +gal +lu +ut +d +nin +urta +u +d +gu +la +ma +la +ba +aš₂ +mu +ina +ṭup +pa +a +ni +aš₂ +ṭur +as +niq +IGI +KAR₂ +ma +a +na +ta +mar +ti +ši +ta +si +ia +qe₂ +reb +E₂ +GAL +ia +u₂ +kin +DIŠ +NA +SAG +ŠA₃ +šu₂ +GU₇ +šu₂ +ina +ge +ši +šu +ZE₂ +im +ta +na +ʾa +NA +BI +qer +be₂ +na +GIG +SUM +sar +GA +RAŠ +sar +UZU +GUD +UZU +ŠAH +KAŠ +lu₂ +KURUN₂ +NA +NU +uš +ta +mah +har +ana +TI +šu₂ +1 +2 +SILA₃ +ZA₃ +HI +LI +1 +2 +SILA₃ +šim +LI +1 +2 +SILA₃ +šim +GUR₂ +GUR₂ +1 +2 +SILA₃ +NUMUN +GADA +1 +2 +SILA₃ +pa +pa +si +MUNU₆ +1 +2 +SILA₃ +šim +IM +DI +1 +2 +SILA₃ +NUMUN +u₂ +qut +ra +ti +1 +2 +SILA₃ +GAZI +sar +1 +2 +SILA₃ +giš +ŠE +NU +1 +2 +SILA₃ +GU₂ +NIG₂ +AR₃ +RA +1 +2 +SILA₃ +pa +pa +si +d +ID₂ +1 +2 +SILA₃ +U₂ +a +ši +i +1 +2 +SILA₃ +u₂ +KUR +RA +1 +2 +SILA₃ +ŠE₁₀ +TU +mušen +1 +3 +SILA₃ +NUMUN +u₂ +AB₂ +DUH +1 +3 +SILA₃ +e +reš +ti +A +ŠA₃ +10 +KISAL +ILLU +šim +BULUH +10 +KISAL +KA +A +AB +BA +1 +SILA₃ +ZI₃ +GIG +1 +SILA₃ +ZU₂ +LUM +MA +1 +SILA₃ +DIDA +SIG +1 +SILA₃ +ZI₃ +KUM +TEŠ₂ +BI +GAZ +SIM +ina +KAŠ +GIM +ra +bi +ki +ta +rab +bak +ina +TUG₂ +HI +A +SUR +ri +šu +lu +uš +ti +9 +UD +me +LAL +ina +4 +UD +me +DU₈ +ma +ta +mar +šum₂ +ma +U₃ +BU₂ +BU₂ +UL +BABBAR +ŠA₃ +šu₂ +i +pa +šah +šum₂ +ma +U₃ +BU₂ +BU₂ +UL +SA₅ +ŠA₃ +šu₂ +KUM₂ +u₂ +kal +šum₂ +ma +U₃ +BU₂ +BU₂ +UL +SIG₇ +UD +DA +KUR +id +GUR +GUR +šu +šum₂ +ma +U₃ +BU₂ +BU₂ +UL +GE₆ +u₂ +šam +ra +su +ma +NU +TI +ana +U₃ +BU₂ +BU₂ +UL +bu +le +e +u₂ +LAG +A +ŠA₃ +IM +GU₂ +ša₂ +UD +DA +SA₂ +kat₃ +GAZ +SIM +ina +A +GAZI +sar +ta +la +aš₂ +LAL +id +EGIR +šu₂ +sah +le₂ +e +ina +KAŠ +NAG +UD +ma +NAG +u₂ +ina +A +giš +šu +nu +giš +ŠINIG +u₂ +ak +tam +u₂ +IN₆ +UŠ₂ +ir +ta +na +haṣ +DIŠ +NA +ZE₂ +GIG +SUM +sar +SUD₂ +ina +A +NU +pa +tan +NAG +A +GEŠTIN +NA +KALAG +GA +AL +US₂ +SA +GAZI +sar +kab +ru +ti +NAG +KAŠ +BIR₈ +NAG +tu +ša₂ +ʾ +raš +šu₂ +GAZI +sar +SUD₂ +ina +A +NAG +: +MUN +SUD₂ +ina +A +NU +pa +tan +NAG +: +MUN +SUD₂ +ina +KAŠ +NU +pa +tan +NAG +ILLU +a +bu +kat₃ +GAZ +ana +ŠA₃ +KAŠ₃ +BIR₈ +ŠUB +di +ina +MUL₄ +tuš +bat +ina +še +ri₃ +LAL₃ +I₃ +hal +ṣa +ana +ŠA₃ +ŠUB +NAG +ma +i +ar₂ +ru +NUMUN +GI +ZU₂ +LUM +MA +SUD₂ +ina +KAŠ +NAG +: +u₂ +nam +ruq +qa +SUD₂ +ina +KAŠ +NAG +U₂ +DILI +U₂ +ZE₂ +ina +KAŠ +NAG +U₂ +me +er +gi +ra +nu +U₂ +ZE₂ +ina +KAŠ +NAG +GAZI +sar +U₂ +ZE₂ +ina +KAŠ +NAG +U₂ +šim +LI +U₂ +ZE₂ +ina +KAŠ +NAG +U₂ +NU +LUH +HA +U₂ +ZE₂ +ina +KAŠ +NAG +U₂ +BAR +giš +šu +ši +U₂ +ZE₂ +ina +KAŠ +NAG +PA +u₂ +al +la +nu +U₂ +ZE₂ +ina +KAŠ +NAG +U₂ +U₅ +ARGAB +mušen +U₂ +ZE₂ +ina +KAŠ +NAG +U₂ +LAG +MUN +U₂ +ZE₂ +ina +KAŠ +NAG +U₂ +SUM +sar +U₂ +ZE₂ +ina +KAŠ +NAG +U₂ +SUHUŠ +giš +NAM +TAR +NITA₂ +U₂ +ZE₂ +SUD₂ +ina +KAŠ +NAG +U₂ +SUHUŠ +giš +šu +ši +U₂ +ZE₂ +ina +I₃ +u +KAŠ +NAG +U₂ +ṣi +ba +ru +U₂ +ZE₂ +SUD₂ +ina +A +NAG +DIŠ +NA +NU +pa +tan +ŠA₃ +šu₂ +ana +pa +re +e +e +te +ne₂ +la +a +UH₂ +ma +gal +ŠUB +MEŠ +A +MEŠ +ina +KA +šu₂ +mal +da +riš +DU +ku +pa +nu +šu₂ +iṣ +ṣa +nu +du +ŠA₃ +MEŠ +šu₂ +MU₂ +MU₂ +hu +MURUB₄ +MIN +šu₂ +kim +ṣa +šu₂ +TAG +GA +MEŠ +šu₂ +KUM₂ +ŠED₇ +IR +TUKU +MEŠ +ši +NINDA +u +KAŠ +LAL +A +ŠED₇ +ma +gal +NAG +i +par +ru +ina +DUR₂ +šu₂ +GIŠ₃ +šu₂ +SIG₇ +u₂ +tab +ba +kam +MUŠ₂ +MEŠ +šu₂ +i +te +nin +nu +u +UZU +MEŠ +šu +tab +ku +mim₃ +ma +GU₇ +ma +UGU +šu₂ +ul +DU₁₀ +GA +NA +BI +ZE₂ +sah +pa +su +ana +TI +šu₂ +šim +GUR₂ +GUR₂ +šim +LI +šim +GAM +MA +3 +U₂ +HI +A +ŠEŠ +SIG₇ +su +nu +TI +qe₂ +HAD₂ +A +SUD₂ +ina +GEŠTIN +KALAG +GA +NU +pa +tan +NAG +šu₂ +SI +SA₂ +ma +SAG +ŠA₃ +šu₂ +ŠA₃ +šu₂ +LAL +id +bah +ra +GU₇ +bah +ra +NAG +UD +3 +KAM +tuš +te +še +er +ma +TI +DIŠ +KI +MIN +u₂ +a +ra +ri +a +nu +SUD₂ +ina +KAŠ +NU +pa +tan +NAG +šu₂ +x +x +x +DIŠ +KI +MIN +u₂ +sah +la +a +nu +SUD₂ +ina +GEŠTIN +KALAG +GA +NU +pa +tan +NAG +šu₂ +KI +MIN +DIŠ +KI +MIN +u₂ +ṣi +bu +ru +SUD₂ +ina +GA +KU₇ +KU₇ +NAG +šu₂ +KI +MIN +DIŠ +KI +MIN +HENBUR₂ +u₂ +UKUŠ₂ +HAB +SUD₂ +ina +GEŠTIN +LAL₃ +u +I₃ +hal +ṣi +NAG +šu₂ +KI +MIN +DIŠ +KI +MIN +U₂ +SIG +MEŠ +ša₂ +KUR +e +ina +GEŠTIN +LAL₃ +u +I₃ +hal +ṣi +NAG +šu₂ +KI +MIN +DIŠ +NA +NINDA +GU₇ +KAŠ +NAG +ma +u₂ +nap +paq +u +IGI +MEŠ +šu₂ +NIGIN +MEŠ +du +NA +BI +GIG +ZE₂ +GIG +ana +TI +šu₂ +u₂ +UKUŠ₂ +HAB +BIL₂ +ša₂ +im +SI +SA₂ +ina +A +LUH +si +šim +BULUH +tu +sal +lat +u₂ +NU +LUH +HA +te +be₂ +er +3 +U₂ +HI +A +ŠEŠ +ina +KAŠ +SAG +ki +pi +i +mal +ma +liš +tara +muk +ana +IGI +mul +UZ₃ +GAR +an +GIŠ +HUR +NIGIN +mi +ina +A₂ +GU₂ +ZI +GA +ša +šu₂ +nu +ta +ša₂ +hal +NU +pa +tan +NAG +ma +i +lap +pat +su +ma +is +sal +la +ʾ +la +ta +na +kud +TI +uṭ +ina +UD +ŠE +GA +NAG +šu +x +x +x +x +x +x +x +me +ta +x +x +x +ur₂ +ne₂ +e +šim +BAL +u₂ +KUR +KUR +giš +GEŠTIN +KA₅ +A +x +x +ina +3 +SILA₃ +KAŠ +ina +urudu +ŠEN +TUR +ŠEG₆ +šal +EN +ana +2 +SILA₃ +i +tur +ru +i +kaṣ₃ +ṣa +aṣ +x +x +ana +IGI +ŠUB +di +pa +na +A +GAZI +sar +i +šah +hat +EGIR +šu₂ +an +na +a +ana +DUR₂ +šu₂ +DUB +ak +DIŠ +KI +MIN +u₂ +UKUŠ₂ +HAB +HAD₂ +A +GAZ +SIM +KI +ZI₃ +KUM +HI +HI +ina +A +GAZI +sar +tara +bak +ina +KUŠ +SUR +LAL +DIŠ +NA +ina +ti +bi +šu₂ +SAG +DU +su +ana +IGI +šu₂ +iš +ta +na +da +as +su +GU₂ +su +MURUB₄ +MIN +šu₂ +kim +ṣa +šu₂ +GIR₃ +MIN +šu₂ +GU₇ +MIN +šu₂ +ŠA₃ +šu₂ +ii +ʾ +aš₂ +ŠA₃ +šu₂ +ana +pa +re +e +i +te +ne₂ +el +la +IGI +MEŠ +šu₂ +iṣ +ṣa +nu +du +šu₂ +NA +BI +ZE₂ +DAB +su +ana +TI +šu₂ +giš +EREN +giš +ŠUR +MIN₃ +šim +GIR₂ +GI +DU₁₀ +NAGA +SI +šim +IM +DU +MUN +eme +sal +li₃ +ina +KAŠ +tara +bak +ina +NINDU +UŠ₂ +er +ana +DUR₂ +šu₂ +DUB +ak +u₂ +NU +LUH +HA +šim +LI +NA₄ +ZU₂ +LUM +MA +ina +na₄ +ur +ṣi +DIŠ +niš +ARA₃ +ARA₃ +ina +I₃ +UDU +HI +HI +alla +nu +DU₃ +uš +I₃ +GIŠ +SUD +ana +DUR₂ +šu₂ +GAR +DIŠ +NA +GABA +su +u +ša₂ +šal +la +šu₂ +KUM₂ +MEŠ +ZU₂ +MEŠ +šu₂ +i +hi +la +e +peš +KA +šu₂ +DUGUD +NA +BI +ZE₂ +GIG +ana +TI +šu₂ +šim +GUR₂ +GUR₂ +šim +LI +šim +GAM +MA +MUN +ILLU +LI +TAR +u₂ +KU₆ +U₂ +BABBAR +u₂ +HAB +u₂ +ak +tam +giš +HAB +u₂ +KUR +KUR +U₅ +ARGAB +mušen +12 +U₂ +HI +A +ŠEŠ +DIŠ +niš +ina +KAŠ +ba +lu +pa +tan +NAG +ma +BURU₈ +sah +le₂ +e +u₂ +KUR +RA +kam +mu +ILLU +LI +TAR +šim +BULUH +šim +LI +šim +GUR₂ +GUR₂ +ILLU +šim +BULUH +NUMUN +u₂ +NU +LUH +HA +ZI₃ +u₂ +NU +LUH +HA +u₂ +ur₂ +nu +u +TI +su +nu +ina +KAŠ +NAG +ma +BURU₈ +x +x +x +u₂ +KUR +KUR +u₂ +NU +LUH +HA +u₂ +HAR +HAR +šim +ŠEŠ +ILLU +LI +DUR +KUR +i +UH₂ +d +ID₂ +x +x +U₂ +NAM +TI +LA +u₂ +GAMUN +u₂ +x +x +u₂ +KUR +RA +sah +le₂ +e +GAZI +sar +17 +U₂ +HI +A +ŠEŠ +KI +MIN +ILLU +LI +TAR +U₂ +BABBAR +U₅ +ARGAB +mušen +u₂ +ak +tam +x +x +x +šim +BULUH +x +x +ina +KAŠ +NAG +ma +BURU₈ +u₂ +KUR +KUR +ILLU +LI +TAR +U₂ +BABBAR +... +NAG +ma +BURU₈ +GI +DU₁₀ +GA +šim +MUG +GAZI +sar +U₂ +BABBAR +x +... +ina +IZI +ŠEG₆ +šal +NAG +ma +BURU₈ +u₂ +ur₂ +nu +u +u₂ +SUMUN +DAR +u₂ +šib +bu +ra +tu₂ +x +x +x +u₂ +KUR +RA +šim +IM +MAN +DU +GI +DU₁₀ +GA +an +dah +še +x +x +x +U₂ +HI +A +an +nu +ti +ina +KAŠ +NAG +ma +BURU₈ +GI +DU₁₀ +GA +PA +u₂ +... +šim +BULUH +U₂ +NAM +TI +LA +ZU₂ +LUM +MA +... +ina +MUL₄ +tuš +bat +ina +še +ri₃ +NU +pa +tan +NAG +ma +BURU₈ +... +u₂ +x +x +x +x +ILLU +LI +TAR +7 +U₂ +HI +A +ŠEŠ +ina +KAŠ +NAG +ma +BURU₈ +... +x +u₂ +KUR +KUR +šim +GUR₂ +GUR₂ +NAGA +SI +MUN +u₂ +IGI +lim +u₂ +IGI +niš +u₂ +tar +muš₈ +u₂ +KUR +RA +na₄ +ga +bi +i +u₂ +ak +tam +u₂ +HAR +HAR +14 +U₂ +HI +A +ŠEŠ +DIŠ +niš +SUD₂ +ina +KAŠ +NAG +ma +BURU₈ +... +10 +GIN₂ +u₂ +sah +la +a +nu +10 +GIN₂ +AL +US₂ +SA +10 +GIN₂ +A +GEŠTIN +NA +KALAG +GA +10 +GIN₂ +KAŠ +10 +GIN₂ +ut +hi +ra +... +10 +GIN₂ +u₂ +HAR +HAR +1 +GIN₂ +SUM +sar +1 +2 +GIN₂ +MUN +1 +2 +GIN₂ +GAZI +sar +tuš +te +mid +ina +MUL₄ +tuš +bat +ina +še +ri₃ +... +ina +KA +šu₂ +u +DUR₂ +šu₂ +SI +SA₂ +ma +TI +x +x +x +A +UZU +kab +ru +ti +NAG +ma +ina +eš +DIŠ +NA +lu +ZE₂ +lu +ah +ha +za +lu +a +mur +ri +qa +nu +DAB +su +u₂ +ur₂ +ne₂ +e +u₂ +KUR +KUR +u₂ +GEŠTIN +KA₅ +A +šim +LI +38289 šim +MUG +3 +SILA₃ +KAŠ +ina +ŠEN +TUR +ŠEG₆ +šal +ta +ša₂ +hal +I₃ +GIŠ +ana +IGI +... +u₂ +GIR₂ +a +nu +u₂ +mur +gab +ri +a +nu +u₂ +a +ri +hu +u₂ +... +u₂ +ṣa +ṣu +un +ta₅ +u₂ +si +si +ni +ŠA₃ +bi +u₂ +x +... +u₂ +UKUŠ₂ +HAB +: +u₂ +x +HAB +u₂ +HAB +u₂ +tar +muš₈ +u₂ +NU +LUH +HA +... +HENBUR₂ +u₂ +EME +UR +GI₇ +: +HENBUR₂ +šim +LI +HENBUR₂ +šim +GAM +ME +sah +le₂ +e +... +HENBUR₂ +u₂ +UKUŠ₂ +HAB +u₂ +sah +la +na +SUD₂ +ina +GEŠTIN +... +DIŠ +NA +ZE₂ +qid +ha +lu +ba +ṭa +GIG +ana +TI +šu₂ +šim +... +u₂ +tar +muš +u₂ +IGI +lim +šim +BULUH +u₂ +KUR +RA +ILLU +šim +... +DIŠ +NA +a +ša₂ +a +pa +šit +ta₅ +u +lu +ba +ṭi₅ +GIG +u₂ +... +u₂ +KUR +RA +URUDU +SUMUN +7 +U₂ +HI +A +ŠEŠ +DIŠ +niš +... +DIŠ +NA +ZE₂ +DAB +su +u₂ +KUR +RA +NU +pa +tan +a +he +en +na +a +... +ina +KAŠ +NAG +ma +KAŠ +SAL +LA +NAG +... +ana +a +ša₂ +a +pa +šit +ta₅ +u +lu +ba +ṭi +ZI +hi +U₂ +BABBAR +ILLU +LI +TAR +... +DIŠ +NA +pa +šit +tu₂ +DAB +su +šim +GUR₂ +GUR₂ +u₂ +HAR +HAR +u₂ +KUR +KUR +u₂ +KUR +RA +... +x +ILLU +LI +TAR +u₂ +NU +LUH +HA +kam₂ +mu +ša₂ +lu₂ +AŠGAB +u₂ +LAG +A +ŠA₃ +x +... +ma +BURU₈ +u₂ +HAR +HAR +u₂ +NU +LUH +HA +ILLU +LI +TAR +šim +LI +šim +GUR₂ +GUR₂ +5 +U₂ +HI +A +... +ŠEŠ₂ +u₂ +ak +tam +u₂ +KUR +KUR +NAGA +SI +šim +GUR₂ +GUR₂ +šim +LI +ILLU +LI +TAR +MUN +x +8 +U₂ +ME +NAG +i +ša₂ +riš +IM +DIŠ +NA +SAG +KI +DAB +BA +TUKU +a +ši +a +pa +šit +tu₄ +u +lu +ba +ṭi +GIG +ana +TI +šu₂ +15 +GIN₂ +šim +GUR₂ +GUR₂ +15 +GIN₂ +u₂ +ur₂ +nu +u +15 +GIN₂ +u₂ +KUR +KUR +DIŠ +niš +GAZ +SIM +ina +I₃ +KAŠ +SAG +tu +ša₂ +ha +an +ana +DUR₂ +šu₂ +DUB +ana +ši +bi +NAG +šu₂ +DIŠ +NA +NU +pa +tan +SAG +ŠA₃ +šu₂ +i +kaṣ₃ +ṣa +as +su +KUM₂ +ŠA₃ +TUKU +MEŠ +ina +ge +ši +šu +ZE₂ +i +ar₂ +ru₃ +NA +BI +pa +šit +ta₅ +tu +ga +na +GIG +ana +TI +šu₂ +šim +GUR₂ +GUR₂ +šim +LI +ILLU +LI +TAR +u₂ +ak +tam +u₂ +KUR +KUR +MUN +NAGA +SI +TI +su +nu +ina +KAŠ +SAG +tara +muk +ina +MUL₄ +tuš +bat +ina +še +ri₃ +NU +pa +tan +ta +ša₂ +hal +NAG +ma +tu +ša₂ +ʾ +ra +šu +ma +TI +DIŠ +NA +ZE₂ +GIG +x +x +x +x +x +EN₂ +ZE₂ +eṭ +li +ZE₂ +eṭ +li +: +i +x +... +u₂ +ri +eṭ +li +e +el₃ +ša +li +li +x +... +x +ti +ma +ga +ra +aš +ga +ra +aš +ša +ŠAH +... +x +an +ra +ti +e +zib +ba +mu +x +x +... +KA +INIM +MA +... +EN₂ +ze₂ +am₂ +u₂ +šim +gen₇ +... +... +x +x +x +eme +... +ze₂ +ni₂ +za +mu +e +ši +du₃ +a +... +izi +gen₇ +te +ni(ER) +ib₂ +... +tu₆ +du₁₁ +ga +d +nin +girim₃ +... +d +en +ki +ke₄ +dag +... +lag +mun +šu +u₃ +me +ti +nam +šub +eridu +ki +ga +x +x +x +x +ka +ka +na(MA) +u₃ +me +ni +gar +... +im(AH) +gen₇ +gu +du +ni +ta +he₂ +em +ma +ra +du +: +bu +lu +uh +gen₇ +he₂ +si +il +le +EN₂ +mar +tu +mar +tu +mar +tu +pa +šit +tu₂ +ma +mar +tu +GIM +IGIRA₂ +mušen +SIG₇ +it +ta +na +al +lak +a +lak +ta +it +ta +na +za +az +ina +gi +sal +li +ša +BAD₃ +i +da +gal +a +ki +lum +ak +li +i +da +gal +ša₂ +tu +u₂ +ku +ru +un +ni +ki +i +tak +ka +la +ak +la +ki +i +ta +ša +ta +a +ku +ru +un +ni +a +ma +qu₂ +tak +ku +nu +šim +ma +tu +ga +ša +a +ki +i +GUD +TU₆ +EN₂ +EN₂ +UD₅ +ar +qa₂ +at +a +ruq +DUMU +ša +a +ruq +lu₂ +SIPA +ša +a +ruq +na +qid +sa +ina +e +ki +SIG₇ +U₂ +MEŠ +SIG₇ +MEŠ +ik +kal +ina +a +tap +pi +a +ruq +ti +A +MEŠ +SIG₇ +MEŠ +i +šat +ti +i +suk +ši +giš +GIDRU +ul +u₂ +tir +ra +pa +ni +ša +: +i +suk +ši +kir +ba +na₇ +ul +u₂ +šaq +qa +a +re +ši +ša +i +suk +ši +pil₂ +li +u₂ +HAR +HAR +u +MUN +: +mar +tu +GIM +im +ba +ri +ana +ša₂ +ha +hi +it +bi +EN₂ +ul +ia +ut +tu +EN₂ +d +e₂ +a +u +d +asal +lu₂ +hi +EN₂ +d +da +mu +u +d +gu +la +TU₆ +EN₂ +KA +INIM +MA +ša +pa +šit +ti +DU₃ +DU₃ +BI +x +x +x +x +GAZI +sar +pa +pi +ra +DIŠ +niš +SIG₃ +aṣ +EN₂ +x +x +ŠID +... +x +x +x +TI +uṭ +EN₂ +x +... +x +ad +x +... +d +e₂ +a +x +x +lip +ṭur +EN₂ +KID₃ +KID₃ +BI +... +u +MUN +nu +hur +ti +ŠUB +di +ana +ŠA₃ +EN₂ +ŠID +... +NU +pa +tan +NAG +ma +ina +eš +KA +INIM +MA +ZE₂ +A +KAM +IGI +4 +GAL₂ +LA +ILLU +LI +TAR +SUD₂ +ina +A +NAG +šu₂ +14 +PA +GI +ZU₂ +LUM +MA +SUD₂ +ina +5 +GIN₂ +I₃ +GIŠ +u +KAŠ +NAG +šu₂ +21 +u₂ +nab +ruq +qa +ina +10 +GIN₂ +I₃ +GIŠ +u +KAŠ +NAG +šu₂ +15 +ŠE +u₂ +IGI +lim +ina +1 +2 +SILA₃ +I₃ +GIŠ +u +KAŠ +NAG +šu₂ +90 +u₂ +sis +sin +ni +ŠA₃ +bi +ina +10 +GIN₂ +A +NAG +šu₂ +IGI +4 +GAL₂ +LA +U₂ +ma +at +qa +ina +10 +GIN₂ +A +NAG +šu₂ +IGI +4 +GAL₂ +LA +U₂ +NAM +TI +LA +ina +10 +GIN₂ +I₃ +GIŠ +NAG +šu₂ +1 +2 +GIN₂ +u₂ +a +ra +ri +a +nu +ina +10 +GIN₂ +A +NAG +šu₂ +IGI +4 +GAL₂ +LA +u₂ +IGI +NIŠ +ina +10 +GIN₂ +A +NAG +šu₂ +IGI +4 +GAL₂ +LA +u₂ +me +er +gi +ra +nu +ina +10 +GIN₂ +KAŠ +NAG +šu₂ +DIŠ +NA +ZE₂ +DAB +su +GAZI +sar +SUD₂ +ina +KAŠ +NAG +ma +i +ar₂ +ru₃ +: +DIŠ +KI +MIN +hi +qa +KAŠ +NAG +ma +i +ar₂ +ru₃ +DIŠ +KI +MIN +hi +qa +A +GEŠTIN +NA +KALAG +GA +NAG +ma +i +ar₂ +ru₃ +: +DIŠ +KI +MIN +šim +LI +SUD₂ +ina +KAŠ +NAG +ma +i +ar₂ +ru₃ +DIŠ +KIMIN +u₂ +me +er +gi +ra +a +na +SUD₂ +ina +A +NAG +ma +i +ar₂ +ru₃ +: +DIŠ +KIMIN +u₂ +IGI +lim +SUD₂ +ina +KAŠ +NAG +ma +i +ar₂ +ru₃ +DIŠ +KI +MIN +MUN +lu +ina +A +lu +ina +KAŠ +NAG +ma +i +ar₂ +ru₃ +: +DIŠ +KI +MIN +SUM +sar +SUD₂ +ina +A +NAG +ma +i +ar₂ +ru₃ +39398 DIŠ +KI +MIN +ILLU +LI +TAR +SUD₂ +ina +A +NAG +ma +i +ar₂ +ru₃ +: +DIŠ +KI +MIN +ILLU +LI +TAR +SUD₂ +ina +A +tara +muk +ina +MUL₄ +tuš +bat +NAG +ma +i +ar₂ +ru₃ +DIŠ +KI +MIN +u₂ +UKUŠ₂ +HAB +šim +BULUH +u₂ +HAR +HAR +ina +I₃ +ina +MUL₄ +tuš +bat +NAG +ma +i +ar₂ +ru₃ +DIŠ +KI +MIN +u₂ +NU +LUH +HA +SUM +sar +a +he +na +a +SUD₂ +ina +KAŠ +NAG +ma +i +ar₂ +ru₃ +DIŠ +NA +IGI +SIG₇ +SIG₇ +GIG +ma +GIG +su +ana +ŠA₃ +IGI +MIN +šu₂ +E₁₁ +a +ŠA₃ +IGI +MEŠ +šu₂ +GU +MEŠ +SIG₇ +MEŠ +ud +du +hu +ŠA₃ +MEŠ +šu₂ +na +šu +u +NINDA +u +KAŠ +u₂ +tar +ra +NA +BI +IM +DU₃ +A +BI +GIG +u₂ +za +bal +ma +BA +UŠ₂ +DIŠ +NA +IGI +SIG₇ +SIG₇ +GIG +ma +SAG +DU +su +pa +nu +šu₂ +ka +lu +ADDA +šu₂ +SUHUŠ +EME +šu₂ +ṣa +bit +ši +pir +šu₂ +SUMUN +ma +BA +UŠ₂ +DIŠ +NA +SU +šu₂ +SIG₇ +pa +nu +šu₂ +SIG₇ +ši +hat +UZU +TUKU +a +mur +ri +qa +nu +MU +NI +šim +LI +SUD₂ +ina +KAŠ +NAG +šim +ŠE +LI +SUD₂ +ina +KAŠ +NAG +šim +ŠEŠ +SUD₂ +ina +KAŠ +NAG +SUHUŠ +giš +NAM +TAR +NITA₂ +ša₂ +im +SI +SA₂ +ša₂ +GURUN +NU +IL₂ +SUD₂ +ina +KAŠ +NAG +u₂ +mur +ra +an +KUR +i +SUD₂ +ina +KAŠ +NAG +u₂ +kur +ka +na₇ +SUD₂ +ina +KAŠ +NAG +u₂ +IGI +lim +SUD₂ +ina +KAŠ +NAG +u₂ +nam +ruq +qa +SUD₂ +ina +KAŠ +NAG +u₂ +nam +ruq +qa +SUD₂ +ina +A +NAG +IM +SAHAR +NA₄ +KUR +RA +SUD₂ +ana +A +MEŠ +ŠUB +tu +sak₆ +NAG +šim +LI +SUD₂ +ina +GA +NAG +šim +ŠE +LI +SUD₂ +ina +GA +NAG +šim +ŠEŠ +SUD₂ +ina +GA +NAG +u₂ +nam +ruq +qa +SUD₂ +ina +GA +NAG +5 +ŠE +KU +KU +AN +ZAH +ina +KAŠ +ŠUB +ina +MUL₄ +tuš +bat +tu +sak₆ +NAG +im +KAL +LA +SUD₂ +ina +I₃ +e +re +ni +u +KAŠ +NAG +NUMUN +giš +bi +ni +u₂ +SUMUN +DAR +SUD₂ +ina +KAŠ +NAG +NUMUN +giš +bi +ni +SUD₂ +ina +KAŠ +NAG +NUMUN +giš +bi +ni +SUD₂ +ina +I₃ +u +KAŠ +NAG +SUHUŠ +giš +šu +ši +SUD₂ +MIN +: +u₂ +IGI +NIŠ +SUD₂ +ina +KAŠ +NAG +SUHUŠ +giš +MA +NU +SUHUŠ +giš +NU +UR₂ +MA +ina +NINDU +UŠ₂ +er +A +MEŠ +šu +nu +ti₃ +tu +sak₆ +tu +kaṣ₃ +ṣa +NAG +ma +ina +eš +u₂ +a +ṣu +ṣum +ta₅ +u₂ +a +nu +nu +ta₅ +ina +qut +rin +ni +tu +qat +tar +šu +MUD₂ +d +NIN +KA₆ +EDIN +ša +ina +u₂ +NINNI₅ +GUB +zu +ta +mah +har +ina +I₃ +EŠ +MEŠ +I₃ +SUMUN +sip +pi₂ +ABUL +ki +lal +le +e +TI +ina +I₃ +EŠ +MEŠ +GIR₃ +ra +am +ŠUB +uṣ +ṣa +a +uš +te +eš +šir +ti +tur +ra +na +di +ta₅ +e +ti +iq +u₂ +NIG₂ +GIDRU +SA₅ +SUD₂ +ina +KAŠ +NAG +šim +GUR₂ +GUR₂ +SUD₂ +ina +KAŠ +NAG +GURUN +u₂ +ka +zi +ri +SUD₂ +ina +KAŠ +NAG +u₂ +HAR +HAR +SUD₂ +ina +KAŠ +NAG +SU +giš +NU +UR₂ +MA +SUD₂ +ina +KAŠ +NAG +x +x +x +x +x +x +x +x +SUHUŠ +u₂ +EME +UR +GI₇ +SUD₂ +ina +KAŠ +NAG +IGI +6 +GAL₂ +LA +... +u₂ +IGI +NIŠ +qut +ri₃ +SUD₂ +ina +I₃ +u +KAŠ +NAG +PA +giš +NU +UR₂ +MA +... +DIŠ +NA +IGI +SIG₇ +SIG₇ +DIRI +SUHUŠ +giš +šu +ši +x +x +x +... +ina +MUL₄ +tuš +bat +NAG +hu +bi +bi +ta₅ +... +SUHUŠ +giš +NU +UR₂ +MA +ša₂ +im +SI +SA₂ +... +šum +ma +ina +x +... +BAR +giš +NU +UR₂ +MA +... +sah +le₂ +e +... +x +x +x +x +x +... +DIŠ +NA +IGI +SIG₇ +SIG₇ +DIRI +... +ta +tab +bal +I₃ +UDU +UKUŠ₂ +HAB +... +MUŠ +DIM₂ +GURUN +NA +... +x +x +x +... +40021 DIŠ +MIN +x +x +ina +I₃ +UDU +UKUŠ₂ +HAB +SUD₂ +ina +KAŠ +NAG +: +DIŠ +MIN +UZU +GUD +kab +ra +GU₇ +MEŠ +ZI₃ +mi +NU +IGI +DIŠ +MIN +ŠE₁₀ +NAM +LU₂ +U₁₈ +LU +šim +ŠEŠ +ina +I₃ +u +KAŠ +NAG +: +DIŠ +MIN +AMA +A +A +HAD₂ +DU +SUD₂ +ina +I₃ +u +KAŠ +lu₂ +KURUN₂ +NA +NAG +ma +BURU₈ +DIŠ +MIN +u₂ +ak +tam +ILLU +LI +TAR +U₂ +BABBAR +ina +I₃ +u +KAŠ +NAG +: +DIŠ +MIN +I₃ +UDU +UKUŠ₂ +HAB +ina +KAŠ +NAG +DIŠ +MIN +šim +ŠEŠ +NUMUN +šim +LI +IM +SAHAR +NA₄ +KUR +RA +SUD₂ +ina +I₃ +u +KAŠ +NAG +: +DIŠ +MIN +HAR +KUG +SIG₁₇ +HUŠ +A +ina +ŠU +šu₂ +GAR +an +DIŠ +NA +IGI +MIN +šu₂ +IGI +SIG₇ +SIG₇ +PA +giš +NU +UR₂ +MA +SUD₂ +ina +gi +SAG +KUD +ana +ŠA₃ +IGI +MIN +šu₂ +MU₂ +ah +DIŠ +NA +IGI +MIN +šu₂ +IGI +SIG₇ +SIG₇ +IGI +MEŠ +šu₂ +UZU +MEŠ +šu₂ +DIRI +7 +MUŠ +DIM₂ +GURUN +NA +ri +it +ku +ba +ti +x +x +x +x +TI +qe₂ +tu +qal +lap +ina +na₄ +NA +ZA₃ +HI +LI +SUD₂ +ina +DIDA +HI +HI +GU₇ +MEŠ +ma +ina +eš +... +x +x +x +sah +le₂ +e +ŠE +SA +A +LAL +su +u +DIDA +HI +HI +GU₇ +MEŠ +ma +ina +eš +... +x +x +x +x +ina +I₃ +u +KAŠ +NAG +ma +ina +eš +... +x +HU +ši +ši +ta₅ +... +ina +KAŠ +NAG +šu₂ +... +x +ta +qal +lap +x +... +NAG +šu₂ +DIŠ +NA +IGI +MIN +šu₂ +IGI +SIG₇ +SIG₇ +DIRI +u₂ +LAG +A +ŠA₃ +SUD₂ +ina +KAŠ +NAG +an +nu +ha +ra +SUD₂ +ina +KAŠ +x +x +x +SUD₂ +ina +KAŠ +ŠIKA +NUNUZ +GA₂ +NU₁₁ +mušen +SUD₂ +ina +KAŠ +KUG +SIG₁₇ +ina +SIG₂ +SA₅ +ina +ŠU +MIN +šu₂ +KEŠDA +DIŠ +KI +MIN +u₂ +x +u₂ +ŠAKIRA +U₂ +SA₅ +u₂ +LAL +GAZ +A +BI +ta +ṣa +hat +ina +KAŠ +NAG +ma +ina +eš +DIŠ +KI +MIN +GAZI +sar +U₅ +ARGAB +mušen +U₂ +BABBAR +ina +I₃ +NUN +SUD₂ +IGI +MIN +šu₂ +te +te +ne₂ +qi₂ +ma +ši +ši +ta₅ +ZI +ah +DIŠ +NA +SU +šu₂ +SIG₇ +5 +ŠE +AN +ZAH +SUD₂ +ina +I₃ +u +KAŠ +NAG +šu₂ +tu +šam +ad +ma +BA +UŠ₂ +DIŠ +NA +IGI +MIN +šu₂ +a +mur +ri +qa +nu +DIRI +u₂ +HAB +SUD₂ +ina +KAŠ +NAG +ma +ina +eš +DIŠ +MIN +SUHUŠ +giš +šu +ši +tu +bal +ta +sak₃ +ina +KAŠ +tara₃ +sa₃ +an +IGI +d +UTU +NAG +ma +ina +eš +DIŠ +SUHUŠ +u₂ +EME +UR +GI₇ +tu +bal +ta +sak₃ +ina +KAŠ +tara₃ +sa₃ +an +NAG +ma +ina +eš +DIŠ +u₂ +an +nu +ha +ra +SUD₂ +ina +KAŠ +NAG +ma +ina +eš +: +DIŠ +NUNUZ +GA₂ +NU₁₁ +mušen +SUD₂ +ina +KAŠ +NAG +ma +ina +eš +DIŠ +SUHUŠ +giš +NU +UR₂ +MA +SUD₂ +ina +KAŠ +ina +MUL +tuš +bat +ina +A₂ +GU₂ +ZI +GA +NAG +šu₂ +DIŠ +NUMUN +GI +ZU₂ +LUM +MA +SUD₂ +ina +KAŠ +ina +MUL +tuš +bat +ina +A₂ +GU₂ +ZI +GA +NAG +šu₂ +DIŠ +giš +GEŠTIN +KA₅ +A +SUD₂ +ina +KAŠ +NAG +šu₂ +: +DIŠ +u₂ +NU +LUH +HA +SUD₂ +ina +KAŠ +NAG +šu₂ +DIŠ +SUHUŠ +giš +NAM +TAR +SUD₂ +ina +KAŠ +NAG +šu₂ +: +DIŠ +ILLU +a +bu +ka +ti +ta +sak₃ +ina +KAŠ +NAG +šu₂ +DIŠ +u₂ +MUŠ +DIM₂ +GURUN +NA +GAL +ta +sak₃ +ina +KAŠ +u +I₃ +NAG +šu₂ +DIŠ +NA +SU +šu₂ +SIG₇ +IGI +šu₂ +SIG₇ +u +GE₆ +SUHUŠ +EME +šu₂ +GE₆ +ah +ha +zu +MU +NE +MUŠ +DIM₂ +GURUN +NA +GAL +ta +ša₂ +EDIN +ta +sak₃ +ina +KAŠ +NAG +ah +ha +zu +ša₂ +ŠA₃ +šu₂ +SI +SA₂ +am +DIŠ +NA +ah +ha +za +DIRI +šim +LI +SUD₂ +ina +KAŠ +NAG +šim +ŠE +LI +BABBAR +IM +SAHAR +NA₄ +KUR +RA +SUD₂ +ina +I₃ +u +KAŠ +NAG +ma +ina +eš +šim +KU₇ +KU₇ +SUD₂ +ina +KAŠ +NAG +u₂ +ha +še +e +SUD₂ +ina +KAŠ +NAG +SUHUŠ +GI +ZU₂ +LUM +MA +SUD₂ +ina +A +NAG +šim +ŠEŠ +SUD₂ +ina +GA +NAG +DIŠ +NA +ah +ha +za +DIRI +SUHUŠ +giš +šu +še +ta +sak₃ +ina +KAŠ +tara +muk +ina +MUL₄ +tuš +bat +NAG +DIŠ +NA +ah +ha +za +DIRI +u₂ +ṣu₂ +ṣe +em +ta₅ +u₂ +a +nu +nu +ta₅ +ina +qut +ri +ni +tu +qat +tar +šu₂ +u +MUD₂ +KUN +DAR +GURUN +NA +ŠEŠ₂ +su +ma +ina +eš +ru +ša +am +ša +si +ip +pi +ABUL +ki +lal +le +en +TI +qe₂ +ana +I₃ +GIŠ +ŠUB +di +ta +ap +ta +na +ša +aš +gi +ir +ra +ŠUB +uṣ +ṣa +a +am +uš +te +eš +še +er +ti +tur +ra +na +di +a +am +i +x +x +x +DIŠ +NA +ah +ha +za +DAB +su +SUHUŠ +giš +NAM +TAR +NITA₂ +ša₂ +IGI +im +SI +SA₂ +TI +qe₂ +ina +KAŠ +NAG +u₂ +HAR +HAR +x +x +x +x +u₂ +KUR +GI +RIN₂ +NA +SUD₂ +ina +KAŠ +šim +ŠE +LI +BABBAR +SUD₂ +ina +KAŠ +NAG +u₂ +IGI +lim +u₂ +IGI +NIŠ +ina +KAŠ +SUHUŠ +u₂ +x +x +x +x +x +DIŠ +NA +MIN +IGI +SIG₇ +SIG₇ +šim +LI +šim +ŠEŠ +SUD₂ +ina +KAŠ +NU +pa +tan +NAG +DIŠ +NA +MIN +IM +SAHAR +NA₄ +KUR +RA +IM +SAHAR +GE₆ +KUR +RA +DIŠ +niš +ina +KAŠ +tara +SUD +tu +zak +ka +x +x +x +x +DIŠ +NA +MIN +15 +ŠE +MEŠ +AN +ZAH +SUD₂ +ina +KAŠ +tara +SUD +tu +zak +ka +I₃ +hal +ṣa +ana +ŠA₃ +ŠUB +di +NU +pa +tan +NAG +DIŠ +NA +MIN +im +KAL +LA +SUD₂ +ina +I₃ +u +KAŠ +NAG +NUMUN +giš +bi +ni +ina +KAŠ +NAG +NUMUN +giš +bi +ni +x +x +x +x +NUMUN +giš +bi +ni +SUD₂ +ina +I₃ +u +KAŠ +NAG +SUHUŠ +giš +šu +ši +ina +I₃ +u +KAŠ +NAG +u₂ +IGI +NIŠ +SUD₂ +ina +KAŠ +NAG +MEŠ +DIŠ +MIN +SUHUŠ +giš +šu +ši +SUHUŠ +giš +NU +UR₂ +MA +ana +A +ŠUB +ina +NINDU +UŠ₂ +er +E₁₁ +a +ta +ša₂ +hal +ŠED₇ +NU +pa +tan +NAG +MEŠ +DIŠ +NA +ah +ha +zu +ana +IGI +MIN +šu₂ +E₁₁ +a +ma +IGI +MIN +šu₂ +GU +MEŠ +SIG₇ +MEŠ +ud +du +ha +ŠA₃ +MEŠ +šu₂ +na +šu +u₂ +NINDA +u +KAŠ +u₂ +tar +ra +NA +BI +u₂ +za +bal +ma +NU +TI +UŠ₂ +DIŠ +NA +ah +ha +zu +GIG +SAG +DU +su +pa +nu +šu +SU +šu₂ +ka +la +šu₂ +u₃ +SUHUŠ +EME +šu₂ +DAB +ana +GIG +šu +a +tu +lu₂ +A +ZU +ŠU +su +NU +ub +bal +NA +BI +UŠ₂ +NU +TI +DIŠ +NA +UD +DA +KUR +id +ZI +SAG +KI +GIG +ina +lam +DUGUD +šu₂ +ana +TI +BI +ru +uš +ša +ša +sip +pi +x +x +x +E₂ +GAL +m +AN +ŠAR₂ +DU₃ +A +MAN +ŠU₂ +MAN +KUR +AN +ŠAR₂ +ki +ša +d +AG +u +d +taš +me +tu₄ +GEŠTU +MIN +ra +pa +aš₂ +tu₄ +iš +ru +ku +uš +e +hu +uz +zu +IGI +MIN +na +mir +tu₄ +ni +siq +ṭup +šar +ru +ti +ša +ina +LUGAL +MEŠ +ni +a +lik +mah +ri +ia +mam₂ +ma +šip +ru +šu +a +tu +la +e +hu +uz +zu +bul +ṭi +TA +muh +hi +EN +UMBIN +liq +ti +BAR +MEŠ +ta +hi +zu +nak +la +a +zu +gal +lu +ti +d +nin +urta +u +d +gu +la +ma +la +ba +aš₂ +mu +ina +ṭup +pa +a +ni +aš₂ +ṭur +as +niq +IGI +KAR₂ +ma +a +na +ta +mar +ti +ši +ta +as +si +ia +qe₂ +reb +E₂ +GAL +ia +u₂ +kin +41232 ... +SAG +DU +su +ŠEŠ₂ +ma +TI +... +kal +ma +tu₄ +ul +i +sa +niq +šu₂ +x +x +x +x +x +x +x +x +x +x +ana +A +PU₂ +ša +x +u +KU₆ +NU +GAL₂ +ŠUB +TU₅ +šu₂ +ma +UH +NU +TE +šu₂ +x +x +x +x +x +x +x +x +ina +I₃ +GIŠ +e +re +ni +HI +HI +EŠ +MEŠ +DIŠ +NA +SAG +DU +su +kal +ma +ta₅ +ma +tu +uq +ta +ma +li +u₂ +mu +ur +ru +MU +NI +x +x +x +x +x +x +x +x +za +ku +ti +šu₂ +i +na +pa +ah +ma +TI +LA +x +x +x +x +la +ba +ši +i +giš +URI +SUD₂ +ina +I₃ +GIŠ +BARA₂ +ŠEŠ₂ +kal +ma +tu₂ +ul +ib +ba +aš₂ +ši +DIŠ +NA +SAG +DU +su +ek +ke +ta +u +ri +šu +ta +DIRI +PIŠ₁₀ +d +ID₂ +SUD₂ +ina +I₃ +GIŠ +e +re +ni +HI +HI +EŠ +MEŠ +su +DIŠ +KI +MIN +PIŠ₁₀ +d +ID₂ +ta +qal +lu +ina +I₃ +GIŠ +SAG +DU +su +tu +kaṣ₃ +ṣa +id +ra +ša₂ +MUN +ta +qal +lu +ina +I₃ +SAG +DU +su +tu +kaṣ₃ +ṣa +DIŠ +NA +SAG +DU +su +sa +ma +nu +DAB +it +i +raš +ši +šum +ma +i +na +sah +i +na +ah +EGIR +nu +GAL +bi +NUMUN +u₂ +EME +UR +GI₇ +SAHAR +ŠE +GIŠ +I₃ +SAHAR +di +ki +giš +DIH₃ +SAHAR +ŠE +GIŠ +I₃ +SAHAR +MUNU₆ +ŠE₁₀ +TU +mušen +MEŠ +ša₂ +giš +GIŠIMMAR +KUR +RA +HAD₂ +DU +ti +NUMUN +u₂ +DILI +SUD₂ +ina +A +GAZI +sar +KUM₂ +ti +SILA₁₁ +aš +SAG +DU +su +SAR +ab +tu +kaṣ₃ +ṣa +LAL +ša₂ +KA +DUB +MIN +i +DIŠ +NA +SAG +DU +su +sa +ma +nu +DAB +it +SAHAR +KUN₄ +ša +na₄ +pu +li +ša +E₂ +SUMUN +U₂ +BABBAR +SIG₇ +SIG₇ +su +U₄ +ma +ina +ŠA₃ +giš +ar₂ +ga +ni +GAL +bi +NUMUN +u₂ +EME +UR +GI₇ +SAHAR +ŠE +GIŠ +I₃ +ša₂ +SUHUŠ +maš +hal +ti +GAZ +DUH +ŠE +GIŠ +I₃ +HAD₂ +A +UŠ +MUNU₆ +ŠE₁₀ +TU +mušen +ha +ṣab +ti +na₄ +PEŠ₄ +NUMUN +u₂ +DILI +9 +U₂ +HI +A +ŠEŠ +DIŠ +niš +SUD₂ +SAG +DU +su +ina +I₃ +GIŠ +MUD₂ +giš +EREN +EŠ +MEŠ +U₂ +HI +A +an +nu +ti +ana +UGU +MAR +LAL +su +ma +TI +DIŠ +NA +SAG +DU +su +x +x +šum +DAB +it +a +la +pa +a +ša₂ +IGI +A +MEŠ +SAHAR +a +sur +re +e +ša₂ +ŠAH +ŠE₁₀ +PEŠ₂ +GIŠ +KIN₂ +x +x +x +x +x +x +x +x +KU +KU +giš +TASKARIN +KU +KU +giš +KIŠI₁₆ +ša₂ +ina +pi +ti +iq +ti +šu₂ +i +ra +bu +u₂ +bar +ša +SUHUŠ +x +x +x +x +x +x +x +x +giš +sir₂ +di +PA +giš +bi +ni +PA +giš +ŠE +NU +ZI₃ +GU₂ +GAL +ZI₃ +GU₂ +TUR +ZI₃ +ŠE +SA +A +LAL +MEŠ +su +ma +TI +DIŠ +NA +SAG +DU +su +x +x +x +DAB +it +a +la +pa +a +ša₂ +IGI +A +MEŠ +... +... +x +x +x +x +x +... +41722 x +x +x +šim +GUR₂ +GUR₂ +šim +LI +u₂ +KUR +KUR +... +x +x +ŠE +SA +A +ni +kip +ta₅ +DIŠ +nis +SUD₂ +... +x +x +a +šu +u₂ +SAG +NA +a +hi +iz +x +... +DIŠ +NA +SAG +DU +su +a +šu +u₂ +DAB +it +... +x +x +x +šim +GUR₂ +GUR₂ +šim +... +x +x +GAZ +SIM +KI +GU₂ +GAL +... +DIŠ +NA +SAG +DU +su +a +šu +u₂ +DAB +it +... +x +x +x +na₄ +ŠU +U +NITA₂ +... +x +x +x +ana +KA +šu₂ +u +na +hi +ri +šu₂ +... +DIŠ +NA +SAG +DU +su +a +šu +u +DAB +it +šim +... +x +x +x +x +x +x +x +lu +u +ina +KAŠ +SAG +NAG +šu₂ +... +DIŠ +NA +x +x +x +x +SAG +DU +šu₂ +DAB +it +SUHUŠ +... +x +x +x +x +ba +lu +pa +tan +NAG +šu₂ +ma +... +DIŠ +NA +a +šu +u₂ +lu +ŠUB +tu +DAB +su +10 +GIN₂ +sah +le₂ +e +kab +ra +ti +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +u₂ +nu +ut +ŠA₃ +šu₂ +nu +ta +tab +bal +tu +ša₂ +bal +ina +ŠU +ka +ta +pa +ša₂ +aš₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +NA +a +šu +u₂ +lu +ŠUB +tu +DAB +su +5 +GIN₂ +u₂ +KUR +RA +5 +GIN₂ +GAZI +sar +x +x +dug +UTUL₇ +ta +pal +la +aš +x +x +x +x +x +x +x +IGI +dug +UTUL₇ +ina +NIG₂ +SILA₁₁ +GA₂ +ZIZ₂ +A +AN +UŠ₂ +hi +IZI +ta +šar₂ +rap +gi +SAG +KUD +ta +pal +la +aš +ma +ina +MURUB₄ +at +dug +BUR +ZI +ta +sa₃ +niš +x +x +x +x +x +gi +SAG +KUD +E₁₁ +a +ina +KA +šu₂ +GID₂ +ad +x +x +x +x +ŠEG₆ +al +A +UZU +u +UZU +AL +GUR₄ +RA +GU₇ +ma +ina +eš +DIŠ +NA +a +šu₂ +u +DAB +it +im +KAL +SUD₂ +ina +x +x +NAG +MEŠ +ma +TI +uṭ +DIŠ +NA +a +šu +u₂ +DAB +it +7 +et +u +7 +et +ŠE +MEŠ +ina +NE +tu +qat +tar +ha +an +za +a +ša₂ +ŠA₃ +GI +DU₁₀ +GA +TI +qe₂ +x +x +x +x +x +x +an +ina +KA +šu₂ +u₂ +la +ʾa +at +ma +ana +na +hi +ri +šu₂ +in +niq +ma +TI +uṭ +x +x +x +x +x +tur +ar₂ +SUD₂ +ina +I₃ +GIŠ +u +KAŠ +SAG +NAG +ma +TI +uṭ +DIŠ +NA +SAG +DU +su +a +šu +u₂ +a +hi +iz +eriš₆ +ti +GAZI +sar +NUMUN +u₂ +KU₆ +ina +x +x +x +x +me +šu₂ +ŠEŠ₂ +MEŠ +TI +uṭ +x +x +x +DIDA +SIG₅ +LAL +id +sah +le₂ +e +ARA₃ +ti₃ +ana +UGU +MAR +x +x +x +GAR +an +ma +TI +uṭ +x +x +x +x +x +tu +zak +ina +MUL₄ +tuš +bat +ba +lu +pa +tan +NAG +šu₂ +1 +SILA₃ +x +x +1 +SILA₃ +šur +šum +me +KAŠ +SAG +tu +zak +x +x +x +x +iš +tu +e +liš +ana +šap +liš +tu +maš +šad +UD +10 +KAM₂ +LAL +ma +TI +x +x +x +x +DABIN +ina +KAŠ +ta +sak₃ +SAG +DU +su +ŠED₇ +NUMUN +u₂ +KU₆ +SUD₂ +ina +I₃ +HI +HI +ina +urudu +ŠEN +TUR +ŠEG₆ +šal +EŠ +MEŠ +ma +TI +DIŠ +NA +a +šu +u₂ +DAB +it +ILLU +šim +BULUH +šim +BAL +ina +NE +SAR +šu₂ +ana +na +hi +ri +šu₂ +in +niq +ma +TI +DIŠ +KI +MIN +šim +HAB +ILLU +šim +BULUH +u₂ +KUR +GI +RIN₂ +NA +ina +IZI +ŠUB +na +hi +ri +šu₂ +tu +qat +tar +I₃ +GIŠ +KA +KIR₄ +x +x +x +x +MU₂ +ma +TI +DIŠ +NA +a +šu +u₂ +DAB +su +u₂ +IGI +lim +u₂ +KUR +KUR +NUMUN +GAZI +sar +NUMUN +u₂ +AB₂ +DUH +U₂ +MAŠ +TAB +BA +ina +I₃ +ŠEŠ₂ +su +ina +NE +SAR +šu₂ +EN₂ +qar +ra +di₃ +ia +qar +ra +di₃ +ia +TI +TI +qar +ra +di₃ +ia +ŠU +za +ah +za +ah +u +qar +ra +di₃ +ia +ma +hu +ul +qi +hu +ul +qi +ha +al +ti +ib +ha +al +ti +ib +ia +nu +um +ma +te +ne +eš +ma +mar +IMIN +NA +di +hu +un +di +hu +un +du +li +rap +šu +ma +KUM₂ +šu₂ +NU +i +na +a +aš +ma +ʾ +du +ma +la +x +x +x +x +x +x +a +su₁₄ +u₂ +ša₂ +a +me +lu +ti +TU₆ +EN₂ +KA +INIM +MA +MAŠ +TAB +BA +KE₄ +DU₃ +DU₃ +BI +GAZI +sar +šim +GUR₂ +GUR₂ +U₂ +a +ši +i +ina +NE +SAR +šu₂ +EN₂ +an +ni +ta₅ +3 +šu₂ +ŠID +nu +ma +TI +EN₂ +edin +lal +edin +na +edin +lal +edin +na +edin +ki +gir₃ +si₃ +ga +edin +ki +gir₃ +si₃ +ga +mul +ra +ku +u₂ +ma +an +du +gi +ki +na +mul +mul +da +ta +EN₂ +KA +INIM +MA +MAŠ +TAB +BA +KE₄ +DU₃ +DU₃ +BI +u₂ +AB₂ +DUH +ta +pa +aṣ +ina +I₃ +GIŠ +HI +HI +EN₂ +3 +šu₂ +ŠID +nu +ŠEŠ₂ +ŠEŠ₂ +ma +TI +U₂ +a +ši +i +KUD +si +NUMUN +u₂ +kam +ka +di +SUD₂ +ina +I₃ +GIŠ +ŠEŠ₂ +u₂ +ka +man +ta +SUD₂ +ina +I₃ +GIŠ +ŠEŠ₂ +U₂ +BABBAR +SUD₂ +ina +I₃ +GIŠ +ŠEŠ₂ +u₂ +ha +šu +u +u₂ +HAB +sah +le₂ +e +u₂ +zi +bu +u +U₂ +BABBAR +ILLU +šim +BULUH +x +x +x +x +TEŠ₂ +BI +ta +sak₃ +ina +I₃ +GIŠ +u +KAŠ +SAG +NAG +MEŠ +ma +TI +DIŠ +NA +a +šu +u₂ +DAB +su +ana +TI +šu₂ +U₂ +BABBAR +U₅ +ARGAB +mušen +MUN +eme +sal +lim +u₂ +KUR +RA +x +x +x +x +x +x +x +x +x +SAG +DU +su +LUH +si +GUR +ma +ta +bi +lam +ana +SAG +DU +šu₂ +MAR +sig₂ +AKA₃ +NIGIN +x +x +x +x +x +x +x +x +iš +ka +gi +im +ma +x +x +x +šu +uh +di +am +x +x +x +x +... +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +SIG₃ +as +su +u +SAG +KI +MEŠ +šu₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ŠA₃ +ŠID +nu +ana +na +hi +ri +šu₂ +DUB +x +x +x +x +x +x +x +x +x +x +x +x +ba +ah +ra +GU₇ +ba +ah +ra +NAG +ma +TI +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +u₂ +AB₂ +DUH +U₂ +MAŠ +TAB +BA +ina +I₃ +GIŠ +ŠEŠ₂ +TI +... +it +ta +mu +uh +x +x +x +... +a +ša₂ +a +KA +x +x +x +x +... +u₂ +aš +lim +ina +NE +SAR +šu₂ +ma +MAŠ +TAB +BA +ZI +x +EN₂ +... +giš +hur +hur +u₂ +pa +ak +u₂ +pa +ak +TU₆ +EN₂ +... +DU₃ +DU₃ +BI +A +giš +NU +UR₂ +MA +x +x +x +x +... +x +ana +KA +šu₂ +ta +šap +pak +ma +ina +eš +x +x +x +x +x +x +x +x +x +NUMUN +u₂ +KU₆ +u₂ +tar +muš +u₂ +IGI +lim +u₂ +IGI +NIŠ +ina +I₃ +x +x +x +x +x +x +x +x +x +x +GAR +an +ina +še +ri₃ +SAG +DU +su +LUH +si +EŠ +MEŠ +ma +ina +eš +x +x +x +x +x +x +x +x +x +NA₄ +UKUŠ₂ +HAB +GAZI +sar +BIL +ti +ina +I₃ +GIŠ +e +re +ni +HI +HI +ŠEŠ₂ +MEŠ +... +x +KUM₂ +am +ana +SAG +DU +šu₂ +ŠUB +x +x +... +x +HI +HI +tu +kaṣ₃ +ṣa +ina +I₃ +GIŠ +e +re +ni +: +ina +I₃ +NUN +HI +HI +EŠ +MEŠ +... +in +SAG +DU +su +LUH +si +NA₄ +UKUŠ₂ +HAB +SUD₂ +ina +I₃ +GIŠ +e +re +ni +EŠ +MEŠ +... +ana +ŠA₃ +ŠUB +di +TA +ib +taš +lu +SAG +DU +su +EŠ +MEŠ +ku +lil +ta₅ +HAD₂ +DU +... +I₃ +UDU +BIL +ZA +ZA +ina +I₃ +NUN +HI +HI +ŠEŠ₂ +MEŠ +ma +SIG₂ +E₃ +a +... +A +GEŠTIN +NA +KALAG +GA +HI +HI +SAG +DU +su +tu +kaṣ₃ +ṣa +ma +EŠ +MEŠ +... +x +x +... +x +x +x +x +x +SAR +šu₂ +ma +ina +še +ri₃ +ina +A +KUM₂ +ti +SAG +DU +su +LUH +si +I₃ +GIŠ +e +re +ni +EŠ +MEŠ +I₃ +UDU +UKUŠ₂ +HAB +tur +ar₂ +x +x +x +x +x +x +x +MAR +ru +EŠ +MEŠ +ma +TI +DIŠ +KI +MIN +I₃ +GIŠ +e +re +ni +KUM₂ +am +ana +SAG +DU +šu₂ +ŠUB +: +DIŠ +KIMIN +x +x +x +x +x +x +giš +GEŠTIN +KA₅ +A +SUD₂ +ina +I₃ +GIŠ +e +re +ni +EŠ +MEŠ +DIŠ +KI +MIN +PIŠ₁₀ +d +ID₂ +ina +li +ši +HI +HI +EŠ +MEŠ +: +DIŠ +KIMIN +PIŠ₁₀ +d +ID₂ +ina +LAL₃ +KUR +i +HI +HI +EŠ +MEŠ +DIŠ +KI +MIN +u₂ +IN₆ +UŠ₂ +SUD₂ +ina +I₃ +EŠ +MEŠ +: +DIŠ +KIMIN +u₂ +ak +tam +SUD₂ +ina +I₃ +UDU +HI +HI +EŠ +MEŠ +: +DIŠ +KIMIN +u₂ +TAL₂ +TAL₂ +MAR +ina +I₃ +EŠ +MEŠ +DIŠ +KI +MIN +u₂ +KU₆ +ina +GA +AB₂ +: +KAŠ₃ +AB₂ +SIG₃ +aṣ +SAG +DU +su +LUH +giš +MAŠ +HUŠ +tur +ar₂ +SUD₂ +SAG +DU +su +SAR +ab +I₃ +EŠ +MEŠ +su +DIŠ +KI +MIN +I₃ +UDU +UKUŠ₂ +HAB +NA₄ +UKUŠ₂ +HAB +tur +ar₂ +SUD₂ +SAG +DU +su +SAR +ab +I₃ +EŠ +MEŠ +LAL +ŠUB +LAL +DIŠ +KI +MIN +x +x +x +SUD₂ +ina +I₃ +GIŠ +e +re +ni +HI +HI +EŠ +MEŠ +ma +SIG₂ +E₃ +a +DIŠ +KI +MIN +x +x +x +SUD₂ +SAG +DU +su +EŠ +MEŠ +ZI₃ +GU₂ +GAL +ZI₃ +GU₂ +TUR +u₂ +LAG +GA₂ +SUD₂ +ina +A +GAZI +sar +SILA₁₁ +aš +LAL +u₂ +ak +tam +NAGA +SI +x +x +x +ina +A +KUM₂ +ti +SAG +DU +su +LUH +si +43305 DIŠ +NA +gu +raš +tu +DIRI +u₂ +KU₆ +u₂ +x +... +DIŠ +niš +SUD₂ +ina +I₃ +HI +HI +EŠ +MEŠ +ma +SIG₂ +E₃ +a +DIŠ +KI +MIN +u₂ +ak +tam +u₂ +AB₂ +DUH +SUD₂ +ina +... +SAG +DU +su +LUH +si +BAR +giš +x +x +x +ta +qal +lu +ARA₃ +en +MAR +DIŠ +KI +MIN +I₃ +ŠA₃ +KU₆ +EŠ +MEŠ +... +ud +SUD₂ +MAR +DIŠ +KI +MIN +sa +ma +na₇ +ša₂ +E₂ +GAR₈ +ta +kar +ma +ŠEŠ₂ +... +x +ud +ina +LAL₃ +KUR +i +BABBAR +u +A +LUH +ma +ina +eš +U₂ +BABBAR +u₂ +KU₆ +u₂ +ak +tam +3 +U₂ +gu +raš +ti +... +SAG +DU +su +ina +I₃ +EŠ +MEŠ +u₂ +IGI +lim +u₂ +KU₆ +SUHUŠ +giš +MAŠ +HUŠ +SUHUŠ +giš +bi +ni +UZU +DIR +SUD₂ +... +x +ina +A +SAG +DU +su +LUH +ina +I₃ +EŠ +MEŠ +DIŠ +NA +... +SAG +DU +su +LUH +u₂ +LAL +u₂ +u₅ +ra +na +SUD₂ +ina +I₃ +EŠ +MEŠ +... +SUD₂ +ina +LAL₃ +KUR +i +EŠ +MEŠ +... +i +šal +lim +... +x +x +x +43480 DIŠ +KI +MIN +u₂ +LAG +GANA₂ +GAZ +I₃ +UDU +A +ZA +LU +LU +SUD₂ +... +ana +ku +ra +ri +ZI +hi +hu +bu +uš +SUN₂ +ina +šur +šum +me +... +DIŠ +KI +MIN +u₂ +LAG +A +ŠA₃ +ina +IGI +ta +kar +IM +SAHAR +GE₆ +KUR +RA +... +DIŠ +KI +MIN +NUMUN +GA +RAŠ +u₂ +ak +tam +u₂ +ṣa +lam +ta₅ +DIŠ +niš +SUD₂ +... +DIŠ +NA +SAG +DU +su +ku +ra +ra +DAB +it +ŠE₁₀ +d +nisaba +SUD₂ +ta +kar +MAR +x +x +x +x +x +x +x +x +x +x +laq +laq +ta +šu₂ +ta +tab +bal +ina +KAŠ +LUH +si +KU +KU +giš +TASKARIN +MAR +LAL +ina +IGI +KI +NA₂ +šu₂ +x +x +x +x +x +x +x +x +x +x +KU +KU +giš +TASKARIN +KU +KU +giš +e +lam +ma +ku +KU +KU +giš +kal +mar +hi +ŠE₁₀ +d +nisaba +x +x +x +x +x +x +x +ina +šer₂ +ti +DU₈ +SAR +ab +šim +MAN +DU +giš +EREN +tur +ar₂ +SUD₂ +ana +... +ina +A +GAZI +sar +LUH +si +KU +KU +giš +TASKARIN +KU +KU +giš +e +lam +ma +ku +KU +KU +giš +kal +mar +hi +... +DIŠ +KI +MIN +SAG +DU +su +tu +gal +lab +I₃ +HAB +ŠEŠ₂ +ina +IGI +KI +NA₂ +šu₂ +DU₈ +SUHUŠ +... +SUHUŠ +giš +ku +ma +hi +IM +GU₂ +NIG₂ +NIGIN₂ +NA +u₂ +tar +muš +NUMUN +u₂ +qut +ra +te +x +... +DIŠ +niš +SUD₂ +ina +KAŠ₃ +AB₂ +GU₄ +SAG +DU +su +te +sir₂ +ina +KAŠ +LUH +si +ina +A +GAZI +sar +x +... +NUMUN +giš +ŠE +NU₂ +A +NUMUN +giš +NAM +TAR +NUMUN +GADA +NUMUN +u₂ +AB₂ +DUH +PA +u₂ +TAL₂ +TAL₂ +giš +DIH₃ +x +x +x +x +x +x +x +x +x +x +u₂ +KUR +GI +RIN₂ +NA +u₂ +sag +gi +la +ta₅ +PA +u₂ +MA₂ +ERIŠ₄ +MA₂ +LA₂ +e +u₂ +MAŠ +HUŠ +x +x +x +x +x +x +x +HAD₂ +A +GAZ +SIM +ina +A +GAZI +sar +SILA₁₁ +aš +GUR +ma +HAD₂ +A +GAZ +SIM +ina +KAŠ +SAG +x +x +x +x +x +x +x +x +x +x +x +3 +u₄ +me +NU +DU₈ +ina +4 +u₄ +me +ina +DU₈ +ka +ina +KAŠ₃ +KUM₂ +me +LUH +si +... +... +x +x +x +... +43846 DIŠ +KI +MIN +x +x +ina +I₃ +UDU +SUD₂ +x +... +DIŠ +KI +MIN +PIŠ₁₀ +d +ID₂ +u₂ +GAMUN +GE₆ +... +DIŠ +KI +MIN +im +KAL +SUD₂ +... +DIŠ +NA +SAG +DU +su +ku +ra +ra +DAB +... +u₂ +KUR +RA +sah +le₂ +e +u₂ +u₅ +ra +nu +... +I₃ +GIŠ +e +re +ni +EŠ +MEŠ +... +DIŠ +NA +ku +ra +ra +GIG +x +x +x +x +x +x +x +x +x +x +x +DIŠ +KI +MIN +A +GEŠTIN +NA +BIL +LA₂ +... +x +x +... +ina +ša +ni +i +IM +GU₂ +EN +NA +... +ana +KI +MIN +ŠE₁₀ +d +nisaba +ana +x +... +DIŠ +KI +MIN +sa +ma +na₇ +te +sir₂ +... +MAR +ina +I₃ +NUN +EŠ +MEŠ +... +DIŠ +KI +MIN +A +GEŠTIN +NA +BIL +LA₂ +... +MAR +SUM +sar +SUM +SIKIL +sar +... +DIŠ +NA +SAG +DU +su +... +x +ZI₃ +KUM +ZI₃ +GU₂ +GAL +IM +BABBAR +ba +aš +la +NAGA +SI +... +IM +GU₂ +EN +NA +... +GAZ +SIM +SAG +ka +u₂ +kal +I₃ +NUN +EŠ +MEŠ +LAL +ŠUB +giš +GEŠTIN +KA₅ +A +x +... +DIŠ +KI +MIN +... +x +... +DIŠ +KI +MIN +x +x +x +šim +LI +DABIN +ina +A +GEŠTIN +NA +HI +HI +SAG +DU +su +tu +kaṣ₃ +ṣa +UD +3 +KAM +ŠUB +... +x +x +x +SAG +DU +su +LUH +si +UD +3 +KAM +ŠUB +di +SAR +ab +UGU +ku +ra +ri +x +... +x +x +x +ŠED₇ +I₃ +NUN +MUN +tu +ba +har +ina +DIDA +SIG +u +I₃ +GIŠ +e +re +ni +... +... +x +x +tur +ar₂ +SUD₂ +MAR +GURUN +UKUŠ₂ +HAB +x +... +... +x +x +a +IGI +GIG +... +... +... +A +GEŠTIN +NA +... +I₃ +GIŠ +e +re +ni +EŠ +MEŠ +U₂ +BABBAR +u₂ +... +u₂ +KU₆ +MUN +a +ma +ni₇ +ina +KAŠ₃ +ANŠE +u +A +GEŠTIN +NA +... +EN₂ +su +ub +hi +im +su +ub +hi +im +a +na +x +... +la +ni +hu +bi +la +a +ni +hu +bi +la +ni +... +DU₃ +DU₃ +BI +šim +er +ra +UGU +ku +ra +ri +... +sa +ma +na₇ +ša₂ +E₂ +GAR₈ +ta +kar +... +ina +I₃ +NUN +SUMUN +HI +HI +x +... +EN₂ +ki +ni +ip +ki +ni +ip +ba +ah +... +DU₃ +DU₃ +BI +ina +an +ṣa +ab +ti +KUG +SIG₁₇ +IGI +GIG +ta +kaṣ₃ +... +x +x +GA +RAŠ +sar +u₂ +ṣa +lam +ta₅ +u₂ +KUR +RA +... +EN₂ +ma +mit +GIM +šar +ra +qi₂ +ina +KA₂ +pil +ši +un +... +EN₂ +a +šar +tab +ba +ni +i +d +e₂ +a +lip +šur +x +... +EN₂ +at +he +ma +at +he +e +he +le +e +ma +at +he +le +... +DU₃ +DU₃ +BI +na +gap +pa +ša₂ +A +GEŠTIN +NA +ta +kar +qut +ra +MAR +x +... +5 +KA +INIM +MA +GIG +GIR +ZI +hi +x +x +x +hur +ri +im +su +ub +hur +ri +im +a +la +šu +uh +ta +x +... +x +x +x +x +x +x +a +pi +il +lat +aš +kur +ba +an +ni +id +ki +ia +ul +x +... +44346 ... +x +x +x +x +x +x +x +x +x +x +x +x +gi +ha +ba +x +x +x +x +x +x +x +x +x +x +ZI +hi +x +x +x +x +x +x +x +x +x +hu +bu₄ +uš +SUN₂ +ŠEŠ₂ +KUŠ +ANŠE +ina +IZI +tur +ar₂ +SUD₂ +MAR +a +la +pa +a +ina +IZI +x +x +x +x +x +x +x +x +x +tur +ar₂ +IGI +GIG +MAR +ta +ʾa +a +ša₂ +UDU +NITA₂ +IGI +GIG +EŠ +MEŠ +KUŠ +HAD₂ +A +GAZ +x +x +x +TI +GUD +ID₂ +ina +IZI +tur +ar₂ +IGI +GIG +MAR +u₂ +IGI +lim +SUD₂ +IGI +GIG +EŠ +MEŠ +x +x +x +x +x +x +ta +kar +ina +an +ṣa +ab +ti +KUG +SIG₁₇ +IGI +GIG +ta +kaṣ₃ +x +x +x +x +x +x +x +TI +LA +KE₄ +x +x +x +x +x +x +x +x +x +x +x +si +ki +tu₂ +SAG +DU +su +x +x +x +x +x +x +x +ina +UD +4 +KAM +SAG +DU +su +44513 ... +a +... +LUH +si +... +MAR +... +MAR +... +MAR +44525 DIŠ +NA +ŠA₃ +šu₂ +GIG +GA +gud +AB₂ +KUG +GA +I₃ +NUN +UD +2 +KAM₂ +NAG +... +DIŠ +NA +ŠA₃ +šu₂ +GIG +u₂ +GEŠTIN +KA₅ +A +SUD₂ +ina +KAŠ +NAG +u₂ +IM +DU +SUD₂ +ina +KAŠ +NAG +u₂ +šiz +ba +na₇ +SUD₂ +ina +KAŠ +NAG +1 +2 +SILA₃ +sah +le₂ +e +1 +2 +SILA₃ +NAGA +SI +1 +2 +SILA₃ +IM +GU₂ +EN +NA +1 +2 +SILA₃ +giš +ŠE +NU +1 +2 +SILA₃ +ZI₃ +KUM +1 +2 +SILA₃ +šim +LI +1 +2 +SILA₃ +šim +GUR₂ +GUR₂ +1 +2 +SILA₃ +ZI₃ +GU₂ +GAL +1 +2 +SILA₃ +ZI₃ +GU₂ +TUR +1 +2 +SILA₃ +u₂ +SIKIL +1 +2 +SILA₃ +u₂ +NIG₂ +GIDRU +1 +2 +SILA₃ +u₂ +ur₂ +ne₂ +e +GAZ +ina +KAŠ +SAG +ina +urudu +ŠEN +TUR +tara +bak +ina +TUG₂ +te +ṭer₅ +ri +IGI +u +MAŠ +SILA₃ +LAL +id +ana +KI +MIN +1 +3 +SILA₃ +sah +le₂ +e +1 +3 +SILA₃ +ŠE₁₀ +TU +mušen +1 +3 +SILA₃ +ŠE +SA +A +1 +3 +SILA₃ +šim +LI +1 +3 +SILA₃ +šim +GUR₂ +GUR₂ +HI +HI +ma +la +na +aṣ +ma +ti +tu +šam +ṣa +ina +KAŠ +SAG +SILA₁₁ +aš +LAL +id +ana +KI +MIN +1 +MA +NA +PA +giš +ŠE +HAR +SUD₂ +ina +A +GAZI +sar +ŠEG₆ +šal +tu +kaṣ₃ +ṣa +LAL +id +ana +KI +MIN +1 +2 +SILA₃ +ZA₃ +HI +LI +1 +2 +SILA₃ +ŠE +SA +A +SUD₂ +ina +A +GAZI +sar +SILA₁₁ +aš +šim +GUR₂ +GUR₂ +šim +LI +ana +IGI +ta +za +ru₃ +IGI +u +MAŠ +SILA₃ +LAL +ana +KI +MIN +1 +2 +SILA₃ +ZI₃ +MUNU₆ +1 +2 +SILA₃ +ZI₃ +DUH +ŠE +GIŠ +I₃ +1 +2 +SILA₃ +ZI₃ +GIG +1 +2 +SILA₃ +šim +GUR₂ +GUR₂ +1 +2 +SILA₃ +šim +LI +SUD₂ +HI +HI +ina +A +GAZI +sar +ta +la +aš +LAL +id +DIŠ +NA +ŠA₃ +šu₂ +GIG +PA +u₂ +er +re +e +HAD₂ +A +GAZ +SIM +ina +LAL₃ +KAŠ +SAG +u +I₃ +hal +ṣi +SIG₃ +aṣ +ba +lu +pa +tan +NAG +šu₂ +ina +DUR₂ +šu₂ +SI +SA₂ +ma +TI +DIŠ +NA +ŠA₃ +šu₂ +GIG +šim +su +a +di +tu +ha +sa +ina +A +ŠED₇ +tu +la +bak +NU +pa +tan +NAG +DIŠ +NA +ŠA₃ +šu₂ +GIG +ma +DUB₂ +NUMUN +GIŠ +GI +ZU₂ +LUM +MA +SUD₂ +ina +KAŠ +SAG +NAG +1 +2 +SILA₃ +sah +le₂ +e +1 +2 +SILA₃ +NAGA +SI +1 +2 +SILA₃ +ZI₃ +GIG +1 +2 +SILA₃ +ZI₃ +KUM +GAZ +ina +KAŠ +SAG +SILA₁₁ +aš +ina +TUG₂ +SUR +IGI +u +MAŠ +SILA₃ +LAL +DIŠ +NA +ŠA₃ +šu₂ +GIG +u₂ +IGI +lim +SUD₂ +ina +KAŠ +SAG +tara +muk +ina +MUL₄ +tuš +bat +NU +pa +tan +NAG +PA +giš +ŠE +NU +GAZ +ina +ZI₃ +KUM +HI +HI +ina +A +GAZI +sar +tara +bak +ina +TUG₂ +HI +A +SUR +IGI +u +MAŠ +SILA₃ +LAL +ana +KI +MIN +GA +RAŠ +sar +pu +ut +ta +TI +ta +sak₃ +ina +GA +NAG +1 +2 +SILA₃ +ZA₃ +HI +LI +1 +2 +SILA₃ +ŠE +SA +A +ina +GA +SILA₁₁ +aš +ina +TUG₂ +SUR +LAL +DIŠ +NA +ŠA₃ +šu₂ +GIG +ma +ŠA₃ +GIR₃ +PAD +DU +šu₂ +SIG₇ +ŠA₃ +šu₂ +GIG +MEŠ +DIRI +UD +DA +SA₂ +SA₂ +I₃ +UDU +UKUŠ₂ +HAB +ina +ZI₃ +ŠE +SA +A +HI +HI +14 +ku +pa +tin +ni +LAL₃ +SUD +u₂ +al +lat +1 +2 +SILA₃ +ZA₃ +HI +LI +giš +si +ha +SUD₂ +ina +UZU +GUD +GUR₄ +RA +GU₇ +MEŠ +1 +2 +SILA₃ +ZA₃ +HI +LI +ṭe₄ +ne +ti₃ +ina +x +x +x +SILA₁₁ +aš +LAL +DIŠ +NA +ŠA₃ +šu₂ +GIG +ma +di +ik +ša₂ +TUKU +ši +NINDA +GU₇ +KAŠ +NAG +ana +DUR₂ +šu₂ +DUB +ak +ru +pu +uš +ta +ina +A +GAR₃ +BURU₈ +GIGURU₃ +u₂ +NU +LUH +HA +SUD₂ +ina +A +NAG +U₂ +BABBAR +ina +I₃ +GIŠ +tara +bak +ana +DUR₂ +šu₂ +DUB +ak +GEŠTIN +SUR +NAG +šim +LI +ŠIM +ŠAL +x +x +x +ina +urudu +ŠEN +TUR +tara +bak +ina +TUG₂ +SUR +LAL +ana +KI +MIN +U₂ +BABBAR +ina +I₃ +GIŠ +NAG +i +ar₂ +ru₃ +x +x +x +x +x +x +x +u₂ +IN₆ +UŠ₂ +u₂ +EME +UR +GI₇ +ina +A +ŠEG₆ +GA₂ +tara +has₂ +su +A +GAZI +sar +x +x +x +x +x +x +GIŠIMMAR +PA +giš +šu +še +šim +ŠE +LI +PA +giš +ŠE +NU +šim +LI +šim +GUR₂ +GUR₂ +x +x +x +x +x +ina +KUŠ +te +ṭer₅ +ri +LAL +ana +KI +MIN +u₂ +GEŠTIN +KA₅ +A +ina +KAŠ +NAG +U₂ +BABBAR +ina +I₃ +NAG +x +x +x +x +x +ina +LAL₃ +GU₇ +A +giš +ŠE +NU +A +GAZI +sar +ana +DUR₂ +šu₂ +DUB +ak +PA +x +x +x +x +u₂ +SIKIL +PA +u₂ +ŠAKIRA +PA +u₂ +IN₆ +UŠ₂ +GAZ +x +x +x +x +x +SUR +LAL +ana +KI +MIN +u₂ +NU +LUH +HA +u₂ +ti +ia₂ +ta₅ +SUD₂ +ina +KAŠ +NAG +U₂ +BABBAR +ina +I₃ +GIŠ +tara +bak +ana +DUR₂ +šu₂ +DUB +ak +PA +u₂ +GUR₂ +UŠ +PA +giš +KIŠI₁₆ +PA +giš +DIH₃ +ina +A +ŠEG₆ +GA₂ +tara +has₂ +su +A +giš +ŠE +NU +A +GAZI +sar +ana +DUR₂ +šu₂ +DUB +ak +šim +LI +šim +GUR₂ +GUR₂ +x +x +x +ina +urudu +ŠEN +TUR +tara +bak +ina +TUG₂ +te +ṭer₅ +ri +LAL +DIŠ +NA +ŠA₃ +šu₂ +GIG +ma +ŠA₃ +... +x +x +x +x +x +x +... +45373 ana +KI +MIN +U₂ +BABBAR +x +... +x +u₂ +SIKIL +x +x +x +x +x +x +... +ana +DUR₂ +šu₂ +DUB +ak +šim +LI +šim +ŠE +LI +šim +GAM +MA +ILLU +šim +BULUH +ŠIM +HI +A +GAZ +ina +I₃ +UDU +HI +HI +ina +KUŠ +SUR +LAL +ana +KI +MIN +šim +ŠE +LI +BABBAR +ina +KAŠ +NAG +ma +i +ar₂ +ru₃ +SUHUŠ +giš +NAM +TAR +NITA₂ +ina +KAŠ +NAG +ma +i +ar₂ +ru₃ +LAL₃ +KUR +RA +HAD₂ +DA +ina +A +giš +ŠE +NU +tara +has₂ +su +A +GEŠTIN +NA +I₃ +GIŠ +KUM₂ +am +ana +DUR₂ +šu₂ +DUB +ak +PA +giš +šu +še +PA +GIŠ +GI +ZU₂ +LUM +MA +PA +u₂ +ŠAKIRA +PA +u₂ +EME +UR +GI₇ +šim +LI +ZU₂ +LUM +MA +SUD₂ +ina +KAŠ +HI +HI +GUR +ma +HAD₂ +DU +GAZ +SIM +ina +x +x +x +ina +KUŠ +SUR +LAL +ana +KI +MIN +u₂ +KUR +KUR +ina +KAŠ +NAG +ma +i +ar₂ +ru₃ +U₂ +BABBAR +ina +I₃ +GIŠ +NAG +ma +i +ar₂ +ru₃ +u₂ +PEŠ +TUR +ZI +GIŠIMMAR +u₂ +NAM +TAL +šim +LI +GAZI +sar +ina +A +ŠEG₆ +GA₂ +tara +has₂ +su +šim +GUR₂ +GUR₂ +ta +sak₃ +x +x +x +KUM₂ +am +I₃ +GIŠ +ana +ŠA₃ +tu +na +tak +ana +DUR₂ +šu₂ +DUB +ak +PA +giš +ŠENNUR +PA +giš +MA +NU +PA +giš +ŠE +NU +PA +giš +GE₆ +PAR₇ +x +giš +šim +LI +šim +GUR₂ +GUR₂ +GAZ +ina +KAŠ +HI +HI +GUR +ma +HAD₂ +A +GAZ +ina +I₃ +UDU +HI +HI +ina +KUŠ +te +ṭer₅ +ri +LAL +DIŠ +NA +ŠA₃ +šu₂ +GIG +ma(GIŠ) +mim +ma +GIG +u₂ +KUR +RA +u₂ +HAR +HAR +u₂ +KUR +KUR +u₂ +GAMUN +GE₆ +u₂ +ur₂ +ne₂ +e +u₂ +tar +muš₈ +u₂ +IGI +lim +u₂ +eli +kul +la +u₂ +SIKIL +u₂ +im +hur +NIŠ +GURUN +giš +DIH₃ +x +u₂ +x +x +PA +u₂ +UKUŠ₂ +HAB +SUD₂ +ina +KAŠ +NAG +ina +DUR₂ +šu₂ +SI +SA₂ +ina +GE₆ +ina +A +GAZI +sar +ŠEG₆ +GA₂ +x +x +x +... +x +x +x +UZU +kab +ra +ša +ŠAH +GU₇ +TI +... +SUD₂ +ina +I₃ +GIŠ +NU +pa +tan +EME +šu₂ +DAB +bat +... +x +šu₂ +u₂ +sak₆ +ka +... +x +x +ina +I₃ +GIŠ +HI +HI +ta +kan +nak +ma +UD +3 +KAM₂ +GAR +... +i +ar₂ +ru₃ +UD +7 +KAM₂ +NAG +MEŠ +... +ina +KAŠ +SAG +NAG +... +x +PA +giš +NU +UR₂ +MA +... +ina +KAŠ +SAG +NAG +... +x +ina +I₃ +GIŠ +u +KAŠ +SAG +GAZ +... +x +x +ad +... +... +x +... +SILA₁₁ +aš +... +TU₅ +MEŠ +šu₂ +ma +TI +... +NAG +ma +TI +... +TI +uṭ +... +45797 ... +... +x +... +NA₄ +ZU₂ +LUM +MA +x +x +... +A +MEŠ +NU +NAG +A +MEŠ +... +u₂ +KUR +RA +SUD₂ +ina +A +... +BAR +giš +NU +UR₂ +MA +a +ša +im +SI +SA₂ +ina +... +SUM +sar +SIG₇ +su +hi +bi +iš +hi +bi +iš +u₂ +al +lat +x +... +NUMUN +u₂ +a +zu +ki +ra +ni +SUD₂ +... +1 +3 +SILA₃ +A +GEŠTIN +NA +1 +3 +SILA₃ +GAZI +sar +10 +KISAL +MUN +1 +2 +SILA₃ +I₃ +GIŠ +BARA₂ +GA +... +A +UZU +GUR₄ +5 +GIN₂ +MUN +ana +ŠA₃ +ŠUB +ma +NU +pa +tan +NAG +: +SUHUŠ +... +I₃ +UDU +u₂ +UKUŠ₂ +HAB +GAZ +1 +SILA₃ +A +GEŠTIN +NA +ŠEG₆ +GA₂ +ana +ŠA₃ +ŠUB +ma +... +šim +LI +SUD₂ +ina +I₃ +GIŠ +... +DIŠ +ma +UH₂ +TUKU +TUKU +u₂ +LAG +GAN₂ +SUD₂ +ina +A +giš +NU +UR₂ +MA +ŠED₇ +ina +DUR₂ +šu₂ +DUB +ak +ma +TI +ša +ru +ra +ša +u₂ +UKUŠ₂ +HAB +HAD₂ +DU +GAZ +ana +ŠA₃ +NIG₂ +SILA₁₁ +GA₂ +u +LAL₃ +KUR +i +HI +HI +ŠE₁₀ +TU +mušen +MEŠ +u₂ +al +lat +KAŠ +SAG +ZU₂ +LUM +NAG +u₂ +HAB +SUD₂ +ina +I₃ +GIŠ +BARA₂ +GA +NAG +NAG +DIŠ +NA +ŠA₃ +MEŠ +šu₂ +MU₂ +MU₂ +it +ta +ne₂ +bi +ṭu +ŠA₃ +šu +ana +par +re +e +e +ta +ne₂ +pa +aš₂ +ana +TI +šu₂ +SUM +sar +u₂ +GAMUN +GE₆ +TEŠ₂ +BI +SUD₂ +ina +KAŠ +SAG +NU +pa +tan +NAG +MEŠ +TI +ana +KI +MIN +u₂ +SIKIL +SIG₇ +su +SUD₂ +KI +I₃ +ŠAH +HI +HI +NU +pa +tan +u₂ +na +ṣab +KAŠ +BIL₂ +LA₂ +NAG +TI +DIŠ +NA +ŠA₃ +MEŠ +šu₂ +MU₂ +MU₂ +it +te +ne₂ +bi +ṭu +IM +ina +ŠA₃ +šu₂ +NIGIN +ur +i +le +bu +I₃ +UDU +u₂ +UKUŠ₂ +HAB +ana +DUR₂ +šu₂ +GAR +an +u₂ +SUM +sar +u₂ +zi +ba +a +SUD₂ +ina +KAŠ +NAG +MEŠ +2 +UD +me +1 +2 +SILA₃ +TA +AM₃ +I₃ +GIŠ +ana +DUR₂ +šu₂ +DUB +ak +TI +DIŠ +NA +ŠA₃ +MEŠ +šu₂ +MU₂ +MU₂ +hu +it +te +ne₂ +bi +ṭu +NU +pa +tan +KAŠ +LAL₃ +bah +ra +NAG +šu₂ +i +ar₂ +ru +A +GEŠTIN +NA +ŠEG₆ +šal +u₂ +KUR +RA +MUN +TEŠ₂ +BI +SUD₂ +ana +ŠA₃ +GAZ +LAL₃ +u +I₃ +hal +ṣa +ŠUB +ana +DUR₂ +šu₂ +DUB +ak +TI +DIŠ +NA +ŠA₃ +MEŠ +šu₂ +it +te +nen +bi +ṭu₃ +NU +pa +tan +KAŠ +ina +dug +LA +HA +AN +NAG +A +GEŠTIN +NA +ŠEG₆ +GA₂ +u₂ +KUR +RA +MUN +eme +sal +li₃ +ana +ŠA₃ +ŠUB +I₃ +GIŠ +ana +ŠA₃ +tu +na +tak +ana +ŠA₃ +na +aš +pak +ti +DUB +ak +I₃ +GIŠ +ina +ŠU +SI +GUB₃ +ka +ka +lu +šu₂ +ŠEŠ₂ +su +DIŠ +NA +ŠA₃ +MEŠ +šu₂ +it +te +ne₂ +bi +ṭu +I₃ +UDU +UKUŠ₂ +HAB +ana +DUR₂ +šu₂ +GAR +an +SUM +sar +7 +u +7 +u₂ +al +lat +SUM +sar +u₂ +GAMUN +GE₆ +SUD₂ +ina +KAŠ +NAG +LAL₃ +KUR +i +I₃ +GIŠ +ana +DUR₂ +šu₂ +DUB +NUMUN +u₂ +a +zu +ki +ra +a +ni +SUD₂ +GU₇ +DIŠ +ma +UH₂ +TUKU +TUKU +gan +ha +UD +DA +KUR +A +giš +NU +UR₂ +MA +ŠUR +NAG +GA +I₃ +GIŠ +EME +šu₂ +DAB +bat +NAG +1 +SILA₃ +KAŠ +NAG +šim +LI +SUD₂ +ina +KAŠ +NAG +u₂ +GAMUN +GE₆ +sar +SUD₂ +ina +KAŠ +NAG +u₂ +GAMUN +GE₆ +sar +SUD₂ +ina +GEŠTIN +NAG +I₃ +GIŠ +u₂ +al +lat +DIŠ +NA +SAG +ŠA₃ +šu₂ +KUM₂ +ŠA₃ +MEŠ +šu₂ +MU₂ +MU₂ +hu +1 +2 +SILA₃ +šim +HAB +ina +šur +šum +me +KAŠ +ta +rab +bak +ina +TUG₂ +TE +LAL +id +ana +na +aṣ +ma +ti +GAZI +sar +ŠIM +ŠAL +ta +za +ru₃ +IGI +u +MAŠ +SILA₃ +LAL +x +x +x +x +x +x +x +x +x +x +x +x +x +x +šim +LI +šim +ŠE +LI +u₂ +HAR +HAR +ana +KAŠ +ŠUB +x +x +x +x +x +x +x +GAZ +lu +ba +hir₂ +NAG +šu₂ +ina +A₂ +MUŠEN +tu +šap +ra +šu +ma +TI +DIŠ +NA +ŠA₃ +MEŠ +šu₂ +ma +gal +nap +hu +NINDA +MEŠ +KAŠ +MEŠ +ina +KA +šu₂ +GUR +GUR +ra +SAG +DU +su +GABA +su +LAL₂ +id +ra +bi +ik +ZI₃ +KUM +ŠEG₆ +šal +ina +LAL₃ +MEŠ +I₃ +UDU +u +I₃ +NUN +NA +GU₇ +MEŠ +SUM +sar +SUM +SIKIL +sar +GA +RAŠ +sar +sah +le₂ +e +u₂ +ur₂ +ne₂ +e +3 +UD +me +NU +GU₇ +A +NU +TU₅ +ma +TI +DIŠ +NA +ŠA₃ +MEŠ +šu₂ +nap +hu +x +x +KUM₂ +ŠUB +MEŠ +su +NINDA +u +KAŠ +LAL +UH₂ +TUKU +TUKU +ši +ana +TI +šu₂ +u₂ +IGI +lim +u₂ +IGI +NIŠ +SUHUŠ +giš +NAM +TAR +a +he +nu +u₂ +SUD₂ +ina +KAŠ +NAG +šu₂ +i +par +ru +ma +EGIR +an +ne₂ +e +I₃ +hal +ṣa +u +KAŠ +NAG +šu₂ +A +GAZI +sar +u +A +GEŠTIN +NA +ŠEG₆ +šal +ana +DUR₂ +šu₂ +DUB +ak +ma +šim +GUR₂ +GUR₂ +šim +LI +šim +GAM +MA +PA +giš +ŠE +HAR +PA +giš +GE₆ +PAR₃ +PA +giš +ŠE +NU₂ +A +NUMUN +u₂ +ur +ba +ti +7 +U₂ +HI +A +ŠEŠ +TEŠ₂ +BI +GAZ +SIM +KI +I₃ +UDU +DUH +LAL₃ +u +šim +HAB +tu +sa +mah +ina +KUŠ +EDIN +SUR +LAL₂ +su +ma +TI +DIŠ +NA +ŠA₃ +MEŠ +šu₂ +nap +hu +gu +ha +u +UH₂ +TUKU +MEŠ +ši +NINDA +u +KAŠ +LAL +ana +TI +šu₂ +u₂ +KUR +RA +sah +le₂ +e +DIŠ +niš +SUD₂ +ina +KAŠ +NAG +šu₂ +u₂ +ur₂ +ne₂ +e +ina +A +GAZI +sar +ŠEG₆ +šal +ta +ša₂ +hal +ŠED₇ +lu +ba +hir₂ +ana +DUR₂ +šu₂ +DUB +TI +DIŠ +NA +ŠA₃ +MEŠ +šu₂ +nap +hu +SAG +ŠA₃ +šu₂ +ru +pu +ul +ta +TUKU +MEŠ +ši +ana +TI +šu₂ +U₅ +ARGAB +mušen +u₂ +tu +lal +GI +ŠUL +HI +PA +giš +šu +še +ina +MUD₂ +EREN +u +A +GAZI +sar +tu +ka +an +LAL₃ +I₃ +hal +ṣa +I₃ +NUN +u +KAŠ +SAG +ana +ŠA₃ +ŠUB +di +ina +MUL₄ +tuš +bat +ina +še +ri₃ +ta +ša₂ +hal +NU +pa +tan +NAG +ma +TI +DIŠ +NA +ŠA₃ +MEŠ +šu₂ +nap +hu +ZI₃ +ŠE +SA +A +ZI₃ +MUNU₆ +NUMUN +u₂ +KI +d +IŠKUR +di +ik +ta +ša₂ +ZU₂ +LUM +TEŠ₂ +BI +SUD₂ +NU +pa +tan +GU₇ +MEŠ +A +MEŠ +NU +NAG +A +MEŠ +SAG +ŠA₃ +šu₂ +tu +sa +lah₂ +ma +TI +DIŠ +NA +ŠA₃ +šu₂ +e +me +er +10 +KISAL +A +giš +ŠE +NU +10 +KISAL +A +MUN +ina +LAL₃ +u +KAŠ +NAG +ana +KI +MIN +giš +NU +UR₂ +MA +GU₇ +A +giš +NU +UR₂ +MA +NAG +ana +KI +MIN +šim +LI +SUD₂ +ina +KAŠ +NAG +: +ana +KI +MIN +SIG₂ +GAL₄ +LA +munus +ŠU +GI +ina +MURUB₄ +KA +šu₂ +GAR +an +ana +KI +MIN +giš +NU +UR₂ +MA +PA +giš +MA₂ +RI₂ +IŠ +MA₂ +RA +SUD₂ +ina +A +NAG +DIŠ +NA +ŠA₃ +šu₂ +IM +ṣe +en +ŠUM(DIM₃) +GAM +ME +ZABAR +lu +GIR₂ +ZABAR +i +lik +ma +TI +SAHAR +URUDU +NIG₂ +KALAG +GA +tu +uš +ṣe +en +šu₂ +i +ši +hi +iq +ma +TI +DIŠ +NA +ŠA₂ +MEŠ +šu₂ +em +ru +10 +KISAL +PA +giš +šu +nim +10 +KISAL +LAL₃ +ana +ŠA₃ +KAŠ +ŠUB +ina +MUL₄ +tuš +bat +ina +še +ri₃ +NU +pa +tan +NAG +MEŠ +ma +TI +DIŠ +NA +ŠA₃ +šu₂ +em +ru +MU₂ +MU₂ +hu +ŠA₃ +šu₂ +iš +ta +na +si +NINDA +u +A +GUR +SUHUŠ +giš +NAM +TAR +NITA₂ +šim +HAB +ina +KA +šu₂ +i +na +ʾ +is +LAL₃ +KUR +i +ina +KAŠ +SAG +NAG +šim +HAB +ina +KAŠ +SAG +ŠEG₆ +GA₂ +ana +DUR₂ +šu₂ +DUB +ak +PA +giš +GE₆ +PAR₃ +šim +LI +šim +KU₇ +KU₇ +ILLU +a +bu +ka +ti +giš +ŠE +NU +GAZ +ina +I₃ +UDU +HI +HI +ina +KUŠ +TE +LAL +ina +A +giš +ŠE +NU +ir +ta +na +haṣ +DIŠ +NA +ŠA₃ +šu₂ +x +x +x +x +KUM₂ +ŠUB +ŠUB +su +IM +TUKU +TUKU +NINDA +A +GUR +u₂ +IGI +NIŠ +SUHUŠ +giš +NAM +TAR +NITA₂ +ina +KAŠ +SAG +SUD₂ +NAG +šu₂ +EGIR +šu₂ +I₃ +hal +ṣa +ina +KAŠ +NAG +SI +SA₂ +GAZI +sar +A +GEŠTIN +NA +ŠEG₆ +šal +ana +DUR₂ +šu₂ +DUB +šim +LI +x +x +x +šim +HAB +PA +giš +GE₆ +PAR₃ +PA +giš +ŠE +NU +GAZ +ina +I₃ +UDU +HI +HI +ina +KUŠ +TE +LAL +KIMIN +DIŠ +NA +ŠA₃ +šu₂ +x +x +x +x +NINDA +u +A +ina +KA +šu₂ +GUR +GUR +ra +SAG +KI +MEŠ +šu₂ +up +ta +ṭa +aṭ(TA) +ra +x +x +x +x +x +x +x +... +x +x +ina +I₃ +ŠAH +GU₇ +MEŠ +SUM +sar +SUM +SIKIL +sar +x +x +x +x +... +x +... +x +... +47173 DIŠ +NA +ŠA₃ +šu₂ +e +sil +SAG +DU +GU₇ +šu₂ +... +a +ba +du₁₀ +u +me +ni +ir +a +ba +du₁₀ +u +me +ni +ir +... +KA +INIM +MA +LU₂ +es +li +DU₃ +DU₃ +BI +EN₂ +3 +šu₂ +ana +ŠA₃ +ŠID +nu +... +DIŠ +NA +ŠA₃ +šu₂ +NINDA +u +KAŠ +la +i +mah +har +1 +3 +SILA₃ +A +ZU₂ +LUM +MA +1 +3 +SILA₃ +A +GAZI +sar +x +x +x +x +x +x +EGIR +šu₂ +AL +US₂ +SA +A +GEŠTIN +NA +NAG +ma +KUM₂ +ša₂ +ŠA₃ +šu₂ +i +ša₂ +haṭ +aṭ +im +me +si +x +x +x +x +DIŠ +NA +ŠA₃ +šu₂ +NINDA +la +i +mah +har +NUMUN +giš +ŠINIG +SUD₂ +ina +LAL₃ +u +I₃ +NUN +HI +HI +ba +lu +pa +tan +NAG +šu₂ +ma +TI +DIŠ +NA +NINDA +u +KAŠ +LAL +ṭu +u₂ +HAR +HAR +u₂ +NU +LUH +HA +u₂ +ur₂ +nu +u +GAZI +sar +u₂ +ti +ia₂ +ta₅ +u₂ +SUMUN +DAR +u₂ +x +x +x +šim +GUR₂ +GUR₂ +šim +GAM +MA +šim +MAN +DU +giš +EREN +giš +EREN +SUMUN +šim +MUG +ZU₂ +LUM +MA +LAGAB +MUNU₆ +MUN +giš +ŠE +NU +A +GEŠTIN +NA +KALAG +GA +ina +KAŠ +tara +muk +ina +MUL₄ +tuš +bat +ina +še +ri₃ +ina +urudu +ŠEN +TUR +ŠEG₆ +šal +5 +GIN₂ +I₃ +hal +ṣa +ana +IGI +ŠUB +ana +DUR₂ +šu₂ +DUB +ak +ana +ŠA₃ +UTUL₂ +ŠUB +ma +IGI +4 +GAL₂ +LA +U₂ +mat +qa +IGI +4 +GAL₂ +LA +U₂ +TUR +mat +qu +IGI +4 +GAL₂ +LA +u₂ +a +ra +ri +ia₂ +nu +: +u₂ +mer +gi +ra +a +nu +90 +u₂ +si +sin +ni +ŠA₃ +mal +ma +liš +SUD₂ +ina +KAŠ +lu₂ +KURUN₂ +NA +NU +pa +tan +NAG +ma +ina +DUR₂ +šu₂ +SI +SA₂ +ma +TI +DIŠ +NA +ŠA₃ +MEŠ +šu₂ +ga +an +nu +ga +ah +ha +TUKU +NINDA +u +A +muṭ +ṭu₂ +UH₂ +TUKU +MEŠ +ši +u₂ +KUR +RA +SUD₂ +ina +I₃ +GIŠ +NAG +ma +i +ar₂ +ru₃ +u₂ +KUR +RA +sah +le₂ +e +SUD₂ +ina +KAŠ +NAG +u₂ +ur₂ +ne₂ +e +ina +A +ŠEG₆ +šal +tu +kaṣ₃ +ṣa +ana +DUR₂ +šu₂ +DUB +ak +PA +giš +GE₆ +PAR₃ +PA +u₂ +KI +d +IŠKUR +PA +giš +bi +ni +šim +LI +šim +GUR₂ +GUR₂ +šim +GAM +MA +šim +HAB +šim +x +x +ina +A +ZU₂ +LUM +MA +tara +bak +GUR +ma +HAD₂ +A +GAZ +ina +I₃ +UDU +HI +HI +ina +KUŠ +TE +LAL +ina +A +giš +ŠE +NU +ir +ta +na +haṣ +ma +TI +DIŠ +NA +ŠA₃ +šu₂ +e +ta +na +ša₂ +aš +ma +NINDA +u +KAŠ +SAG +la +i +mah +har +MAŠ +SILA₃ +MEŠ +šu₂ +GU₇ +MEŠ +šu₂ +SAG +DU +su +gi +na +a +LAL +x +x +x +UD +7 +KAM₂ +SUM +sar +SUM +SIKIL +sar +GA +RAŠ +sar +NU +GU₇ +ina +A +giš +ŠE +NU +RA +MEŠ +NUMUN +u₂ +UKUŠ₂ +HAB +NUMUN +u₂ +HAR +HAR +ina +KAŠ +NAG +ma +TI +DIŠ +NA +ŠA₃ +šu₂ +ha +ah +ha +DIRI +ana +TI +šu₂ +GI +DU₁₀ +šim +BAL +šim +LI +u₂ +HAR +HAR +šim +ŠE +LI +BABBAR +ina +KAŠ +SAG +ŠUB +ŠEG₆ +šal +ta +ša₂ +hal +lu +ba +hir₂ +10 +KISAL +LAL₃ +ana +ŠA₃ +GAZ +NU +pa +tan +NAG +šu₂ +i +ar₂ +ru₃ +ma +ina +A₂ +GU₂ +ZI +GA +LAL₃ +I₃ +hal +ṣa +u +KAŠ +TEŠ₂ +BI +HI +HI +NU +pa +tan +EME +šu₂ +DAB +bat +NAG +šu₂ +TI +DIŠ +NA +ha +hu +DAB +su +NUMUN +u₂ +SIKIL +NUMUN +giš +GEŠTIN +KA₅ +A +u₂ +AB₂ +DUH +u₂ +NIGIN +sar +u₂ +TAL₂ +TAL₂ +5 +U₂ +MEŠ +ŠEŠ +TEŠ₂ +BI +SUD₂ +ina +A +GAZI +sar +tara +bak +ina +TUG₂ +HI +A +SUR +SAG +ŠA₃ +šu₂ +LAL₂ +id +U₂ +BABBAR +SUD₂ +ina +A +MEŠ +NU +pa +tan +NAG +TI +ana +KI +MIN +ILLU +šim +BULUH +SUD₂ +ina +GEŠTIN +ŠUR +RA +NU +pa +tan +NAG +TI +ana +KI +MIN +u₂ +x +x +SUD₂ +ina +KAŠ +SAG +NU +pa +tan +NAG +TI +DIŠ +NA +IM +ina +ŠA₃ +šu₂ +NIGIN +hur +ana +TI +šu₂ +SUHUŠ +u₂ +EME +UR +GI₇ +ša +ina +ZI +ka +d +UTU +NU +IGI +BI +HAD₂ +A +SUD₂ +ina +KAŠ +SAG +NU +pa +tan +NAG +TI +DIŠ +NA +IM +ina +ŠA₃ +šu₂ +i +le +eb +bu +u₂ +EME +UR +GI₇ +NUMUN +u₂ +EME +UR +GI₇ +DIŠ +niš +SUD₂ +ina +KAŠ +NU +pa +tan +NAG +TI +DIŠ +NA +IM +GIM +di +ik +ši +ina +ŠA₃ +šu₂ +TAG +MEŠ +šu₂ +1 +2 +GIN₂ +giš +EREN +1 +2 +GIN₂ +giš +ŠUR +MIN₃ +1 +3 +GIN₂ +šim +GIR₂ +10 +GIN₂ +giš +EREN +SUMUN +10 +GIN₂ +MUN +eme +sal +li₃ +šim +LI +x +x +x +x +x +x +x +ina +KAŠ +SAG +ŠEG₆ +šal +I₃ +GIŠ +ana +IGI +ŠUB +ana +DUR₂ +šu₂ +DUB +ak +DIŠ +NA +IM +ina +ŠA₃ +šu₂ +uš +tar +ʾ +ab +i +le +he +eb +ki +ib +su +šu₂ +še +pi +BI +GABA +su +u +MAŠ +SILA₃ +MEŠ +šu₂ +GU₇ +MEŠ +šu₂ +UZU +MEŠ +šu₂ +u₂ +šam +ma +mu +šu₂ +u +GIR₂ +GIR₂ +šu₂ +UZU +MIN +šu₂ +ma +ṭu +u +ni +ip +še +DIRI +SAG +MEŠ +šu₂ +i +ta +na +nu +u₂ +KUM₂ +MEŠ +ina +kal +UD +me +u₂ +kil₂ +šu +x +x +x +x +x +x +šim +LI +u₂ +KUR +KUR +u₂ +HAR +HAR +sah +le₂ +e +GAZI +sar +MUN +a +ma +ni₇ +u₂ +ur₂ +ne₂ +e +PA +giš +bi +ni +9 +U₂ +HI +A +ŠEŠ +TEŠ₂ +BI +SUD₂ +ina +GEŠTIN +DU₁₀ +GA +u +KAŠ +SAG +ta +ra +sa +an +ina +GE₆ +ana +IGI +MUL₄ +tuš +bat +ina +A₂ +GU₂ +ZI +GA +ŠEG₆ +šal +ta +ša₂ +hal +ŠED₇ +7 +ŠE +MEŠ +HENBUR₂ +u₂ +UKUŠ₂ +HAB +7 +ŠE +MEŠ +na₄ +AN +ZAH +TEŠ₂ +BI +SUD₂ +ana +ŠA₃ +GAZ +la +am +d +UTU +na +pa +hi +NAG +šu₂ +ina +A₂ +tu +šap +ra +šu₂ +šum₄ +ma +DU₁₀ +GA +NU +IGI +mur +ana +DUR₂ +šu₂ +DUB +ak +TI +DIŠ +NA +NINDA +GU₇ +KAŠ +NAG +ma +la +i +še +eb +bi +ŠA₃ +MEŠ +šu₂ +MU₂ +MU₂ +hu +ŠA₃ +šu₂ +NU +IGI +har +GIM +it +ta +šu +bi +sik +ta₅ +GIG +ŠURUN +GUD +ina +A +ta +mah +ha +ah +ŠEŠ₂ +giš +ZU₂ +LUM +MA +GA +RAŠ +sar +UKUŠ₂ +HAB +x +x +x +NINDA +u +KAŠ +la +i +lem +UD +7 +KAM₂ +A +ša₂(7) +PU₂ +i +ša +ti +DIŠ +NA +hu +šah +hu +DAB +su +1 +SILA₃ +KAŠ +SAG +ina +MUL₄ +tuš +bat +ina +še +ri₃ +x +x +x +x +x +x +x +x +x +DIŠ +NA +ma +ʾ +di +iš +e +na +ah +ma +IM +e +dip +ma +NU +... +x +x +x +x +ina +A +GAZI +sar +ir +ta +na +haṣ +MUN +DUR₂ +NU +LUH +HA +... +x +x +x +x +DIŠ +NA +U₂ +NAG +ma +la +i +ar₂ +ru₃ +ṣe +me +er +a +za +pi +ŠAH +... +A +u +I₃ +GIŠ +ŠEG₆ +šal +EN +ši +bi +šu₂ +u₂ +al +lat +hi +ri +... +DIŠ +NA +U₂ +NAG +ma +la +ip +ru +la +iṣ +nu +uh +NA +BI +ze +e +ze +na +GIG +ana +TI +šu₂ +giš +si +hu +giš +ar₂ +ga +nu +giš +ba +ri +ra +ta₅ +šim +GUR₂ +GUR₂ +šim +LI +šim +GAM +MA +šim +GIG +giš +EN +DI +ina +A +PU₂ +x +x +x +x +NE +su +ana +DUR₂ +šu₂ +DUB +ak +10 +KISAL +šim +GUR₂ +GUR₂ +ŠEŠ₂ +su +ma +ŠA₃ +MEŠ +šu₂ +SI +SA₂ +ma +TI +DIŠ +NA +an +šu₂ +tu₄ +iṣ +bat +su +ma +la +u₂ +šar +da +KAŠ +SAG +ina +ŠEN +TUR +ŠEG₆ +šal +MUN +ana +ŠA₃ +ŠUB +ana +DUR₂ +šu₂ +DUB +ŠU +SI +ka +tug₂ +GADA +NIGIN +MUN +ta +ṣap +pu +DUR₂ +šu₂ +ta +kar +SIG₂ +GAL₄ +LA +munus +ŠU +GI +ina +MURUB₄ +KA +šu₂ +GAR +ina +eš +DIŠ +NA +KAŠ +SAG +NAG +ma +SUHUŠ +MEŠ +šu₂ +pa +al +qa +di +ig +la +ma +a +ṭi +ana +TI +šu₂ +NUMUN +u₂ +SIKIL +NUMUN +u₂ +DILI +NUMUN +giš +bi +ni +NUMUN +u₂ +am +ha +ra +NUMUN +u₂ +IN₆ +UŠ₂ +5 +U₂ +HI +A +ŠEŠ +DIŠ +niš +SUD₂ +ina +GEŠTIN +SIG₃ +aṣ +NU +pa +tan +NAG +ma +ina +eš +DIŠ +NA +KAŠ +NAG +ma +SAG +DU +su +DAB +DAB +su +INIM +MEŠ +šu₂ +im +ta +na +aš₂ +ši +ina +DU₁₁ +DU₁₁ +šu₂ +u₂ +pa +aš₂ +šaṭ +ṭe₄ +en +šu₂ +la +ṣa +bit +LU₂ +BI +IGI +MIN +šu₂ +GUB +za +ana +TI +šu₂ +u₂ +IGI +lim +u₂ +IGI +NIŠ +u₂ +tar +muš +u₂ +HAR +HAR +u₂ +SIKIL +u₂ +DILI +KA +A +AB +BA +u₂ +NU +LUH +HA +NUMUN +u₂ +NIG₂ +GAN₂ +GAN₂ +u₂ +kam +ka +du +u₂ +eli +kul +la +11 +U₂ +HI +A +ŠEŠ +DIŠ +niš +SUD₂ +ina +I₃ +GIŠ +u +KAŠ +ana +IGI +d +gu +la +tuš +bat +ina +še +ri₃ +la +am +d +UTU +MU₂ +hi +la +am +ma +am +ma +iš +ši +qu +šu₂ +NAG +ma +ina +eš +DIŠ +NA +GABA +su +GIG +ma +GIM +ši +ne₂ +e +ti +SAHAR +TUKU +TUKU +ši +ina +da +ba +bi +šu₂ +ik +ka +šu₂ +ik +ta +ner +ru +u₃ +ZE₂ +ip +te +nar +ru +NA +BI +bi +šit +ŠA₃ +GIG +ana +TI +šu₂ +u₂ +EME +UR +GI₇ +ina +KAŠ +NU +pa +tan +NAG +šu₂ +ina +A +GAZI +sar +RA +MEŠ +A +giš +ŠE +NU +ana +DUR₂ +šu₂ +DUB +ZI₃ +GU₂ +TUR +giš +ur₂ +ne₂ +e +ina +gi +SAG +KUD +ina +KA +šu₂ +GID₂ +ad +šim +HAB +I₃ +UDU +ZU₂ +LUM +šim +LI +šim +KU₇ +KU₇ +DIŠ +niš +HI +HI +ina +KUŠ +SUR +LAL +U₂ +BABBAR +ina +I₃ +GIŠ +KI +MIN +GAZI +sar +KI +MIN +A +u₂ +ur₂ +ne₂ +e +u +GAZI +sar +šim +GUR₂ +GUR₂ +KI +MIN +šim +LI +šim +GUR₂ +GUR₂ +MIN +PA +giš +GE₆ +PAR₃ +PA +giš +ŠE +NU +PA +giš +MA +NU +E₂ +NIM +kal +bi +I₃ +DIŠ +niš +HI +HI +ŠU +BI +AŠ +AM₃ +U₂ +BABBAR +ina +I₃ +GIŠ +NAG +šu₂ +ina +A +GAZI +sar +RA +su +ma +A +giš +NU +UR₂ +MA +ana +DUR₂ +šu₂ +DUB +ak +ma +GU₂ +GAL +šim +GUR₂ +GUR₂ +GID₂ +ad +ma +šim +LI +šim +HAB +ILLU +šim +BULUH +giš +bi +nu +u₂ +SIKIL +DIŠ +niš +SUD₂ +ina +I₃ +UDU +HI +HI +GABA +su +LAL +ma +ina +eš +u₂ +EME +UR +GI₇ +ina +KAŠ +NAG +ina +A +GAZI +sar +KI +MIN +GAZI +sar +šim +LI +šim +GUR₂ +GUR₂ +šim +GAM +MA +ŠIM +HI +A +DU₃ +A +BI +PA +giš +GE₆ +PAR₃ +PA +giš +šu +še +KI +MIN +DIŠ +NA +di +ik +šu +ina +GABA +šu₂ +TAG +TAG +su +ma +GIM +ši +ne₂ +ʾ +ti +SAHAR +i +ša₂ +an +na +ʾ +šu +ina +ge +ši +šu +ZE₂ +i +par +ru +ina +da +ba +bi +šu₂ +ik +ka +šu +ik +te +ner +ru +NA +BI +bi +šit +ŠA₃ +bi +GIG +KU₆ +SUM +sar +UZU +GUD +UZU +ŠAH +u +KAŠ +lu₂ +KURUN₂ +NA +la +uš +ta +mah +har +ut +ta +šar +1 +2 +SILA₃ +ZA₃ +HI +LI +1 +2 +SILA₃ +šim +GUR₂ +GUR₂ +1 +2 +SILA₃ +giš +LI +1 +2 +SILA₃ +NUMUN +GADA +1 +2 +SILA₃ +giš +GIG +1 +2 +SILA₃ +giš +EN +DI +1 +2 +SILA₃ +NUMUN +u₂ +qut +ra +ti +1 +2 +SILA₃ +GAZI +sar +1 +2 +SILA₃ +NUMUN +giš +ŠE +NU +1 +2 +SILA₃ +GU₂ +NIG₂ +AR₃ +RA +1 +2 +SILA₃ +BA +BA +ZA +d +ID₂ +1 +2 +SILA₃ +NUMUN +u₂ +ka +man +ta +... +10 +KISAL +ILLU +šim +BULUH +10 +KISAL +KA +A +AB +BA +... +21 +U₂ +HI +A +... +šum +ma +... +... +49019 ... +UD +DA +SA₂ +SA₂ +GAZ +SIM +... +giš +bi +nu +u₂ +IN₆ +UŠ₂ +RA +ma +TI +ana +KI +MIN +... +ina +KAŠ +NU +pa +tan +NAG +ma +TI +ana +KI +MIN +... +u₂ +NAGA +SI +TEŠ₂ +BI +SUD₂ +ina +KAŠ +SAG +SILA₁₁ +aš +ina +KUŠ +SUR +ri +LAL +id +... +SILA₁₁ +aš +ina +KUŠ +MIN +... +SILA₁₁ +aš +ina +SAG +ŠA₃ +šu₂ +LAL +ma +TI +... +x +ina +A +GEŠTIN +NA +KALAG +GA +SILA₁₁ +aš +SAG +ŠA₃ +šu₂ +LAL +ma +TI +... +x +u₂ +KU₆ +HAD₂ +A +GAZ +SIM +ina +KAŠ +SILA₁₁ +aš +KI +MIN +ana +KI +MIN +x +x +x +x +x +u₂ +HAR +HAR +u₂ +KUR +KUR +u₂ +GAMUN +GE₆ +u₂ +tar +muš₈ +x +x +x +x +x +x +DIŠ +niš +SUD₂ +ina +KAŠ +NAG +um +mi +ša₂ +ŠA₃ +šu₂ +ta +ša₂ +haṭ +ma +TI +DIŠ +NA +x +x +x +x +KI +UH₂ +šu₂ +MUD₂ +ŠUB +ŠUB +a +ki +ṣir +te +ŠA₃ +GIG +UD +DA +SA₂ +SA₂ +ŠA₃ +šu₂ +qer +be₂ +na₇ +GIG +u₂ +ur₂ +ne₂ +e +A +GAR +GAR +MAŠ +DA₃ +NUMUN +u₂ +KI +d +IŠKUR +NUMUN +u₂ +IN₆ +UŠ₂ +šim +GUR₂ +GUR₂ +2 +KISAL +KA +A +AB +BA +GAZ +ina +A +PU₂ +tara +bak +GUR +ma +HAD₂ +A +GAZ +ina +A +ZU₂ +LUM +MA +ina +dug +GAN +tara +bak +ina +TUG₂ +SUR +ri +SAG +ŠA₃ +šu₂ +ur +ra +u +GE₆ +LAL +id +DU₈ +šu₂ +ma +A +PU₂ +ta +hab +bu +U₂ +BABBAR +SUD₂ +ina +I₃ +hal +ṣa +EME +šu₂ +DAB +bat +NAG +i +ar₂ +ru +LAL₂ +su +NAG +NAG +šu₂ +iš +tu +NAG +u₂ +1 +2 +SILA₃ +NUMUN +giš +bi +ni +1 +2 +SILA₃ +giš +GEŠTIN +KA₅ +A +1 +2 +SILA₃ +šim +LI +1 +2 +SILA₃ +ZU₂ +LUM +MA +1 +2 +SILA₃ +ZI₃ +GIG +GAZ +ina +A +GAZI +sar +tara +bak +GUR +ma +HAD₂ +A +GAZ +ina +A +ZU₂ +LUM +ina +dug +GAN +tara +bak +ina +TUG₂ +HI +A +SUR +ri +ur +ri +u +GE₆ +LAL +ana +KI +MIN +PA +giš +NU +UR₂ +MA +PA +giš +GE₆ +PAR₃ +PA +giš +NAM +TAR +NITA₂ +ŠIKA +NIG₂ +BUN₂ +NA +ku₆ +ILLU +šim +BULUH +GAZ +ina +A +ZU₂ +LUM +MA +ina +dug +GAN +tara +bak +GUR +ma +HAD₂ +A +GAZ +ina +KAŠ +u +I₃ +GIŠ +ina +dug +GAN +tara +bak +ina +TUG₂ +SUR +ur +ri +u +GE₆ +LAL +id +KU +KU +u₂ +ti +ia₂ +ta₅ +ina +KAŠ +NU +pa +tan +NAG +1 +3 +SILA₃ +ŠE₁₀ +TU +mušen +MEŠ +1 +3 +SILA₃ +NUMUN +u₂ +AB₂ +DUH +1 +3 +SILA₃ +GURUN +u₂ +MAŠ +HUŠ +ta +haš +šal +ina +A +GAZI +sar +tara +bak +GUR +ma +HAD₂ +A +GAZ +ina +A +ZU₂ +LUM +MA +ina +dug +GAN +tara +bak +ina +TUG₂ +SUR +ri +ur +ri +u +GE₆ +LAL +id +ana +KI +MIN +1 +2 +SILA₃ +NUMUN +u₂ +DILI +1 +2 +SILA₃ +u₂ +LAG +GAN₂ +SIG₇ +1 +2 +SILA₃ +U₅ +ARGAB +mušen +1 +2 +SILA₃ +ZI₃ +ZIZ₂ +A +AN +GAZ +ina +A +ID₂ +tara +bak +GUR +ma +HAD₂ +A +GAZ +SIM +ina +A +ZU₂ +LUM +MA +ina +dug +GAN +tara +bak +ina +TUG₂ +SUR +ri +ur +ra +u +GE₆ +LAL +id +NUMUN +giš +GEŠTIN +KA₅ +A +ina +KAŠ +NU +pa +tan +NAG +ina +A +ŠEG₆ +šal +tara +has +su +ana +KI +MIN +ZA₃ +HI +LI +ina +KAŠ +NAG +NUMUN +u₂ +KI +d +IŠKUR +ri +NUMUN +giš +MA +NU +NUMUN +giš +ŠINIG +šim +GUR₂ +GUR₂ +GAZ +ina +A +GAZI +sar +tara +bak +GUR +ma +HAD₂ +A +GAZ +ina +A +ZU₂ +LUM +MA +ina +dug +GAN +tara +bak +ina +TUG₂ +HI +A +SUR +ri +ur +ri +u +GE₆ +LAL +ana +KI +MIN +šim +LI +šim +GUR₂ +GUR₂ +šim +HAB +šim +GAM +MA +u₂ +ba +ri +ra +ta₅ +šim +BULUH +giš +EREN +giš +ŠUR +MIN₃ +šim +BAL +GAZ +ina +A +GAZI +sar +tara +bak +GUR +ma +HAD₂ +A +GAZ +ina +A +ZU₂ +LUM +MA +u +KAŠ +ina +dug +GAN +tara +bak +ina +TUG₂ +HI +A +te +ṭer₅ +ri +ur +ra +u +GE₆ +LAL +id +IM +SAHAR +NA₄ +KUR +RA +ina +KAŠ +NAG +ana +KI +MIN +PA +GIŠ +GI +ZU₂ +LUM +MA +PA +u₂ +SIKIL +PA +u₂ +IN₆ +UŠ₂ +GURUN +GA +RAŠ +sar +GURUN +giš +NU +UR₂ +MA +NUMUN +giš +HA +LU +UB₂ +PA +giš +ASAL₂ +GAZ +ina +A +GAZI +sar +ina +dug +GAN +tara +bak +ina +TUG₂ +SUR +ur +ra +u +GE₆ +LAL +ina +A +ŠEG₆ +šal +tara +has₂ +su +U₂ +ŠEŠ +ina +I₃ +u +KAŠ +NU +pa +tan +NAG +tu +ša₂ +ʾ +ra +šu₂ +ma(GIŠ) +DU₁₀ +GA +GU₇ +DU₁₀ +GA +NAG +ka +la +UD +u +GE₆ +ina +KA₂ +GUB +GUB +ina +giš +NA₂ +šu₂ +la +NU₂ +ina +še +ri₃ +A +KUM₂ +ti₃ +TU₅ +šu₂ +I₃ +GIŠ +KUM₂ +ŠEŠ₂ +UD +3 +KAM₂ +GUR +GUR +šum +DIŠ +NA +KI +UH₂ +šu₂ +MUD₂ +ŠUB +MEŠ +a +NA +BI +ta +aš₂ +ni +qa +GIG +ana +TI +šu₂ +1 +3 +SILA₃ +I₃ +UDU +1 +3 +SILA₃ +ZU₂ +LUM +MA +1 +3 +SILA₃ +šim +HAB +1 +3 +SILA₃ +šim +GUR₂ +GUR₂ +1 +3 +SILA₃ +šim +LI +1 +3 +SILA₃ +šim +BULUH +1 +3 +SILA₃ +DUH +ŠE +GIŠ +I₃ +1 +3 +SILA₃ +NUMUN +giš +bi +ni +8 +U₂ +HI +A +ŠEŠ +DIŠ +niš +GAZ +ina +I₃ +NUN +tal +tap +pat +ina +KUŠ +SUR +IGI +u +MAŠ +SILA₃ +EN +DU₁₀ +GA +šu₃ +3 +ITI +MEŠ +LAL₂ +su +ma +LAL +ta +ina +KA +ka +u₂ +še +ṣa +am +ma +ina +eš +DIŠ +NA +ki +ṣir +ŠA₃ +GIG +NINDA +u +KAŠ +ŠA₃ +šu₂ +la +IGI +šu₂ +ina +KA +šu₂ +GUR +GUR +TUN₃ +šu₂ +i +sa +hal +šu₂ +ana +TI +šu₂ +1 +2 +SILA₃ +sah +le₂ +e +1 +2 +SILA₃ +šim +GUR₂ +GUR₂ +1 +2 +SILA₃ +šim +LI +1 +2 +SILA₃ +u₂ +KI +d +IŠKUR +1 +2 +SILA₃ +ka +si +i +1 +2 +SILA₃ +pa +pa +si +d +ID₂ +1 +2 +SILA₃ +u₂ +KUR +RA +1 +2 +SILA₃ +u₂ +AB₂ +DUH +1 +2 +SILA₃ +ZU₂ +LUM +MA +1 +2 +SILA₃ +DIDA +SIG +1 +2 +SILA₃ +ZI₃ +MUNU₆ +1 +2 +SILA₃ +ZI₃ +GU₂ +GAL +1 +2 +SILA₃ +ZI₃ +KUM +1 +2 +SILA₃ +ZI₃ +GIG +1 +3 +SILA₃ +ŠE₁₀ +TU +mušen +1 +3 +SILA₃ +u₂ +KAM +ti +GAN₂ +10 +KISAL +šim +ŠEŠ +10 +KISAL +KA +A +AB +BA +16 +U₂ +HI +A +ŠEŠ +DIŠ +niš +GAZ +SIM +ina +KAŠ +ina +urudu +ŠEN +TUR +GIM +ra +bi +ki +tara +bak +ina +KUŠ +EDIN +SUR +3 +UD +me +SAG +ŠA₃ +šu₂ +LAL +NINDA +u +KAŠ +ŠA₃ +šu₂ +IGI +šu₂ +ma +ina +eš +DIŠ +NA +ki +ṣir +ŠA₃ +bi +GIG +NINDA +u +KAŠ +ŠA₃ +šu₂ +NU +IGI +šu₂ +ina +KA +šu₂ +GUR +GUR +ip +te +ne₂ +ru +ana +TI +šu₂ +1 +2 +SILA₃ +A +ZU₂ +LUM +MA +1 +2 +SILA₃ +A +GAZI +sar +10 +KISAL +u₂ +KUR +RA +SUD₂ +ana +ŠA₃ +ŠUB +ba +lu +pa +tan +NAG +šu₂ +EGIR +šu₂ +1 +3 +SILA₃ +AL +US₂ +SA +NAG +ina +DUR₂ +šu₂ +GIŠ +ma +NINDA +u +KAŠ +ŠA₃ +šu₂ +KI +MIN +ana +KI +MIN +MUN +KUR +i +MUN +a +ma +ni₇ +DIŠ +niš +SUD₂ +ina +KAŠ +NU +pa +tan +NAG +ma +ina +eš +ana +KI +MIN +ZI₃ +ŠE +SA +A +ZI₃ +HARUB(AMAŠ) +qi₂ +lip₂ +ZU₂ +LUM +MA +SUD₂ +ina +KAŠ +2 +UD +me +ba +lu +pa +tan +NAG +šu₂ +A +NU +NAG +A +SAG +ŠA₃ +šu₂ +tu +sa +lah₂ +ma +ina +eš +DIŠ +NA +NINDA +u +KAŠ +ŠA₃ +šu₂ +NU +IGI +šu₂ +UZU +MEŠ +šu₂ +ir +ta +nam +mu +IM +ina +DUR₂ +šu₂ +NIGIN +ur₂ +ana +TI +šu₂ +1 +2 +SILA₃ +A +ZU₂ +LUM +MA +1 +2 +SILA₃ +A +GAZI +sar +2 +GIN₂ +A +GEŠTIN +NA +2 +GIN₂ +u₂ +KUR +RA +3 +GIN₂ +I₃ +hal +ṣa +3 +GIN₂ +LAL₃ +KUR +i +DIŠ +niš +tuš +te +mid +GAZ +ina +GE₆ +ina +IGI +mul +UZ₃ +tuš +bat +ina +še +ri₃ +ŠEG₆ +šal +ta +ša₂ +hal +ŠED₇ +ina +ŠA₃ +tah +ta +na +su +EGIR +šu₂ +NAG +A +u +KAŠ +DIRI +giš +si +ha +giš +ar +ga +nu +giš +LUM +HA +GAZI +sar +PA +GAZI +sar +NUMUN +giš +ŠE +NU₂ +A +ana +ŠA₃ +ŠUB +ŠEG₆ +šal +ta +ša₂ +hal +mar +ha +ṣi +tu +ša₂ +at +tam +ma +ina +ŠA₃ +RA +su +I₃ +SU +šu₂ +EŠ +aš +giš +GEŠTIN +KA₅ +A +u₂ +EME +UR +GI₇ +SUD₂ +ina +KAŠ +NAG +šu₂ +PA +giš +GE₆ +PAR₃ +PA +giš +šu +še +HAD₂ +A +DIŠ +niš +GAZ +SIM +ina +I₃ +UDU +HI +HI +ina +KUŠ +EDIN +SUR +LAL₂ +su +ma +ina +eš +DIŠ +NA +SAG +ŠA₃ +šu₂ +GU₇ +šu₂ +ina +ge +ši +šu₂ +ZE₂ +im +ta +na +ʾ +NA +BI +qer +be₂ +na +GIG +DUB +2 +KAM₂ +DIŠ +NA +su +a +lam +GIG +ana +ki +is +ŠA₃ +GUR +E₂ +GAL +m +AN +ŠAR₂ +DU₃ +A +MAN +ŠU₂ +MAN +KUR +AN +ŠAR₂ +ki +ša +d +AG +u +d +taš +me +tu₄ +GEŠTU +MIN +ra +pa +aš₂ +tu₄ +iš +ru +ku +uš +e +hu +uz +zu +IGI +MIN +na +mir +tu₄ +ni +siq +ṭup +šar +ru +ti +ša +ina +LUGAL +MEŠ +ni +a +lik +mah +ri +ia +mam₂ +ma +šip +ru +šu +a +tu +la +e +hu +uz +zu +bul +ṭi +TA +muh +hi +EN +UMBIN +liq +ti +BAR +MEŠ +ta +hi +zu +nak +la +a +zu +gal +lu +ut +d +nin +urta +u +d +gu +la +ma +la +ba +aš₂ +mu +ina +ṭup +pa +a +ni +aš₂ +ṭur +as +niq +IGI +KAR₂ +ma +a +na +ta +mar +ti +ši +ta +si +ia +qe₂ +reb +E₂ +GAL +ia +u₂ +kin +7 +u +7 +KA +KEŠDA +x +x +x +x +x +x +x +x +x +x +x +x +EN₂ +sag +ki +mu +un +dab +x +x +x +x +x +x +sag +sahar₂ +ra +mu +un +dab +x +x +x +x +x +x +x +a +da +pa₃ +abgal +x +x +x +x +sag +ki +mu +un +dab +x +x +x +x +x +x +x +x +DU₃ +DU₃ +BI +sig₂ +HE₂ +ME +DA +x +x +x +x +x +x +x +x +x +x +x +na₄ +SAG +DU +E₃ +EN₂ +x +x +x +x +x +x +x +x +x +x +EN₂ +a +ra +tu +e +a +ra +x +x +x +x +x +x +x +šu +du₃ +du₃ +meš +šu +ne +ne +a +meš +eridu +ki +ga +mu +un +tum₂ +TU₆ +EN₂ +DU₃ +DU₃ +BI +giš +PA +GIŠIMMAR +ša₂ +im +SI +SA₂ +ša₂ +ina +NU +IM +i +nam +zu +zu +TI +qe₂ +x +x +x +x +KEŠDA +EN₂ +7 +šu₂ +ŠID +nu +ina +SAG +KI +šu₂ +tara +kas₂ +ma +TI +uṭ +EN₂ +sur +ru +ga +su +ma +hu +ma +ak +tu₂ +ti +e +na +ha +at +ru +x +x +x +x +ki +in +re +eš +na +ha +at +ri +: +uk +kiš +tum +si +na +an +na +x +x +x +x +x +lu +pi +tu +šab +ki +im +: +an +ta +sur +ra +TU₆ +EN₂ +x +x +x +tu +e +di +pa +ra +tu +e +x +x +x +ha +ta +ra +hat +ra +TU₆ +EN₂ +x +x +x +x +x +x +a +ra +ba +še +ra +... +... +x +x +x +x +... +50815 x +x +x +x +x +x +ra +mu +un +dab +x +x +x +x +x +x +x +x +x +DU₃ +DU₃ +BI +na₄ +ZU₂ +GE₆ +na₄ +ŠUBA +x +x +x +x +x +na₄ +NIR₂ +na₄ +ŠUBA +SIG₇ +x +x +x +x +x +x +x +x +x +EN₂ +sag +ki +ni +sag +ki +x +x +x +x +i +bi₂ +ni +i +bi +x +x +x +x +mu +ru +ub +bi +ni +mu +ru +ub +bi +x +x +x +x +he₂ +bi +da +a +na +mul +la +he₂ +en +da +a +na +mul +la +x +x +... +x +... +... +a +šu +u₂ +ana +SAG +DU +šu₂ +... +... +DU₁₀ +GA +tu₄ +ina +SU +NA +GAL₂ +ši +ana +DAB +DU₁₀ +GA +ti +... +... +SAG +NINDU +ana +UGU +ta +za +ru₃ +LAL₂ +su +ma +... +... +na₄ +MIN +BABBAR +na₄ +MIN +GE₆ +ta +sak₃ +ina +I₃ +NUN +HI +HI +UGU +šu₂ +ŠEŠ₂ +sa +ar +ʾi +... +... +MUD₂ +MEŠ +šu₂ +TI +qe₂ +UGU +šu₂ +ŠEŠ₂ +UR +ME +E +ša₂ +E₂ +GAR₈ +ta +sak₃ +x +... +... +ŠID +nu +EN₂ +E₂ +NU +RU +ki +in +ip +ki +ni +ip +ki +ni +ip +šu +uh +ki +ni +ip +ši +ha +ma +... +... +a +šu +u₂ +DAL +DAL +DAB +it +šim +GUR₂ +GUR₂ +GAZI +sar +u +MUN +DIŠ +niš +SUD₂ +ina +A +SAG +DU +su +... +... +a +šu +u₂ +DAB +it +SUHUŠ +giš +šu +ši +GAMUN +ina +KAŠ +SAG +tara +muk +ina +MUL₄ +tuš +bat +ina +še +ri₃ +... +... +GU₇ +ma +TI +gi +ŠA₃ +GI +tur +ar₂ +SUD₂ +ina +I₃ +u +KAŠ +ŠEŠ₂ +ša +pil +ti +giš +KIŠI₁₆ +... +... +a +šu +u₂ +a +hi +iz +e +riš +ti +GAZI +sar +LAL₂ +NUMUN +u₂ +KU₆ +ina +I₃ +SUD₂ +SAG +DU +su +EŠ +MEŠ +ma +... +... +SAG +DU +su +LAL +sah +le₂ +e +ina +KAŠ +NAG +ILLU +šim +BULUH +ana +KA +šu₂ +GAR +an +A +ZU₂ +LUM +MA +... +... +NU +pa +tan +NAG +I₃ +u +KAŠ +NAG +NAG +ma +BURU₈ +1 +2 +SILA₃ +šur +šum +me +KAŠ +1 +2 +SILA₃ +x +... +... +AN +TA +ana +KI +TA +tu +maš +šad +U₄ +10 +KAM₂ +LAL₂ +SUHUŠ +giš +šu +ši +... +... +u₂ +KU₆ +ina +I₃ +SUD₂ +SAG +DU +su +u +ka +la +UZU +MEŠ +šu₂ +... +... +NUNDUN +MEŠ +šu₂ +MU₂ +MEŠ +SAG +DU +su +ana +IGI +šu₂ +GID₂ +DA +su +ŠU +MEŠ +šu₂ +... +... +x +ti +... +te +qi₂ +... +x +te +qi₂ +... +TE +GI +... +ina +I₃ +SUD₂ +KIMIN +... +KIMIN +... +x +IGI +MEŠ +šu₂ +MAR +... +x +ku +... +ti +... +x +... +na₄ +AN +ZAH +GE₆ +na₄ +mu +ṣa +na₄ +ZALAG₂ +na₄ +GUG +na₄ +x +x +... +na₄ +AN +NA +na₄ +MUŠ +GIR₂ +NUMUN +giš +bi +ni +NUMUN +giš +MA +NU +... +U₂ +MEŠ +ŠEŠ +1 +niš +GAZ +ta +ša +pah +ina +I₃ +UDU +ELLAG₂ +GU₄ +GE₆ +... +IGI +MEŠ +šu₂ +ka +a +a +man +nam +ma +MAR +ma +ina +eš +DIŠ +NA +e +nu +ma +bir +ṣa +IGI +ru +3 +šu₂ +ki +a +am +liq +bi +ša₂ +d +en +lil₂ +u +d +nin +lil₂ +ana +ku +ša₂ +d +iš +tar +u +d +na +na +a +ana +ku +i +qab +bi +ma +TI +uṭ +DIŠ +... +ana +ZAG +GUB +zu +TI +qe₂ +ina +IZI +tu +kab +ba +ab +... +ina +LAL₃ +I₃ +NUN +SUD₂ +IGI +MIN +šu₂ +te +eq +qi₂ +ma +ina +eš +... +HUL +bir +ṣi +a +na +LU₂ +NU +TE +e +A +GUB₂ +BA +GIN +an +ana +ŠA₃ +bi +giš +ŠINIG +u₂ +IN₆ +UŠ₂ +... +u₂ +SIKIL +giš +GIŠIMMAR +giš +MA +NU +giš +U₃ +SUH₅ +giš +HAŠHUR +giš +PEŠ₃ +giš +ŠE +NU₂ +A +šim +d +MAŠ +NITA₂ +u +MUNUS +... +ina +UL +tuš +bat +ina +A₂ +GU₂ +ZI +GA +IGI +d +UTU +ina +E₂ +ṭa +bi +TU₅ +šu₂ +im +KAL +im +KAL +GUG +KA +A +AB +BA +... +ina +I₃ +šim +GIR₂ +HE +HE +ŠEŠ₂ +su +ma +KU₃ +BABBAR +KUG +GI +i +mar +ma +HUL +bir +ṣi +ana +LU₂ +NU +TE +DIŠ +... +x +x +giš +ŠINIG +u₂ +IN₆ +UŠ₂ +giš +GIŠIMMAR +giš +HAŠHUR +giš +PEŠ₃ +giš +U₃ +SUH₅ +ana +ŠA₃ +A +PU₂ +ŠUB +di +ma +... +ina +UL +tuš +bat +ina +A₂ +GU₂ +ZI +GA +... +im +KAL +im +KAL +GUG +KA +A +AB +BA +ina +I₃ +šim +BAL +HE +HE +ŠEŠ₂ +su +ma +TUG₂ +DADAG +... +HUL +bir +ṣi +ana +LU₂ +NU +TE +x +x +... +DIŠ +NA +mu +kil₂ +SAG +HUL +ti₃ +DAB +su +... +lu +NITA +lu +MUNUS +ina +UR₃ +tu +še +li +ma +... +li +in +na +di +ina +GE₆ +GIN₇ +d +UTU +e +re +bi +... +IGI +ap +ti +ZI₃ +DUB +DUB +BU +ŠUB +ŠUB +di +... +NU +i +pet +tu +šu +... +u₃ +mu +šu +ša +a +ti +giš +NA₂ +ṣa +al +lu +x +... +DIŠ +NA +mu +kil₂ +SAG +HUL +ti₃ +DAB +su +maš +qi₂ +ta +nar +ma +ak +ta +... +DIŠ +KIMIN +KUM₂ +ina +SU +šu₂ +la +zi +iz +ma +u +ma +gal +i +li +hi +ib +x +... +u +IR +TUK +A +SAR +MUNU₆ +u +KAŠ₃ +a +me +lu +ti +giš +EREN +šim +LI +... +ina +NININDU +UŠ₂ +er +ir +ta +na +haṣ +ma +10 +SILAₓ(KISAL) +giš +KIŠI₁₆ +x +x +... +en₂ +ur +sag +d +asal +lu₂ +hi +igi +bi +he₂ +pa₃ +... +ur +sag +d +ša₃ +zu +igi +bi +he₂ +pa₃ +... +ur +sag +den +ki +igi +bi +he₂ +pa₃ +... +ur +sag +d +nin +urta +igi +bi +he₂ +pa₃ +... +ad +da +mu +dumu +sag +d +... +na +an +de₂ +... +dumu +mu +nam +tar +... +nu +un +bar +... +lu₂ +a +zu +di +ku₅ +... +nu +tar +re +tu₆ +en₂ +ka +inim +ma +sag +hul +ha +za +kam₂ +DU₃ +DU₃ +BI +7 +x +... +ina +DUR +SIG₂ +SA₅ +E₃ +ak +U₂ +x +... +u₂ +IGI +lim +... +x +u₂ +SIKIL +giš +kan +u₅ +NUMUN +giš +ŠINIG +... +x +x +... +ta +la +pap +ina +SAG +KI +šu₂ +KEŠDA +su +x +... +x +... +x +x +... +EN₂ +giš +APIN +ṣu +x +x +... +gir +giš +ša₂ +e +ta +x +... +ti +i +ru +A +ŠA₃ +e +ri +iš +la +a +ši +a +... +A +ŠA₃ +id +ra +nu +... +x +i +ša₂ +ti +i +ri +la +ib +šu +u₂ +... +GIM +id +ra +ni +a +a +u₂ +še +ṣa +... +gir +giš +ši +a +a +ib +ba +ni +... +... +gir +giš +šu +... +... +x +x +... +51875 DIŠ +NA +SAG +DU +su +GIG +MEŠ +mat +qu +ti +TAB +UD +DA +DIRI +I₃ +UDU +x +x +x +x +x +x +x +x +x +ina +I₃ +giš +EREN +HI +HI +SAG +DU +su +x +x +x +DIŠ +KIMIN +U₂ +GAR +šu₂ +GIM +giš +MA +NU +u₂ +mur +ra +nu +MU +šu₂ +HAD₂ +A +SUD₂ +3 +šu₂ +ina +x +x +x +x +x +x +x +x +TUG₂ +su +u +ŠEŠ₂ +za +ku +ti +šu₂ +x +x +DIŠ +KIMIN +u₂ +mur +ru +MU +NI +HAD₂ +A +SUD₂ +ina +A +HI +HI +x +x +x +x +TUG₂ +su +u +ŠEŠ₂ +za +ku +ti +šu₂ +MU₂ +ah +u₂ +IGI +lim +ina +I₃ +giš +EREN +HI +HI +x +x +x +DIŠ +NA +SAG +DU +su +GIG +MEŠ +mat +qu +ti +DIRI +zap +pi +ŠAH +MUN +ZI₃ +KUM +GIR₃ +PAD +DU +ša₂ +UDU +NITA₂ +tur +ar₂ +SAG +DU +su +SAR +ab +I₃ +ŠEŠ₂ +MAR +ina +I₃ +GIŠ +ŠEŠ₂ +U₂ +BABBAR +SUD₂ +MAR +šu +ru +uš +UKUŠ₂ +HAB +HAD₂ +A +KUM +MAR +ZI₃ +MUNU₆ +ZI₃ +KUM +GIR₃ +PAD +DU +UDU +NITA₂ +DIŠ +niš +tur +ar₂ +SUD₂ +MAR +ru +GUR +an +nu +ha +ru +na₄ +ga +bi +i +DIŠ +niš +ŠEG₆ +SUD₂ +ina +I₃ +EŠ +MEŠ +MAR +x +x +x +x +x +x +A +GEŠTIN +NA +ŠEŠ₂ +u₂ +KUR +RA +SUD₂ +MAR +IM +GU₂ +EN +NA +ina +A +ZU₂ +LUM +MA +SILA₁₁ +LAL +giš +MAŠ +HUŠ +BIL +lu +I₃ +NUN +EŠ +LAL +x +x +x +SUD₂ +MAR +giš +nu +ur₂ +ma +a +SUD₂ +MAR +ŠURUN +U₈ +UDU +HI +A +ina +KAŠ +SILA₁₁ +aš +LAL +x +x +x +tur +ar₂ +SUD₂ +ŠEŠ₂ +DIŠ +NA +SAG +DU +su +GIG +KU₇ +KU₇ +DIRI +SAG +DU +su +SAR +ab +sah +le₂ +e +SUD₂ +10 +GIN₂ +ILLU +šim +BULUH +5 +GIN₂ +šim +HAB +x +x +NAGA +SI +šim +GUR₂ +GUR₂ +šim +LI +ana +ŠA₃ +bi +ŠUB +di +ina +A +GEŠTIN +NA +HI +HI +x +x +x +LAL₂ +ma +TI +DIŠ +KIMIN +MUN +a +ma +ni +ta +šar₂ +rap +SAHAR +URUDU +na₄ +ga +bi +i +DIŠ +niš +tu +sa +mah +ina +GEŠTIN +BIL +LA₂ +HI +HI +LAL +su +ma +UD +3 +KAM +NU +DU₈ +ina +DU₈ +ka +KAŠ₃ +KUM₂ +ta₅ +LUH +si +ZI₃ +BAPPIR +MUD₂ +e +re +ni +ŠEŠ₂ +UD +5 +KAM +U₂ +HI +A +ŠEŠ +ma +MAR +LAL +su +ma +TI +DIŠ +KIMIN +u₂ +ru +uš +ru +uš +ša +U₂ +BABBAR +BAR +giš +NU +UR₂ +MA +NA₄ +ZU₂ +LUM +MA +u₂ +LAG +GA₂ +sah +le₂ +e +BIL +ti₃ +GURUN +u₂ +KUR +RA +u₂ +NU +LUH +HA +u₂ +zi +ba +a +ina +na₄ +ur +ṣi +SUD₂ +ZI₃ +BAPPIR +MUD₂ +e +re +ni +EŠ +MEŠ +U₂ +HI +A +ŠEŠ +MAR +LAL +su +ma +TI +DIŠ +KIMIN +KAŠ₃ +KUM₂ +tu +ša +GUD +ina +A +GEŠTIN +NA +KALAG +GA +SILA₁₁ +aš +UD +3 +KAM +LAL +su +x +šid +su +x +x +x +x +ana +IGI +GIG +GAR +an +u₂ +HAB +NA₄ +ZU₂ +LUM +MA +tur +ar₂ +SUD₂ +x +x +x +x +ti +x +MAR +DIŠ +KIMIN +giš +NU +UR₂ +MA +e +mi +il +ta +u₂ +zi +ba +a +... +x +x +LAL₃ +x +x +ina +IZI +tu +ša₂ +ha +an +x +x +x +SAG +DU +su +LUH +si +SAR +ab +... +x +x +x +ŠEŠ₂ +ma +TI +DIŠ +NA +SAG +DU +su +GIG +MEŠ +KU₇ +KU₇ +DIRI +x +... +x +x +x +x +x +x +... +x +... +x +... +52432 DIŠ +NA +... +SAG +DU +su +x +x +... +DIŠ +KIMIN +NAGA +SI +GAZ +SIM +x +x +... +DIŠ +KIMIN +KAŠ₃ +AB₂ +KUM₂ +te +SAG +DU +su +x +... +DIŠ +NA +MURUB₄ +SAG +DU +šu₂ +GIR₂ +GIR₂ +su +UGU +šu₂ +x +x +x +x +x +x +ŠEŠ₂ +DUB +4 +KAM +DIŠ +NA +UGU +šu₂ +KUM₂ +u₂ +kal +E₂ +GAL +m +aš +šur +DU₃ +A +MAN +ŠU₂ +MAN +KUR +aš +šur +ki +ša +d +AG +u +d +taš +me +tu₄ +GEŠTU +MIN +DAGAL +tu₄ +iš +ru +ku +uš +i +hu +uz +zu +IGI +MIN +na +mir +tu +ni +siq +ṭup +šar +ru +ti +ša +ina +LUGAL +MEŠ +ni +a +lik +mah +ri +ia +mam₂ +ma +šip +ru +šu +a +tu +la +i +hu +uz +zu +bul +ṭi +TA +muh +hi +EN +UMBIN +liq +ti +BAR +MEŠ +ta +hi +zu +nak +la +a +zu +gal +lu +tu₄ +d +nin +urta +u +d +gu +la +ma +la +ba +aš₂ +ba +aš₂ +mu +ina +DUB +MEŠ +ni +aš₂ +ṭur +as +niq +IGI +KAR₂ +ma +a +na +ta +mar +ti +ši +ta +as +si +ia +qe₂ +reb +E₂ +GAL +ia +u₂ +kin +52620 EN₂ +sag +ki +ni +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +mu +ru +ub +bi +ni +mu +ru +ub +bi +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +DU₃ +DU₃ +BI +u₂ +aš +lam +NITA₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +e +ma +KA +KEŠDA +EN₂ +ŠID +nu +x +x +x +x +x +x +x +x +x +x +x +KI +KA +KEŠDA +ina +sig₂ +HE₂ +ME +DA +NIGIN +mi +x +x +x +x +x +x +EN₂ +id₂ +da +ta +tir +gal +gal +la +ta +x +x +x +x +x +x +mul₄ +mul₄ +giš +geštin +gir₂ +mu +un +kar +re +x +x +x +x +x +x +x +šu +mu₂ +mu₂ +e +de₃ +mul +mul +x +x +x +x +x +x +x +x +x +x +x +x +52770 x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +iti +KIN +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ŠEG₆ +šal +GU₇ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +GU₇ +62396 DU₃.DU₃.BI +... +5 +KA.INIM.MA +x +x +x +x +EN₂ +su.ub +hur.ri.im +su.ub +... +ša₂ +sa.ku.tu₂ +hi.si +a.pi.il.lat +aš +kur.ba.an.ni +... +KA.INIM.MA +GIG.GIR +ZI-hi +DU₃.DU₃.BI +SIG₂ +SA₅ +... +EN₂ +ma-mit +GIM +šar-ra-qi₂ +ina +KA₂ +pil-ši +un +gi +ha +ba +x +x +x +x +x +x +x +x +x +x +x +x +DU₃.DU₃.BI +ina +ŠIM +IGI +GIG +ta-kar +hu-bu₄-uš +SUN₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +IGI +GIG +MAR +{šim}ŠEŠ +ina +IZI +tur-ar₂ +IGI +GIG +x +x +x +x +x +x +x +x +x +x +x +x +x +x +IGI +GIG +MAR +TI +GUD +ID₂ +ina +IZI +tur-ar₂ +IGI +GIG +x +x +x +x +x +x +x +x +x +SUN₂ +{lu₂}KURUN₂.NA +IGI +GIG +ta-kar +x +x +x +x +x +x +x +x +x +x +x +2 +KA.INIM.MA +x +x +x +x +x +x +DIŠ +NA +SAG.DU-su +gur-ru-ud +sah-le₂-e +si-ki-tu₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ina +A +NAGA +SAG.DU-su +LUH-si +I₃.GIŠ +EŠ.MEŠ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +KI +MIN +SAG.DU-su +tu-gal-lab +... +{u₂}HAB +SUD₂ +MAR +{u₂}ZA.BA.LAM +... +x +x +x +x +x +x +x +x +x +x +x +x +a-na-ku +u₂-ša₂-an-ni +x +x +x +x +x +x +x +TI-e +... +LI.DUR +ŠID-nu +x +x +x +x +{gi}pisan-gen₇ +keš₂-da +x +x +x +x +x +x +x +x +x +x +x +a-ge₆-a +nu-tuku +x +x +x +x +x +x +x +x +x +x +x +x +nu-ku₄-ku₄ +... +nig₂ +ge₂₆-e +gen-na +dumu-gu₁₀ +x +x +x +x +x +x +x +x +x +x +x +šu +u-me-ti +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ka-bi-ta +u-me-ni-gar +x +x +x +x +x +x +x +x +x +x +x +x +x +he₂-en-si-il-e +x +x +x +x +x +x +x +he₂-em-ma-ra-e₃ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ina +KAŠ +NAG-ma +ina-eš +... +ŠA₃ +GIG +... +ka-keš₂-bi +he₂-du₈-a +... +ka-keš₂-bi +he₂-du₈-a +x +x +x +x +x +x +x +x +x +x +x +x +ina +KA-šu₂ +u₂-man-zaq-ma +ina-eš +... +SIG₃.SIG₃-ta +ma-la-a +rit-ta-šu₂ +... +a-ha-tu +mu-še-qa-at +re-ši-šu₂ +... +na-ši +pat-ri +TU₆ +EN₂ +x +x +x +x +x +x +x +x +x +x +x +ana +UGU +EN₂ +ŠUB-di +ina +KA-šu₂ +u₂-man-zaq-ma +ina-eš +x +x +x +x +x +x +x +x +x +x +x +x +as-suh-šu₂-ma +iṣ-ṣa-bat +ŠA₃-bi +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +KI +DU₁₁.GA-ma +iṣ-ṣa-bat +ŠA₃-bi +AN +u +KI +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +a-na +u₂-ma-mi +DU₁₁.GA-ma +iṣ-ṣa-bat +ŠA₃-bi +u₂-ma-me +x +x +x +x +x +x +x +x +x +x +x +x +x +ŠA₃-bi +{d}UTU +lip-pa-šir +x +x +x +x +x +x +x +ŠA₃-bi +u₂-ma-me +lip-pa-šir +x +x +x +x +x +x +x +x +x +x +x +x +šam-ma-ka +NAG-šu₂ +lib-luṭ +... +U₂ +KI +KI +MIN +KI +MIN +... +ŠA₃-bu +i-re-du-šu +... +ap-pi +šil-ta-hi +ša₂ +7 +KA.KEŠDA-MEŠ-šu₂ +7-šu₂ +u +7-šu₂ +... +SAHAR +TA +{urudu}na-ah-bi +ana +{urudu}na-ah-bi +x +x +x +x +x +x +x +x +TI-qe₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ZI₃ +ŠE.SA.A +ina +A +GAZI{sar} +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ARA₃-ti₃ +{šim}GUR₂.GUR₂ +NAGA.SI +x +x +x +x +x +x +x +MUN +eme-sal-li₃ +mal₂-ma-liš +HI.HI +ina +x +x +x +x +x +x +x +x +x +x +ZA₃.HI.LI +1/3 +SILA₃ +ŠIKA +IM.ŠU.RIN.NA +10 +GIN₂ +x +x +x +x +x +x +x +x +GAZI{sar} +SILA₁₁-aš +LAL-ma +UD.3.KAM₂ +NU +DU₈ +EGIR +na-aṣ-ma-da-te +an-na-ti +10 +GIN₂ +ZA₃.HI.LI +ša₂ +KA +x +x +ša₂ +hul-qu +ana +ŠA₃ +NU +ŠUB-u₂ +MUN +A.GEŠTIN.NA +NU +x +x +x +x +x +x +x +GU₇ +5 +GIN₂ +ZA₃.HI.LI +ARA₃-ti₃ +ina +KAŠ +SIG₃-aṣ-ma +NAG-šu₂ +u₂-za-ka-ma +x +x +x +x +x +x +AN.ZAH +SUD₂ +x +x +x +x +x +x +x +x +x +x +x +x +ZA.BA.LAM +1/3 +SILA₃ +{u₂}x +x +x +x +x +x +x +x +x +x +x +x +x +LAL-ma +UD.3.KAM₂ +NU +DU₈ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +lu-u₂ +ina +KAŠ.SAG +x +x +x +x +x +x +x +DIŠ +NA +SAG.KI.DAB.BA +TUKU.TUKU +x +x +x +x +x +x +x +x +x +UGU-šu₂ +KUM₂ +x +x +x +x +x +x +x +x +x +x +ŠU₂ +LUGAL +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ana +TI.BI +x +x +x +x +x +x +x +x +x +x +x +x +x +ŠEŠ₂-su-ma +TI +x +x +x +x +x +x +x +x +x +x +x +x +x +I₃.GIŠ +ŠEŠ₂-MEŠ-su +{u₂}an-ki-nu-ti +x +x +x +x +x +x +x +x +x +ta-na-ṣar-BI-ma +TI +x +x +x +x +x +x +x +x +x +x +x +TI-šu₂ +I₃.GIŠ +{šim}GUR₂.GUR₂ +ŠEŠ₂-su +x +x +x +x +x +x +x +x +x +x +x +x +NAG-šu₂ +ina +A₂ +tu-šap-ra-šu₂-ma +TI +x +x +x +x +x +x +x +x +ŠUB.ŠUB-su +ana +TI-šu₂ +I₃.GIŠ +{u₂}ap-ru₃-ša₂ +ŠEŠ₂-su +x +x +x +x +x +x +x +x +{šim}GUR₂.GUR₂ +NAG-MEŠ-ma +TI +x +x +x +x +x +x +x +x +x +x +ana +TI-šu₂ +I₃.GIŠ +{šim}GUR₂.GUR₂ +I₃.GIŠ +{šim}LI +ŠEŠ₂-su +x +x +x +x +x +x +x +x +x +i-na-qu₂ +tu-ṣar-raš(BI)-ma +TI +x +x +x +x +x +x +x +x +x +x +x +{u₂}ap-ru₃-ša₂ +{u₂}il₃-kul₂-la +ša₂ +PU₂ +x +x +x +x +x +x +x +x +x +ŠEŠ₂-su-ma +TI +x +x +x +x +x +x +x +x +x +tu-bal +ta-sak₃ +ina +I₃ +HI.HI +ŠEŠ₂-MEŠ-su-ma +TI +x +x +x +x +x +x +x +tu-bal +ta-sak₃ +ina +I₃ +HI.HI +ŠEŠ₂-MEŠ-su-ma +TI +DIŠ +NA +x +x +x +x +MUR-MEŠ +GIG-ma +NA +BI +ṣi-na-ah-tu-ra +... +{šim}ŠEŠ +3 +U₂-HI.A +ša₂-šu₂-nu +x +x +x +x +... +ta-sak₃ +ina +I₃ +x +x +x +x +... +DIŠ +NA +NINDA +GU₇ +KAŠ +NAG-ma +ŠA₃-MEŠ-šu₂ +in-nem-me-ru +in-ne₂-bi-ṭu₂ +x +x +x +x +x +x +UD.DA +SA₂.SA₂ +NA₄ +ZU₂.LUM.MA +GAZ +GIM +KAM.ZI₃.DA +tara-bak +x +x +x +x +x +... +ina +{dug}UTUL₇ +ŠEG₆-šal +... +... +x +x +... +... +i-lu-ru +sa-a-mu +GAZ +SAG.DU-su +... +... +e-qi-di +ša₂ +la +MUN +GAZ +ina +GA +HI.HI +... +... +x +{u₂}i-lu-ru +sa-a-mu +SAG.DU-su +še +bi +... +... +tu-kaṣ₃-ṣa +EGIR-šu₂ +e-qi-di-ma +ša +la +MUN +ana +x +... +... +LAL₂-id +SAG.DU-su +ina +{tug₂}ṣi-in-di +... +... +x +šu₂ +la +ta-ṣa-ba +... +... +x +ZI₃ +bu-ṭu-tu₂ +ina +A +tara-bak +SAG.DU-su +LAL₂ +... +... +PIŠ₁₀.{d}ID₂ +NAGA.SI +U₅ +ARGAB{mušen} +... +... +ŠEŠ +DIŠ-niš +ina +GISSU +HAD₂.DU +GAZ +SIM +... +... +gu-riš-tu₂ +i-tel-li +... +... +x +x +x +x +x +... +NUMUN +{u₂}NU.LUH.HA +... +NUMUN +{u₂}AB₂.DUH +... +NUMUN +{u₂}u₅-ra-nu +... +DIŠ +NA +ki-is +ŠA₃ +GIG +... +ul-tu +x +... +DIŠ +NA +ki-is +ŠA₃ +GIG +... +NUMUN +{u₂}x +... +ul-tu +x +... +x +x +x +... +... +x +... +GUR.GUR-šu-ma +TI +... +NA +BI +aš-rat +{d}nin-urta +KIN-ma +DUG₄.GA +x +x-šu₂ +... +I₃.GIŠ +{šim}GIG +SUD +{sig₂}AKA₃ +NIGIN-mi +... +x +bi +za +te +I₃ +{šim}LI +... +GUR.GUR-šu-ma +TI +... +NA +BI +aš-rat +{d}UTU +KIN-ma +... +x +NIGIN-mi +ana +ŠA₃ +GEŠTU-MIN-šu₂ +GAR-an +... +x +... +... +PIŠ₁₀.ID₂ +x +x +x +x +x +x +x +x +... +NAM.LU₂.U₁₈.LU +x +x +x +x +x +x +x +x +x +... +{giš}EREN +TAG-at +x +x +x +x +x +x +... +ŠEŠ₂-su +ŠE₁₀ +x +x +x +x +... +LU₂.U₁₈.LU +x +x +x +x +x +... +te-ṭer₅-ri +LAL +... +{u₂}IGI-lim +... +NU +pa-tan +NAG +... +ZU₂.LUM +... +SUR +LAL +... +x +DIŠ +NA +IGI-MIN-šu₂ +mur-din-ni +DIRI +sah-le₂-e +ZI₃ +ŠE.SA.A +ina +KAŠ +tara-bak +LAL +UD.3.KAM₂ +IGI.MIN-šu₂ +NU +DU₈ +ka-la +UD-me +3-šu₂ +KEŠDA +ina +4 +UD-mi +ina +{šim}MAN.DU +er-ri +IGI.MIN-šu₂ +ta-kad-da-ad +A +ina +ŠA₃ +IGI.MIN-šu₂ +ŠUB +IGI.MIN-šu₂ +tu-šak-kal +qer-ša₂ +em-ma +1-šu₂ +2-šu₂ +3-šu₂ +IGI.MIN-šu₂ +KEŠDA +I₃.UDU +kur-sin-ni +MAŠ.DA₃ +IGI.MIN-šu₂ +x +x-pap +ina +EGIR-ti₃ +ina +ir-ri +A.GAR₅ +SUD₂ +IGI.MIN-šu₂ +MAR +{giš}HAB +SUD₂ +ana +UGU +IGI.MIN-šu₂ +ta-bi-la₁₂ +MAR +LAL +ka-la +UD-me +3-šu₂ +KEŠDA +u₂-kal-ma +ZI +{giš}MAŠ.HUŠ +u +{giš}šinig +NUMUN +{u₂}KI.{d}IŠKUR +{šim}LI +ŠE.SA.A +sah-le₂-e +HE.HE +ta-bi-la₁₂ +ana +UGU +SAG.DU-šu₂ +MAR +SAG.DU-su +LAL-ma +UD.3.KAM₂ +NU +DU₈ +ina +4 +UD-me +DU₈-šu₂-ma +SAG.DU-su +tu-gal-lab +U₂ +rib-ka +IGI.MIN-šu₂ +MAR.MEŠ +ina-eš +U₂.BABBAR +U₅.ARGAB{mušen} +{mun}eme-sal-li₃ +NA₄ +ga-bi-i +NAGA.SI +{šim}SES +IM.GU₂.EN.NA +GAZI{sar} +PAP +8 +U₂.MEŠ +ṭi₅-pu +šum-ma +NA +IGI.MIN-šu₂ +UD.DA +ha-an-ṭa +u +mur-din-ni +DIRI +U₂.BABBAR +NA₄ +ga-bi-i +{mun}eme-sal-li₃ +an-nu-u₂ +ṭi-pu +ša₂ +IGI.MIN +{šim}GUR₂.GUR₂ +ZI₃ +ŠE.SA.A +GAZI{sar} +an-nu-u₂ +ṭi-pu +ša₂ +IGI.MIN +DIŠ +NA +IGI.MIN-šu₂ +GID₂.DA.GID₂.DA +u₂-kal-la +ana +E₂ +a-hi-i +DU-ma +KA₂ +GU₃-si +ki-ma +x +... +... +GID₂.DA.GID₂-du +KIMIN +GID₂.DA.GID₂-du-ku-nu-ma +tab-la +MIN +... +a-na +E₂ +NU +e-de-e +DU-ma +KA₂ +GU₃-si +ki-ma +x +x +x +... +HI +x +x +x +GID₂.DA.GID₂-du +KIMIN +GID₂.GID₂-ku-nu-ma +tab-la +x +... +DIŠ +NA +ina +IGI.MIN-šu₂ +li-piš-tu₄ +{šim}GUR₂.GUR₂ +{šim}LI +{šim}HAB +NUMUN +ŠINIG +... +SUD₂ +... +DIŠ +NA +ina +IGI.MIN-šu₂ +SIG₂ +a-ṣa-at +u +IGI.MIN-šu₂ +a-ša₂-a +MUN +kam₂-ma +I₃.UDU +ELLAG₂ +... +ša₂ +UDU.NITA₂ +LAL₃.KUR.RA +mal₂-ma-liš +SUD₂ +ina +I₃.NUN +HE.HE +IGI.MIN-šu₂ +MAR +ta-maš-aš +... +DIŠ +NA +IGI.MIN-šu₂ +UZU +a-li-ka₁₃ +DIRI-a +ana +TI-šu₂ +... +x +x +NUMUN +GI.ZU₂.LUM.MA +ina +LAL₃ +SUD₂ +MAR +x +... +x +x +{na₄}as-har +ina +I₃.NUN +SUD₂ +MAR +x +... +DIŠ +NA +IGI.MIN-šu₂ +UZU +DU-kam₂ +DIRI-ma +u +DU-ak +ana +TI-šu₂ +x +... +{šim}GIG +U₂.BABBAR +U₅.ARGAB{mušen} +{mun}eme-sal-li₃ +1-niš +SUD₂ +... +ina +MUD₂ +{giš}EREN +lu +ina +I₃+GIŠ +{giš}EREN +HE.HE +ZA.NA +DU₃-uš +ina +A.MEŠ +SUD₂ +IGI.MIN-šu₂ +MAR +DIŠ +NA +IGI.MIN-šu₂ +UZU +u +MUD₂ +DIRI.MEŠ +{šim}SES +{u₂}KUR.RA +U₂.BABBAR +I₃.UDU +{šim}GIG +U₅.ARGAB{mušen} +sah-lu-u +U₂.MEŠ +an-nu-ti +te-qit +ša₂ +UZU +DU +DIŠ +NA +IGI.MIN-šu₂ +qu₃-qa-ni +DIRI.MEŠ +gu-ru-uš-ga-ra-aš +ša +ŠAH +... +ina +TUG₂ +te-sip +7 +UD-me +ina +KUN₄ +te-te-mer +E₁₁-ma +... +x +x +mal-ma₂-liš +SUD₂ +x +x +x +x +x +x +... +... +ina +I₃.UDU +GIR₃.PAD.DU +LUGUD₂.DA +UDU +... +x +x +x +SUD₂ +MAR +x +x +x +... +mal₂-ma-liš +SUD₂ +ina +LAL₃ +I₃.NUN +I₃.GIŠ +{giš}EREN +SAHAR.URUDU +SUD₂ +MAR +DIŠ +KIMIN +ZI₃ +{d}ŠE.TIR +KI +ŠE.SA.A +SUD₂ +ana +UGU +IGI.MIN-šu₂ +DUB +DIŠ +NA +IGI.MIN-šu₂ +... +ina +I₃.UDU +ELLAG₂ +UDU.NITA₂ +GAB.LAL₃ +1-niš +HE.HE +ina +I₃.UDU +GIR₃.PAD.DU +GID₂.DA +SUD₂ +te-eq-qi₂ +DIŠ +i-na +IGI +x +x +x +x +x +i-te-ne₂-ṭa-a +NA +BI +KIN-šu₂ +SUMUN-ma +IGI.MIN-šu₂ +ip-pa-a +ana +TI-šu₂ +1 +GIN₂ +x +x +x +x +x +ina +I₃.NUN +SUD₂ +IGI.MIN-šu₂ +MAR.MEŠ +DIŠ +NA +IGI.MIN-šu₂ +nu-up-pu-ha +... +ZI₃ +{šim}GUR₂.GUR₂ +ZI₃ +ŠE.SA.A +GAZ +SIM +ina +KAŠ +tara-bak +IGI.MIN-šu₂ +LAL +U₂.BABBAR +NA₄ +ga-bi-i +{mun}eme-sal-li₃ +U₂.HI.A +ṭi-pu +ša₂ +IGI.MIN +DIŠ +NA +IGI.MIN-šu₂ +bar-ra +u +ER₂ +u₂-kal-la +... +GAB.LAL₃ +x +x +x +x +7 +UD-me +ina +KUN₄ +te-te-mer +E₁₁-ma +... +x +... +DIŠ +NA +IGI.MIN-šu₂ +... +SUD₂ +IGI.MIN-šu₂ +MAR +x +... +DIŠ +NA +IGI.MIN-šu₂ +ar-pa +... +ina +I₃ +u +SAHAR.URUDU +ša +ŠEN.TUR +SUD₂ +IGI.MIN-šu₂ +MAR +ŠIKA +LIBIR.RA +ša₂ +ki-ib-ša +TUK-u₂ +ina +I₃ +SAHAR.URUDU +SUD₂ +MAR +LAL₃.KUR.RA +... +DIŠ +NA +IGI.MIN-šu₂ +ṣu-uh-hu-ta +GEŠTIN.KA₅.A +SIG₇-su +tu-ha-sa +A.MEŠ-šu₂ +ina +{dug}UTUL₂ +tara-bak +IGI +DUL-ma +ša₂ +AN.TA +i-šal-lu +ina +SAHAR.URUDU +u +I₃.GIŠ +SUD₂ +MAR +DIŠ +KIMIN +ZA₃.HI.LI +ina +GA +ta-ka-aṣ +ina +NININDU +te-ep-pi +ma-ʾ-da +la +i-ba-x +... +I₃.UDU +{šim}GIG +{u₂}KUR.KUR +NA₄ +ga-bi-i +U₂.BABBAR +GAZI{sar} +ina +I₃.NUN +SUD₂ +IGI.MIN-šu₂ +MAR +DIŠ +KIMIN +NINDA +ši-ib-ri +tur-ar₂ +SUD₂ +ki-ma +ṭi-pi +te-ṭe-ep-pi +DIŠ +KIMIN +ZI₃ +GU₂.GAL +ZI₃ +GU₂.TUR +ZI₃ +GAZI{sar} +sah-le-e +qa-la-a-ti +bal-ṭa-ti +ina +{dug}UTUL₂ +tara-bak +LAL +DIŠ +KIMIN +{šim}BAL +GAZI{sar} +ina +GA +SUD₂ +IGI.MIN-šu₂ +MAR +DIŠ +KIMIN +U₂.BABBAR +AN.ZAH.GE₆ +tur-ar₂ +ina +I₃.NUN +SUD₂ +MAR +DIŠ +KIMIN +KU₃.GAN +ina +I₃.UDU +GIR₃.PAD.DU +UDU +SUD₂ +MAR +DIŠ +KIMIN +ZI₂ +BAL.GI{ku₆} +ina +MUN +NA₂-al +EN +HAD₂.DU +GAR-an +UD-ma +HAD₂.DU +ina +I₃ +SAHAR.URUDU +SUD₂ +MAR +DIŠ +KIMIN +ZI₂ +x +x +x +UGU +GIR₂.ZABAR +ina +I₃.NUN +SUD₂ +MAR +x +x +... +DIŠ +KIMIN +U₂.BABBAR +{u₂}GEŠTIN.KA₅.A +ina +I₃+GIŠ +ŠUB +ina +ŠU.SI-ka +MAR +DIŠ +KIMIN +SAG.DU +EME.ŠID +HAD₂.DU +SUD₂ +ina +I₃ +ŠUB +MAR +DIŠ +KIMIN +EME.ŠID +E₂.GAR₈ +HAD₂.DU +SUD₂ +ina +ŠU.LU₂.ZABAR +ina +NE +GAR-an +MAR +GAG.TI.TI +UDU +tur-ar₂ +SUD₂ +... +UD.3.KAM₂ +ina +mu-ša₂-li₃ +GAR +SAG.UŠ +MAR +DIŠ +NA +IGI.MIN-šu₂ +DUL-ma +x +x +SUD₂ +ina +I₃.NUN +HE.HE +ana +ŠA₃ +IGI.MIN-šu₂ +tu-na-tak +UGU +ša +SUN₂-ti₃ +SUD₂ +... +ina +I₃+GIŠ +u +UGU +ša +TU{mušen} +NITA +mal-ma-liš +HE.HE +UD.3.KAM₂ +ina +mu-ša₂-li₃ +GAR +SAG.UŠ +ana +ŠA₃ +IGI.MIN-šu₂ +ŠUB.ŠUB-di +NUNUZ +UGA{mušen} +SUD₂ +x +x +x +x +EGIR +E₁₁-ma +GIR₂.ZABAR +I₃.NUN +ŠEŠ₂ +x +... +ŠU.MEŠ-ka +ina +A +LUH-si +... +ina +I₃.NUN +tu-la-bak +MAR +... +ina +mu-ša₂-li₃ +GAR-an +ka-a-a-nam +te-te-ne₂-qi₂ +... +SUD₂ +MAR +... +ana +I₃+GIŠ +tara-bak +IGI.4.GAL₂.LA +{im}KAL.GUG +SUD₂ +MAR +... +x +SILAₓ(KISAL) +ku-ut-pa-a +ina +I₃+GIŠ +EREN +SUD₂ +te-qi₂ +... +x +GEŠTIN.KA₅.A +SUD₂ +ina +I₃ +ina +{urudu}ŠEN.TUR +BAL-at +te-qi₂ +... +NUMUN +{giš}NIG₂.GAN₂.GAN₂ +ur₂-ne₂-e +UR.BI +ta-sak₃ +te-qi₂ +... +ina +I₃ +SUD₂ +te-qi₂ +... +x-ta +ana +ŠA₃ +IGI.MIN-šu₂ +tu-na-tak +... +bu-ṣi-ni +ša₂ +nu-ri₃ +ta-sa-rim +qut-raₓ(AG₂) +ša +nu-ri₃ +... +x +KI +A +NAGA.SI +IGI.MIN-šu₂ +LUH-si +... +U₂.BABBAR +5 +GIN₂ +U₅.ARGAB{mušen} +mal-ma-liš +HE.HE +... +DILIM₂ +A.BAR₂ +ina +I₃ +u +SAHAR.URUDU +SUD₂ +MAR +... +ina +{urudu}ŠEN.TUR +tu-kaṣ₃-ṣa +ina +{urudu}ŠEN.TUR +HE.HE +... +SAHAR.URUDU +ša +{urudu}ŠEN.TUR +ta-šam-ma-aṭ +7 +UD-mi +MAR +... +x +pa-ʾa-ṣu₂-te +I₃.UDU +... +ina +ir-ri +A.GAR₅ +SUD₂ +te-qi₂-ma +PA +IGI.MIN-šu₂ +ik-ši +a-na +IGI.MIN +ki-ṣa-a-ti +bul-lu-ṭu +u₃ +kap-pi +IGI.MIN-šu₂ +šu-ṣi-i +sah-le₂-e +ki-ṣa-a-ti +ina +NININDU(SUG) +TE-ma +ma-ʾa-du +la +ir-ri-ra +ina +I₃.GIŠ.BUR +tara-bak +IGI.MIN-šu₂ +MAR +URUDU +SUMUN +ina +I₃.NUN +SUD₂ +GIN₇ +rib-ki +IGI.MIN-šu₂ +MAR.MEŠ-ma +TI +... +A +{u₂}IN₆.UŠ₂ +A +{u₂}EME.UR.GI₇ +A +{u₂}GEŠTIN.KA₅.A +...-ti +TI-qe₂ +ina +SAHAR.URUDU +A +sah-le₂-e +SUD₂ +IGI.MIN-šu₂ +MAR +... +tur-ar₂ +ta-pa-a-aṣ +ina +SAHAR.URUDU +SUD₂ +MAR +... +7 +UD-me +ina +KUN₄ +te-tem-mer +E₁₁-ma +ina +SAHAR.URUDU +SUD₂ +MAR +... +ina +SAHAR.URUDU +SUD₂ +MAR +... +x +IGI.MEŠ-šu₂-nu +ina +{giš}DALA₂ +tu-tak₂-kap +... +U₂.MEŠ +ša +UGA{mušen} +ana +TUR.MEŠ-šu₂ +il-qa-a +... +ša₂-šu +ta-sak₃ +te-qi₂ +... +kam-ka-di +SUD₂ +UGU +GIG.GIR +ša +kap-pi +IGI.MIN-šu₂ +tu-gal-lab +{u₂}BAL +NUMUN +U₂ +da-aq-qi₂-qi₂ +ŠE₁₀ +up-pu-te +gu-ra +ša₂ +GI +NUMUN +{u₂}ta-lu-pa-di +la-ar-si₃-ni +ša +hal-li +U₈ +ša +GUB₃ +ša +MAŠ.TAB.BA +U₃.TU +ELLAG₂ +MAŠ₂.TUR +la-ki-i +ša +U₂ +la +na-aš-ku +ŠE.BAR +la +ṣa-bi-tu₂ +ina +nem-se-te +ta-qal₃-lu +{giš}bal-ta₅ +ša +MUN +{u₂}GUR₂.UŠ +{giš}GEŠTIN.KA₅.A +NUMUN +{u₂}NIG₂.GIDRU +ta-qal-lu +NUMUN +{u₂}EME.UR.GI₇ +{u₂}KUR₄.GI.RIN.NA +{u₂}gim-gi-ra +U₂.BABBAR +GI.DUG₃.GA +1-niš +SUD₂ +HE.HE +ina +A +GAZI{sar} +sek-ru-ti +SED +ta-la₃-aš +UD.15.KAM₂ +LAL.MEŠ +UD.15.KAM₂ +U₂.BABBAR +UD.3.KAM₂ +te-eq-qi₂ +DIŠ +NA +IGI.MIN-šu₂ +IGI.SIG₇.SIG₇ +DIRI +BAR +{giš}NU.UR₂.MA +SUD₂ +ina +{gi}SAG.KUD +ana +ŠA₃ +IGI.MIN-šu₂ +BUN₂ +DIŠ +NA +IGI.MIN-šu₂ +IGI.SIG₇.SIG₇ +DIRI +ŠIKA +{giš}NU.UR₂.MA +ina +I₃ +SUD₂ +MAR +{mun}eme-sal-li₃ +SUD₂ +MAR +DIŠ +NA +IGI.MIN-šu₂ +GIG-ma +UD +ma-ʾ-du-ti +NU +BAD +ina +KUM₂ +SAG-šu₂ +IGI.MIN-šu₂ +GISSU +DIRI +... +MI +SAG.DU-su +tu-gal-lab +ina +UD-me +3-šu₂ +NIG₂.SILA₁₁.GA₂ +tu-kaṣ₃-ṣa +NUMUN +{u₂}IN₆.UŠ₂ +tur-ar₂ +ina +I₃.NUN +DILIM₂ +A.BAR₂ +SUD₂ +MAR +A +LUH-si +GAZI{sar} +UGU +IGI.MIN-šu₂ +GAR +EN +u₂-za-ku-u₂ +GUR.GUR +{u₂}GEŠTIN.KA₅.A +LAL₃.KUR.RA +ina +I₃.NUN +HE.HE +te-te-niq-qi₂ +DIŠ +NA +IGI.MIN-šu₂ +GIG-ma +ši-ši-tu +UGU +{d}LAMA +IGI.MIN-šu₂ +ar₂-mat +ER₂.HI.A +DU-ak +IGI.MIN-šu₂ +GISSU +DIRI-ma +{u₂}UKUŠ₂.LAGAB +sah-la-na +NUMUN +{u₂}EME.UR.GI₇ +... +U₂.BABBAR +U₅.ARGAB{mušen} +11 +U₂.HI.A +ša-šu-nu +1-niš +SUD₂ +ina +I₃.GIŠ +{giš}EREN +HE.HE +IGI.MIN-šu₂ +MAR-ma +TI +DIŠ +NA +IGI.MIN-šu₂ +GIG-ma +ši-ši-tu +UGU +{d}LAMA +IGI.MIN-šu₂ +ar₂-mat +di-gal-šu +DUGUD +ana +BABBAR +ša +UGU +{d}LAMA +IGI.MIN-šu₂ +ZI +{u₂}at-kam₂ +... +SUD₂ +... +ina +I₃ +{giš}EREN +HE.HE +IGI.MIN-šu₂ +MAR.MES-ma +TI +DIŠ +NA +IGI.MIN-šu₂ +GIG-ma +... +x +di-gal-šu +DUGUD +x +x +... +SUD₂ +IGI.MIN-šu₂ +MAR +... +x +UM +IM +DU +KU +BAD +... +... +SUD₂ +MAR +... +{giš}NAM.TAR +NITA₂ +... +x +GU₇-ma +x +x +... +SUD₂ +ina +{gi}SAG.KUD +ana +ŠA₃ +IGI.MIN-šu₂ +MU₂-ah +... +SUD₂ +MIN +... +ŠUB-di +ana +UGU +ŠIKA +i₃-gu-le-e +... +x +ta-šar₂-rap +qut-ra +ša₂ +šit-ti +... +a-he-en-na +IGI.MIN-šu₂ +MAR.MEŠ-ma +TI +DIŠ +NA +IGI.MIN-šu₂ +... +x-ma +DUGUD +ana +TI-šu₂ +ILLU +NU.LUH +ILLU +{šim}BULUH +{u₂} +... +7 +ITI +u +8 +ITI +ZI-ha +TI +DIŠ +NA +IGI.MIN-šu₂ +ši-ši-tu₂ +DIRI +... +15 +ŠE +ŠIKA +U₂.BABBAR +ina +I₃.NUN +SUD₂ +MAR +DIŠ +NA +MIN +1 +GIN₂ +U₅.ARGAB{mušen} +... +SUD₂ +... +x +x +ta-bi-la₁₂ +MAR +DIŠ +NA +MIN +1 +GIN₂ +U₅.ARGAB{mušen} +ina +I₃.NUN +SUD₂ +MAR +15 +ŠE +ŠIKA +... +ina +... +SUD₂ +MAR +{u₂}im-hur-lim +ina +I₃.NUN +SUD₂ +IGI.MIN-šu₂ +MAR +... +1-šu₂ +2-šu₂ +3-šu₂ +I₃.NUN +SUD₂ +MAR +... +ina +I₃.NUN +SUD₂ +ina +ITI +3-šu₂ +MAR +U₅.ARGAB{mušen} +ina +I₃.NUN +SUD₂ +MAR +PA +{giš}bi-ni +PA +{giš}MA.NU +ina +A.GEŠTIN.NA +ta-la-aš +IGI.MIN-šu₂ +LAL +U₂.BABBAR +NAGA.SI +UR.TAL₂.TAL₂ +NU +pa-tan +ana +ŠA₃ +IGI.MIN-šu₂ +ta-ma-za-aʾ +... +x +{mun}eme-sal-li₃ +si-ik-ti +ŠE.SA.A +HE.HE +tur-ar₂ +SUD₂ +MAR +DIŠ +... +SAHAR.URUDU +ina +ŠA₃ +I₃.UDU +sa-a-qi₂ +MAŠ.DA₃ +SUD₂ +MAR +DIŠ +... +{šim}SES +GA +{munus}U₂.ZUG₂ +ša₂ +NITA +U₃.TU +SUD₂ +MAR +LAL₃ +I₃.NUN.NA +ana +ŠA₃ +IGI.MIN-šu₂ +tu-na-tak₂ +DIŠ +... +x +x +... +IM +NU +E₃-a +... +x +ina +I₃.NUN +HE.HE +MAR +... +ta-ša-qal₃ +MAR +... +U₅.ARGAB{mušen} +ta-bi-la₁₂ +ina +I₃.NUN +HE.HE +KIMIN +... +u₂-ba-ni-a-ṣi +SIG₇-su +ina +A +LUH-si +GAZ +A.MEŠ-šu₂-nu +... +HAD₂.DU +ši-hi-il-tu₂ +SAHAR.URUDU +mal-ma-liš +HE.HE +ina +A +LUH +LAL₃.KUR-e +SUD₂ +MAR +... +ina +GA +{munus}U₂.ZUG₂ +mal-ma-liš +HE.HE +SUD₂ +MAR +... +A.MEŠ-šu₂-nu +ana +{dug}BUR.ZI +SUR-at +... +EN +HAD₂.DU +GAR-an +UD-ma +HAD₂.DU +ina +SAHAR.URUDU +I₃.NUN +SUD₂ +MAR +... +ana +ŠA₃ +IGI.MIN-šu₂ +tu-na-tak₂ +I₃.UDU +ina +SAHAR.URUDU +SUD₂ +MAR +DIŠ +... +IGI.MIN-šu₂ +kat₂-ma +kur-ṣip-ti +A.ŠA₃ +ina +{na₄}BAR.DU₃.E +SUD₂ +ŠA₃ +IGI.MIN-šu₂ +... +x +{na₄}KA.GI.NA.DAB.BA +SUHUŠ +{giš}GIŠIMMAR +NITA₂ +... +IM.SAHAR.NA₄.KUR.RA +a-he-e +SUD₂ +MAR +... +x +GURUN +{u₂}UKUŠ₂.LAGAB +GAZ +ina +I₃ +SUD₂ +MAR +... +ina +LAL₃.KUR.RA +I₃.NUN +MIN +... +SUD₂ +MAR +... +SUD₂ +ina +I₃.NUN +HE.HE +... +... +IGI.MEŠ-šu₂-nu +ina +{giš}DALA₂ +tu-tak₂-kap +... +ina +DILIM₂ +A.BAR₂ +SUD₂ +MAR +... +bi-la-ta +HAD₂.DU +GAZ +ina +I₃.NUN +SUD₂ +MAR +... +SUD₂ +ana +ŠA₃ +IGI.MIN-šu₂ +tu-na-tak₂ +... +MAR +... +x-ti-i +BAD +... +x-hap-pi +... +SUD₂ +MAR +... +ina +TUG₂ +te-sip +... +ana +ŠA₃ +IGI.MIN-šu₂ +tu-na-tak₂ +... +GIŠ +i-na-sah +... +x +A.GAR.GAR +MAŠ.DA₃ +... +ta-sak₃ +MAR +... +x +... +x +ina +A +SUD₂ +te-qi₂ +... +ina +KAŠ +ta-la₃-aš +IGI.MIN-šu₂ +LAL +... +te-qi₂ +... +x +SUD₂ +te-qi₂ +... +ina +I₃ +SUD₂ +te-qi₂ +... +ina +IGI-šu₂ +GIG +tu-mad +... +ta-sak₃ +te-qi₂ +... +SUD₂ +MAR +x +x +... +KEŠDA +KAŠ₃ +... +{u₂}KUR.KUR +ŠA₃ +IGI.MIN-šu₂ +... +ARA₃-en +DIŠ +IGI.MIN-šu₂ +... +ZA₃.HI.LI +U₂ +a-ši-i +... +ina +GA +HE.HE +MAR +a-na +nu-uh₂-hi +x +... +x +ina +I₃ +HE.HE +MAR +I₃.UDU +ŠIKA +MUN +ana +ŠA₃ +IGI.MIN-šu₂ +... +ina +I₃.GIŠ +{giš}EREN +HE.HE +MAR +{mun}me₅-SILIM +{u₂}ak-tam +SUD₂ +ina +LAL₃ +... +ina +LAL₃ +BABBAR +GIR₂.ZABAR +MIN +DIŠ +NA +IGI.MIN-šu₂ +ma-di-ra +x +... +x-ra +U₂.BABBAR +NUMUN +GI.ZU₂.LUM.MA +U₅.ARGAB{mušen} +... +A.GAR₅ +ina +I₃.NUN +BIL₂ +x +... +DIŠ +NA +IGI.MIN-šu₂ +GISSU-ma +šam-ha +... +DIŠ +NA +IGI +ZAG-šu₂ +GISSU-ma +... +ina +GIR₂.ŠU.I +še-e-li +... +DIŠ +NA +IGI +GUB₃-šu₂ +GISSU-ma +... +ina +GIR₂.ŠU.I +... +DIŠ +NA +IGI.MIN-šu₂ +GIG.GA +ZALAG.GA +x +... +UGU +ša +TI₈{mušen} +ina +GA +{munus}U₂.ZUG₂ +SUD₂ +... +NUMUN +GI.ZU₂.LUM.MA +si-ik-ti +ŠE.SA.A +HE.HE +... +DIŠ +NA +{d}LAMA.MEŠ +IGI.MIN-šu₂ +GISSU +DIRI +... +IGI.MIN-šu₂ +MAR +DIŠ +KIMIN +ILLU +LI.TAR +... +DIŠ +IGI +LU₂ +GISSU +ṣi-ri-ih-ta₅ +DIRI +... +... +x +x +... +...-ri-i +... +... +x +DIŠ +KIMIN +... +DIŠ +NA +IGI.MIN-šu₂ +x +x +DIRI +x +... +... +x +MUD₂ +kur-ṣib-ti +GU₄ +GE₆ +u +x +... +DIŠ +NA +IGI.MIN-šu₂ +LU₃.LU₃ +LAL₃ +BABBAR +ina +I₃.NUN +1-niš +HE.HE +... +DUB.2.KAM₂ +DIŠ +NA +IGI.MIN-šu₂ +GIG +E₂.GAL +{m}aš-šur-DU₃.A +LUGAL +ŠU₂ +20 +KUR +AN.ŠAR₂{ki} +ša +{d}AG +u +{d}taš-me-tu₄ +GEŠTU.MIN +ra-pa-aš₂-tu₄ +iš-ru-ku-šu₂ +e-hu-uz-zu +IGI.MIN +na-mir-tu₄ +ni-siq +tup-šar-ru-ti +ša +ina +LUGAL.MEŠ-ni +a-lik +mah-ri-ia +mam₂-ma +šip-ru +šu-a-tu₂ +NU +e-hu-uz-zu +bul-ṭi +TA +muh-hi +EN +UMBIN +liq-ti +BAR.MEŠ +ta-hi-zu +nak-la +a-zu-gal-lu-ut +{d}nin-urta +u +{d}gu-la +ma-la +ba-aš₂-mu +ina +ṭup-pa-a-ni +aš₂-ṭur₃ +as-niq +IGI.KAR₂-ma +a-na +ta-mar-ti +ši-ta-si-ia +qe₂-reb +E₂.GAL-ia +u₂-kin +DIŠ +NA +su-a-lam +GIG +ana +ki-is +ŠA₃ +GUR-šu₂ +šu-ru-uš +{giš}NAM.TAR +šu-ru-uš +{giš}šu-še +{u₂}tar-muš +{u₂}IGI-lim +{u₂}IGI.NIŠ +{u₂}tu-lal +{u₂}ŠAKIRA +7 +U₂.HI.A +ŠEŠ +TEŠ₂.BI +SUD₂ +ina +KAŠ +ŠUB-di +ina +MUL +tuš-bat +ina +A₂.GU₂.ZI.GA +NU +pa-tan +NAG-MEŠ-ma +ina-eš +DIŠ +NA +ki-is +ŠA₃ +GIG +ina +UD +ša₂-tu +{giš}MA₂.GUR₈ +U₅-šu₂ +E₁₁-šu₂-ma +TU₆ +ki-a-am +ŠID-nu +EN₂ +E₂.NU.RU +LU +RA +GAR +dam +gal +kur +MIN +gi +{d}en.lil₂ +a₂.e +nu.ub.zum +{d}zar-pa-ni-tu₄ +ša +igi.gal₂.la +gub.a +gir₃.a.ni +gub.ba +gir₃.a.ni +dur₂.ra +du-ra +gir₃ +igi.gal₂ +gub +gir₃ +igi.gal₂ +TU₆ +EN₂ +TU₆ +an-ni-ta +ŠID-nu-ma +TI +ana +KI +MIN +UZU +{d}NIN.KILIM +HAD₂.A +ba-lu +pa-tan +NAG-ma +TI +ana +KI +MIN +šu-ru-uš +{giš}šu₂-še +ina +A-MEŠ +ba-lu +pa-tan +NAG-ma +TI +ana +KI +MIN +MUN +SUD₂ +ina +A-MEŠ +ba-lu +pa-tan +NAG-ma +TI +ana +KI +MIN +MUN +a-ma-ni₇ +SUD₂ +ba-lu +pa-tan +NAG-ma +TI +DIŠ +NA +ki-is +ŠA₃ +GIG +NA +BI +ina +UGU +GIR₃-MIN-šu₂ +tu-še-šab-šu₂ +A +GAZI{sar} +sek-ru-ti +KUM₂-ti +ana +UGU-šu₂ +DUB-ma +TI +ana +KI +MIN +ina +UGU +GIR₃-MIN-šu₂ +uk-tam-ma-as-ma +u₂-šab +A +ŠED₇ +ana +UGU +SAG-šu₂ +tu-qar-ra-ar₂ +ana +KI +MIN +SAG.DU-su +ana +šap-la-nu +GAR-an +GIR₃-MIN-šu₂ +ana +AN.TA-nu +tu-ša₂-qa +ina +me-ku-ti +TE-su +ta-ma-haṣ +ina +me-ku-ti +tu-ma-aš-šad-su-ma +ana +ŠA₃ +DU₁₀-ab +DU₁₁.GA +ina +ŠU.SI-ka +GAL-ti +ša +GUB₃ +14-šu₂ +GU.DU-su +TAG-at +14-šu₂ +SAG.DU-su +TAG-at +u +qaq-qa-ra +TAG-at +ana +KI +MIN +SUHUŠ +{giš}NAM.TAR +NITA₂ +SUHUŠ +{giš}šu-šum +{u₂}IGI-lim +{u₂}IGI-NIŠ +{u₂}tar-muš +{u₂}IN.NU.UŠ +{u₂}EME +UR.GI₇ +SUD₂ +lu +ina +A +lu +ina +KAŠ +NAG +DIŠ +NA +ŠA₃-šu₂ +it-te-net-ba-aš-šum +10 +SILAₓ +{u₂}x +x +x +x +10 +SILAₓ +{u₂}MA₂.ERIŠ₄.MA₂.LA₂-e +SUD₂ +HI.HI +x +x +x +x +TI +DIŠ +NA +ki-is +ŠA₃ +GIG +ŠA₃-MEŠ-šu₂ +ma-gal +MU₂.MU₂-hu +mu-še-er-rit-ta-šu₂ +GU₇-šu₂ +{u₂}IGI-NIŠ +SUHUŠ +{giš}NAM.TAR +NITA₂ +a-he-en-na-a +GAZ +SIM +ina +ŠA₃ +mal-ma-liš +TI-qe₂ +ina +KAŠ +NAG +ina +A +ŠED₇ +tu-la-bak +ina +MUL₄ +tuš-bat +ina +še-ri₃ +ŠEG₆-šal +ta-ša₂-hal +ana +DUR₂-šu₂ +DUB-ak +SI.SA₂-ma +TI +{šim}GUR₂.GUR₂ +{šim}LI +{šim}GAM.MA +PA +{giš}GE₆.PAR₃ +PA +{giš}ŠE.HAR +NUMUN +{u₂}ur-ba-ti +DIŠ-niš +GAZ +SIM +KI +I₃.UDU +{šim}HAB +HI.HI +ina +KUŠ.EDIN +SUR-ri +SAG +ŠA₃-šu₂ +LAL₂-ma +TI +DIŠ +NA +ki-is +ŠA₃ +GIG +NINDA +u +KAŠ +ŠA₃-šu₂ +NU +IGI-har-šu₂ +ina +KA-šu₂ +GUR.GUR-ra +TUN₃-šu₂ +u₂-sa-hal-šu₂ +ip-ta-na-ru +UZU-MEŠ-šu₂ +ir-ta-nam-mu-u₂ +IM +ina +DUR₂-šu₂ +NIGIN +ŠA₃-MEŠ-šu₂ +eb-ṭu₂ +ana +TI-šu₂ +1/2 +SILA₃ +A +ZU₂.LUM.MA +1/2 +SILA₃ +A +GAZI{sar} +10 +SILAₓ +A.GEŠTIN.NA +3 +GIN₂ +I₃ +hal-ṣa +2 +GIN₂ +LAL₃ +10 +GIN₂ +{u₂}KUR.RA +SUD₂ +ana +ŠA₃ +ŠUB-di +ina +GE₆ +ana +IGI +{mul}UZ₃ +tuš-bat +ina +A₂.GU₂.ZI.GA +NU +pa-tan +NAG-šu₂ +EGIR-šu₂ +1/2 +SILA₃ +ši-qa +NAG-šu₂ +ina +KA-šu₂ +u +DUR₂-šu₂ +SI.SA₂ +tu-ser-šu₂-ma +TI-uṭ +ana +KI +MIN +MUN +KUR-i +MUN +a-ma-ni₇ +TEŠ₂.BI +SUD₂ +ina +KAŠ +NU +pa-tan +NAG-šu₂ +ina +KA-šu₂ +u +DUR₂-šu₂ +SI.SA₂-ma +tu-ser-šu₂-ma +TI +ana +KI +MIN +{u₂}NU.LUH.HA +7 +ŠE-MEŠ +{u₂}IGI-lim +TEŠ₂.BI +SUD₂ +ina +KAŠ.SAG +NU +pa-tan +NAG-šu₂ +ina +KA-šu₂ +u +DUR₂-šu₂ +SI.SA₂-ma +KI +MIN +ana +KI +MIN +ZI₃ +ŠE.SA.A +ZI₃ +ha-ru-be +di-ik-ta +ZU₂.LUM.MA +TEŠ₂.BI +SUD₂ +ina +KAŠ +NU +pa-tan +2 +UD-me +NAG-MEŠ +2 +UD-me +ina +A-MEŠ +NU +pa-tan +NAG-MEŠ +A-MEŠ +SAG +ŠA₃-šu₂ +tu-sa-lah₂-ma +TI +ana +KI +MIN +{urudu}ŠEN.TUR +A +u +KAŠ +DIRI-ma +{giš}si-ha +{giš}ar₂-gan-na +{giš}ba-ri-ra-ta +{u₂}HAR.HAR +{u₂}at-kam₂ +ana +ŠA₃ +ŠUB-di +x +x +x +x +x +x +x +x +x +x +I₃ +{giš}EREN +ŠEŠ₂-su +1/2 +SILA₃ +sah-le₂-e +1/2 +SILA₃ +{šim}GUR₂.GUR₂ +1/2 +SILA₃ +{šim}LI +1/2 +SILA₃ +{u₂}qut-ri +1/2 +SILA₃ +GAZI{sar} +1/2 +SILA₃ +ZI₃ +MUNU₆ +1/2 +SILA₃ +ZI₃ +GU₂.GAL +1/2 +SILA₃ +ZI₃ +GU₂.TUR +1/2 +SILA₃ +pa-pa-si-{d}ID₂ +1/2 +SILA₃ +{u₂}KUR.RA +1/2 +SILA₃ +{u₂}AB₂.DUH +1/2 +SILA₃ +ŠE₁₀ +TU{mušen} +1/2 +SILA₃ +{u₂}KAM-ti +A.ŠA₃ +10 +GIN₂ +{šim}MAŠ +10 +GIN₂ +KA +A.AB.BA +1/2 +SILA₃ +ZI₃ +GIG +1/2 +SILA₃ +ZU₂.LUM.MA +1/2 +SILA₃ +DIDA +SIG.GA +1/2 +SILA₃ +ZI₃.KUM +16 +U₂-MEŠ +an-nu-ti +TEŠ₂.BI +GAZ +SIM +ina +KAŠ.SAG +ina +{urudu}ŠEN.TUR +GIM +ra-bi-ki +tara-bak +3 +UD-me +SAG +ŠA₃-šu₂ +LAL₂-id +NINDA-MEŠ +u +KAŠ +ŠA₃-šu₂ +IGI-har-šu₂-ma +TI +DIŠ +NA +ŠA₃-šu₂ +ik-ta-na-su-šu₂ +{u₂}IGI-lim +NU +pa-tan +i-kal +ta-sak₃ +ina +KAŠ +NU +pa-tan +NAG-MEŠ-ma +TI-uṭ +ana +KI +MIN +{u₂}IGI.NIŠ +SUHUŠ +{u₂}šur-ne₂-e +NU +pa-tan +GU₇-MEŠ +SUD₂ +ina +KAŠ +NU +pa-tan +NAG-MEŠ-ma +TI-uṭ +ana +KI +MIN +{u₂}ar₂-zal-la +{u₂}HAR.HAR +{šim}GUR₂.GUR₂ +{šim}x +x +x +x +NU +pa-tan +KI +MIN +ana +KI +MIN +I₃.UDU +a-a-ar +DINGIR +KI +I₃.NUN.NA +u +MUN +HI.HI +NU +pa-tan +GU₇-MEŠ-ma +TI +ana +KI +MIN +kak-ku-sa-kam₂ +ša₂ +PA-MEŠ-šu₂ +DAGAL-MEŠ +ina +A +GAZI{sar} +SUD₂ +ina +KAŠ +u +LAL₃ +SIG₃-aṣ +NU +pa-tan +NAG-MEŠ-ma +TI +ana +KI +MIN +kak-ku-sa-kam₂ +ša₂ +PA-MEŠ-šu₂ +DAGAL-MEŠ +u +MUN +DIŠ-niš +SUD₂ +ina +KAŠ +u +LAL₃ +SIG₃-aṣ +NU +pa-tan +NAG-MEŠ-ma +TI +ana +KI +MIN +KIŠI₁₆.HAB +ša₂ +PA-MEŠ-šu₂ +DAGAL-MEŠ +GIM +LU.UB₂{sar} +ta-sa-laq +NAG-MEŠ +TI +ana +KI +MIN +SUHUŠ +{giš}šu-še +NU +pa-tan +GU₇ +SUD₂ +ina +KAŠ +NU +pa-tan +NAG +x +x +x +x +x +x +x +TI +DIŠ +NA +x +x +x +x +x +TUKU +UD-um +ŠA₃-šu₂ +DAB-šu₂ +x +x +x +x +x +NU +pa-tan +NAG +TI +... +x +... +KAŠ +MIN +... +x +... +SA +... +x +... +x +x +DIŠ +NA +ŠA₃-šu₂ +GU₇-šu₂ +{u₂}HAR.HAR +MUN +SUD₂ +lu +ina +A +lu +ina +KAŠ +lu +ina +GEŠTIN +EN₂ +ana +ŠA₃ +ŠUB-di +NAG +DIŠ +NA +ŠA₃-šu₂ +GU₇-šu₂ +{u₂}HAR.HAR +lu +ina +A +lu +ina +KAŠ +NAG +DIŠ +NA +ŠA₃-šu₂ +GU₇-šu₂ +{u₂}ti-ia-a-ti +ina +KAŠ +NAG +{u₂}IGI-lim +ina +KAŠ +{u₂}IGI.NIŠ +ina +KAŠ +{u₂}tar-muš +ina +KAŠ +{u₂}DILI +ina +KAŠ +{u₂}GAMUN.GE₆ +ina +KAŠ +{u₂}HAB +ina +KAŠ +{u₂}HAR.HAR +lu +ina +KAŠ +lu +ina +GEŠTIN +DIŠ +NA +ŠA₃-MEŠ-šu₂ +GU₇-MEŠ-šu₂ +1/2 +SILA₃ +ZU₂.LUM.MA +1/2 +SILA₃ +NIG₂.AR₃.RA +GIG.BA +1/2 +SILA₃ +LAGAB +MUNU₆ +ina +3 +SILA₃ +KAŠ.SAG +ŠEG₆-šal +tu-kaṣ₃-ṣa +ta-ša₂-hal +I₃.GIŠ +ana +IGI +ŠUB-di +ana +DUR₂-šu₂ +DUB-ak +UD-ma +LU.UB₂ +SUM{sar} +GAMUN{sar} +SUD₂ +ina +KAŠ +NAG +ana +KI +MIN +HI.IS{sar} +SUM{sar} +SUD₂ +ana +A +ŠUB +ina +MUL₄ +tuš-bat +NAG +iš-tu +NAG-u₂ +NINDA.I₃.DE₂.A +ina +I₃.NUN.NA +GU₇ +ana +KI +MIN +{u₂}NU.LUH.HA +SUD₂ +ina +KAŠ +NAG +ana +KI +MIN +{u₂}IGI-lim +SUD₂ +KI +MIN +ana +KI +MIN +{u₂}SIKIL +SIG₇ +GU₇ +DIŠ +NA +ŠA₃-šu₂ +ka-si-šu₂ +SUM{sar} +SIG₇-su +{šim}GUR₂.GUR₂ +TEŠ₂.BI +SUD₂ +ina +A +SIG₃-aṣ +NU +pa-tan +NAG-šu₂ +ZU₂.LUM.MA +lu +ina +I₃.ŠAH +lu +ina +I₃.GIŠ +GU₇ +ana +KI +MIN +{šim}ŠE.LI +BABBAR +SUD₂ +ina +KAŠ +NU +pa-tan +NAG-ma +TI +ana +KI +MIN +{u₂}IGI-lim +{u₂}IGI.NIŠ +{u₂}tar-muš +SUHUŠ +{giš}NAM.TAR +NITA₂ +x +x +x +mal-ma-liš +HI.HI +ina +KAŠ +tara₃-sa-an +ina +MUL₄ +tuš-bat +ina +še-ri₃ +ba-lu +pa-tan +NAG-šu₂ +A +GAZI +NU +NAG-šu₂ +TI +DIŠ +NA +ŠA₃-šu₂ +ik-ta-na-su-šu₂ +ŠA₃-MEŠ-šu₂ +ma-gal +nap-hu +{u₂}HAR.HAR +GI +DU₁₀.GA +{šim}MUG +{šim}LI +ana +ŠA₃-bi +ŠUB-di +ŠEG₆-šal +ta-ša₂-hal +lu +ba-hir₂ +ana +DUR₂-šu₂ +DUB-ma +TI +DIŠ +NA +NINDA +GU₇ +KAŠ +NAG-ma +i-ši-bi +ŠA₃-šu₂ +ik-ta-na-su-šu₂ +DAB-MEŠ-su +ŠA₃-MEŠ-šu₂ +MU₂.MU₂ +u +i-sil +ŠA₃-šu₂ +mu-še +KIN.NIM +GIG +ana +TI-šu₂ +{giš}e-re-na +{giš}ŠUR.MIN₃ +GI +DU₁₀.GA +{šim}BAL +{šim}GIR₂ +{u₂}HAR.HAR +5 +U₂.HI.A +ŠEŠ +TEŠ₂.BI +ta-ka-sim +ana +KAŠ +ŠUB-di +ŠEG₆-šal +ta-ša₂-hal +LAL₃ +u +I₃.GIŠ +hal-ṣa +ana +ŠA₃ +ŠUB-di +lu +ba-hi-ir +ana +KUŠ +maš-qe₂-ti +te-si-ip +ana +DUR₂-šu₂ +DUB +TI +EN₂ +ŠA₃-MEŠ +it-ta-nap-ša₂-ru +ze-er +kar-šu₂ +ŠA₃.NIGIN +ku-uṣ-ṣu-ru-u₂ +x +x +x +x +x +x +x +x +x +ek-le-ta +ki-i +me-e +hi-ri-ti +a-la-pa-a +na-du-u₂ +IGI-MEŠ-šu₂ +ša-ar +EDIN +e-di-ip +na-di +i-ta-naq-qi₂ +ŠU +EDIN +ma-la-a +IGI-MEŠ-šu₂ +e-ta-na-ba-la +ša-pa-tu-šu₂ +i-ta-na-pa-aṣ +ki-ma +KU₆-MEŠ +it-ta-nak-bir +ki-ma +MUŠ +e-mur-ma +{d}gu-la +na-di-na-at +ba-la-ṭi +NAM.LU₂.U₁₈.LU +ina +E₂ +{d}asal-lu₂-hi +u₂-bil +eṭ-lu +{d}AMAR.UTU +re-me₂-nu-u +ip-pa-lis-su-ma +gi-ša-ma +TI-uṭ +eṭ-lu +šum₂-ma +IM +ina +DUR₂ +lu-ṣi +šum₂-ma +gi-ša-tu +ina +nap-ša₂-ti +li-še-ṣi +TU₆ +EN₂ +KA.INIM.MA +ana +ki-is +ŠA₃ +ŠID-nu +DIŠ +NA +e-ta-na-ša₂-aš₂ +NINDA +u +KAŠ +la +i-mah-har +MAŠ.SILA₃-MIN-šu₂ +GU₇-MEŠ-šu₂ +SAG.DU-su +gi-na-a +LAL +I₃.NUN.NA +GU₇ +UD.7.KAM₂ +SUM{sar} +SUM.SIKIL{sar} +GA.RAŠ{sar} +NU +GU₇ +ina +A +{giš}ŠE.NU +RA-MEŠ-aṣ +NUMUN +{u₂}UKUŠ₂.HAB +NUMUN +{u₂}HAR.HAR +SUD₂ +ina +KAŠ +NAG-ma +TI +ana +KI +MIN +x +x +x +NIG₂.SILA₁₁.GA₂ +HAD₂.A +SUD₂ +ina +KAŠ +{lu₂}KURUN₂.NA +NAG +NUMUN +{u₂}UKUŠ₂.HAB +NUMUN +{šim}LI +NUMUN +{giš}ŠE.NU +SUD₂ +ina +KAŠ +NAG +DIŠ +NA +ki-is +ŠA₃ +GIG +ana +ki-is +ŠA₃ +KUD-si +{u₂}IGI-lim +{u₂}IGI.NIŠ +{u₂}tar-muš +{u₂}tar-muš₈ +{u₂}KUR.RA +SUD₂ +ina +I₃ +u +KAŠ +NAG +x +x +x +ina +KAŠ +NAG +PEŠ₂.SILA₃.GAZ +ša₂-bu-la +GU₇ +x +x +x +{u₂}kak-ku-sak-ku +ša₂ +PA-MEŠ-šu₂ +DAGAL-MEŠ +{u₂}HAB +{u₂}IGI-lim +SUD₂ +ina +I₃.KUR.RA +I₃ +SIKIL +NAG +MUN +ina +KAŠ +NAG +MUN +ina +A +NU +pa-tan +NAG-ma +ina-eš +DIŠ +NA +lib₃-bi +lib₃-bi +GU₃.GU₃-si +{u₂}ur₂-ne₂-e +{u₂}HAR.HAR +{u₂}ti-ia-ta₅ +{u₂}NU.LUH.HA +{u₂}KUR.RA +sah-le₂-e +{u₂}tar-muš₈ +{u₂}IGI-lim +{u₂}IGI.NIŠ +{u₂}ak-tam +{u₂}IN.NU.UŠ +{giš}ŠINIG +12 +U₂.HI.A +ŠEŠ +ba-lu +pa-tan +ina +KAŠ +NAG-MEŠ +DIŠ +NA +ŠA₃-šu₂ +ik-ta-na-ar +PA +{giš}ŠINIG +{u₂}IN.NU.UŠ +GIŠ +BUR₂ +SUD₂ +ina +KAŠ +NU +pa-tan +NAG-ma +ina-eš +SUHUŠ +{giš}šu-ši +SUHUŠ +{giš}NAM.TAR +NITA₂ +{u₂}tar-muš₈ +{u₂}IGI-lim +{u₂}IGI.NIŠ +{u₂}IN₆.UŠ₂ +NUMUN +{u₂}IN₆.UŠ₂ +7 +U₂-HI-A +ki-is +ŠA₃-bi +ina +KAŠ +NAG +1 +GIN₂ +MUN +eme-sal-li₃ +{šim}GUR₂.GUR₂ +{šim}LI +DIŠ-niš +GAZ +SIM +ina +KAŠ +ŠEG₆-šal +x +x +ana +ŠA₃ +ŠUB-di +ana +DUR₂-šu₂ +DUB-ak +EN₂ +mi-na-a +ma-lu-u₂ +lib-bu-ka +mi-na-a +ma-lu-u₂ +lib-bu-ka +x +x +x +{d}x +x +lib-bu-ka +man-nu +lu-uš-pur +ana +gu-gal +lib-bi-ka +liš-ša₂-a +x +x +x +x +x +x +x +x +x +x +x +x +li-pat-ta-a +ID₂-MEŠ +x +x +x +x +x +x +x +x +x +li-par-ši-du-ma +li-ṣu-ni +zu-u₂-šu₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +li-mur +EN₂ +ul +ia-tu-un +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +{d}gu-la +TI.LA +qiš-ta₅ +TI-e +EN₂ +EN₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +GU₇-ia +ŠA₃-bi +KI.SIKIL +ana +GAZ-ia +x +x +x +x +x +x +x +x +x +x +x +ŠA₃-bi +GUD +ina +u₂-re-e +li-kul +x +x +x +x +x +x +x +x +ŠA₃-bi +ŠAH +ina +a-sur-re-e +x +x +x +x +x +x +{d}a-sal-luh +u +{d}gu-la +x +x +x +x +x +x +x +x +iq-bu-nim-ma +a-na-ku +u₂-ša₂-an-ni +x +x +x +x +x +x +x +x +x +... +EN₂ +ana +UGU +LI.DUR +ŠID-nu +x +x +x +x +{gi}pisan(E₂)-gen₇ +keš₂-da +x +x +x +x +x +x +x +x +a +pu₂-gen₇ +a-ge₆-a +nu-tuku +x +x +x +x +x +x +tuku +u₂ +nu-ku₄-ku₄ +a +nu-ku₄-ku₄ +... +ne +{d}asal-lu₂-hi +igi +nig₂ +ge₂₆-e +gen-na +dumu-gu₁₀ +x +x +x +x +ne-ke₄ +u₃ +{u₂}ha-šu-u₂ +šu +u-me-ti +nam-šub +eridu{ki}-ga +u-me-ni-si₃ +lu₂-u₁₈-lu +dumu +dingir-ra-na +ka-bi-ta +u-me-ni-gar +lu₂ +dumu +dingir-ra-na +še₁₀-gen₇ +he₂-dur₂-re +bu-luh-gen₇ +ri +he₂-en-si-il-e +im-ma +gu-du-a-ni-ta +he₂-em-ma-ra-e₃ +KID₃.KID₃.BI +x +x +x +x +ana +UGU +EN₂ +ŠUB-di +ina +KA-šu₂ +u₂-man-zaq-ma +ina +KAŠ +NAG-ma +ina-eš +... +ka-keš₂-bi +he₂-du₈-a +... +{d}asal-lu₂-hi +dumu +eridu{ki}-ga-ke₄ +ka-keš₂-bi +he₂-du₈-a +KID₃.KID₃.BI +x +x +x +x +EN₂ +7-šu₂ +ŠID-nu +ina +KA-šu₂ +u₂-man-zaq-ma +ina-eš +EN₂ +{d}ŠAKKAN₂ +ina +EDIN +ŠA₃-ba-šu₂ +ka-su-šu₂-ma +SAHAR +SIG₃.SIG₃-ta +ma-la-a +rit-ta-šu₂ +ul +um-mu +pe-ta-at +pa-ni-šu₂ +ul +a-ha-tu +mu-še-qa-at +re-ši-šu₂ +ki-ma +DI +GI +DA +na-ši +pat-ri +TU₆ +EN₂ +KID₃.KID₃.BI +LAG +MUN +{u₂}nu-hur-ta₅ +TI-qe₂ +ana +UGU +EN₂ +ŠUB-di +x +x +x +x +x +x +x +x +x +EN₂ +šam-mu +ša₂ +ŠA₃-bi +ina +KUR-i +a-ṣi-ma +as-suh-šu-ma +x +x +x +x +x +a-na +{d}UTU +DU₁₁.GA-ma +iṣ-ṣa-bat +ŠA₃-bi +{d}UTU +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +a-na +NENNI +A +NENNI +DU₁₁.GA-ma +iṣ-ṣa-bat +ŠA₃-bi +NENNI +A +NENNI +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +a-na +{d}e₂-a +EN-ia +aq-bi-ma +ŠA₃-bi +x +x +x +x +x +x +x +x +x +x +ŠA₃-bi +AN +u +KI +lip-pa-šir +ŠA₃-bi +x +x +x +x +x +x +ŠA₃ +NENNI +A +NENNI +lip-pa-šir +x +x +x +x +x +x +x +x +x +NAG-šu₂ +... +KA.INIM.MA +... +KID₃.KID₃.BI +x +x +... +7-šu₂ +u +7-šu₂ +x +... +TA +{urudu}na-ah-bi +... +ana +IGI +{d}UTU +EN₂ +7-šu₂ +x +x +x +ŠID-nu +... +ina +KI +ta-sa-rim +x +x +x +x +ina +GIR₃ +15 +u +150 +x +... +ina +na-kap +GIR₃ +15 +u +150 +i-na-as-suk-ma +ina-eš +EN₂ +ŠA₃ +{d}UTU +ina +KUR-i +x +x +GIG-ma +U₂ +ŠA₃ +ina +ma₂-kan{ki} +a-ṣi-ma +{d}30 +is-suh-šu +ša₂ +{d}UTU +im-me-ru +pa-nu-šu₂ +{d}UTU +šam-ma +TA +KUR-i +u₂-še-ri-dam-ma +iš-kun-ma +ina +qaq-qa-ri +šur-šu-šu +qaq-qa-ra +DIRI +SI-MEŠ-šu₂ +AN-e +nak-pa +iṣ-bat +ŠA₃ +{d}UTU +ina +le-qi₂-šu +iṣ-bat +ŠA₃ +{d}30 +ina +DUNGU-MEŠ +iṣ-bat +ŠA₃ +GUD +ina +tar-ba-ṣi +iṣ-bat +ŠA₃ +UDU.NITA₂ +ina +su-pu-ri +iṣ-bat +ŠA₃ +ANŠE +ina +su-kul-li +iṣ-bat +ŠA₃ +UR.GI₇ +ina +ši-ga-ri +iṣ-bat +ŠA₃ +ŠAH +ina +er-re-ti +iṣ-bat +ŠA₃ +GURUŠ +ina +me-lul-ti +iṣ-bat +ŠA₃ +KI.SIKIL +ina +ur-ši-ša₂ +iṣ-bat +ŠA₃ +NENNI +A +NENNI +tu-mu-re-e +tu-ga-re-e +a-na +e-re-ši-šu-ma +SU-šu₂ +i-di +e-ma +iš-ku-nu +i-di +TU₆ +EN₂ +KID₃.KID₃.BI +{u₂}ur₂-ne₂-e +{u₂}NU.LUH.HA +{u₂}ti-ia-ta₅ +GAZI{sar} +{u₂}KUR.RA +DIŠ-niš +SUD₂ +ina +KAŠ +SIG₃-aṣ +EN₂ +ana +ŠA₃ +ŠID-nu +ina +ŠU +GUB₃-šu₂ +NAG-ma +TI +EN₂ +šam-mu +ša₂ +ŠA₃-bi +ina +KUR-i +a-ṣi-ma +as-suh-šu₂-ma +iṣ-ṣa-bat +ŠA₃-bi +ana +{d}UTU +aq-bi-ma +iṣ-ṣa-bat +ŠA₃ +{d}UTU +ana +AN-e +u +KI-ti₃ +aq-bi-ma +iṣ-ṣa-bat +ŠA₃ +AN +u +KI +ana +u₂-ma-mi +DU₁₁.GA-ma +iṣ-ṣa-bat +ŠA₃ +u₂-ma-me +a-na +{d}e₂-a +EN +ap-si +aq-bi-ma +ŠA₃-bi +lip-pa-šir₃ +ŠA₃-bi +{d}UTU +lip-pa-šir₃ +ki-ma +ŠA₃-bi +{d}UTU +ip-pa-ša₂-ru +ŠA₃-bi +AN +u +KI +lip-pa-šir₃ +ki-ma +ŠA₃-bi +AN +u +KI +... +x +x +x +KID₃.KID₃.BI +x +x +x +x +EN₂ +7-šu₂ +ŠID-nu +ina +KA-šu₂ +u₂-man-zaq-ma +ina-eš +EN₂ +ER₂ +IR +UD +LI +AN +x +x +x +x +sa-bi-tu₄ +nam-zi-tu₄ +a-ši-tu₄ +pi +ina +a-mat +{d}AMAR.UTU +ina +qi₂-bit +{d}UTU +LU₂ +lib-luṭ +TU₆ +EN₂ +EN₂ +IM +el-lu +ša₂ +ina +KUR-i +aš₂-bu +man-nu +ub-lak-ka +x +x +el-li +ša₂ +a-me-lu-ti +ša₂ +UZU-šu₂ +ša₂ +la +a-ka-li₃ +ša₂ +BUR₃.BUR₃-šu +ša₂ +la +x +x +x +x +x +IR +IM +ana +šu-bur-ri +ki-ma +ṣe-er +ka-ra-ni₇ +ta-aṣ-ṣi +... +x +TU₆ +EN₂ +KID₃.KID₃.BI +{u₂}ti-ia-ta₅ +GAZI{sar} +x +... +x +I₃.GIŠ +ana +pa-ni +ma-aš-ti-i +ta-za-ru₃ +3-šu₂ +EN₂ +ŠID +... +ana +KI +MIN +... +x +... +x +x +x +... +... +ti-ia-ta₅ +GAZI{sar} +ta-mar-raq +ina +KAŠ +NAG +ana +KI +MIN +... +ina +I₃.GIŠ +u +KAŠ.SAG +NAG +EN₂ +e-sil +ki-ma +na-di +na-pi-ih-ma +ki-ma +lu-up-pi +KA.NA +šu-u₂ +ina +KA-šu₂ +šu-u₂ +{giš}PEŠ₃ +NU +E₃-ma +TU₆ +EN₂ +KID₃.KID₃.BI +ina +ŠU.SI +GIR₃-ka +GAL-ti +ša₂ +GUB₃ +EN₂ +7-šu₂ +ana +UGU +LI.DUR-šu₂ +ŠUB-ma +ina-eš +EN₂ +ŠA₃ +nam-zi-tu₄ +KAŠ +la-as-su-uh +TU₆ +EN₂ +KID₃.KID₃.BI +ina +ŠU.SI +GIR₃-ka +GAL-ti +ša₂ +150 +EN₂ +ŠUB-di +u +ina +ŠU.SI-ka +ta₅-mar-raṭ-ma +ina-eš +EN₂ +ša-ru-um-mi +ša₂-ru +ša₂-ru +IZI +DINGIR-MEŠ +at-ta₅ +ša-ru +ša +bi-rit +ze-e +u +ši-na-a-ti +at-ta₅ +tu-ṣi-a-ma +it-ti +DINGIR-MEŠ +ŠEŠ-MEŠ-ka +na-di-a-at +{giš}GU.ZA-ka +EN₂ +KID₃.KID₃.BI +{u₂}EME +UR.GI₇ +HAD₂.A +SUD₂ +ina +I₃.GIŠ +ŠUB-di +EN₂ +ŠID-nu +ŠEŠ₂-su-ma +ina-eš +EN₂ +lib-bu-ma +ŠA₃-bu +ŠA₃-bu +da-an +ŠA₃-bu +qar-rad +GIM +UR.MAH +ma-li +pu-luh-ta₅ +ki-ma +UR.BAR.RA +la-ka-da +uš-šur +EN₂ +ul +ia-at-tu₂ +EN₂ +{d}gu-la +EN₂ +a-nam-di +EN₂ +ana +DUMU.MUNUS +{d}e₂-a +a-nam-di +EN₂ +ana +DUMU.MUNUS +{d}a-nim +a-nam-di +ana +DUMU.MUNUS +DINGIR +aš-šum +mi-ni-i +aš-šum +mi-ni-i +aš-šum +ka-bat-ti +aš-šum +li-ib-bi +aš-šum +li-ib-bi +aš-šum +li-ib-bi +mar-ṣi +TU₆ +EN₂ +KID₃.KID₃.BI +SIG₂ +BABBAR +DUR +NU.NU +7 +KA.KEŠDA +KEŠDA +EN₂ +ŠID-nu +ina +EGIR-šu₂ +KEŠDA-ma +ina-eš +EN₂ +a-na +li-bur-za-ni-nu +qi₂-bi-ma +um-ma +a-da-pa +ABGAL-ma +TA +at-ta₅ +u +a-na-ku +kul-lat +KUR +ni-ti-qam-ma +A +PU₂ +ha-li-lu-ti +x +x +x +x +x +x +x +x +x +x +x +x +x +qa₂-ti +mar-ṣi +ṣa-bat +EN₂ +{d}e₂-a +ŠUB-šu₂-ma +LU₂ +lib-luṭ +EN₂ +KID₃.KID₃.BI +{u₂}NU.LUH.HA +{u₂}ti-ia-ta₅ +MUN +ta-mar-raq +x +x +x +x +x +x +x +x +x +x +GUB₃-šu₂ +ina +ŠU-ka +ta-mar-raṭ +EN₂ +... +x +TIM +a-na +li-bur-na-din +iš-pur-an-ni +... +ina +a-hi +PU₂ +ša₂ +KUR-i +... +ul +nu-uš-ba-am-ma +... +NENNI +A +NENNI +ra-ši +DINGIR +ana +mah-ri-ka +... +x +MI +AL +MU +TU₆ +EN₂ +KID₃.KID₃.BI +... +x +ša₂ +EN₂ +ana +x +x +ŠUB-u₂ +... +te-de-ek-ki-šu-ma +i-ne-eš +EN₂ +... +DUMU +{d}UTU +ina +AN-e +u +KI-te +MIN +KID₃.KID₃.BI +... +NI₂-šu₂ +ŠID-nu +EN₂ +x +x +x +x +x +BAL +IN +e-mur-šu₂-ma +{d}asal-lu₂-hi +ih-ba-a +A-MEŠ +ABZU +x +x +x +x +GIM +{dug}GAN +ina +qa₂-ti-šu +GIŠ.HUR +ŠA₃-bi +ana +{d}e₂-a +be-li₂-šu +EN₂ +ul +ia-tu-un +EN₂ +{d}60 +u +{d}asal-lu₂-hi +EN₂ +{d}gu-la +GAŠAN +EN₂ +TU₆ +EN₂ +KID₃.KID₃.BI +{u₂}NU.LUH.HA +MUN +TI-qe₂ +EN₂ +3-šu₂ +ana +ŠA₃ +ŠUB-ma +i-man-zaq-ma +TI +EN₂ +da-an +ŠA₃-bu +qar-rad +ŠA₃-bu +ša₂ +ŠA₃-bi +ar-ra-qa +IGI-MIN-šu₂ +pur-si-it +MUD₂ +na-ši-ma +ir-ru +sa-hi-ru-ti +ul-lu-lu +ina +a-hi-šu₂ +e-ta-šiṭ +ŠA₃-bu +e-ta-tu-ra +MIN +ana +GURUŠ +dam-qi₂ +ana +KI.SIKIL +da-me-eq-tu₄ +uš-šir₃ +GURUŠ-ma +E₂ +li-pu-uš +uš-šir₃ +KI.SIKIL +qin-na +liq-nun +ir-ru +suh₄-hu-ru +ze-er +kar-šum +u₃ +ši-i +ri-qi₂-tu₂ +bu-up-pa-ni-ša₂ +sah-pat +liš-lim +kar-šum +ir-ri +liš-te-ši-ru-ma +ri-qi₂-tu₄ +lit-ru-uṣ +GIM +IM +ina +šu-bur-ri +GIM +ge-šu-ti +ina +na-piš-ti +li-ṣa-a +EN₂ +KID₃.KID₃.BI +7 +LAG +MUN +ina +ŠA₃-bi +ŠUB +EN₂ +7-šu₂ +ŠID-nu +NAG-šu₂-ma +ina-eš +EN₂ +ŠA₃-bu +ŠA₃-bu +e-ki-il +ŠA₃-bu +GIM +mu-ši-ti₃ +ma-li +nam-ri-ri +i-na +qab-li-ti +ul +i-šu +a-pa-tu₂-ma +ul +u₂-šer₃-šu +ma-am-ma +ir-ru +su-hu-ru +ze-er +kar-šum +u₃ +ši-i +ri-qi₂-tu +bu-up-pa-ni-ša₂ +sah-pat +li-it-ru-uṣ +kar-šu₂ +ri-qi₂-tu₂ +lit-ru-uṣ +ki-ma +ša₂-a-ri +a-na +šu-bur-ri +ki-ma +ge-šu-te +a-na +ZI-MEŠ +ki-ma +zu-ʾ-ti +u +u₂-pa-ṭi +u +di-ma-ti +ka-la +SU-šu₂ +na-šal-li-la-ni +EN₂ +ul +ia-ut-tu +EN₂ +{d}e₂-a +u +{d}asal-lu₂-hi +EN₂ +{d}da-mu +u +{d}gu-la +EN₂ +{d}NIN.GIRIM₃ +EN +EN₂ +TU₆ +EN₂ +KID₃.KID₃.BI +ana +ŠA₃-bi +10 +LAG +MUN +ŠUB +7.TA.AM₃ +EN₂ +ŠID-nu-ma +ina +GUB₃-ka +KAŠ₃-šu +IGI +ina +GUB₃-šu +i-mah-har +ba-lu +pa-tan +NAG-ma +ina-eš +EN₂ +ŠA₃-bu-ma +ŠA₃-bu +qar-rad +ŠA₃ +KAS₄ +ša +ŠA₃ +ze-ra +IGI-MIN-šu₂ +pur-sit₂ +da-a-me +ŠA₃-bu +ŠA₃-bu +a-ia-ša₂ +ta-lak +ŠA₃-bu +a-ia-ša₂ +ta-ṣa-bur +ŠA₃-bu +... +x +x +x +ad +SAHAR.HI.A +x +x +x +x +x +... +x +x +x +x +... +x +pad +su +x +x +x +x +x +ša₂-a-ru +x +x +x +x +x +x +x +x +i-pa-šar +pi-šir₃-šu +x +x +x +lip-šur +ki +ši +x +x +x +mu +ana +KA₂ +li-še-ṣi +TU₆ +EN₂ +KA.INIM.MA +IM +ša₂ +ŠA₃ +DAB-šu₂ +KID₃.KID₃.BI +I₃.GIŠ +ŠA₃-šu₂ +EŠ-MEŠ +EN₂ +an-ni-ta₅ +3-šu₂ +ŠID-nu +DIŠ +NA +LI.DUR-su +DU₈-at +{na₄}PEŠ₄ +ANŠE +{u₂}SIKIL +{u₂}ŠAKIRA +{šim}LI +x +x +x +5 +U₂.HI.A +ŠEŠ +TEŠ₂.BI +SUD₂ +ina +KAŠ +HI.HI +ina +LI.DUR-šu₂ +tu-na-tak +U₂.HI.A +ŠEŠ-ma +ina +KAŠ +SILA₁₁-aš +tara-bak +x +x +{u₂}IGI-lim +{u₂}IGI.NIŠ +{u₂}tar-muš +x +x +x +x +SUD₂ +SUR +tuš-ta-na-as-sa₃-qam₂ +... +TI +ana +KI +MIN +{u₂}ṣi-bu-ra +{u₂}DILI +TEŠ₂.BI +SUD₂ +x +... +ana +KI +MIN +{u₂}IGI-lim +SUD₂ +ina +GEŠTIN +SUR +NAG-ma +TI +DIŠ +NA +LI.DUR-su +ŠUB-MEŠ-su +ana +TI-šu₂ +{u₂}im-hur-aš-na +SUHUŠ +x +x +x +x +x +x +TI +ina +KAŠ +ina +GEŠTIN +DU₁₀.GA +NAG-MEŠ-ma +TI +DIŠ +NA +ŠA₃-šu₂ +GIG +GA +AB₂ +KUG.GA +I₃.NUN.NA +UD.2.KAM₂ +NAG +DUB +1.KAM₂ +DIŠ +NA +su-a-lam +GIG +ana +ki-is +ŠA₃ +GUR-šu₂ +E₂.GAL +{m}AN.ŠAR₂-DU₃-A +LUGAL +ŠU₂ +MAN +KUR +AN.ŠAR₂{ki} +ša +{d}AG +{d}taš-me-tu₄ +GEŠTU-MIN +DAGAL-tu₄ +iš-ru-ku-uš +e-hu-uz-zu +IGI-MIN +na-mir-tu₄ +ni-siq +ṭup-sar-ru-ti +ša +ina +LUGAL-MEŠ-ni +a-lik +mah-ri-ia +mam₂-ma +šip-ru +šu-a-tu +la +e-hu-uz-zu +bul-ṭi +TA +muh-hi +EN +UMBIN +liq-ti +BAR-MEŠ +ta-hi-zu +nak-la +a-zu-gal-lu-ut +{d}nin-urta +u +{d}gu-la +ma-la +ba-aš-mu +ina +ṭup-pa-a-ni +aš₂-ṭur +as-niq +IGI.KAR₂-ma +a-na +ta-mar-ti +ši-ta-si-ia +qe₂-reb +E₂.GAL-ia +u₂-kin +{giš}KIŠI₁₆.HAB +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +NA +SAG.KI +GUB₃-šu₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +{u₂}SU.AN.DAR.RA +{šim}MUG +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +NA +SAG.KI-MIN-šu₂ +ṣab-ta-šu₂-ma +IGI-MIN-šu₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +DUH.ŠE.GIŠ.I₃ +ša₂-bu-lu-te +GAZ +SIM +x +x +x +x +x +x +x +x +x +DIŠ +NA +SA +SAG.KI +ZAG-šu₂ +ZI-ma +IGI +ZAG-šu₂ +... +x +x +x +x +x +{šim}BULUH +{šim} +... +DIŠ +NA +UGU-šu₂ +KUM₂ +u₂-kal +SA +ZI +SAG.KI +TUKU-ma +IGI-MIN-šu₂ +i-BAR₃ +IGI-MIN-šu₂ +bir-ra-ta₅ +i-pi-ta₅ +i-ši-ta₅ +mur-din-na +qu₃-qa-na +a-ša₂-a +u₃ +ER₂ +ŠUB.ŠUB-a +1/3 +SILA₃ +ZA₃.HI.LI +bu-ṭu-ta₅ +ina +{na₄}KINKIN +ARA₃-en +SIM +SAG-ka +u₂-kal +ina +ŠA₃ +1/3 +SILA₃ +TI-qe₂ +ina +A +GAZI{sar} +SILA₁₁-aš +SAR-ab +LAL-ma +UD.3.KAM +NU +DU₈ +1/3 +SILA₃ +sah-le₂-e +1/3 +SILA₃ +ZI₃ +ŠE.SA.A +ina +A +GAZI{sar} +SILA₁₁-aš +SAR-ab +LAL-ma +UD.3.KAM +NU +DU₈ +sah-le₂-e +ARA₃-ti₃ +{šim}GUR₂.GUR₂ +NAGA.SI +ina +KAŠ +SILA₁₁-aš +KI +MIN +{šim}ŠEŠ +MUN +eme-sal-li₃ +mal₂-ma-liš +HI.HI +ina +I₃.NUN +SUD₂ +IGI-MIN-šu₂ +te-qi₂ +1/3 +SILA₃ +ZA₃.HI.LI +1/3 +SILA₃ +ŠIKA +IM.ŠU.RIN.NA +10 +GIN₂ +hi-qa-ti +x +x +x +x +ina +A +GAZI{sar} +SILA₁₁-aš +SAR-ab +LAL-ma +UD.3.KAM +NU +DU₈ +EGIR +na-aṣ-ma-da-ti +an-na-ti +10 +GIN₂ +ZA₃.HI.LI +ša₂ +KA +ur-ṣi +x +x +x +x +x +x +x +MUN +A.GEŠTIN.NA +NU +TAG.TAG +ina +NINDA +is-sip₃-ma +GU₇ +5 +GIN₂ +x +x +x +x +x +ina +KAŠ.SAG +SIG₃-aṣ-ma +NAG-šu₂ +x +x +x +x +x +x +x +UD.1.KAM₂ +AN.ZAH +SUD₂ +... +10 +GIN₂ +GURUN +{giš}MAŠ.HUŠ +x +x +x +x +x +1/3 +SILA₃ +x +x +x +GAZ +SIM +ina +A +GAZI{sar} +SILA₁₁-aš +SAR-ab +LAL-ma +UD.3.KAM +NU +DU₈ +ŠIM.BI.ZI.DA +x +x +x +ina +I₃.UDU +UR.MAH +SUD₂ +x +x +x +x +x +x +x +x +x +x +{u₂}ZA.BA.LAM +1/3 +SILA₃ +x +x +x +x +GAZ +SIM +ina +A +GAZI{sar} +SILA₁₁-aš +SAR-ab +LAL-ma +UD.3.KAM +NU +DU₈ +10 +GIN₂ +ZI₃ +DUH.ŠE.GIŠ.I₃ +HAD₂.DU +GAZ +SIM +ina +A +GAZI{sar} +SILA₁₁-aš +KI +MIN +10 +GIN₂ +ZI₃ +DUH.ŠE.GIŠ.I₃ +HAD₂.DU +GAZ +SIM +... +x +... +UD.1.KAM +GABA-su +LAL +SAG.DU-su +... +ana +SAG.DU-šu₂ +DUB-ak +ina +E₂ +ša₂ +ta-ra-na₇ +TUKU-u₂ +TUŠ-šu₂ +... +1 +GIN₂ +U₅ +ARGAB{mušen} +1/2 +GIN₂ +... +1/3 +SILA₃ +NUMUN +BABBAR.HI{sar} +1/3 +SILA₃ +NUMUN +LU.UB₂{sar} +... +1/3 +SILA₃ +ZI₃.KUM +10 +GIN₂ +PA +{giš}x +... +NUMUN +sah-le₂-e +... +x +x +... +... +SILA₁₁-aš +KI +MIN +IM.SAHAR.NA₄.KUR.RA +ina +I₃.NUN +SUD₂ +te-qi₂ +1/3 +SILA₃ +PA +{giš}PEŠ₃ +ša +ina +{iti}BAR₂.ZAG.GAR +KUD-is +ina +A +GAZI{sar} +SILA₁₁-aš +GUR-ma +HAD₂.A +GAZ +SIM +x +x +x +x +x +x +SAR-ab +LAL-ma +KI +MIN +1/3 +SILA₃ +{u₂}HAB +1/3 +SILA₃ +NUMUN +{u₂}KI.{d}IŠKUR +x +x +x +x +x +x +LAL-ma +KI +MIN +NAGA.SI +ina +I₃ +SUD₂ +ina +kip-kip +NITA +HI.HI +SUD₂ +te-qi₂ +1/3 +... +LAL-ma +KI +MIN +... +LAL-ma +KI +MIN +... +x +... +x +... +te-qi₂ +... +... +SUD₂ +te-qi₂ +... +SILA₁₁-aš +SAR-ab +LAL-ma +KI +MIN +... +HAD₂.A +GAZ +SIM +ina +A +GAZI{sar} +SILA₁₁-aš +SAR-ab +LAL-ma +KI +MIN +... +GIR₃.PAD.DA +GID₂.DA +SUD₂ +MAR +... +ina +I₃.UDU +sa-a-qi₂ +MAŠ.DA₃ +SUD₂ +te-qi₂ +... +SILA₁₁-aš +SAR-ab +LAL-ma +UD.3.KAM₂ +NU +DU₈ +... +ina +GA +SILA₁₁-aš +SAR-ab +LAL-ma +KI +MIN +... +x +ina +LAL₃ +KUR-i +šu-hat +KU₃.SIG₁₇ +SUD₂ +MAR +x +x +x +x +x +x +GAZ +SIM +ina +A +GAZI{sar} +SILA₁₁-aš +SAR-ab +LAL-ma +UD.3.KAM₂ +NU +DU₈ +x +x +x +x +GAZ +SIM +ina +šur-šum-mi +KAŠ +ŠEG₆.GA₂ +SILA₁₁-aš +SAR-ab +LAL-ma +UD.3.KAM₂ +NU +DU₈ +x +x +x +x +x +du-muq-ši-na +ta-tab-bal +ina +LAL₃ +SUD₂ +te-qi₂ +{u₂}KUR.GI.RIN₂.NA +GAZ +SIM +ina +A +GAZI{sar} +SILA₁₁-aš +SAR-ab +LAL-ma +UD.3.KAM₂ +NU +DU₈ +{giš}ŠE.NU₂.A +GAZ +SIM +ina +A +GAZI{sar} +SILA₁₁-aš +SAR-ab +LAL-ma +UD.3.KAM₂ +NU +DU₈ +U₅ +ARGAB{mušen} +ina +LAL₃ +SUD₂ +te-qi₂ +1/3 +SILA₃ +PA +{giš}MA₂.ERIŠ₄{iš}.MA₂.RA +GAZ +SIM +ina +A +GAZI{sar} +SILA₁₁-aš +SAR-ab +LAL-ma +UD.3.KAM₂ +NU +DU₈ +IM.BABBAR +ba-aš-la +ina +I₃ +sir₂-di +SILA₁₁-aš +SAR-ab +LAL₂-ma +KI +MIN +ŠIKA +I₃.GU.LA +ša +kib-ša₂₅ +TUKU-u₂ +ina +I₃ +SAHAR.URUDU +SUD₂ +te-qi₂ +{u₂}ZA.BA.LAM +sah-le₂-e +GAZ +SIM +ina +šur-šum-mi +KAŠ.SAG +SILA₁₁-aš +SAR-ab +LAL-ma +UD.3.KAM₂ +NU +DU₈ +{u₂}hal-tap-pa-na₇ +{giš}MAŠ.HUŠ +GAZ +SIM +ina +šur-šum-mi +KAŠ +ŠEG₆.GA₂ +SILA₁₁-aš +SAR-ab +LAL-ma +UD.3.KAM₂ +NU +DU₈ +{šim}LI +{šim}GUR₂.GUR₂ +{šim}BULUH +ZA₃.HI.LI +NAGA.SI +LUH-si +ina +GA +SILA₁₁-aš +SAR-ab +LAL-ma +UD.3.KAM₂ +NU +DU₈ +SAHAR.URUDU +ina +LAL₃ +SUD₂ +te-qi₂ +1/3 +SILA₃ +ZA₃.HI.LI +1/3 +SILA₃ +DIDA +... +SILA₁₁-aš +SAR-ab +LAL-ma +UD.3.KAM₂ +NU +DU₈ +1/3 +SILA₃ +ZA₃.HI.LI +... +SILA₁₁-aš +SAR-ab +LAL-ma +UD.3.KAM₂ +NU +DU₈ +KUG.GAN +AN.ZAH +... +SUD₂ +MAR +1/3 +SILA₃ +ZI₃ +GU₂.GAL +... +SILA₁₁-aš +SAR-ab +LAL-ma +UD.3.KAM₂ +NU +DU₈ +GAZI{sar} +BIL₂-lu +GAZ +SIM +ina +šur-šum-mi +KAŠ +SILA₁₁-aš +SAR-ab +LAL-ma +UD.3.KAM₂ +NU +DU₈ +NUMUN +{u₂}EME +UR.GI₇ +SIG₇-su +tu-has₂-sa₃ +A-šu₂ +ana +{dug}BUR.ZI +SUR-at +EN +HAD₂.DU +GAR-an +UD-ma +i-tab-lu +ina +I₃ +SAHAR.URUDU +SUD₂ +MAR +U₂ +BABBAR +U₅ +ARGAB{mušen} +I₃.UDU +{šim}GIG +{šim}GAM.MA +NUMUN +{u₂}SI.SA₂ +ka-mun +{giš}ŠINIG +NUMUN +{u₂}IN.NU.UŠ +ŠE₁₀ +UR.GI₇ +PA +{giš}ŠINIG +MUN +eme-sal-li₃ +{u₂}KUR.RA +{u₂}GAMUN.GE₆ +ma-la +ni-iš +IGI-MIN-ka +ŠU.TI +ta-pa-aṣ +ina +I₃ +SUD₂ +IGI-MIN-šu₂ +ina +NAGA.SI +LUH-si +EN +ER₂ +KUD-su +te-qi₂ +UD-ma +LAL-šu₂ +te-qi₂ +EGIR-šu₂ +DILIM₂ +A.BAR₂ +NU +DU₈-šu₂ +A +{giš}ŠE.NU₂.A +ŠEG₆-šal +ana +{dug}GAN +SAHAR₂ +te-sip +ina +MUL₄ +tuš-bat +ina +še-ri₃ +SAG.DU-su +ŠEŠ₂ +A +{giš}ŠE.NU₂.A +ŠEG₆.GA₂ +ana +SAG.DU-šu₂ +tu-qar-ra-ar₂ +SAG.DU-su +kun-ša₂₅ +{sig₂}GA.RIG₂.AK.A +KEŠDA +10 +SILAₓ +I₃.GIŠ +ana +SAG.DU-šu₂ +DUB +ina +E₂ +ša₂ +ta-ra-na₇ +TUKU-u₂ +TUŠ-šu₂ +UD.3.KAM₂ +an-na₇ +DU₃.DU₃-uš +DIŠ +NA +UGU-šu₂ +KUM₂.KUM₂-im +IM.BABBAR +NAGA.SI +IN.GUN₃ +kib-rit +GIR₃.PAD.DA +NAGA.SI +I₃.HUL +u +I₃ +KU₆ +DIŠ-niš +HI.HI +ina +NE +{giš}KIŠI₁₆ +SAG.DU-su +tu-qat-tar +DIŠ +NA +UGU-šu₂ +KUM₂ +TUKU-ma +IGI-MIN-šu₂ +i-bar-ru-ra +MUD₂ +u₂-kal-la +1/3 +SILA₃ +ZA₃.HI.LI +GAZ +SIM +ina +A +GAZI{sar} +SILA₁₁-aš +SAG.DU-su +SAR-ab +LAL-ma +UD.3.KAM₂ +NU +DU₈ +1/3 +SILA₃ +ZA₃.HI.LI +1/3 +SILA₃ +ZI₃.KUM +ina +A.GEŠTIN.NA +SILA₁₁-aš +SAG.DU-su +SAR-ab +LAL-ma +UD.3.KAM₂ +NU +DU₈ +1/3 +SILA₃ +PA +{giš}PEŠ₃ +ina +GA +SILA₁₁-aš +SAR-ab +KI +MIN +1/3 +SILA₃ +{u₂}HAB +ina +GA +SILA₁₁-aš +SAR-ab +KI +MIN +1/3 +SILA₃ +{u₂}u₅-ra-na +... +ina +GA +SILA₁₁-aš +SAR-ab +KI +MIN +1/3 +SILA₃ +{u₂}ṣa-da-na +... +ina +GA +SILA₁₁-aš +SAR-ab +KI +MIN +{u₂}sa-ma-na₇ +... +ina +GA +SILA₁₁-aš +SAR-ab +KI +MIN +DIŠ +NA +UGU-šu₂ +UD.DA +TAB +... +ŠEG₆.GA₂ +{šim}LI +{šim}GUR₂.GUR₂ +{šim}BULUH +sah-le₂-e +DUH.ŠE.GIŠ.I₃ +... +SAR-ab +KI +MIN +DIŠ +NA +UGU-šu₂ +UD.DA +TAB-ma +IGI-MIN-šu₂ +i-bar-ru-ra +u₃ +MUD₂ +DIRI-a +x +x +x +{šim}LI +{u₂}NU.LUH.HA +x +x +x +sah-le₂-e +{giš}MA₂.ERIŠ₄.MA₂.RA +DIŠ-niš +GAZ +SIM +ina +DIDA +HI.HI +SAG.DU-su +LAL-id +1/3 +SILA₃ +ZA₃.HI.LI +1/3 +SILA₃ +ZI₃ +{giš}EREN +1/3 +SILA₃ +{šim}LI +1/3 +SILA₃ +IM.DI +1/3 +SILA₃ +{giš}si-hu +1/3 +SILA₃ +{giš}ar₂-ga-an-nu +... +DUH.ŠE.GIŠ.I₃ +ZI₃ +GU₂.GAL +ZI₃ +MUNU₆ +DIDA +ŠEG₆.GA₂ +ŠU.TI +... +SILA₃ +ŠU.TI +ina +A +GAZI{sar} +SILA₁₁-aš +SAR-ab +LAL +DIŠ +NA +MURUB₄ +UGU-šu₂ +GIR₂.GIR₂-su +SIG₂ +SAG.DU-šu₂ +GUB.GUB-za +{giš}GUR₂.GUR₂ +{giš}x +x +x +x +x +x +x +x +SUD₂ +ina +{urudu}ŠEN.TUR +tu-ba-har +SAG.DU-su +x +x +x +x +x +x +KAŠ +ṭi-ṭi +I₃.NUN.NA +ina +IZI +ŠEG₆-šal +x +x +x +x +{šim}GUR₂.GUR₂ +{šim}LI +{šim}MUG +{šim}ŠEŠ +KAŠ +ṭi-ṭi +I₃.NUN.NA +ina +IZI +ŠEG₆-šal +x +x +1 +NINDA +IM.BABBAR +NAGA.SI +IN.GUN₃ +kib-rit +GIR₃.PAD.DU +LU₂.U₁₈.LU +GIR₃.PAD.DU +ŠAH +x +x +I₃.HUL +I₃ +KU₆ +DIŠ-niš +HI.HI +ina +NE +{giš}KIŠI₁₆ +SAG.DU-su +tu-qat-tar +EN₂ +sag-ki-ni +sag-ki +he₂-en-gi₄-gi₄ +i-bi₂-ni +i-bi₂ +he₂-en-gi₄-gi₄ +mu-ru-ub-bi-ni +mu-ru-ub-bi +he₂-en-gi₄-gi₄ +he₂-en-da-a-na-mul-la +he₂-en-da-a-na-mul-la +TU₆ +EN₂ +KA.INIM.MA +DIŠ +NA +MURUB₄ +UGU-šu₂ +u₂-zaq-qat-su +KID₃.KID₃.BI +BAR +MUŠ +tur-ar₂ +x +x +x +x +EN₂ +ŠID-nu +UGU-šu₂ +x +x +x +EN₂ +me +kug-ga +ba-da-ra-ah +ba-da-ra-ah +me +kug-ga +iz-zi +me +zi-zi +me +še-ra-še-ra +x +x +x +hu-luh-ha +gi₄-gi₄ +TU₆ +EN₂ +EN₂ +KA-šu +GIM +KA +la +x +x +x +x +x +x +GIM +KA-šu +ne +x +x +x +TU₆ +EN₂ +... +ana +MURUB₄ +UGU-šu₂ +ŠID-nu +... +x +x +x +x +{u₂}KUR.RA +... +SAR-ab +LAL-ma +UD.3.KAM₂ +NU +DU₈ +ana +KI +MIN +... +ina +A +GAZI{sar} +SILA₁₁-aš +LAL₂-su-ma +x +x +x +ana +KI +MIN +{u₂}x +... +x +su-pa-la₁₂ +ina +KAŠ +ta-la₃-aš +x +x +ana +KI +MIN +sah-le₂-e +... +ni-kip-ta₅ +ZI₃ +ŠE.SA.A +DIŠ-niš +GAZ +SIM +ina +KAŠ +SILA₁₁ +x +x +ana +KI +MIN +1/3 +SILA₃ +sah-le₂-e +... +SILA₁₁-aš +SAR-ab +x +x +ana +KI +MIN +1/2 +SILA₃ +... +SILA₁₁-aš +SAR-ab +x +x +ana +KI +MIN +1/3 +SILA₃ +... +GAZ +SIM +ina +A +GAZI{sar} +SILA₁₁-aš +SAR-ab +x +x +ana +KI +MIN +{šim} +... +ina +A +GAZI{sar} +SILA₁₁-aš +x +x +ana +KI +MIN +... +ina +KAŠ +SILA₁₁-aš +SAR-ab +x +x +ana +KI +MIN +... +ina +A +GAZI{sar} +SILA₁₁-aš +SAR-ab +LAL +ana +KI +MIN +... +ina +A +GAZI{sar} +SILA₁₁-aš +SAR-ab +x +x +ana +KI +MIN +... +ina +A +GAZI{sar} +SILA₁₁-aš +SAR-ab +x +x +ana +KI +MIN +... +ina +šur-šum-mi +KAŠ +SILA₁₁-aš +SAR-ab +x +x +ana +KI +MIN +x +x +x +x +x +x +x +tu-šam-maṭ +ina +A +GAZI{sar} +LUH-si +1/3 +SILA₃ +{giš}MAŠ.HUŠ +1/3 +SILA₃ +x +x +x +x +x +GAZ +SIM +ina +A +GAZI{sar} +SILA₁₁-aš +SAG.DU-su +u +GABA-su +LAL +ana +KI +MIN +x +x +x +x +x +ZI₃.KUM +HI.HI +ina +A +GAZI{sar} +SILA₁₁-aš +LAL +ana +KI +MIN +x +x +x +x +ZI₃.KUM +ina +A +GAZI{sar} +ta-la₃-aš +SAR-ab +LAL-ma +UD.3.KAM₂ +NU +DU₈ +ana +KI +MIN +x +x +x +{giš}HA.LU.UB₂ +2 +SILA₃.TA.AM₃ +HI.HI +ina +A +GAZI{sar} +u +KAŠ +SILA₁₁-aš +KI +MIN +ana +KI +MIN +x +x +x +{u₂}su-pa-lu +ina +I₃ +sir₂-di +u +A +GAZI{sar} +SILA₁₁-aš +KI +MIN +DIŠ +NA +SAG.DU-su +KUM₂.KUM₂-im +SAR-ab +ZI₃ +ZIZ₂.AN.NA +ina +A +GAZI{sar} +SILA₁₁-aš +UD.15.KAM₂ +UD.5.KAM₂ +LAL₂ +ana +KI +MIN +IM.GU₂ +UD.DA +SA₂.SA₂ +GAZ +SIM +ina +A +GAZI{sar} +SILA₁₁-aš +UD.3.KAM₂ +LAL₂ +DIŠ +ina +qer-bit +SAG.DU-šu₂ +MURUB₄ +SAG.DU-šu₂ +u₂-ba-na-tu +uṣ-ṣa +rib-ki +ina +A +GAZI{sar} +SILA₁₁-aš +I₃ +EŠ-MEŠ +LAL +ana +KUM₂ +SAG.DU +šu-ut-bi-i +ŠIKA +IM.ŠU.RIN.NA +ZI₃.KUM +ina +A +GAZI{sar} +SILA₁₁-aš +SAG.DU-su +LAL +ana +KI +MIN +sah-le₂-e +bu-ṭu-ta₅ +ZI₃ +ŠE.SA.A +ina +A +GAZI{sar} +SILA₁₁-aš +LAL +ana +KI +MIN +sah-le₂-e +{šim}LI +ina +A +GAZI{sar} +SILA₁₁-aš +LAL +ana +KI +MIN +x +x +x +HAD₂.DU +GAZ +SIM +ina +A +GAZI{sar} +SILA₁₁-aš +LAL +ana +KI +MIN +DE₃ +ṣar-ba-te +ina +A +GAZI{sar} +SILA₁₁-aš +LAL +ana +KI +MIN +{u₂}hal-tap-pa-na₇ +GURUN +{giš}MAŠ.HUŠ +ina +A +GAZI{sar} +SILA₁₁-aš +LAL +ana +KI +MIN +{u₂}GEŠTIN +KA₅.A +HAD₂.A +SUD₂ +ina +A +GAZI{sar} +SILA₁₁-aš +LAL +ana +KI +MIN +{u₂}MA₂.ERIŠ₄.MA₂.RA +ina +A +GAZI{sar} +SILA₁₁-aš +LAL +ana +KI +MIN +x +x +x +{u₂}ZA.BA.LAM +ina +A +GAZI{sar} +SILA₁₁-aš +LAL +ana +KI +MIN +... +DE₃ +ṣar-ba-te +ina +A +GAZI{sar} +SILA₁₁-aš +LAL +ana +KI +MIN +... +{šim}GUR₂.GUR₂ +ina +A +GAZI{sar} +SILA₁₁-aš +LAL +ana +KI +MIN +... +ZI₃.KUM +HI.HI +ina +A +GAZI{sar} +SILA₁₁-aš +LAL +ana +KI +MIN +... +ZI₃.KUM +HI.HI +ina +A +GAZI{sar} +SILA₁₁-aš +LAL +ana +KI +MIN +... +ina +A +GAZI{sar} +SILA₁₁-aš +LAL +ana +KI +MIN +qi₂-lip +še-el-le-be₂-nu +ina +A +GAZI{sar} +SILA₁₁-aš +LAL +ana +KI +MIN +... +DE₃ +ṣar-ba-te +ina +A +GAZI{sar} +SILA₁₁-aš +LAL +ana +KI +MIN +... +ina +A +GAZI{sar} +SILA₁₁-aš +LAL +DIŠ +... +SAG.DU-šu₂ +i-šah-hu-uh +ZI +SAG.KI +TUKU.TUKU +1 +GIN₂ +... +SAG.DU-su +SAR-ab +tu-kaṣ₃-ṣa +LAL-ma +UD.3.KAM₂ +NU +DU₈ +ana +KI +MIN +... +ZI₃ +{giš}ŠUR.MIN₃ +10 +GIN₂ +ZI₃ +{giš}MAN.DU +10 +GIN₂ +ZI₃ +{šim}LI +10 +GIN₂ +ZI₃ +{šim}GUR₂.GUR₂ +10 +GIN₂ +ZI₃ +GAZI{sar} +10 +GIN₂ +ZI₃ +GU₂.GAL +10 +GIN₂ +ZI₃ +GU₂.TUR +10 +GIN₂ +BAR +ZU₂.LUM.MA +10 +GIN₂ +ZA₃.HI.LI +10 +GIN₂ +DIDA +SIG₅ +10 +GIN₂ +ZI₃ +MUNU₆ +DIŠ-niš +HI.HI +ina +KAŠ +SILA₁₁-aš +GUR-ma +HAD₂.A +GAZ +SIM +SAG-ka +u₂-kal +ina +ŠA₃ +1/3 +SILA₃ +TI-qe₂ +ina +A +GAZI{sar} +SILA₁₁-aš +SAR-ab +LAL-ma +KI +MIN +ana +KI +MIN +ZA₃.HI.LI +ARA₃-ti₃ +{šim}GUR₂.GUR₂ +NAGA.SI +DIŠ-niš +SUD₂ +ina +KAŠ +SILA₁₁-aš +SAR-ab +KI +MIN +ana +KI +MIN +{šim}GUR₂.GUR₂ +{šim}LI +{šim.d}NIN.URTA +NUMUN +{u₂}AB₂.DUH +KA +A.AB.BA +{šim}ŠEŠ +DIŠ-niš +SUD₂ +ina +KAŠ +SILA₁₁-aš +SAR-ab +KI +MIN +ana +KI +MIN +{šim}GUR₂.GUR₂ +{šim}LI +ILLU +{šim}BULUH +ZU₂.LUM +I₃.UDU +ELLAG₂ +UDU.NITA₂ +DIŠ-niš +SUD₂ +ina +KUŠ +SUR-ri +SAR-ab +KI +MIN +DIŠ +NA +SAG.DU-su +UD.DA +TAB-ma +u +SU-šu₂ +GU₇-šu₂ +SAG.DU-su +nu-pu-uh +PA +{giš}MES.MA₂.GAN.NA +x +x +x +SIM +ZI₃ +GU₂.GAL +ZI₃ +GU₂.TUR +ZI₃ +{še}IN.NU.HA +DIŠ-niš +ina +šur-šum-mi +KAŠ +SILA₁₁-aš +SAR-ab +KI +MIN +ana +KI +MIN +DUH.ŠE.GIŠ.I₃ +HAD₂.A-ti +{šim}GUR₂.GUR₂ +{šim}LI +ZI₃.KUM +ina +šur-šum-mi +KAŠ +SILA₁₁-aš +SAR-ab +KI +MIN +ana +KI +MIN +x +x +{giš}HAR.HAR +{šim}GUR₂.GUR₂ +{šim}LI +ZI₃.KUM +ina +KAŠ +SILA₁₁-aš +SAR-ab +KI +MIN +ana +KI +MIN +{u₂}LAL +HAD₂.A +SUD₂ +ina +A +ŠED₇ +SILA₁₁-aš +SAR-ab +KI +MIN +DIŠ +NA +SAG.DU-su +KUM₂-ma +SIG₂ +SAG.DU-šu₂ +i-šah-hu-uh +ana +KUM₂ +SAG.DU-šu₂ +ZI-hi +u +SIG₂ +DU-ta₅ +GUB-zi +{u₂}ak-tam +{u₂}ši-ma-ha +U₂ +BABBAR +DIŠ-niš +SUD₂ +ina +A +HI.HI +SAG.DU-su +te-sir +UD.2.KAM +ina +SAG.DU-šu₂ +i-mit-ti₃ +x +x +x +SAG.DU-su +LUH-si +NUMUN +{giš}bi-ni +{u₂}kam₂-ka-da +{u₂}NIG₂.GAN₂.GAN₂ +{u₂}NIG₂.GIDRU +ŠIKA +NUNUZ +GA.NU₁₁{mušen} +DIŠ-niš +SUD₂ +ina +I₃ +HI.HI +SAG.DU-su +ŠEŠ₂-aš +EN₂ +munšub₂ +al-dub₂-ba +munšub₂ +al-kalag-ga +munšub₂ +al-keš₂-da-keš₂-da +munšub₂ +nig₂-gub-ba +TU₆ +EN₂ +KA.INIM.MA +SIG₂ +SAG.DU +NIG₂.GUB.BA +KEŠ₂.DA.KAM₂ +DU₃.DU₃.BI +{na₄}DU₈.ŠI.A +{na₄}GUG +{na₄}ZA.GIN₃ +{na₄}NIR₂ +{na₄}BABBAR.MIN₅ +{na₄}IGI +KU₆ +{na₄}ŠUBA +{na₄}ŠUBA +A₂.ZI.DA +{na₄}ŠUBA +A₂.GUB₃.BU +{na₄}KUR-nu +DAB +{na₄}MUŠ.GIR₂ +{na₄}AŠ.GI₃.GI₃ +{na₄}UGU.AŠ.GI₃.GI₃ +13 +ni-bi +an-nu-ti +ina +{sig₂}HE₂.ME.DA +E₃-ak +ina +SIG₂-šu₂ +KEŠ₂.DA-ma +SIG₂ +DU-tu₂ +ik-kal-la +EN₂ +at-ta +ba-ra-an-gi +zi-ba-an-gi +ba-te-gi-ra +zi-im-ba-ra +uz-mi-ia-aš +pa-at-ri +un-da-kur-ra +he₂-en-na +he₂-min-na +pa-ri-ša₂ +TU₆ +EN₂ +KID₃.KID₃.BI +7 +ha-ru-be₂-e +ša₂ +{im}SI.SA₂ +TI-qe₂ +ina +IZI +ur-ba-te +tur-ar₂ +ina +I₃ +HI.HI +EN₂ +7-šu₂ +ŠID-nu +3-šu₂ +ŠEŠ₂-su +3-šu₂ +ta-hal-la-su +e-nu-ma +ta-hal-la-ṣu-šu₂ +EN₂ +3-šu₂ +ana +UGU +SAG.DU-šu₂ +ŠID-nu +EN₂ +i-bi +gi +i-bi +gi +he₂-en-zalag₂-ge +sag-ki +zi₂ +sag-ki +zi₂ +he₂-en-zalag₂-ge +sag-ki +iz +sag-ki +iz +he₂-en-zalag₂-ge +še-er +zi +he₂-en-zalag₂-ge +ma-al-la₂ +i-di +mu-ra-an-gub +hul-bi +hul-hul +EN₂ +KID₃.KID₃.BI +SAG.DU +BURU₅ +KUR.RA +SAG.DU +IGIRA₂{mušen} +SAG.DU +BURU₅.HABRUD.DA +NITA₂ +{giš}U₄.HI.IN +{giš}GIŠIMMAR +x +x +x +x +x +x +x +EN₂ +3-šu₂ +ana +ŠA₃ +ŠID-nu +EŠ-MEŠ-su-ma +SIG₂ +DU-tu₂ +ik-kal-la +lu +ša₂ +NITA₂ +lu +ša₂ +MUNUS +x +x +x +x +x +x +šu-gi +lil +šu-gi +e-ne +šu-gi +KID₃.KID₃.BI +7 +ha-ru-be₂-e +ša₂ +{im}SI.SA₂ +TI +ina +IZI +tur-ar₂ +ina +I₃ +{giš}ŠUR.MIN₃ +MUD₂ +{giš}EREN +HI.HI +EŠ-MEŠ-su-ma +SI.SA₂-im +EN₂ +MU.UL.LU.U +HUL.A +ša₂ +GAL₂-ma +DINGIR +ṣi-ir-ta +ma-ni-ir-ra-an-ni +ha-ba-re-eš +ma-ni-ir-ra-an-ni +hal-hal-la-ta +la-gu +DIM₂-ma +TI.LA.ŠE₃ +x +x +ma +u-ba-na-aš +du-ru-na-aš +hu-ri-na-ah +mu-un-di-hu-na +ha-at-tu-uk +TU₆ +EN₂ +KA.INIM.MA +SIG₂ +KEŠ₂.DA.KAM₂ +DIŠ +NA +SIG₂ +TE-MEŠ-šu₂ +ma-gal +i-šah-hu-uh +NA +BI +DINGIR-šu₂ +{d}iš₈-tar₃-šu₂ +KI-šu₂ +ze-nu-u +KID₃.KID₃.BI +ana +IGI +MUL +mah-re-e +KEŠDA +KEŠDA +ZU₂.LUM.MA +{zi₃}EŠA +DUB-aq +NINDA.I₃.DE₂.A +LAL₃ +I₃.NUN.NA +GAR-an +{udu}SISKUR +DU₃-uš +{uzu}ZAG +{uzu}ME.HE₂ +{uzu}KA.NE +tu-ṭah-ha +KAŠ +BAL-qi₂ +GIŠ.GAN₂ +{giš}MA₂.EREŠ₄{eš}.MA₂-le-e +U₅ +ARGAB{mušen} +{u₂}IGI.NIŠ +{u₂}IGI-lim +ŠE₁₀ +MA₂.LAH₅ +KI +I₃ +HI.HI +ina +IGI +MUL +GAR-an +EN₂ +an-ni-ta₅ +3-šu₂ +ŠID-nu +at-ta +MUL +mu-nam-mir +x +x +x +x +x +x +qe₂-reb +AN-e +ha-iṭ +UB-MEŠ +ana-ku +NENNI +A +NENNI +ina +GE₆ +an-ne₂-e +IGI-ka +kam₂-sa-ku +di-ni +di-in +EŠ.BAR-a-a +TAR-us +U₂.HI.A +ŠEŠ-MEŠ +lip-si-su +lum-ni +A₂.GU₂.ZI.GA +ZALAG-ma +TE-MEŠ-šu₂ +ta-kar +ana +KI +MIN +GIŠ.GAN₂ +{giš}LU₂-a-nu +{u₂}eli-kul-la +{u₂}kur-ka-na-a +ša₂ +KUR +ni-kip-ta₅ +ina +KUŠ +{munus}AŠ₂.GAR₃ +GIŠ₃.NU.ZU +ina +GU₂-šu₂ +GAR-an +6 +KA.INIM.MA +SIG₂ +KEŠ₂.DA.KAM +DIŠ +NA +UGU-šu₂ +A +u₂-kal +ina +ŠU.SI-ka +GAL-ti +a-šar +A-MEŠ +u₂-kal-lu +TAG.TAG-at +šum-ma +UZU.GIŠ-šu₂ +be₂-eʾ-šat +A +ša +gul-gul-li-šu₂ +it-tar-du +BAD-ma +gul-gul-la-šu₂ +te-ser-rim +A +ša +gul-gul-li-šu₂ +tu-še-lam +TUG₂ +SIG +A +LUH-si +I₃.GIŠ +SUD +ana +UGU +GIG +GAR-an +KU.KU +GIŠ.KIN₂ +ŠE₁₀ +BAHAR₂ +SUD₂ +ana +UGU +GIG +MAR +UD.3.KAM +LAL +DU₈-ma +TUG₂ +SIG +A +LUH-si +I₃.GIŠ +SUD +ana +UGU +GIG +GAR-an +{tug₂}na-al-ti-ip-ti +x +x +x +x +x +UD.2.KAM +LAL +DU₈-ma +TUG₂ +SIG +A +LUH-si +I₃.GIŠ +SUD +ana +UGU +GIG +GAR-an +x +x +x +x +x +x +GAZI{sar} +BIL₂-ti +KI +ZI₃ +ŠE.SA.A +HI.HI +ana +UGU +GIG +MAR +UD.1.KAM +LAL +DU₈-ma +x +x +x +x +{šim}LI +GAZ +KI +ZI₃.KUM +HI.HI +ina +A +GAZI{sar} +SILA₁₁-aš +LAL +IGI +GIG +tu-gal-lab +EN +TI.LA +LAL₂ +x +x +x +šum₄-ma +TAG-ma +UZU.GIŠ-šu₂ +la +be₂-eʾ-šat +ana +li-mit +SAG.DU-šu₂ +NE +NA₄-MEŠ +GAR-an +EN₂ +ur-ba-tu₄ +ur-ba-tu₄ +ur-ba-tu₄ +sa-am-tu₄ +ZI-am-ma +ur-pa-ta +SA₅ +ik-tum₃ +IM.ŠEG₃ +SA₅ +ZI-ma +KI-tu₂ +SA₅-tu₄ +ir-hu +A.ZI.GA +SA₅ +ZI-ma +ID₂ +SA₅-tu₄ +im-la +{lu₂}ENGAR +SA₅ +{giš}MAR +SA₅ +{giš}DUSU +SA₅ +IL₂-ši-ma +A-MEŠ +SA₅-MEŠ +li-is-kir +{giš}IG-ma +SA₅ +{giš}SAG.KUL-mi +SA₅ +KA₂-šu₂-nu +ed-la +man-nu-um-ma +ša₂ +i-pe-et-ta-ku-nu-ši +i-ri-iš +ma-ra +i-ri-iš +ma-ra +TU₆ +EN₂ +KA.INIM.MA +A.MEŠ +SAG.DU +la +ik-kal-lu-u₂ +DU₃.DU₃.BI +hal-lu-ta-na-a +ša₂ +GIR₃ +EME₃ +x +x +x +x +NIGIN-mi +ana +ŠA₃ +he-pe-e-ti +GAR-an +EN₂ +7-šu₂ +ŠID-nu +ina +TUG₂ +ta-pa-ti₄-iq +x +x +x +x +NU.NU +7 +KA.KEŠDA +KEŠDA +e-ma +KEŠDA +EN₂ +ŠID-nu +ina +SAG.KI-šu₂ +tara-kas₂-ma +ina-eš +DIŠ +NA +SAG.DU-su +A +u₂-kal +e-le-nu +da-da-ni-šu₂ +x +x +x +x +{giš}EREN +hum-ṭam₂ +GAR-an-ma +A-šu₂ +ub-bal +DIŠ +NA +ab-bu-ut-ta-šu₂ +A +u₂-kal +kal +UD +x +x +x +x +ina +UD.7.KAM +LAL +ina +UD.8.KAM +ab-bu-ut-ta-šu₂ +3-šu₂ +te-ser-rim +ka-a-a-na-am +LAL₂ +DIŠ +NA +SAG.DU-su +še-ha +u₂-kal +{giš}EREN +hum-ṭam₂ +GAR-an +DIŠ +NA +SAG.DU-su +it-te-ne₂-ba-aš-šum +{na₄}mu-ši-tu₄ +{na₄}MUŠ.GIR₂ +{na₄}DAG.GAZ +{na₄}GUG +mar-ha-ši +{na₄}ZU₂ +GE₂ +{na₄}NIR₂ +{na₄}AN.ZA.GUL.ME +{na₄}AMAŠ.PA.E₃ +8 +NA₄-MEŠ +an-nu-ti +ina +{sig₂}HE₂.ME.DA +SIG₂ +BABBAR +NU.NU +E₃ +ina +SAG.KI-MIN-šu₂ +tara-kas₂-ma +ina-eš +DIŠ +NA +SAG.DU-su +ik-ta-na-aṣ-ṣa +{šim}GUR₂.GUR₂ +{šim}LI +{šim}MAN.DU +ŠIM.ŠAL +{šim}BAL +x +x +x +x +x +x +{giš}EREN.SUMUN +{giš}si-hu +{giš}ar₂-gan-nu +{u₂}ba-ri-ra-ta₅ +GI +DU₁₀ +ana +KI +MIN +x +x +x +ina +I₃.UDU +ELLAG₂ +UDU.NITA₂ +ša₂ +MUN +NU +ŠUB-u +ina +MUD₂ +{giš}EREN +SUD₂ +ina +KUŠ +SUR-ri +SAG.DU-su +LAL +ana +KI +MIN +bu-ṭu-ut-tu₄ +{šim}BULUH +{u₂}kur-ka-nu-u +qu-ta-ru +ša₂ +SAG.DU +nap-šal-ti +SAG.DU +PIŠ₁₀.{d}ID₂ +BABBAR +u +GE₆ +ni-kip-ta +NITA₂ +u +MUNUS +{na₄}mu-ṣa +x +x +x +x +x +KA +A.AB.BA +NUMUN +{giš}bi-ni +SI +DARA₃.MAŠ +gul-gul +NAM.LU₂.U₁₈.LU +U₂-HI-A +an-nu-ti +TEŠ₂.BI +SUD₂ +x +x +x +x +x +x +x +x +x +SAG.KI-MEŠ-šu₂ +x +x +x +qu₅-tar₅ +SAG.DU +{u₂}KUR.KUR +PIŠ₁₀.{d}ID₂ +{u₂}kur-ka-na₇ +ni-kip-ta +NITA₂ +u +MUNUS +DIŠ-niš +tu-dak-kak +ina +MUD₂ +{giš}EREN +HI.HI +ina +NE +tu-qat-tar-šu +DIŠ +NA +SAG.DU-su +GIG +{u₂}ṣa-ṣu-um-ta₅ +{u₂}MUR.DU₃.DU₃ +{u₂}pi-mu-un-zer +x +x +x +SIG₇-su +DIŠ-niš +SUD₂ +ina +A +GAZI{sar} +SILA₁₁-aš +SAG.DU-su +SAR-ab +LAL-ma +UD.3.KAM₂ +NU +DU₈ +DIŠ +NA +SAG.DU-su +DUGUD +{šim}GUR₂.GUR₂ +{šim}LI +{u₂}KUR.KUR +{šim}ŠEŠ +KI +ILLU +{šim}BULUH +x +x +x +ELLAG₂ +GUD +HI.HI +ina +KUŠ +SUR-ri +SAR-ab +UD.5.KAM₂ +LAL₂ +ana +KI +MIN +x +x +x +x +15 +u +150 +3.TA.AM₃ +te-ser-rim +x +x +x +ina +A +GAZI{sar} +SILA₁₁-aš +I₃ +ŠEŠ₂ +LAL +... +ana +SAG.DU-šu₂ +... +DUGUD-ma +ina +ZI-šu₂ +SAG.DU-su +... +{na₄}NA.ZA₃.HI.LI +SUD₂ +... +SAG.DU-šu₂ +i-tel-li +ana +KI +MIN +... +HI.HI +SAG.DU-su +EŠ-MEŠ +DIŠ +NA +... +im +HAD₂.A +GAZ +SIM +KI +... +LAL-su-ma +UD.3.KAM +NU +DU₈ +DIŠ +NA +SAG.DU-su +... +IGI-šu₂ +GID₂.DA-su +ŠU-MIN-šu₂ +u +GIR₃-MIN-šu₂ +... +šim-ma-ta₅ +TUKU-MEŠ +ana +TI-šu₂ +{šim}GUR₂.GUR₂ +{šim}LI +{u₂}KUR.KUR +... +{giš}ILDAG₂ +GAZI{sar} +ZI₃ +ŠE.SA.A +DIDA +SIG₅ +... +ina +A +GAZ{sar} +SILA₁₁-aš +SAG.DU-su +... +LAL₂-ma +UD.7.KAM₂ +NU +DU₈ +ana +KI +MIN +{u₂}x +... +ŠEŠ₂-MEŠ-ma +ina-eš +DIŠ +NA +MURUB₄ +SAG.DU-šu₂ +... +i-ta-na-ah +GAZ +ŠA₃ +TUKU-MEŠ-ši +ELLAG₂-šu₂ +... +ik-ta-ner-ru +ana +GIG +ZI-hi +... +DIDA +SIG₅ +GAZI{sar} +ZI₃ +ŠE.SA.A +... +LAL-id +... +x +... +... +... +... +x +... +ina +A +GAZI{sar} +SILA₁₁-aš +... +ana +KI +MIN +... +x +{giš}ŠINIG +NUMUN +{u₂}AB₂.DUH +... +x +... +KAŠ.SAG +lu +ina +GEŠTIN +NAG +... +DIŠ +NA +SAG.KI.DAB.BA +TUKU.TUKU +NUMUN +{u₂}UKUŠ₂.HAB +DUB +1.KAM₂ +DIŠ +NA +UGU-šu₂ +KUM₂ +u₂-kal +E₂.GAL +{m}AN.ŠAR₂-DU₃-A +LUGAL +ŠU₂ +MAN +KUR +AN.ŠAR₂{ki} +ša +{d}AG +u +{d}taš-me-tu₄ +GEŠTU-MIN +ra-pa-aš₂-tu +iš-ru-ku-šu₂ +e-hu-uz-zu +IGI-MIN +na-mir-tu +ni-siq +ṭup-šar-ru-ti +ša +ina +LUGAL-MEŠ-ni +a-lik +mah-ri-ia +mam₂-ma +šip-ru +šu-a-tu +la +i-hu-uz-zu +bul-ṭi +TA +muh-hi +EN +UMBIN +liq-ti +BAR-MEŠ +ta-hi-zu +nak-la +a-zu-gal-lu-ti +{d}nin-urta +u +{d}gu-la +ma-la +ba-aš₂-mu +ina +ṭup-pa-a-ni +aš₂-ṭur +as-niq +IGI.KAR₂-ma +a-na +ta-mar-ti +ši-ta-si-ia +qe₂-reb +E₂.GAL-ia +u₂-kin +DIŠ +NA +x +x +x +u₂-tan-ne₂-eh-šu₂ +x +... +{u₂}IGI-lim +{u₂}IGI.NIŠ +... +DIŠ +KI +MIN +{u₂}HAR.HAR +{u₂}ur₂-ne₂-e +{šim}... +DIŠ +KI +MIN +{u₂}HAR.LUM.BA.ŠIR +... +DIŠ +NA +SAG +ŠA₃-šu₂ +u₂-ṣar-rap-šu₂ +na-piš +KIRI₄-šu₂ +DUGUD +NA +BI +... +DIŠ +NA +SAG +ŠA₃-šu₂ +i-ha-maṭ-su +i-dak-ka-su +UH₂-su +x +... +UD.DA +SA₂.SA₂ +I₃.GIŠ +BARA₂.GA +ina +A +NU +pa-tan +NAG.NAG-šu₂ +... +{šim}LI +{šim}GUR₂.GUR₂ +ILLU +{šim}BULUH +PA +{giš}bi-ni +PA +{u₂}IN₆.UŠ₂ +... +DIŠ +NA +MURUB₄ +MAŠ.SILA₃-MIN-šu₂ +u₂-ha-maṭ-su +KI +UH₂-šu₂ +MUD₂ +ŠUB.ŠUB +ana +UD.DA +... +{šim}LI +{šim}GUR₂.GUR₂ +ZA₃.HI.LI +... +PA +GI.ZU₂.LUM.MA +IM.GU₂.EN.NA +GAZ +ina +KAŠ +SILA₁₁-aš +x +... +DIŠ +NA +NINDA +GU₇ +KAŠ +NAG-ma +SAG +ŠA₃-šu₂ +i-kaṣ₃-ṣa-su +ŠA₃-šu₂ +MU₂.MU₂ +... +UD.DA +SA₂.SA₂ +{u₂}ak-tam +{u₂}IGI-lim +{u₂}tar-muš +... +DIŠ +KI +MIN +I₃.GIŠ +BARA₂.GA +EME-šu₂ +DAB-bat +... +DIŠ +NA +it-ta-na-ša-aš +a-šu-uš-tu₄ +ŠUB.ŠUB-su +x +x +x +x +x +x +x +x +x +x +x +x +x +UD.DA +SA₂.SA₂ +{giš}GEŠTIN +KA₅.A +SUD₂ +ina +KAŠ +NAG +UZU +GUR₄.RA +GU₇ +{šim}LI +{šim}HAB +ina +KAŠ +NAG +ina +KAŠ +ŠEG₆-šal +ana +DUR₂-šu₂ +DUB +DIŠ +KI +MIN +GEŠTIN +KA₅.A +SUD₂ +ina +KAŠ +NAG +IM.GU₂.EN.NA +A.GAR.GAR +MAŠ.DA₃ +PA +{giš}KIŠI₁₆-ha-ah +PA +GI.ZU₂.LUM.MA +gu-ur +GI.ŠUL.HI +ZI₃ +GIG +DUH.ŠE.GIŠ.I₃ +ta-sak₃ +ina +KAŠ +ta-la₃-aš +ina +TUG₂ +te-ṭer-ri +LAL +DIŠ +KI +MIN +{u₂}ak-tam +SUD₂ +ina +KAŠ.SAG +NAG +DIŠ +NA +it-ta-na-ša-aš +a-šu-uš-tu₄ +ŠUB.ŠUB-su +di-ik-ša +TAG.TAG-su +UH₂-šu₂ +ma-a-da +NAG.NAG +UD.DA +SA₂.SA₂ +{u₂}IGI-lim +{u₂}šiz-ba-na₇ +{šim}ŠE.LI +BABBAR +SUD₂ +ina +KAŠ +NAG +DIŠ +NA +NINDA +GU₇ +KAŠ +NAG-ma +ŠA₃-šu₂ +in-nin-me-er +nap-hu +A +ma-gal +NAG +UD.DA +SA₂.SA₂ +{u₂}IGI-lim +{u₂}IGI-NIŠ +{u₂}tar-muš +{šim}GAM.MA +{u₂}ti-ia₂-ta₅ +{u₂}HAR.HAR +SUD₂ +ina +KAŠ +NU +pa-tan +NAG +IM.GU₂.EN.NA +A.GAR.GAR +MAŠ.DA₃ +{šim}LI +{šim}GUR₂.GUR₂ +ZA₃.HI.LI +PA +{giš}GEŠTIN +KA₅.A +x +x +x +gu-ur +{giš}GI.ŠUL.HI +ZI₃ +GIG +DUH.ŠE.GIŠ.I₃ +SUD₂ +ina +KAŠ +SILA₁₁-aš +ina +TUG₂ +SUR-ri +LAL-su-ma +TI +{u₂}ak-tam +SUD₂ +ina +KAŠ +NAG +UZU +GUR₄.RA +GU₇ +ŠA₃-šu₂ +i-ar₂-ru₃ +x +x +x +SUD₂ +ina +KAŠ +NAG +{u₂}IGI-lim +SUD₂ +ina +I₃.GIŠ +BARA₂.GA +NAG +IM.GU₂.EN.NA +SUD₂ +ina +KAŠ +NAG +{u₂}ti-ia₂-ta₅ +SUD₂ +ina +KAŠ +NAG +DIŠ +NA +NINDA +GU₇ +KAŠ +NAG-ma +ŠA₃-šu₂ +in-nim-me-ru +nap-hu +A +ma-gal +NAG +UD.DA +SA₂.SA₂ +GURUN +UKUŠ₂.HAB +EN +la +uk-tap-pi-tu +HAD₂.DU +ta-sak₃ +ina +KAŠ +NAG +{u₂}KUR.RA +SUD₂ +ina +KAŠ +NAG +{u₂}HAR.LUM.BA.ŠIR +SUD₂ +ina +KAŠ +NAG +DIŠ +NA +NINDA +GU₇ +KAŠ +NAG-ma +ŠA₃-MEŠ-šu₂ +in-nim-me-ru +KAŠ₃-MEŠ-šu₂ +DAB.DAB-at +UD.DA +SA₂.SA₂ +GURUN +UKUŠ₂.HAB +EN +la +uk-tap-pi-tu +HAD₂.DU +ta-sak₃ +ina +KAŠ +NAG +DIŠ +NA +NINDA +GU₇ +KAŠ +NAG-ma +ŠA₃-šu₂ +in-nim-me-ru +in-ne₂-bi-ṭu₂ +ri-du-ut +ir-ri +TUKU +UD.DA +SA₂.SA₂ +ina +x +... +DIŠ +NA +... +x +... +x +šu₂ +i +x +... +DIŠ +NA +mur +ti +... +NA +BI +x +x +GIG +... +{u₂}ak-tam +ina +hi-iq +KAŠ +... +EGIR-nu +hi-iq +KAŠ +x +... +DIŠ +KI +MIN +a-šu-uš-tu₂ +ŠUB.ŠUB-su +... +ru-pu-uš-tu +NU +TUKU.TUKU-ši +... +NU +GID₂.DA +{u₂}ap-ru-ša₂ +x +... +DIŠ-niš +x +x +x +x +... +DIŠ +NA +x +x +ma-gal +TUKU.TUKU +... +... +x +x +x +... +DIŠ +NA +SAG.KI.DAB.BA +TUKU.TUKU-ši +NUMUN +{u₂}UKUŠ₂.HAB +NUMUN +{u₂}UKUŠ₂.TI.GI.LA +NUMUN +{u₂}EME +UR.GI₇ +NUMUN +{u₂}HUR.SAG +NUMUN +HAB +NUMUN +{u₂}DILI +NUMUN +kiš-ša₂-ni +GAZ +SIM +mal₂-ma-liš +HI.HI +ina +A.GEŠTIN.NA +tara-bak +ZI₃ +ŠE.SA.A +ZI₃ +ZIZ₂.A.AN +a-na +IGI +ta-šap-pah +ina +KUŠ +SUR +SAG.DU-su +tu-gal-lab +LAL-ma +ina-eš +DIŠ +KIMIN +GAZI{sar} +{u₂}AB₂.DUH +{šim}GUR₂.GUR₂ +{šim}BULUH +DUH.ŠE.GIŠ.I₃ +ša +x +x +x +x +ZI₃ +GIG +mal₂-ma-liš +HI.HI +DIDA +SIG₅.GA +SUD₂ +ana +ŠA₃ +ŠUB +ŠEG₆.GA₂ +U₂.HI.A +an-nu-ti +HI.HI +tara-bak +LAL +DIŠ +KIMIN +{giš}EREN +{giš}ŠUR.MIN₃ +{šim}GIR₂ +GI +DU₁₀.GA +{šim}GUR₂.GUR₂ +{šim}LI +{giš}EREN.SUMUN +{šim}MUG +ŠIM.ŠAL +{šim}MAN.DU +{šim}HAB +{šim}BULUH +ILLU +{šim}BULUH +TEŠ₂.BI +GAZ +SIM +ina +GEŠTIN +ŠUR.RA +tara-bak +ZI₃ +ŠE.SA.A +ZI₃ +ZIZ₂.A.AN +ana +IGI +ta-šap-pah +ina +KUŠ +SUR-ri +SAG.DU-su +tu-gal-lab +LAL-ma +TI +DIŠ +KIMIN +NUMUN +{giš}ILDAG₂ +{u₂}ak-tam +NUMUN +AB₂.DUH +x +x +x +x +GAZI{sar} +NUMUN +{giš}HAB +{u₂}LAG +A.ŠA₃ +DIŠ-niš +x +x +x +x +x +x +x +x +x +ŠE.SA.A +ZI₃ +ZIZ₃.A.AN +a-na +IGI +ta-šap-pah +x +x +x +x +SAG.DU-su +SAR-ab +LAL-ma +TI +DIŠ +KIMIN +{u₂}HAR.HAR +{u₂}KUR.KUR +x +x +x +x +{u₂}ka-man-ti +KA +A.AB.BA +ZI₃ +GIG +DIDA +SIG₅ +{šim}x +x +x +x +ina +KAŠ +tara-bak +LAL-ma +TI +DIŠ +KIMIN +{šim}GUR₂.GUR₂ +{šim}LI +x +x +x +NUMUN +{u₂}ka-man-ti +KA +A.AB.BA +{šim}ŠEŠ +ZI₃ +GIG +DIŠ-niš +GAZ +SIM +x +x +x +ina +KAŠ +tara-bak +LAL-ma +TI +DIŠ +KIMIN +{šim}GUR₂.GUR₂ +{šim}LI +x +x +x +x +DIŠ-niš +GAZ +SIM +ZI₃ +GIG +DIDA +SIG₅ +ina +KAŠ +ta-la₃-aš +x +x +x +SAG.DU-su +SAR-ab +LAL₂-ma +TI +DIŠ +KIMIN +{šim}GUR₂.GUR₂ +{šim}LI +{šim.d}NIN.URTA +NUMUN +{u₂}AB₂.DUH +KA +A.AB.BA +{šim}MUG +DIŠ-niš +GAZ +SIM +ina +KAŠ +tara-bak +SAG.DU-su +SAR-ab +LAL-ma +TI +DIŠ +KIMIN +PA +{giš}GIŠIMMAR +ša₂ +ina +NU +IM +i-nam-zu-zu +TI-qi₂ +ina +UD.DA +HAD₂.A +GAZ +SIM +ina +A +GAZI{sar} +SILA₁₁-aš +LAL +DIŠ +KIMIN +{u₂}ap₂-ru-ša₂ +SUD₂ +ina +I₃ +HI.HI +ILLU +{giš}a-bu-ka-tu₂ +ana +ŠA₃ +ŠUB-di +EN₂ +A.RA.ŠE.RA +MIN +IZI +BIL.LI +NUMUN.KI.IB.GAR +7-šu₂ +u +7-šu₂ +ana +ŠA₃ +ŠID +SAG.KI-šu₂ +LAL₂ +DIŠ +KIMIN +{u₂}KUR.KUR +ni-kip-ta +ina +NE +tu-qat-tar-šu₂ +{šim}GUR₂.GUR₂ +ni-kip-ta +{šim}LI +NUMUN +{u₂}AB₂.DUH +KA +A.AB.BA +x +x +x +x +x +ina +IZI +tu-ša₂-ha-an +LAL-id +x +x +x +x +x +x +x +x +KA +A.AB.BA +UH₂.{d}ID₂ +DIŠ-niš +SUD₂ +{sig₂}HE₂.ME.DA +x +x +x +x +x +SAG.KI-šu₂ +KEŠDA-as +DIŠ +KIMIN +ni-kip-ta +... +SAG.KI-šu₂ +TAG.TAG +DIŠ +KIMIN +x +... +HI.HI +SAG.KI-šu₂ +TAG +DIŠ +KIMIN +10 +GIN₂ +ZA₃.HI.LI +10 +GIN₂ +ŠE.SA.A +x +x +x +x +x +x +LAL +DIŠ +KIMIN +10 +GIN₂ +ZA₃.HI.LI +10 +GIN₂ +IM.BABBAR +x +x +x +x +x +x +x +x +x +x +x +x +x +TUKUM.BI +LU₂.U₃ +SAG.KI +x +x +x +x +x +x +x +x +x +x +ina +a-ṣi-ka +ina +GUB₃-ka +GUB-zu +x +x +x +x +x +x +x +x +x +ina +{sig₂}HE₂.ME.DA +KEŠDA-as₂ +x +x +x +x +x +x +x +x +x +TUKUM.BI +LU₂.U₃ +SAG.KI +DAB-su +x +x +x +x +x +x +x +x +x +x +HAD₂.A +GAZ +SIM +ina +KAŠ +SILA₁₁-aš +x +x +x +x +x +x +x +x +x +TUKUM.BI +LU₂.U₃ +x +x +x +x +x +x +x +x +x +x +x +x +x +ina +SAG.KI-šu₂ +x +x +x +x +x +x +x +TUKUM.BI +x +x +x +x +x +x +x +x +x +x +x +x +x +x +TUKUM.BI +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ina +SAG.KI-šu₂ +x +x +x +x +x +x +DIŠ +LU₂ +ZI +SAG.KI +TUKU +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +sah-le₂-e +ARA₃-ti₃ +ZI₃ +ŠE.SA.A +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +KIMIN +PA +{giš}šu-nim +HAD₂.A +GAZ +SIM +ina +ZI₃ +GIG +x +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +KIMIN +{giš}GEŠTIN +KA₅.A +{u₂}su-ba-lam +HAD₂.A +GAZ +x +x +x +KI +ZI₃ +ŠE.SA.A +ina +A +GAZI{sar} +x +x +x +DIŠ +NA +ZI +SAG.KI +TUKU-ši +u +šim-ma-ta₅ +TUKU +PA +{giš}MA.NU +x +x +x +x +x +sah-le₂-e +{u₂}HAR.HAR +ina +KAŠ +{lu₂}KURUN₂.NA +tara-bak +x +x +x +x +PA +{u₂}UR₂.TAL₂.TAL₂ +{giš.d}MAŠ +KA +A.AB.BA +{u₂}HAR.HAR +{u₂}KUR.KUR +ZI₃ +GIG +gu-ur +GI +gu-ur +GI.ŠUL.HI +HENBUR₂ +GI +HENBUR₂ +GI.ŠUL.HI +NUNUZ +{giš}DIH₃ +NUNUZ +{giš}KIŠI₁₆ +I₃.UDU +UR.MAH +u₂-paṭ +{giš}KIŠI₁₆ +ša₂ +ina +UGU +KI.MAH +GUB-zu +TEŠ₂.BI +SUD₂ +ina +I₃ +ŠEŠ₂ +NUMUN +{u₂}KI.{d}IŠKUR +DIDA +SIG₅.GA +ina +{na₄}NA.ZA₃.HI.LI +SUD₂ +ina +KAŠ +{lu₂}KURUN₂.NA +tara-bak +LAL +DIŠ +LU₂ +ZI +SAG.KI +TUKU-ma +ŠU-MIN-šu₂ +GIR₃-MIN-šu₂ +i-šam-ma-ma-šu₂ +PA +{giš}HA.LU.UB₂ +{šim}IM.MAN.DI +{u₂}SU.AN.DAR +ZI₃ +ŠE.MUŠ₅ +ZI₃ +MUNU₆ +{u₂}HAR.HAR +{giš}GEŠTIN +KA₅.A +DIŠ-niš +GAZ +SIM +ina +šur-šum-mi +KAŠ +tara-bak +LAL-ma +TI +PA +GI.ŠUL.HI +{šim}LI +{u₂}SU.AN.DAR +{u₂}ak-tam +{u₂}IN₆.UŠ₂ +ZI₃ +GU₂.TUR +DIŠ-niš +GAZ +SIM +ina +šur-šum-mi +KAŠ.SAG +tara-bak +LAL₂-ma +TI-uṭ +DIŠ +NA +SAG.KI-šu₂ +GU₇-MIN-šu₂ +ina +si-pa-ri +1-šu₂ +2-šu₂ +3-šu₂ +ta-tak-kip +EN +MUD₂ +GIN-ak +ni-kip-ta₅ +ina +I₃ +EŠ-su +{tug₂}NIG₂.DARA₂.ŠU.LAL₂ +{na₄}mu-ṣa +GEŠTU +{giš}DIH₃ +SA₅ +bi-ni +ina +GU₂-šu₂ +GAR-an +KU.KU +{na₄}SAG.KI +KU.KU +{na₄}NIR₂ +ina +I₃ +ŠEŠ₂-su +ana +ZI +SAG.KI +nu-uh₂-hi +DUH.ŠE.GIŠ.I₃ +SUMUN-MEŠ +{šim}GUR₂.GUR₂ +{šim}HAB +{šim}BULUH +GAZI{sar} +ta-pa-aṣ +DIDA +SIG₅ +ZI₃.KUM +ina +KAŠ +ŠEG₆.GA₂ +tara-bak +LAL +ana +ZI +SAG.KI +nu-uh₂-hi +DUH.ŠE.GIŠ.I₃ +{šim}GUR₂.GUR₂ +{šim}BULUH +DIŠ-niš +GAZ +AL.U₂.SA +ZI₃.KUM +ina +KAŠ +DIŠ-niš +ŠEG₆-šal +ina +TUG₂ +SUR-ri +LAL-su-ma +TI +DIŠ +NA +SA +SAG.KI-šu₂ +GIG +{šim}LI +{šim}GUR₂.GUR₂ +A.GAR.GAR +MAŠ.DA₃ +ZI₃ +GIG +DIŠ-niš +ina +KAŠ +tara-bak +LAL-ma +TI-uṭ +GAZI{sar} +tur-ar₂ +ZI₃ +GIG +it-ti-šu₂ +HI.HI +ina +I₃ +u +KAŠ.SAG +tara-bak +LAL-ma +TI-uṭ +DIŠ +LU₂ +SA +SAG.KI-šu₂ +DAB-su-ma +GU₇-MIN-šu₂ +10 +KISAL +ZI₃ +GIG +10 +KISAL +ZI₃.KUM +10 +KISAL +{šim}GUR₂.GUR₂ +10 +KISAL +GAZI{sar} +10 +KISAL +ZI₃ +MUNU₆ +10 +KISAL +DUH.ŠE.GIŠ.I₃ +TEŠ₂.BI +HI.HI +ina +KAŠ +ta-la₃-aš +SAG.KI-šu₂ +LAL +a-na +nu-uh₂-hi +ša₂ +SA.HI.A +ŠE.SA.A +A.GAR.GAR +MAŠ.DA₃ +mal₂-ma-liš +HI.HI +ina +KAŠ.SAG +tara-bak +LAL +DIŠ +LU₂ +SA +SAG.KI-šu₂ +DAB-su-ma +GU₇-šu₂ +u₃ +i-ar₂-ru₃ +... +ina +KAŠ +NAG +... +i-ar₂-ru₃ +ŠU.BI.GEN₇.NAM +DIŠ +NA +... +x +NINDA +u +KAŠ +la +i-mah-har +LU₂ +BI +DINGIR-šu₂ +iš-kun-šu₂ +... +x +la-bi-ri +te-qeb-bir-šu₂ +A +ina +UGU +TU₅ +DIŠ +KIMIN +... +LAL-id +SIG₂ +{munus}AŠ₂.GAR₃ +GIŠ₃.NU.ZU +{sig₂}HE₂.ME.DA +NIGIN-mi +KEŠDA +DIŠ +KIMIN +x +x +x +x +x +x +x +MUNUS +pa-ri-iš-tu₂ +NU.NU +SA +MAŠ.DA₃ +KI-šu₂-nu +ta-pat-til +x +x +x +x +x +x +x +{na₄}ZA.GIN₃ +{na₄}ZU₂ +GE₆ +E₃ +ina +SAG.KI-MIN-šu₂ +KEŠDA +SAHAR +x +x +x +x +x +x +ŠIKA +SILA.LIMMU₂ +ni-kip-ta +SUD₂ +ina +I₃.GIŠ +HI.HI +ŠEŠ₂-su +DIŠ +NA +SAG.KI +ZAG-šu₂ +DAB-su-ma +IGI +ZAG-šu₂ +ER₂ +u₂-kal +sah-le₂-e +ZI₃ +ŠE.SA.A +LAGAB +x +LAGAB +MUNU₆ +DIŠ-niš +HI.HI +ina +A +GAZI{sar} +tara-bak +SAG.KI-šu₂ +LAL-ma +TI-uṭ +DIŠ +NA +SAG.KI +GUB₃-šu₂ +DAB-su-ma +IGI +GUB₃-šu₂ +ER₂ +u₂-kal +sah-le₂-e +{u₂}HAR.HAR +GAZ +SIM +ina +KAŠ +AL.ŠEG₆.GA₂ +tara-bak +SAG.KI-šu₂ +LAL-ma +TI-uṭ +DIŠ +NA +SAG.KI-MIN-šu₂ +ṣab-ta-šu₂-ma +IGI-MIN-šu₂ +ER₂ +u₂-kal-la +sah-le₂-e +{u₂}HAR.HAR +GAZI{sar} +ZI₃ +ŠE.SA.A +BA.BA.ZA +MUNU₆ +DIŠ-niš +ina +{dug}UTUL₇ +ina +A +GAZI{sar} +tara-bak +SAG.KI-MIN-šu₂ +KEŠDA-ma +TI-uṭ +DIŠ +NA +SAG.KI +ZAG-šu₂ +DAB-su-ma +IGI +ZAG-šu₂ +MUD₂ +u₂-kal +sah-le₂-e +{u₂}HAR.HAR +IM.BABBAR +{giš}KIŠI₁₆.HAB +ZI₃ +ŠE.SA.A +BA.BA.ZA +MUNU₆ +DIŠ-niš +GAZ +SIM +ina +A.GEŠTIN.NA +tara-bak +ŠU.BI.AŠ.AM₃ +DIŠ +NA +SAG.KI +GUB₃-šu₂ +DAB-su-ma +IGI +GUB₃-šu₂ +MUD₂ +u₂-kal +{u₂}KI.KAL.HI.RI₂.IN +{u₂}SU.AN.DAR +{šim}MUG +DIŠ-niš +GAZ +SIM +ina +x +x +x +x +x +tara-bak +MIN +x +x +x +x +x +x +ṣab-ta-šu₂-ma +x +x +x +x +x +x +x +x +x +x +x +x +x +ŠE.SA.A +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +LAL +{giš}ŠUR.MIN₃ +{giš}MA₂.EREŠ.MA₂.RA +... +{giš}ar₂-gan-nu +{giš}ba-ri-ra-ta₅ +... +x +... +ŠURUN +GUD +A.GAR.GAR +MAŠ.DA₃ +DIŠ-niš +GAZ +SIM +ina +DIDA +SIG +tara-bak +x +x +x +x +ana +IGI +ta-šap-pah +SAG.DU-su +SAR-ab +LAL-ma +{u₂}IGI-lim +{u₂}IGI.NIŠ +ina +DIDA +x +x +x +ZI-ah +{na₄}SAG.KI +ina +ZAG-šu₂ +KEŠDA-su +{u₂}ar₂-zal-la +ŠIKA +gul-gul +LU₂.U₁₈.LU +x +x +x +ni-kip-ta₅ +NUMUN +{giš}MA.NU +{u₂}DILI +NUMUN +{giš}bi-ni +{u₂}AŠ.TAL₂.TAL₂ +DIŠ-niš +te-pe-eṣ +ina +I₃.GIŠ +{giš}EREN +HI.HI-ma +ŠEŠ₂-su +bal-ṭu₂-su-nu +ina +NE +{giš}KIŠI₁₆ +tu-qat-tar-šu₂ +I₃ +DU₁₀.GA +SAG.KI-MIN-šu₂ +EŠ-aš +DIŠ +NA +SAG.KI +ZAG-šu₂ +GU₇-šu₂-ma +IGI +ZAG-šu₂ +nap-hat +u₃ +ER₂ +BAL-qi₂ +ŠU.GIDIM.MA +ša₂-ni +{d}iš₈-tar₂ +ana +TI-šu₂ +{giš}si-hu +{giš}ar₂-ga-nu +{giš}ba-ri-ra-ta₅ +1 +GIN₂ +UH₂.{d}ID₂ +{u₂}IN₆.UŠ₂ +GI.ŠUL.HI +ina +ZI₃.KUM +HI.HI +ina +KAŠ +tara-bak +LAL +DIŠ +KIMIN +šur-šum-mi +ši-iq-qi₂ +šur-šum-me +A.GEŠTIN.NA +KALAG.GA +šur-šum-mi +KAŠ.SAG +ZU₂.LUM.MA.DILMUN{ki} +1 +GIN₂ +I₃.UDU +{šim}GIG +ina +I₃.NUN +SUD₂ +te-qi₂ +DIŠ +NA +SAG.KI +GUB₃-šu₂ +GU₇-šu₂-ma +IGI +150-šu₂ +nap-hat +u +ER₂ +BAL-qi₂ +ZU₂.LUM.MA.DILMUN{ki} +U₂ +a-ši-i +MUD₂ +{giš}EREN +ina +I₃ +{šim}GIR₂ +SUD₂ +ina +MUL₄ +tuš-bat +ina +še-ri₃ +NU +pa-tan +MAR +DIŠ +KIMIN +IM.BABBAR +pu-rat-ta₅ +ZI₃ +MUNU₆ +ZI₃ +GU₂.GAL +ZI₃ +GU₂.TUR +ZI₃ +GAZI{sar} +GAZ +SIM +ina +A +GAZI{sar} +tara-bak +SAG.KI-šu₂ +IGI-šu₂ +LAL +DIŠ +NA +SAG.KI +DAB-su-ma +i-mim +i-kaṣ₃-ṣa +IGI-MIN-šu₂ +nu-up-pu-ha +ŠU.GIDIM.MA +GIR₃.PAD.DU +NAM.LU₂.U₁₈.LU +tur-ar₂ +SUD₂ +ina +I₃ +{giš}EREN +EŠ-MEŠ-su-ma +TI +DIŠ +NA +SAG.KI +DAB-su-ma +TA +{d}UTU.E₃ +EN +{d}UTU.ŠU₂.A +GU₇-šu₂ +ŠU.GIDIM₇.MA +a-ši-pu +ki +ša₂ +i-du-u +li-te-ep-pu-uš +I₃.UDU +ma-hir-te +UDU.NITA₂ +x +x +x +x +DIŠ-niš +EŠ-su +{u₂}IN₆.UŠ₂ +HAD₂.A +GAZ +SIM +ina +A +GAZI{sar} +tara-bak +ZI₃ +ŠE.SA.A +ana +IGI +ta-ša-pah +SAR-ab +LAL-su +... +LAL +... +... +ZI-ah +{sig₂}HE₂.ME.DA +... +... +NIGIN-mi +ina +SAG.KI-šu₂ +u +GU₂-šu₂ +KEŠDA +x +x +x +x +x +x +x +x +x +x +SAG.KI-MIN-šu₂ +GU₇-MIN-šu₂ +{na₄}mu-ṣa +{na₄}AN.ZAH +{na₄}AN.ZAH.GE₆ +{na₄}KA.GI.NA +DAB.BA +NA₄ +AN.BAR +{u₂}DILI +6 +U₂-MEŠ +ŠEŠ +DIŠ-niš +SUD₂ +ina +MUD₂ +{giš}EREN +HI.HI-ma +SAG.KI-MIN-šu₂ +IGI-MEŠ-šu₂ +u +GU₂-su +EŠ-MEŠ-ma +ina-eš +DIŠ +NA +ina +DAB +ŠU.GIDIM +ZI +SAG.KI +TUKU-MEŠ +ana +KAR-šu₂ +10 +GIN₂ +{giš}EREN +10 +GIN₂ +{giš}ŠUR.MIN₃ +10 +GIN₂ +{šim}ŠEŠ +10 +GIN₂ +{šim}IM.DI +10 +GIN₂ +{giš}dup-ra-nu +10 +GIN₂ +ŠIM.ŠAL +10 +GIN₂ +{šim}GIR₂ +10 +GIN₂ +{šim}GAM.MA +10 +GIN₂ +{šim}LI +10 +GIN₂ +{šim}GUR₂.GUR₂ +10 +GIN₂ +GI +DU₁₀.GA +10 +GIN₂ +GAZI{sar} +10 +GIN₂ +{šim}HAB +10 +GIN₂ +LAGAB +MUNU₆ +10 +GIN₂ +DUH.ŠE.GIŠ.I₃ +x +x +10 +GIN₂ +DIDA +SIG₅.GA +10 +GIN₂ +sah-le₂-e +10 +GIN₂ +qi₂-lip₂ +x +x +x +10 +GIN₂ +GU₂.GAL +10 +GIN₂ +GU₂.TUR +DIŠ-niš +GAZ +SIM +lu +ina +KAŠ.SAG +x +x +x +tara-bak +ina +KUŠ +SUR +ZI₃ +ZIZ₂.A.AN +ana +IGI +ta-šap-pah +x +x +x +SAR-ab +SAG.KI-MIN-šu₂ +LAL-ma +ina-eš +DIŠ +KIMIN +{šim} +... +{šim.d}MAŠ +ILLU +{šim}BULUH +qi₂-lip₂ +ZU₂.LUM.MA +I₃.UDU +ELLAG₂ +... +DIŠ-niš +GAZ +ina +KUŠ +SUR-ri +LAL-id-ma +ina-eš +DIŠ +KIMIN +DUH.ŠE.GIŠ.I₃ +... +{šim}GIG +ZI₃.KUM +ina +šur-šum-me +KAŠ +SILA₁₁-aš +x +x +x +DIŠ +NA +SAG.KI.DAB.BA +TUKU.TUKU +{u₂}ŠAKIRA +NUMUN +{u₂}UR.TAL₂.TAL₂ +NUMUN +{u₂}EME +UR.GI₇ +NUMUN +{u₂}NIG₂.GAN₂.GAN₂ +NUMUN +{u₂}ap₂-ru-šu₂ +NUMUN +{u₂}AB₂.DUH +NUMUN +{u₂}MAŠ.HUŠ +ša +ana +x +x +x +ŠE₁₀ +TU{mušen} +ša₂ +{giš}GIŠIMMAR +TI +ŠE₁₀ +SIM{mušen} +ša₂ +{giš}bi-ni +TI +ILLU +{u₂}si-in-bu-ra-ti +{šim}GUR₂.GUR₂ +sah-le₂-e +NUMUN +{u₂}qu₂-ud-ri +GAZI{sar} +{giš}KIŠI₁₆ +ta-pa-aṣ +DIŠ-niš +x +x +x +U₂-MEŠ +ŠEŠ +ina +{urudu}ŠEN.TUR +ta-qal-lu +U₂-MEŠ +ša-šu-nu +ma-la-a +qa-lu-u +TI +DIŠ-niš +HI.HI +ina +šur-šum-mi +KAŠ +ta-la₃-aš +tu-gal-lab +I₃.GIŠ +EŠ-aš +7-šu₂ +KEŠDA-su-ma +ina +U₄ +4.KAM₂ +SA +SAG.KI-šu₂ +ta-ma-haṣ-ma +TI-uṭ +DIŠ +KIMIN +NUMUN +{u₂}DILI +NUMUN +{u₂}TAL₂.TAL₂ +GAZ +SIM +ina +A +ta-la₃-aš +LAL +DIŠ +KIMIN +ŠE₁₀ +TU{mušen} +SUD₂ +ina +KAŠ +ta-la₃-aš +LAL +DIŠ +NA +SAG.KI.DAB.BA +TUKU.TUKU +IGI-MIN-šu₂ +i-bar-ru-ra +UZU-MIN-šu₂ +i-šam-ma-mu-šu +GIR₂.GIR₂-šu₂ +ŠA₃-MEŠ-šu₂ +MU₂.MU₂ +ŠU-MIN-šu₂ +u +GIR₃-MIN-šu₂ +u₂-šam-ma-ma-šu₂ +u₂-zaq-qa-ta-šu₂ +bir-ka-šu₂ +an-ha +tab-ka +e-ta-ta-na-ah +NA +BI +GIG +NU +ZI +DAB-su +i-dan-nin-šu₂ +ana +GIG-šu₂ +NU +GID₂.DA +hi-qa +ša +KAŠ +{urudu}ŠEN.TUR +DIRI +{giš}bi-nu +{u₂}x +x +{giš}HAŠHUR.GIŠ.GI +{u₂}TAL₂.TAL₂ +NUMUN +{giš}ŠE.NU₂.A +ana +ŠA₃ +ŠUB +ŠEG₆-šal +x +x +x +x +x +ib +E₁₁-šu₂-ma +NAGA.SI.MEŠ +IM.GU₂ +NIG₂.NIGIN₂.NA +te-se-er-šu₂ +{u₂}IGI-lim +{u₂}IGI.NIŠ +SUD₂ +ina +MUD₂ +{giš}EREN +HI.HI +ŠEŠ₂-su-ma +TI +DIŠ +NA +SAG.KI.DAB.BA +TUKU.TUKU +{u₂}IGI-lim +{u₂}IGI.NIŠ +{u₂}tar-muš +{u₂}an-ki-nu-te +{giš}HAŠHUR.GIŠ.GI +{u₂}HAR.HAR +U₂.HI.A +ŠEŠ-ti +DIŠ-niš +ta-pa-aṣ +ina +{urudu}ŠEN.TUR +ŠUB +tu-šab-šal +ta-ša₂-hal +10 +GIN₂ +LAL₃ +1/3 +SILA₃ +I₃ +hal-ṣa +ana +ŠA₃ +ŠUB +ana +DUR₂-šu₂ +DUB-ma +TI +DIŠ +KIMIN +{u₂}IGI-lim +{u₂}IGI.NIŠ +NUMUN +{giš}ŠINIG +NUMUN +{u₂}tu-lal +TEŠ₂.BI +SUD₂ +ina +GEŠTIN +ŠUR +ba-lu +pa-tan +NAG-ma +TI-uṭ +DIŠ +KIMIN +ŠIM.HI.A +DU₃.A.BI-šu₂-nu +ina +GEŠTIN +ŠUR +u +KAŠ.SAG +tu-la-bak +ŠEG₆-šal +ta-ša₂-hal +10 +KISAL +LAL₃ +1/3 +SILA₃ +I₃ +hal-ṣa +ana +ŠA₃ +ŠUB-di +x +x +x +ta-hi-ṭa-šu₂-ma +TI-uṭ +DIŠ +KIMIN +{u₂}HAR.HAR +{u₂}KUR.KUR +NAGA.SI.MEŠ +x +x +x +x +x +NU +pa-tan +NAG-MIN-ma +TI-uṭ +DIŠ +KIMIN +{u₂}IGI-lim +{u₂}IGI.NIŠ +NUMUN +{u₂}x +x +x +x +x +x +x +SUD₂ +ina +KAŠ +ŠEG₆-šal +ta-ša₂-hal +10 +KISAL +LAL₃ +1/3 +SILA₃ +x +x +x +x +x +x +x +x +x +x +x +TI +DIŠ +KIMIN +{u₂}IGI-lim +PA +{giš}ŠE.NU₂.A +... +TEŠ₂.BI +GAZ +SIM +ina +x +... +DIŠ +KIMIN +{giš}HAŠHUR-a-pi +... +DIŠ +NA +SAG.KI.DAB.BA +TUKU.TUKU +... +{na₄}AN.ZAH.GE₆ +... +DIŠ +KIMIN +ni-kip-ta₅ +... +TEŠ₂.BI +... +{na₄}mu-ṣa +{na₄} +... +U₂.HI.A +an-nu-ti +... +EN₂ +UR.SAG +{d}ASAL.LU₂.HI +7-šu₂ +ŠID +... +DIŠ +NA +SAG.KI +DAB-su-ma +IGI-MIN-šu₂ +... +DIŠ-niš +SUD₂ +ina +KAŠ +... +DIŠ +NA +SAG.KI-šu₂ +lu +ša₂ +ZAG +lu +ša₂ +GUB₃ +... +u +IGI-MIN-šu₂ +a-pa-a +{na₄}mu-ṣa +... +DIŠ +NA +SAG.KI-ME-šu₂ +ZI-MEŠ +... +sah-le₂-e +ARA₃-MEŠ +x +... +KUŠ +MUŠ +GE₆ +HAD₂.DU +... +DIŠ +NA +SAG.KI +DAB-su-ma +pa-nu-šu +iṣ-ṣa-nun-du +x +x +x +x +x +x +x +x +x +x +x +x +x +{u₂}IGI-lim +x +x +x +x +KAŠ +DU₁₀.GA +NAG-MEŠ-ma +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +KEŠDA-su +A.RI.A +NAM.LU₂.U₁₈.LU +x +x +x +x +x +x +x +x +x +x +x +x +x +SUD₂ +ina +I₃ +{giš}EREN +HI.HI +ŠEŠ₂-MEŠ-ma +TI +x +x +x +x +x +x +x +SA.GU₂-MEŠ-šu₂ +GU₇-MEŠ-šu₂ +ŠU.GIDIM.MA +{giš}si-hu +{giš}ar₂-ga-nu +{u₂}ba-ri-ra-ta₅ +GI.ŠUL.HI +GAZ +SIM +ina +A +GAZI{sar} +tara-bak +LAL-su +DIŠ +NA +x +x +x +x +x +x +{d}UTU.E₃ +EN +EN.NUN.UD.ZAL.LI +GU₇-šu₂ +ur-rak +UŠ₂ +DIŠ +NA +x +x +x +x +x +ŠA₃ +ŠA₃ +GU₃.GU₃-si +ŠU.GIDIM.MA +ša₂-ne₂-e +{d}iš-tar +UŠ₂ +DIŠ +NA +SAG.KI.DAB.BA-ma +ma-gal +BURU₈ +KI.NA₂ +la +i-na-aš-ši +UŠ₂ +DIŠ +NA +SAG.KI.DAB.BA-ma +ma-gal +GU₃.GU₃-si +SA +SAG.KI-šu₂ +ma-gal +te-bu-u +x +x +x +x +x +UŠ₂ +an-nu-tu₄ +x +x +x +x +SAG.KI.DAB.BA.KAM₂ +EN +SA.GU₂ +AL.TIL +šum-ma +SAG.KI.DAB.BA +ŠU.GIDIM.MA +ina +SU +NA +il-ta-za-az-ma +NU +DU₈ +DUB +2.KAM₂ +DIŠ +NA +UGU-šu₂ +KUM₂ +u₂-kal +E₂.GAL +{m}AN.ŠAR₂-DU₃-A +LUGAL +ŠU₂ +MAN +KUR +AN.ŠAR₂{ki} +ša +{d}AG +u +{d}taš-me-tu₄ +GEŠTU-MIN +ra-pa-aš₂-tu₂ +iš-ru-ku-šu₂ +e-hu-uz-zu +IGI-MIN +na-mir-tu₄ +ni-siq +ṭup-šar-ru-ti +ša +ina +LUGAL-MEŠ-ni +a-lik +mah-ri-ia +mam₂-ma +šip-ru +šu-a-tu +la +i-hu-uz-zu +bul-ṭi +TA +muh-hi +EN +UMBIN +liq-ti +BAR-MEŠ +ta-hi-zu +nak-la +a-zu-gal-lu-ut +{d}nin-urta +u +{d}gu-la +ma-la +ba-aš₂-mu +ina +ṭup-pa-a-ni +aš₂-ṭur +as-niq +IGI.KAR₂-ma +a-na +ta-mar-ti +ši-ta-si-ia +qe₂-reb +E₂.GAL-ia +u₂-kin +NA +BI +GIDIM +IM.RI.A-šu₂ +DAB-su +... +{šim}ŠE.LI.BABBAR +{šim}... +{u₂}tara-muš +{giš}si-ha +... +ina +A +ŠIM.HI.A +GAR-šu-nu +... +ta-lal +NITA +NINDA +GID₂.DA +x +... +I₃ +{šim}ŠEŠ +ana +SAG.KI-šu₂ +ŠUB-di +... +ana +KIMIN +{giš}EREN +{giš}ŠUR.MIN₃ +GI.DUG₃.GA +... +8 +U₂.HI.A +ŠEŠ +UR.BI +ina +KAŠ.SAG +... +PEŠ₁₀-{d}ID₂ +ku-up-ri +{d}ID₂ +... +tu-qat-tar-šu₂ +hi-ib-ṣa +ša +x +... +DIŠ +NA +ina +DAB-it +ŠU.GIDIM.MA +GEŠTU.MIN-šu₂ +i-šag-gu-ma +... +{šim}{d}MAŠ +zap-pi +ANŠE.KUR.RA +ZI₃ +... +MUD₂ +MUŠ +{u₂}GUD₃ +A.RI.A +... +ŠU.SI.MEŠ-šu₂ +ina +GEŠTU.MIN-šu₂ +i-ret-ti-ma +... +a-šar +TAB +ba-ši-i +{d}e-a +ib-ni +... +EGIR-šu₂ +KA +sa-par-ti +SI +GU₄ +... +DIŠ +NA +GIDIM +DAB-su-ma +GEŠTU.MIN-šu₂ +i-šag-gu-ma +{šim}BAL +GI.DUG₃.GA +{šim}GUR₂.GUR₂ +GAZI{sar} +zap-pi +ANŠE.KUR.RA +PAP +5 +U₂.MEŠ +qu₅-taru₅ +ša +GEŠTU.MIN +lat-ku +x +x +... +x +ina +MUD +UD.KA.BAR +... +DIŠ +NA +ŠU.GIDIM.MA +DAB-su-ma +GEŠTU.MIN-šu₂ +i-šag-gu-ma +{šim}ŠEŠ +{na₄}EŠ₃.ME.KAM₂ +{na₄}AŠ.GI₃.GI₃ +... +SUD₂ +ina +{sig₂}AKA₃ +NIGIN-mi +ina +MUD₂ +{giš}EREN +SUD +EN₂ +piš-irtu +ib-ni +ŠID-nu +... +EN₂ +piš-irtu +ib-ni +{d}e-a +IM.MA.AN.NA +AN.KI.A +NA₄ +li-iz-zur-šu₂ +NA₄ +li-is-kip-šu₂ +NA₄ +liš-pi-šu₂ +NA₄ +li-pa-sis-su +TU₆.EN₂ +EN₂ +an-ni-tu₂ +3-šu₂ +ana +UGU +lip₂-pi +ŠID-nu +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +ana +KIMIN +{šim}GUR₂.GUR₂ +{u₂}HAR.HAR +{u₂}KUR.KUR +{u₂}ak-tam +{u₂}IGI-lim +{u₂}IGI-20 +{u₂}tara-muš +ZA₃.HI.LI +SUD₂ +ina +I₃ +{giš}EREN +HI.HI +ina +{sig₂}AKA₃ +NIGIN-mi +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-ma +ina-eš +ana +KIMIN +GI.DUG₃ +ina +I₃+GIŠ +SUD₂ +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +ana +KIMIN +{šim}ŠEŠ +{na₄}AŠ₂.GI₄.GI₄ +{na₄}ZA.GIN₃ +{na₄}SIG₇.SIG₇ +1-niš +SUD₂ +ina +I₃ +{giš}EREN +HI.HI +ana +ŠA₃ +GEŠTU.MIN-šu₂ +ŠUB +UZU.MIN-šu₂ +ŠEŠ₂ +DIŠ +NA +ina +DAB-it +ŠU.GIDIM.MA +GEŠTU.MIN-šu₂ +i-šag-gu-ma +NUMUN +u₂-ra-a-nu +NUMUN +{giš}MA.NU +ni-kip-tu₂ +NITA₂ +u +MUNUS +zap₂-pi +ANŠE.KUR.RA +{tug₂}NIG₂.DARA₂.ŠU.LAL₂ +ina +NE +GEŠTU.MIN-šu₂ +tu-qat-tar +DIŠ +NA +ina +DAB-it +ŠU.GIDIM.MA +GEŠTU.MIN-šu₂ +i-šag-gu-ma +SUHUŠ +{giš}MA.NU +ni-kip-tu₂ +{tug₂}NIG₂.DARA₂.ŠU.LAL₂ +ina +NE +ŠA₃ +GEŠTU.MIN-šu₂ +SAR +{šim}GUR₂.GUR₂ +{šim}LI +{šim}ŠEŠ +{giš}EREN +GI.DUG₃.GA +{šim}MUG +GAZI{sar} +{im}KAL.GUG +8 +U₂.HI.A +qu₅-GUR +ša +GEŠTU.MIN +ina +NE +ŠA₃ +GEŠTU.MIN-šu₂ +SAR +{na₄}mu-ṣu₂ +SI +DARA₃.MAŠ +GIR₃.PAD.DU +NAM.LU₂.U₁₈.LU +KA +tam-ti₄ +GIR₃.PAD.DU +UGU.DUL.BI +{u₂}KUR.RA +ina +NE +ŠA₃ +GEŠTU.MIN-šu₂ +tu-qat-tar +kib-ri-tu +{u₂}KU₆ +SUHUŠ +{giš}MA.NU +a-za-pi +ANŠE.KUR.RA +{tug₂}NIG₂.DARA₂.ŠU.LAL₂ +ina +NE +{giš}KIŠI₁₆ +ŠA₃ +GEŠTU.MIN-šu₂ +tu-qat-tar +SI.DARA₃.MAŠ +{na₄}ga-bi-i +{u₂}KUR.RA +sah-le₂-e +KA +tam-ti₄ +kib-ri-tu₂ +GIR₃.PAD.DU +NAM.LU₂.U₁₈.LU +ina +NE +{giš}KIŠI₁₆ +ŠA₃ +GEŠTU.MIN-šu₂ +SAR +DIŠ +NA +GEŠTU.MIN-šu₂ +i-šag-gu-ma +MUD₂ +{giš}EREN +a-ra-an-di +{šim}GUR₂.GUR₂ +ina +{sig₂}AKA₃ +NIGIN-mi +ana +ŠA₃ +A.MEŠ +ŠUB-di +ina +NE +SEG₆-šal +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-ma +TI +DIŠ +NA +GEŠTU.MIN-šu₂ +i-šag-gu-ma +MUD₂ +{giš}EREN +KI +A +{giš}NU.UR₂.MA +HI.HI-ma +ana +ŠA₃ +GEŠTU.MIN-šu₂ +ŠUB-ma +TI +en₂ +in-da-ra-ah +ta-ra-ah-ti +šu-maš +in-da-ra-ah +ta-ra-ah-ti +tir-ki-bi +in-da-ra-ah +ta-ra-ah-ti +tir-ki +ba-su-tu₂ +TU₆.EN₂ +en₂ +šu-bi +in-du₈ +gir₃-bi +in-du₈ +bur-še +bur-na +bur-na-an-na +su-ri-ih +su-ri-ih-e-ne +su-ri-ih +gaba +ni-ik-ra-ah +su-ri-ih +ta-ah-ta-ah +TU₆.EN₂ +2 +KA.INIM.MA +DIŠ +NA +GEŠTU.MIN-šu₂ +i-šag-gu-ma +DU₃.DU₃.BI +{šim}ŠEŠ +{na₄}EŠ₃.ME.KAM₂ +{na₄}AŠ₂.GI₄.GI₄ +SUD₂ +x +x +ina +MUD₂ +{giš}EREN +HI.HI +EN₂ +3-šu₂ +ana +ŠA₃ +ŠID-nu +{sig₂}AKA₃ +NIGIN-mi +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +EN₂ +si-in-du₈ +ib-ni +{d}e₂-a +IM.MA.NA +AN.KI.A +ib-ni +du-up-ni +gu₂-us₂-sa +TU₆.EN₂ +1 +KA.INIM.MA +DIŠ +NA +GEŠTU.MIN-šu₂ +i-šag-gu-ma +DU₃.DU₃.BI +{šim}ŠEŠ +{na₄}EŠ₃.ME.KAM₂ +{na₄}AŠ₂.GI₄.GI +ni-kip-tu +ina +I₃ +HI.HI +ina +MUL +tuš-bat +EN₂ +3-šu₂ +ana +ŠA₃ +ŠID-nu +{sig₂}AKA₃ +NIGIN +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +en₂ +ša-ra-zu +ša-ra-šag₅-ga +he₂-a +ur-sag +{d}nin-urta +ša-ra-šag₅-ga +he₂-a +en +{d}nin-urta +ša-ra-šag₅-ga +he₂-a +{d}nin-urta +nam-ba-te-ga₂-e₃-de₃ +tu₆-en₂ +1 +KA.INIM.MA +DIŠ +NA +GEŠTU.MIN-šu₂ +i-šag-gu-ma +DU₃.DU₃.BI +{na₄}EŠ₃.ME.KAM₂ +x +x +{šim}ŠEŠ +{u₂}ur-nu-u +UR.BI +SUD₂ +ina +MUD₂ +{giš}EREN +HI.HI +EN₂ +3-šu₂ +ana +ŠA₃ +ŠID-nu +ina +{sig₂}AKA₃ +NIGIN-mi +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +EN₂ +na-pi-ir +še-ri-iš +pa-ta-ar-ri +zu-ga-li-ir-ri +pa-ta-hal-li +pa-tar-ri +su-ma-aš₂ +pa-at-ri +pa-ku-un-di +ra-ta-aš₂ +ik-ki-ri-ri +ša-ra-aš +tu₆-en₂ +1 +KA.INIM.MA +DIŠ +NA +GEŠTU.MIN-šu₂ +i-šag-gu-ma +3-šu₂ +ana +ŠA₃ +GEŠTU +ZAG-šu₂ +3-šu₂ +ana +ŠA₃ +GEŠTU +GUB₃-šu₂ +MU₂ +... +x +x +... +x +x +... +... +... +en₂ +nig₂-e₃ +nig₂-e₃ +nig₂-nam-ma +us₂-su₁₃ +ki-a +dim₃-ma-bi +a-ri-a +an-na-ke₄ +sa₇-alan-bi +nig₂ +an-gin₇ +šu +nu-te-ga₂ +hur-sag-gin₇ +gul-gul +sa₇-alan-bi +zi-ir-zi-ir-e-de₃ +nig₂ +udug +har-ra-an +nig₂ +udug +kaskal-am₃ +nig₂-ni₂-zu +mu-un-ši-in-gin-na +nig₂-ni₂-zu +mu-un-ši-in-gin-na +{d}nin-urta +lugal +{giš}tukul-ke₄ +gaba-zu +he₂-en-ga₂-ga₂ +hul-dub₂ +zi-an-na +he₂-pa₂ +zi-ki-a +he₂-pa₂ +1 +KA.INIM.MA +DIŠ +NA +GEŠTU.MIN-šu₂ +i-šag-gu-ma +3-šu₂ +ana +ŠA₃ +GEŠTU +ZAG-šu₂ +3-šu₂ +ana +ŠA₃ +GEŠTU +GUB₃-šu₂ +ŠID +en₂ +hu-hu-un-ti +ib-ni-a-ti +ib-ni-ir-ra +ša₂-na-an +ak-ka-li-ir-ri +su-gar-ri +ša₂-at-ri +ku-uk-ti +hu-ma-at-ri +su-ma-aš +tu₆-en₂ +1 +KA.INIM.MA +DIŠ +NA +GEŠTU.MIN-šu₂ +i-šag-gu-ma +3-šu₂ +ana +ŠA₃ +GEŠTU +ZAG-šu₂ +li-ih-šu₂ +en₂ +a-me-am-ma-an +ku-um-ma-am +su-um-ma-at-ri +ki-ri-ri +ku-uk-ti +ra-ša₂-na +ku-uk-ti +hu-un-di +hu-ma-an +tu₆-en₂ +KA.INIM.MA +DIŠ +NA +GEŠTU.MIN-šu₂ +i-šag-gu-ma +3-šu₂ +ana +ŠA₃ +GEŠTU +GUB₃-šu₂ +li-ih-šu₂ +... +{u₂}kur-ka-na-a +... +x +... +DIŠ +NA +GEŠTU.MIN-šu₂ +GU₇.MEŠ-šu₂ +neš-ma-a +he-e-si +I₃.GIŠ +{giš}dup-ra-an +{sig₂}AKA₃ +SUD +1-tum +2-šu₂ +3-šu₂ +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +DIŠ +NA +GIG-ma +GIG-su +ana +ŠA₃ +GEŠTU.MIN-šu₂ +ip-pu-uš-ma +neš-ma-a +DUGUD +1 +GIN₂ +A +{giš}NU.UR₂.MA +2 +GIN₂ +A +{šim}GIG +I₃ +{šim}x +x +x +HI.HI +{sig₂}AKA₃ +SUD +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +UD.3.KAM₂ +an-nam +DU₃-uš +ina +UD.4.KAM₂ +LUGUD +ša₂ +ŠA₃ +GEŠTU.MIN-šu₂ +E₁₁-ma +ta-kap-par +GIM +MUD₂.BABBAR +it-tag-ma-ru +IM.SAHAR.NA₄.KUR.RA +SUD₂ +ina +GI.SAG.KUD +ana +ŠA₃ +GEŠTU.MIN-šu₂ +MU₂-ah +DIŠ +NA +KUM₂ +ana +ŠA₃ +GEŠTU.MIN-šu₂ +i-pu-uš-ma +neš-mu-šu₂ +DUGUD +u₃ +lu +IR +u₂-kal +I₃+GIŠ +{giš}dup-ra-na +I₃+GIŠ +GI.DUG₃.GA +ana +SAG.DU-šu₂ +ŠUB-di +{sig₂}AKA₃ +SUD +1-šu₂ +2-šu₂ +3-šu₂ +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +neš-mu-šu₂ +BAD-te +sah-le₂-e +ša₂ +mim-ma +ana +ŠA₃ +NU +ŠUB +ina +NINDA.ZIZ₂.AN.NA +GU₇ +DIŠ +NA +ina +si-li-ʾ-ti-šu₂ +KUM₂ +ana +ŠA₃ +GEŠTU.MIN-šu₂ +ip-pu-uš-ma +GEŠTU.MIN-šu₂ +DUGUD +I₃ +KUR.GI{mušen} +ana +ŠA₃ +GEŠTU.MIN-šu₂ +ŠUB-ma +neš-mu-šu₂ +i-qal-lil₂ +SUHUŠ +{giš}NAM.TAR +NITA₂ +tu-pa-aṣ +ana +ŠA₃ +GEŠTU.MIN-šu₂ +ŠUB-ma +ina-eš +DIŠ +NA +GEŠTU.MIN-šu₂ +GIM +ša₂ +ŠU.GIDIM.MA +GU₇.MEŠ +u₃ +SIG₃.MEŠ-šu₂ +I₃+GIŠ +{šim}GIG +I₃+GIŠ +GI.DUG₃.GA +I₃+GIŠ +{šim}LI +a-he-e +tu-raq-qa +1-niš +HI.HI +ana +ŠA₃ +GEŠTU.MIN-šu₂ +ŠUB +LAG +{mun}eme-sal-li₃ +{sig₂}AKA₃ +NIGIN +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR +DIDA +SIG₅ +ZI₃ +GU₂.GAL +ZI₃ +GU₂.TUR +ZI₃ +ZIZ₂.AM₃ +ZI₃ +GAZI{sar} +ZI₃ +{giš}ere-ni +ina +KAŠ +tara-bak +LAL +TI-uṭ +DIŠ +NA +GEŠTU.MIN-šu₂ +GIG-ma +ŠA₃ +GEŠTU.MIN-šu₂ +bi-ʾ-iš +SIG₃.MEŠ-su +GIR₂.GIR₂-su +x +x +x +u₂ +ra +x +GU₇-šu₂-ma +la +NA₂-lal +{šim}LI +{šim}GUR₂.GUR₂ +{šim}GIR₂ +{šim}BAL +GAZI{sar} +IM.KAL.LA +IM.KAL.GUG +1-niš +GAZ +SIM +ina +NE +{giš.u₂}GIR₂ +ŠA₃ +GEŠTU.MIN-šu₂ +SAR-ar₂ +x +x +x +x +x +UD.3.KAM₂ +an-nam +DU₃-uš-ma +ina +UD.4.KAM₂ +ŠA₃ +GEŠTU.MIN-šu₂ +ta-kap-par₂-ma +GIM +LUGUD +it-tag-ma-ru +IM.SAHAR.NA₄.KUR.RA +SUD₂ +ina +{gi}SAG.KUD +ana +ŠA₃ +GEŠTU.MIN-šu₂ +MU₂-ah +DIŠ +NA +ina +GEŠTU.MIN-šu₂ +MUD₂.BABBAR +DU-ak +MUD₂ +ELLAG₂ +GU₄ +u +MUD₂ +{giš}EREN +1-niš +HI.HI +ana +ŠA₃ +GEŠTU.MIN-šu₂ +BI.IZ +... +ana +ŠA₃ +GEŠTU.MIN-šu₂ +BI.IZ +A +{giš} +x +... +... +ana +ŠA₃ +GEŠTU.MIN-šu₂ +BI.IZ +A +{giš}NU.UR₂.MA +ina +I₃ +{giš}EREN +HI.HI +ana +ŠA₃ +GEŠTU.MIN-šu₂ +BI.IZ +kam-ka-ma +ša₂ +kim-ṣi +ANŠE +x +x +x +ša₂ +GU₂.MURGU₂ +ANŠE +ina +I₃ +{giš}EREN +HI.HI +{sig₂}AKA₃ +NIGIN-mi +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +I₃ +{šim}BULUH +{šim}LI +ZI₂ +BIL.ZA.ZA +ana +ŠA₃ +GEŠTU.MIN-šu₂ +BI.IZ +... +x-an-ni-šu₂ +ina +I₃ +KUR.GI{mušen} +HI.HI +ana +GEŠTU.MIN-šu₂ +BI.IZ +... +x +ina +ZI₃.KUM +HI.HI +ana +GEŠTU.MIN-šu₂ +GAR +x +x +x +tu-daq-qaq +ina +GI.SAG.KUD +ana +ŠA₃ +GEŠTU.MIN-šu₂ +MU₂-ah +GAZI{sar} +ki-ma +ŠE.SA.A +ta-qal₃-lu +ina +GI.SAG.KUD +ana +ŠA₃ +GEŠTU.MIN-šu₂ +MU₂-ah +x +x +x +{giš}MI.PAR₃ +tur-ar₂ +SUD₂ +ana +ŠA₃ +GEŠTU.MIN-šu₂ +MU₂-ah +tu-ru-ʾ-a +x-as-si +lu +bu +x +x +x +tu-pa-ṣa +A-šu₂ +ana +ŠA₃ +GEŠTU.MIN-šu₂ +BI.IZ +kam₂-ka-ma +ša₂ +kin₃-ṣi +ANŠE +x +x +ša₂ +kal/lap-bi +1-niš +HI.HI +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an-ma +NAGA.SI +KUG.GAN +NITA₃ +u +MUNUS +{sig₂}AKA₃ +NIGIN +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +SUM.SIKIL.SAR +tu-ha-sa +ana +ŠA₃ +GEŠTU.MIN-šu +tu-na-tak +DIŠ +NA +GEŠTU.MIN-šu₂ +MUD₂.BABBAR +i-ṣar-ru-ur +A +{giš}NU.UR₂.MA +ana +ŠA₃ +GEŠTU.MIN-šu₂ +BI.IZ +U₂.BABBAR +SUD₂ +ina +GI.SAG.KUD +ŠA₃ +GEŠTU.MIN-šu₂ +MU₂-ah +I₃ +{giš}EREN +I₃ +{šim}MUG +GAMUN{sar} +SUD₂ +ina +I₃.NUN +HI.HI +{sig₂}AKA₃ +NIGIN-mi +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR +GAMUN.GI₆ +{šim}ŠEŠ +I₃.KU₆ +U₂.KUR.RA +1-niš +HI.HI +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +ZI₂ +ŠAH +ina +ZI₃.KUM +HI.HI +{sig₂}AKA₃ +NIGIN-mi +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +ŠIKA +{giš}NU.UR₂.MA +HAD₂.A +SUD₂ +ana +ŠA₃ +GEŠTU.MIN-šu₂ +MU₂-ah +x +x +{giš}EREN +{šim}x +x +BIL.ZA.ZA +tur-ar₂ +SUD₂ +ana +ŠA₃ +GEŠTU.MIN-šu₂ +MU₂ +I₃ +{giš}ŠUR.MIN₃ +{sig₂}AKA₃ +SUD +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR +U₂.KUR.RA +LA +... +SUD₂ +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +KAŠ +ša +{lu₂}KURUN +U₂.BABBAR +ta-bi-lam +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +IM.SAHAR.NA₄.KUR.RA +SUD₂ +ana +ŠA₃ +GEŠTU.MIN-šu₂ +MU₂-ah +PA +{giš}bi-ni +PA +{giš}U₃.SUH₅ +ina +NE +SAR +... +x +... +I₃ +KUR.GI{mušen} +... +x +GI₃ +x +... +ZI₂ +BIL.ZA.ZA +... +GEŠTU.MIN-šu₂ +GAR-an +... +{giš}NU.UR₂.MA +... +GAR-an +... +x +HAR +... +SAR +x +... +x +... +kam₂-... +u₂ +... +DIŠ +GEŠTU.MIN +x +... +x +... +x +{šim}GUR₂.GUR₂ +... +A +{giš}NU.UR₂.MA +x +x +x +ar +ina +NE +{giš}ŠINIG +ta-sa-raq-ma +TI +DIŠ +KUG.GAN +SUD₂ +ana +ŠA₃ +GEŠTU.MIN-šu₂ +ta-sa-raq-ma +TI +ana +KIMIN +GAZI{sar} +GIM +ŠE.SA.A +ta-qal-lu +SUD₂ +ina +ŠA₃ +GEŠTU.MIN-šu₂ +ta-sa-raq-ma +TI +DIŠ +NA +MUD₂.BABBAR +ina +ŠA₃ +GEŠTU.MIN-šu₂ +DU-ak +A +{giš}NU.UR₂.MA +I₃+GIŠ +BARA₂.GA +I₃ +{giš} +EREN +HI.HI +... +A +{šim}BULUH +{šim}LI +ZI₂ +BIL.ZA.ZA +SIG₇ +ana +ŠA₃ +GEŠTU.MIN-šu₂ +BI.IZ +ŠE +GI₆ +... +MUD₂ +NIM +1-niš +HI.HI +ana +ŠA₃ +GEŠTU.MIN-šu₂ +BI.IZ +TI +DIŠ +NA +ina +ŠA₃ +GEŠTU-šu₂ +lu +A.MEŠ +lu +MUD₂ +lu +MUD₂.BABBAR +DU-ak +ŠA₃ +GEŠTU.MIN-šu₂ +ta-kap-par₂ +... +ina +GI.SAG.KUD +DUB +ŠA₃ +GEŠTU.MIN-šu₂ +LUH-si +GUR-ma +A.GEŠTIN.NA +BIL.LA₂ +ana +ŠA₃ +GEŠTU.MIN-šu₂ +BI.IZ +... +x +x +SUD₂ +ina +LAL₃ +HI.HI +ana +ŠA₃ +GEŠTU.MIN-šu₂ +DUB +{sig₂}AKA₃ +NIGIN +LAL₃ +KUR +U₂.BABBAR +... +x +x +... +ana +KIMIN +NUMUN +{u₂}NU.LUH.HA +{sig₂}AKA₃ +NIGIN-mi +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +ana +KIMIN +NUMUN +{šim}GUR₂.GUR₂ +SUD₂ +{sig₂}AKA₃ +NIGIN-mi +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +ana +KIMIN +GAZI{sar} +qa-lu-te +SUD₂ +{sig₂}AKA₃ +NIGIN-mi +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +DIŠ +NA +GEŠTU +ZAG-šu₂ +ina +KUM₂ +x +x +... +NA +BI +aš-rat +{d}UTU +{d}30 +KIN-ma +DUG₄.GA +u +GIŠ.TUK +GAR +... +{mun}eme-sal-li₃ +ina +I₃+GIŠ +ŠUR.MIN₃ +I₃.GIŠ +{šim}GIG +u +x +... +I₃.BUR +el-lam +SAG.DU-šu₂ +ŠUB-di +... +UD.7.KAM₂ +GUR.GUR-šum-ma +TI +DIŠ +NA +GEŠTU +GUB₃-šu₂ +ina +KUM₂ +... +MIN +NA +BI +aš-rat +{d}nin-urta +KIN-ma +DUG₄.GA +u +GIŠ.TUK +GAR +... +{mun}eme-sal-li₃ +I₃+GIŠ +... +I₃+GIŠ +{šim}GIG +SUD₂ +{sig₂}AKA₃ +NIGIN-mi +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +I₃.BUR +el-lam +ana +SAG.DU-šu₂ +ŠUB-di +... +{šim}LI +... +x +... +UD.7.KAM₂ +GUR.GUR-šum-ma +TI +DIŠ +NA +GEŠTU +... +šu₂ +NA +BI +aš-rat +{d}UTU +KIN-ma +DUG₄.GA +u +GIŠ.TUK +GAR +... +ina +I₃+GIŠ +{šim}LI +SUD₂ +{sig₂}AKA₃ +NIGIN-mi +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +I₃.BUR +el-lam +ana +SAG.DU-šu₂ +ŠUB-di +sah-le₂-e +ina +NINDA +ZIZ₂.AM₃ +GU₇ +MIN +... +UD.7.KAM₂ +GUR.GUR-šu₂-ma +TI +DIŠ +... +NA +BI +aš-rat +{d}... +KIN-ma +7 +ITI +ŠAG₅.GA +IGI-mar +... +SUD₂ +{sig₂}AKA₃ +NIGIN-mi +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR +I₃.BUR +el-lam +ana +SAG.DU-šu₂ +ŠUB-di +... +UD.7.KAM₂ +GUR.GUR-šum-ma +TI-uṭ +DIŠ +... +GIG +UD.DA +GIG +NA +BI +ZI.GA +... +x +SIG₅ +IGI-mar +ana +TI-šu₂ +... +I₃+GIŠ +ŠUR.MIN₃ +ana +SAG.DU-šu₂ +ŠUB-di +... +UD.7.KAM₂ +GUR.GUR-šum-ma +TI-uṭ +DIŠ +NA +GEŠTU.MIN-šu +IR +ana +qer-bi-nu +ip-hur-ma +... +x +x +... +... +UD.9.KAM₂ +ESIR +šu₂-šum +... +... +x +I₃.GIŠ +{šim}GIG +{sig₂}AKA₃ +NIGIN-mi +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +I₃ +... +ana +SAG.DU-šu +ŠUB-di +bu-uh₂-ra +x +GU₇ +MIN +... +KAŠ +NAG +MIN +UD.7.KAM₂ +GUR.GUR-šum-ma +TI +DIŠ +NA +GEŠTU +ZAG-šu₂ +IR +ana +qer-bi-nu +ip-hur-ma +x +x +x +x +x +x +x +NE +GAL₂-šu₂ +NA +BI +aš-rat +{d}x +KIN-ma +SIG₅ +IGI-mar +ana +TI-šu₂ +GADA +ta-ṣap-pir +I₃+GIŠ +ŠUR.MIN₃ +I₃+GIŠ +EREN +SUD +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +... +ana +SAG.DU-šu₂ +ŠUB +an-nu-u +x +GU₇ +MIN +{u₂}HAR.HAR +ina +KAŠ +NAG +MIN +UD.7.KAM₂ +GUR.GUR-šum-ma +TI-uṭ +DIŠ +NA +GEŠTU +GUB₃-šu₂ +IR +ana +qer-bi-nu +ip-hur-ma +MUD₂.BABBAR +ŠUB-ni +NA.BI +aš-rat +{d}EŠ₄.DAR +KIN-ma +SIG₅ +IGI-mar +... +x +x +x +ša-šu₂ +hal-qam +IGI-mar +ana +TI-šu₂ +I₃.GIŠ +{giš}EREN +I₃.GIŠ +I₃.GIŠ +{giš}ŠUR.MIN₃ +I₃.GIŠ +{šim}BAL +I₃+GIŠ +GI +DUG₃.GA +I₃+GIŠ +{šim}GIG +{sig₂}HE₂.ME.DA +SUD +ana +ŠA₃ +GEŠTU-šu₂ +GAR +I₃+GIŠ +{šim}GIG +ana +SAG.DU-šu₂ +ŠUB +bu-uh₂-ra +GU₇ +MIN +KAŠ +NAG +MIN +UD.7.KAM₂ +GUR.GUR-šum-ma +TI +DIŠ +NA +GEŠTU-šu₂ +GU₃.GU₃-si +IM +ha-sat +lu +MUD₂.BABBAR +DU₃-ni +aš-rat +{d}nin-urta +KIN-ma +... +A +{giš}NU.UR₂.MA +SIG₇.SIG₇ +RA-su +I₃+GIŠ +SUD +x +... +x +SUD₂ +ana +SAG.KI.MEŠ-šu₂ +ŠUB +DUG₃ +IGI-mar +ana +KIMIN +MUN +SUD₂ +{sig₂}AKA₃ +NIGIN +I₃+GIŠ +ŠUR.MIN₃ +SUD +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +I₃+GIŠ +ŠUR.MIN₃ +ana +SAG.KI.MEŠ-šu₂ +ŠUB +bah-ra +GU₇ +u +NAG +UD.3.KAM₂ +an-nam +DU₃-uš-ma +DUG₃ +IGI-mar +ana +KIMIN +{šim}LI +SUD₂ +{sig₂}AKA₃ +NIGIN +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +I₃ +ILLU +{šim}BULUH +ana +SAG.KI.MEŠ-šu₂ +ŠUB +sah-le₂-e +KI +NINDA.ZIZ₂.AM₃ +GU₇.MEŠ +3 +u₄-mi +an-nam +DU₃.DU₃-ma +DUG₃ +IGI-mar +ana +KIMIN +I₃ +{giš}EREN.NA +SIG₂.GA.RIG₂.AK.A +SUD +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +... +... +ana +SAG.KI.MEŠ-šu₂ +ŠUB.ŠUB-ma +x +... +ana +KIMIN +I₃ +{giš}EREN +I₃+GIŠ +ŠUR.MIN₃ +SIG₂.GA.RIG₂.AK.A +SUD +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +... +ana +SAG.KI.MEŠ-šu₂ +ŠUB.MEŠ +{u₂}HAR.HAR +GU₇ +u +NAG +UD.3.KAM₂ +an-nam +DU₃-uš-ma +DUG₃ +IGI-mar +DIŠ +NA +GEŠTU +ZAG-šu₂ +DUGUD +ŠUM.ŠIR.AŠ{sar} +tu-pa-ṣa +ana +ŠA₃ +GEŠTU-šu₂ +GAR-an +PA +{giš} +ŠINIG +SIG₇-su +SUD₂ +ina +ZI₃.KUM₃ +HI.HI +ana +ŠA₃ +GEŠTU-šu₂ +GAR-an +{giš}EREN +{šim}LI +GAMUN.GI₆ +SUM{sar} +SUD₂ +ina +I₃.NUN +HI.HI +{sig₂}AKA₃ +SUD +ana +ŠA₃ +GEŠTU-šu₂ +GAR-an +I₃.GIŠ +ŠUR.MIN₃ +{sig₂}AKA₃ +SUD +ana +ŠA₃ +GEŠTU-šu₂ +GAR-an +{šim}HAB +I₃ +ŠAH +PA +{giš}MAŠ.HUŠ +SIG₂ +{munus}AŠ₂.GAR₃ +GIŠ₃ +NU.ZU +ta-sak₃ +{sig₂}AKA₃ +NIGIN-mi +ana +ŠA₃ +GEŠTU-šu₂ +GAR-an +I₃+GIŠ +dup-ra-na +{sig₂}AKA₃ +SUD +ana +ŠA₃ +GEŠTU-šu₂ +GAR-an +MUD₂ +{d}NIN.KILIM.EDEN.NA +KI +I₃ +{giš}EREN +I₃ +{giš}ŠUR.MIN₃ +HI.HI +ana +ŠA₃ +GEŠTU-šu₂ +GAR-an +A +{giš}NU.UR₂.MA +AN.ZAH.GI₆ +tu-daq-qaq +... +ana +ŠA₃ +GEŠTU-šu₂ +GAR-an +BURU₅.HABRUD.DA +NITA +SAG.DU-su +KUD-is +MUD₂.MEŠ +KUM₂ +ana +ŠA₃ +GEŠTU-šu₂ +tu-na-tak +DIŠ +NA +GEŠTU +GUB₃-šu₂ +DUGUD +{šim}ŠEŠ +{šim}GIG +SUD₂ +... +LAL₃.KUR +ina +I₃.UDU +UR.MAH +... +EGIR-šu₂ +DILIM₂ +A.BAR +ina +I₃+GIŠ +x +... +I₃+GIŠ +EREN +ŠE.MUŠ₅ +... +x +x +... +si-ik-ti +{giš}šu-šum +... +U₂.BABBAR +x +... +ha-si-sa-šu₂ +DAB-at +ZI₃ +... +x +GEŠTU-šu₂ +aš +gir₂ +... +x +x +ZI₃ +bu-ṭu-tu₂ +LAL +... +x +... +ana +ŠA₃ +GEŠTU-šu₂ +ŠUB +I₃+GIŠ +ina +KA-ka +ana +ŠA₃ +GEŠTU-šu₂ +... +sar +tum +x +... +DUB-ak +kam₂-ma +ša +AŠGAB +... +U₂.BABBAR +x +x +ana +ŠA₃ +GEŠTU-šu₂ +MU₂-ah +DIŠ +NA +GEŠTU.MIN-šu₂ +DUGUD +1 +GIN₂ +A +{giš}NU.UR₂.MA +1 +GIN₂ +A +{šim}GIG +ina +{sig₂}AKA₃ +SUD +ana +ŠA₃ +GEŠTU-šu₂ +GAR +3 +u₄-me +an-na-a +DU₃.DU₃-uš +ina +UD.4.KAM₂ +2-me +ŠA₃ +GEŠTU.MIN-šu₂ +ta-kap-par₂ +IM.SAHAR.NA₄.KUR.RA +SUD₂ +ina +{gi}SAG.KUD +ana +ŠA₃ +GEŠTU.MIN-šu₂ +MU₂-ah +{giš}šu-ru-uš +{giš}NAM.TAR +NITA₂ +... +x +x +... +x-šu₂ +ŠU.TI +SIG₇-su +SUD₂ +A-šu₂ +x +... +neš-mu-šu₂ +BAD-te +{šim}HAB +I₃ +ŠAH +KA.A.AB.BA +... +{munus}AŠ₂.GAR₃ +GIŠ₃ +NU.ZU +tur-ar₂ +SUD₂ +... +ana +ŠA₃ +GEŠTU.MIN-šu₂ +ŠUB +SUM.SIKIL +PA +{giš}PEŠ₃ +... +ki-ma +an-nam +i-te-ep-šu +ZAG.HI.LI +NINDA +ZIZ₂.AN.NA +... +ina +KAŠ +NAG-ma +{tug₂}BAR.SI +x +... +{tug₂}DUL-šu₂ +x +DUB +... +UD.3.KAM₂ +SAR.SAR-ma +TI +... +ana +ŠA₃ +GEŠTU.MIN-šu₂ +ŠUB-di +... +ana +ŠA₃ +GEŠTU.MIN-šu₂ +ŠUB-di +... +ana +ŠA₃ +GEŠTU.MIN-šu₂ +ŠUB-di +... +HI.HI +ana +ŠA₃ +GEŠTU.MIN-šu₂ +tu-na-tak +... +x +ana +ŠA₃ +GEŠTU.MIN-šu₂ +GAR-an +... +ana +ŠA₃ +GEŠTU.MIN-šu₂ +tu-na-tak +... +ana +ŠA₃ +GEŠTU.MIN-šu₂ +ŠUB +... +x +x +DIŠ +NA +ZU₂.MEŠ-šu₂ +GIG +MUŠ.DIM₂.GURUN.NA +ša₂ +EDIN.NA +U₅.MEŠ +... +BABBAR +ša₂ +ŠA₃-šu₂ +{sig₂}AKA₃ +NIGIN-mi +I₃ +x +... +SUHUŠ +{giš}NAM.TAR +NITA₂ +SUHUŠ +{u₂}KUR.RA +... +U₂.BABBAR +ILLU +{šim}BULUH +A.GEŠTIN.NA +... +u₂-pu-un-tu₂ +ina +UGU +ZU₂-šu₂ +GAR +... +x +... +IM.SAHAR.NA₄.KUR.RA +{giš}x +x +... +{šim}BULUH +ZU₂.LUM.MA +... +PA +{u₂}SIKIL +x +... +u₂-hi-nu +... +IM.SAHAR.NA₄.KUR.RA +... +x +... +x +... +... +x +... +... +... +... +... +... +... +... +x +x-šu₂ +... +šu-ru-uš +{giš}x +... +x +KUM₂ +ik-kaṣ₃-ṣi +... +ana +KIMIN +tu-maš-šad/ša₂-ʾ +... +ana +KIMIN +ZI₃ +SAHAR +MUNU₆ +... +DUB-raq +... +DIŠ +NA +ZU₂-šu₂ +GU₇ +... +ana +KIMIN +BIL.ZA.ZA +SIG₇ +ZI₂-su +... +ana +KIMIN +BIL.ZA.ZA +SIG₇ +ZI₂-su +... +ana +KIMIN +{šim}x +... +2 +SILA₃ +x +... +x +... +... +GAR-an +... +GAR-an +... +GAR-an +... +x +ina-eš +... +DUB-raq +... +TIN +... +x +ina-ah +... +ina-ah +... +TI +... +TI +... +TI +... +TI +... +LA +... +GABA +... +GAR-an +... +DUB-raq +... +GAR-an +... +DUB-raq +... +TI +... +x +x +... +DIŠ +NA +ZU₂-šu₂ +... +NIGIN +I₃.GIŠ +SUD +... +ana +KIMIN +ZI₃ +tur-ar₂ +... +ana +KIMIN +MAŠ₂ +... +ana +KIMIN +x +... +ina +I₃ +... +ana +KIMIN +... +ana +KIMIN +... +ina +ŠU-šu₂ +x +... +x +x +... +ana +KIMIN +{sum}SAR +... +i-di-ka +... +iš-tu +na +ah +... +ba-lit-ta₅ +I₃ +... +x +{sig₂}AKA₃ +šu +x +... +ana +KIMIN +MUŠ.DIM₂.GURUN.NA +ša₂ +EDIN +I₃.UDU-šu₂ +... +{na₄}KA.GI.NA +... +ina +PAD-šu₂ +x +... +ana +KIMIN +tam-šil +GAZ +si +x +... +x-di-im +a-šar +{na₄}AD.BAR +... +pu-ṣa +bur-ru-mat +ba-lit-ti +ana +UGU +ZU₂-šu₂ +GAR-an +... +GIM +A +ša +ana +UGU +ZU₂-šu₂ +ŠUB +x +x +ta-tab-bal-ma +tam-ši-i +EN +TI +NU +MAR-šu₂ +TI +ana +KIMIN +šu-ru-uš +{giš}NAM.TAR +NITA₂ +x +na +ad +da +x +A +ša₂ +ana +UGU +ZU₂-šu₂ +GIG +ŠUB +ana +KIMIN +hu-um-bi-bi-tu₂ +tu-pa-ṣa +{sig₂}AKA₃ +NIGIN +ina +I₃ +SUD +ana +ŠA₃ +GEŠTU-šu₂ +ša₂ +ZU₂-šu₂ +GIG +ŠUB +ana +KIMIN +{u₂}GAMUN.GE₆ +ta-sak₃ +ana +UGU +ZU₂-šu₂ +GAR-an +ana +KIMIN +{u₂}KUR.KUR +ta-sak₃ +ana +UGU +ZU₂-šu₂ +ŠEŠ₂ +EN₂ +{d}a-nu-ma +{d}a-nu +{d}a-nu +pu-hur +AN-e +{d}a-nu +pu-hur +KI-ti +KI-tu₄ +ib-ta-ni +tul-ta₅ +KI-tu₄ +ib-ta-ni +bu-ʾ-ša₂-nu +ša₂ +bu-ʾ-ša₂-ni +KALAG-an +DAB-su +GIM +UR.MAH +nap-ša₂-ta₅ +i-ṣa-bat +ki-ma +UR.BAR.RA +i-ṣa-bat +lu-ʾ-a +iṣ-bat +ap-pu +nu-ru-ub +ap-pi +UZU +MUR +ina +bi-rit +ZU₂.MEŠ +na-da-at +{giš}GU.ZA-šu₂ +sak-la +im-ti-ši +a-lak-ta-šu₂ +up-pu-tu₂ +im-ti-ši +re-bit +ERI-šu₂ +me-tu₄ +la +i-sa-ha-ra +iš-tu +KI-ti₃ +{d}ku₃-bu +la +e-ni-qu +UBUR +ša₂ +AMA-šu₂ +bu-ša-a-nu +a-a +GUR-ma +a-na +ṣib-ti-šu₂ +E₂.GAL +x +x +... +ki-ma +mu-x +... +EN₂ +ul +... +EN₂ +{d} +... +i-na +ma-har +{d}UTU +A +KUG.GA +ŠUB.ŠUB +EN₂ +an-ni-ta +3-šu₂ +ŠID-nu +... +e-ma +ŠID-u₂ +LAGAB +MUNU₆ +ZU₂-šu₂ +DIRI-ma +ana +UGU +gul-gul-li +... +gul-gul-lu +GIG +ZU₂.MU +tab-li +7-šu₂ +DUG₃.GA-ma +TI +EN₂ +ši +it-ta-ak-ru-ma +{giš}IG +UZU +{giš}SAG.KUL +GIR₃.PAD.DU +iš-tu +a-a-nu +x +x +x +x +GIR₃.PAD.DU +UGU +ZU₂ +it-ta-bak +KUM₂ +UGU +SAG.DU +it-ta-bak +mur-ṣa +man-na +lu-uš-pur +ana +IBILA +ša₂ +KUR.RA +{d}AMAR.UTU +li-lap-pi-tu₄ +tul-ta₅ +tul-tu₄ +ki-ma +šik-ke-e +lit-ta-ṣi +ṣer-ra-niš +TU₆.EN₂ +DU₃.DU₃.BI +la-aš₂-ha +ša₂ +IM +KI.GAR +DU₃ +ana +ŠID.MEŠ +ZU₂.MEŠ-šu₂ +aš₂-na-an +tu-rat-ta +KI +ZU₂-šu₂ +GIG-ti +ZIZ₂.AN.NA +GI₆ +ti-ret-ti +I₃.GIŠ +ZU₂-šu₂ +DIRI +ana +ŠA₃ +la-aš₂-hi +MU₂-ah +EN₂ +3-šu₂ +ŠID-nu +ana +HABRUD +ša₂ +{d}UTU.ŠU₂.A +GAR-an +ina +IM +IN.BUBBU +UŠ₂-hi +ina +{na₄}KIŠIB +{na₄}ŠUBA +u +{na₄}KA.GI.NA +KA₂-šu₂ +ta-bar-ram +EN₂ +IBILA +E₂.MAH +IBILA +E₂.MAH +IBILA +GAL-u +ša₂ +{d}50 +at-ta-ma +TA +E₂.KUR +tu-ri-dam-ma +ina +MURUB₄ +AN-e +KI +{mul}MAR.GID₂.DA +GUB-az-ma +DUG₄.GA +ka-li +ik-kal-an-ni +li-is-ku-ta +at-ta-ma +x +ina +... +x-ma +{uzu}UR₅.UŠ₂ +{uzu}UR₅ +NU +NAG/GU₇ +TU₆.EN₂ +DU₃.DU₃.BI +la-aš₂-ha +DU₃-uš +ana +ŠID.MEŠ +ZU₂.MEŠ-šu₂ +ZIZ₂.AN.NA +tu-rat-ta +KI +ZU₂-šu₂ +GIG-ti +aš₂-na-an +GI₆ +te-ret-ti +LAL₃ +u +I₃ +BARA₂.GA +ZU₂-šu₂ +DIRI +ana +ŠA₃ +la-aš-hi +MU₂-ah +EN₂ +3-šu₂ +ŠID +ana +HABRUD +{d}UTU.ŠU₂.A +GAR-an +... +... +x +x +x +... +ru +... +tak-ku-... +mi-na +... +MAN +TAG +x +... +TA +NUMUN +x +... +a-na +ŠA₃ +ZU₂-šu₂ +... +lup-pu-ut +ZU₂-šu₂ +... +pa-šu₂ +an-na-x +... +na-ah-pi-i +AN +ŠU₂/BAR +GIN₇ +{kuš}A.EDIN +... +ka-inim-ma +ZU₂ +GIG +... +EN₂ +ZU₂ +GIG +ZU₂ +GIG +... +GIG +ZU₂ +x +... +x +x +... +ka-inim-ma +... +ša₂ +na +... +EN₂ +x +x +x +x +... +giš +x +x +ha +x +... +i +x +iš +hu +kal +... +i +x +iš +la-aš₂-la +... +ka-inim-ma +ZU₂.GIG.GA.KAM₂ +... +EN₂ +1-šu₂ +ana +UGU-šu₂ +ŠID-nu +... +EN₂ +{d}UTU +aš-šum +ZU₂.MU +ša₂ +ik-kal-an-ni +... +ša₂ +ki-is-pa-at +la +ak-si-pu-šu +u₃ +me-e +la +aq-qu-šu₂ +... +ZU₂ +sa-hu +x +ka-a-ša₂ +am-hur-ka +ak-ta-la-šu₂ +u +ak-ta-ab-ba-x +... +GIM +a-ša₂-šu₂ +ZU₂-šu₂ +la +GU₇-šu₂ +a-a-ši +ZU₂ +la +ik-kal-an-ni +TU₆.EN₂ +ka-inim-ma +ZU₂.GIG.GA.KAM₂ +... +ina +še-rim +3-šu₂ +ŠID-nu +... +EN₂ +TA +{d}A-nim +ib-nu-u +AN-e +... +eri-du₁₀ +ib-nu-u +gi +x +... +ki-ma +{mul}ni-bu-u₂ +x +... +ni-zi-iq +... +ka-inim-ma +ZU₂ +GIG.GA.KAM +... +ku-pa-tin-ni +tu-kap-pat +e-ma +ku-pa-tin-ni +EN₂ +ŠID-nu +... +ana +UGU +ZU₂ +GAR-ma +x +... +ina-eš +EN₂ +{d}A-nu +x +... +iš-tu +{d}a-nim +ib-nu +... +ul-tu +{d}a-nu +ib-nu-u +an-e +an-u₂ +ib-nu-u +KI-tu +er-ṣe-tu +ib-nu-u +ID₂.MEŠ +ib-na-a +a-tap-pa-ti +... +a-tap-pa-ti +ib-na-a +ru-šum-ta +ru-šum-ta +ib-na-a +tul-ta₅ +il-lik +tul-ta₅ +ana +IGI +{d}UTU +i-bak-ki +ana +IGI +{d}E₂-a +il-la-ka +di-ma-ša₂ +mi-na +ta-da-na +ana +a-ka-li-ya +mi-na-a +ta-da-na +ana +mun-zu-qi₂-ya +at-tan-na-ki +{giš}PEŠ₃ +ba-ši-il-ta +ar-ma-na-a +{giš}HAŠHUR +ana-ku +am-mi-na +an-na-a +{giš}PEŠ₃ +ba-ši-il-ta +u +ar-ma-na-a +{giš}HAŠHUR +šu-uq-qa-an-ni-ma +in +bi-rit +ZU₂ +u +la-aš₂-hi +šu-ši-ban-ni +ša₂ +ši-in-ni-ma +lu-un-zu-qa +da-mi-šu₂ +u +ša₂ +la-aš₂-hi-ma +lu-uk-su-sa +ku-sa-si-šu₂ +ka-inim-ma +ZU₂.GIG.GA.KAM₂ +DU₃.DU₃.BI +KAŠ +DIDA +LAGAB +MUNU₆ +1-niš +HI.HI +EN₂ +3-šu₂ +ana +UGU +ŠID-nu +ana +UGU +ZU₂-šu₂ +GAR-an +EN₂ +a-ri-ki +x +ni-ba-ri-qi₂ +{giš}IG +UZU +{giš}SAG.KUL +GIR₃.PAD.DU +ana +UZU +e-ru-ba +GIR₃.PAD.DU +iš-ši +iš-šu-uk +UZU +ih-pi +GIR₃.PAD.DU +a-na +ZU₂.MEŠ +it-ta-di +LIL₂-ta +ana +SAG.DU +it-ta-di +KUM₂ +man-nu +lu-uš-pur +a-na +{d}asal-lu₂-hi +DUMU +reš-ti-i +ša₂ +{d}E₂-a +lu-še-bi-lam-ma +šam-me +TI.LA +EN₂ +TI.LA +la/na-a-di +... +TU₆ +ul +ya-at-tu +EN₂ +{d}40 +u +{d}asal-lu₂-hi +ši-pat +{d}da-mu +u +{d}nin-kar-ra-ak +{d}gu-la +TI.LA-ma +NIG₂.BA-ki +li-qi₂-i +TU₆.EN₂ +ka-inim-ma +ZU₂.GIG.GA.KAM₂ +DU₃.DU₃.BI +NU +SAR +DIŠ +NA +gi-mer +ZU₂.MEŠ-šu₂ +i-na-aš₂ +DUB.1.KAM₂ +DIŠ +NA +ZU₂.MEŠ-šu₂ +GIG +E₂.GAL +{diš}AN.ŠAR₂-DU₃.A +20 +ŠU₂ +20 +KUR +AN.ŠAR₂{ki} +ša +{d}AG +u +{d}taš-me-tu₄ +GEŠTU.MIN +ra-pa-aš₂-tu₄ +iš-ru-ku-uš +e-hu-uz-zu +IGI.MIN +na-mir-tu₄ +ni-siq +tup-šar-ru-ti +ša +ina +LUGAL.MEŠ-ni +a-lik +mah-ri-ya +mam₂-ma +šip-ru +šu-a-tu +la +e-hu-uz-zu +bul-ṭi +TA +muh-hi +EN +UMBIN +liq-ti +BAR.MEŠ +ta-hi-zu +nak-la +a-zu-gal-lu-ut +{d}nin-urta +u +{d}gu-la +ma-la +ba-aš₂-mu +ina +tup-pa-a-ni +aš₂-ṭur +as-niq +IGI.KAR₂-ma +a-na +ta-mar-ti +ši-ta-as-si-ya +qe₂-reb +E₂.GAL-ya +u₂-kin +x +x +x +x +x +x +... +{u₂}IN₆.UŠ₂ +{u₂}SIKIL +SIG₇-su-nu +tu-has-sa₃ +ina +x +... +5 +GIN₂ +ILLU +{šim}BULUH +5 +GIN₂ +DUH.LAL₃ +ana +{dug}BUR.ZI +... +a-šar +tar-ku-su +DU₈-ar₂ +TA +DU₈-ru +... +DIŠ +NA +I₃ +la-ta-ki +ŠEŠ₂-ma +SAG.DU-su +gu-raš-ta₅ +DIRI +... +LUH +tu-bal +EGIR-šu₂ +{u₂}kul₂-ba-na +HAD₂.A +GAZ +... +DIŠ +KIMIN +{u₂}IGI-lim +SUD₂ +ina +... +DIŠ +KIMIN +{u₂}LAG.GA₂ +SUD₂ +ina +x +... +DIŠ +KIMIN +{u₂}TAL₂.TAL₂ +x +x +... +DIŠ +NA +SAG.DU-su +... +UKUŠ₂.HAB +... +... +x +x +GE₆ +NIM +SUD₂ +x +... +{u₂}GA.RAŠ{sar} +{kuš}E.SIR +SUMUN +DIŠ-niš +HAD₂.A +tur-ar₂ +... +AN.NA +A.BAR₂ +AN.ZAH +DIŠ-niš +HI.HI +1-šu₂ +2-šu₂ +3-šu₂ +... +DIŠ +KIMIN +IM.SAHAR.NA₄.KUR.RA +{u₂}LAG.GA₂ +SUD₂ +ina +I₃ +{giš}EREN +HI.HI +x +... +DIŠ +NA +ina +TUR-šu₂ +SAG.DU-su +še-bi-te +DIRI +ana +SIG₂ +BABBAR +GE₆ +SAG.DU +BURU₅.HABRUD.DA{mušen} +... +IGIRA₂{mušen} +laq-laq-qa +lu-u +x +x +x +x +x +... +ina +IZI +ŠEG₆-šal +gul-gul-la-šu₂-nu +TI-qe₂ +ina +I₃ +... +EN₂ +sag-ki +en-na +7-šu₂ +x +x +an +x +x +x +x +... +EN₂ +sag-ki +en-na +ŠID-nu +x +x +x +... +DIŠ +KIMIN +SI +DARA₃.MAŠ +TI-qe₂ +KI +GIR₃.PAD.DU +x +x +... +ina +IZI +u₂-šar₂-rap +KI +I₃ +x +x +... +3 +UD-mi +SAG.DU-su +LAL₂-ma +... +DIŠ +KIMIN +{u₂}MA₂.ERIŠ₄.MA₂-le-e +SAG.DU +ARGAB{mušen} +... +SAG.DU +BURU₅{mušen} +GE₆ +SAG.DU +BURU₅.HABRUD.DA{mušen} +SAG.DU +... +DIŠ-niš +tur-ar₂ +SUD₂ +ina +I₃.GIŠ +DU₁₀.GA +HI.HI +SAG.DU-su +SAR-ab-ma +x +... +DIŠ +KIMIN +a-a-ar₂ +DINGIR +DAB-bat +ŠA₃-šu₂ +BAD-ti +TUN₂-šu₂ +x +šu₂ +u +x +x +... +2-na +ŠA₃-šu₂ +tu-tar +te-te-kip +ina +KI +ṣar-hi +x +x +x +7 +UD-mi +x +... +ša₂ +ŠA₃-šu₂ +TI-qe₂ +HAD₂.A +tur-ar₂ +SUD₂ +ina +I₃.GIŠ +DU₁₀.GA +... +SAG.DU-su +SAR-ab +7 +UD-me +EŠ.MEŠ +LAL₂.MEŠ +... +SIG₂ +BABBAR +GE₆ +EN +LAL₂-uš +EN₂ +ki-a-am +ŠID-nu +... +DIŠ +NA +IGI-MEŠ-šu₂ +LU₃.LU₃ +LAL₃ +BABBAR +ina +I₃.NUN +1-niš +HE.HE +... +e-nu-ma +IGI-MIN-šu₂ +bu-ur-ṣa +id-da-nag-ga-la +ŠU.GIDIM.MA +... +ana +TI-šu₂ +{na₄}KA.GI.NA.DAB.BA +{na₄}AN.NA +{na₄}AN.ZAH.GE₆ +... +{na₄}mu-ṣa +{na₄}ZALAG₂ +{na₄}ZA.GIN₃ +{na₄}ŠUBA +{na₄}BAL +URUDU.NITA +NA₄ +... +NUMUN +{giš}ŠINIG +NUMUN +{giš}MA.NU +NUMUN +aš₂-li +NITA +{na₄}as₂-har +... +ta-ša-pah +ina +I₃.UDU +ELLAG₂ +GU₄ +GE₆ +GIN₇ +kam₂-ma +ina +UGU +URUDU +SUD₂-ma +... +DIŠ +KIMIN +NUMUN +{giš}ŠINIG +NUMUN +{giš}MA.NU +NUMUN +aš₂-li +NUMUN +... +NUMUN +{šim}LI +GIN₇ +qu-ta-ri +IGI.MIN-šu₂ +u +SAG.KI +... +DIŠ +NA +ŠU.GIDIM.MA +DAB-su-ma +i-na +IGI +IGI.MIN-šu₂ +GIN₇ +nu-ri +x +... +lu-u +GIN₇ +... +x +x +lu-u +GIN₇ +UD₅ +GAR.GAR-an +NA +BI +ŠU.GIDIM.MA +DAB-su +... +... +{šim}LI +{šim}GUR₂.GUR₂ +x +... +... +1-niš +SUD₂ +x +... +... +ILLU +LI.DUR +... +... +{d}ID₂ +... +... +x +... +... +MAR +... +MAR +... +DIRI +... +MAR +... +x +x +x +x +... +ZU₂.LUM.MA +... +DIŠ +KIMIN +{giš}ŠINIG +... +EN₂ +ki +sa +di +x +... +a-da-pa-tu₄ +in-x +... +KA.INIM.MA +IGI-MIN +a-pa-ti +IGI-MEŠ +a-ša-ti +... +DU₃.DU₃.BI +7 +ŠE +ILLU +LI.DUR +... +ina +GE₆ +ina +UR₃ +ana +IGI +MUL +x +... +x +... +ina +še-ri₃ +la-am +{d}UTU.E₃ +U₂.HI.A +an-nu-ti +... +x +x +ana +ŠA₃ +ŠUB-di +IGI-MIN-šu₂ +MAR +EGIR-šu₂ +DILIM₂ +A.BAR₂ +ul +DU₈-ar₂ +IGI-MIN-šu₂ +tu-šam-har +ina +A +GAZI{sar} +IGI-MIN-šu₂ +tu-ha-pap +... +te-qi₂-it +IGI-MIN +ša +ŠU.GIDIM.MA +{na₄}mu-ṣa +NA₄ +... +{na₄}AN.ZAH.BABBAR +{na₄}AN.ZAH.GE₆ +KU₃.GAN +PA +{giš}NAM.TAR +NITA₂ +PA +... +PAP +11 +NA₄.MEŠ +u +U₂.HI.A +ŠEŠ +ana +A +ŠUB-di +ina +UL +tuš-bat +... +ana +I₃+GIŠ +ŠUB-di +IGI-MIN-šu₂ +ŠEŠ₂-aš +ana +KAŠ +ŠUB-di-ma +NAG +ina +GU₂-šu₂ +ina +KUŠ +GAR-an-ma +SILIM-im +an-na-nam +ina +ITI.1.KAM₂ +UD.21.KAM₂ +DU₃-ma +i-šal-lim +DIŠ +KIMIN +NA₄ +SA₅ +ki-ma +bu-la-li +IGI-MIN-šu₂ +ŠEŠ₂-aš +DIŠ +KIMIN +{na₄}mu-ṣa-am +KIMIN +DIŠ +KIMIN +{na₄}kut-pa-a +ina +I₃.NUN +SUD₂ +KIMIN +DIŠ +KIMIN +{na₄}ZA.GIN₃ +KUR.RA +ina +I₃.NUN +SUD₂ +KIMIN +DIŠ +KIMIN +{na₄}MUŠ.GIR₂ +KIMIN +DIŠ +KIMIN +šim-bi-zi-da₄ +ina +GA +{munus}U₂.ZUG₂ +SUD₂ +IGI-MIN-šu₂ +ŠEŠ₂-aš +DIŠ +KIMIN +{na₄}ZU₂ +GE₆ +ina +I₃ +KUR.GI +SUD₂ +KIMIN +{šim}GUR₂.GUR₂ +mi-riq₂ +U₂ +a-ši-i +{u₂}KUR.RA +GAZI{sar} +I₃.UDU +GI.MEŠ +{na₄}KA.GI.NA.DAB.BA +{na₄}mu-ṣa +I₃.GIŠ +MUŠEN.HABRUD +LIBIR.RA +DUH.LAL₃ +11 +U₂.HI.A +ŠEŠ +rib-ku +ša +ŠU.GIDIM.MA +IGI-MIN-šu₂ +MAR-MEŠ-ma +TI +... +x +ina +9 +U₄.KAM +... +UDU.SISKUR +DU₃-ma +UZU-šu-nu +... +UGU +ša +GIR₃.PAD.DU +LUGUD₂.DA +UDU +x +... +GAMUN.GE₆ +A +{giš}NU.UR₂.MA +{giš}x +... +1-niš +HE.HE +ina +LAL₃ +I₃.NUN +I₃.GIŠ +EREN +SUD₂ +... +x +... +DIŠ +NA +IGI-MIN-šu₂ +la +ina-ṭa-la +NA +BI +UD.DA +TAB.BA +1 +GIN₂ +U₅.ARGAB{mušen} +1/2 +GIN₂ +U₂.BABBAR +IGI.4.GAL₂.LA +{mun}eme-sal-li₃ +ina +LAL₃.KUR +u +I₃.NUN +SUD₂ +IGI.MIN-šu₂ +MAR +DIŠ +NA +di-gi-il +IGI.MIN-šu₂ +ma-a-ṭi +I₃.UDU +MUŠ.GE₆ +{u₂}IN.NU.UŠ +ZU₂.LUM.MA +{giš}ŠINIG +I₃.UDU +UR.MAH +ILLU +{u₂}ti-ia₂-tu +UKUŠ₂.LAGAB +{šim}HAB +NAGA.SI +U₂ +BABBAR +{mun}eme-sal-li₃ +{u₂}GAMUN.GE₆ +mal-ma-liš +ina +SAHAR +URUDU +ana +LAL₃ +KUR.RA +HE.HE +SUD₂ +MAR +ZA.NA +te-pu-uš +{u₂}ESI +NAGA.SI +IGI.MIN-šu₂ +LUH-si +EGIR-šu₂ +IGI.MIN-šu₂ +MAR-ma +UD.x.KAM₂ +x +... +x +ŠUB +EN +7-šu₂ +MAR +EGIR-šu₂ +DILIM₂ +A.BAR₂ +ul +DU₈-ar₂ +... +{šim}LI +NAGA.SI +NU.LUH.HA +sah-le₂-e +... +ina +... +SILA₁₁-aš +LAL +... +x-ma +IGI-šu₂ +... +x +x +{mun}eme-sal-li₃ +... +x +SUD₂ +... +ka-la +UD-me +X-šu₂ +KEŠDA +u₂-kal +... +IGI.MIN-šu₂ +MAR.MEŠ-ma +TI +... +ŠU +{d}šul-pa-e₃-a +{d}IŠKUR +ra-hi-iṣ +... +ŠU +{d}15 +... +ina +NE +GAR-an +... +SUD₂ +MAR.MEŠ-ma +TI +... +x +mi +šum₄-ma +la +i-na-aṭ-ṭa-la +ŠU +{d}iš₈-tar₂ +... +ina +LAL₃ +u +I₃.NUN +SUD₂ +IGI-MIN-šu₂ +MAR-MEŠ-ma +TI +DIŠ +NA +ši-li +IGI-MIN-šu₂ +... +x +x +x +x +x +NU +NA₂ +UGU +mi-na-te-ši-na +DUGUD +I₃.UDU +MUŠ.GE₆ +ina +I₃.NUN +LAL₃ +KUR-e +HE.HE +te-qi₂ +DIŠ +NA +ši-li +IGI-MIN-šu₂ +šad-du-ma +KI.NA₂ +NU +IL₂ +PA +{giš}ŠE.NU₂.A +PA +{giš}PEŠ₃ +PA +{giš}MI.PAR₃ +PA +GI.ZU₂.LUM.MA +ina +A +ina +NININDU +UŠ₂-ker +ana +ŠA₃ +ŠUB.ŠUB-šu₂ +A.GAR.GAR +MAŠ.DA₃ +ŠURUN +GU₄ +1-niš +GAZ +SIM +KI +ZI₃ +ŠE.SA.A +HE.HE +ina +A +GAZI{sar} +SILA₁₁-aš +LAL +{u₂}ak-tam +ina +KAŠ +NAG-ma +TI +DIŠ +NA +U₄ +DU₃.A.BI +NU +IGI.DU₈ +GE₆ +DU₃.A.BI +IGI.DU₈ +{d}30-lu-ur-ma-a +DIŠ +NA +U₄ +DU₃.A.BI +IGI.DU₈ +GE₆ +DU₃.A.BI +NU +IGI.DU₈ +{d}30-lu-ur-ma-a +DIŠ +NA +IGI-MIN-šu₂ +si-lu-ur-ma-a +ma-ku-ut +ga-bi-di +ša +ANŠE +UZU +la-ba-ni-šu₂ +ina +ŠU.SAR +ta-šak-kak +ina +GU₂-šu₂ +GAR-an +A.GUB₂.BA.A +GIN-an +ina +še-ri₃ +{tug₂}ŠA₃.HA +ana +IGI +{d}UTU +LAL-aṣ +NIG₂.NA +{šim}LI +GAR-an +LU₂ +šu₂-a-tu₂ +ina +ku-tal +{tug₂}ŠA₃.HA +ana +IGI +{d}UTU +tuš-za-as-su +MAŠ.MAŠ +7 +NINDA +IL₂-ši +ša₂ +IGI-MIN-šu₂ +GIG +7 +NINDA +IL₂-ši-ma +MAŠ.MAŠ +ana +{lu₂}TU.RA +mu-uh-ra +nam-ra +i-ni +i-qab-bi +{lu₂}TU.RA +ana +MAŠ.MAŠ +mu-uh-ra +bal-ṣa +i-ni +i-qab-bi +DIŠ +NA +IGI.MIN-šu₂ +si-lu-ur-ma-a +ma-ku-ut +ga-bi-di +ta-har-ra-aṣ +... +MAŠ +{lu₂}TUR-MEŠ +tu-pa-har-ma +ki-a-am +i-qab-bu-u +... +i-qab-bu-u +I₃.NUN +u +I₃.GIŠ.SAG +1-niš +HE.HE +IGI-MIN-šu₂ +MAR-MEŠ +DU₃.DU₃.BI +... +šu-a-tu +ŠU.BI.GIN₇.NAM +EN₂ +... +še-me-ma +mu-uh₂-ra +{d}E₂-a +liš-ma-a +{d}E₂-a +lim-hu-ra +... +a-mur +nam-ra +i-ni +a-mur +bal-ṣa +i-ni +TU₆ +EN₂ +DU₃.DU₃.BI +... +7 +ŠU.SI +ha-še-e +TI-ma +EN₂ +an-ni-tu₂ +ŠID-nu +... +ina +{giš}IG +ina +ŠU-šu₂ +GAR-ma +GU₇ +... +x +PA +ma-ku-ut +ga-bi-di +e-ma +her-ṣi +ta-har-ra-aṣ +... +NUNDUM-šu₂ +u₃ +...-ma +ina-eš +... +x +GI +mi-na-ta +... +x +x +x +... +PA +ŠE.SA.A +... +DILIM₂ +A.BAR₂ +GIN₇ +NIG₂.SILA₁₁.GA₂ +GAR-nu +{šim}LI +{šim}GUR₂.GUR₂ +U₂ +... +GAZI{sar} +NAGA.SI +ZA₃.HI.LI +U₂ +a-ši-i +PIŠ₁₀-{d}ID₂ +UH₂-{d}ID₂ +ESIR +... +I₃.UDU +ELLAG₂ +GU₄ +1-niš +ta-sak₃ +ana +ŠA₃ +A.BAR₂ +ŠUB-ma +ŠU.SI +MAR +te-qi₂-tu +ša-lim-tu +ša +ŠU +UM.ME.A +la-te-ek +ba-ri +GAZI{sar} +ZA₃.HI.LI +{u₂}KUR.KUR +{u₂}MAŠ.TAB.BA +{šim}GUR₂.GUR₂ +DUH.LAL₃ +U₂.KUR.RA +I₃.UDU +{šim}GIG +NUMUN +{šim}LI +9 +U₂.HI.A +rib-ku +ša +IGI-MIN +{u₂}KUR.RA +sah-le₂-e +GAZI{sar} +{u₂}NU.LUH.HA +{u₂}KUR.KUR +{u₂}MAŠ.TAB.BA +kam-mu +{šim}GUR₂.GUR₂ +{u₂}HAR.HAR +ina +DE₃ +ŠEG₆-šal +ina +I₃.GIŠ +u +DUH.LAL₃ +BABBAR +SUD₂ +9 +U₂.HI.A +ša +nap-šal-ti +lu-ub-ki +{u₂}KUR.RA +{u₂}KUR.KUR +GAZI{sar} +{u₂}MAŠ.TAB.BA +{šim}SES +NUMUN +{šim}LI +kam-mu +ša₂ +AŠGAB +7 +U₂.HI.A +rib-ku +ša +IGI.MIN +ina +NE +ta-qal-lu +ina +I₃.UDU +GAB.LAL₃ +u +I₃.NUN +SUD₂ +IGI-MIN-šu₂ +MAR +{na₄}AN.ZAH.GE₆ +tuš-ku +{na₄}as-har +{na₄}mu-ṣa +NAGA.SI +{šim}GUR₂.GUR₂ +U₂ +BABBAR +ZA₃.HI.LI +kam-mu +PIŠ₁₀-{d}ID₂ +I₃.UDU +GU₄ +A.GAR₅ +DILIM₂ +A.BAR₂ +ŠU +{lu₂}A.ZU +AN.ZAH.GE₆ +PIŠ₁₀-{d}ID₂ +ku-up-ra +... +{u₂}GAMUN.GE₆ +GAZI{sar} +ZA₃.HI.LI +... +I₃.UDU +GU₄ +I₃.UDU +GIR₃.PAD.DU +... +it-qur-ti +IR +... +{šim}GUR₂.GUR₂ +... +DIŠ +x +x +x +x +... +UD-ma +DU₃-šu₂ +... +{u₂}ak-tam +SUD₂ +ina +KAŠ +ŠEG₆ +x +... +BABBAR.HI{sar} +ta-sak₃ +LAL +{giš}si-ha +{giš}ar-ga-nu +... +I₃.UDU +ELLAG₂ +SA₅ +ina +UD.DA +ŠUB +i-na +DILIM₂ +A.BAR₂ +SUD₂ +IGI-MIN-šu₂ +MAR +DIŠ +NA +IGI-MIN-šu₂ +GIG-ma +u₃ +DUL +{šim}ŠE.LI +... +su-pa-la +SIG₇-su +ina +A.MEŠ +LUH-si +LAL-id +GURUN +{u₂}UKUŠ₂.LAGAB +U₂-BABBAR +SUD₂ +... +IGI-MIN-šu₂ +te-qi₂ +DIŠ +NA +IGI-MIN-šu₂ +GIG-ma +UD-MEŠ +ma-ʾ-du-ti +NU +BAD +ina +KUM₂ +SAG.DU-su +SAR-ab +ina +UD-me +3-šu₂ +NIG₂.SILA₁₁.GA₂ +tu-kaṣ₃-ṣa +ina +I₃.NUN +DILIM₂ +A.BAR₂ +ta-sak₃ +IGI-MIN-šu₂ +te-qi₂-ma +ina-eš +DIŠ +NA +IGI.MIN-šu₂ +ta-bi-la₁₂ +GIG +SUM.SIKIL-la +u₂-haš-ša₂ +ina +KAŠ +NAG +I₃.GIŠ +ana +ŠA₃ +IGI-MIN-šu₂ +MAR-ru-ma +... +ZI₃ +NA₄ +ZU₂.LUM.MA +tur-ar₂ +SUD₂ +ina +A +GAZI{sar} +ta-la-aš +tu-kap-pat +la-a-am +pa-tan +u₂-al-lat +BIL.ZA.ZA +SIG₇ +ta-ṣa-lip +ZI₂-su +ina +I₃.NUN +HE.HE +IGI-MIN-šu₂ +te-qi₂ +5 +SILA₄(KISAL) +ZI₃ +GU₂.GAL +6 +SILA₄(KISAL) +ZI₃ +GAZI{sar} +5 +GIN₂ +ZA₃.HI.LI +ina +A +GAZI{sar} +SILA₁₁-aš +SAG.KI-šu₂ +IGI-MIN-šu₂ +LAL +EN₂ +... +x +x +i-ru-pu +e-gu-ma +... +e-li +A +... +... +... +... +... +DIŠ +NA +IGI-MIN-šu₂ +MUD₂ +DIRI-ma +ur-ra +u +GE₆ +la +i-ṣal-lal-ma +... +šum₄-ma +ŠA₃ +IGI-MIN-šu₂ +SA₅ +IGI-MIN-šu₂ +DUL-ma +GAZI{sar} +tur-ar₂ +... +ŠURUN +UDU +ina +GA +{munus}U₂.ZUG₂ +SILA₁₁-aš +LAL-id +ina +še-ri₃ +DU₈-šu₂-ma +{na₄}as₃-har +ina +I₃.NUN +SUD₂ +IGI.MIN-šu₂ +MAR +... +SUHUŠ +U₂ +ra-pa-di +ina +GIR₂ +ZABAR +KUD-iṣ +DUR +{sig₂}HE₂.MED +u +SIG₂ +BABBAR +NIGIN-mi +tara-kas₃ +SAG.KI-MEŠ-šu₂ +ki-lal₂-tan +... +... +E₃-ma +IGI-MIN-šu₂ +te-eq-qi₂ +DIŠ +NA +IGI.MIN-šu₂ +MUD₂ +šu-un-nu-ʾa +NUMUN +{giš}NIG₂.GAN₂.GAN₂ +LAL₃-KUR.RA +SAHAR.KU₃.GI +HE.HE +... +1 +GIN₂ +U₅.ARGAB{mušen} +SA₉ +SILA₄(KISAL) +U₂-BABBAR +IGI.6.GAL₂.LA +{mun}eme-sal-li₃ +ina +I₃.NUN +SUD₂ +IGI.MIN-šu₂ +MAR +U₂.BABBAR +ta-bi-la₁₂ +ana +ŠA₃ +IGI.MIN-šu₂ +MAR-ru +ŠIM.BI.SIG₇.SIG₇ +ina +I₃.NUN +... +ŠE₁₀ +EME.ŠID +ina +I₃.UDU +GIR₃.PAD.DU +LUGUD₂.DA +SUD₂ +la +pa-tan +... +5 +ŠE +U₂.BABBAR +ina +I₃.GIŠ +SUD₂ +IGI.MIN-šu₂ +MAR +U₅.ARGAB{mušen} +ina +I₃.NUN +SUD₂ +IGI.MIN-šu₂ +MAR +DIŠ +NA +IGI.MIN-šu₂ +MUD₂ +DIRI +ŠIM.BI.SIG₇.SIG₇ +ina +I₃.NUN +SUD₂ +MAR +{u₂}IN.NU.UŠ +{u₂}tar-muš₈ +mal-ma-liš +HE.HE +ina +I₃.NUN +ni-kip-tu₄ +NITA₂ +u +MUNUS +SUD₂ +IGI.MIN-šu₂ +MAR +... +IGI.MIN-šu₂ +MAR +... +ana +ŠA₃ +IGI.MIN-šu₂ +ta-zar-ri +... +ZA₃.HI.LI{sar} +U₂ +a-ši-i +... +x +ina +um-ma-tu +ina +A +GAZI{sar} +LUH +... +ta-bi-la₁₂ +ta-ṭe-ep-pi +DIŠ +NA +... +x +u +I₃.GIŠ +SUD₂ +te-te-ne₂-eq-qi₂ +DIŠ +KIMIN +... +x +x +SUD₂ +MAR-MEŠ +DIŠ +KIMIN +... +U₂.BABBAR +ta-bi-la₁₂ +ana +ŠA₃ +IGI.MIN-šu₂ +MU₂-ah +DIŠ +NA +IGI.MIN-šu₂ +GIG +... +{u₂}EME.UR.GI₇ +{u₂}IN₆.UŠ +ina +ZI₃.KUM +HE.HE +ina +GEŠTIN +NAG +U₂.BABBAR +... +{na₄}as-har +ina +I₃.NUN +SUD₂ +te-qi₂ +DIŠ +NA +IGI.MIN-šu₂ +GIG +... +x-šu₂ +pa-na +pa-ni +GAR-an +tara-kas₂ +... +{na₄}as-har +ina +I₃.NUN +SUD₂ +MAR +DIŠ +NA +IGI.MIN-šu₂ +šik-na +ša₂ +MUD₂ +šak-na +U₂.BABBAR +U₅.ARGAB{mušen} +{mun}eme-sal-li₃ +{u₂}KUR.RA +{u₂}KUR.KUR +{šim}GUR₂.GUR₂ +I₃.UDU +{šim}GIG +7 +U₂.HI.A +an-nu-ti +1-niš +ta-mar-raq +ina +ZI₂ +UDU.NITA₂ +... +ina +A +GAZI{sar} +ta-sa-pan +IGI.MIN-šu₂ +MAR +3 +GIN₂ +U₅.ARGAB{mušen} +SA₉ +GIN₂ +U₂.BABBAR +ina +LAL₃.KUR.RA +SUD₂ +IGI.MIN-šu₂ +MAR +an-nu-u +šam-mi +UD.20.KAM₂ +EN₂ +ib-da-du +numun +... +ina +ki-i-ri +ba-la-ṭi +ba-la-ṭi +na-ap-ši-ir +ba-la-ṭi₃ +na-ap-ši-ir +ba-ʾ-la-at +ina +it-ti +a-ma-lik +... +MUNUS +NU +U₃.TU +ak+la₂ +me-ṣa +ma-a-du +TU₆.EN₂ +KA.INIM.MA +IGI.MIN-šu₂ +MUD₂ +DIRI.MEŠ +DU₃.DU₃.BI +SUHUŠ +{u₂}HA +SAHAR +x +{u₂}ZA.GIN₃.NA +tara-kas₂ +14 +KA.KEŠDA +KEŠDA +e-ma +KEŠDA +EN₂ +ŠID-nu +ina +SAG.KI-šu₂ +tara-kas₂ +EN₂ +hu-ha-hi +la +ba-ma +hu-ha-hi +la +ba-ma +u +A.GA.AŠ₂.GA +TIL.LA +A.GA.AŠ₂.GA +TIL.LA +TU₆.EN₂ +KA.INIM.MA +DIŠ +NA +IGI.MIN-šu₂ +MUD₂ +DIRI.MEŠ +DU₃.DU₃.BI +{na₄}as₂-har +ina +I₃.NUN +SUD₂ +ana +ŠA₃ +IGI.MIN-šu₂ +ŠUB +EN₂ +igi +ti-la +a-ga +ti-la +geštu +kun₂-na +a-ga +kun₂-na +u₂-hu-ur-sag-gi-na-ta +ša-hi +šur-ra-ta +kuš-ri-in +kuš-ri-in-ni +še-e-ru +še-e-ra +e-kal +da-mu +da-ma +i-na-ṣab +SA-a-nu +SA-a-nu +u₂-qa-an-na-an +ŠUB-di +{d}gu-la +TU₆ +TI.LA +en-qu-ti +ṣi-im-de-ti +li-qer-ri-bu +at-ti +taš-kun +ba-laṭ +bu-ul-ṭi₂ +TU₆.EN₂.E₂.NU.RU +KA.INIM.MA +DIŠ +NA +IGI.MIN-šu₂ +MUD₂ +DIRI.MEŠ +KID₃.KID₃.BI +3 +ŠE +NAGA.SI +3 +ŠE +ILLU +LI.TAR +3 +ŠE +ŠE₁₀ +EME.ŠID +1-niš +SUD₂ +ina +GA +UD₅ +tara-bak +IGI.MIN-šu₂ +LAL +DIŠ +NA +IGI.MIN-šu₂ +GIG-ma +MUD₂ +DIRI +{šim}BULUH.HI.A +MUD₂ +ul-ta-ta-ni-ʾa +MUD₂ +ER₂ +ina +ŠA₃ +IGI.MIN-šu₂ +E₃-a +GISSU +{d}LAMA +IGI.MIN-šu₂ +u₂-na-kap +a-ši-tu +ana +GISSU +GUR +di-gal₉ +DUGUD-šu₂ +{giš}ŠINIG +SIG₇-su +tu-ha-sa +ina +A.GEŠTIN.NA +KALA.GA +tara-muk +ina +UL +tuš-bat +ina +A₂.GU₂.ZI.GA +ana +ŠA₃ +hu-li-ia-am +SUR-at +IM.SAHAR.BABBAR.KUR.RA +U₂.BABBAR +{mun}eme-sal-li₃ +I₃.UDU +tuš-ka-a +{u₂}zi-ba-a +ILLU +URUDU +a-he-nu-u₂ +SUD₂ +mal₂-ma-liš +TI-qe₂ +1-niš +tuš-te-mid +ana +ŠA₃ +hu-li-ia-am +ša +ta-aš₂-hu-tu +DUB-ak +ina +I₃.NUN +u +{na₄}ŠU.MIN₃ +SILA₁₁-aš-ma +SAG +IGI.MIN-šu₂ +ina +ŠU.SI +BAD-te +ana +ŠA₃ +IGI.MIN-šu₂ +GAR-an +IGI.MIN-šu₂ +DUL-ma +u₂-kal +IGI.MIN-šu₂ +ta-kar-ma +UD.9.KAM +an-na-a +DU₃.MEŠ +DIŠ +KIMIN +{šim}SES +U₂.BABBAR +{mun}eme-sal-li₃ +ina +MUD +ZABAR +ana +ŠA₃ +IGI.MIN-šu₂ +BUN₂ +DIŠ +NA +MIN +ILLU +URUDU +U₂.BABBAR +SUD₂ +ina +MUD +ZABAR +ana +ŠA₃ +IGI.MIN-šu₂ +BUN₂ +DIŠ +NA +MIN +{u₂}ur₂-ne₂-e +U₂.BABBAR +SUD₂ +ina +MUD +ZABAR +ana +ŠA₃ +IGI.MIN-šu₂ +BUN₂ +EN₂ +igi +bar +igi +bar-bar +igi +bar-ra +bar-bar +igi +huš +igi +huš-huš +igi +bar-ra +huš-huš +igi +bar +na₂-a +igi +bar +da-a +igi +bar +hul-a +IGI.MIN +a-ba-tu +IGI.MIN +a-ša-tu +... +šu-har-ra-te +IGI.MIN +GIN₇ +nik-si +UDU.NITA₂ +MUD₂ +še-en-a +GIN₇ +A.MEŠ +ša₂ +a-gala-pe-e +a-la-pa-a +ŠUB-a +ki-ma +DUG +A.GEŠTIN.NA +ŠUB-a +ṣil-la +ina +be-ri-ši-na +pi-ti-iq-tu₄ +pat-qat +KU₄-ub +{d}GIR₃ +ina +be-ru-ši-na +it-ta-di +{giš}GU.ZA-šu₂ +aš₂-šum₂ +an-ni-tu +ina +ŠA₃ +an-ni-te +la +na-pa-še +EN₂ +ul +ia-at-tu-un +EN₂ +{d}e-a +u +{d}asal-lu₂-hi +EN₂ +{d}da-mu +u +{d}gu-la +EN₂ +{d}nin-girima₃ +be-let +šip-te +{d}gu-la +TI-ma +NIG₂.BA-ki +TI +TU₆.EN₂ +KA.INIM.MA +IGI +GIG.GA.A.KAM₂ +DU₃.DU₃.BI +an-nu-u₂ +ša +SIG₂ +BABBAR +DUR +NU.NU +7 +KA.KEŠDA +KEŠDA +e-ma +KEŠDA +EN₂ +ŠID-nu +ina +IGI-šu₂ +TI.LA-ti +KEŠDA-su +EN₂ +igi +bar +igi +bar-bar +igi +bar-ra +bar-bar +igi +huš +igi +huš +igi +bar-ra +huš-huš +igi +bar +na₂-a +igi +bar +da-a +igi +bar +hul-a +IGI.MIN +a-ba-a-tu +IGI.MIN +a-ša-tu +IGI.MIN +ša +MUD +DIRI-a +ana-ku +... +x +50 +NA +50 +sa-niq +qa₂-bu-u₂ +ša₂ +{d}gu-la +2-ma +ši-na-ma +ah-ha-a-tu₄ +ina +be₂-ru-ši-na +pa-rik +KUR-u₂ +man-na +lu-uš-pur +ana +DUMU.MUNUS +{d}a-nim +ša₂ +AN-e +liš-ša₂-ni +tal-li-ši-na +{na₄}NIR₂ +DUG.MEŠ-ši-na +{na₄}ZA.GIN₃ +eb-bu +li-sa-pa-a-ni +A.MEŠ +A.AB.BA +ta-ma-ti +DAGAL-ti +ša +ha-riš-tu +la +u₂-ri-du +a-na +lib₃-bi +mu-suk-ka-tu +la +LUH-u +qa-te-ša₂ +lim-la-ni-im-ma +li-ke-eṣ-ṣa-a +KUM₂ +ṣi-ri-ih-tu +ša₂ +ŠA₃ +IGI.MIN-šu₂ +EN₂ +ul +ia-at-tu-un +EN₂ +{d}40 +u +{d}asal-lu₂-hi +EN₂ +{d}da-mu +u +{d}gu-la +EN₂ +{d}nin-girima₃ +be-let +šip-te +{d}gu-la +TI.LA-ma +NIG₂.BA-ki +TI-i +TU₆.EN₂ +KA.INIM.MA +IGI +GIG.GA.A.KAM₂ +DU₃.DU₃.BI +an-nu-u₂ +ša +SIG₂ +SA₅ +DUR +NU.NU +7 +KA.KEŠDA +KEŠDA +e-ma +KEŠDA +EN₂ +ŠID-nu +ina +IGI-šu₂ +GIG-ti₃ +KEŠDA +EN₂ +igi +bar +igi +bar-bar +igi +bar-ra +bar-bar +igi +huš +igi +huš-huš +igi +bar-ra +huš-huš +igi-bar +na₂-a +igi-bar +da-a +igi-bar +hul-a +IGI.MIN +a-pa-tu +IGI.MIN +a-ša-tu +IGI.MIN +pur-sit₂ +MUD₂ +šu-te-eṣ-li-pa-a-tu +am-min₃ +tab-ba-a +am-min₃ +taš-ša₂-a +am-mi₃-ni +ik-kal-ki-na-ši +ba-a-ṣu +ša +na-a-ri +tal-tal-lu-u₂ +ša₂ +{giš}GIŠIMMAR +ša₂ +ti-it-tu +ni-iq-qa-ša₂ +ša₂ +a-ri-i +IN.NU-šu +al-si-ki-na +al-ka-ni +ul +al-si-ki-na-ši +ul +ta-la-ka-ni +la-am +it-ba-ki-na-ši +IM.1 +IM.2 +IM.3 +IM.4 +EN₂ +KA.INIM.MA +IGI +GIG.GA.KAM₂ +DU₃.DU₃.BI +SIG₂ +SA₅ +SIG₂ +BABBAR +a-he-en-na-a +NU.NU +7 +u +7 +KA.KEŠDA +KEŠDA +e-ma +KEŠDA +EN₂ +ŠID-nu +DUR +SIG₂ +SA₅ +ina +IGI-šu₂ +GIG-ti₃ +KEŠDA +DUR +SIG₂ +BABBAR +ina +IGI-šu₂ +TI.LA +KEŠDA-ma +ina-eš +EN₂ +igi +bar +igi +bar-bar +igi +bar-ra +bar-bar +igi +hul +igi +hul-hul +igi +bar-ra +hul-hul +ši-it-ta-ši-na +DUMU.MUNUS +{d}a-ni +ina +be-ru-ši-na +pi-tiq-tu₄ +pat-qat +ul +il-lak +a-ha-tu +a-na +le-et +a-ha-ti-ša₂ +man-na +lu-uš-pur +a-na +DUMU.MUNUS +{d}a-ni₃ +ša₂ +AN-e +liš-ša₂-ni +kan-ni-ši-na +{na₄}NIR₂ +DUG.MEŠ-ši-na +{na₄}ZA.GIN₃.DURU₅ +eb-bu +li-is-sa-pa-ni-im-ma +li-be-la-a +IGI.MIN +a-ba-ti +IGI.MIN +a-ša₂-ti +u₃ +dal-ha-a-ti +TU₆.EN₂ +KA.INIM.MA +IGI +GIG.GA.A.KAM₂ +DU₃.DU₃.BI +ŠU.BI.GIN₇.NAM +EN₂ +igi +bar +igi +bar-bar +igi +bar-ra +bar-bar +igi +suh₃ +igi +suh₃-suh₃ +igi +bar-ra +suh₃-suh₃ +ši-it-ta +i-nu +a-ha-tu +ši-na-ma +ina +be-ru-ši-na +KUR-u₂ +pa-rik-ma +UGU-nu-ši-na +ki-ṣir-tu +kaṣ₃-rat +KI.TA-nu-ši-na +pi-tiq-tu₂ +pat-qat +a-a-u₂ +IM-ši-na-a-ma +a-a-u₂ +NU +IM-ši-na-ma +a-a-u₂ +IM +ti-bi-ši-na +a-a-u₂ +la-a +IM +ti-bi-ši-na-ma +ša-ar +pa-ni +i-kil₂ +pa-ni +ṣu-lu-um +pa-ni +at-ta +pu-ṭur +{d}AMAR.UTU +TU₆.EN₂ +KA.INIM.MA +IGI +GIG.GA.A.KAM₂ +DU₃.DU₃.BI +ŠU.BI.GIN₇.NAM +EN₂ +igi +bar +igi +bar-bar +x +... +... +x +DU₃.DU₃.BI +... +a-he-en-na-a +NU.NU +... +ina +SAG.KI-šu₂ +KEŠDA-su +EN₂ +... +x +IGI +NU +TUK-a +TU₆.EN₂ +DU₃.DU₃.BI +... +ina +SAG.KI-šu₂ +ša₂ +ZAG +EN₂ +... +ta-ma-ad-ra-aš₂ +ta-ma-ad-ra-aš₂ +tu₆-en₂ +DU₃.DU₃.BI +... +ina +SAG.KI-šu₂ +ša₂ +GUB₃ +KA.INIM.MA +IGI +GIG.GA.KAM₂ +DU₃.DU₃.BI +ŠU.BI.GIN₇.NAM +EN₂ +... +gub-ba-a +gub-ba-a +{d}AMAR.UTU +ip-pa-lis-su-ma +ana +{d}e₂-a +AD-šu₂ +i-ša₂-as-si +mi-na-a +e-pu-uš +ul +i-di +ša +ana-ku +i-du-u +at-ta +ti-di +TU₆.EN₂ +DU₃.DU₃.BI +SIG₂ +SA₅ +SIG₂ +BABBAR +1-niš +NU.NU +7 +u +7 +KA.KEŠDA +KEŠDA +e-ma +KEŠDA +EN₂ +ŠID-nu +ina +SAG.KI.MEŠ-šu₂ +KEŠDA-ma +ina-eš +EN₂ +i-gi +ti-la +a-ga +ti-la +i-gi +kun₂-na +a-ga +kun₂-na +ur-sag +gi-na-zu +gi +ban₃-da-zu +tu₆-en₂ +KA.INIM.MA +IGI +GIG.GA.A.KAM₂ +DU₃.DU₃.BI +ŠU.BI.GIN₇.NAM +EN₂ +pa-la +huš +pa-la +huš +pa-la +huš-bi +nig₂-gi-na-bi +i-gi +pa-la +huš-bi +tu₆-en₂ +KA.INIM.MA +IGI +GIG.GA.A.KAM₂ +DU₃.DU₃.BI +ŠU.BI.AŠ.AM₃ +EN₂ +i-ni +eṭ-li +GIG-at +i-ni +{munus}KI.SIKIL +GIG-at +i-ni +GURUŠ +u +{munus}KI.SIKIL +man-nu +u₂-bal-liṭ +ta-šap-par₂ +i-le-qu-ni-ku +ŠA₃ +KU₃-ti +{giš}GIŠIMMAR +ina +pi-i-ka +te-he-pi +ina +ŠU-ka +te-pe-til +GURUŠ +u +KI.SIKIL +ina +SAG.KI.MEŠ-šu₂-nu +tu-ka-ṣar +IGI +GURUŠ +u +KI.SIKIL +i-bal-lu-uṭ +TU₆.EN₂ +KA.INIM.MA +IGI +GIG.GA.A.KAM₂ +DU₃.DU₃.BI +ŠU.BI.AŠ.BI.AM₃ +en₂ +an-na +im +ri-a +igi +lu₂-ka +gig-ga +ba-an-gar +ina +ša₂-me-e +ša₂-a-ru +i-zi-qam-ma +ina +i-in +LU₂ +si-im-me +iš-ta-kan +an-ta +su₃-da-ta +im +ri-a +igi +lu₂-ka +gig-ga +ba-an-gar +iš-tu +AN-e +ru-qu-ti +igi +gig-ga +gig-ga +ba-an-gar +... +i-ni +mar-ṣa-a-ti +si-im-ma +iš-ta-kan +lu₂-bi +igi-bi +lu₃-lu₃-a +igi-bi +ba-an-suh₃-suh₃ +ša₂ +LU₂ +šu-a-tu₂ +i-da-šu₂ +da-al-ha +ša₂ +i-na-šu₂ +a-ša₂-a +lu₂-u₁₈-lu-bi +ni₂-te-a-ni-še₃ +er₂ +gig +i₃-šeš₂-šeš₂ +LU₂ +šu-u₂ +ina +ra-ma-ni-šu₂ +mar-ṣi-iš +i-bak-ki +lu₂-bi +tu-ra-a-ni +{d}engur-ke₄ +igi +im-ma-an-si₃ +ša₂ +LU₂ +šu₂-a-tu₄ +mu-ru-us-su +{d}MIN +i-mur-ma +gazi{sar} +kum-ma₃ +šu +u₃-me-ti +ka-si-i +haš-lu-ti +le-qe₂-ma +tu₆-tu₆ +abzu-ta +u₃-me-ni-si₃ +ši-pat +ap-si-i +i-di-ma +igi +lu₂-ka +u₃-me-ni-kešda +i-ni +a-me-li +ru-kus-ma +{d}engur +lu₂ +šu +ku₃-ga-na +igi +lu₂-ba-ka +šu +tag-ga-ni-ta +{d}MIN +ina +ŠU-ša₂ +KU₃-ti +i-in +a-me-li₃ +ina +la-ba-ti-ša₂ +im +igi +lu₂-ka +su₃-su₃ +igi-bi-ta +ba-ra-an-e₃ +ša₂-a-ru₃ +ša₂ +i-in +a-me-li₃ +ud-du-pu +ina +i-ni-šu₂ +lit-ta-ṣi +KA.INIM.MA +IGI +GIG.GA.A.KAM₂ +EN₂ +i-nu +a-pa-tu₂ +i-nu +a-ša₂-tu₂ +i-nu +pur-si-in-di +da-a-mi +šu-har-ri-a-tu₄ +KU₃.GAN +U₅-ARGAB{mušen} +I₃.UDU +GIR₃.PAD.DA +LUGUD₂.DA +ša +UDU +... +SUD₂ +... +ŠIM.BI.KU₃.GI +SUD₂ +ina +{gi}SAG.KUD +ana +ŠA₃ +IGI-MIN-šu₂ +BUN₂ +kun-ša₂₅ +SAG.DU-su +KEŠDA +10 +SILA₄(KISAL) +I₃+GIŠ +SA₉ +SILA₄(KISAL#) +x +... +ana +SAG.DU-šu₂ +DUB-ak +... +UD.3.KAM@v +DU₃.DU₃-uš +ZA₃.HI.LI +tur-ar₂ +SUD₂ +... +x +DIŠ +NA +IGI-MIN-šu₂ +GIG +HENBUR₂ +ŠE.AM +SIG₇-su +NAGA-SI +SUD₂ +ina +A +GAZI{sar} +SILA₁₁-aš +IGI-MIN-šu₂ +LAL-id +{na₄}as₃-har +{na₄}tu-uš-ka-a +SUD₂ +ina +I₃.UDU +tu-tah-ha-ah +mal-ma-liš +SUD₂ +ina +I₃.NUN +HE.HE +IGI-MIN-šu₂ +MAR +DIŠ +NA +IGI-MIN-šu₂ +GIG +10 +SILA₄(KISAL) +I₃.GIŠ +ana +SAG-KI-MEŠ-šu₂ +ŠUB.MEŠ +šu-uh-ta +ša +AŠGAB +ina +KUŠ.EDIN +te-ser +ina +SAG-KI-MEŠ-šu₂ +LAL-id +ILLU +URUDU +{na₄}aš₂-har +ŠIM.BI.KU₃.GI +SUD₂ +ina +I₃.NUN +HE.HE +IGI-MIN-šu₂ +MAR.MEŠ-ma +TI +DIŠ +NA +IGI-MIN-šu₂ +GIG-ma +u +ha-an-ṭa +SAHAR.URUDU +ša +ŠEN.TUR +ina +I₃.NUN +SUD₂ +IGI-MIN-šu₂ +MAR +GIR₂-ZABAR +ina +A +LUH-si +SUM{sar} +ta-sak₃ +1-šu₂ +2-šu₂ +3-šu₂ +IGI-MIN-šu₂ +MAR +ZA₃.HI.LI +ina +šur-šum-me +KAŠ +SILA₁₁-aš +LAL +... +SAHAR.URUDU +ša +ŠEN.TUR +tur-ar₂ +GAZ +ina +I₃.NUN +SIG₅-te +ta-sak₃ +UD-ma +DU₃-šu₂ +... +IGI-MIN-šu₂ +te-qi₂ +... +ana +ŠA₃ +IGI-MIN-šu₂ +tu-na-tak₂ +{u₂}IN₆.UŠ₂ +SUD₂ +LAL +... +ba-ri-ra-ta₅ +ina +GA +ta-la₃-aš +LAL +... +ina +DILIM₂ +A.BAR₂ +SUD₂ +IGI-MIN-šu₂ +MAR +... +{šim}ŠE.LI +... +su-pa-la +SIG₇-su +ina +A.MEŠ +... +UKUŠ₂.LAGAB +U₂-BABBAR +x +... +te-qi₂ +... +IGI-MIN-šu₂ +GIG +... +ma-ʾ-du-ti +NU +BAD +ina +KUM₂ +... +SAG.DU-su +SAR-ab +... +NIG₂.SILA₁₁.GA₂ +tu-kaṣ₃-ṣa +... +ina +I₃.NUN +DILIM₂ +A.BAR₂ +ta-sak₃ +IGI-MIN-šu₂ +te-qi₂-ma +ina-eš +... +IGI-MIN-šu₂ +ta-bi-la₁₂ +GIG +SUM.SIKIL-la +u₂-haš-ša₂ +ina +KAŠ +NAG +I₃+GIŠ +ana +ŠA₃ +IGI-MIN-šu₂ +MAR-ru-ma +... +... +NA₄ +ZU₂.LUM.MA +tur-ar₂ +SUD₂ +ina +A +GAZI{sar} +ta-la-aš +tu-kap-pat +la-a-am +pa-tan +u₂-al-lat +BIL.ZA.ZA +SIG₇ +ta-ṣa-lip +ZI₂-su +ina +I₃.NUN +HE.HE +IGI-MIN-šu₂ +te-qi₂ +... +GU₂.GAL +6 +SILA₄(KISAL) +ZI₃ +GAZI{sar} +5 +GIN₂ +ZA₃.HI.LI +ina +A +GAZI{sar} +SILA₁₁-aš +SAG.KI-šu₂ +IGI-MIN-šu₂ +LAL +EN₂ +x +x +x +x +x +lal +a +sar +NUMUN +U₂ +x +x +x +e-ru-pu +e-gu-ma +x +x +x +e-li +A +3-šu₂ +DUG₄.GA +DIŠ +NA +... +GAZI{sar} +sah-le₂-e +{u₂}MAŠ.TAB +I₃.UDU +{šim}GIG +NUMUN +{šim}LI +kam-mu +... +ta-qal₃-lu +ina +I₃.NUN +I₃.UDU +ELLAG₂ +UDU.NITA₂ +GAB.LAL₃ +tuš-tab-bal +IGI-MIN-šu₂ +MAR +DIŠ +NA +IGI-MIN-šu₂ +... +IGI-MIN-šu₂ +GIG +U₅-ARGAB{mušen} +ina +I₃.NUN +SUD₂ +MAR +DIŠ +NA +IGI-MIN-šu₂ +GIG +... +DIŠ +NA +IGI-MIN-šu₂ +GIG +sah-le₂-e +ina +GA +ŠEG₆-šal +LAL +DIŠ +NA +IGI-MIN-šu₂ +MUD₂ +... +x +ri +šum₄-ma +ŠA₃ +IGI-MIN-šu₂ +SA₅ +IGI-MIN-šu₂ +DUL-ma +... +{munus}U₂.ZUG₂ +SILA₁₁-aš +LAL-id +ina +še-ri₃ +DU₈-šu₂-ma +... +ina +GIR₂ +ZABAR +KUD-iṣ +DUR +{sig₂}HE₂.MED +... +DIŠ +NA +IGI-MIN-šu₂ +MUD₂ +šu-un-nu-ʾa +... +1 +GIN₂ +U₅-ARGAB{mušen} +SA₉ +... +U₂-BABBAR +ta-bi-la₁₂ +ana +ŠA₃ +IGI-MIN-šu₂ +... +ŠE₁₀ +EME.ŠID +ina +I₃.UDU +GIR₃.PAD.DU +LUGUD₂.DA +... +5 +ŠE +U₂-BABBAR +ina +I₃.GIŠ +SUD₂ +IGI-MIN-šu₂ +MAR +... +DIŠ +NA +IGI-MIN-šu₂ +MUD₂ +DIRI +... +{u₂}IN₆.UŠ₂ +{u₂}tar-muš +mal-ma-liš +... +NA₄ +BAL +ina +UH₂ +SUD₂ +MAR +šim-bi-zi-da₄ +... +MUD₂ +ša +ŠA₃ +ŠAH +ana +ŠA₃ +IGI-MIN-šu₂ +tu-na-tak +... +3 +GIN₂ +U₅-ARGAB{mušen} +... +EN₂ +ib-da-gub +... +ina +ki-i-ri +ba-la-ṭi +ba-la-ṭi +na-ap-ši-ir +ba-la-ṭi₃ +na-ap-ši-ir +ba-ʾ-la-at +ina +it-ti +... +MUNUS +NU +U₃.TU +ak-la₂ +me-ṣa +ma-a-du +TU₆.EN₂ +KA.INIM.MA +IGI-MIN-šu₂ +MUD₂ +DIRI-MEŠ +DU₃.DU₃.BI +SUHUŠ +... +14 +KA.KEŠDA +KEŠDA +e-ma +KEŠDA +EN₂ +ŠID-nu +ina +SAG.KI-šu₂ +... +EN₂ +hu-ha-hi +la +ba-ma +hu-ha-hi +la +ba-ma +u +A.GA.AŠ₂.GA +TIL.LA +A.GA.AŠ₂.GA +TIL.LA +TU₆.EN₂ +KA.INIM.MA +DIŠ +NA +IGI-MIN-šu₂ +MUD₂ +DIRI-MEŠ +DU₃.DU₃.BI +{na₄}as₂-har +ina +I₃.NUN +SUD₂ +ana +ŠA₃ +IGI-MIN-šu₂ +ŠUB +EN₂ +igi +ti-la +a-ga +ti-la +geštu +kun₂-na +a-ga +kun₂-na +u₂-hu-ur-sag-gi-na-ta +ša-hi +šur-ra-ta +kuš-ri-in +kuš-ri-in-ni +še-e-ru +še-e-ra +e-kal +da-mu +da-ma +i-na-ṣab +SA-a-nu +SA-a-nu +u₂-qa-an-na-an +ŠUB-di +{d}gu-la +TU₆ +TI.LA +en-qu-ti +ṣi-im-de-ti +li-qer-ri-bu +at-ti +taš-ku-ni +ba-laṭ +bu-ul-ṭi +TU₆.EN₂.E₂.NU.RU +KA.INIM.MA +DIŠ +NA +IGI-MIN-šu₂ +MUD₂ +DIRI-MEŠ +KID₃.KID₃.BI +3 +ŠE +NAGA-SI +3 +ŠE +ILLU +LI.TAR +3 +ŠE +ŠE₁₀ +EME.ŠID +1-niš +SUD₂ +ina +GA +UD₅ +tara-bak +IGI-MIN-šu₂ +LAL +DIŠ +NA +IGI-MIN-šu₂ +GIG-ma +MUD₂ +DIRI +{šim}BULUH-HI.A +MUD₂ +ul-ta-ta-ni-ʾa +MUD₂ +ER₂ +ina +ŠA₃ +IGI-MIN-šu₂ +E₃-a +GISSU +{d}LAMA +IGI-MIN-šu₂ +u₂-na-kap +a-ši-tu +ana +GISSU +GUR +di-gal₉ +DUGUD-šu₂ +{giš}ŠINIG +SIG₇-su +tu-ha-sa +ina +A.GEŠTIN.NA +KALA.GA +tara-muk +ina +UL +tuš-bat +ina +A₂.GU₂.ZI.GA +ana +ŠA₃ +hu-li-ia-am +SUR-at +IM.SAHAR.BABBAR.KUR.RA +U₂-BABBAR +{mun}eme-sal-li₃ +I₃.UDU +tuš-ka-a +{u₂}zi-ba-a +ILLU +URUDU +a-he-nu-u₂ +SUD₂ +mal₂-ma-liš +TI-qe₂ +1-niš +tuš-te-mid +ana +ŠA₃ +hu-li-ia-am +ša +ta-aš₂-hu-tu +DUB-ak +ina +I₃.NUN +u +{na₄}ŠU.MIN₃ +SILA₁₁-aš(NU#)-ma +SAG +IGI-MIN-šu₂ +ina +ŠU.SI +BAD-te +ana +ŠA₃ +IGI-MIN-šu₂ +GAR-an +IGI-MIN-šu₂ +DUL-ma +u₂-kal +IGI-MIN-šu₂ +ta-kar-ma +UD.9.KAM₂ +an-na-a +DU₃-MEŠ +DIŠ +KIMIN +{šim}SES +U₂-BABBAR +{mun}eme-sal-li₃ +ina +MUD +ZABAR +ana +ŠA₃ +IGI-MIN-šu₂ +BUN₂ +DIŠ +NA +MIN +ILLU +URUDU +U₂-BABBAR +SUD₂ +ina +MUD +ZABAR +ana +ŠA₃ +IGI-MIN-šu₂ +BUN₂ +DIŠ +NA +MIN +{u₂}ur₂-ne₂-e +U₂-BABBAR +SUD₂ +ina +MUD +ZABAR +ana +ŠA₃ +IGI-MIN-šu₂ +BUN₂ +EN₂ +igi +bar +igi +bar-bar +igi +bar-ra +bar-bar +igi +huš +igi +huš-huš +igi +bar-ra +huš-huš +igi +bar +na₂-a +igi +bar +da-a +igi +bar +hul-a +IGI-MIN +a-ba-tu +IGI-MIN +a-ša-tu +... +šu-har-ra-tu₂ +IGI-MIN +GIN₇ +nik-si +UDU.NITA₂ +MUD₂ +še-en-a +GIN₇ +A.MEŠ +ša₂ +a-gala-pe-e +a-la-pa-a +ŠUB-a +ki-ma +DUG +A.GEŠTIN.NA +ŠUB-a +ṣil-la +ina +be-ri-ši-na +pi-ti-iq-tu₄ +pat-qat +KU₄-ub +{d}GIR₃ +ina +be-ru-ši-na +it-ta-di +{giš}GU.ZA-šu₂ +aš₂-šum₂ +an-ni-tu +ina +ŠA₃ +an-ni-te +la +na-pa-še +EN₂ +ul +ia-at-tu₂-un +EN₂ +{d}e-a +u +{d}asal-lu₂-hi +EN₂ +{d}da-mu +u +{d}gu-la +EN₂ +{d}nin-girima₃ +be-let +EN₂ +{d}gu-la +TI.LA-ma +NIG₂.BA-ki +TI +TU₆.EN₂ +KA.INIM.MA +IGI +GIG.GA.A.KAM₂ +DU₃.DU₃.BI +an-nu-u +ša +SIG₂ +BABBAR +DUR +NU.NU +7 +KA.KEŠDA +KEŠDA +e-ma +KEŠDA +EN₂ +ŠID-nu +ina +IGI-šu₂ +TI.LA-ti +KEŠDA-su +EN₂ +... +igi +huš-huš +igi +bar-ra +... +... +IGI-MIN +a-pa-tu₂ +IGI-MIN +a-ša₂-tu₂ +IGI-MIN +ša +MUD +DIRI-a +ana-ku +... +sa-niq +qa₂-bu-u₂ +ša₂ +{d}gu-la +2-ma +ši-na-ma +ah-ha-a-tu₄ +ina +be₂-ru-ši-na +pa-rik +KUR-u₂ +man-na +lu-uš-pur +ana +DUMU.MUNUS +{d}a-nim +ša₂ +AN-e +liš-ša₂-a-ni +tal-li-ši-na +{na₄}NIR₂ +DUG.MEŠ-ši-na +{na₄}ZA.GIN₃ +eb-bu +li-sa-pa-a-ni +A.MEŠ +A.AB.BA +tam-ti₃ +DAGAL-te +ša +ha-riš-tu +la +u₂-ri-du +ana +lib₃-bi +mu-suk-ka-tu₂ +la +LUH-u +qa-ti-ša₂ +lis-la-ni-im-ma +li-ke-eṣ-ṣa-a +KUM₂ +ṣi-ri-ih-tu₂ +ša₂ +ŠA₃ +IGI-MIN-šu₂ +EN₂ +ul +ia-at-tu-un +EN₂ +{d}40 +u +{d}asal-lu₂-hi +EN₂ +{d}da-mu +u +{d}gu-la +EN₂ +{d}nin-girima₃ +be-let +šip-te +{d}gu-la +TI.LA-ma +NIG₂.BA-ki +TI-i +TU₆.EN₂ +KA.INIM.MA +IGI +GIG.GA.A.KAM₂ +DU₃.DU₃.BI +an-nu-u +ša +SIG₂ +SA₅ +DUR +NU.NU +7 +KA.KEŠDA +KEŠDA +e-ma +KEŠDA +EN₂ +ŠID-nu +ina +IGI-šu₂ +GIG-ti₃ +KEŠDA +EN₂ +igi +bar +igi +... +bar-ra +bar-bar +igi +huš +igi +huš-huš +igi +bar-ra +huš-huš +igi +bar +na₂-a +... +igi +bar +hul-a +IGI-MIN +a-pa-tu +IGI-MIN +a-ša-tu +IGI-MIN +pur-sit₂ +MUD₂ +šu-te-eṣ-li-pa-a-tu +am-min₃ +tab-ba-a +am-min₃ +taš-ša₂-a +am-mi₃-ni +ik-kal-ki-na-ši +ba-a-ṣu +ša +na-a-ri +tal-tal-lu-u₂ +ša₂ +{giš}GIŠIMMAR +ša₂ +ti-it-tu +ni-iq-qa-ša +ša₂ +a-ri-i +IN.NU-šu +al-si-ki-na-ši +al-ka-ni +ul +al-si-ki-na-ši +ul +ta-la-ka-ni +la-am +it-ba-ki-na-ši +IM.1 +IM.2 +IM.3 +IM.4 +EN₂ +KA.INIM.MA +IGI +GIG.GA.KAM₂ +DU₃.DU₃.BI +SIG₂ +SA₅ +SIG₂ +BABBAR +a-he-en-na +NU.NU +7 +u +7 +KA.KEŠDA +KEŠDA +e-ma +KEŠDA +EN₂ +ŠID-nu +DUR +SIG₂ +SA₅ +ina +IGI-šu₂ +GIG-ti₃ +KEŠDA +DUR +SIG₂ +BABBAR +ina +IGI-šu₂ +TI.LA +KEŠDA-ma +ina-eš +EN₂ +igi +bar +igi +bar-bar +igi +bar-ra +bar-bar +... +hul-hul +igi +bar-ra +... +ši-it-ta-ši-na +DUMU.MUNUS +{d}a-ni +ina +be-ru-ši-na +pi-tiq-tu₄ +pat-qat +ul +il-lak +a-ha-tu +a-na +le-et +a-ha-ti-ša₂ +man-na +lu-uš-pur +a-na +DUMU.MUNUS +{d}a-ni₃ +ša₂ +AN-e +liš-ša₂-a-ni +kan-ni-ši-na +{na₄}NIR₂ +DUG.MEŠ-ši-na +{na₄}ZA.GIN₃.DURU₅ +eb-bu +li-is-sa-pa-ni-im-ma +li-be-la-a +IGI-MIN +a-ba-tu₂ +IGI-MIN +a-ša₂-ti +u₃ +dal-ha-a-ti +TU₆.EN₂ +KA.INIM.MA +IGI +GIG.GA.A.KAM₂ +DU₃.DU₃.BI +ŠU.BI.GIN₇.NAM +EN₂ +igi +bar +igi +bar-bar +igi +bar-ra +bar-bar +igi +suh₃ +igi +suh₃-suh₃ +igi +bar-ra +suh₃-suh₃ +ši-it-ta +i-nu +a-ha-tu +ši-na-ma +ina +be-ru-ši-na +KUR-u₂ +pa-rik-ma +UGU-nu-ši-na +ki-ṣir-tu +kaṣ₃-rat +KI.TA-nu-ši-na +pi-tiq-tu₂ +pat-qat +a-a-u₂ +IM-ši-na-a-ma +a-a-u₂ +NU +IM-ši-na-ma +a-a-u₂ +IM +ti-bi-ši-na +a-a-u₂ +la-a +IM +ti-bi-ši-na-ma +KA.INIM.MA +IGI +GIG.GA.KAM₂ +DU₃.DU₃.BI +ŠU.BI.GIN₇.NAM +EN₂ +... +gin₇ +a +a-lal-la +er₂ +gub-ba-a +gub-ba-a +{d}AMAR.UTU +ip-pa-lis-su-ma +ana +{d}e₂-a +AD-šu₂ +i-ša₂-as-si +mi-na-a +e-pu-uš +ul +i-di +ša +ana-ku +i-du-u +at-ta +ti-di +TU₆.EN₂ +KA.INIM.MA +IGI +GIG.GA.KAM₂ +DU₃.DU₃.BI +SIG₂ +SA₅ +SIG₂ +BABBAR +1-niš +NU.NU +7 +u +7 +KA.KEŠDA +KEŠDA +e-ma +KEŠDA +EN₂ +ŠID-nu +ina +SAG.KI-MEŠ-šu₂ +KEŠDA-ma +ina-eš +EN₂ +i-gi +ti-la +a-ga +ti-la +i-gi +kun₂-na +a-ga +kun₂-na +ur-sag +gi-na-zu +gi +ban₃-da-zu +tu₆-en₂ +KA.INIM.MA +IGI +GIG.GA.A.KAM₂ +DU₃.DU₃.BI +ŠU.BI.GIN₇.NAM +EN₂ +i-ni +GURUŠ +GIG-at +i-ni +{munus}KI.SIKIL +GIG-at +i-ni +GURUŠ +u +{munus}KI.SIKIL +man-nu +u₂-bal-liṭ +ta-šap-par₂ +i-le-qu-ni-ku +ŠA₃ +KU₃-ti +{giš}GIŠIMMAR +ina +pi-i-ka +te-he-pi +ina +ŠU-ka +te-pe-til +GURUŠ +u +KI.SIKIL +ina +SAG.KI.MEŠ-šu₂-nu +tu-ka-ṣar +IGI +GURUŠ +u +KI.SIKIL +i-bal-lu-uṭ +TU₆.EN₂ +KA.INIM.MA +IGI +GIG.GA.A.KAM₂ +DU₃.DU₃.BI +ŠU.BI.AŠ.AM₃ +en₂ +an-na +im +ri-a +igi +lu₂-ka +gig-ga +ba-an-gar +ina +ša₂-me-e +ša₂-a-ru +i-zi-qam-ma +ina +i-in +LU₂ +si-im-me +iš-ta-kan +an-ta +su₃-da-ta +im +ri-a(MIN?) +igi +lu₂-ka +gig-ga +ba-an-gar +iš-tu +AN-e +ru-qu-ti +igi +gig-ga +gig-ga +ba-an-gar +ana +i-ni +mar-ṣa-a-ti +si-im-me +iš-ta-kan +lu₂-bi +igi-bi +lu₃-lu₃-a +ša₂ +LU₂ +šu-a-tu₂ +i-na-šu₂ +da-al-ha +igi-bi +ba-an-suh₃-suh₃ +i-na-šu₂ +a-ša₂-a +lu₂-u₁₈-lu-bi +ni₂-te-a-ni-še₃ +er₂ +gig +i₃-šeš₂-šeš₂ +LU₂ +šu-u₂ +ina +ra-ma-ni-šu₂ +mar-ṣi-iš +i-bak-ki +lu₂-bi +tu-ra-a-ni +{d}engur-ke₄ +igi +im-ma-an-si₃ +ša₂ +LU₂ +šu₂-a-tu₂ +mu-ru-us-su +{d}MIN +i-mur-ma +gazi{sar} +gaz-ga₂ +šu +u₃-me-ti +ka-si-i +haš-lu-ti +le-qe₂-ma +tu₆-tu₆ +abzu-ta +u-me-ni-si₃ +ši-pat +ap-si-i +i-di-ma +igi +lu₂-ka +u₃-me-ni-kešda +i-ni +a-me-li +ru-kus-ma +{d}engur +lu₂ +šu +ku₃-ga-na +igi +lu₂-ba-ka +šu +tag-ga-ni-ta +{d}MIN +ina +ŠU-ša₂ +KU₃-ti +i-in +a-me-li₃ +ina +la-ba-ti-ša₂ +im +igi +lu₂-ka +su₃-su₃ +igi-bi-ta +ba-ra-an-e₃ +ša-a-ru +ša₂ +i-in +a-me-li₃ +ud-du-pu +ina +i-ni-šu₂ +lit-ta-ṣi +KA.INIM.MA +IGI +GIG.GA.A.KAM₂ +EN₂ +i-nu +a-pa-tu₂ +i-nu +a-ša₂-tu₂ +i-nu +pur-si-in-di +da-a(MIN?)-mi +šu-har-ri-a-tu₄ +ši-na +i-bak-ka-a +ana +IGI +AMA-ši-na +{d}ma-mi +a-mi₃-in +na-ši-ma +it-ti-ni +tar-ku-si +a-ša₂-a +da-a-ma +u +ša₂-a-ra +TU₆.EN₂ +KA.INIM.MA +IGI +GIG.GA.A.KAM₂ +DU₃.DU₃.BI +SIG₂ +SA₅ +SIG₂ +BABBAR +a-he-en-na-a +NU.NU +ina +MURUB₄-šu₂-nu +lip₂-pa +tal₂-pap +SIG₂ +SA₅ +ina +IGI-šu₂ +GIG +SIG₂ +BABBAR +ina +IGI-šu₂ +TI +KEŠDA-ma +ina-eš +EN₂ +še +la₂ +še +la₂ +hu-tu-ul +hu-tu-ul +igi +lal +hu-tu-ul +min +igi +lal-bi +hu-tu-ul +min +ša-at-ti +pa-na +ŠE.GA +ša-at-ti +pa-na +ŠE.GA +i-ṭab₃ +ŠE.GA +MIN +TU₆.EN₂ +KA.INIM.MA +DIŠ +NA +IGI-MIN-šu₂ +LU₃.LU₃ +DU₃.DU₃.BI +bir-ki +UDU +TI-qe₂ +x +x +u +DUR +NU.NU +ana +2-šu₂ +te-eṣ-ṣi-ip +x +x +x +7 +u +7 +KA.KEŠDA +KEŠDA +e-ma +KEŠDA +EN₂ +ŠID-nu +ina +SAG.KI-šu₂ +KEŠDA-ma +ina-eš +EN₂ +at-ti-na +... +pur-si-mi-it +MUD₂ +šu-har-ra-tu₂ +am-mi-ni +ta-aš-ša-ni +ha-ma +ha-an-da-bi-lu +šu-ur-šu-ra +e-lap-pa-a +ša +ID₂ +ina +SILA.MEŠ +kir-ba-ni +ina +tub-kin₂-na-a-te +hu-ṣa-a-ba +am-mi-ni +taš-ša-ni +zu-un-na-ni +GIN₇ +MUL +mi-ta-qu-ta-ni +GIN₇ +nab-li +la-am +ik-šu-du-ki-na-ši +ṣur-ru +nag-la-bu +ša₂ +{d}gu-la +EN₂ +NU +DU₈ +EN₂ +{d}asal-lu₂-hi +{d}AMAR.UTU +EN₂ +{d}nin-gi-rim-ma +EN +EN₂ +u +{d}gu-la +EN +A.ZU-ti +i-di-ma +ana-ku +aš₂-ši +TU₆.EN₂ +KA.INIM.MA +ha-a-mu +hu-ṣa-ba +u +mim₃-ma +ša +IGI-MIN +šu-li-i +EN₂ +ina +šur-ri-i +la-am +ba-ša-mu +a-la-lu +ur-da +ana +ma-ti +it-tu-u₂ +še-er-a +U₃.TU +še-er-hu +hab-bur-ra +hab-bur-ra +ka-an-na +ka-an-nu +ki-iṣ-ra +ki-iṣ-ru +šu-bu-ul-ta +šu-bul-tu +me₂-er-a +{d}UTU +e-ṣi-id +{d}30 +u₂-pa-har +{d}UTU +ina +e-ṣe-di-šu₂ +{d}30 +ina +pu-hu-ri-šu₂ +ana +IGI +GURUŠ +me-er-hu +KU₄-ub +{d}UTU +u +{d}30 +i-ši-za-nim-ma +me₂-er-hu +li-la-a +ša₂ +ŠA₃-šu₂-un +KA.INIM.MA +me₂-er-hu +ša +ŠA₃ +IGI-MIN +šu-li-i +DIŠ +NA +IGI-MIN-šu₂ +mur-din-ni +DIRI +sah-le₂-e +ZI₃ +ŠE.SA.A +ina +KAŠ +tara-bak +LAL-id +x +x +x +x +x +ana +x +x +x +x +x-MEŠ +x +x +x +x +x +x +x +x +x +x +x +x +x +DU₈.U₃.KAM₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +{u₂}SIKIL +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +{u₂}NU.LUH.HA +BAR +mi-ki-i +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +PIŠ₁₀.{d}ID₂ +{na₄}mu-ṣa +x +x +x +x +x +x +x +{na₄}AN.ZAH.GE₆ +{na₄}ZALAG₂ +NA₄ +AN.BAR +{na₄}KA.GI.NA +DAB.BA +x +x +x +x +ŠA₃ +ŠUB-di +EN₂ +7-šu₂ +ŠID-nu-ma +SAG.KI-MEŠ-šu₂ +x +x +hu-up-pat +IGI-MIN-šu₂ +ŠEŠ₂-MEŠ-ma +SILIM-im +ina-ah +x +x +x +DAB-su-ma +SAG.KI.DAB.BA +TUKU.TUKU-ši +NA₄ +KUG.BABBAR +NA₄ +KUG.SIG₁₇ +{na₄}GUG +x +x +x +{na₄}MUŠ.GIR₂ +{na₄}SAG.DU +{na₄}NIR₂ +{na₄}BABBAR.DILI +{na₄}ZALAG₂ +{na₄}mu-ṣa +{na₄}AN.ZAH +{na₄}ŠUBA +{na₄}ZU₂ +GE₆ +{na₄}ŠU.U +NITA₂ +u +MUNUS +{na₄}SAG.GIL.MUD +{na₄}SAG.KI +NA₄ +AN.BAR +{na₄}PA +ša₂ +7 +GUN₃-MEŠ-ša₂ +{na₄}ia₂-ni-bu +{na₄}ka-pa-ṣu +NA₄ +DU₃.A.BI +an-nu-ti +ina +SIG₂ +{munus}AŠ₂.GAR₃ +GIŠ₃.NU.ZU +SA +MAŠ.DA₃ +{u₂}NINNI₅ +NITA₂ +NU.NU +E₃-ak +{u₂}tar-muš +{u₂}IGI-lim +{u₂}IGI.NIŠ +{giš}MA.NU +{u₂}DILI +{u₂}ap₂-ru-ša₂ +{u₂}ak-tam +{u₂}el-kul-la +{u₂}KUR.KUR +x +x +x +lu +{u₂}x +x +{u₂}HAR.LUM.BA.ŠIR +{u₂}IN₆.UŠ₂ +NUMUN +{giš}ŠINIG +U₂ +DU₃.A.BI +an-nu-ti +e-ma +KEŠDA +ina +{sig₂}HE₂.ME.DA +NIGIN-mi +EN₂ +SAG.KI +MU.UN.DAB +ŠID-nu-ma +ina +SAG.KI-šu₂ +KEŠDA-su +{na₄}aš-pu-u₂ +ša₂ +UD.SAKAR +kul-lu-mu +{na₄}MUŠ.GIR₂ +{na₄}SAG.GIL.MUD +NA₄ +AN.BAR +ŠUB +AN +{na₄}SAG.DU +{na₄}SAG.KI +{na₄}ŠIM.BI.ZI.DA +{na₄}lu-lu-da-ni-tu₂ +{na₄}ŠUBA +SIG₇ +{na₄}ZA.GIN₃ +{na₄}GUG +NA₄ +BAL +SA₅ +NA₄ +BAL +GE₆ +NA₄ +BAL +SIG₇ +{na₄}ar₂-zal-la +NA₄ +MUŠ +SA₅ +{na₄}DUR₂.MI.NA +{na₄}DUR₂.MI.NA.BAN₃.DA +{na₄}GI.RIM.HI.LI.BA +NA₄ +{giš}MES +{na₄}ŠURUN +{d}GUD +{na₄}KA.GI.NA +DAB.BA +{na₄}BABBAR.DILI +{na₄}BABBAR.MIN₅ +NA₄ +DU₃.A.BI +GAZ +SUD₂ +it-ti +nap-šal-ti +u +ṣi-in-di +ša +SAG.KI.DAB +HI.HI +SAG.KI-MEŠ-šu₂ +ŠEŠ₂-MEŠ +LAL-id +NA₄ +DU₃.A.BI +an-nu-ti +KUG.SIG₁₇ +tu-haz +ina +SAG.KI-šu₂ +KEŠDA-su +SUHUŠ +{giš}DIH₃ +ša₂ +UGU +KI.MAH +SUHUŠ +{giš}KIŠI₁₆ +ša₂ +UGU +KI.MAH +SI +GUD +ša +ZAG +SI +MAŠ₂ +ša +GUB₃ +NUMUN +{giš}ŠINIG +NUMUN +{giš}MA.NU +{u₂}A.ZAL.LA +7 +U₂.HI.A +ṣi-in-di +ša₂ +ŠU.GIDIM.MA +SAG.KI-MEŠ-šu₂ +LAL-id +{šim}LI +{šim}GUR₂.GUR₂ +KA +A.AB.BA +PIŠ₁₀.{d}ID₂ +UH₂.{d}ID₂ +I₃.UDU +ELLAG₂ +UDU.NITA₂ +DUH.LAL₃ +HI.HI +SAG.KI-MEŠ-šu₂ +LAL +... +x +{giš}x +x +x +x +... +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +GIR₃.PAD.DU +NAM.LU₂.U₁₈.LU +x +x +x +x +x +x +x +x +x +x +x +x +x +UR.GI₇ +GE₆ +SIG₂ +SA.AD +x +x +x +x +x +x +x +x +HI.HI +ina +NE +SAR-šu₂ +ina +KUŠ +x +x +x +x +x +x +x +da-gan +imin-bi +{d}utu +nam-tar +nam-tar-ra +x +x +x +nam-ba-luh +u-me-luh +nam-mu-un-da-MIN-bur₂-ra +nam-mu-un-da-MIN-la₂-e +al-li +ma-da +ma-da-bi +{d}en-ki +lugal +abzu-ke₄ +{d}asal-lu₂-hi +dumu +eridu{ki}-ga-ke₄ +nam-mu-un-da-bur₂-bur₂-re +zi +an-na +he₂-pad₃ +zi +ki-a +he₂-pad₃ +KA.INIM.MA +SAG.KI.DAB.BA.KAM₂ +DU₃.DU₃.BI +{sig₂}HE₂.ME.DA +SIG₂ +BABBAR +SA +MAŠ.DA₃ +{u₂}NINNI₅ +NITA₂ +DIŠ-niš +NU.NU +7 +u +7 +KEŠDA +KEŠDA +{u₂}DILI +KA +A.AB.BA +ni-kip-ta₅ +PIŠ₁₀.{d}ID₂ +UH₂.{d}ID₂ +SUHUŠ +{giš}NAM.TAR +NITA₂ +NUMUN +{giš}ŠINIG +SI +DARA₃.MAŠ +gul-gul +NAM.LU₂.U₁₈.LU +U₂.HI.A +an-nu-ti +e-ma +KEŠDA +ina +SIG₂ +SA₅ +NIGIN-mi +EN₂ +7-šu₂ +ŠID-nu +MUD₂ +{giš}EREN +TAG-at +ina +SAG.KI-šu₂ +tara-kas₂ +gul-gul +LU₂.U₁₈.LU +tur-ar₂ +SUD₂ +ina +I₃ +ŠEŠ₂-su +ŠE₁₀ +ŠAH +ME.ZE₂ +ŠAH +GIR₃.PAD.DA.LUGUD₂.DA +ŠAH +gul-gul +LU₂.U₁₈.LU +NAGA.SI +SI +DARA₃.MAŠ +{u₂}KUR.RA +{u₂}GAMUN.GE₆ +sah-le₂-e +DIŠ-niš +GAZ +ina +I₃.UDU +GUD +LIBIR.RA +HI.HI +ina +NE +SAR-šu₂ +{u₂}an-ki-nu-ti +{u₂}eli-kul-la +KA +tam-ti₃ +ni-kip-ta₅ +NUMUN +{u₂}GUR₅.UŠ +PIŠ₁₀.{d}ID₂ +{na₄}mu-ṣa +DIŠ-niš +SUD₂ +ina +I₃ +HI.HI +SAG.KI-MIN-šu₂ +KI.TA +UGU-šu₂ +u +MURUB₄ +UGU-šu₂ +ŠEŠ₂-ma +NA +BI +TI-uṭ +EN₂ +sag-ki +mu-un-ta-gig +dab-ba +sag-ki +mu-un-ta-bi-gig +dab-ba +sag-ki +hul +gig +sa +gig +dab-ba +zi +{d}asal-lu₂-hi +dumu +eridu{ki}-ga-ke₄ +zi +pad₃-da +hun-ga₂ +TU₆.EN₂ +DU₃.DU₃.BI +PA +{giš}GIŠIMMAR +ša₂ +{im}SI.SA₂ +ša₂ +ina +NU +IM +i-nam-zu-zu +TI-qe₂ +7-šu₂ +ana +15 +7-šu₂ +ana +150 +ta-pat-til +7 +u +7 +KEŠDA +KEŠDA +EN₂ +7-šu₂ +ŠID-nu +ina +SAG.KI-šu₂ +KEŠDA +EN₂ +sag-ki +mu-un-dab +sag +si-sa₂ +mu-un-dab +sag +sahar-ra +mu-un-dab +mu-un-dab +mu-un-dab-dab +a-da-pa +abgal +eridu{ki}-ga-ke₄ +sag-ki +mu-un-dab +sag +sahar-ra +mu-un-dab +TU₆.EN₂ +E₂.NU.RU +DU₃.DU₃.BI +{sig₂}HE₂.ME.DA +NU.NU +7 +u +7 +KA.KEŠDA +KEŠDA +e-ma +KEŠDA +{na₄}SAG.DU +E₃-ak +EN₂ +7-šu₂ +ŠID-nu +ina +SAG.KI-šu₂ +KEŠDA +EN₂ +a.ra +tu.e +a.ra +ba.tu.e +ti.la +x +x +šu +du₃.du₃.meš +šu +ne.ne.a.meš +eridu{ki}.ga +mu.un.tum₂ +TU₆.EN₂ +x +x +x +x +{giš}GIŠIMMAR +ša₂ +{im}SI.SA₂ +ša₂ +ina +NU +IM +i-nam-zu-zu +TI-qe₂ +7 +u +x +x +x +EN₂ +7-šu₂ +ŠID-nu +ina +SAG.KI-šu₂ +tara-kas₂ +x +x +x +EN₂ +x +x +x +x +x +ri.ba.ak.ti +ti.e.na +x +x +x +hat.ru.um.ma +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ku +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +EN₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +EN₂ +... +ina +UGU +GI.DU₈ +x +x +x +x +x +x +x +x +x +x +x +x +x +GI-a-an +LU₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +3-šu₂ +tu-šaq-ba-šu₂-ma +x +x +x +x +x +x +x +x +x +x +x +x +GIR₃.PAD.DU +LU₂ +kup-ra +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +MUD₂ +{giš}EREN +I₃.SUMUN +BARA₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +EN₂ +sag-ki +mu-un-dab +x +x +x +x +x +x +sag +sahar-ra +mu-un-dab +x +x +x +x +x +x +x +x +x +{d}asal-lu₂-hi +sag +giš +ra +mu-un-dab +mu-un-dab +x +x +x +x +x +x +x +x +x +x +DU₃.DU₃.BI +{na₄}ZU₂ +GE₆ +x +x +NITA +u +MUNUS +{na₄}x +x +x +x +{na₄}ŠUBA +SIG₇ +x +x +x +ina +SAG.KI-šu₂ +tara-kas₂ +EN₂ +sag-ki-ni +sag-ki +he₂-en-gi₄-gi₄ +i-bi₂-ni +i-bi₂ +he₂-en-gi₄-gi₄ +mu-ru-ub-bi-ni +mu-ru-ub-bi +he₂-en-gi₄-gi₄ +he₂-bi-da-a-na-mul-la +he₂-en-da-a +x +x +DU₃.DU₃.BI +{u₂}aš-lam +NITA₂ +SA +MAŠ.DA₃ +TEŠ₂.BI +NU.NU +7 +u +7 +KA.KEŠDA +KEŠDA +e-ma +KA.KEŠDA +EN₂ +ŠID-nu +UB.PAD +NITA₂ +u +MUNUS +x +HUL₂ +A.ŠA₃ +DAL.DAL +KI +KA.KEŠDA +ina +{sig₂}HE₂.ME.DA +NIGIN-mi +ina +SAG.KI-šu₂ +tara-kas₂ +EN₂ +id₂-da-ta +tir +gal-gal-la-ta +tir +si +dara₃-maš +mah-mah +mul₄-mul₄ +{giš}geštin +gir₂ +mu-un-kar-re +{giš}kiši₁₆ +i₃-gu₇ +kal +muš-muš +šu +mu₂-mu₂-e-de₃ +mul-mul +kur-kur-ra +sikil-e +du₈ +i₃-ti-la +tu-ra +x +x +du₈ +nam-tag-ga +lu₂-kar-ra +mu-un-sa₄-a +zag-du₈ +nig₂-{giš}gag-ti +{giš}kiri₆ +x +x +x +udug +hul +he₂-bad +a-la₂ +hul +he₂-bad +gidim +hul +he₂-bad +gal₅-la₂ +hul +he₂-bad +dingir +hul +he₂-bad +maškim₂ +hul +he₂-bad +{d}dim₁₀-me +he₂-bad +{d}dim₁₀-me-a +he₂-bad +{d}dim₁₀-me-lagab +he₂-bad +zi +an-na +he₂-pad₃ +zi +ki-a +he₂-pad₃ +TU₆.EN₂ +KA.INIM.MA +SAG.KI.DAB.BA.KE₄ +DU₃.DU₃.BI +SIG₂ +SA₅ +SIG₂ +BABBAR +DIŠ-niš +NU.NU +{na₄}ZALAG₂ +SI +DARA₃.MAŠ +NA₄ +ZU₂.LUM.MA +E₃ +7 +KA.KEŠDA +KEŠDA +e-ma +KEŠDA +EN₂ +ŠID-nu +ina +SAG.KI-MIN-šu₂ +tara-kas₂-ma +AL.TI +EN₂ +sag-ki-dab-ba +sag-ki-dab-ba +sag-ki-dab-ba +nam-lu₂-u₁₈-lu-ke₄ +sag-ki-dab-ba +dingir-re-e-ne-ke₄ +sag-ki-dab-ba +tu-ra +hun-ga₂-ke₄ +sag-ki-dab-ba +nam-lu₂-u₁₈-lu +gar-ra +he₂-en-hun-ga₂ +TU₆.EN₂ +EN₂ +sag +si-sa₂ +mu-un-dab +sag +sahar-ra +mu-un-dab +zag +gar-ra +sag +gar-ra +x +x +x +x +tu₆-tu₆ +gar-ra +he₂-en-hun-ga₂ +zi +an +he₂-pad₃ +zi +ki-a +he₂-pad₃ +TU₆.EN₂ +2 +KA.INIM.MA +SAG.KI.DAB.BA.KAM +ina +UGU +tak-ṣi-ri +ša₂ +{u₂}LU₂.U₁₈.LU +ŠID-nu +EN₂ +sag-ki +mu-ta-bi-gig +dab-ba +sag-ki +hul +dab-ba +sag +gig +hul +dab-ba +zi +{d}asal-lu₂-hi +dumu +eridu{ki}-ke₄ +zi +pad₃-da +hun-ga₂ +TU₆.EN₂ +KA.INIM.MA +SAG.KI.DAB.BA.KAM +EN₂ +an-ni-ta₅ +ina +UGU +nap-šal-ti +ina +UD.HUL.GAL₂-e +7-šu₂ +ŠID-nu-ma +SAG.KI-MIN-šu₂ +MURUB₄ +UGU-hi-šu₂ +KI.TA +UGU-hi-šu₂ +TAG.TAG-ma +ina-ah +18 +KA.INIM.MA +SAG.KI.DAB.BA.KAM +EN₂ +sag-du +huš +sag-du +huš +sag-du +huš-huš +sag +re-eš +sag-du +huš +lugal +{d}asar-alim +he₂-til +lugal +{d}en-ki +he₂-til +lugal +{d}asal-lu₂-hi +he₂-til +TU₆.EN₂ +KA.INIM.MA +SAG.KI.DAB.BA.KAM +DU₃.DU₃.BI +x +x +x +x +x +x +SIG₂ +BABBAR +NU.NU +7 +u +7 +KA.KEŠDA +KEŠDA +e-ma +KEŠDA +EN₂ +ŠID-nu +ina +SAG.DU-šu₂ +KEŠDA +x +x +x +x +x +x +x +x +x +x +x +{munus}aš₂-gar₃ +giš₃-nu-zu +šim-me +mu-un-zu +x +x +x +x +x +x +x +x +TU₆.EN₂ +KA.INIM.MA +SAG.KI.DAB.BA.KAM +x +x +x +x +x +x +x +{na₄}HAR.LUM.BA.ŠIR +SAR-šu₂ +DIŠ +NA +SAG.KI +150-šu₂ +x +x +x +ina +U₄ +9.KAM +ša +{iti}GU₄ +{u₂}IGI-lim +{u₂}IGI.NIŠ +{u₂}tar-muš +{u₂}eli-kul-la +{u₂}ha-šu-ta₅ +ša₂ +7 +SAG.DU-MEŠ-ša₂ +I₃.SUMUN +E₂ +{d}AMAR.UTU +ina +SA +AB₂.RI.RI.GA +DU₃.DU₃-pi₂ +ina +GU₂-šu₂ +GAR-an +{na₄}SAG.DU +ina +SAG.KI-šu₂ +KEŠDA-su +EN₂ +in.da +ri.ti +ra.ah +ŠID-nu +DIŠ +NA +GEŠTU +ZAG-šu₂ +TAG-su +IM +DIRI-at +u +MU₂-MEŠ +U₄ +19.KAM +U₄ +9.KAM +ša +{iti}NE +{giš}NU.UR₂.MA +KU₇.KU₇ +ša₂ +ina +UGU +GIŠ-ša₂ +zaq-pat +A-MEŠ-ša₂ +ta-še-ṣa-aʾ +I₃ +DUG₃.GA +ana +ŠA₃ +GEŠTU-šu₂ +ŠUB +I₃ +{šim}BAL +ana +SAG.DU-šu₂ +ŠUB +sil₂-qit +KUM₂ +GU₇-MEŠ +DIŠ +NA +GEŠTU +GUB₃-šu₂ +TAG-su +IM +DIRI-at +u +MU₂-MEŠ +U₄ +15.KAM +ša +{iti}KIN +I₃.UDU +KUR.GI{mušen} +ŠEG₆-šal +bah₃-ru-us-su +ana +ŠA₃ +GEŠTU-MIN-šu₂ +ŠUB +UZU +KUR.GI{mušen} +ŠEG₆-šal +GU₇ +I₃ +{giš}EREN +ana +SAG.DU-šu₂ +ŠUB-di +hi-ib-ṣa +ina +sah-le₂-e +GU₇ +DIŠ +NA +KIR₄ +ZAG-šu₂ +TAG-su +ina +U₄ +1.KAM +ša +{iti}SIG₄ +ŠU.SI +GUB₃-šu₂ +GAL +7 +NE +GAR-an +MUŠ.DIM₂.GURUN.NA +ša₂ +EDIN +U₅-MEŠ +ina +UGU +KIR₄-šu₂ +u₂-hap-pa +ILLU +{šim}BULUH +ana +GEŠTU +GUB₃-šu₂ +GAR-an +DIŠ +NA +KIR₄ +GUB₃-šu₂ +TAG-su +ina +U₄ +11.KAM +ša +{iti}ŠU +SUM{sar} +ina +UGU +u₂-haš-ša₂ +tul-ta₅ +ša₂ +ŠA₃ +GI +ina +UGU +KIR₄-šu₂ +u₂-hap-pa +ŠU.SI +ZAG-šu₂ +7 +NE +GAR-an +ILLU +{šim}BULUH +ana +ŠA₃ +GEŠTU-MIN-šu₂ +GAR-an +nap-ša₂-la-tu₂ +tak-ṣi-ra-nu +lat-ku-tu₄ +ba-ru-ti +ša₂ +ana +ŠU +šu-ṣu₂-u₂ +ša₂ +KA +ABGAL-MEŠ-e +la-bi-ru-ti +ša₂ +la-am +A.MA₂.URU₅ +ša₂ +i-na +šuruppak{ki} +MU +2.KAM +{m.d}EN.LIL₂-ba-ni +LUGAL +{uru}i₃-ši-in{ki} +{m.d}EN.LIL₂-mu-bal-liṭ +ABGAL +NIBRU{ki} +ez-bu +la +mu-du-u +mu-da-a +li-kal-lim +mu-du-u +la +mu-da-a +la +u₂-kal-lam +NIG₂.GIG +{d}AMAR.UTU +DIŠ +NA +SAG.DU-su +GIG-MEŠ +mat-qu-ta₅ +TAB +UD.DA +DIRI +DUB +3.KAM₂.MA +DIŠ +NA +UGU-šu₂ +KUM₂ +u₂-kal +E₂.GAL +{m}AN.ŠAR₂-DU₃-A +MAN +ŠU₂ +MAN +KUR +AN.ŠAR₂{ki} +ša +{d}AG +u +{d}taš-me-tu₄ +GEŠTU-MIN +ra-pa-aš₂-ta₅ +iš-ru-ku-uš +i-hu-uz-zu +IGI-MIN +na-mir-tu₄ +ni-siq +ṭup-šar-ru-ti +DIŠ +NA +UD.DA +KUR-id +ZI +SAG.KI +GIG +x +x +x +x +x +x +x +ru-uš-šu +ša +sip-pi +ABUL +TI-qe₂ +KI +x +x +x +x +x +x +x +DIŠ +NA +MIN +KUM₂ +TUKU +ana +TI.BI +{u₂}ap₂-ru-šu₂ +ina +I₃.GIŠ +x +x +x +x +x +x +x +x +ta-sak₃ +ina +KAŠ +ŠEG₆-šal +ŠEŠ₂-su +x +x +x +x +x +x +x +DIŠ +NA +MIN +NINDA +u +KAŠ +NU +i-le-em +ana +TI.BI +x +x +x +x +x +x +x +ILLU +a-bu-kat₃ +KUR-i +ta-sak₃ +ina +hi-iq +KAŠ +x +x +x +x +x +x +x +x +x +x +DIŠ +NA +MIN +ku-ṣu₂ +hur-ba-šu₂ +ŠUB.ŠUB-su +x +x +x +x +x +x +x +x +x +x +x +ana +UDUN +{lu₂}se-pi-i +x +x +x +x +x +x +x +x +x +DIŠ +NA +MIN +KUM₂ +TUKU +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ŠEŠ₂-su +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +NA +MIN +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ša +ina +LUGAL-MEŠ-ni +a-lik +mah-ri-ia +mam₂-ma +šip-ru +šu-a-tu +la +e-hu-uz-zu +bul-ṭi +TA +muh-hi +EN +UMBIN +liq-ti +BAR-MEŠ +ta-hi-zu +nak-la +a-zu-gal-lu-ut +{d}nin-urta +u +{d}gu-la +ma-la +ba-aš₂-mu +ina +ṭup-pa-a-ni +aš₂-ṭur +as-niq +IGI.KAR₂-ma +a-na +ta-mar-ti +ši-ta-si-ia +qe₂-reb +E₂.GAL-ia +u₂-kin +{u₂}HAR.HAR +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ZI₃ +GIG +DIDA +SIG₅ +x +x +x +x +x +x +x +x +x +x +x +x +{šim}GUR₂.GUR₂ +{šim}LI +ni-kip-ta₅ +x +x +x +x +x +x +x +x +x +{šim}ŠEŠ +ZI₃ +GIG +x +x +x +x +x +x +x +x +x +x +x +x +x +x +{šim}GUR₂.GUR₂ +{šim}LI +{šim.d}NIN.URTA +DIŠ-niš +GAZ +x +x +x +x +x +ina +KAŠ +ta-la₃-aš +tu-ba-har +SAG.DU-su +x +x +x +x +x +{šim}GUR₂.GUR₂ +{šim}LI +{šim.d}NIN.URTA +NUMUN +{u₂}ka-man-ti +x +x +x +x +x +x +DIŠ-niš +GAZ +SIM +ina +KAŠ +tara-bak +SAG.DU-su +x +x +x +x +x +PA +{giš}GIŠIMMAR +ša₂ +ina +NU +IM +i-nam-zu-zu +TI-qe₂ +ina +UD.DA +HAD₂.A +x +x +x +x +x +x +x +x +x +{u₂}ap₂-ru-ša +SUD₂ +ina +I₃ +HI.HI +ILLU +{giš}a-bu-ka-tu₂ +x +x +x +x +EN₂ +A.RA.ŠE.RA +A.RA.BA.ŠE.RA +IZI +BIL.LI +x +x +x +x +7-šu₂ +u +7-šu₂ +ana +ŠA₃ +ŠID-nu +SAG.KI-šu₂ +x +x +x +x +{u₂}KUR.KUR +ni-kip-ta +ina +NE +tu-qat-tar-šu₂ +{šim}GUR₂.GUR₂ +ni-kip-ta +x +x +NUMUN +{u₂}AB₂.DUH +KA +A.AB.BA +{šim}ŠEŠ +DIŠ-niš +SUD₂ +ina +IZI +x +x +x +x +x +x +{na₄}mu-ṣu₂ +{šim.d}MAŠ +KA +A.AB.BA +UH₂.{d}ID₂ +DIŠ-niš +SUD₂ +ina +{sig₂}HE₂.ME.DA +NIGIN +I₃ +ŠEŠ₂ +x +x +x +x +KEŠDA-as +ni-kip-ta +x +x +x +x +... +TAG.TAG +... +x +x +x +... +x +x +I₃.UDU +ELLAG₂ +HI.HI +SAG.KI-šu₂ +TAG +10 +GIN₂ +ZA₃.HI.LI{sar} +10 +GIN₂ +ŠE.SA.A +ina +A +GAZI{sar} +tara-bak +LAL +10 +GIN₂ +ZA₃.HI.LI{sar} +10 +GIN₂ +IM.BABBAR +10 +GIN₂ +ZI₃ +ŠE.SA.A +ina +A +GAZI{sar} +tara-bak +LAL +TUKUM.BI +LU₂ +U₃ +SAG.KI +DAB-su +ru-ša-am +ša +SUHUŠ +{giš}IG +ABUL +ina +a-ṣi-ka +ša₂ +ana +GUB₃-ka +GUB-zu +ŠU.TI +SIG₂ +{munus}AŠ₂.GAR₃ +GIŠ₃.NU.ZU +ina +{sig₂}HE₂.ME.DA +KEŠDA-as₂ +ina +SAG.KI-šu₂ +KEŠDA-ma +NA +BI +TI +TUKUM.BI +LU₂ +U₃ +SAG.KI +DAB-su +PA +{giš}GIŠIMMAR +ša +i-nam-zu-zu +TI-qe₂ +HAD₂.A +GAZ +SIM +ina +KAŠ +SILA₁₁-aš +SAG.KI-šu₂ +LAL-ma +NA +BI +TI-uṭ +TUKUM.BI +LU₂ +U₃ +SAG.KI +DAB-su +PA +{giš}GIŠIMMAR +ša +ina-zu-zu +TI-qe₂ +ina +SAG.KI-šu₂ +tara-kas₂-ma +NA +BI +TI-uṭ +TUKUM.BI +LU₂ +U₃ +SAG.KI +DAB-su +{giš}DIH₃ +ša +ina-zu-zu +ŠU.TI +ina +{sig₂}AKA₃ +NIGIN +ina +{sig₂}HE₂.ME.DA +tara-kas₂ +ina +SAG.KI-šu₂ +tara-kas₂ +NA +BI +TI-uṭ +TUKUM.BI +LU₂ +U₃ +SAG.KI +DAB-su +{sig₂}HE₂.ME.DA +MUNUS +ša₂ +MUD +AL.KUD +NU.NU +SA +MAŠ.DA₃ +{u₂}NINNI₅ +NITA₂ +KI +{sig₂}HE₂.ME.DA +ta-pat-til +{na₄}NIR₂ +{na₄}MUŠ.GIR₂ +{na₄}BABBAR.DILI +{na₄}ZU₂ +GE₆ +KEŠDA +ina +SAG.KI-šu₂ +KEŠDA +NA +BI +TI-uṭ +TUKUM.BI +LU₂ +U₃ +SAG.KI +DAB-su +la-aš-hi +MUŠ +TAB +GIR₂.TAB +{sig₂}HE₂.ME.DA +{u₂}aš₂-lu +NITA₂ +SA +MAŠ.DA₃ +DIŠ-niš +NU.NU +{sig₂}AKA₃ +NIGIN +ina +SAG.KI-šu₂ +tara-kas₂-ma +NA +BI +TI-uṭ +TUKUM.BI +LU₂ +U₃ +SAG.KI +DAB-su +{tug₂}NIG₂.DARA₂.ŠU.LAL₂ +ina +DUR +{sig₂}AKA₃ +NIGIN-mi +ina +SAG.KI-šu₂ +KEŠDA-ma +NA +BI +TI-uṭ +DIŠ +LU₂ +ZI +SAG.KI +TUKU +u₃ +ri-mu-ta₅ +TUKU +PA +{giš}ŠE.DU₃.A +HAD₂.DU +GAZ +SIM +ZI₃ +ŠE.MUŠ₅ +sah-le₂-e +ARA₃-ti₃ +ZI₃ +ŠE.SA.A +DIŠ-niš +SUD₂ +ina +A +GAZI{sar} +tara-bak +LAL.LAL-ma +TI +DIŠ +NA +ZI +SAG.KI +TUKU +u₃ +ri-mu-ta₅ +TUKU +PA +{giš}šu-nim +HAD₂.A +GAZ +SIM +ina +ZI₃ +GIG +sah-le₂-e +x +x +x +ina +A.GEŠTIN.NA +tara-bak +LAL-su +x +x +x +x +x +x +x +x +x +x +x +x +GAZ +SIM +{šim}ŠEŠ +x +x +x +x +x +x +x +x +x +tara-bak +LAL +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ZI₃ +GIG +sah-le₂-e +x +x +x +x +x +x +x +x +x +x +TI +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +GI +gu-ur +GI.ŠUL.HI +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +KI.MAH +GUB-zu +x +x +x +x +x +ŠEŠ₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +tara-bak +LAL +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +{u₂}SU.AN.DAR +ZI₃ +DIŠ +NA +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ZI₃ +ŠE.SA.A +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +NA +SAG.KI +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +{giš}KIŠI₁₆.HAB +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +NA +SAG.KI +GUB₃-šu₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +{u₂}SU.AN.DAR +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +NA +SAG.KI-MIN-šu₂ +ṣab-ta-šu₂-ma +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +DUH.ŠE.GIŠ.I₃ +ša₂-bu-lu-te +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +NA +SA +SAG.KI +ZAG-šu₂ +... +{u₂}SI.SA₂ +ZI₃ +GIG +... +DIŠ +NA +SA +SAG.KI +GUB₃-šu₂ +... +{u₂}SI.SA₂ +... +DIŠ +NA +SA +SAG.KI +ZAG-šu₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +{u₂}EME +UR.GI₇ +ina +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +NA +SA +SAG.KI +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +NA +SA +SAG.KI +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +sah-le₂-e +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +NA +x +... +LAL-ma +... +DIŠ +NA +... +DIŠ +... +DIŠ +KIMIN +x +... +ZU₂.LUM +SA₅ +x +... +DIŠ +NA +SA +SAG.KI-MIN-šu₂ +ZI +... +{u₂}ŠAKIRA +{u₂}EME +UR.GI₇ +{u₂}... +U₂ +BABBAR +lu-ur-pa-na +IM.BABBAR +{na₄}NIG₂.KALAG.GA +{na₄}as-har +... +DIŠ +KIMIN +KU.KU +{na₄}AŠ₂.GI₄.GI₄ +... +DIŠ +KIMIN +PA +{giš}ŠINIG +SIG₇-su +... +ana +ŠA₃ +{na₄}PEŠ₄ +tu +x +... +DIŠ +NA +ina +DAB +GIDIM +SAG.KI-šu₂ +... +SA +IGI-MIN-šu₂ +u₂-zaq-qa-su +... +{na₄}mu-ṣa +{na₄}x +... +NA₄ +AN.BAR +{na₄} +... +EN₂ +ur-sag +{d}asal-lu₂-hi +... +DIŠ +NA +SAG.KI-šu₂ +DAB-su-ma +... +DIŠ-niš +SUD₂ +... +x +x +x +x +{u₂}IGI-lim +{u₂}tar-muš +x +x +x +x +x +x +x +x +x +x +SIG₂ +BABBAR +{u₂}NINNI₅ +NITA₂ +NU.NU +EN₂ +x +x +x +x +x +x +x +x +x +A.RI.A +NAM.LU₂.U₁₈.LU +SAG.KI-šu₂ +x +x +x +x +x +ni-kip-ta₅ +DIŠ-niš +SUD₂ +ina +I₃ +{giš}EREN +HI.HI +ŠEŠ₂.MEŠ-ma +TI +DIŠ +NA +SAG.KI.DAB.BA-ma +SA.GU₂-šu₂ +GU₇.MEŠ-šu₂ +ŠU.GIDIM.MA +{giš}si-hu +x +x +x +x +{u₂}ba-ri-ra-ta₅ +GI.ŠUL.HI +GAZ +SIM +ina +A +GAZI{sar} +x +x +x +x +DIŠ +NA +SAG.KI.DAB.BA-ma +TA +{d}UTU.ŠU₂.A +EN +EN.NUN.UD.ZAL.LI +GU₇-šu₂ +x +x +x +DIŠ +NA +SAG.KI.DAB.BA-ma +ŠA₃ +ŠA₃-bi +GU₃.GU₃-si +ŠU.GIDIM +ša₂-ne₂-e +x +x +x +x +DIŠ +NA +SAG.KI.DAB.BA-ma +ma-gal +BURU₈ +KI.NA₂ +la +i-na-aš-ši +UŠ₂ +DIŠ +NA +SAG.KI.DAB.BA-ma +ma-gal +x +x +x +SA +SAG.KI-šu₂ +ma-gal +te-bu-u₂ +x +x +x +x +x +x +an-nu-tu₄ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +šum-ma +SAG.KI.DAB.BA +ŠU.GIDIM.MA +ina +SU +NA +il-ta-za-az-ma +NU +DU₈ +DUB +2.KAM₂ +DIŠ +NA +UGU-šu₂ +KUM₂ +u₂-kal +E₂.GAL +{m}AN.ŠAR₂-DU₃-A +MAN +ŠU₂ +MAN +KUR +AN.ŠAR₂{ki} +ša +{d}AG +{d}taš-me-tu₄ +GEŠTUG-MIN +DAGAL-tu₂ +iš-ru-ku-šu₂ +e-hu-uz-zu +IGI-MIN +na-mir-tu₄ +ni-siq +ṭup-šar-ru-ti +ša +ina +LUGAL-MEŠ-ni +a-lik +mah-ri-ia +mam₂-ma +šip-ru +šu₂-a-tu +la +e-hu-uz-zu +bul-ṭi +TA +muh-hi +a-di +UMBIN +liq-ti +BAR-MEŠ +ta-hi-zu +nak-la +a-zu-gal-lu-ut +{d}nin-urta +u +{d}gu-la +ma-la +ba-aš₂-mu +ina +ṭup-pa-a-ni +aš₂-ṭur +as-niq +IGI.KAR₂-ma +a-na +ta-mar-ti +ši-ta-si-ia +qe₂-reb +E₂.GAL-ia +u₂-kin +DIŠ +NA +SAG +ŠA₃-šu₂ +GU₇-šu₂ +ina +ge-ši-šu +ZE₂ +im-ta-na-ʾa +NA +BI +qer-be₂-na +GIG +SUM{sar} +GA.RAŠ{sar} +UZU +GUD +UZU +ŠAH +KAŠ +{lu₂}KURUN₂.NA +NU +uš-ta-mah-har +ana +TI-šu₂ +1/2 +SILA₃ +ZA₃.HI.LI +1/2 +SILA₃ +{šim}LI +1/2 +SILA₃ +{šim}GUR₂.GUR₂ +1/2 +SILA₃ +NUMUN +GADA +1/2 +SILA₃ +pa-pa-si +MUNU₆ +1/2 +SILA₃ +{šim}IM.DI +1/2 +SILA₃ +NUMUN +{u₂}qut-ra-ti +1/2 +SILA₃ +GAZI{sar} +1/2 +SILA₃ +{giš}ŠE.NU +1/2 +SILA₃ +GU₂.NIG₂.AR₃.RA +1/2 +SILA₃ +pa-pa-si-{d}ID₂ +1/2 +SILA₃ +U₂ +a-ši-i +1/2 +SILA₃ +{u₂}KUR.RA +1/2 +SILA₃ +ŠE₁₀ +TU{mušen} +1/3 +SILA₃ +NUMUN +{u₂}AB₂.DUH +1/3 +SILA₃ +e-reš-ti +A.ŠA₃ +10 +KISAL +ILLU +{šim}BULUH +10 +KISAL +KA +A.AB.BA +1 +SILA₃ +ZI₃ +GIG +1 +SILA₃ +ZU₂.LUM.MA +1 +SILA₃ +DIDA +SIG +1 +SILA₃ +ZI₃.KUM +TEŠ₂.BI +GAZ +SIM +ina +KAŠ +GIM +ra-bi-ki +ta-rab-bak +ina +TUG₂.HI.A +SUR-ri +šu-lu-uš-ti +9 +UD-me +LAL +ina +4 +UD-me +DU₈-ma +ta-mar +šum₂-ma +U₃.BU₂.BU₂.UL +BABBAR +ŠA₃-šu₂ +i-pa-šah +šum₂-ma +U₃.BU₂.BU₂.UL +SA₅ +ŠA₃-šu₂ +KUM₂ +u₂-kal +šum₂-ma +U₃.BU₂.BU₂.UL +SIG₇ +UD.DA +KUR-id +GUR.GUR-šu +šum₂-ma +U₃.BU₂.BU₂.UL +GE₆ +u₂-šam-ra-su-ma +NU +TI +ana +U₃.BU₂.BU₂.UL +bu-le-e +{u₂}LAG +A.ŠA₃ +IM.GU₂ +ša₂ +UD.DA +SA₂-kat₃ +GAZ +SIM +ina +A +GAZI{sar} +ta-la-aš₂ +LAL-id +EGIR-šu₂ +sah-le₂-e +ina +KAŠ +NAG +UD-ma +NAG-u₂ +ina +A +{giš}šu-nu +{giš}ŠINIG +{u₂}ak-tam +{u₂}IN₆.UŠ₂ +ir-ta-na-haṣ +DIŠ +NA +ZE₂ +GIG +SUM{sar} +SUD₂ +ina +A +NU +pa-tan +NAG +A.GEŠTIN.NA +KALAG.GA +AL.US₂.SA +GAZI{sar} +kab-ru-ti +NAG +KAŠ.BIR₈ +NAG +tu-ša₂-ʾ-raš-šu₂ +GAZI{sar} +SUD₂ +ina +A +NAG +MUN +SUD₂ +ina +A +NU +pa-tan +NAG +MUN +SUD₂ +ina +KAŠ +NU +pa-tan +NAG +ILLU +a-bu-kat₃ +GAZ +ana +ŠA₃ +KAŠ₃.BIR₈ +ŠUB-di +ina +MUL₄ +tuš-bat +ina +še-ri₃ +LAL₃ +I₃ +hal-ṣa +ana +ŠA₃ +ŠUB +NAG-ma +i-ar₂-ru +NUMUN +GI.ZU₂.LUM.MA +SUD₂ +ina +KAŠ +NAG +{u₂}nam-ruq-qa +SUD₂ +ina +KAŠ +NAG +U₂ +DILI +U₂ +ZE₂ +ina +KAŠ +NAG +U₂ +me-er-gi-ra-nu +U₂ +ZE₂ +ina +KAŠ +NAG +GAZI{sar} +U₂ +ZE₂ +ina +KAŠ +NAG +U₂ +{šim}LI +U₂ +ZE₂ +ina +KAŠ +NAG +U₂ +NU.LUH.HA +U₂ +ZE₂ +ina +KAŠ +NAG +U₂ +BAR +{giš}šu-ši +U₂ +ZE₂ +ina +KAŠ +NAG +PA +{u₂}al-la-nu +U₂ +ZE₂ +ina +KAŠ +NAG +U₂ +U₅ +ARGAB{mušen} +U₂ +ZE₂ +ina +KAŠ +NAG +U₂ +LAG +MUN +U₂ +ZE₂ +ina +KAŠ +NAG +U₂ +SUM{sar} +U₂ +ZE₂ +ina +KAŠ +NAG +U₂ +SUHUŠ +{giš}NAM.TAR +NITA₂ +U₂ +ZE₂ +SUD₂ +ina +KAŠ +NAG +U₂ +SUHUŠ +{giš}šu-ši +U₂ +ZE₂ +ina +I₃ +u +KAŠ +NAG +U₂ +ṣi-ba-ru +U₂ +ZE₂ +SUD₂ +ina +A +NAG +DIŠ +NA +NU +pa-tan +ŠA₃-šu₂ +ana +pa-re-e +e-te-ne₂-la-a +UH₂ +ma-gal +ŠUB-MEŠ +A-MEŠ +ina +KA-šu₂ +mal-da-riš +DU-ku +pa-nu-šu₂ +iṣ-ṣa-nu-du +ŠA₃-MEŠ-šu₂ +MU₂.MU₂-hu +MURUB₄-MIN-šu₂ +kim-ṣa-šu₂ +TAG.GA-MEŠ-šu₂ +KUM₂ +ŠED₇ +IR +TUKU-MEŠ-ši +NINDA +u +KAŠ +LAL +A +ŠED₇ +ma-gal +NAG +i-par-ru +ina +DUR₂-šu₂ +GIŠ₃-šu₂ +SIG₇ +u₂-tab-ba-kam +MUŠ₂-MEŠ-šu₂ +i-te-nin-nu-u +UZU-MEŠ-šu +tab-ku +mim₃-ma +GU₇-ma +UGU-šu₂ +ul +DU₁₀.GA +NA +BI +ZE₂ +sah-pa-su +ana +TI-šu₂ +{šim}GUR₂.GUR₂ +{šim}LI +{šim}GAM.MA +3 +U₂.HI.A +ŠEŠ +SIG₇-su-nu +TI-qe₂ +HAD₂.A +SUD₂ +ina +GEŠTIN +KALAG.GA +NU +pa-tan +NAG-šu₂ +SI.SA₂-ma +SAG +ŠA₃-šu₂ +ŠA₃-šu₂ +LAL-id +bah-ra +GU₇ +bah-ra +NAG +UD.3.KAM +tuš-te-še-er-ma +TI +DIŠ +KI.MIN +{u₂}a-ra-ri-a-nu +SUD₂ +ina +KAŠ +NU +pa-tan +NAG-šu₂ +x +x +x +DIŠ +KI.MIN +{u₂}sah-la-a-nu +SUD₂ +ina +GEŠTIN +KALAG.GA +NU +pa-tan +NAG-šu₂ +KI.MIN +DIŠ +KI.MIN +{u₂}ṣi-bu-ru +SUD₂ +ina +GA +KU₇.KU₇ +NAG-šu₂ +KI.MIN +DIŠ +KI.MIN +HENBUR₂ +{u₂}UKUŠ₂.HAB +SUD₂ +ina +GEŠTIN +LAL₃ +u +I₃ +hal-ṣi +NAG-šu₂ +KI.MIN +DIŠ +KI.MIN +U₂ +SIG-MEŠ +ša₂ +KUR-e +ina +GEŠTIN +LAL₃ +u +I₃ +hal-ṣi +NAG-šu₂ +KI.MIN +DIŠ +NA +NINDA +GU₇ +KAŠ +NAG-ma +u₂-nap-paq +u +IGI-MEŠ-šu₂ +NIGIN-MEŠ-du +NA +BI +GIG +ZE₂ +GIG +ana +TI-šu₂ +{u₂}UKUŠ₂.HAB +BIL₂ +ša₂ +{im}SI.SA₂ +ina +A +LUH-si +{šim}BULUH +tu-sal-lat +{u₂}NU.LUH.HA +te-be₂-er +3 +U₂.HI.A +ŠEŠ +ina +KAŠ +SAG +ki +pi-i +mal-ma-liš +tara-muk +ana +IGI +{mul}UZ₃ +GAR-an +GIŠ.HUR +NIGIN-mi +ina +A₂.GU₂.ZI.GA +ša-šu₂-nu +ta-ša₂-hal +NU +pa-tan +NAG-ma +i-lap-pat-su-ma +is-sal-la-ʾ +la +ta-na-kud +TI-uṭ +ina +UD +ŠE.GA +NAG-šu +x +x +x +x +x +x +x +me +ta +x +x +x +ur₂-ne₂-e +{šim}BAL +{u₂}KUR.KUR +{giš}GEŠTIN +KA₅.A +x +x +ina +3 +SILA₃ +KAŠ +ina +{urudu}ŠEN.TUR +ŠEG₆-šal +EN +ana +2 +SILA₃ +i-tur-ru +i-kaṣ₃-ṣa-aṣ +x +x +ana +IGI +ŠUB-di +pa-na +A +GAZI{sar} +i-šah-hat +EGIR-šu₂ +an-na-a +ana +DUR₂-šu₂ +DUB-ak +DIŠ +KI.MIN +{u₂}UKUŠ₂.HAB +HAD₂.A +GAZ +SIM +KI +ZI₃.KUM +HI.HI +ina +A +GAZI{sar} +tara-bak +ina +KUŠ +SUR +LAL +DIŠ +NA +ina +ti-bi-šu₂ +SAG.DU-su +ana +IGI-šu₂ +iš-ta-na-da-as-su +GU₂-su +MURUB₄-MIN-šu₂ +kim-ṣa-šu₂ +GIR₃-MIN-šu₂ +GU₇-MIN-šu₂ +ŠA₃-šu₂ +ii-ʾ-aš₂ +ŠA₃-šu₂ +ana +pa-re-e +i-te-ne₂-el-la +IGI-MEŠ-šu₂ +iṣ-ṣa-nu-du-šu₂ +NA +BI +ZE₂ +DAB-su +ana +TI-šu₂ +{giš}EREN +{giš}ŠUR.MIN₃ +{šim}GIR₂ +GI +DU₁₀ +NAGA +SI +{šim}IM.DU +MUN +eme-sal-li₃ +ina +KAŠ +tara-bak +ina +NINDU +UŠ₂-er +ana +DUR₂-šu₂ +DUB-ak +{u₂}NU.LUH.HA +{šim}LI +NA₄ +ZU₂.LUM.MA +ina +{na₄}ur-ṣi +DIŠ-niš +ARA₃.ARA₃ +ina +I₃.UDU +HI.HI +alla-nu +DU₃-uš +I₃.GIŠ +SUD +ana +DUR₂-šu₂ +GAR +DIŠ +NA +GABA-su +u +ša₂-šal-la-šu₂ +KUM₂-MEŠ +ZU₂-MEŠ-šu₂ +i-hi-la +e-peš +KA-šu₂ +DUGUD +NA +BI +ZE₂ +GIG +ana +TI-šu₂ +{šim}GUR₂.GUR₂ +{šim}LI +{šim}GAM.MA +MUN +ILLU +LI.TAR +{u₂}KU₆ +U₂ +BABBAR +{u₂}HAB +{u₂}ak-tam +{giš}HAB +{u₂}KUR.KUR +U₅ +ARGAB{mušen} +12 +U₂.HI.A +ŠEŠ +DIŠ-niš +ina +KAŠ +ba-lu +pa-tan +NAG-ma +BURU₈ +sah-le₂-e +{u₂}KUR.RA +kam-mu +ILLU +LI.TAR +{šim}BULUH +{šim}LI +{šim}GUR₂.GUR₂ +ILLU +{šim}BULUH +NUMUN +{u₂}NU.LUH.HA +ZI₃ +{u₂}NU.LUH.HA +{u₂}ur₂-nu-u +TI-su-nu +ina +KAŠ +NAG-ma +BURU₈ +x +x +x +{u₂}KUR.KUR +{u₂}NU.LUH.HA +{u₂}HAR.HAR +{šim}ŠEŠ +ILLU +LI.DUR +KUR-i +UH₂.{d}ID₂ +x +x +U₂ +NAM.TI.LA +{u₂}GAMUN +{u₂}x +x +{u₂}KUR.RA +sah-le₂-e +GAZI{sar} +17 +U₂.HI.A +ŠEŠ +KI +MIN +ILLU +LI.TAR +U₂ +BABBAR +U₅ +ARGAB{mušen} +{u₂}ak-tam +x +x +x +{šim}BULUH +x +x +ina +KAŠ +NAG-ma +BURU₈ +{u₂}KUR.KUR +ILLU +LI.TAR +U₂ +BABBAR +... +NAG-ma +BURU₈ +GI +DU₁₀.GA +{šim}MUG +GAZI{sar} +U₂ +BABBAR +x +... +ina +IZI +ŠEG₆-šal +NAG-ma +BURU₈ +{u₂}ur₂-nu-u +{u₂}SUMUN.DAR +{u₂}šib-bu-ra-tu₂ +x +x +x +{u₂}KUR.RA +{šim}IM.MAN.DU +GI +DU₁₀.GA +an-dah-še +x +x +x +U₂.HI.A +an-nu-ti +ina +KAŠ +NAG-ma +BURU₈ +GI +DU₁₀.GA +PA +{u₂}... +{šim}BULUH +U₂ +NAM.TI.LA +ZU₂.LUM.MA +... +ina +MUL₄ +tuš-bat +ina +še-ri₃ +NU +pa-tan +NAG-ma +BURU₈ +... +{u₂}x +x +x +x +ILLU +LI.TAR +7 +U₂.HI.A +ŠEŠ +ina +KAŠ +NAG-ma +BURU₈ +... +x +{u₂}KUR.KUR +{šim}GUR₂.GUR₂ +NAGA +SI +MUN +{u₂}IGI-lim +{u₂}IGI-niš +{u₂}tar-muš₈ +{u₂}KUR.RA +{na₄}ga-bi-i +{u₂}ak-tam +{u₂}HAR.HAR +14 +U₂.HI.A +ŠEŠ +DIŠ-niš +SUD₂ +ina +KAŠ +NAG-ma +BURU₈ +... +10 +GIN₂ +{u₂}sah-la-a-nu +10 +GIN₂ +AL.US₂.SA +10 +GIN₂ +A.GEŠTIN.NA +KALAG.GA +10 +GIN₂ +KAŠ +10 +GIN₂ +ut-hi-ra +... +10 +GIN₂ +{u₂}HAR.HAR +1 +GIN₂ +SUM{sar} +1/2 +GIN₂ +MUN +1/2 +GIN₂ +GAZI{sar} +tuš-te-mid +ina +MUL₄ +tuš-bat +ina +še-ri₃ +... +ina +KA-šu₂ +u +DUR₂-šu₂ +SI.SA₂-ma +TI +x +x +x +A +UZU +kab-ru-ti +NAG-ma +ina-eš +DIŠ +NA +lu +ZE₂ +lu +ah-ha-za +lu +a-mur-ri-qa-nu +DAB-su +{u₂}ur₂-ne₂-e +{u₂}KUR.KUR +{u₂}GEŠTIN +KA₅.A +{šim}LI +{šim}MUG +3 +SILA₃ +KAŠ +ina +ŠEN.TUR +ŠEG₆-šal +ta-ša₂-hal +I₃.GIŠ +ana +IGI +... +{u₂}GIR₂-a-nu +{u₂}mur-gab-ri-a-nu +{u₂}a-ri-hu +{u₂}... +{u₂}ṣa-ṣu-un-ta₅ +{u₂}si-si-ni +ŠA₃-bi +{u₂}x +... +{u₂}UKUŠ₂.HAB +{u₂}x +HAB +{u₂}HAB +{u₂}tar-muš₈ +{u₂}NU.LUH.HA +... +HENBUR₂ +{u₂}EME +UR.GI₇ +HENBUR₂ +{šim}LI +HENBUR₂ +{šim}GAM.ME +sah-le₂-e +... +HENBUR₂ +{u₂}UKUŠ₂.HAB +{u₂}sah-la-na +SUD₂ +ina +GEŠTIN +... +DIŠ +NA +ZE₂ +qid-ha +lu-ba-ṭa +GIG +ana +TI-šu₂ +{šim}... +{u₂}tar-muš +{u₂}IGI-lim +{šim}BULUH +{u₂}KUR.RA +ILLU +{šim}... +DIŠ +NA +a-ša₂-a +pa-šit-ta₅ +u +lu-ba-ṭi₅ +GIG +{u₂}... +{u₂}KUR.RA +URUDU +SUMUN +7 +U₂.HI.A +ŠEŠ +DIŠ-niš +... +DIŠ +NA +ZE₂ +DAB-su +{u₂}KUR.RA +NU +pa-tan +a-he-en-na-a +... +ina +KAŠ +NAG-ma +KAŠ +SAL.LA +NAG +... +ana +a-ša₂-a +pa-šit-ta₅ +u +lu-ba-ṭi +ZI-hi +U₂ +BABBAR +ILLU +LI.TAR +... +DIŠ +NA +pa-šit-tu₂ +DAB-su +{šim}GUR₂.GUR₂ +{u₂}HAR.HAR +{u₂}KUR.KUR +{u₂}KUR.RA +... +x +ILLU +LI.TAR +{u₂}NU.LUH.HA +kam₂-mu +ša₂ +{lu₂}AŠGAB +{u₂}LAG +A.ŠA₃ +x +... +ma +BURU₈ +{u₂}HAR.HAR +{u₂}NU.LUH.HA +ILLU +LI.TAR +{šim}LI +{šim}GUR₂.GUR₂ +5 +U₂-HI.A +... +ŠEŠ₂ +{u₂}ak-tam +{u₂}KUR.KUR +NAGA +SI +{šim}GUR₂.GUR₂ +{šim}LI +ILLU +LI.TAR +MUN +x +8 +U₂.ME +NAG +i-ša₂-riš +IM +DIŠ +NA +SAG.KI.DAB.BA +TUKU +a-ši-a +pa-šit-tu₄ +u +lu-ba-ṭi +GIG +ana +TI-šu₂ +15 +GIN₂ +{šim}GUR₂.GUR₂ +15 +GIN₂ +{u₂}ur₂-nu-u +15 +GIN₂ +{u₂}KUR.KUR +DIŠ-niš +GAZ +SIM +ina +I₃ +KAŠ +SAG +tu-ša₂-ha-an +ana +DUR₂-šu₂ +DUB +ana +ši-bi +NAG-šu₂ +DIŠ +NA +NU +pa-tan +SAG +ŠA₃-šu₂ +i-kaṣ₃-ṣa-as-su +KUM₂ +ŠA₃ +TUKU-MEŠ +ina +ge-ši-šu +ZE₂ +i-ar₂-ru₃ +NA +BI +pa-šit-ta₅ +tu-ga-na +GIG +ana +TI-šu₂ +{šim}GUR₂.GUR₂ +{šim}LI +ILLU +LI.TAR +{u₂}ak-tam +{u₂}KUR.KUR +MUN +NAGA +SI +TI-su-nu +ina +KAŠ +SAG +tara-muk +ina +MUL₄ +tuš-bat +ina +še-ri₃ +NU +pa-tan +ta-ša₂-hal +NAG-ma +tu-ša₂-ʾ-ra-šu-ma +TI +DIŠ +NA +ZE₂ +GIG +x +x +x +x +x +EN₂ +ZE₂ +eṭ-li +ZE₂ +eṭ-li +i +x +... +u₂-ri +eṭ-li +e-el₃ +ša +li-li +x +... +x +ti +ma +ga-ra-aš-ga-ra-aš +ša +ŠAH +... +x +an +ra +ti +e-zib +ba +mu +x +x +... +KA.INIM.MA +... +EN₂ +ze₂-am₂ +u₂-šim-gen₇ +... +... +x +x +x +eme +... +ze₂ +ni₂-za +mu-e-ši-du₃-a +... +izi-gen₇ +te-ni(ER)-ib₂ +... +tu₆-du₁₁-ga +{d}nin-girim₃ +... +{d}en-ki-ke₄ +dag +... +lag +mun +šu +u₃-me-ti +nam.šub +eridu-ki-ga +x +x +x +x +ka-ka-na(MA) +u₃-me-ni-gar +... +im(AH)-gen₇ +gu-du-ni-ta +he₂-em-ma-ra-du +bu-lu-uh-gen₇ +he₂-si-il-le +EN₂ +mar-tu +mar-tu +mar-tu +pa-šit-tu₂-ma +mar-tu +GIM +IGIRA₂{mušen} +SIG₇ +it-ta-na-al-lak +a-lak-ta +it-ta-na-za-az +ina +gi-sal-li +ša +BAD₃ +i-da-gal +a-ki-lum +ak-li +i-da-gal +ša₂-tu-u₂ +ku-ru-un-ni +ki-i +tak-ka-la +ak-la +ki-i +ta-ša-ta-a +ku-ru-un-ni +a-ma-qu₂-tak-ku-nu-šim-ma +tu-ga-ša-a +ki-i +GUD +TU₆ +EN₂ +EN₂ +UD₅ +ar-qa₂-at +a-ruq +DUMU-ša +a-ruq +{lu₂}SIPA-ša +a-ruq +na-qid-sa +ina +e-ki +SIG₇ +U₂-MEŠ +SIG₇-MEŠ +ik-kal +ina +a-tap-pi +a-ruq-ti +A-MEŠ +SIG₇-MEŠ +i-šat-ti +i-suk-ši +{giš}GIDRU +ul +u₂-tir-ra +pa-ni-ša +i-suk-ši +kir-ba-na₇ +ul +u₂-šaq-qa-a +re-ši-ša +i-suk-ši +pil₂-li +{u₂}HAR.HAR +u +MUN +mar-tu +GIM +im-ba-ri +ana +ša₂-ha-hi +it-bi +EN₂ +ul +ia-ut-tu +EN₂ +{d}e₂-a +u +{d}asal-lu₂-hi +EN₂ +{d}da-mu +u +{d}gu-la +TU₆ +EN₂ +KA.INIM.MA +ša +pa-šit-ti +DU₃.DU₃.BI +x +x +x +x +GAZI{sar} +pa-pi-ra +DIŠ-niš +SIG₃-aṣ +EN₂ +x +x +ŠID +... +x +x +x +TI-uṭ +EN₂ +x +... +x +ad +x +... +{d}e₂-a +x +x +lip-ṭur +EN₂ +KID₃.KID₃.BI +... +u +MUN +nu-hur-ti +ŠUB-di +ana +ŠA₃ +EN₂ +ŠID +... +NU +pa-tan +NAG-ma +ina-eš +KA.INIM.MA +ZE₂.A.KAM +IGI.4.GAL₂.LA +ILLU +LI.TAR +SUD₂ +ina +A +NAG-šu₂ +14 +PA +GI.ZU₂.LUM.MA +SUD₂ +ina +5 +GIN₂ +I₃.GIŠ +u +KAŠ +NAG-šu₂ +21 +{u₂}nab-ruq-qa +ina +10 +GIN₂ +I₃.GIŠ +u +KAŠ +NAG-šu₂ +15 +ŠE +{u₂}IGI-lim +ina +1/2 +SILA₃ +I₃.GIŠ +u +KAŠ +NAG-šu₂ +90 +{u₂}sis-sin-ni +ŠA₃-bi +ina +10 +GIN₂ +A +NAG-šu₂ +IGI.4.GAL₂.LA +U₂ +ma-at-qa +ina +10 +GIN₂ +A +NAG-šu₂ +IGI.4.GAL₂.LA +U₂ +NAM.TI.LA +ina +10 +GIN₂ +I₃.GIŠ +NAG-šu₂ +1/2 +GIN₂ +{u₂}a-ra-ri-a-nu +ina +10 +GIN₂ +A +NAG-šu₂ +IGI.4.GAL₂.LA +{u₂}IGI.NIŠ +ina +10 +GIN₂ +A +NAG-šu₂ +IGI.4.GAL₂.LA +{u₂}me-er-gi-ra-nu +ina +10 +GIN₂ +KAŠ +NAG-šu₂ +DIŠ +NA +ZE₂ +DAB-su +GAZI{sar} +SUD₂ +ina +KAŠ +NAG-ma +i-ar₂-ru₃ +DIŠ +KI.MIN +hi-qa +KAŠ +NAG-ma +i-ar₂-ru₃ +DIŠ +KI.MIN +hi-qa +A.GEŠTIN.NA +KALAG.GA +NAG-ma +i-ar₂-ru₃ +DIŠ +KI.MIN +{šim}LI +SUD₂ +ina +KAŠ +NAG-ma +i-ar₂-ru₃ +DIŠ +KIMIN +{u₂}me-er-gi-ra-a-na +SUD₂ +ina +A +NAG-ma +i-ar₂-ru₃ +DIŠ +KIMIN +{u₂}IGI-lim +SUD₂ +ina +KAŠ +NAG-ma +i-ar₂-ru₃ +DIŠ +KI.MIN +MUN +lu +ina +A +lu +ina +KAŠ +NAG-ma +i-ar₂-ru₃ +DIŠ +KI.MIN +SUM{sar} +SUD₂ +ina +A +NAG-ma +i-ar₂-ru₃ +DIŠ +KI.MIN +ILLU +LI.TAR +SUD₂ +ina +A +NAG-ma +i-ar₂-ru₃ +DIŠ +KI.MIN +ILLU +LI.TAR +SUD₂ +ina +A +tara-muk +ina +MUL₄ +tuš-bat +NAG-ma +i-ar₂-ru₃ +DIŠ +KI.MIN +{u₂}UKUŠ₂.HAB +{šim}BULUH +{u₂}HAR.HAR +ina +I₃ +ina +MUL₄ +tuš-bat +NAG-ma +i-ar₂-ru₃ +DIŠ +KI.MIN +{u₂}NU.LUH.HA +SUM{sar} +a-he-na-a +SUD₂ +ina +KAŠ +NAG-ma +i-ar₂-ru₃ +DIŠ +NA +IGI.SIG₇.SIG₇ +GIG-ma +GIG-su +ana +ŠA₃ +IGI-MIN-šu₂ +E₁₁-a +ŠA₃ +IGI-MEŠ-šu₂ +GU-MEŠ +SIG₇-MEŠ +ud-du-hu +ŠA₃-MEŠ-šu₂ +na-šu-u +NINDA +u +KAŠ +u₂-tar-ra +NA +BI +IM +DU₃.A.BI +GIG +u₂-za-bal-ma +BA.UŠ₂ +DIŠ +NA +IGI.SIG₇.SIG₇ +GIG-ma +SAG.DU-su +pa-nu-šu₂ +ka-lu +ADDA-šu₂ +SUHUŠ +EME-šu₂ +ṣa-bit +ši-pir-šu₂ +SUMUN-ma +BA.UŠ₂ +DIŠ +NA +SU-šu₂ +SIG₇ +pa-nu-šu₂ +SIG₇ +ši-hat +UZU +TUKU +a-mur-ri-qa-nu +MU.NI +{šim}LI +SUD₂ +ina +KAŠ +NAG +{šim}ŠE.LI +SUD₂ +ina +KAŠ +NAG +{šim}ŠEŠ +SUD₂ +ina +KAŠ +NAG +SUHUŠ +{giš}NAM.TAR +NITA₂ +ša₂ +{im}SI.SA₂ +ša₂ +GURUN +NU +IL₂ +SUD₂ +ina +KAŠ +NAG +{u₂}mur-ra-an +KUR-i +SUD₂ +ina +KAŠ +NAG +{u₂}kur-ka-na₇ +SUD₂ +ina +KAŠ +NAG +{u₂}IGI-lim +SUD₂ +ina +KAŠ +NAG +{u₂}nam-ruq-qa +SUD₂ +ina +KAŠ +NAG +{u₂}nam-ruq-qa +SUD₂ +ina +A +NAG +IM.SAHAR.NA₄.KUR.RA +SUD₂ +ana +A.MEŠ +ŠUB +tu-sak₆ +NAG +{šim}LI +SUD₂ +ina +GA +NAG +{šim}ŠE.LI +SUD₂ +ina +GA +NAG +{šim}ŠEŠ +SUD₂ +ina +GA +NAG +{u₂}nam-ruq-qa +SUD₂ +ina +GA +NAG +5 +ŠE +KU.KU +AN.ZAH +ina +KAŠ +ŠUB +ina +MUL₄ +tuš-bat +tu-sak₆ +NAG +{im}KAL.LA +SUD₂ +ina +I₃ +e-re-ni +u +KAŠ +NAG +NUMUN +{giš}bi-ni +{u₂}SUMUN.DAR +SUD₂ +ina +KAŠ +NAG +NUMUN +{giš}bi-ni +SUD₂ +ina +KAŠ +NAG +NUMUN +{giš}bi-ni +SUD₂ +ina +I₃ +u +KAŠ +NAG +SUHUŠ +{giš}šu-ši +SUD₂ +MIN +{u₂}IGI.NIŠ +SUD₂ +ina +KAŠ +NAG +SUHUŠ +{giš}MA.NU +SUHUŠ +{giš}NU.UR₂.MA +ina +NINDU +UŠ₂-er +A-MEŠ-šu-nu-ti₃ +tu-sak₆ +tu-kaṣ₃-ṣa +NAG-ma +ina-eš +{u₂}a-ṣu-ṣum-ta₅ +{u₂}a-nu-nu-ta₅ +ina +qut-rin-ni +tu-qat-tar-šu +MUD₂ +{d}NIN.KA₆.EDIN +ša +ina +{u₂}NINNI₅ +GUB-zu +ta-mah-har +ina +I₃ +EŠ-MEŠ +I₃ +SUMUN +sip-pi₂ +ABUL +ki-lal-le-e +TI +ina +I₃ +EŠ-MEŠ +GIR₃-ra-am +ŠUB +uṣ-ṣa-a +uš-te-eš-šir +ti-tur-ra +na-di-ta₅ +e-ti-iq +{u₂}NIG₂ +GIDRU +SA₅ +SUD₂ +ina +KAŠ +NAG +{šim}GUR₂.GUR₂ +SUD₂ +ina +KAŠ +NAG +GURUN +{u₂}ka-zi-ri +SUD₂ +ina +KAŠ +NAG +{u₂}HAR.HAR +SUD₂ +ina +KAŠ +NAG +SU +{giš}NU.UR₂.MA +SUD₂ +ina +KAŠ +NAG +x +x +x +x +x +x +x +x +SUHUŠ +{u₂}EME +UR.GI₇ +SUD₂ +ina +KAŠ +NAG +IGI.6.GAL₂.LA +... +{u₂}IGI.NIŠ +qut-ri₃ +SUD₂ +ina +I₃ +u +KAŠ +NAG +PA +{giš}NU.UR₂.MA +... +DIŠ +NA +IGI.SIG₇.SIG₇ +DIRI +SUHUŠ +{giš}šu-ši +x +x +x +... +ina +MUL₄ +tuš-bat +NAG +hu-bi-bi-ta₅ +... +SUHUŠ +{giš}NU.UR₂.MA +ša₂ +{im}SI.SA₂ +... +šum-ma +ina +x +... +BAR +{giš}NU.UR₂.MA +... +sah-le₂-e +... +x +x +x +x +x +... +DIŠ +NA +IGI +SIG₇.SIG₇ +DIRI +... +ta-tab-bal +I₃.UDU +UKUŠ₂.HAB +... +MUŠ.DIM₂.GURUN.NA +... +x +x +x +... +DIŠ +MIN +x +x +ina +I₃.UDU +UKUŠ₂.HAB +SUD₂ +ina +KAŠ +NAG +DIŠ +MIN +UZU +GUD +kab-ra +GU₇-MEŠ +ZI₃-mi +NU +IGI +DIŠ +MIN +ŠE₁₀ +NAM.LU₂.U₁₈.LU +{šim}ŠEŠ +ina +I₃ +u +KAŠ +NAG +DIŠ +MIN +AMA +A.A +HAD₂.DU +SUD₂ +ina +I₃ +u +KAŠ +{lu₂}KURUN₂.NA +NAG-ma +BURU₈ +DIŠ +MIN +{u₂}ak-tam +ILLU +LI.TAR +U₂ +BABBAR +ina +I₃ +u +KAŠ +NAG +DIŠ +MIN +I₃.UDU +UKUŠ₂.HAB +ina +KAŠ +NAG +DIŠ +MIN +{šim}ŠEŠ +NUMUN +{šim}LI +IM.SAHAR.NA₄.KUR.RA +SUD₂ +ina +I₃ +u +KAŠ +NAG +DIŠ +MIN +HAR +KUG.SIG₁₇ +HUŠ.A +ina +ŠU-šu₂ +GAR-an +DIŠ +NA +IGI-MIN-šu₂ +IGI.SIG₇.SIG₇ +PA +{giš}NU.UR₂.MA +SUD₂ +ina +{gi}SAG.KUD +ana +ŠA₃ +IGI-MIN-šu₂ +MU₂-ah +DIŠ +NA +IGI-MIN-šu₂ +IGI.SIG₇.SIG₇ +IGI-MEŠ-šu₂ +UZU-MEŠ-šu₂ +DIRI +7 +MUŠ.DIM₂.GURUN.NA +ri-it-ku-ba-ti +x +x +x +x +TI-qe₂ +tu-qal-lap +ina +{na₄}NA.ZA₃.HI.LI +SUD₂ +ina +DIDA +HI.HI +GU₇-MEŠ-ma +ina-eš +... +x +x +x +sah-le₂-e +ŠE.SA.A +LAL-su +u +DIDA +HI.HI +GU₇-MEŠ-ma +ina-eš +... +x +x +x +x +ina +I₃ +u +KAŠ +NAG-ma +ina-eš +... +x +HU +ši-ši-ta₅ +... +ina +KAŠ +NAG-šu₂ +... +x +ta-qal-lap +x +... +NAG-šu₂ +DIŠ +NA +IGI-MIN-šu₂ +IGI.SIG₇.SIG₇ +DIRI +{u₂}LAG +A.ŠA₃ +SUD₂ +ina +KAŠ +NAG +an-nu-ha-ra +SUD₂ +ina +KAŠ +x +x +x +SUD₂ +ina +KAŠ +ŠIKA +NUNUZ +GA₂.NU₁₁{mušen} +SUD₂ +ina +KAŠ +KUG.SIG₁₇ +ina +SIG₂ +SA₅ +ina +ŠU-MIN-šu₂ +KEŠDA +DIŠ +KI.MIN +{u₂}x +{u₂}ŠAKIRA +U₂ +SA₅ +{u₂}LAL +GAZ +A.BI +ta-ṣa-hat +ina +KAŠ +NAG-ma +ina-eš +DIŠ +KI.MIN +GAZI{sar} +U₅ +ARGAB{mušen} +U₂ +BABBAR +ina +I₃.NUN +SUD₂ +IGI-MIN-šu₂ +te-te-ne₂-qi₂-ma +ši-ši-ta₅ +ZI-ah +DIŠ +NA +SU-šu₂ +SIG₇ +5 +ŠE +AN.ZAH +SUD₂ +ina +I₃ +u +KAŠ +NAG-šu₂ +tu-šam-ad-ma +BA.UŠ₂ +DIŠ +NA +IGI-MIN-šu₂ +a-mur-ri-qa-nu +DIRI +{u₂}HAB +SUD₂ +ina +KAŠ +NAG-ma +ina-eš +DIŠ +MIN +SUHUŠ +{giš}šu-ši +tu-bal +ta-sak₃ +ina +KAŠ +tara₃-sa₃-an +IGI +{d}UTU +NAG-ma +ina-eš +DIŠ +SUHUŠ +{u₂}EME +UR.GI₇ +tu-bal +ta-sak₃ +ina +KAŠ +tara₃-sa₃-an +NAG-ma +ina-eš +DIŠ +{u₂}an-nu-ha-ra +SUD₂ +ina +KAŠ +NAG-ma +ina-eš +DIŠ +NUNUZ +GA₂.NU₁₁{mušen} +SUD₂ +ina +KAŠ +NAG-ma +ina-eš +DIŠ +SUHUŠ +{giš}NU.UR₂.MA +SUD₂ +ina +KAŠ +ina +MUL +tuš-bat +ina +A₂.GU₂.ZI.GA +NAG-šu₂ +DIŠ +NUMUN +GI.ZU₂.LUM.MA +SUD₂ +ina +KAŠ +ina +MUL +tuš-bat +ina +A₂.GU₂.ZI.GA +NAG-šu₂ +DIŠ +{giš}GEŠTIN +KA₅.A +SUD₂ +ina +KAŠ +NAG-šu₂ +DIŠ +{u₂}NU.LUH.HA +SUD₂ +ina +KAŠ +NAG-šu₂ +DIŠ +SUHUŠ +{giš}NAM.TAR +SUD₂ +ina +KAŠ +NAG-šu₂ +DIŠ +ILLU +a-bu-ka-ti +ta-sak₃ +ina +KAŠ +NAG-šu₂ +DIŠ +{u₂}MUŠ.DIM₂.GURUN.NA +GAL +ta-sak₃ +ina +KAŠ +u +I₃ +NAG-šu₂ +DIŠ +NA +SU-šu₂ +SIG₇ +IGI-šu₂ +SIG₇ +u +GE₆ +SUHUŠ +EME-šu₂ +GE₆ +ah-ha-zu +MU.NE +MUŠ.DIM₂.GURUN.NA +GAL-ta +ša₂ +EDIN +ta-sak₃ +ina +KAŠ +NAG +ah-ha-zu +ša₂ +ŠA₃-šu₂ +SI.SA₂-am +DIŠ +NA +ah-ha-za +DIRI +{šim}LI +SUD₂ +ina +KAŠ +NAG +{šim}ŠE.LI +BABBAR +IM.SAHAR.NA₄.KUR.RA +SUD₂ +ina +I₃ +u +KAŠ +NAG-ma +ina-eš +{šim}KU₇.KU₇ +SUD₂ +ina +KAŠ +NAG +{u₂}ha-še-e +SUD₂ +ina +KAŠ +NAG +SUHUŠ +GI.ZU₂.LUM.MA +SUD₂ +ina +A +NAG +{šim}ŠEŠ +SUD₂ +ina +GA +NAG +DIŠ +NA +ah-ha-za +DIRI +SUHUŠ +{giš}šu-še +ta-sak₃ +ina +KAŠ +tara-muk +ina +MUL₄ +tuš-bat +NAG +DIŠ +NA +ah-ha-za +DIRI +{u₂}ṣu₂-ṣe-em-ta₅ +{u₂}a-nu-nu-ta₅ +ina +qut-ri-ni +tu-qat-tar-šu₂ +u +MUD₂ +KUN.DAR.GURUN.NA +ŠEŠ₂-su-ma +ina-eš +ru-ša-am +ša +si-ip-pi +ABUL +ki-lal-le-en +TI-qe₂ +ana +I₃.GIŠ +ŠUB-di +ta-ap-ta-na-ša-aš +gi-ir-ra +ŠUB +uṣ-ṣa-a-am +uš-te-eš-še-er +ti-tur-ra +na-di-a-am +i +x +x +x +DIŠ +NA +ah-ha-za +DAB-su +SUHUŠ +{giš}NAM.TAR +NITA₂ +ša₂ +IGI +{im}SI.SA₂ +TI-qe₂ +ina +KAŠ +NAG +{u₂}HAR.HAR +x +x +x +x +{u₂}KUR.GI.RIN₂.NA +SUD₂ +ina +KAŠ +{šim}ŠE.LI +BABBAR +SUD₂ +ina +KAŠ +NAG +{u₂}IGI-lim +{u₂}IGI.NIŠ +ina +KAŠ +SUHUŠ +{u₂}x +x +x +x +x +DIŠ +NA +MIN +IGI.SIG₇.SIG₇ +{šim}LI +{šim}ŠEŠ +SUD₂ +ina +KAŠ +NU +pa-tan +NAG +DIŠ +NA +MIN +IM.SAHAR.NA₄.KUR.RA +IM.SAHAR.GE₆.KUR.RA +DIŠ-niš +ina +KAŠ +tara-SUD +tu-zak-ka +x +x +x +x +DIŠ +NA +MIN +15 +ŠE-MEŠ +AN.ZAH +SUD₂ +ina +KAŠ +tara-SUD +tu-zak-ka +I₃ +hal-ṣa +ana +ŠA₃ +ŠUB-di +NU +pa-tan +NAG +DIŠ +NA +MIN +{im}KAL.LA +SUD₂ +ina +I₃ +u +KAŠ +NAG +NUMUN +{giš}bi-ni +ina +KAŠ +NAG +NUMUN +{giš}bi-ni +x +x +x +x +NUMUN +{giš}bi-ni +SUD₂ +ina +I₃ +u +KAŠ +NAG +SUHUŠ +{giš}šu-ši +ina +I₃ +u +KAŠ +NAG +{u₂}IGI.NIŠ +SUD₂ +ina +KAŠ +NAG.MEŠ +DIŠ +MIN +SUHUŠ +{giš}šu-ši +SUHUŠ +{giš}NU.UR₂.MA +ana +A +ŠUB +ina +NINDU +UŠ₂-er +E₁₁-a +ta-ša₂-hal +ŠED₇ +NU +pa-tan +NAG-MEŠ +DIŠ +NA +ah-ha-zu +ana +IGI-MIN-šu₂ +E₁₁-a-ma +IGI-MIN-šu₂ +GU-MEŠ +SIG₇-MEŠ +ud-du-ha +ŠA₃-MEŠ-šu₂ +na-šu-u₂ +NINDA +u +KAŠ +u₂-tar-ra +NA +BI +u₂-za-bal-ma +NU +TI +UŠ₂ +DIŠ +NA +ah-ha-zu +GIG +SAG.DU-su +pa-nu-šu +SU-šu₂ +ka-la-šu₂ +u₃ +SUHUŠ +EME-šu₂ +DAB +ana +GIG +šu-a-tu +{lu₂}A.ZU +ŠU-su +NU +ub-bal +NA +BI +UŠ₂ +NU +TI +DIŠ +NA +UD.DA +KUR-id +ZI +SAG.KI +GIG +ina +lam +DUGUD-šu₂ +ana +TI.BI +ru-uš-ša +ša +sip-pi +x +x +x +E₂.GAL +{m}AN.ŠAR₂-DU₃-A +MAN +ŠU₂ +MAN +KUR +AN.ŠAR₂{ki} +ša +{d}AG +u +{d}taš-me-tu₄ +GEŠTU-MIN +ra-pa-aš₂-tu₄ +iš-ru-ku-uš +e-hu-uz-zu +IGI-MIN +na-mir-tu₄ +ni-siq +ṭup-šar-ru-ti +ša +ina +LUGAL-MEŠ-ni +a-lik +mah-ri-ia +mam₂-ma +šip-ru +šu-a-tu +la +e-hu-uz-zu +bul-ṭi +TA +muh-hi +EN +UMBIN +liq-ti +BAR-MEŠ +ta-hi-zu +nak-la +a-zu-gal-lu-ti +{d}nin-urta +u +{d}gu-la +ma-la +ba-aš₂-mu +ina +ṭup-pa-a-ni +aš₂-ṭur +as-niq +IGI.KAR₂-ma +a-na +ta-mar-ti +ši-ta-as-si-ia +qe₂-reb +E₂.GAL-ia +u₂-kin +... +SAG.DU-su +ŠEŠ₂-ma +TI +... +kal-ma-tu₄ +ul +i-sa-niq-šu₂ +x +x +x +x +x +x +x +x +x +x +ana +A +PU₂ +ša +x +u +KU₆ +NU +GAL₂ +ŠUB +TU₅-šu₂-ma +UH +NU +TE-šu₂ +x +x +x +x +x +x +x +x +ina +I₃.GIŠ +e-re-ni +HI.HI +EŠ-MEŠ +DIŠ +NA +SAG.DU-su +kal-ma-ta₅ +ma-tu-uq-ta +ma-li +{u₂}mu-ur-ru +MU.NI +x +x +x +x +x +x +x +x +za-ku-ti-šu₂ +i-na-pa-ah-ma +TI.LA +x +x +x +x +la +ba-ši-i +{giš}URI +SUD₂ +ina +I₃.GIŠ +BARA₂ +ŠEŠ₂ +kal-ma-tu₂ +ul +ib-ba-aš₂-ši +DIŠ +NA +SAG.DU-su +ek-ke-ta +u +ri-šu-ta +DIRI +PIŠ₁₀.{d}ID₂ +SUD₂ +ina +I₃.GIŠ +e-re-ni +HI.HI +EŠ-MEŠ-su +DIŠ +KI +MIN +PIŠ₁₀.{d}ID₂ +ta-qal-lu +ina +I₃.GIŠ +SAG.DU-su +tu-kaṣ₃-ṣa +id-ra +ša₂ +MUN +ta-qal-lu +ina +I₃ +SAG.DU-su +tu-kaṣ₃-ṣa +DIŠ +NA +SAG.DU-su +sa-ma-nu +DAB-it +i-raš-ši-šum-ma +i-na-sah +i-na-ah +EGIR-nu +GAL-bi +NUMUN +{u₂}EME +UR.GI₇ +SAHAR +ŠE.GIŠ.I₃ +SAHAR +di-ki +{giš}DIH₃ +SAHAR +ŠE.GIŠ.I₃ +SAHAR +MUNU₆ +ŠE₁₀ +TU{mušen}-MEŠ +ša₂ +{giš}GIŠIMMAR.KUR.RA +HAD₂.DU-ti +NUMUN +{u₂}DILI +SUD₂ +ina +A +GAZI{sar} +KUM₂-ti +SILA₁₁-aš +SAG.DU-su +SAR-ab +tu-kaṣ₃-ṣa +LAL +ša₂ +KA +DUB +MIN-i +DIŠ +NA +SAG.DU-su +sa-ma-nu +DAB-it +SAHAR +KUN₄ +ša +{na₄}pu-li +ša +E₂ +SUMUN +U₂ +BABBAR +SIG₇.SIG₇-su +U₄-ma +ina +ŠA₃ +{giš}ar₂-ga-ni +GAL-bi +NUMUN +{u₂}EME +UR.GI₇ +SAHAR +ŠE.GIŠ.I₃ +ša₂ +SUHUŠ +maš-hal-ti +GAZ +DUH.ŠE.GIŠ.I₃ +HAD₂.A +UŠ +MUNU₆ +ŠE₁₀ +TU{mušen} +ha-ṣab-ti +{na₄}PEŠ₄ +NUMUN +{u₂}DILI +9 +U₂.HI.A +ŠEŠ +DIŠ-niš +SUD₂ +SAG.DU-su +ina +I₃.GIŠ +MUD₂ +{giš}EREN +EŠ-MEŠ +U₂.HI.A +an-nu-ti +ana +UGU +MAR +LAL-su-ma +TI +DIŠ +NA +SAG.DU-su +x +x +šum +DAB-it +a-la-pa-a +ša₂ +IGI +A-MEŠ +SAHAR +a-sur-re-e +ša₂ +ŠAH +ŠE₁₀ +PEŠ₂ +GIŠ.KIN₂ +x +x +x +x +x +x +x +x +KU.KU +{giš}TASKARIN +KU.KU +{giš}KIŠI₁₆ +ša₂ +ina +pi-ti-iq-ti-šu₂ +i-ra-bu-u₂ +bar-ša +SUHUŠ +x +x +x +x +x +x +x +x +{giš}sir₂-di +PA +{giš}bi-ni +PA +{giš}ŠE.NU +ZI₃ +GU₂.GAL +ZI₃ +GU₂.TUR +ZI₃ +ŠE.SA.A +LAL.MEŠ-su-ma +TI +DIŠ +NA +SAG.DU-su +x +x +x +DAB-it +a-la-pa-a +ša₂ +IGI +A-MEŠ +... +... +x +x +x +x +x +... +x +x +x +{šim}GUR₂.GUR₂ +{šim}LI +{u₂}KUR.KUR +... +x +x +ŠE.SA.A +ni-kip-ta₅ +DIŠ-nis +SUD₂ +... +x +x +a-šu-u₂ +SAG +NA +a-hi-iz +x +... +DIŠ +NA +SAG.DU-su +a-šu-u₂ +DAB-it +... +x +x +x +{šim}GUR₂.GUR₂ +{šim} +... +x +x +GAZ +SIM +KI +GU₂.GAL +... +DIŠ +NA +SAG.DU-su +a-šu-u₂ +DAB-it +... +x +x +x +{na₄}ŠU.U +NITA₂ +... +x +x +x +ana +KA-šu₂ +u +na-hi-ri-šu₂ +... +DIŠ +NA +SAG.DU-su +a-šu-u +DAB-it +{šim} +... +x +x +x +x +x +x +x +lu-u +ina +KAŠ.SAG +NAG-šu₂ +... +DIŠ +NA +x +x +x +x +SAG.DU-šu₂ +DAB-it +SUHUŠ +... +x +x +x +x +ba-lu +pa-tan +NAG-šu₂-ma +... +DIŠ +NA +a-šu-u₂ +lu +ŠUB-tu +DAB-su +10 +GIN₂ +sah-le₂-e +kab-ra-ti +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +u₂-nu-ut +ŠA₃-šu₂-nu +ta-tab-bal +tu-ša₂-bal +ina +ŠU-ka +ta-pa-ša₂-aš₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +DIŠ +NA +a-šu-u₂ +lu +ŠUB-tu +DAB-su +5 +GIN₂ +{u₂}KUR.RA +5 +GIN₂ +GAZI{sar} +x +x +{dug}UTUL₇ +ta-pal-la-aš +x +x +x +x +x +x +x +IGI +{dug}UTUL₇ +ina +NIG₂.SILA₁₁.GA₂ +ZIZ₂.A.AN +UŠ₂-hi +IZI +ta-šar₂-rap +{gi}SAG.KUD +ta-pal-la-aš-ma +ina +MURUB₄-at +{dug}BUR.ZI +ta-sa₃-niš +x +x +x +x +x +{gi}SAG.KUD +E₁₁-a +ina +KA-šu₂ +GID₂-ad +x +x +x +x +ŠEG₆-al +A.UZU +u +UZU +AL.GUR₄.RA +GU₇-ma +ina-eš +DIŠ +NA +a-šu₂-u +DAB-it +{im}KAL +SUD₂ +ina +x +x +NAG-MEŠ-ma +TI-uṭ +DIŠ +NA +a-šu-u₂ +DAB-it +7-et +u +7-et +ŠE-MEŠ +ina +NE +tu-qat-tar +ha-an-za-a +ša₂ +ŠA₃ +GI +DU₁₀.GA +TI-qe₂ +x +x +x +x +x +x +an +ina +KA-šu₂ +u₂-la-ʾa-at-ma +ana +na-hi-ri-šu₂ +in-niq-ma +TI-uṭ +x +x +x +x +x +tur-ar₂ +SUD₂ +ina +I₃.GIŠ +u +KAŠ.SAG +NAG-ma +TI-uṭ +DIŠ +NA +SAG.DU-su +a-šu-u₂ +a-hi-iz +eriš₆-ti +GAZI{sar} +NUMUN +{u₂}KU₆ +ina +x +x +x +x +me +šu₂ +ŠEŠ₂-MEŠ +TI-uṭ +x +x +x +DIDA +SIG₅ +LAL-id +sah-le₂-e +ARA₃-ti₃ +ana +UGU +MAR +x +x +x +GAR-an-ma +TI-uṭ +x +x +x +x +x +tu-zak +ina +MUL₄ +tuš-bat +ba-lu +pa-tan +NAG-šu₂ +1 +SILA₃ +x +x +1 +SILA₃ +šur-šum-me +KAŠ +SAG +tu-zak +x +x +x +x +iš-tu +e-liš +ana +šap-liš +tu-maš-šad +UD.10.KAM₂ +LAL-ma +TI +x +x +x +x +DABIN +ina +KAŠ +ta-sak₃ +SAG.DU-su +ŠED₇ +NUMUN +{u₂}KU₆ +SUD₂ +ina +I₃ +HI.HI +ina +{urudu}ŠEN.TUR +ŠEG₆-šal +EŠ-MEŠ-ma +TI +DIŠ +NA +a-šu-u₂ +DAB-it +ILLU +{šim}BULUH +{šim}BAL +ina +NE +SAR-šu₂ +ana +na-hi-ri-šu₂ +in-niq-ma +TI +DIŠ +KI +MIN +{šim}HAB +ILLU +{šim}BULUH +{u₂}KUR.GI.RIN₂.NA +ina +IZI +ŠUB +na-hi-ri-šu₂ +tu-qat-tar +I₃.GIŠ +KA +KIR₄ +x +x +x +x +MU₂-ma +TI +DIŠ +NA +a-šu-u₂ +DAB-su +{u₂}IGI-lim +{u₂}KUR.KUR +NUMUN +GAZI{sar} +NUMUN +{u₂}AB₂.DUH +U₂ +MAŠ.TAB.BA +ina +I₃ +ŠEŠ₂-su +ina +NE +SAR-šu₂ +EN₂ +qar-ra-di₃-ia +qar-ra-di₃-ia +TI.TI +qar-ra-di₃-ia +ŠU +za-ah +za-ah +u +qar-ra-di₃-ia-ma +hu.ul.qi +hu.ul.qi +ha.al.ti.ib +ha.al.ti.ib +ia-nu-um-ma +te-ne-eš-ma +mar +IMIN.NA +di.hu.un +di.hu.un +du-li +rap-šu-ma +KUM₂-šu₂ +NU +i-na-a-aš +ma-ʾ-du-ma +la +x +x +x +x +x +x +a-su₁₄-u₂ +ša₂ +a-me-lu-ti +TU₆.EN₂ +KA.INIM.MA +MAŠ.TAB.BA.KE₄ +DU₃.DU₃.BI +GAZI{sar} +{šim}GUR₂.GUR₂ +U₂ +a-ši-i +ina +NE +SAR-šu₂ +EN₂ +an-ni-ta₅ +3-šu₂ +ŠID-nu-ma +TI +EN₂ +edin +lal +edin-na +edin +lal +edin-na +edin +ki +gir₃ +si₃-ga +edin +ki +gir₃ +si₃-ga +mul-ra +ku-u₂ +ma-an-du +gi-ki +na +mul-mul-da +ta +EN₂ +KA.INIM.MA +MAŠ.TAB.BA.KE₄ +DU₃.DU₃.BI +{u₂}AB₂.DUH +ta-pa-aṣ +ina +I₃.GIŠ +HI.HI +EN₂ +3-šu₂ +ŠID-nu +ŠEŠ₂.ŠEŠ₂-ma +TI +U₂ +a-ši-i +KUD-si +NUMUN +{u₂}kam-ka-di +SUD₂ +ina +I₃.GIŠ +ŠEŠ₂ +{u₂}ka-man-ta +SUD₂ +ina +I₃.GIŠ +ŠEŠ₂ +U₂ +BABBAR +SUD₂ +ina +I₃.GIŠ +ŠEŠ₂ +{u₂}ha-šu-u +{u₂}HAB +sah-le₂-e +{u₂}zi-bu-u +U₂ +BABBAR +ILLU +{šim}BULUH +x +x +x +x +TEŠ₂.BI +ta-sak₃ +ina +I₃.GIŠ +u +KAŠ.SAG +NAG-MEŠ-ma +TI +DIŠ +NA +a-šu-u₂ +DAB-su +ana +TI-šu₂ +U₂ +BABBAR +U₅ +ARGAB{mušen} +MUN +eme-sal-lim +{u₂}KUR.RA +x +x +x +x +x +x +x +x +x +SAG.DU-su +LUH-si +GUR-ma +ta-bi-lam +ana +SAG.DU-šu₂ +MAR +{sig₂}AKA₃ +NIGIN +x +x +x +x +x +x +x +x +iš.ka +gi.im.ma +x +x +x +šu.uh.di.am +x +x +x +x +... +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +SIG₃-as-su +u +SAG.KI.MEŠ-šu₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ŠA₃ +ŠID-nu +ana +na-hi-ri-šu₂ +DUB +x +x +x +x +x +x +x +x +x +x +x +x +ba-ah-ra +GU₇ +ba-ah-ra +NAG-ma +TI +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +{u₂}AB₂.DUH +U₂ +MAŠ.TAB.BA +ina +I₃.GIŠ +ŠEŠ₂ +TI +... +it-ta-mu-uh +x +x +x +... +a-ša₂-a +KA +x +x +x +x +... +{u₂}aš-lim +ina +NE +SAR-šu₂-ma +MAŠ.TAB.BA +ZI +x +EN₂ +... +giš.hur.hur +u₂.pa.ak +u₂.pa.ak +TU₆.EN₂ +... +DU₃.DU₃.BI +A +{giš}NU.UR₂.MA +x +x +x +x +... +x +ana +KA-šu₂ +ta-šap-pak-ma +ina-eš +x +x +x +x +x +x +x +x +x +NUMUN +{u₂}KU₆ +{u₂}tar-muš +{u₂}IGI-lim +{u₂}IGI.NIŠ +ina +I₃ +x +x +x +x +x +x +x +x +x +x +GAR-an +ina +še-ri₃ +SAG.DU-su +LUH-si +EŠ-MEŠ-ma +ina-eš +x +x +x +x +x +x +x +x +x +NA₄ +UKUŠ₂.HAB +GAZI{sar} +BIL-ti +ina +I₃.GIŠ +e-re-ni +HI.HI +ŠEŠ₂.MEŠ +... +x +KUM₂-am +ana +SAG.DU-šu₂ +ŠUB +x +x +... +x +HI.HI +tu-kaṣ₃-ṣa +ina +I₃.GIŠ +e-re-ni +ina +I₃.NUN +HI.HI +EŠ.MEŠ +... +in +SAG.DU-su +LUH-si +NA₄ +UKUŠ₂.HAB +SUD₂ +ina +I₃.GIŠ +e-re-ni +EŠ.MEŠ +... +ana +ŠA₃ +ŠUB-di +TA +ib-taš-lu +SAG.DU-su +EŠ.MEŠ +ku-lil-ta₅ +HAD₂.DU +... +I₃.UDU +BIL.ZA.ZA +ina +I₃.NUN +HI.HI +ŠEŠ₂.MEŠ-ma +SIG₂ +E₃-a +... +A.GEŠTIN.NA +KALAG.GA +HI.HI +SAG.DU-su +tu-kaṣ₃-ṣa-ma +EŠ.MEŠ +... +x +x +... +x +x +x +x +x +SAR-šu₂-ma +ina +še-ri₃ +ina +A +KUM₂-ti +SAG.DU-su +LUH-si +I₃.GIŠ +e-re-ni +EŠ.MEŠ +I₃.UDU +UKUŠ₂.HAB +tur-ar₂ +x +x +x +x +x +x +x +MAR-ru +EŠ.MEŠ-ma +TI +DIŠ +KI +MIN +I₃.GIŠ +e-re-ni +KUM₂-am +ana +SAG.DU-šu₂ +ŠUB +DIŠ +KIMIN +x +x +x +x +x +x +{giš}GEŠTIN +KA₅.A +SUD₂ +ina +I₃.GIŠ +e-re-ni +EŠ.MEŠ +DIŠ +KI +MIN +PIŠ₁₀.{d}ID₂ +ina +li-ši +HI.HI +EŠ.MEŠ +DIŠ +KIMIN +PIŠ₁₀.{d}ID₂ +ina +LAL₃ +KUR-i +HI.HI +EŠ.MEŠ +DIŠ +KI +MIN +{u₂}IN₆.UŠ₂ +SUD₂ +ina +I₃ +EŠ.MEŠ +DIŠ +KIMIN +{u₂}ak-tam +SUD₂ +ina +I₃.UDU +HI.HI +EŠ.MEŠ +DIŠ +KIMIN +{u₂}TAL₂.TAL₂ +MAR +ina +I₃ +EŠ.MEŠ +DIŠ +KI +MIN +{u₂}KU₆ +ina +GA +AB₂ +KAŠ₃ +AB₂ +SIG₃-aṣ +SAG.DU-su +LUH +{giš}MAŠ.HUŠ +tur-ar₂ +SUD₂ +SAG.DU-su +SAR-ab +I₃ +EŠ.MEŠ-su +DIŠ +KI +MIN +I₃.UDU +UKUŠ₂.HAB +NA₄ +UKUŠ₂.HAB +tur-ar₂ +SUD₂ +SAG.DU-su +SAR-ab +I₃ +EŠ.MEŠ +LAL +ŠUB +LAL +DIŠ +KI +MIN +x +x +x +SUD₂ +ina +I₃.GIŠ +e-re-ni +HI.HI +EŠ.MEŠ-ma +SIG₂ +E₃-a +DIŠ +KI +MIN +x +x +x +SUD₂ +SAG.DU-su +EŠ.MEŠ +ZI₃ +GU₂.GAL +ZI₃ +GU₂.TUR +{u₂}LAG.GA₂ +SUD₂ +ina +A +GAZI{sar} +SILA₁₁-aš +LAL +{u₂}ak-tam +NAGA.SI +x +x +x +ina +A +KUM₂-ti +SAG.DU-su +LUH-si +DIŠ +NA +gu-raš-tu +DIRI +{u₂}KU₆ +{u₂}x +... +DIŠ-niš +SUD₂ +ina +I₃ +HI.HI +EŠ.MEŠ-ma +SIG₂ +E₃-a +DIŠ +KI +MIN +{u₂}ak-tam +{u₂}AB₂.DUH +SUD₂ +ina +... +SAG.DU-su +LUH-si +BAR +{giš}x +x +x +ta-qal-lu +ARA₃-en +MAR +DIŠ +KI +MIN +I₃ +ŠA₃ +KU₆ +EŠ.MEŠ +... +ud +SUD₂ +MAR +DIŠ +KI +MIN +sa-ma-na₇ +ša₂ +E₂.GAR₈ +ta-kar-ma +ŠEŠ₂ +... +x +ud +ina +LAL₃ +KUR-i +BABBAR +u +A +LUH-ma +ina-eš +U₂ +BABBAR +{u₂}KU₆ +{u₂}ak-tam +3 +U₂ +gu-raš-ti +... +SAG.DU-su +ina +I₃ +EŠ.MEŠ +{u₂}IGI-lim +{u₂}KU₆ +SUHUŠ +{giš}MAŠ.HUŠ +SUHUŠ +{giš}bi-ni +UZU.DIR +SUD₂ +... +x +ina +A +SAG.DU-su +LUH +ina +I₃ +EŠ.MEŠ +DIŠ +NA +... +SAG.DU-su +LUH +{u₂}LAL +{u₂}u₅-ra-na +SUD₂ +ina +I₃ +EŠ.MEŠ +... +SUD₂ +ina +LAL₃ +KUR-i +EŠ.MEŠ +... +i-šal-lim +... +x +x +x +DIŠ +KI +MIN +{u₂}LAG +GANA₂ +GAZ +I₃.UDU +A.ZA.LU.LU +SUD₂ +... +ana +ku-ra-ri +ZI-hi +hu-bu-uš +SUN₂ +ina +šur-šum-me +... +DIŠ +KI +MIN +{u₂}LAG +A.ŠA₃ +ina +IGI +ta-kar +IM.SAHAR.GE₆.KUR.RA +... +DIŠ +KI +MIN +NUMUN +GA.RAŠ +{u₂}ak-tam +{u₂}ṣa-lam-ta₅ +DIŠ-niš +SUD₂ +... +DIŠ +NA +SAG.DU-su +ku-ra-ra +DAB-it +ŠE₁₀ +{d}nisaba +SUD₂ +ta-kar +MAR +x +x +x +x +x +x +x +x +x +x +laq-laq-ta-šu₂ +ta-tab-bal +ina +KAŠ +LUH-si +KU.KU +{giš}TASKARIN +MAR +LAL +ina +IGI +KI.NA₂-šu₂ +x +x +x +x +x +x +x +x +x +x +KU.KU +{giš}TASKARIN +KU.KU +{giš}e-lam-ma-ku +KU.KU +{giš}kal-mar-hi +ŠE₁₀ +{d}nisaba +x +x +x +x +x +x +x +ina +šer₂-ti +DU₈ +SAR-ab +{šim}MAN.DU +{giš}EREN +tur-ar₂ +SUD₂ +ana +... +ina +A +GAZI{sar} +LUH-si +KU.KU +{giš}TASKARIN +KU.KU +{giš}e-lam-ma-ku +KU.KU +{giš}kal-mar-hi +... +DIŠ +KI +MIN +SAG.DU-su +tu-gal-lab +I₃.HAB +ŠEŠ₂ +ina +IGI +KI.NA₂-šu₂ +DU₈ +SUHUŠ +... +SUHUŠ +{giš}ku-ma-hi +IM.GU₂ +NIG₂.NIGIN₂.NA +{u₂}tar-muš +NUMUN +{u₂}qut-ra-te +x +... +DIŠ-niš +SUD₂ +ina +KAŠ₃ +AB₂.GU₄ +SAG.DU-su +te-sir₂ +ina +KAŠ +LUH-si +ina +A +GAZI{sar} +x +... +NUMUN +{giš}ŠE.NU₂.A +NUMUN +{giš}NAM.TAR +NUMUN +GADA +NUMUN +{u₂}AB₂.DUH +PA +{u₂}TAL₂.TAL₂ +{giš}DIH₃ +x +x +x +x +x +x +x +x +x +x +{u₂}KUR.GI.RIN₂.NA +{u₂}sag-gi-la-ta₅ +PA +{u₂}MA₂.ERIŠ₄.MA₂.LA₂-e +{u₂}MAŠ.HUŠ +x +x +x +x +x +x +x +HAD₂.A +GAZ +SIM +ina +A +GAZI{sar} +SILA₁₁-aš +GUR-ma +HAD₂.A +GAZ +SIM +ina +KAŠ.SAG +x +x +x +x +x +x +x +x +x +x +x +3 +u₄-me +NU +DU₈ +ina +4 +u₄-me +ina +DU₈-ka +ina +KAŠ₃ +KUM₂-me +LUH-si +... +... +x +x +x +... +DIŠ +KI +MIN +x +x +ina +I₃.UDU +SUD₂ +x +... +DIŠ +KI +MIN +PIŠ₁₀.{d}ID₂ +{u₂}GAMUN.GE₆ +... +DIŠ +KI +MIN +{im}KAL +SUD₂ +... +DIŠ +NA +SAG.DU-su +ku-ra-ra +DAB +... +{u₂}KUR.RA +sah-le₂-e +{u₂}u₅-ra-nu +... +I₃.GIŠ +e-re-ni +EŠ.MEŠ +... +DIŠ +NA +ku-ra-ra +GIG +x +x +x +x +x +x +x +x +x +x +x +DIŠ +KI +MIN +A.GEŠTIN.NA +BIL.LA₂ +... +x +x +... +ina +ša-ni-i +IM.GU₂.EN.NA +... +ana +KI +MIN +ŠE₁₀ +{d}nisaba +ana +x +... +DIŠ +KI +MIN +sa-ma-na₇ +te-sir₂ +... +MAR +ina +I₃.NUN +EŠ.MEŠ +... +DIŠ +KI +MIN +A.GEŠTIN.NA +BIL.LA₂ +... +MAR +SUM{sar} +SUM.SIKIL{sar} +... +DIŠ +NA +SAG.DU-su +... +x +ZI₃.KUM +ZI₃ +GU₂.GAL +IM.BABBAR +ba-aš-la +NAGA.SI +... +IM.GU₂.EN.NA +... +GAZ +SIM +SAG-ka +u₂-kal +I₃.NUN +EŠ.MEŠ +LAL +ŠUB +{giš}GEŠTIN +KA₅.A +x +... +DIŠ +KI +MIN +... +x +... +DIŠ +KI +MIN +x +x +x +{šim}LI +DABIN +ina +A.GEŠTIN.NA +HI.HI +SAG.DU-su +tu-kaṣ₃-ṣa +UD.3.KAM +ŠUB +... +x +x +x +SAG.DU-su +LUH-si +UD.3.KAM +ŠUB-di +SAR-ab +UGU +ku-ra-ri +x +... +x +x +x +ŠED₇ +I₃.NUN +MUN +tu-ba-har +ina +DIDA +SIG +u +I₃.GIŠ +e-re-ni +... +... +x +x +tur-ar₂ +SUD₂ +MAR +GURUN +UKUŠ₂.HAB +x +... +... +x +x +a +IGI +GIG +... +... +... +A.GEŠTIN.NA +... +I₃.GIŠ +e-re-ni +EŠ.MEŠ +U₂ +BABBAR +{u₂}... +{u₂}KU₆ +MUN +a-ma-ni₇ +ina +KAŠ₃ +ANŠE +u +A.GEŠTIN.NA +... +EN₂ +su.ub +hi.im +su.ub +hi.im +a +na +x +... +la.ni +hu.bi +la.a.ni +hu.bi +la.ni +... +DU₃.DU₃.BI +{šim}er-ra +UGU +ku-ra-ri +... +sa-ma-na₇ +ša₂ +E₂.GAR₈ +ta-kar +... +ina +I₃.NUN +SUMUN +HI.HI +x +... +EN₂ +ki.ni.ip +ki.ni.ip +ba +ah +... +DU₃.DU₃.BI +ina +an-ṣa-ab-ti +KUG.SIG₁₇ +IGI +GIG +ta-kaṣ₃ +... +x +x +GA.RAŠ{sar} +{u₂}ṣa-lam-ta₅ +{u₂}KUR.RA +... +EN₂ +ma-mit +GIM +šar-ra-qi₂ +ina +KA₂ +pil-ši +un +... +EN₂ +a-šar +tab-ba-ni-i +{d}e₂-a +lip-šur +x +... +EN₂ +at.he.ma +at.he.e +he.le.e.ma +at.he.le +... +DU₃.DU₃.BI +na-gap-pa +ša₂ +A.GEŠTIN.NA +ta-kar +qut-ra +MAR +x +... +5 +KA.INIM.MA +GIG.GIR +ZI-hi +x +x +x +hur.ri.im +su.ub +hur.ri.im +a.la +šu.uh.ta +x +... +x +x +x +x +x +x +a.pi.il.lat +aš +kur.ba.an.ni +id.ki.ia +ul +x +... +... +x +x +x +x +x +x +x +x +x +x +x +x +gi +ha +ba +x +x +x +x +x +x +x +x +x +x +ZI-hi +x +x +x +x +x +x +x +x +x +hu-bu₄-uš +SUN₂ +ŠEŠ₂ +KUŠ +ANŠE +ina +IZI +tur-ar₂ +SUD₂ +MAR +a-la-pa-a +ina +IZI +x +x +x +x +x +x +x +x +x +tur-ar₂ +IGI +GIG +MAR +ta-ʾa-a +ša₂ +UDU.NITA₂ +IGI +GIG +EŠ.MEŠ +KUŠ +HAD₂.A +GAZ +x +x +x +TI +GUD +ID₂ +ina +IZI +tur-ar₂ +IGI +GIG +MAR +{u₂}IGI-lim +SUD₂ +IGI +GIG +EŠ.MEŠ +x +x +x +x +x +x +ta-kar +ina +an-ṣa-ab-ti +KUG.SIG₁₇ +IGI +GIG +ta-kaṣ₃ +x +x +x +x +x +x +x +TI.LA.KE₄ +x +x +x +x +x +x +x +x +x +x +x +si-ki-tu₂ +SAG.DU-su +x +x +x +x +x +x +x +ina +UD.4.KAM +SAG.DU-su +... +a +... +LUH-si +... +MAR +... +MAR +... +MAR +DIŠ +NA +ŠA₃-šu₂ +GIG +GA +{gud}AB₂ +KUG.GA +I₃.NUN +UD.2.KAM₂ +NAG +... +DIŠ +NA +ŠA₃-šu₂ +GIG +{u₂}GEŠTIN +KA₅.A +SUD₂ +ina +KAŠ +NAG +{u₂}IM.DU +SUD₂ +ina +KAŠ +NAG +{u₂}šiz-ba-na₇ +SUD₂ +ina +KAŠ +NAG +1/2 +SILA₃ +sah-le₂-e +1/2 +SILA₃ +NAGA.SI +1/2 +SILA₃ +IM.GU₂.EN.NA +1/2 +SILA₃ +{giš}ŠE.NU +1/2 +SILA₃ +ZI₃.KUM +1/2 +SILA₃ +{šim}LI +1/2 +SILA₃ +{šim}GUR₂.GUR₂ +1/2 +SILA₃ +ZI₃ +GU₂.GAL +1/2 +SILA₃ +ZI₃ +GU₂.TUR +1/2 +SILA₃ +{u₂}SIKIL +1/2 +SILA₃ +{u₂}NIG₂ +GIDRU +1/2 +SILA₃ +{u₂}ur₂-ne₂-e +GAZ +ina +KAŠ.SAG +ina +{urudu}ŠEN.TUR +tara-bak +ina +TUG₂ +te-ṭer₅-ri +IGI +u +MAŠ.SILA₃ +LAL-id +ana +KI +MIN +1/3 +SILA₃ +sah-le₂-e +1/3 +SILA₃ +ŠE₁₀ +TU{mušen} +1/3 +SILA₃ +ŠE.SA.A +1/3 +SILA₃ +{šim}LI +1/3 +SILA₃ +{šim}GUR₂.GUR₂ +HI.HI +ma-la +na-aṣ-ma-ti +tu-šam-ṣa +ina +KAŠ.SAG +SILA₁₁-aš +LAL-id +ana +KI +MIN +1 +MA.NA +PA +{giš}ŠE.HAR +SUD₂ +ina +A +GAZI{sar} +ŠEG₆-šal +tu-kaṣ₃-ṣa +LAL-id +ana +KI +MIN +1/2 +SILA₃ +ZA₃.HI.LI +1/2 +SILA₃ +ŠE.SA.A +SUD₂ +ina +A +GAZI{sar} +SILA₁₁-aš +{šim}GUR₂.GUR₂ +{šim}LI +ana +IGI +ta-za-ru₃ +IGI +u +MAŠ.SILA₃ +LAL +ana +KI +MIN +1/2 +SILA₃ +ZI₃ +MUNU₆ +1/2 +SILA₃ +ZI₃ +DUH.ŠE.GIŠ.I₃ +1/2 +SILA₃ +ZI₃ +GIG +1/2 +SILA₃ +{šim}GUR₂.GUR₂ +1/2 +SILA₃ +{šim}LI +SUD₂ +HI.HI +ina +A +GAZI{sar} +ta-la-aš +LAL-id +DIŠ +NA +ŠA₃-šu₂ +GIG +PA +{u₂}er-re-e +HAD₂.A +GAZ +SIM +ina +LAL₃ +KAŠ.SAG +u +I₃ +hal-ṣi +SIG₃-aṣ +ba-lu +pa-tan +NAG-šu₂ +ina +DUR₂-šu₂ +SI.SA₂-ma +TI +DIŠ +NA +ŠA₃-šu₂ +GIG +{šim}su-a-di +tu-ha-sa +ina +A +ŠED₇ +tu-la-bak +NU +pa-tan +NAG +DIŠ +NA +ŠA₃-šu₂ +GIG-ma +DUB₂ +NUMUN +GIŠ.GI.ZU₂.LUM.MA +SUD₂ +ina +KAŠ.SAG +NAG +1/2 +SILA₃ +sah-le₂-e +1/2 +SILA₃ +NAGA.SI +1/2 +SILA₃ +ZI₃ +GIG +1/2 +SILA₃ +ZI₃.KUM +GAZ +ina +KAŠ.SAG +SILA₁₁-aš +ina +TUG₂ +SUR +IGI +u +MAŠ.SILA₃ +LAL +DIŠ +NA +ŠA₃-šu₂ +GIG +{u₂}IGI-lim +SUD₂ +ina +KAŠ.SAG +tara-muk +ina +MUL₄ +tuš-bat +NU +pa-tan +NAG +PA +{giš}ŠE.NU +GAZ +ina +ZI₃.KUM +HI.HI +ina +A +GAZI{sar} +tara-bak +ina +TUG₂.HI.A +SUR +IGI +u +MAŠ.SILA₃ +LAL +ana +KI +MIN +GA.RAŠ{sar} +pu-ut-ta +TI +ta-sak₃ +ina +GA +NAG +1/2 +SILA₃ +ZA₃.HI.LI +1/2 +SILA₃ +ŠE.SA.A +ina +GA +SILA₁₁-aš +ina +TUG₂ +SUR +LAL +DIŠ +NA +ŠA₃-šu₂ +GIG-ma +ŠA₃ +GIR₃.PAD.DU-šu₂ +SIG₇ +ŠA₃-šu₂ +GIG-MEŠ +DIRI +UD.DA +SA₂.SA₂ +I₃.UDU +UKUŠ₂.HAB +ina +ZI₃ +ŠE.SA.A +HI.HI +14 +ku-pa-tin-ni +LAL₃ +SUD +u₂-al-lat +1/2 +SILA₃ +ZA₃.HI.LI +{giš}si-ha +SUD₂ +ina +UZU +GUD +GUR₄.RA +GU₇-MEŠ +1/2 +SILA₃ +ZA₃.HI.LI +ṭe₄-ne-ti₃ +ina +x +x +x +SILA₁₁-aš +LAL +DIŠ +NA +ŠA₃-šu₂ +GIG-ma +di-ik-ša₂ +TUKU-ši +NINDA +GU₇ +KAŠ +NAG +ana +DUR₂-šu₂ +DUB-ak +ru-pu-uš-ta +ina +A.GAR₃ +BURU₈ +GIGURU₃ +{u₂}NU.LUH.HA +SUD₂ +ina +A +NAG +U₂ +BABBAR +ina +I₃.GIŠ +tara-bak +ana +DUR₂-šu₂ +DUB-ak +GEŠTIN +SUR +NAG +{šim}LI +ŠIM.ŠAL +x +x +x +ina +{urudu}ŠEN.TUR +tara-bak +ina +TUG₂ +SUR +LAL +ana +KI +MIN +U₂ +BABBAR +ina +I₃.GIŠ +NAG +i-ar₂-ru₃ +x +x +x +x +x +x +x +{u₂}IN₆.UŠ₂ +{u₂}EME +UR.GI₇ +ina +A +ŠEG₆.GA₂ +tara-has₂-su +A +GAZI{sar} +x +x +x +x +x +x +GIŠIMMAR +PA +{giš}šu-še +{šim}ŠE.LI +PA +{giš}ŠE.NU +{šim}LI +{šim}GUR₂.GUR₂ +x +x +x +x +x +ina +KUŠ +te-ṭer₅-ri +LAL +ana +KI +MIN +{u₂}GEŠTIN +KA₅.A +ina +KAŠ +NAG +U₂ +BABBAR +ina +I₃ +NAG +x +x +x +x +x +ina +LAL₃ +GU₇ +A +{giš}ŠE.NU +A +GAZI{sar} +ana +DUR₂-šu₂ +DUB-ak +PA +x +x +x +x +{u₂}SIKIL +PA +{u₂}ŠAKIRA +PA +{u₂}IN₆.UŠ₂ +GAZ +x +x +x +x +x +SUR +LAL +ana +KI +MIN +{u₂}NU.LUH.HA +{u₂}ti-ia₂-ta₅ +SUD₂ +ina +KAŠ +NAG +U₂ +BABBAR +ina +I₃.GIŠ +tara-bak +ana +DUR₂-šu₂ +DUB-ak +PA +{u₂}GUR₂.UŠ +PA +{giš}KIŠI₁₆ +PA +{giš}DIH₃ +ina +A +ŠEG₆.GA₂ +tara-has₂-su +A +{giš}ŠE.NU +A +GAZI{sar} +ana +DUR₂-šu₂ +DUB-ak +{šim}LI +{šim}GUR₂.GUR₂ +x +x +x +ina +{urudu}ŠEN.TUR +tara-bak +ina +TUG₂ +te-ṭer₅-ri +LAL +DIŠ +NA +ŠA₃-šu₂ +GIG-ma +ŠA₃ +... +x +x +x +x +x +x +... +ana +KI +MIN +U₂ +BABBAR +x +... +x +{u₂}SIKIL +x +x +x +x +x +x +... +ana +DUR₂-šu₂ +DUB-ak +{šim}LI +{šim}ŠE.LI +{šim}GAM.MA +ILLU +{šim}BULUH +ŠIM.HI.A +GAZ +ina +I₃.UDU +HI.HI +ina +KUŠ +SUR +LAL +ana +KI +MIN +{šim}ŠE.LI +BABBAR +ina +KAŠ +NAG-ma +i-ar₂-ru₃ +SUHUŠ +{giš}NAM.TAR +NITA₂ +ina +KAŠ +NAG-ma +i-ar₂-ru₃ +LAL₃ +KUR.RA +HAD₂.DA +ina +A +{giš}ŠE.NU +tara-has₂-su +A.GEŠTIN.NA +I₃.GIŠ +KUM₂-am +ana +DUR₂-šu₂ +DUB-ak +PA +{giš}šu-še +PA +GIŠ.GI.ZU₂.LUM.MA +PA +{u₂}ŠAKIRA +PA +{u₂}EME +UR.GI₇ +{šim}LI +ZU₂.LUM.MA +SUD₂ +ina +KAŠ +HI.HI +GUR-ma +HAD₂.DU +GAZ +SIM +ina +x +x +x +ina +KUŠ +SUR +LAL +ana +KI +MIN +{u₂}KUR.KUR +ina +KAŠ +NAG-ma +i-ar₂-ru₃ +U₂ +BABBAR +ina +I₃.GIŠ +NAG-ma +i-ar₂-ru₃ +{u₂}PEŠ.TUR.ZI +GIŠIMMAR +{u₂}NAM.TAL +{šim}LI +GAZI{sar} +ina +A +ŠEG₆.GA₂ +tara-has₂-su +{šim}GUR₂.GUR₂ +ta-sak₃ +x +x +x +KUM₂-am +I₃.GIŠ +ana +ŠA₃ +tu-na-tak +ana +DUR₂-šu₂ +DUB-ak +PA +{giš}ŠENNUR +PA +{giš}MA.NU +PA +{giš}ŠE.NU +PA +{giš}GE₆.PAR₇ +x +giš +{šim}LI +{šim}GUR₂.GUR₂ +GAZ +ina +KAŠ +HI.HI +GUR-ma +HAD₂.A +GAZ +ina +I₃.UDU +HI.HI +ina +KUŠ +te-ṭer₅-ri +LAL +DIŠ +NA +ŠA₃-šu₂ +GIG-ma(GIŠ) +mim-ma +GIG +{u₂}KUR.RA +{u₂}HAR.HAR +{u₂}KUR.KUR +{u₂}GAMUN.GE₆ +{u₂}ur₂-ne₂-e +{u₂}tar-muš₈ +{u₂}IGI-lim +{u₂}eli-kul-la +{u₂}SIKIL +{u₂}im-hur-NIŠ +GURUN +{giš}DIH₃ +x +{u₂}x +x +PA +{u₂}UKUŠ₂.HAB +SUD₂ +ina +KAŠ +NAG +ina +DUR₂-šu₂ +SI.SA₂ +ina +GE₆ +ina +A +GAZI{sar} +ŠEG₆.GA₂ +x +x +x +... +x +x +x +UZU +kab-ra +ša +ŠAH +GU₇ +TI +... +SUD₂ +ina +I₃.GIŠ +NU +pa-tan +EME-šu₂ +DAB-bat +... +x +šu₂ +u₂-sak₆-ka +... +x +x +ina +I₃.GIŠ +HI.HI +ta-kan-nak-ma +UD.3.KAM₂ +GAR +... +i-ar₂-ru₃ +UD.7.KAM₂ +NAG-MEŠ +... +ina +KAŠ.SAG +NAG +... +x +PA +{giš}NU.UR₂.MA +... +ina +KAŠ.SAG +NAG +... +x +ina +I₃.GIŠ +u +KAŠ.SAG +GAZ +... +x +x +ad +... +... +x +... +SILA₁₁-aš +... +TU₅-MEŠ-šu₂-ma +TI +... +NAG-ma +TI +... +TI-uṭ +... +... +... +x +... +NA₄ +ZU₂.LUM.MA +x +x +... +A-MEŠ +NU +NAG +A-MEŠ +... +{u₂}KUR.RA +SUD₂ +ina +A +... +BAR +{giš}NU.UR₂.MA-a +ša +{im}SI.SA₂ +ina +... +SUM{sar} +SIG₇-su +hi-bi-iš +hi-bi-iš +u₂-al-lat +x +... +NUMUN +{u₂}a-zu-ki-ra-ni +SUD₂ +... +1/3 +SILA₃ +A.GEŠTIN.NA +1/3 +SILA₃ +GAZI{sar} +10 +KISAL +MUN +1/2 +SILA₃ +I₃.GIŠ +BARA₂.GA +... +A.UZU +GUR₄ +5 +GIN₂ +MUN +ana +ŠA₃ +ŠUB-ma +NU +pa-tan +NAG +SUHUŠ +... +I₃.UDU +{u₂}UKUŠ₂.HAB +GAZ +1 +SILA₃ +A.GEŠTIN.NA +ŠEG₆.GA₂ +ana +ŠA₃ +ŠUB-ma +... +{šim}LI +SUD₂ +ina +I₃.GIŠ +... +DIŠ-ma +UH₂ +TUKU.TUKU +{u₂}LAG +GAN₂ +SUD₂ +ina +A +{giš}NU.UR₂.MA +ŠED₇ +ina +DUR₂-šu₂ +DUB-ak-ma +TI +ša-ru-ra +ša +{u₂}UKUŠ₂.HAB +HAD₂.DU +GAZ +ana +ŠA₃ +NIG₂.SILA₁₁.GA₂ +u +LAL₃ +KUR-i +HI.HI +ŠE₁₀ +TU{mušen}-MEŠ +u₂-al-lat +KAŠ.SAG +ZU₂.LUM +NAG +{u₂}HAB +SUD₂ +ina +I₃.GIŠ +BARA₂.GA +NAG.NAG +DIŠ +NA +ŠA₃-MEŠ-šu₂ +MU₂.MU₂ +it-ta-ne₂-bi-ṭu +ŠA₃-šu +ana +par-re-e +e-ta-ne₂-pa-aš₂ +ana +TI-šu₂ +SUM{sar} +{u₂}GAMUN.GE₆ +TEŠ₂.BI +SUD₂ +ina +KAŠ.SAG +NU +pa-tan +NAG-MEŠ +TI +ana +KI +MIN +{u₂}SIKIL +SIG₇-su +SUD₂ +KI +I₃.ŠAH +HI.HI +NU +pa-tan +u₂-na-ṣab +KAŠ +BIL₂.LA₂ +NAG +TI +DIŠ +NA +ŠA₃-MEŠ-šu₂ +MU₂.MU₂ +it-te-ne₂-bi-ṭu +IM +ina +ŠA₃-šu₂ +NIGIN-ur +i-le-bu +I₃.UDU +{u₂}UKUŠ₂.HAB +ana +DUR₂-šu₂ +GAR-an +{u₂}SUM{sar} +{u₂}zi-ba-a +SUD₂ +ina +KAŠ +NAG-MEŠ +2 +UD-me +1/2 +SILA₃.TA.AM₃ +I₃.GIŠ +ana +DUR₂-šu₂ +DUB-ak +TI +DIŠ +NA +ŠA₃-MEŠ-šu₂ +MU₂.MU₂-hu +it-te-ne₂-bi-ṭu +NU +pa-tan +KAŠ +LAL₃ +bah-ra +NAG-šu₂ +i-ar₂-ru +A.GEŠTIN.NA +ŠEG₆-šal +{u₂}KUR.RA +MUN +TEŠ₂.BI +SUD₂ +ana +ŠA₃ +GAZ +LAL₃ +u +I₃ +hal-ṣa +ŠUB +ana +DUR₂-šu₂ +DUB-ak +TI +DIŠ +NA +ŠA₃-MEŠ-šu₂ +it-te-nen-bi-ṭu₃ +NU +pa-tan +KAŠ +ina +{dug}LA.HA.AN +NAG +A.GEŠTIN.NA +ŠEG₆.GA₂ +{u₂}KUR.RA +MUN +eme-sal-li₃ +ana +ŠA₃ +ŠUB +I₃.GIŠ +ana +ŠA₃ +tu-na-tak +ana +ŠA₃ +na-aš-pak-ti +DUB-ak +I₃.GIŠ +ina +ŠU.SI +GUB₃-ka +ka-lu-šu₂ +ŠEŠ₂-su +DIŠ +NA +ŠA₃-MEŠ-šu₂ +it-te-ne₂-bi-ṭu +I₃.UDU +UKUŠ₂.HAB +ana +DUR₂-šu₂ +GAR-an +SUM{sar} +7 +u +7 +u₂-al-lat +SUM{sar} +{u₂}GAMUN.GE₆ +SUD₂ +ina +KAŠ +NAG +LAL₃ +KUR-i +I₃.GIŠ +ana +DUR₂-šu₂ +DUB +NUMUN +{u₂}a-zu-ki-ra-a-ni +SUD₂ +GU₇ +DIŠ-ma +UH₂ +TUKU.TUKU +gan-ha +UD.DA +KUR +A +{giš}NU.UR₂.MA +ŠUR +NAG +GA +I₃.GIŠ +EME-šu₂ +DAB-bat +NAG +1 +SILA₃ +KAŠ +NAG +{šim}LI +SUD₂ +ina +KAŠ +NAG +{u₂}GAMUN.GE₆{sar} +SUD₂ +ina +KAŠ +NAG +{u₂}GAMUN.GE₆{sar} +SUD₂ +ina +GEŠTIN +NAG +I₃.GIŠ +u₂-al-lat +DIŠ +NA +SAG +ŠA₃-šu₂ +KUM₂ +ŠA₃-MEŠ-šu₂ +MU₂.MU₂-hu +1/2 +SILA₃ +{šim}HAB +ina +šur-šum-me +KAŠ +ta-rab-bak +ina +TUG₂ +TE +LAL-id +ana +na-aṣ-ma-ti +GAZI{sar} +ŠIM.ŠAL +ta-za-ru₃ +IGI +u +MAŠ.SILA₃ +LAL +x +x +x +x +x +x +x +x +x +x +x +x +x +x +{šim}LI +{šim}ŠE.LI +{u₂}HAR.HAR +ana +KAŠ +ŠUB +x +x +x +x +x +x +x +GAZ +lu +ba-hir₂ +NAG-šu₂ +ina +A₂ +MUŠEN +tu-šap-ra-šu-ma +TI +DIŠ +NA +ŠA₃-MEŠ-šu₂ +ma-gal +nap-hu +NINDA-MEŠ +KAŠ-MEŠ +ina +KA-šu₂ +GUR.GUR-ra +SAG.DU-su +GABA-su +LAL₂-id +ra-bi-ik +ZI₃.KUM +ŠEG₆-šal +ina +LAL₃-MEŠ +I₃.UDU +u +I₃.NUN.NA +GU₇-MEŠ +SUM{sar} +SUM.SIKIL{sar} +GA.RAŠ{sar} +sah-le₂-e +{u₂}ur₂-ne₂-e +3 +UD-me +NU +GU₇ +A +NU +TU₅-ma +TI +DIŠ +NA +ŠA₃-MEŠ-šu₂ +nap-hu +x +x +KUM₂ +ŠUB-MEŠ-su +NINDA +u +KAŠ +LAL +UH₂ +TUKU.TUKU-ši +ana +TI-šu₂ +{u₂}IGI-lim +{u₂}IGI.NIŠ +SUHUŠ +{giš}NAM.TAR +a-he-nu-u₂ +SUD₂ +ina +KAŠ +NAG-šu₂ +i-par-ru-ma +EGIR +an-ne₂-e +I₃ +hal-ṣa +u +KAŠ +NAG-šu₂ +A +GAZI{sar} +u +A.GEŠTIN.NA +ŠEG₆-šal +ana +DUR₂-šu₂ +DUB-ak-ma +{šim}GUR₂.GUR₂ +{šim}LI +{šim}GAM.MA +PA +{giš}ŠE.HAR +PA +{giš}GE₆.PAR₃ +PA +{giš}ŠE.NU₂.A +NUMUN +{u₂}ur-ba-ti +7 +U₂-HI-A +ŠEŠ +TEŠ₂.BI +GAZ +SIM +KI +I₃.UDU +DUH.LAL₃ +u +{šim}HAB +tu-sa-mah +ina +KUŠ.EDIN +SUR +LAL₂-su-ma +TI +DIŠ +NA +ŠA₃-MEŠ-šu₂ +nap-hu +gu-ha +u +UH₂ +TUKU-MEŠ-ši +NINDA +u +KAŠ +LAL +ana +TI-šu₂ +{u₂}KUR.RA +sah-le₂-e +DIŠ-niš +SUD₂ +ina +KAŠ +NAG-šu₂ +{u₂}ur₂-ne₂-e +ina +A +GAZI{sar} +ŠEG₆-šal +ta-ša₂-hal +ŠED₇ +lu +ba-hir₂ +ana +DUR₂-šu₂ +DUB +TI +DIŠ +NA +ŠA₃-MEŠ-šu₂ +nap-hu +SAG +ŠA₃-šu₂ +ru-pu-ul-ta +TUKU-MEŠ-ši +ana +TI-šu₂ +U₅ +ARGAB{mušen} +{u₂}tu-lal +GI.ŠUL.HI +PA +{giš}šu-še +ina +MUD₂ +EREN +u +A +GAZI{sar} +tu-ka-an +LAL₃ +I₃ +hal-ṣa +I₃.NUN +u +KAŠ.SAG +ana +ŠA₃ +ŠUB-di +ina +MUL₄ +tuš-bat +ina +še-ri₃ +ta-ša₂-hal +NU +pa-tan +NAG-ma +TI +DIŠ +NA +ŠA₃-MEŠ-šu₂ +nap-hu +ZI₃ +ŠE.SA.A +ZI₃ +MUNU₆ +NUMUN +{u₂}KI.{d}IŠKUR +di-ik-ta +ša₂ +ZU₂.LUM +TEŠ₂.BI +SUD₂ +NU +pa-tan +GU₇-MEŠ +A-MEŠ +NU +NAG +A-MEŠ +SAG +ŠA₃-šu₂ +tu-sa-lah₂-ma +TI +DIŠ +NA +ŠA₃-šu₂ +e-me-er +10 +KISAL +A +{giš}ŠE.NU +10 +KISAL +A +MUN +ina +LAL₃ +u +KAŠ +NAG +ana +KI +MIN +{giš}NU.UR₂.MA +GU₇ +A +{giš}NU.UR₂.MA +NAG +ana +KI +MIN +{šim}LI +SUD₂ +ina +KAŠ +NAG +ana +KI +MIN +SIG₂ +GAL₄.LA +{munus}ŠU.GI +ina +MURUB₄ +KA-šu₂ +GAR-an +ana +KI +MIN +{giš}NU.UR₂.MA +PA +{giš}MA₂.RI₂.IŠ.MA₂.RA +SUD₂ +ina +A +NAG +DIŠ +NA +ŠA₃-šu₂ +IM +ṣe-en +ŠUM(DIM₃).GAM.ME +ZABAR +lu +GIR₂ +ZABAR +i-lik-ma +TI +SAHAR +URUDU.NIG₂.KALAG.GA +tu-uš-ṣe-en-šu₂ +i-ši-hi-iq-ma +TI +DIŠ +NA +ŠA₂-MEŠ-šu₂ +em-ru +10 +KISAL +PA +{giš}šu-nim +10 +KISAL +LAL₃ +ana +ŠA₃ +KAŠ +ŠUB +ina +MUL₄ +tuš-bat +ina +še-ri₃ +NU +pa-tan +NAG-MEŠ-ma +TI +DIŠ +NA +ŠA₃-šu₂ +em-ru +MU₂.MU₂-hu +ŠA₃-šu₂ +iš-ta-na-si +NINDA +u +A +GUR +SUHUŠ +{giš}NAM.TAR +NITA₂ +{šim}HAB +ina +KA-šu₂ +i-na-ʾ-is +LAL₃ +KUR-i +ina +KAŠ +SAG +NAG +{šim}HAB +ina +KAŠ.SAG +ŠEG₆.GA₂ +ana +DUR₂-šu₂ +DUB-ak +PA +{giš}GE₆.PAR₃ +{šim}LI +{šim}KU₇.KU₇ +ILLU +a-bu-ka-ti +{giš}ŠE.NU +GAZ +ina +I₃.UDU +HI.HI +ina +KUŠ +TE +LAL +ina +A +{giš}ŠE.NU +ir-ta-na-haṣ +DIŠ +NA +ŠA₃-šu₂ +x +x +x +x +KUM₂ +ŠUB.ŠUB-su +IM +TUKU.TUKU +NINDA +A +GUR +{u₂}IGI.NIŠ +SUHUŠ +{giš}NAM.TAR +NITA₂ +ina +KAŠ.SAG +SUD₂ +NAG-šu₂ +EGIR-šu₂ +I₃ +hal-ṣa +ina +KAŠ +NAG +SI.SA₂ +GAZI{sar} +A.GEŠTIN.NA +ŠEG₆-šal +ana +DUR₂-šu₂ +DUB +{šim}LI +x +x +x +{šim}HAB +PA +{giš}GE₆.PAR₃ +PA +{giš}ŠE.NU +GAZ +ina +I₃.UDU +HI.HI +ina +KUŠ +TE +LAL +KIMIN +DIŠ +NA +ŠA₃-šu₂ +x +x +x +x +NINDA +u +A +ina +KA-šu₂ +GUR.GUR-ra +SAG.KI-MEŠ-šu₂ +up-ta-ṭa-aṭ(TA)-ra +x +x +x +x +x +x +x +... +x +x +ina +I₃.ŠAH +GU₇-MEŠ +SUM{sar} +SUM.SIKIL{sar} +x +x +x +x +... +x +... +x +... +DIŠ +NA +ŠA₃-šu₂ +e-sil +SAG.DU +GU₇-šu₂ +... +a-ba +du₁₀ +u-me-ni-ir +a-ba +du₁₀ +u-me-ni-ir +... +KA.INIM.MA +LU₂ +es-li +DU₃.DU₃.BI +EN₂ +3-šu₂ +ana +ŠA₃ +ŠID-nu +... +DIŠ +NA +ŠA₃-šu₂ +NINDA +u +KAŠ +la +i-mah-har +1/3 +SILA₃ +A +ZU₂.LUM.MA +1/3 +SILA₃ +A +GAZI{sar} +x +x +x +x +x +x +EGIR-šu₂ +AL.US₂.SA +A.GEŠTIN.NA +NAG-ma +KUM₂ +ša₂ +ŠA₃-šu₂ +i-ša₂-haṭ{aṭ} +im-me-si +x +x +x +x +DIŠ +NA +ŠA₃-šu₂ +NINDA +la +i-mah-har +NUMUN +{giš}ŠINIG +SUD₂ +ina +LAL₃ +u +I₃.NUN +HI.HI +ba-lu +pa-tan +NAG-šu₂-ma +TI +DIŠ +NA +NINDA +u +KAŠ +LAL-ṭu +{u₂}HAR.HAR +{u₂}NU.LUH.HA +{u₂}ur₂-nu-u +GAZI{sar} +{u₂}ti-ia₂-ta₅ +{u₂}SUMUN.DAR +{u₂}x +x +x +{šim}GUR₂.GUR₂ +{šim}GAM.MA +{šim}MAN.DU +{giš}EREN +{giš}EREN.SUMUN +{šim}MUG +ZU₂.LUM.MA +LAGAB +MUNU₆ +MUN +{giš}ŠE.NU +A.GEŠTIN.NA +KALAG.GA +ina +KAŠ +tara-muk +ina +MUL₄ +tuš-bat +ina +še-ri₃ +ina +{urudu}ŠEN.TUR +ŠEG₆-šal +5 +GIN₂ +I₃ +hal-ṣa +ana +IGI +ŠUB +ana +DUR₂-šu₂ +DUB-ak +ana +ŠA₃ +UTUL₂ +ŠUB-ma +IGI.4.GAL₂.LA +U₂ +mat-qa +IGI.4.GAL₂.LA +U₂ +TUR +mat-qu +IGI.4.GAL₂.LA +{u₂}a-ra-ri-ia₂-nu +{u₂}mer-gi-ra-a-nu +90 +{u₂}si-sin-ni +ŠA₃ +mal-ma-liš +SUD₂ +ina +KAŠ +{lu₂}KURUN₂.NA +NU +pa-tan +NAG-ma +ina +DUR₂-šu₂ +SI.SA₂-ma +TI +DIŠ +NA +ŠA₃-MEŠ-šu₂ +ga-an-nu +ga-ah-ha +TUKU +NINDA +u +A +muṭ-ṭu₂ +UH₂ +TUKU-MEŠ-ši +{u₂}KUR.RA +SUD₂ +ina +I₃.GIŠ +NAG-ma +i-ar₂-ru₃ +{u₂}KUR.RA +sah-le₂-e +SUD₂ +ina +KAŠ +NAG +{u₂}ur₂-ne₂-e +ina +A +ŠEG₆-šal +tu-kaṣ₃-ṣa +ana +DUR₂-šu₂ +DUB-ak +PA +{giš}GE₆.PAR₃ +PA +{u₂}KI.{d}IŠKUR +PA +{giš}bi-ni +{šim}LI +{šim}GUR₂.GUR₂ +{šim}GAM.MA +{šim}HAB +{šim}x +x +ina +A +ZU₂.LUM.MA +tara-bak +GUR-ma +HAD₂.A +GAZ +ina +I₃.UDU +HI.HI +ina +KUŠ +TE +LAL +ina +A +{giš}ŠE.NU +ir-ta-na-haṣ-ma +TI +DIŠ +NA +ŠA₃-šu₂ +e-ta-na-ša₂-aš-ma +NINDA +u +KAŠ.SAG +la +i-mah-har +MAŠ.SILA₃-MEŠ-šu₂ +GU₇-MEŠ-šu₂ +SAG.DU-su +gi-na-a +LAL +x +x +x +UD.7.KAM₂ +SUM{sar} +SUM.SIKIL{sar} +GA.RAŠ{sar} +NU +GU₇ +ina +A +{giš}ŠE.NU +RA-MEŠ +NUMUN +{u₂}UKUŠ₂.HAB +NUMUN +{u₂}HAR.HAR +ina +KAŠ +NAG-ma +TI +DIŠ +NA +ŠA₃-šu₂ +ha-ah-ha +DIRI +ana +TI-šu₂ +GI +DU₁₀ +{šim}BAL +{šim}LI +{u₂}HAR.HAR +{šim}ŠE.LI +BABBAR +ina +KAŠ.SAG +ŠUB +ŠEG₆-šal +ta-ša₂-hal +lu +ba-hir₂ +10 +KISAL +LAL₃ +ana +ŠA₃ +GAZ +NU +pa-tan +NAG-šu₂ +i-ar₂-ru₃-ma +ina +A₂.GU₂.ZI.GA +LAL₃ +I₃ +hal-ṣa +u +KAŠ +TEŠ₂.BI +HI.HI +NU +pa-tan +EME-šu₂ +DAB-bat +NAG-šu₂ +TI +DIŠ +NA +ha-hu +DAB-su +NUMUN +{u₂}SIKIL +NUMUN +{giš}GEŠTIN +KA₅.A +{u₂}AB₂.DUH +{u₂}NIGIN{sar} +{u₂}TAL₂.TAL₂ +5 +U₂-MEŠ +ŠEŠ +TEŠ₂.BI +SUD₂ +ina +A +GAZI{sar} +tara-bak +ina +TUG₂.HI.A +SUR +SAG +ŠA₃-šu₂ +LAL₂-id +U₂ +BABBAR +SUD₂ +ina +A-MEŠ +NU +pa-tan +NAG +TI +ana +KI +MIN +ILLU +{šim}BULUH +SUD₂ +ina +GEŠTIN +ŠUR.RA +NU +pa-tan +NAG +TI +ana +KI +MIN +{u₂}x +x +SUD₂ +ina +KAŠ.SAG +NU +pa-tan +NAG +TI +DIŠ +NA +IM +ina +ŠA₃-šu₂ +NIGIN-hur +ana +TI-šu₂ +SUHUŠ +{u₂}EME +UR.GI₇ +ša +ina +ZI-ka +{d}UTU +NU +IGI.BI +HAD₂.A +SUD₂ +ina +KAŠ.SAG +NU +pa-tan +NAG +TI +DIŠ +NA +IM +ina +ŠA₃-šu₂ +i-le-eb-bu +{u₂}EME +UR.GI₇ +NUMUN +{u₂}EME +UR.GI₇ +DIŠ-niš +SUD₂ +ina +KAŠ +NU +pa-tan +NAG +TI +DIŠ +NA +IM +GIM +di-ik-ši +ina +ŠA₃-šu₂ +TAG.MEŠ-šu₂ +1/2 +GIN₂ +{giš}EREN +1/2 +GIN₂ +{giš}ŠUR.MIN₃ +1/3 +GIN₂ +{šim}GIR₂ +10 +GIN₂ +{giš}EREN.SUMUN +10 +GIN₂ +MUN +eme-sal-li₃ +{šim}LI +x +x +x +x +x +x +x +ina +KAŠ.SAG +ŠEG₆-šal +I₃.GIŠ +ana +IGI +ŠUB +ana +DUR₂-šu₂ +DUB-ak +DIŠ +NA +IM +ina +ŠA₃-šu₂ +uš-tar-ʾ-ab +i-le-he-eb +ki-ib-su-šu₂ +še-pi-BI +GABA-su +u +MAŠ.SILA₃-MEŠ-šu₂ +GU₇-MEŠ-šu₂ +UZU-MEŠ-šu₂ +u₂-šam-ma-mu-šu₂ +u +GIR₂.GIR₂-šu₂ +UZU-MIN-šu₂ +ma-ṭu-u +ni-ip-še +DIRI +SAG-MEŠ-šu₂ +i-ta-na-nu-u₂ +KUM₂-MEŠ +ina +kal +UD-me +u₂-kil₂-šu +x +x +x +x +x +x +{šim}LI +{u₂}KUR.KUR +{u₂}HAR.HAR +sah-le₂-e +GAZI{sar} +MUN +a-ma-ni₇ +{u₂}ur₂-ne₂-e +PA +{giš}bi-ni +9 +U₂.HI.A +ŠEŠ +TEŠ₂.BI +SUD₂ +ina +GEŠTIN +DU₁₀.GA +u +KAŠ.SAG +ta-ra-sa-an +ina +GE₆ +ana +IGI +MUL₄ +tuš-bat +ina +A₂.GU₂.ZI.GA +ŠEG₆-šal +ta-ša₂-hal +ŠED₇ +7 +ŠE-MEŠ +HENBUR₂ +{u₂}UKUŠ₂.HAB +7 +ŠE-MEŠ +{na₄}AN.ZAH +TEŠ₂.BI +SUD₂ +ana +ŠA₃ +GAZ +la-am +{d}UTU +na-pa-hi +NAG-šu₂ +ina +A₂ +tu-šap-ra-šu₂ +šum₄-ma +DU₁₀.GA +NU +IGI-mur +ana +DUR₂-šu₂ +DUB-ak +TI +DIŠ +NA +NINDA +GU₇ +KAŠ +NAG-ma +la +i-še-eb-bi +ŠA₃-MEŠ-šu₂ +MU₂.MU₂-hu +ŠA₃-šu₂ +NU +IGI-har +GIM +it-ta-šu +bi-sik-ta₅ +GIG +ŠURUN +GUD +ina +A +ta-mah-ha-ah +ŠEŠ₂ +{giš}ZU₂.LUM.MA +GA.RAŠ{sar} +UKUŠ₂.HAB +x +x +x +NINDA +u +KAŠ +la +i-lem +UD.7.KAM₂ +A +ša₂(7) +PU₂ +i-ša-ti +DIŠ +NA +hu-šah-hu +DAB-su +1 +SILA₃ +KAŠ.SAG +ina +MUL₄ +tuš-bat +ina +še-ri₃ +x +x +x +x +x +x +x +x +x +DIŠ +NA +ma-ʾ-di-iš +e-na-ah-ma +IM +e-dip-ma +NU +... +x +x +x +x +ina +A +GAZI{sar} +ir-ta-na-haṣ +MUN +DUR₂.NU.LUH.HA +... +x +x +x +x +DIŠ +NA +U₂ +NAG-ma +la +i-ar₂-ru₃ +ṣe-me-er +a-za-pi +ŠAH +... +A +u +I₃.GIŠ +ŠEG₆-šal +EN +ši-bi-šu₂ +u₂-al-lat +hi +ri +... +DIŠ +NA +U₂ +NAG-ma +la +ip-ru +la +iṣ-nu-uh +NA +BI +ze-e-ze-na +GIG +ana +TI-šu₂ +{giš}si-hu +{giš}ar₂-ga-nu +{giš}ba-ri-ra-ta₅ +{šim}GUR₂.GUR₂ +{šim}LI +{šim}GAM.MA +{šim}GIG +{giš}EN.DI +ina +A +PU₂ +x +x +x +x +NE-su +ana +DUR₂-šu₂ +DUB-ak +10 +KISAL +{šim}GUR₂.GUR₂ +ŠEŠ₂-su-ma +ŠA₃-MEŠ-šu₂ +SI.SA₂-ma +TI +DIŠ +NA +an-šu₂-tu₄ +iṣ-bat-su-ma +la +u₂-šar-da +KAŠ.SAG +ina +ŠEN.TUR +ŠEG₆-šal +MUN +ana +ŠA₃ +ŠUB +ana +DUR₂-šu₂ +DUB +ŠU.SI-ka +{tug₂}GADA +NIGIN +MUN +ta-ṣap-pu +DUR₂-šu₂ +ta-kar +SIG₂ +GAL₄.LA +{munus}ŠU.GI +ina +MURUB₄ +KA-šu₂ +GAR +ina-eš +DIŠ +NA +KAŠ.SAG +NAG-ma +SUHUŠ-MEŠ-šu₂ +pa-al-qa +di-ig-la +ma-a-ṭi +ana +TI-šu₂ +NUMUN +{u₂}SIKIL +NUMUN +{u₂}DILI +NUMUN +{giš}bi-ni +NUMUN +{u₂}am-ha-ra +NUMUN +{u₂}IN₆.UŠ₂ +5 +U₂.HI.A +ŠEŠ +DIŠ-niš +SUD₂ +ina +GEŠTIN +SIG₃-aṣ +NU +pa-tan +NAG-ma +ina-eš +DIŠ +NA +KAŠ +NAG-ma +SAG.DU-su +DAB.DAB-su +INIM-MEŠ-šu₂ +im-ta-na-aš₂-ši +ina +DU₁₁.DU₁₁-šu₂ +u₂-pa-aš₂-šaṭ +ṭe₄-en-šu₂ +la +ṣa-bit +LU₂ +BI +IGI-MIN-šu₂ +GUB-za +ana +TI-šu₂ +{u₂}IGI-lim +{u₂}IGI.NIŠ +{u₂}tar-muš +{u₂}HAR.HAR +{u₂}SIKIL +{u₂}DILI +KA +A.AB.BA +{u₂}NU.LUH.HA +NUMUN +{u₂}NIG₂.GAN₂.GAN₂ +{u₂}kam-ka-du +{u₂}eli-kul-la +11 +U₂.HI.A +ŠEŠ +DIŠ-niš +SUD₂ +ina +I₃.GIŠ +u +KAŠ +ana +IGI +{d}gu-la +tuš-bat +ina +še-ri₃ +la-am +{d}UTU +MU₂-hi +la-am +ma-am-ma +iš-ši-qu-šu₂ +NAG-ma +ina-eš +DIŠ +NA +GABA-su +GIG-ma +GIM +ši-ne₂-e-ti +SAHAR +TUKU.TUKU-ši +ina +da-ba-bi-šu₂ +ik-ka-šu₂ +ik-ta-ner-ru +u₃ +ZE₂ +ip-te-nar-ru +NA +BI +bi-šit +ŠA₃ +GIG +ana +TI-šu₂ +{u₂}EME +UR.GI₇ +ina +KAŠ +NU +pa-tan +NAG-šu₂ +ina +A +GAZI{sar} +RA-MEŠ +A +{giš}ŠE.NU +ana +DUR₂-šu₂ +DUB +ZI₃ +GU₂.TUR +{giš}ur₂-ne₂-e +ina +{gi}SAG.KUD +ina +KA-šu₂ +GID₂-ad +{šim}HAB +I₃.UDU +ZU₂.LUM +{šim}LI +{šim}KU₇.KU₇ +DIŠ-niš +HI.HI +ina +KUŠ +SUR +LAL +U₂ +BABBAR +ina +I₃.GIŠ +KI +MIN +GAZI{sar} +KI +MIN +A +{u₂}ur₂-ne₂-e +u +GAZI{sar} +{šim}GUR₂.GUR₂ +KI +MIN +{šim}LI +{šim}GUR₂.GUR₂ +MIN +PA +{giš}GE₆.PAR₃ +PA +{giš}ŠE.NU +PA +{giš}MA.NU +E₂ +NIM +kal-bi +I₃ +DIŠ-niš +HI.HI +ŠU.BI.AŠ.AM₃ +U₂ +BABBAR +ina +I₃.GIŠ +NAG-šu₂ +ina +A +GAZI{sar} +RA-su-ma +A +{giš}NU.UR₂.MA +ana +DUR₂-šu₂ +DUB-ak-ma +GU₂.GAL +{šim}GUR₂.GUR₂ +GID₂-ad-ma +{šim}LI +{šim}HAB +ILLU +{šim}BULUH +{giš}bi-nu +{u₂}SIKIL +DIŠ-niš +SUD₂ +ina +I₃.UDU +HI.HI +GABA-su +LAL-ma +ina-eš +{u₂}EME +UR.GI₇ +ina +KAŠ +NAG +ina +A +GAZI{sar} +KI +MIN +GAZI{sar} +{šim}LI +{šim}GUR₂.GUR₂ +{šim}GAM.MA +ŠIM.HI.A +DU₃.A.BI +PA +{giš}GE₆.PAR₃ +PA +{giš}šu-še +KI +MIN +DIŠ +NA +di-ik-šu +ina +GABA-šu₂ +TAG.TAG-su-ma +GIM +ši-ne₂-ʾ-ti +SAHAR +i-ša₂-an-na-ʾ-šu +ina +ge-ši-šu +ZE₂ +i-par-ru +ina +da-ba-bi-šu₂ +ik-ka-šu +ik-te-ner-ru +NA +BI +bi-šit +ŠA₃-bi +GIG +KU₆ +SUM{sar} +UZU +GUD +UZU +ŠAH +u +KAŠ +{lu₂}KURUN₂.NA +la +uš-ta-mah-har +ut-ta-šar +1/2 +SILA₃ +ZA₃.HI.LI +1/2 +SILA₃ +{šim}GUR₂.GUR₂ +1/2 +SILA₃ +{giš}LI +1/2 +SILA₃ +NUMUN +GADA +1/2 +SILA₃ +{giš}GIG +1/2 +SILA₃ +{giš}EN.DI +1/2 +SILA₃ +NUMUN +{u₂}qut-ra-ti +1/2 +SILA₃ +GAZI{sar} +1/2 +SILA₃ +NUMUN +{giš}ŠE.NU +1/2 +SILA₃ +GU₂.NIG₂.AR₃.RA +1/2 +SILA₃ +BA.BA.ZA.{d}ID₂ +1/2 +SILA₃ +NUMUN +{u₂}ka-man-ta +... +10 +KISAL +ILLU +{šim}BULUH +10 +KISAL +KA +A.AB.BA +... +21 +U₂.HI.A +... +šum-ma +... +... +... +UD.DA +SA₂.SA₂ +GAZ +SIM +... +{giš}bi-nu +{u₂}IN₆.UŠ₂ +RA-ma +TI +ana +KI +MIN +... +ina +KAŠ +NU +pa-tan +NAG-ma +TI +ana +KI +MIN +... +{u₂}NAGA.SI +TEŠ₂.BI +SUD₂ +ina +KAŠ.SAG +SILA₁₁-aš +ina +KUŠ +SUR-ri +LAL-id +... +SILA₁₁-aš +ina +KUŠ +MIN +... +SILA₁₁-aš +ina +SAG +ŠA₃-šu₂ +LAL-ma +TI +... +x +ina +A.GEŠTIN.NA +KALAG.GA +SILA₁₁-aš +SAG +ŠA₃-šu₂ +LAL-ma +TI +... +x +{u₂}KU₆ +HAD₂.A +GAZ +SIM +ina +KAŠ +SILA₁₁-aš +KI +MIN +ana +KI +MIN +x +x +x +x +x +{u₂}HAR.HAR +{u₂}KUR.KUR +{u₂}GAMUN.GE₆ +{u₂}tar-muš₈ +x +x +x +x +x +x +DIŠ-niš +SUD₂ +ina +KAŠ +NAG +um-mi +ša₂ +ŠA₃-šu₂ +ta-ša₂-haṭ-ma +TI +DIŠ +NA +x +x +x +x +KI +UH₂-šu₂ +MUD₂ +ŠUB.ŠUB-a +ki-ṣir-te +ŠA₃ +GIG +UD.DA +SA₂.SA₂ +ŠA₃-šu₂ +qer-be₂-na₇ +GIG +{u₂}ur₂-ne₂-e +A.GAR.GAR +MAŠ.DA₃ +NUMUN +{u₂}KI.{d}IŠKUR +NUMUN +{u₂}IN₆.UŠ₂ +{šim}GUR₂.GUR₂ +2 +KISAL +KA +A.AB.BA +GAZ +ina +A +PU₂ +tara-bak +GUR-ma +HAD₂.A +GAZ +ina +A +ZU₂.LUM.MA +ina +{dug}GAN +tara-bak +ina +TUG₂ +SUR-ri +SAG +ŠA₃-šu₂ +ur-ra +u +GE₆ +LAL-id +DU₈-šu₂-ma +A +PU₂ +ta-hab-bu +U₂ +BABBAR +SUD₂ +ina +I₃ +hal-ṣa +EME-šu₂ +DAB-bat +NAG +i-ar₂-ru +LAL₂-su +NAG.NAG-šu₂ +iš-tu +NAG-u₂ +1/2 +SILA₃ +NUMUN +{giš}bi-ni +1/2 +SILA₃ +{giš}GEŠTIN +KA₅.A +1/2 +SILA₃ +{šim}LI +1/2 +SILA₃ +ZU₂.LUM.MA +1/2 +SILA₃ +ZI₃ +GIG +GAZ +ina +A +GAZI{sar} +tara-bak +GUR-ma +HAD₂.A +GAZ +ina +A +ZU₂.LUM +ina +{dug}GAN +tara-bak +ina +TUG₂.HI.A +SUR-ri +ur-ri +u +GE₆ +LAL +ana +KI +MIN +PA +{giš}NU.UR₂.MA +PA +{giš}GE₆.PAR₃ +PA +{giš}NAM.TAR +NITA₂ +ŠIKA +NIG₂.BUN₂.NA{ku₆} +ILLU +{šim}BULUH +GAZ +ina +A +ZU₂.LUM.MA +ina +{dug}GAN +tara-bak +GUR-ma +HAD₂.A +GAZ +ina +KAŠ +u +I₃.GIŠ +ina +{dug}GAN +tara-bak +ina +TUG₂ +SUR +ur-ri +u +GE₆ +LAL-id +KU.KU +{u₂}ti-ia₂-ta₅ +ina +KAŠ +NU +pa-tan +NAG +1/3 +SILA₃ +ŠE₁₀ +TU{mušen}-MEŠ +1/3 +SILA₃ +NUMUN +{u₂}AB₂.DUH +1/3 +SILA₃ +GURUN +{u₂}MAŠ.HUŠ +ta-haš-šal +ina +A +GAZI{sar} +tara-bak +GUR-ma +HAD₂.A +GAZ +ina +A +ZU₂.LUM.MA +ina +{dug}GAN +tara-bak +ina +TUG₂ +SUR-ri +ur-ri +u +GE₆ +LAL-id +ana +KI +MIN +1/2 +SILA₃ +NUMUN +{u₂}DILI +1/2 +SILA₃ +{u₂}LAG +GAN₂ +SIG₇ +1/2 +SILA₃ +U₅ +ARGAB{mušen} +1/2 +SILA₃ +ZI₃ +ZIZ₂.A.AN +GAZ +ina +A +ID₂ +tara-bak +GUR-ma +HAD₂.A +GAZ +SIM +ina +A +ZU₂.LUM.MA +ina +{dug}GAN +tara-bak +ina +TUG₂ +SUR-ri +ur-ra +u +GE₆ +LAL-id +NUMUN +{giš}GEŠTIN +KA₅.A +ina +KAŠ +NU +pa-tan +NAG +ina +A +ŠEG₆-šal +tara-has-su +ana +KI +MIN +ZA₃.HI.LI +ina +KAŠ +NAG +NUMUN +{u₂}KI.{d}IŠKUR-ri +NUMUN +{giš}MA.NU +NUMUN +{giš}ŠINIG +{šim}GUR₂.GUR₂ +GAZ +ina +A +GAZI{sar} +tara-bak +GUR-ma +HAD₂.A +GAZ +ina +A +ZU₂.LUM.MA +ina +{dug}GAN +tara-bak +ina +TUG₂.HI.A +SUR-ri +ur-ri +u +GE₆ +LAL +ana +KI +MIN +{šim}LI +{šim}GUR₂.GUR₂ +{šim}HAB +{šim}GAM.MA +{u₂}ba-ri-ra-ta₅ +{šim}BULUH +{giš}EREN +{giš}ŠUR.MIN₃ +{šim}BAL +GAZ +ina +A +GAZI{sar} +tara-bak +GUR-ma +HAD₂.A +GAZ +ina +A +ZU₂.LUM.MA +u +KAŠ +ina +{dug}GAN +tara-bak +ina +TUG₂.HI.A +te-ṭer₅-ri +ur-ra +u +GE₆ +LAL-id +IM.SAHAR.NA₄.KUR.RA +ina +KAŠ +NAG +ana +KI +MIN +PA +GIŠ.GI.ZU₂.LUM.MA +PA +{u₂}SIKIL +PA +{u₂}IN₆.UŠ₂ +GURUN +GA.RAŠ{sar} +GURUN +{giš}NU.UR₂.MA +NUMUN +{giš}HA.LU.UB₂ +PA +{giš}ASAL₂ +GAZ +ina +A +GAZI{sar} +ina +{dug}GAN +tara-bak +ina +TUG₂ +SUR +ur-ra +u +GE₆ +LAL +ina +A +ŠEG₆-šal +tara-has₂-su +U₂ +ŠEŠ +ina +I₃ +u +KAŠ +NU +pa-tan +NAG +tu-ša₂-ʾ-ra-šu₂-ma(GIŠ) +DU₁₀.GA +GU₇ +DU₁₀.GA +NAG +ka-la +UD +u +GE₆ +ina +KA₂ +GUB.GUB +ina +{giš}NA₂-šu₂ +la +NU₂ +ina +še-ri₃ +A +KUM₂-ti₃ +TU₅-šu₂ +I₃.GIŠ +KUM₂ +ŠEŠ₂ +UD.3.KAM₂ +GUR.GUR-šum +DIŠ +NA +KI +UH₂-šu₂ +MUD₂ +ŠUB-MEŠ-a +NA +BI +ta-aš₂-ni-qa +GIG +ana +TI-šu₂ +1/3 +SILA₃ +I₃.UDU +1/3 +SILA₃ +ZU₂.LUM.MA +1/3 +SILA₃ +{šim}HAB +1/3 +SILA₃ +{šim}GUR₂.GUR₂ +1/3 +SILA₃ +{šim}LI +1/3 +SILA₃ +{šim}BULUH +1/3 +SILA₃ +DUH.ŠE.GIŠ.I₃ +1/3 +SILA₃ +NUMUN +{giš}bi-ni +8 +U₂.HI.A +ŠEŠ +DIŠ-niš +GAZ +ina +I₃.NUN +tal-tap-pat +ina +KUŠ +SUR +IGI +u +MAŠ.SILA₃ +EN +DU₁₀.GA-šu₃ +3 +ITI.MEŠ +LAL₂-su-ma +LAL-ta +ina +KA-ka +u₂-še-ṣa-am-ma +ina-eš +DIŠ +NA +ki-ṣir +ŠA₃ +GIG +NINDA +u +KAŠ +ŠA₃-šu₂ +la +IGI-šu₂ +ina +KA-šu₂ +GUR.GUR +TUN₃-šu₂ +i-sa-hal-šu₂ +ana +TI-šu₂ +1/2 +SILA₃ +sah-le₂-e +1/2 +SILA₃ +{šim}GUR₂.GUR₂ +1/2 +SILA₃ +{šim}LI +1/2 +SILA₃ +{u₂}KI.{d}IŠKUR +1/2 +SILA₃ +ka-si-i +1/2 +SILA₃ +pa-pa-si-{d}ID₂ +1/2 +SILA₃ +{u₂}KUR.RA +1/2 +SILA₃ +{u₂}AB₂.DUH +1/2 +SILA₃ +ZU₂.LUM.MA +1/2 +SILA₃ +DIDA +SIG +1/2 +SILA₃ +ZI₃ +MUNU₆ +1/2 +SILA₃ +ZI₃ +GU₂.GAL +1/2 +SILA₃ +ZI₃.KUM +1/2 +SILA₃ +ZI₃ +GIG +1/3 +SILA₃ +ŠE₁₀ +TU{mušen} +1/3 +SILA₃ +{u₂}KAM-ti +GAN₂ +10 +KISAL +{šim}ŠEŠ +10 +KISAL +KA +A.AB.BA +16 +U₂.HI.A +ŠEŠ +DIŠ-niš +GAZ +SIM +ina +KAŠ +ina +{urudu}ŠEN.TUR +GIM +ra-bi-ki +tara-bak +ina +KUŠ.EDIN +SUR +3 +UD-me +SAG +ŠA₃-šu₂ +LAL +NINDA +u +KAŠ +ŠA₃-šu₂ +IGI-šu₂-ma +ina-eš +DIŠ +NA +ki-ṣir +ŠA₃-bi +GIG +NINDA +u +KAŠ +ŠA₃-šu₂ +NU +IGI-šu₂ +ina +KA-šu₂ +GUR.GUR +ip-te-ne₂-ru +ana +TI-šu₂ +1/2 +SILA₃ +A +ZU₂.LUM.MA +1/2 +SILA₃ +A +GAZI{sar} +10 +KISAL +{u₂}KUR.RA +SUD₂ +ana +ŠA₃ +ŠUB +ba-lu +pa-tan +NAG-šu₂ +EGIR-šu₂ +1/3 +SILA₃ +AL.US₂.SA +NAG +ina +DUR₂-šu₂ +GIŠ-ma +NINDA +u +KAŠ +ŠA₃-šu₂ +KI +MIN +ana +KI +MIN +MUN +KUR-i +MUN +a-ma-ni₇ +DIŠ-niš +SUD₂ +ina +KAŠ +NU +pa-tan +NAG-ma +ina-eš +ana +KI +MIN +ZI₃ +ŠE.SA.A +ZI₃ +HARUB(AMAŠ) +qi₂-lip₂ +ZU₂.LUM.MA +SUD₂ +ina +KAŠ +2 +UD-me +ba-lu +pa-tan +NAG-šu₂ +A +NU +NAG +A +SAG +ŠA₃-šu₂ +tu-sa-lah₂-ma +ina-eš +DIŠ +NA +NINDA +u +KAŠ +ŠA₃-šu₂ +NU +IGI-šu₂ +UZU-MEŠ-šu₂ +ir-ta-nam-mu +IM +ina +DUR₂-šu₂ +NIGIN-ur₂ +ana +TI-šu₂ +1/2 +SILA₃ +A +ZU₂.LUM.MA +1/2 +SILA₃ +A +GAZI{sar} +2 +GIN₂ +A.GEŠTIN.NA +2 +GIN₂ +{u₂}KUR.RA +3 +GIN₂ +I₃ +hal-ṣa +3 +GIN₂ +LAL₃ +KUR-i +DIŠ-niš +tuš-te-mid +GAZ +ina +GE₆ +ina +IGI +{mul}UZ₃ +tuš-bat +ina +še-ri₃ +ŠEG₆-šal +ta-ša₂-hal +ŠED₇ +ina +ŠA₃ +tah-ta-na-su +EGIR-šu₂ +NAG +A +u +KAŠ +DIRI +{giš}si-ha +{giš}ar-ga-nu +{giš}LUM.HA +GAZI{sar} +PA +GAZI{sar} +NUMUN +{giš}ŠE.NU₂.A +ana +ŠA₃ +ŠUB +ŠEG₆-šal +ta-ša₂-hal +mar-ha-ṣi +tu-ša₂-at-tam-ma +ina +ŠA₃ +RA-su +I₃ +SU-šu₂ +EŠ-aš +{giš}GEŠTIN +KA₅.A +{u₂}EME +UR.GI₇ +SUD₂ +ina +KAŠ +NAG-šu₂ +PA +{giš}GE₆.PAR₃ +PA +{giš}šu-še +HAD₂.A +DIŠ-niš +GAZ +SIM +ina +I₃.UDU +HI.HI +ina +KUŠ.EDIN +SUR +LAL₂-su-ma +ina-eš +DIŠ +NA +SAG +ŠA₃-šu₂ +GU₇-šu₂ +ina +ge-ši-šu₂ +ZE₂ +im-ta-na-ʾ +NA +BI +qer-be₂-na +GIG +DUB +2.KAM₂ +DIŠ +NA +su-a-lam +GIG +ana +ki-is +ŠA₃ +GUR +E₂.GAL +{m}AN.ŠAR₂-DU₃.A +MAN +ŠU₂ +MAN +KUR +AN.ŠAR₂{ki} +ša +{d}AG +u +{d}taš-me-tu₄ +GEŠTU-MIN +ra-pa-aš₂-tu₄ +iš-ru-ku-uš +e-hu-uz-zu +IGI-MIN +na-mir-tu₄ +ni-siq +ṭup-šar-ru-ti +ša +ina +LUGAL-MEŠ-ni +a-lik +mah-ri-ia +mam₂-ma +šip-ru +šu-a-tu +la +e-hu-uz-zu +bul-ṭi +TA +muh-hi +EN +UMBIN +liq-ti +BAR-MEŠ +ta-hi-zu +nak-la +a-zu-gal-lu-ut +{d}nin-urta +u +{d}gu-la +ma-la +ba-aš₂-mu +ina +ṭup-pa-a-ni +aš₂-ṭur +as-niq +IGI.KAR₂-ma +a-na +ta-mar-ti +ši-ta-si-ia +qe₂-reb +E₂.GAL-ia +u₂-kin +7 +u +7 +KA.KEŠDA +x +x +x +x +x +x +x +x +x +x +x +x +EN₂ +sag-ki +mu-un-dab +x +x +x +x +x +x +sag +sahar₂-ra +mu-un-dab +x +x +x +x +x +x +x +a-da-pa₃ +abgal +x +x +x +x +sag-ki +mu-un-dab +x +x +x +x +x +x +x +x +DU₃.DU₃.BI +{sig₂}HE₂.ME.DA +x +x +x +x +x +x +x +x +x +x +x +{na₄}SAG.DU +E₃ +EN₂ +x +x +x +x +x +x +x +x +x +x +EN₂ +a.ra +tu.e +a.ra +x +x +x +x +x +x +x +šu +du₃.du₃.meš +šu +ne.ne.a.meš +eridu{ki}.ga +mu.un.tum₂ +TU₆.EN₂ +DU₃.DU₃.BI +{giš}PA +GIŠIMMAR +ša₂ +{im}SI.SA₂ +ša₂ +ina +NU +IM +i-nam-zu-zu +TI-qe₂ +x +x +x +x +KEŠDA +EN₂ +7-šu₂ +ŠID-nu +ina +SAG.KI-šu₂ +tara-kas₂-ma +TI-uṭ +EN₂ +sur.ru.ga +su.ma.hu +ma.ak.tu₂ +ti.e.na +ha.at.ru +x +x +x +x +ki.in.re.eš.na +ha.at.ri +uk.kiš.tum +si.na.an.na +x +x +x +x +x +lu.pi.tu +šab.ki.im +an.ta.sur.ra +TU₆.EN₂ +x +x +x +tu.e +di.pa.ra +tu.e +x +x +x +ha.ta.ra +hat.ra +TU₆.EN₂ +x +x +x +x +x +x +a.ra +ba.še.ra +... +... +x +x +x +x +... +x +x +x +x +x +x +ra +mu-un-dab +x +x +x +x +x +x +x +x +x +DU₃.DU₃.BI +{na₄}ZU₂ +GE₆ +{na₄}ŠUBA +x +x +x +x +x +{na₄}NIR₂ +{na₄}ŠUBA +SIG₇ +x +x +x +x +x +x +x +x +x +EN₂ +sag-ki-ni +sag-ki +x +x +x +x +i-bi₂-ni +i-bi +x +x +x +x +mu-ru-ub-bi-ni +mu-ru-ub-bi +x +x +x +x +he₂-bi-da-a-na-mul-la +he₂-en-da-a-na-mul-la +x +x +... +x +... +... +a-šu-u₂ +ana +SAG.DU-šu₂ +... +... +DU₁₀.GA-tu₄ +ina +SU +NA +GAL₂-ši +ana +DAB +DU₁₀.GA-ti +... +... +SAG +NINDU +ana +UGU +ta-za-ru₃ +LAL₂-su-ma +... +... +{na₄}MIN.BABBAR +{na₄}MIN.GE₆ +ta-sak₃ +ina +I₃.NUN +HI.HI +UGU-šu₂ +ŠEŠ₂ +sa-ar-ʾi +... +... +MUD₂-MEŠ-šu₂ +TI-qe₂ +UGU-šu₂ +ŠEŠ₂ +UR.ME.E +ša₂ +E₂.GAR₈ +ta-sak₃ +x +... +... +ŠID-nu +EN₂ +E₂.NU.RU +ki.in.ip +ki.ni.ip +ki.ni.ip +šu.uh.ki.ni.ip +ši.ha.ma +... +... +a-šu-u₂ +DAL.DAL +DAB-it +{šim}GUR₂.GUR₂ +GAZI{sar} +u +MUN +DIŠ-niš +SUD₂ +ina +A +SAG.DU-su +... +... +a-šu-u₂ +DAB-it +SUHUŠ +{giš}šu-ši +GAMUN +ina +KAŠ.SAG +tara-muk +ina +MUL₄ +tuš-bat +ina +še-ri₃ +... +... +GU₇-ma +TI +{gi}ŠA₃.GI +tur-ar₂ +SUD₂ +ina +I₃ +u +KAŠ +ŠEŠ₂ +ša-pil-ti +{giš}KIŠI₁₆ +... +... +a-šu-u₂ +a-hi-iz +e-riš-ti +GAZI{sar} +LAL₂ +NUMUN +{u₂}KU₆ +ina +I₃ +SUD₂ +SAG.DU-su +EŠ.MEŠ-ma +... +... +SAG.DU-su +LAL +sah-le₂-e +ina +KAŠ +NAG +ILLU +{šim}BULUH +ana +KA-šu₂ +GAR-an +A +ZU₂.LUM.MA +... +... +NU +pa-tan +NAG +I₃ +u +KAŠ +NAG.NAG-ma +BURU₈ +1/2 +SILA₃ +šur-šum-me +KAŠ +1/2 +SILA₃ +x +... +... +AN.TA +ana +KI.TA +tu-maš-šad +U₄ +10.KAM₂ +LAL₂ +SUHUŠ +{giš}šu-ši +... +... +{u₂}KU₆ +ina +I₃ +SUD₂ +SAG.DU-su +u +ka-la +UZU-MEŠ-šu₂ +... +... +NUNDUN-MEŠ-šu₂ +MU₂-MEŠ +SAG.DU-su +ana +IGI-šu₂ +GID₂.DA-su +ŠU.MEŠ-šu₂ +... +... +x-ti +... +te-qi₂ +... +x +te-qi₂ +... +TE +GI +... +ina +I₃ +SUD₂ +KIMIN +... +KIMIN +... +x +IGI.MEŠ-šu₂ +MAR +... +x +ku +... +ti +... +x +... +{na₄}AN.ZAH.GE₆ +{na₄}mu-ṣa +{na₄}ZALAG₂ +{na₄}GUG +{na₄} +x +x +... +{na₄}AN.NA +{na₄}MUŠ.GIR₂ +NUMUN +{giš}bi-ni +NUMUN +{giš}MA.NU +... +U₂.MEŠ +ŠEŠ +1-niš +GAZ +ta-ša-pah +ina +I₃.UDU +ELLAG₂ +GU₄ +GE₆ +... +IGI.MEŠ-šu₂ +ka-a-a-man-nam-ma +MAR-ma +ina-eš +DIŠ +NA +e-nu-ma +bir-ṣa +IGI-ru +3-šu₂ +ki-a-am +liq-bi +ša₂ +{d}+en-lil₂ +u +{d}nin-lil₂ +ana-ku +ša₂ +{d}iš-tar +u +{d}na-na-a +ana-ku +i-qab-bi-ma +TI-uṭ +DIŠ +... +ana +ZAG +GUB-zu +TI-qe₂ +ina +IZI +tu-kab-ba-ab +... +ina +LAL₃ +I₃.NUN +SUD₂ +IGI.MIN-šu₂ +te-eq-qi₂-ma +ina-eš +... +HUL +bir-ṣi +a-na +LU₂ +NU +TE-e +A.GUB₂.BA +GIN-an +ana +ŠA₃-bi +{giš}ŠINIG +{u₂}IN₆.UŠ₂ +... +{u₂}SIKIL +{giš}GIŠIMMAR +{giš}MA.NU +{giš}U₃.SUH₅ +{giš}HAŠHUR +{giš}PEŠ₃ +{giš}ŠE.NU₂.A +{šim}{d}MAŠ +NITA₂ +u +MUNUS +... +ina +UL +tuš-bat +ina +A₂.GU₂.ZI.GA +IGI +{d}UTU +ina +E₂ +ṭa-bi +TU₅-šu₂ +{im}KAL +{im}KAL.GUG +KA.A.AB.BA +... +ina +I₃ +{šim}GIR₂ +HE.HE +ŠEŠ₂-su-ma +KU₃.BABBAR +KUG.GI +i-mar-ma +HUL +bir-ṣi +ana +LU₂ +NU +TE +DIŠ +... +x +x +{giš}ŠINIG +{u₂}IN₆.UŠ₂ +{giš}GIŠIMMAR +{giš}HAŠHUR +{giš}PEŠ₃ +{giš}U₃.SUH₅ +ana +ŠA₃ +A +PU₂ +ŠUB-di-ma +... +ina +UL +tuš-bat +ina +A₂.GU₂.ZI.GA +... +{im}KAL +{im}KAL.GUG +KA.A.AB.BA +ina +I₃ +{šim}BAL +HE.HE +ŠEŠ₂-su-ma +TUG₂ +DADAG +... +HUL +bir-ṣi +ana +LU₂ +NU +TE +x +x +... +DIŠ +NA +mu-kil₂ +SAG +HUL-ti₃ +DAB-su +... +lu +NITA +lu +MUNUS +ina +UR₃ +tu-še-li-ma +... +li-in-na-di +ina +GE₆ +GIN₇ +{d}UTU +e-re-bi +... +IGI +ap-ti +ZI₃.DUB.DUB.BU +ŠUB.ŠUB-di +... +NU +i-pet-tu-šu +... +u₃ +mu-šu +ša-a-ti +{giš}NA₂ +ṣa-al-lu +x +... +DIŠ +NA +mu-kil₂ +SAG +HUL-ti₃ +DAB-su +maš-qi₂-ta +nar-ma-ak-ta +... +DIŠ +KIMIN +KUM₂ +ina +SU-šu₂ +la-zi-iz-ma +u +ma-gal +i-li-hi-ib +x +... +u +IR +TUK +A +SAR.MUNU₆ +u +KAŠ₃ +a-me-lu-ti +{giš}EREN +{šim}LI +... +ina +NININDU +UŠ₂-er +ir-ta-na-haṣ-ma +10 +SILAₓ(KISAL) +{giš}KIŠI₁₆ +x +x +... +en₂ +ur-sag +{d}asal-lu₂-hi +igi-bi +he₂-pa₃ +... +ur-sag +{d}ša₃-zu +igi-bi +he₂-pa₃ +... +ur-sag +den-ki +igi-bi +he₂-pa₃ +... +ur-sag +{d}nin-urta +igi-bi +he₂-pa₃ +... +ad-da-mu +dumu-sag +{d}...-na-an-de₂ +... +dumu-mu +nam-tar +... +nu-un-bar +... +{lu₂}a-zu +di-ku₅ +... +nu-tar-re +tu₆-en₂ +ka-inim-ma +sag-hul-ha-za-kam₂ +DU₃.DU₃.BI +7 +x +... +ina +DUR +SIG₂ +SA₅ +E₃-ak +U₂ +x +... +{u₂}IGI-lim +... +x +{u₂}SIKIL +giš-kan-u₅ +NUMUN +{giš}ŠINIG +... +x +x +... +ta-la-pap +ina +SAG.KI-šu₂ +KEŠDA-su +x +... +x +... +x +x +... +EN₂ +{giš}APIN +ṣu +x +x +... +gir-giš-ša₂ +e +ta +x +... +ti-i-ru +A.ŠA₃ +e-ri-iš +la +a +ši +a +... +A.ŠA₃ +id-ra-nu +... +x +i +ša₂ +ti-i-ri +la +ib-šu-u₂ +... +GIM +id-ra-ni +a-a +u₂-še-ṣa +... +gir-giš-ši +a-a +ib-ba-ni +... +... +gir-giš-šu +... +... +x +x +... +DIŠ +NA +SAG.DU-su +GIG-MEŠ +mat-qu-ti +TAB +UD.DA +DIRI +I₃.UDU +x +x +x +x +x +x +x +x +x +ina +I₃ +{giš}EREN +HI.HI +SAG.DU-su +x +x +x +DIŠ +KIMIN +U₂ +GAR-šu₂ +GIM +{giš}MA.NU +{u₂}mur-ra-nu +MU-šu₂ +HAD₂.A +SUD₂ +3-šu₂ +ina +x +x +x +x +x +x +x +x +TUG₂ +su-u +ŠEŠ₂ +za-ku-ti-šu₂ +x +x +DIŠ +KIMIN +{u₂}mur-ru +MU.NI +HAD₂.A +SUD₂ +ina +A +HI.HI +x +x +x +x +TUG₂ +su-u +ŠEŠ₂ +za-ku-ti-šu₂ +MU₂-ah +{u₂}IGI-lim +ina +I₃ +{giš}EREN +HI.HI +x +x +x +DIŠ +NA +SAG.DU-su +GIG-MEŠ +mat-qu-ti +DIRI +zap-pi +ŠAH +MUN +ZI₃.KUM +GIR₃.PAD.DU +ša₂ +UDU.NITA₂ +tur-ar₂ +SAG.DU-su +SAR-ab +I₃ +ŠEŠ₂ +MAR +ina +I₃.GIŠ +ŠEŠ₂ +U₂ +BABBAR +SUD₂ +MAR +šu-ru-uš +UKUŠ₂.HAB +HAD₂.A +KUM +MAR +ZI₃ +MUNU₆ +ZI₃.KUM +GIR₃.PAD.DU +UDU.NITA₂ +DIŠ-niš +tur-ar₂ +SUD₂ +MAR-ru +GUR +an-nu-ha-ru +{na₄}ga-bi-i +DIŠ-niš +ŠEG₆ +SUD₂ +ina +I₃ +EŠ.MEŠ +MAR +x +x +x +x +x +x +A.GEŠTIN.NA +ŠEŠ₂ +{u₂}KUR.RA +SUD₂ +MAR +IM.GU₂.EN.NA +ina +A +ZU₂.LUM.MA +SILA₁₁ +LAL +{giš}MAŠ.HUŠ +BIL-lu +I₃.NUN +EŠ +LAL +x +x +x +SUD₂ +MAR +{giš}nu-ur₂-ma-a +SUD₂ +MAR +ŠURUN +U₈.UDU.HI.A +ina +KAŠ +SILA₁₁-aš +LAL +x +x +x +tur-ar₂ +SUD₂ +ŠEŠ₂ +DIŠ +NA +SAG.DU-su +GIG +KU₇.KU₇ +DIRI +SAG.DU-su +SAR-ab +sah-le₂-e +SUD₂ +10 +GIN₂ +ILLU +{šim}BULUH +5 +GIN₂ +{šim}HAB +x +x +NAGA.SI +{šim}GUR₂.GUR₂ +{šim}LI +ana +ŠA₃-bi +ŠUB-di +ina +A.GEŠTIN.NA +HI.HI +x +x +x +LAL₂-ma +TI +DIŠ +KIMIN +MUN +a-ma-ni +ta-šar₂-rap +SAHAR.URUDU +{na₄}ga-bi-i +DIŠ-niš +tu-sa-mah +ina +GEŠTIN.BIL.LA₂ +HI.HI +LAL-su-ma +UD.3.KAM +NU +DU₈ +ina +DU₈-ka +KAŠ₃ +KUM₂-ta₅ +LUH-si +ZI₃ +BAPPIR +MUD₂ +e-re-ni +ŠEŠ₂ +UD.5.KAM +U₂.HI.A +ŠEŠ-ma +MAR +LAL-su-ma +TI +DIŠ +KIMIN +{u₂}ru-uš-ru-uš-ša +U₂ +BABBAR +BAR +{giš}NU.UR₂.MA +NA₄ +ZU₂.LUM.MA +{u₂}LAG.GA₂ +sah-le₂-e +BIL-ti₃ +GURUN +{u₂}KUR.RA +{u₂}NU.LUH.HA +{u₂}zi-ba-a +ina +{na₄}ur-ṣi +SUD₂ +ZI₃ +BAPPIR +MUD₂ +e-re-ni +EŠ.MEŠ +U₂.HI.A +ŠEŠ +MAR +LAL-su-ma +TI +DIŠ +KIMIN +KAŠ₃ +KUM₂-tu +ša +GUD +ina +A.GEŠTIN.NA +KALAG.GA +SILA₁₁-aš +UD.3.KAM +LAL-su +x +šid +su +x +x +x +x +ana +IGI +GIG +GAR-an +{u₂}HAB +NA₄ +ZU₂.LUM.MA +tur-ar₂ +SUD₂ +x +x +x +x +ti +x +MAR +DIŠ +KIMIN +{giš}NU.UR₂.MA +e-mi-il-ta +{u₂}zi-ba-a +... +x +x +LAL₃ +x +x +ina +IZI +tu-ša₂-ha-an +x +x +x +SAG.DU-su +LUH-si +SAR-ab +... +x +x +x +ŠEŠ₂-ma +TI +DIŠ +NA +SAG.DU-su +GIG.MEŠ +KU₇.KU₇ +DIRI +x +... +x +x +x +x +x +x +... +x +... +x +... +DIŠ +NA +... +SAG.DU-su +x +x +... +DIŠ +KIMIN +NAGA.SI +GAZ +SIM +x +x +... +DIŠ +KIMIN +KAŠ₃ +AB₂ +KUM₂-te +SAG.DU-su +x +... +DIŠ +NA +MURUB₄ +SAG.DU-šu₂ +GIR₂.GIR₂-su +UGU-šu₂ +x +x +x +x +x +x +ŠEŠ₂ +DUB +4.KAM +DIŠ +NA +UGU-šu₂ +KUM₂ +u₂-kal +E₂.GAL +{m}aš-šur-DU₃-A +MAN +ŠU₂ +MAN +KUR +aš-šur{ki} +ša +{d}AG +u +{d}taš-me-tu₄ +GEŠTU-MIN +DAGAL-tu₄ +iš-ru-ku-uš +i-hu-uz-zu +IGI-MIN +na-mir-tu +ni-siq +ṭup-šar-ru-ti +ša +ina +LUGAL-MEŠ-ni +a-lik +mah-ri-ia +mam₂-ma +šip-ru +šu-a-tu +la +i-hu-uz-zu +bul-ṭi +TA +muh-hi +EN +UMBIN +liq-ti +BAR.MEŠ +ta-hi-zu +nak-la +a-zu-gal-lu-tu₄ +{d}nin-urta +u +{d}gu-la +ma-la +ba +aš₂ +ba-aš₂-mu +ina +DUB.MEŠ-ni +aš₂-ṭur +as-niq +IGI.KAR₂-ma +a-na +ta-mar-ti +ši-ta-as-si-ia +qe₂-reb +E₂.GAL-ia +u₂-kin +EN₂ +sag-ki-ni +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +mu-ru-ub-bi-ni +mu-ru-ub-bi +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +DU₃.DU₃.BI +{u₂}aš-lam +NITA₂ +x +x +x +x +x +x +x +x +x +x +x +x +x +e-ma +KA.KEŠDA +EN₂ +ŠID-nu +x +x +x +x +x +x +x +x +x +x +x +KI +KA.KEŠDA +ina +{sig₂}HE₂.ME.DA +NIGIN-mi +x +x +x +x +x +x +EN₂ +id₂-da-ta +tir +gal-gal-la-ta +x +x +x +x +x +x +mul₄-mul₄ +{giš}geštin +gir₂ +mu-un-kar-re +x +x +x +x +x +x +x +šu +mu₂-mu₂-e-de₃ +mul-mul +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +{iti}KIN +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +ŠEG₆-šal +GU₇ +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +x +GU₇ diff --git a/tf/0.3/tr@en.tf b/tf/0.3/tr@en.tf new file mode 100644 index 0000000..452317c --- /dev/null +++ b/tf/0.3/tr@en.tf @@ -0,0 +1,1484 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=english translation of a line +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=str +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +59314 Its ritual: [you rub him with the nagappu of vinegar, you scatter qutru-plant (over it) . . .]. +Wording of five spells [for removing? the kurāru-boil]. +59317 Incantation: “sub ḫurrim sub [ḫurrim ala šuḫta . . .] ša sakutu ḫisi apillat aš [kurbanni idkia ul . . .]”. +Wording of a spell for removing the kurāru-boil. Its ritual: red wool [. . .]. +Incantation: “The curse, like a thief at the opening of a hole, . . . [. . .” Wording? of a spell? for removing the kurāru?-boil]. +59323 Its ritual: you rub the surface of the lesion with aromatics, [(and) you anoint it] with foam from beerwort, [(then) you parch donkey leather on fire, you pound it, (and) you scatter it (over the lesion, then), you parch algae on fire], (and) you scatter it over the lesion, (then) you parch bitter-plant on fire, [(and) you scatter it] over the lesion, [(then) you anoint repeatedly the surface of the lesion with spider (taken) from a sheep, (then) you dry (and) crush leather], (and) you scatter it over the lesion, (then) you parch the rib of a river ox on fire, [(and) you scatter it] over the lesion, [(then) you pound imḫur-līm-plant, (and) you anoint repeatedly the surface of the lesion], (then) you rub the surface of the lesion with beerwort of a tavern keeper, [(and then) you peel away the surface of the lesion with a golden ring]. +Wording of two spells [for healing . . .]. +59326 If a man’s (hair on his) head falls out in tufts: [you bandage his head] with pulverized saḫlû-cress, [you should not remove (the bandage) for three days, (but) on the fourth day you shave his head], you wash his head with water from uḫūlu-alkali, (and) you anoint it repeatedly with oil, [(then) you crush cedar (and) cypress, you mix them in cedar oil, you anoint his head (with the mixture) for three days, (and then) he will recover]. +59328 Alternatively, you shave his head [. . .] you pound būšānu-plant, [you scatter it (over his head)], you bandage him with supālu-juniper [. . .]. +59331 [it is the incantation of Ningirim, the lady of incantations. They told it to me and] I repeated it. [O Gula, cure him (and)] accept [your payment]. +[. . .] (and) you recite [the incantation over] his navel. +59340 [The sick? belly?] is bound up like a reed basket, [like water in a river, it does not know where it will go, like water in a well], it is without flow, [like a fermentation vat, its mouth is covered, neither food nor water] is able to enter. [. . . Asalluḫi (took) notice (and told Enki about this. Enki answered)] ‘What I (know, you know as well). Go, my son!’ You should take [a lump? of salt? and ḫašû-thyme, you should cast the spell of Eridu over them], you should put them in the mouth [of the man, son of his god, (and) the man, son? of his god?, can fart it (= the disease) out like excrement], belch it up [like a burp], pass it [from his anus like wind]. +[Its ritual: . . ., you cast the incantation over it, he sucks on it in his mouth, and then] he drinks it in beer; then he will get better. +[. . .] sick belly? +59346 [. . .] may he release its blockage, [. . . may Asalluḫi, the son of Eridu], release its blockage. +[Its ritual: . . . you recite the incantation seven times], he sucks on it in his mouth, and then he will get better. +59350 [Incantation: “Šakkan, his belly is bound up in the steppe], his hands are filled with murderous dust, [he (has) no mother, who cheers him up], he (has) no sister, who takes care of him, [he (is) like a . . .] carrying a dagger.” Incantation-formula. +[Its ritual: you take a lump of salt (and) nuḫurtu-plant], you cast the incantation over them, he sucks on them in his mouth, and then he will get better. +59358 [Incantation: “The Belly Plant grows in the mountains], I picked it, and it seized my belly, [I spoke to Šamaš, and it seized the belly of Šamaš], I spoke to [Heaven and] Earth, and it seized the belly of Heaven and Earth, [I spoke to so-and-so?, the son? of so-and-so?, and it seized the belly of so-and-so?, the son? of so-and-so?], I spoke to the beasts, and it seized the belly of the beasts. [(Then) I spoke to Ea, my lord, (asking him) that my belly be released!] May the belly of Šamaš be released! [May the belly of Heaven and Earth be released!] May the belly of the beasts be released! [May the belly of so-and-so, the son of so-and-so, be released! O Šamaš?, this plant? is] your plant, you make him drink it, so that he may recover, [. . .] plant DITTO DITTO. +[Wording of a spell for . . .] the belly pursues him. +59361 [Its ritual: . . .] tip? of an arrow with seven knots [. . .] seven and seven times [. . .] dust? from (one) brewing vessel? to (another) brewing vessel? [. . .]. +[once it is at your disposal], you take [one-third litre from it. You knead it in the sap of kasû-tamarind, you shave (his head and) you put it on as a bandage; then you should not remove it for three days]. +[You knead one-third litre of saḫlû-cress (and) one-third litre of] parched grain flour in the sap of kasû-tamarind, [you shave (his head and) you put it on as a bandage; then you should not remove it for three days]. +[You knead] ground [saḫlû-cress], kukru-aromatic (and) horned uḫūlu-alkali [in beer, DITTO (= you shave (his head and) you put it on as a bandage; then you should not remove it for three days)]. +You mix [bitter-plant] (and) emesallu-salt in equal amounts, [you pound (the mixture)] in [ghee (and) you daub his eyes]. +59367 [You crush (and) stir one-third litre of] saḫlû-cress (and) one-third litre of oven sherd (into) ten shekels of [diluted beer]. You knead (the mixture) [in the sap of] kasû-tamarind, (and) you put it on as a bandage; then [you shold not remove it for] three days. +59370 [After] these bandages, [he gathers up into a loaf of bread] ten shekels of saḫlû-cress from the mouth [of a mortar, which] has not yet had chipped off bits fallen into it (or) was ever [made to touch] salt (and) vinegar; then he eats it. You stir five shekels of ground saḫlû-cress into prime-quality beer and you have him drink it. He will [retch and vomit]. +[On the first day], you pound anzaḫḫu-frit [...] +59373 [You crush (and) sieve ten shekels of the fruit of kalbānu-plant, xx of] supālu-juniper (and) one-third litre of [xxx. You knead it in the sap of kasû-tamarind, you shave (his head and) you put it on as a bandage]; then [you should not remove it for] three days. +59375 [... he should drink it] either in prime quality beer [or in wine ...] +[If a man] is continuously affected with headache: [errû-colocynth seed]. +[First tablet of (the series called) "If a man’s cranium holds] heat." +[Palace of Aššur-ban-apli, king of the univ]erse?, ki[ng? of the land of Aššur], +59381 [If a man suffers from an acute fever (and) a throbbing temple, before it becomes severe for him:] in order to heal him, [you take dirt from the doorjambs? of the city? gate?, . . . with oil, you anoint] him (with the mixture), and then he will recover. +59383 [If a man DITTO (= suffers from an acute fever and a throbbing temple) (and continues to) have a temperature: in order to heal him], you continually anoint him with [aprušu-plant] in oil. [You pound] ankinūte-plant, [you heat it up in beer, you anoint him with it], you keep a watch on him, and then he will recover. +59385 [If a man DITTO (= suffers from an acute fever and a throbbing temple) (and) he cannot eat bread or beer:] in order to heal him, you anoint him with oil of kukru-aromatic, [you pound resin of mountain abukkatu-plant], you have him drink it [in diluted beer], (then) you make him throw up using a feather, and then he will recover. +59387 [If a man DITTO (= suffers from an acute fever and a throbbing temple) (and)] he is constantly afflicted [by cold and chills:] in order to heal him, you anoint him with oil of aprušu-plant, he continually drinks kukru-aromatic [by the oven of someone who plucks hides (for making wineskins)], and then he will recover. +59389 [If a man DITTO (= suffers from an acute fever and a throbbing temple), he (continues to) have a temperature (and) is constantly afflicted with terror:] in order to heal him, you anoint [him] with oil of kukru-aromatic (and) oil of burāšu-juniper, [(then) you light a fire in front of him (and) if] he cries out, you continue the treatment, and then [he will recover]. +59391 [If a man DITTO (= suffers from an acute fever, a throbbing temple) (and) any kind of sunburn: you bring] aprušu-plant (and) elkulla-plant from the well, [you mix kukru-aromatic in oil], you anoint him (with the mixture), and then [he will recover]. +[If a man DITTO (= suffers from an acute fever, a throbbing temple and any type of sunburn):] you dry (and) pound [warm urânu-fennel from the water], you mix it in oil, you continually anoint him (with the mixture), [and then he will recover]. +[If a man DITTO (= suffers from an acute fever, a throbbing temple and any type of sunburn):] you dry (and) pound [. . .], you mix it in oil, you continually anoint him with (the mixture), [and then he will recover]. +59397 [If a man . . .] (and) he suffers from [. . .] of the lungs, that man has ṣinaḫtiru-disease: [. . . litres] of bitter-plant — [. . .] these three drugs [. . . you seize . . .] you pound [white plant for two\tdays . . .] in oil [. . . you repeat (the procedure), (then) you make him throw up using a feather, and then DITTO (= he will recover)]. +59400 If a man eats bread (and) drinks beer, and subsequently his internal organs are bloated (and) have cramps, [(and) he has diarrhoea], it is UD.DA SA₂.SA₂-fever: you crush date stones, you boil them down to a paste [. . .]. +[. . .] you heat it up in a diqāru-pot [. . .] +59408 [. . .] . . . [. . .] you crush red illūru-plant [. . .] his head [. . .] you crush unsalted cheese, [you mix? it] in milk [. . .] . . . red illūru-plant [. . .] his head . . . [. . .] (and) you let it cool. Afterwards, [. . .] unsalted cheese into . . . [. . .] you bandage him [. . .] his head with a bandage [. . .] you should not soak . . . [. . .]. +[. . .] . . . you boil down buṭuttu-terebinth flour in water, you bandage his head [. . .]. +59412 [. . .] kibrītu-sulphur, horned uḫūlu-alkali, bat guano [. . .] – you dry these [. . .] together in the shade, you crush (and) sieve them [. . .] the gurištu-boil will go away [. . .]. +[. . .] . . . [. . .] +nuḫurtu-plant seed [. . .]. +kamantu-plant seed [. . .]. +urânu-fennel seed [. . .] +59418 If a man [suffers] from a gastric constriction [. . .] from [. . .]. +59422 If a man [suffers] from a gastric constriction . . . seed [. . .] from [. . .] . . . [. . .]. +59436 [Its ritual: you twist together red (and) white wool, gazelle sinew (and) male ašlu-rush, you tie on seven and seven knots (and) you wrap ēdu-plant, sea algae, nikiptu-spurge,] kibrītu-sulphur, [ru’tītu-sulphur, root of male pillû-mandrake, tamarisk seed, stag horn,] human [skull – (all) these drugs – around each of (these) knots in red wool, (then) you recite the incantation seven times (over the twine),] you sprinkle it with cedar [blood (and) you tie it to his temple. You parch human skull, you pound it] (and) you anoint him [with it in oil. You crush together pig] faeces, [pig jawbone, pig shin,] human [skull, horned uḫūlu-alkali, stag horn, mint, black cumin (and) saḫlû-cress, you mix them with old beef fat (and) you fumigate him (with the mixture) over embers.] +[. . .] you smear [. . .] (and) you bandage him with it. +59441 [. . .] imḫur-līm-plant [. . .] he drinks it on an empty stomach [. . .] date [. . .] you smear [. . .] (and) you bandage him with it. +[. . .] +(o i 7):If a man’s eyes are full of murdinnu- brambles: you shall make an infusion from saḫlû-plant (and) flour of roasted grain in beer, (and) bandage (his eyes). For three days [you do not loosen (the bandage from)] his eyes. [Every] day you bandage (his eyes) three times. On the fourth day, you rub his eyes with parched suādu-aromatic, [(and) you put] water into? [his eyes.] You wipe [his eyes], (and) bandage his eyes once, twice, (and) three times with a hot strip of meat, (and) you ... [his] eyes with fat from a gazelle’s knuckle. Afterwards you pound (the previous substances) in a lead salve and daub his eyes. You pound a dyeing sumac, spatter it in a dry state over his eyes, (and) bandage (the eyes). Three times during the whole day he keeps the binding on (his eyes) and then he removes (it). You mix kalbānu-plant (gloss: or tamarisk), seed(s) of qudru-plant, juniper, roasted grain (and) saḫlû-plant. In dry state, you spatter (the ingredients) over his head, you bandage his head and then for three days you do [not] loosen (the bandage). On the fourth day you release (the bandage) and you shave his head. You keep daubing his eyes with the drug infusion (and) he will get better. +59450 (o i 9):White plant, bat guano, emesallu-saline solution, alum, horned uḫūlu-alkali, bitter-plant, river [silt], kasû-plant: total of eight drugs, which are (used as) drops, if a man’s eyes are inflamed (lit. burn) with sun-heat and [full] of a murdinnu- brambles. +59452 White plant, alum, emesallu-saline solution; these (drugs) are (used as) drops [for the eyes]. +Kukru-aromatic, flour of roasted grain, kasû-plant; these (drugs) are (used as) [drops for the eyes.] +(o i 13):If a man’s eyes contain giddagiddû- fibers, he goes to a stranger’s house and calls at the entrance door’: ‘like x [...] giddagiddû-fibers, ditto, take away your giddagiddû-fibers, ditto ...!’ +59456 (o i 15):He goes [to] an (un)known [house] and calls at the entrance door: ‘like ... [...] ... giddagiddû-fibers, ditto, remove your (pl.) giddagiddû-fibers, ... [...]!’ +59458 If there is a fleshy substance [in] a man’s eyes; [you pound] kukru-aromatic, juniper, ṭūru-plant, seeds of tamarisk ... +(o i 18):If a hair protrudes from a man’s eyes, and his eyes are blurred: [you pound in equal amounts] salt, kammu-tanning- fungus, [kidney?] fat [...] of a sheep (and) mountain honey (and) you mix (them) in ghee. You daub his eyes, (and) wipe (them) [...] +59462 (o i 21):If a man’s eyes are full of loose tissue: in order to [heal him ...] You pound ... [seed] of ‘date reed’ in honey and daub (his eyes) : ... [...] You pound ... asḫar- stone in ghee, you daub (his eyes) : ... [...] +59464 (o i 24):If a man’s] eyes are full of loose tissue and it moves, in order to heal it: [you pound together saḫlû-plant,nīnû-mint, bitter-plant, fat,] kanaktu-aromatic, white plant, bat guano, [emesallu-saline solution, ...]. You mix (them) in cedar ‘blood’ (i.e. resin) or in cedar oil (and) [you make] a collyrium stick [(out of it), you pound (it) in water and daub his eyes]. +59467 (o i 26):If his eyes are full of tissue and blood: bitter-plant, [nīnû-mint, white plant, kanaktu-aromatic pith,] bat guano (and) saḫlû-plant. These plants [are for an ointment (for the case when there is) a loose tissue (in the eyes).] +59469 (o i 29):If a man’s eyes are full qūqānu-‘worm you collect a ‘vulva’ of [a pig ... in a] cloth. You bury (it) under the threshold for seven days, [you remove (it) and ... you pound (it)] in equal measure [...] +59472 (o i 51′):[... you pound (them) in marrow of] a sheep’s short [bone (and)] ... [... (and) daub (his) eyes.] You pound [...] in equal measures. You pound (them) in honey, ghee, cedar oil, copper patina. [You daub (his eyes with it)]. +59474 Alternatively; you pound [cereal] flour with roasted grain, (and) you pour it onto his eyes. +If a man’s eyes are [...]: you mix together [... in kidney fat] of a [sheep] and wax. You pound (it) in marrow of a long bone (and) daub (his eyes). +(o i 55′):If in the eye [...], (and both eyes) become progressively dark: the effect on this man will be long lasting and his eyes will be cloudy. In order to heal it: you pound one shekel of [...] in ghee (and) keep daubing his eyes. +59478 If a man’s eyes are inflamed [...]: you crush and sift [... powder of] kukru- aromatic (and) flour of roasted grain, you make an infusion from (them) in beer (and) bandage his eyes. +White plant, gabû-[alum, emesallu-saline solution]; drugs are (used as) eye-drops. +(o i 59′):If a man’s eyes are flickering [and contain tear(s) you pound white plant (and)] wax? [in ghee You bury (the ingredients)] under the threshold for seven days, [you remove it and ...]. +59482 If a man’s eyes are [...] you pound [...] and daub his eyes ... [...] +(o i 62′):If a man’s eyes [grew dark: you pound ...] in oil and patina [of a copper tangussu-kettle and daub his eyes.] You pound an old fungus-[ridden] potsherd in oil (and) copper patina (and daub his eyes). You [mix] mountain honey [in ... and you daub his eyes]. +59485 (o i 64′):If a man’s eyes are under pressure; you squeeze fox-grape while still fresh, [you make an infusion from] its sap into a [diqāru-pot].You cover the top, and whatever emerges? above, [you pound] in a copper patina and sesame oil [and daub (his eyes)]. +59487 (o i 66′):Alternatively: you grate a saḫlû-plantinto milk, you bake (it) in a tannour-oven. It shall not dry out very much [...]. You pound kanaktu-aromatic pith, atāʾišu-plant, alum, white plant (and) kasû-plant in ghee. [You daub his eyes with it]. +59489 Alternatively: you parch crumbled bread, you pound it (and) apply it as drops (on his eyes). +Alternatively: you make an infusion from powder of chickpea, powder of lentil, powder of kasû-plant, freshly roasted sahlû-plant in a diqāru-pot. [You bandage (his eyes)]. +Alternatively: you pound ballukku-aromatic (and) kasû-plant in milk (and) you daub his eyes. +Alternatively: you pound lulû-antimony in the marrow of a sheep’s bone (and) daub (his eyes). +Alternatively:you cure the gall bladder of raqqu-turtle in salt, you leave (it) until it has dried out, when it has dried out you pound it in oil (and) copper patina (and) daub (his eyes). +Alternatively: you pound [gall bladder of ...] over a bronze knife in ghee, (and) you daub (his eyes with it). +59496 Alternatively: you put white plant (and) fox-grape in sesame oil, you daub (his eyes) with your finger. +Alternatively: you dry a lizard’s head (and) pound (it), [place it in oil (and) daub (his eyes)] : Alternatively: you dry a wall-lizard (and) pound (it). You put (it) on a palette? over charcoal, (and) daub (his eyes). +You parch a lamb chop (and) pound it. (...) Over three days you place (it) on a palette (and) you regularly daub (his eyes). +If the man’s eyes are closed: [you pound ...], mix (it) in ghee (and) you drip it into his eyes. +(o ii 6):You [pound?] wild cow’s brain and [(...)] you mix (it) in equal measure in sesame oil and (in) the brain of a male pigeon. Over three days [you place (it) on a cosmetic palette (and)] you keep on applying it regularly into his eyes. +59502 (o ii 9):[You pound] a raven’s egg, [(...) afterwards] you remove (it), and smear ghee on a bronze knife. [...] You wash your hands in water, [...] You soften up ... [in] ghee and daub (his eyes with it). +59505 [If, ... you place (it) on a cosmetic palette (and)] you keep on daubing (his eyes) regularly. +[...] you pound, and daub (his eyes). +[...] you make an infusion from (it) in sesame oil, you pound one fourth measure of kalgukku-red paste (and) daub (his eyes). +You pound [...] (and) x SILA-measures of black frit in cedar oil (and) daub (his eyes). +…: You pound fox-grape, (and) transfer (it) in oil into a copper tangussu-kettle, you daub (his eyes). +[...] you pound together [... seeds of] egemgīru-plant, and urnû-plant (and) you daub (his eyes). +[...] you pound in oil, you daub (his eyes). +[...] ... (and) you drip (it) into his eyes. +(o ii 19):[...] you cut [the wick?] of a lamp. You [...] the smoke of the lamp, [...]... (and) you wash his eyes with the sap of horned uḫūlu-alkali. +59515 (o ii 21):[...] you mix in equal measures [... white plant], (and) five shekels of bat guano. [...] you pound (it with) a lead spoon in oil and copper patina, daub (his eyes with it). +59517 (o ii 23):[...] you cool (it) off in a copper tangussu-kettle (and) you mix (it) in a copper tangussu-kettle. [...] you strip away the patina of a copper tangussu-kettle (and) daub (his eyes) for seven days. +59519 (o ii 25):[...] crushed [(ingredients)] and fat, you pound [... into a] lead [salve], daub (his eyes), then the eyelid has benefitted. +59521 (o ii 27):[In order to heal the irritated area around the eyes and] remove [his eyelash]: you introduce grated sahlû-plant into a tannour-oven, but [it (= grated sahlû) shall not dry out much. You make an infusion from it in pūru-oil (and)] daub [his eyes]. You pound old copper in ghee as an infusion for the eyes, you daub his eyes again and again, then he should recover. +59523 (o ii 29):[... sap] of maštakal-plant, sap of dog’s tongue-plant, fox-grape sap, You take [...]. You pound (them) in copper patina (gloss: in the sap of a sahlû-plant), (and) you daub his eyes (with it). +59525 You parch (and) crush [...], you pound (it) in copper patina, (and) daub (his eyes). +(o ii 32):[...] You bury (the ingredients) under the threshold [for seven days]. You remove (them) up and then you pound it in copper patina, daub (his eyes with it). You pound [...] in copper patina, daub (his eyes with it). +59528 (o ii 35):[...] you prick their eyes (of raven chicks) with a needle. [... (you take)] the plants which the raven took to its chicks (in order to heal them). You pound [... (these plants brought?)] by it (and) daub (his eyes). +59531 (o ii 42):[...] you pound kamkadu-plant. You [shave off] the surface of the kurāru-pustle of his eyelids. You roast in a tub [...], ballukku-aromatic, tiny? plant seeds, excrement of upputte-insect, reed leaf, seeds of talupadu-plant, a hoof of the left hind leg of an ewe which bore twins, [kidney] of young suckling goat which has not (yet) bitten a plant nor grasped a grain kernel. You roast salted baltu-(thorn) plant, šarmadu-plant, fox-vine (and) seeds of shepherd’s-staff plant. You pound (and) mix together seeds of dog’s- tongue plant, kurkānû-plant, egemgīru-plant, white plant, sweet [reed]. You knead (all the above- mentioned ingredients, first) in warmed-up (and then) cold sap of the kasû-plant. You continusly bandage (the eyes) for fifteen days. On the fifteenth day, you daub (his eyes) with white plant for three days. +59538 If a man’s eyes are full of yellowness (jaundice): you pound pomegranate peel (and) [you blow?] it into his eyes through a reed-straw. +If a man’s eyes are full of yellowness (jaundice): you pound pomegranate peel in oil and daub (his eyes) : [(or alternative) you pound] (it in) emesallu-saline solution (and) [daub his eyes]. +(o ii 47):[If a man’s eyes] are sick and he cannot open (them) for many days, with his head being feverish (ummu), (and) his eyes are a film-[filled]. [...] ... You shave his head. You cool off (the head) with dough three times a day. You parch seeds of maštakal-plant, you pound [in ghee] on a lead [spoon] (and) daub his eyes. You wash (the eyes) with water, (and) you put kasû-plant over his eyes, until they become clear (of film) you keep on repeating (it). +59543 You mix fox-grape (and) mountain honey in ghee (and) keep daubing (his eyes). +(o ii 51):If a man’s eyes are sick, and a membrane covers the surface of the pupil of his eyes, tear(s) flow, (and) his eyes are film-filled: errû-colocynth, sahlânu-plant, seeds of [dog’s] tongue plant [...], white plant, bat guano. Those elevensic! drugs you pound [together], mix [in] cedar [oil], daub his eyes, then he should recover. +59547 (o ii 53):If a man’s eyes are sick, and [a membrane covers the surface of the pupil of his eyes], (and) his vision is ‘heavy’, in order to remove the white spot from the surface of the pupil of his eyes. [You pound] aktam-plant, [... in] cedar [oil] you mix it, you keep daubing his eyes, and then he should recover. +59549 (o ii 55):If a man’s eyes [are sick, and ...] his vision is ‘heavy’, [You pound ...] (and) daub his eyes. +59551 (o ii 57):... [...] you pound [...] and daub (his eyes). +59553 (o ii 61):[...] male pillû-plant. [...] he shall eat (it) and then ... [... you pound it (and) through a reed-straw] you blow it [in]to his eyes. [...] you pound] and ditto (= you daub his eyes.) +59557 (o ii 64):[You] put [...]. You [(smear)...] on the surface of potsherd of fine salve, [...] you burn it. The smoke of the remainder [..]. You keep daubing his eyes separately, then he should recover. +59560 (o ii 66):[If] man’s eyes [sick and ...] ... and (the condition) is grave. In order to heal it: resin of nuḫurtu-plant, resin of baluhhu-aromatic [... seven] or eight months will elapse, (then) he should recover. +59562 If a man’s eyes [are full of] a film, [...] you pound [15] grains of potsherd, (and) white plant in ghee, (and) daub (his eyes). +If a man ditto: [you pound] one shekel of bat [guano in ...] (and) you spatter it in dry state (into his eyes). +If a man ditto: you pound one shekel of bat guano in ghee and daub (his eyes) : you pound a 15 grain measure of potsherd [... (and) daub (his eyes). +[You pound] imḫur-līm-plant in ghee [(and) daub (his eyes).] +59567 [... once], twice, three times, you pound ghee (and) daub (his eyes). +(r iii 11′):[...:] you pound in ghee (and) you daub (his eyes) three times in a month. You pound bat guano in ghee (and) daub (his eyes). You knead [leaf] of tamarisk, leaf of ēru-tree [in] vinegar?, (and) you bandage his eyes. Without (him) eating, you squeeze out into his eyes white plant, horned uhūlu-alkali, (and) kid’s-ear plant. +59570 [...] ... you mix emesallu-saline solution (and) roasted grain powder, you parch (the mixture), pound it (and) daub his eyes. +[If ...:] you pound copper patina into fat of a gazelle’s thigh and daub (his eyes). +[If ...:] you pound [bitter-plant in milk from a woman in maternity, who] gave birth [to a male] (and) daub (his eyes), you drip into his eyes honey (and) ghee. +(r iii 16′):[If ...] x x [...] wind does not come out. [...] ... you mix [...] in ghee (and) daub (his eyes). +59575 [...] you weigh (it and) daub (his eyes). +[...], you mix [bat guano] in dry state in ghee (and) ditto. +(r iii 20′):[...] you wash ubāni-aṣi-plant in water while still fresh, crush it (and) you ... (filter out) their saps, dry (it) out, ... (and) mix in equal measure the filtrate (with) the copper patina. You wash (it) [in water], pound mountain honey (and) you daub (his eyes). +59579 [...] you mix in equal measure [... in the] milk from a woman in maternity, pound it (and) daub (his eyes with it). +(r iii 23′):[...] you press out their sap into a pursītu-bowl. [... you leave it until it has dried], when it has dried out you pound it in copper patina (and) ghee, (and) daub (his eyes). +59582 [... into] his eyes you drip (it). You pound fat in copper patina (and) daub (his eyes). +(r iii 27′):If ..., (and)] his eyes are closed: you pound a field-butterfly on mešēltu- whetstone. The inner part of his eyes [...] magnetite, root of male date palm, [...] you pound [...], (and) alum separately, (and) daub (his eyes). +59586 [...:] you crush [...], (and) fruit of errû- colocynth, pound it in oil (and) daub (his eyes). +[... in] mountain [honey] (and) ghee, ditto. +[...] you pound (and) daub (his eyes). +You pound [...], [mix] in ghee (and) [...] +(r iii 36′):[...] you prick their eyes with a needle. [... you pound ...] into a lead spoon- salve, [(and daub his eyes)] +59592 [...] you dry out beer mash (and) crush (it) [...], (and) [pound] in ghee, [(and daub his eyes)] +[...] you pound [...], you drip (it) into his eyes. + [...] and daub his eyes. +59597 [...] you pound (and) daub (his eyes). +(r iii 44′):[...] you collect [... in a] cloth. [...] you drip (it) [into his eyes]. +59600 [...] ... he uproots. +(r iii 47′):[...], (and) gazelle droppings, [...] you pound [...], (and) daub (his eyes). +59604 [...] you pound [...] in water, (and) daub (his eyes). +[...] you knead [...] in beer, (and) bandage (his eyes). +(r iii 52′):[...], you daub (his eyes). [...], you pound [...], (and) you daub (his eyes). +59608 [...] you pound [...] in oil, (and) you daub (his eyes). +[...] you apply it on his sick eye. +[...] you pound [...], (and) daub (his eyes). +(r iii 57′):[...] you pound [...], (and) daub (his eyes) ... [...] you bind on. +59614 [You ...] urine, [..] atāʾišu-plant, the inner part of his eyes [...] you grind up [...] +(r iii 61′):If his eyes are [... you ...] saḫlû-plant, ašû-disease-plant, [...] you mix (the ingredients) [in] milk, (and) daub (his eyes). +59617 In order to soothe [...], you mix [...] in oil (and) daub (his eyes). +[You apply] fat and flake of salt into [his] eyes, (and) you mix [...] in cedar oil, (and) daub (his eyes). +You pound emesallu-saline solution (and) aktam-plant in honey, [you ...] in honey. [...] in white honey with a bronze knife, ditto (i.e. you mix and daub his eyes). +If a man’s eyes are rotten: [...] white plant, seeds of ‘date reed’ +59622 [...] bat guano, [...] +You refine lead in ghee [...] +If a man’s eyes have grown bulky with a film ... [...] +(r iv 5):If a man’s right eye has [grown bulky] with a film [...] with a [sharp] scalpel [...] +59627 (r iv 7):If a man’s left eye has [grown bulky] with a film [...] with a scalpel [...] +59629 If a man’s eyes are sick and shiny [you ...] +[You pound] the brains of an erû-eagle in the milk from a woman in maternity [...] +[You mix] seeds of ‘date reed’ (and) powder [of roasted grain ...] +(r iv 12):If the man’s pupils [are full] of a film, [you ...] you daub his eyes. Alternatively: resin of abukkatu-plant [...] +59634 If a man’s eye [is full of] a film (and) [has inflammation ...] ... [...] +59637 [...] Alternatively [...] +(r iv 44′):[If a man’s eyes] are full of ... [...] [You ...] ..., blood of a black ox-fly and [...] +59640 If a man’s eyes are troubled: [you mix together] white honey in ghee (and) [...] +(r iv 51′):[Palace of Ashurbanipal king of the world, king of the Land Assyria, to whom Nabû and Tašmētu granted understanding,(who) acquired] clear insight [(and) a high level of scribal proficiency,] that skill which among the kings, my predecessor(s) no one [acquired]. [I wrote,] checked, and collated tablets with medical prescriptions from cranium to the (toe-) nail, non-canonical material, elaborate teaching(s), (and) the advanced healing art(s) of Ninurta and Gula, as much as created, (and) I placed (them) within of my palace for consultation (and) my reading. +59650 If a man suffers from phlegm, which has turned into gastric constriction: root of pillû-mandrake, root of šūšu-liquorice, tarmuš-lupin, imḫur-līm-plant, imḫur-ešrā-plant, tullal-plant, šakirû-henbane – you pound together these seven drugs, you put them in beer, you leave (the mixture) out overnight under the stars (and) he drinks it continually in the morning on an empty stomach; then he will get better. +59654 If a man suffers from a gastric constriction: on that day, you have him ride on a magurru-boat, you send him downstream and you recite an incantation as follows: Enuru-incantation: “. . ., the chief wife of the Mountain DITTO (= Zarpanītu), the reed of Enlil, which no one fully knows, Zarpanītu, . . . establishes wisdom, her feet are planted, her feet are seated, the feet stand inverted, the feet are inverted.” Incantation formula. You recite this incantation; then he will recover. +59657 Alternatively, he drinks (an infusion of) dried mongoose meat on an empty stomach; then he will recover. Alternatively, he drinks root of šūšu-liquorice in water on an empty stomach; then he will recover. Alternatively, you pound salt (and) he drinks it in water on an empty stomach; then he will recover. Alternatively, you pound amānu-salt (and) he drinks it on an empty stomach; then he will recover. +59659 If a man suffers from a gastric constriction: you make that man squat over his (own) two feet (and) you pour oven-heated (and still) warm sap of kasû-tamarind over him; then he will recover. +Alternatively, he kneels and sits down on top of his (own) two feet (and) you drip cold water on top of his head. +59663 Alternatively, you put his head down, you lift his feet up, (and then) in (his) weakened state you strike his cheek, in (his) weakened state you rub him and you say "it is good for the belly”, (then) with your left thumb, you touch his buttocks 14 times, you touch his head 14 times and you touch the ground. +59665 Alternatively, you pound root of male pillû-mandrake, root of šūšu-liquorice, imḫur-līm-plant, imḫur-ešrā-plant, tarmuš-lupin, maštakal-plant (and) ‘dog’s tongue’ plant (and) he drinks them either in water or beer. +59667 If a man’s belly keeps throbbing up against him: you pound ten measures of [x x x] x (and) ten measures of marišmalû-plant, you mix them [x x x x]; then he will recover. +59670 If a man suffers from a gastric constriction, his internal organs are extremely swollen (and) [his esophagus? causes? him pain?: you crush? (and) sift?] separately imḫur-ešrā-plant (and) root of male pillû-mandrake, you take equal amounts [of them (and) he drinks them in beer.] (Afterwards) you soften them [in cold? water?], you leave (the mixture) out overnight under the stars, in the morning you heat it up, you filter it, you pour it in his anus (and) he will have a bowel movement; then he will recover. +59672 You crush (and) sift together kukru-aromatic, burāšu-juniper, ṣumlalû-aromatic, lipāru-tree leaf, ŠE.ḪAR-tree leaf (and) urbatu-rush seed, you mix them with fat (and) ṭūru-opopanax, you smear (the mixture) on a piece of leather (and) you bandage his epigastrium; then he will recover. +59677 If a man suffers from a gastric constriction, his belly does not let him accept bread and beer, he regurgitates into his mouth, his stomach causes him to have a piercing pain, he is constantly vomiting, his flesh continually sags, flatulence (lit. wind) circulates in his anus (and) his internal organs are swollen: in order to treat him, you pound half a litre of date juice, half a litre of sap of kasû-tamarind, ten measures of vinegar, three shekels of pressed oil, two shekels of honey (and) ten shekels of nīnû-mint, you put them all together, you leave (the mixture) out for the night under the Goat-star (and) in the morning, you have him drink it on an empty stomach. Afterwards, you have him drink half a litre of garum, he will void from his mouth and from his anus, you rub him down; then he will recover. +Alternatively, you pound together mountain salt (and) amānu-salt, you have him drink them in beer on an empty stomach, he will void from his mouth and from his anus, and then you rub him down, and he will recover. +Alternatively, you pound together nuḫurtu-plant (and) seven grains of imḫur-līm-plant, you have him drink them in prime-quality beer on an empty stomach, he will void from his mouth and from his anus, and then DITTO (= you rub him down, and he will recover). +59681 Alternatively, you pound together parched grain flour, ḫarūbu-carob flour (and) the diktu form of dates, he continually drinks them in beer on an empty stomach for two days, (and) [for two?] days? he continually drinks them in water on an empty stomach, (then) you sprinkle his epigastrium with water, and then he will recover. +59688 Alternatively, you fill a tangussu-vessel with water and beer, and then you put sīḫu-wormwood, argannu-conifer, barīrātu-sagapenum, ḫašû-thyme (and) aktam in it, you heat (the mixture) up, you filter it (and) you wash him in it, (then) he emerges (from the bath), (and) you anoint him with cedar oil. Half a litre of saḫlû-cress, half a litre of kukru-aromatic, half a litre of burāšu-juniper, half a litre of qutru-plant, half a litre of kasû-tamarind, half a litre of malt flour, half a litre of chick-pea flour, half a litre of lentil flour, half a litre of pappasītu-mineral, half a litre of nīnû-mint, half a litre of kamantu-plant, half a litre of pigeon droppings, half a litre of erišti eqli-plant, ten shekels of nikiptu-spurge, ten shekels of sea algae, half a litre of wheat flour, half a litre of date, half a litre of fine beer spice (and) half a litre of coarse flour — you crush (and) sieve these sixteen drugs together, you boil them down to a paste in prime-quality beer in a tangussu-vessel, you bandage his epigastrium for three days, (and then) his belly will let him accept (different) foods and beer; then he will recover. +If a man’s belly constantly binds him: he eats imḫur-līm-plant on an empty stomach, (and then) you pound it, (and) he continually drinks it in beer on an empty stomach; then he will recover. +Alternatively, he constantly eats imḫur-ešrā-plant (and) root of šurnû-plant on an empty stomach, (and then) you pound them, (and) he continually drinks them in beer on an empty stomach; then he will recover. +Alternatively, DITTO (= he constantly eats) arzallû-plant, ḫašû-thyme, kukru-aromatic (and) . . . on an empty stomach, (and then he will recover). +Alternatively, you mix chameleon fat with ghee and salt, he constantly eats (the mixture) on an empty stomach, and then he will recover. +Alternatively, you pound kakkusakku-plant with wide leaves in the sap of kasû-tamarind, you stir (the mixture) into beer and honey, he continually drinks it on an empty stomach, and then he will recover. +Alternatively, you pound together kakkusakku-plant with wide leaves and salt, you stir them into beer and honey, he continually drinks (the mixture) on an empty stomach, and then he will recover. +Alternatively, you boil dadānu-plant with wide leaves like laptu-turnip, he continually drinks it, (and then) he will recover. +Alternatively, he eats root of šūšu-liquorice on an empty stomach, (and then) you pound it, (and) he drinks it in beer on an empty stomach [. . .] . . . ; (then) he will recover. +If a man has? [. . .], when his belly seizes him, [. . .] he drinks it on an empty stomach, (and then) he will recover. +[. . .] beer?, DITTO. +59702 [. . .] . . . [. . .] . . . +59704 [. . .] . . . [. . .] . . . +59706 If a man’s belly hurts him: you pound salted ḫašû-thyme, you put it in water or beer or wine, (and) he drinks it. +If a man’s belly hurts him pain: he drinks ḫašû-thyme in water or beer. +59709 If a man’s belly hurts him: he drinks tīyatu-plant in beer, imḫur-līm-plant in beer, imḫur-ešrā-plant in beer, tarmuš-lupin in beer, ēdu-plant in beer, black cumin in beer, būšānu-plant in beer (and) ḫašû-thyme in beer or wine. +59711 If a man’s internal organs hurt him: you heat up half a litre of date, half a litre of wheat groats (and) half a litre of lumps of malt in three litres of prime-quality beer, you let (the mixture) cool, you filter it, you \tput oil on the surface, (and) you pour it into his anus. +59714 Now?, you pound laptu-turnip, šūmū-garlic (and) cumin, (and) he drinks them in beer. Alternatively, you pound lettuce? (and) šūmū-garlic, you put them in water, you leave (the mixture) out overnight under the stars, (and) he drinks it. After he drinks it, he eats mirsu-cake in ghee. Alternatively, you pound nuḫurtu-plant, (and) he drinks it in beer.Alternatively, you pound imḫur-līm-plant, DITTO (= he drinks it in beer). Alternatively, he eats pure plant while green. +59719 If a man’s belly is bound up: you pound together šūmū-garlic while green (and) kukru?-aromatic, you stir them into water, you have him drink it on an empty stomach, (and then) he eats date in lard or oil. Alternatively, you pound white juniper seeds, he drinks it in beer on an empty stomach, and then he will recover. Alternatively, you mix imḫur-līm-plant, imḫur-ešrā-plant, tarmuš-lupin, root of male pillû-mandrake (and) [. . .] in equal amounts, you steep (the mixture) in beer, you leave it out overnight under the stars (and) in the morning, you have him drink it on an empty stomach, (but) you should not let him drink the sap? of kasû-tamarind?; (then) he will recover. +59721 If a man’s belly constantly binds him, (and) his internal organs are extremely swollen: you put ḫašû-thyme, sweet reed, ballukku-aromatic (and) burāšu-juniper all together, you heat (the mixture) up, you filter it, you pour it into his anus while hot, and then he will recover. +59725 If a man eats bread (and) drinks beer to his satisfaction, but then his belly constantly binds (and) seizes him, his internal organs are swollen, and he is constipated, he suffers from a belly that is always pursuing the evening meal: in order to heal him, cedar, cypress, sweet reed, ballukku-aromatic, asu-myrtle (and) ḫašû-thyme — you chop up these five drugs all together, you put them in beer, you heat (the mixture) up, you filter it, you put honey and pressed oil in it (and) while it is still hot, you skim it off using a leather (bag) for potions, you pour it into his anus, (and then) he will recover. +59732 [Incantation: “The internal organs?] are constantly loosened, with the stomach twisted (and) the coils of the intestines completely knotted up . . . [. . .] . . . his face is covered with darkness in the same way that water in an irrigation ditch (is covered) with algae, blown up (and) thrown down by the wind of the steppe, he constantly sheds (tears), his eyes are filled with the ‘hand of the steppe’, his lips are constantly parched, he keeps flopping around like fish (and) continually puffs himself up like a snake. Gula, the provider of good health for mankind, saw this and brought the young man into the temple of Asalluhi, merciful Marduk looked upon him, and then (said): ‘Belch and feel better, young man! May the wind either come out through (your) anus, or may a belch come out from (your) throat’.” Incantation formula. +Wording of a spell for a gastric constriction — you recite it. +59736 If [a man?] is constantly upset (and) cannot accept bread and beer, his shoulder blades hurt him, he keeps his head bandaged (and) he is willing to eat ghee, (but) for seven days he would not eat šūmū-garlic, šamaškilu-onion or karašu-leek: he continually bathes in the sap of šunû-tree, (then) you pound errû-cucumber seed (and) ḫašû-thyme seed, he drinks them in beer, and then he will recover. +[Alternatively], you dry (and) pound [. . .] (and) dough, (and then) he drinks them in brewer’s beer. You pound errû-cucumber seed (gloss: burāšu-juniper seed) (and) šunû-tree seed, (and then) he drinks them in beer. +59739 If a man suffers from a gastric constriction: in order to remove the gastric constriction, you pound imḫur-līm-plant, imḫur-ešrā-plant, tarmuš-lupin (and) nīnû-mint, (and then) he drinks them in oil and beer. +59742 He drinks . . . in beer, (and) he eats dried shrew. You pound [. . .] kakkusakku-plant with wide leaves, būšānu-plant (and) imḫur-līm-plant, (and then) he drinks them in ‘mountain oil’ (gloss: ‘pure oil’). He drinks salt in beer, he drinks salt in water on an empty stomach, and then he will get better. +59745 If a man constantly cries out “my belly, my belly!”: urnû-mint, ḫašû-thyme, tīyatu-plant, nuḫurtu-plant, nīnû-mint, saḫlû-cress, tarmuš-lupin, imḫur-līm-plant, imḫur-ešrā-plant, \taktam-plant, maštakal-plant (and) tamarisk — he continually drinks these twelve drugs in beer on an empty stomach. +If a man continually rubs his belly: you pound tamarisk leaf, maštakal-plant (and) ‘conjurer’s stick’ plant, he drinks them in beer on an empty stomach, and then he will get better. +Root of šūšu-liquorice, root of male pillû-mandrake, tarmuš-lupin, imḫur-līm-plant, imḫur-ešrā-plant, maštakal-plant (and) maštakal-plant seed. +Seven drugs for a gastric constriction — he drinks them in beer. +59750 You crush (and) [sieve?] together one shekel of emesallu-salt, [kukru?-aromatic] (and) burāšu-juniper, you heat them up in beer, you put [. . .] in (the mixture), (and then) you pour it into his anus. +59756 Incantation: “What are your entrails filled with? [What] are your entrails filled with? . . . your entrails. [Whom] shall I send to the canal inspector of your entrails? May they bear [shovels of silver (and) spades of gold!] May they open up the waterways! [May they open up the canals], so that his excrement can escape and come out, [so that the whirlwind in his innards can come out] and see the sun. The incantation is not mine, [it is the incantation of Asalluḫi, the exorcist of the gods. He cast it and I picked it up]. O Gula, cure him (and) accept the payment!” Incantation. +59762 [Incantation: "‘O belly, O belly! Where are you going?’] ‘I’m going to inflict pain [on the belly of the young man!] I’m going to crush the belly of the young woman!’ [‘You should not inflict pain on the belly of the young man! You should not crush the belly of the young woman!’] May it (= the belly) inflict pain on the belly of the ox in the pen, [the belly of the sheep in the fold] (and) the belly of the pig in the pigsty! [The incantation is not mine, it is the incantation] of Asalluhi and Gula, [it is the incantation of Ningirim, the lady of incantations. They] told it to me and I [repeated it. O Gula, cure him (and) accept your payment.]" +[. . .] (and) you recite [the incantation] over his navel. +59770 [The sick? belly?] is bound up like a reed basket, [like water in a river, it does not know where it will go], like water in a well, it is without flow, [like a fermentation vat, its mouth is covered], neither food nor water is able to enter. [. . .] Asalluḫi (took) notice (and told Enki about this. Enki answered) ‘What I (know, you know as well). Go, my son!’ You should take [a lump? of salt?] and ḫašû-thyme, you should cast the spell [of Eridu] over them, you should put them in the mouth of the man, son of his god, (and) the man, [son? of his god?], can fart it (= the disease) out [like excrement], belch it up like a burp, pass it from his anus like wind. +Its ritual: [. . .] you cast the incantation over it, he sucks on it in his mouth, and then he drinks it in beer; then he will get better. +59774 [. . .] may he release its blockage, [. . .] may Asalluḫi, the son of Eridu, release its blockage. +[Its ritual: . . .] you recite [the incantation] seven times, he sucks on it in his mouth, and then he will get better. +59778 Incantation: “[Šakkan, his belly] is bound up [in the steppe], his hands are filled with murderous dust, he (has) no [mother], who cheers him up, he (has) no sister, who takes care of him, he (is) like a . . . carrying a dagger.” [Incantation formula]. +[Its ritual]: you take a lump of salt (and) nuḫurtu-plant, you cast the incantation over them, [he sucks on them in his mouth, and then he will get better]. +59786 [Incantation: “The Belly Plant] grows in the mountains, I picked it, and [it seized my belly], I spoke [to Šamaš], and it seized the belly of Šamaš, [I spoke to Heaven and Earth, and it seized the belly of Heaven and Earth], I spoke to [so-and-so?, the son? of so-and-so?], and it seized the belly of [so-and-so?, the son? of so-and-so?, I spoke to the beasts, and it seized the belly of the beasts]. (Then) I spoke to [Ea], my lord, (asking him) that my belly [be released! May the belly of Šamaš be released!] May the belly of [Heaven and] Earth be released! May the belly [of the beasts be released!] May the belly of so-and-so, the son of so-and-so, be released! [O Šamaš?, this plant? is your plant], you make him drink it, [so that he may recover . . .].” +Wording of a spell for [. . . the belly pursues him]. +59793 Its ritual: . . . [. . . tip? of an arrow with seven knots] . . . seven and seven times [. . . dust?] from (one) brewing vessel? [to (another) brewing vessel? . . .] you recite? the incantation seven times [. . .] while facing the sun [. . .] you make an incision on the spot [. . .] with the right and? left? foot . . . [. . .] he removes it with the instep of both the [right and] the left foot, and then he will get better?. +59802 Incantation: “The belly of Šamaš grew sick in the mountains [. . .], but the Belly Plant had appeared in Makkan, so Sîn [tore it out], (and because of this) the face of Šamaš brightened. Šamaš brought the plant down from the mountains, and once he had planted it in the ground, its roots filled the earth, its horns gored the heavens, it seized the belly of Šamaš, when he took it, it seized the belly of Sîn in the clouds, it seized the belly of the ox in the stall, it seized the belly of the ram in the fold, it seized the belly of the ass among the herd, it seized the belly of the dog at the door-bolt, it seized the belly of the hog in he pigsty, it seized the belly of the young man, while at play, it seized the belly of the young woman in her bedroom, it seized the belly of so-and-so, the son of so-and-so — tumurê tugarê. It is at his request: abandon his body! Abandon every place where he (= Šamaš) planted (you)!” Incantation formula. +59804 Its ritual: you pound urnû-mint, nuḫurtu-plant, tīyatu-plant, kasû-tamarind (and) nīnû-mint together, you stir them into beer, you recite the incantation over (the mixture), he drinks it using his left hand, and then he will recover. +59810 [Incantation]: “The Belly Plant grows in the mountains, I picked it, and it seized \tmy belly, I spoke [to Šamaš], and it seized the belly of Šamaš, I spoke [to Heaven and Earth], and it seized the belly of Heaven and Earth, [I spoke to the beasts, and] it seized the belly of the beasts. [(Then) I spoke?] to Ea [lord of the Apsû] (asking him) that my belly [be released!] May the belly of Šamaš be released! Just as [the belly of Šamaš] is released, may the belly of [Heaven and Earth] be released! Just as the belly of Heaven and Earth [is released . . .] . . .” +Its ritual [. . .] you recite [the incantation seven? times], he sucks on it in his mouth, and then he will get better. +59813 Incantation: “Tear . . . [. . .] the alewife . . . the disturbed fermenting vat, by the word of Marduk (and) the utterance of \t Šamaš, may the man recover!” Incantation formula. +59816 Incantation: "‘O pure wind that dwells in the mountains! Who has brought [the pure? . . .] of mankind to you?’ ‘He whose flesh is not to be eaten, whose orifices are not to [. . .]’ . . . ‘O wind, go out through the anus just as a garden snake [. . .]!’." Incantation formula. +59818 Its ritual: tīyatu-plant, kasû-tamarind [. . .] you scatter oil on the surface of the potion, [you recite] the incantation three times [. . .]. +59820 [Alternatively, . . .] . . . [. . .] you pulverize [. . .] tīyatu=plant (and) kasû-tamarind, (and) he drinks them in beer. +Alternatively, [. . .] (and) he drinks it in oil and prime-quality beer. +59823 Incantation: “Inflated like a waterskin and blown up like a leather bag. It is ‘in his mouth’ (Sumerian). It is ‘in his mouth’ (Akkadian), (which is like) an unopened fig.” Incantation formula. +Its ritual: with the big toe of your left foot, you cast the spell seven times over his navel, and then he will get better. +Incantation: “The belly is a fermenting vat, let me drain (its) beer!” Incantation formula. +Its ritual: with the big toe of your left foot, you cast the\tincantation, you scratch it with your finger, and then he will get better. +59828 Incantation: “‘Wind!’ they say, Wind! O Wind! You are the fire of the gods! O Wind, you are the one between excrement and urine! You come out, and then your throne is set up with the gods, your brothers!” Incantation. +Its ritual: you dry (and) pound ‘dog’s tongue’ plant, you put it in oil, you recite the incantation (over the mixture), you anoint him with it, and then he will get better. +59831 Incantation: “It is the belly! O Belly! The belly is strong! The belly is a hero! It is full of fearsomeness like a lion! It is free to run like a wolf! The incantation is not mine, it is the incantation of Gula.” +59834 Incantation: “I cast a spell, I cast a spell for the daughter of Ea, I cast a spell for the daughter of An, I cast a spell for the daughter of a god. What was it about? What was it about? It was about the liver, it was about the belly, it was about the belly, it was about a sick belly.” Incantation formula. +Its ritual: you spin a thread of white wool, you tie seven knots, you recite the incantation, you bind it on his backside, and then he will get better. +59839 Incantation: “Speak to Libūr-zāninu, [thus] says Adapa, the sage: ‘Once you and I have gone through all the mountains and [drew?] murmuring well-water, [we poured it out over so-and-so, son of so-and-so, . . .] the hand of the sick man is seized. Let us cast the spell of Ea on him, so that he may recover’.” [Incantation]. +59841 [Its ritual]: You pulverize nuḫurtu-plant (and) salted tīyatu-plant, [you mix? them in beer?], (and) you scratch [his big toe of his left side] with your hand. +59846 [Incantation: “. . .] . . . he sent me to Libūr-nādin [. . .] by the side of a well in the mountains [. . .] we did not sit down and [. . .] so-and-so, the son of so-and-so, a fortunate man in your presence [. . .] . . .” Incantation formula. +59848 [Its ritual: . . .] of the incantation for . . . which you cast [. . .] you remove it for him, and then he will get better. +[Incantation: “. . .] the son of Šamaš in Heaven and Earth DITTO.” +[Its ritual: . . .] he recites it by himself. +59853 Incantation: “[. . .] . . . he saw him . . ., and then Asalluhi drew the water of the Apsû, [carrying?] in his hand a model of the belly (shaped) like a kannu-pot to Ea, his lord. The incantation is not mine, it is an incantation of Ea and Asalluhi, it is an incantation of Gula, the lady of incantations.” Incantation formula. +Its ritual: you take salted nuḫurtu-plant, you cast the incantation three times over it, and he sucks on it; then he will recover. +59860 Incantation: “The belly is strong, the belly is a hero! As for the owner of the belly, his two eyes are yellow (and) show blood vessels. Tangled-up intestines hang from its side. You should not be negligent, Belly! You should not let anything return, DITTO (= Belly)! For (the sake of) the good young man, for the good young woman: release the young man so that he can establish a household! Release the young woman so that she can make her nest! The intestines are tangled up, the stomach is twisted and even the large intestine is laid out face down! May the stomach be healed! May the intestines straighten themselves out! May the large intestine stretch out! May it (= the gas) come out like wind from the anus, like a belch from the throat!” Incantation. +Its ritual: you put seven lumps of salt into it, you recite the incantation seven times, you have him drink it, and then he will get better. +59869 Incantation: “Belly, O Belly! The belly is as dark as night, full of terror! t has no windows in its interior, no one leans out of it! The intestines are tangled up, the stomach is twisted and even the large intestine is laid out face down. May the stomach stretch out! May the large intestine stretch out! Like wind through the anus, like belch through the throat! Like sweat, snot and tears that slither out from his entire body! The incantation is not mine, it is the incantation of Ea and Asalluhi, it is the incantation of Damu and Gula, it is the incantation of Ningirim, the lady of incantations.” Incantation formula. +59871 Its ritual: you put ten lumps of salt in it, you recite the incanation seven times over each one, and then you inspect his urine on your left, he collects it up on his left, he drinks it (with the salt) on an empty stomach, and then he will get better. +59878 [Incantation]: “It is the belly! The belly is a hero, the belly is swift, the belly’s two eyes are twisted and bloodshot! O Belly! O Belly! Where are you going? O Belly! Where are you rushing? O Belly! [. . .] . . . dust . . . [. . .] . . . [. . .] . . . [. . .] wind [. . .] he brings about its release [. . .] may he release . . . [. . .] . . . may he make it leave through the door.” Incantation formula +Wording of a spell for flatus (lit. wind) that has seized him (in) the belly. +[Its ritual:] you anoint his belly repeatedly with oil, (and) you recite this incantation three times. +59884 [If a man’s] navel is loose: ‘donkey vulva’ shell, pure plant, šakirû-henbane, burāšu-juniper (and) [. . .] — you pound together these five drugs, you mix them in beer, (and) you drip (the mixture) into his navel. It is these (same) [drugs]: you knead them in beer, you boil (the mixture) down, (and) [. . .], (then) you pound [imḫur-līm?-plant], imḫur-ešrā-plant, tarmuš-lupin (and) [. . .], you squeeze (their) liquid out, you prepare it [. . .], and then he will recover. +[Alternatively], you pound together ṣibaru-aloe (and) ēdu-plant [. . .]. +[Alternatively], you pound imḫur-līm-plant, he drinks it in pressed wine, and then he will recover. +59888 [If a man’s] navel is continually collapsed: in order to heal him, you take imḫur-ešrā-plant, root of . . . (and) [. . .], he continually drinks them in beer (and) in good wine, and then he will recover. +If someone’s belly is sick, he drinks pure cow’s milk and ghee for two days. +First tablet (of the series called) “If a man suffers from phlegm, which has turned into gastric constriction.” +Palace of Aššur-ban-apli, king of the universe, king of the land of Aššur, on whom Nabû and Tašmētu have bestowed wisdom. +He acquired for himself shining eyes, the pinnacle of scholarship. +Of the kings who came before me, none were able to comprehend these tasks. +Prescriptions (organised) from head to foot, gleanings from extraneous materials, technical lore +(and) whatever pertains to the great medical knowledge of Ninurta and Gula, +I have written on tablets, checked, collated, and +deposited them in the middle of my palace for my reading and recitation. +[If a man’s right temple causes him seizing pain and his right eye contains blood: you crush (and) sieve together saḫlû-cress, ḫašû-thyme, gypsum], dadānu-plant, [parched grain flour (and) malt porridge. You boil down (the mixture) in vinegar, DITTO]. +59900 [If] a man’s left temple [causes him seizing pain and his left eye contains blood: you crush (and) sieve together lardu-plant], šumuttu-beetroot (and) [ballukku-aromatic. You boil down (the mixture) in milk (and) vinegar, DITTO]. +59902 [If] both of a man’s temples cause him seizing pain and both his eyes [contain blood]: you crush (and) sieve [kukru-aromatic, burāšu-juniper, parched grain flour] (and) dried sesame husk. [You mix it with coarse flour, you knead (the mixture) in beer, (and) you put it on as a bandage]. +59904 [If a man’s] right temporal artery throbs and his right eye [... šurdunû-plant, wheat flour], baluḫḫu-aromatic [...]. +59908 If a man’s cranium holds heat, he is affected with throbbing of the temporal artery, and squints his eyes; his eyes are made blurry by dimness, cloudiness, confused vision, murdinnu-bramble (or) qūqānu-worm (effects), and they shed tears constantly: you grind one-third litre of saḫlû-cress (and) buṭuttu-terebinth with a quern, you sieve it (and) once it is at your disposal, you take one-third litre from it. You knead it in the sap of kasû-tamarind, you shave (his head and) you put it on as a bandage; then you should not remove it for three days. +You knead one-third litre of saḫlû-cress (and) one-third litre of parched grain flour in the sap of kasû-tamarind, you shave (his head and) you put it on as a bandage; then you should not remove it for three days. +You knead ground saḫlû-cress, kukru-aromatic (and) horned uḫūlu-alkali in beer, DITTO (= you shave his head (and) you put it on as a bandage; then you should not remove it for three days). +You mix in equal amounts bitter-plant (and) emesallu-salt, you pound (the mixture) in ghee (and) you daub his eyes. +59913 You crush (and) stir one-third litre of saḫlû-cress (and) one-third litre of oven sherd (into) ten shekels of diluted beer. You knead (the mixture) in the sap of kasû-tamarind, you shave (his head and) you put it on as a bandage; then you shold not remove it for three days. +59916 After these bandages, he gathers up into a loaf of bread ten shekels of saḫlû-cress from the mouth of a mortar, which has not yet had chipped off bits fallen into it (or) was ever made to touch salt (and) vinegar; then he eats it. You stir five shekels of ground saḫlû-cress into prime-quality beer and you have him drink it. He will retch and vomit. +On the first day, you pound anzaḫḫu-frit [. . .] +59919 You crush (and) sieve ten shekels of the fruit of kalbānu-plant, [xx] of supālu-juniper (and) one-third litre of [xxx]. You knead it in the sap of kasû-tamarind, you shave (his head and) you put it on as a bandage; then you should not remove it for three days. +You pound šimbizidû-galena (and) [xxx] in lion fat [xxx] +59922 You crush (and) sieve xx[xxxxx] of supālu-juniper (and) one-third litre of [xxxx]. You knead it in the sap of kasû-tamarind, you shave (his head and) you put it on as a bandage; then you should not remove it for three days. +You dry, crush (and) sieve ten shekels of sesame husk powder. You knead it in the sap of kasû-tamarind, DITTO (= you shave his head, you put it on as a bandage; then you should not remove it for three days). +59926 You dry, crush (and) sieve ten shekels of sesame husk powder [. . .] you bandage his chest for one day (and) [. . .] his head, (then) you pour [. . .] over his head. You have him stay in a house that has a canopy [. . .] +[. . .] one shekel of bat guano, half shekel of [. . .] +[. . .] one-third litre of papparḫû-purslane seed, one-third litre of laptu?-turnip seed [. . .] +[. . .] one-third litre of coarse flour, ten shekels of leaf [. . .] +59932 [. . .] saḫlû?-cress seed? [. . .] you knead [. . .], DITTO. +You pound alum in ghee (and) you daub it on. +59935 You knead one-third litre of fig tree leaf that was cut in Nisan in the sap of kasû-tamarind. You dry, crush (and) sieve it again [xxxxxx], you shave (his head and) you put it on as a bandage; then DITTO (= you should not remove it for three days). +You [. . .] one-third litre of būšānu-plant, one-third litre of qudru-plant seed [. . .] you put it on as a bandage; then DITTO (= you should not remove it for three days). +You pound horned uḫūlu-alkali in oil, (then) you mix it with the (blood of) a male kipkippu-bird, you pound it (again and) you daub it on. +You [. . .] one-third [. . .] you put it on as a bandage; then DITTO (= you should not remove it for three days). +[. . .] you put it on as a bandage; then DITTO (= you should not remove it for three days). +59944 [. . .] you daub it on [. . .] you pound [. . .] (and) you daub it on. +You knead [. . .] you shave (his head and) you put it on as a bandage; then DITTO (= you should not remove it for three days). +You dry, crush (and) sieve [xxxx]. You knead it in prime quality beer, (then) you dry, crush (and) sieve it again. You knead it in the sap of kasû-tamarind, you shave (his head and) you put it on as a bandage; then DITTO (= you should not remove it for three days). +You knead [xxxx] in the sap of kasû-tamarind, (then) you pound it in the marrow of a long bone (and) you daub it on. +[. . .] you pound it in fat from a gazelle’s thigh (and) you daub it on. +You knead [. . .] you shave (his head and) you put it on as a bandage; then you should not remove it for three days. +You knead [. . .] in milk, you shave (his head and) you put it on as a bandage; then DITTO (= you should not remove it for three days). +You pound [. . .] in mountain honey (and) gold patina, (then) you daub it on. +[You crush] (and) sieve [xxxxxx]. You knead it in the sap of kasû-tamarind, you shave (his head and) you put it on as a bandage; then you should not remove it for three days. +[You crush] (and) sieve [xxxx]. You knead it in cooked beer dregs, you shave (his head and) you put it on as a bandage; then you should not remove it for three days. +[xxxx]x you remove their best part, you pound in honey (and) you daub it on. +You crush (and) sieve kurkanû?-plant. You knead it in the sap of kasû-tamarind, you shave (his head and) you put it on as a bandage; then you should not remove it for three days. +You crush (and) sieve šunû?-tree. You knead it in the sap of kasû-tamarind, you shave (his head and) you put it on as a bandage; then you should not remove it for three days. +You pound bat guano in honey, (and) you daub it on. +You crush (and) sieve one-third litre of marišmalû-tree leaf. You knead it in the sap of kasû-tamarind, you shave (his head and) you put it on as a bandage; then you should not remove it for three days. +You knead burnt gypsum in olive oil, you shave (his head and) you put it on as a bandage; then DITTO (= you should not remove it for three days). +You pound fine-ointment potsherd, which has kibšu-mould, in oil (and) copper patina, (and) you daub it on. +You crush (and) sieve supālu-juniper (and) saḫlû-cress. You knead it in dregs of prime quality beer, you shave (his head and) you put it on as a bandage; then you should not remove it for three days. +You crush (and) sieve ḫaltappānu-plant (and) kalbānu-plant. You knead it in cooked beer dregs, you shave (his head and) you put it on as a bandage; then you should not remove it for three days. +You wash burāšu-juniper, kukru-aromatic, baluḫḫu-aromatic, saḫlû-cress (and) horned uḫūlu-alkali. You knead it in milk, you shave (his head and) you put it on as a bandage; then you should not remove it for three days. +You pound copper patina in honey, (and) you daub it on. +You knead one-third litre of saḫlû-cress, one-third litre of beer spice [...], you shave (his head and) you put it on as a bandage; then you should not remove it for three days. +You knead one-third litre of saḫlû-cress [...], you shave (his head and) you put it on as a bandage; then you should not remove it for three days. +You pound lulû-antimony, anzaḫḫu-frit [...], (and) you daub it on. +You [knead] one-third litre of chick-pea? powder [...], you [shave (his head and)] you put it on as a bandage; then you should not remove it for three days. +59970 You roast, crush (and) sieve kasû-tamarind. You knead it in beer dregs, you shave (his head and) you put it on as a bandage; then you should not remove it for three days. +59972 You chop up the seed of a ‘dog’s tongue’ plant while green, you squeeze its liquid into a pursītu-bowl, (and) you leave it until it dries. When it has dried, you pound it in oil (and) copper patina, and you daub it on. +59978 You take as much as looks right to you of white plant, bat guano, the fatty tissue of kanaktu-aromatic, ṣumlalû-aromatic, šurdunû-plant seed, kamūnu-fungus from a tamarisk, maštakal-plant seed, dog’s? dung?, tamarisk leaf, emesallu-salt, mint (and) black cumin. You grind (and) pound (these drugs) in oil. You wash his eyes with horned uḫūlu-alkali, (and then) you daub (the mixture) on until the tears stop. When you are bandaging him, you (keep) daubing it on, (and) you should not remove the ‘lead-spoon-salve’ afterwards. You boil the sap of šunû-tree, you gather it up in a porous kannu-pot, you let it stand overnight under the stars, (and) you anoint his head in the morning. You sprinkle the cooked sap of šunû-tree on his head, you tie his head with a ball of carded wool, (and then) you pour [ten?] KISAL? of oil over his head. You have him stay in a house that has a canopy. You keep doing this for three days. +59980 [If a man’s] cranium is constantly hot: you mix together gypsum, multi-coloured horned uḫūlu-alkali, kibrītu-sulphur, bone, (plain) horned uḫūlu-alkali, naphtha and fish oil; (then) you fumigate his head over embers of ašāgu-acacia. +59982 [If a man’s] cranium is affected with heat, and his eyes flicker (and) contain blood: you crush (and) sieve one-third litre of saḫlû-cress. You knead it in the sap of kasû-tamarind, you shave (his head and) you put it on as a bandage; then you should not remove it for three days. +You knead one-third litre of saḫlû-cress (and) one-third litre of coarse flour in vinegar, you shave his head (and) you put it on as a bandage; then you should not remove it for three days. +You knead one-third litre of fig tree leaf in milk, [you shave (his head and) DITTO (= you put it on as a bandage; then you should not remove it for three days)]. You knead one-third litre of būšānu-plant in milk, you shave (his head and) DITTO (= you put it on as a bandage; then you should not remove it for three days). +You knead one-third litre of urânu-plant [...] in milk, you shave (his head and) DITTO (= you put it on as a bandage; then you should not remove it for three days). +You knead one-third litre of ṣadānu-plant [...] in milk, you shave (his head and) DITTO (= you put it on as a bandage; then you should not remove it for three days). +You knead ‘samānu-moth’-plant [... in milk], you shave (his head and) DITTO (= you put it on as a bandage; then you should not remove it for three days). +59989 [If] a man’s cranium is inflamed with sun-heat, [and his eyes flicker xxxx you knead] cooked [bran], burāšu-juniper, kukru-aromatic, baluḫḫu-aromatic, saḫlû-cress, sesame husk [(and) sīḫu-wormwood in milk], you shave (his head and) DITTO (= you put it on as a bandage; then you should not remove it for three days). +59991 [If a man’s] cranium is inflamed with sun-heat, and his eyes flicker and are filled with blood: you crush (and) sieve together x[x] burāšu-juniper, nuḫurtu-plant [xx]x saḫlû-cress (and) marišmalû-tree. You mix it with spiced beer, (and) you bandage his head?. +59994 You take one-third litre of saḫlû-cress, one-third litre of cedar powder, one-third litre of burāšu-juniper, one-third litre of suādu-aromatic, one-third litre of sīḫu-wormwood, one-third litre of argānu?-conifer, [barīrātu?-sagapenum, two litres] of sesame husk, chick-pea powder, malt flour (and) cooked beer spice. [Once they are at your disposal], you take [two litres from them]. You knead it in the sap of kasû-tamarind, you shave (his head and) you put it on as a bandage. +59996 [If the middle of a man’s cranium] causes him a stinging pain, (and) the hair of his head stands up constantly: you pound kukru-tree [xxxxxxxx] you heat it in a copper tangussu-vessel [xx] his head. +You boil [xxxx ṭīṭu?-beer] (and) ghee over fire [xx]. +You boil [xx] kukru-aromatic, [burāšu?-juniper], ballukku-aromatic, bitter-plant, ṭīṭu-beer (and) ghee over fire [xx]. +60000 You [mix] together one? akal of gypsum, [multi-coloured horned] uḫūlu-alkali, kibrītu-sulphur, human bone, bone of a pig? [xx] naphtha (and) fish oil; (then) [you fumigate] his head over embers of ašāgu-acacia. +60003 Incantation: “May the temple bring his temple back (to health), may the eye bring his eye back (to health), may the middle (of the head) bring his middle (of the head) back (to health). May he be able to shine, may he be able to shine.” [Incantation formula.] +Wording of a spell for (the case) [If the middle of a man’s] cranium causes him a stinging pain. +The accompanying procedure: You parch the scales of a snake [xxxx] recite the incantation, (and) [xxx] his cranium. +60007 Incantation: “The holy divine order has been [struck, it has been] struck. The holy divine order is [removed], the divine order is torn out. The divine order is weakened [xxx] frightened. Bring it back (to health)!” [Incantation formula.] +Incantation: “His mouth is like a mouth without [xxxxxx] like his mouth … x[x]x” [Incantation formula.] +[...] you recite (the incantations) over the middle of his cranium. +60011 [...] mint? [...] you shave (his head and) [you put it on as a bandage]; then you should not [remove] it for three days. +Alternatively, you knead [... in the sap] of kasû-tamarind, you bandage him, and x[xx]. +Alternatively, you knead [...] (and) supālu-juniper in beer [xx]. +Alternatively, you crush (and) sieve together saḫlû-cress [...] nikiptu-spurge (and) parched grain flour. You knead it in beer [xx]. +Alternatively, you knead one-third litre of saḫlû?-cress [...], you shave (his head and) [xx]. +Alternatively, you knead half litre [...], you shave (his head and) [xx]. +Alternatively, you crush (and) sieve one-third litre [...]. You knead it in the sap of kasû-tamarind, you shave (his head and) [xx]. +Alternatively, you knead [...] in the sap of kasû-tamarind [xx]. +Alternatively, you knead [...] in beer, you shave (his head and) [xx]. +Alternatively, you knead [...] in the sap of kasû-tamarind, you shave (and) bandage? (his head). +60023 [Alternatively], you knead [...] in the sap of kasû-tamarind, you shave (his head and) [xx]. [Alternatively], you knead [...] in the sap of kasû-tamarind, you shave (his head and) [xx]. Alternatively, you knead [...] in beer dregs, you shave (his head and) [xx]. +60025 Alternatively, you pluck [xxxxxxx], you wash it in the sap of kasû-tamarind. You crush (and) sieve one-third litre of kalbānu-plant, one-third? [litre? xxxxx]. You knead it in the sap of kasû-tamarind,(then) bandage his head and chest. +Alternatively, you mix [xxxxx] (and) coarse flour. You knead it in the sap of kasû-tamarind, (and) you put it on as a bandage. +Alternatively, you knead [xxxx] (and) coarse flour in the sap of kasû-tamarind, you shave (his head and) you put it on as a bandage; then you should not remove it for three days. +Alternatively, you mix [xxx] (and) ḫaluppu-tree, two litres each, in the sap of kasû-tamarind and beer, DITTO (= you shave (his head and) you put it on as a bandage; then you should not remove it for three days). +Alternatively, you knead [xxx] (and) supālu-juniper in olive oil and the sap of kasû-tamarind, DITTO (= you shave (his head and) you put it on as a bandage; then you should not remove it for three days). +If a man’s head is constantly hot: you shave (his head), you knead emmer flour in the sap of kasû-tamarind, (and) put it on as a bandage for fifteen days (gloss: five days). +60032 Alternatively, you crush (and) sieve riverbank silt that has been reached by sunlight. You knead it in the sap of kasû-tamarind, (and) you put it on as a bandage for three days. If (afterwards) finger-shaped protrusions come out from the centre? of his head (gloss: middle of his head), you knead (this) concoction (again) in the sap of kasû-tamarind. You anoint repeatedly with oil, (and) you put it on as a bandage. +In order to remove the [heat] of the head, you knead oven sherd (and) coarse flour in the sap of kasû-tamarind, (and) you bandage his head. +[Alternatively], you knead saḫlû-cress, buṭuttu-terebinth (and) parched grain flour in the sap of kasû-tamarind, (and) you put it on as a bandage. Alternatively, you knead saḫlû-cress (and) burāšu-juniper in the sap of kasû-tamarind, (and) you put it on as a bandage. +Alternatively, you dry, crush (and) sieve [xx]x. You knead it in the sap of kasû-tamarind, (and) you put it on as a bandage. +Alternatively, you knead poplar [ashes] in the sap of kasû-tamarind, (and) you put it on as a bandage. Alternatively, you knead ḫaltappānu-plant (and) the fruit of kalbānu-plant in the sap of kasû-tamarind, (and) you put it on as a bandage. +[Alternatively], you dry (and) pound fox-vine. You knead it in the sap of kasû-tamarind, (and) you put it on as a bandage. Alternatively, you knead marišmalû-plant in the sap of kasû-tamarind, (and) you put it on as a bandage. +[Alternatively], you knead [xx]x (and) supālu-juniper in the sap of kasû-tamarind, (and) you put it on as a bandage. +60040 Alternatively, you knead [...] (and) poplar ashes in the sap of kasû-tamarind, (and) you put it on as a bandage. +Alternatively, you knead [...] (and) kukru-aromatic in the sap of kasû-tamarind, (and) you put it on as a bandage. +Alternatively, you mix [...] (and) coarse flour. You knead it in the sap of kasû-tamarind, (and) you put it on as a bandage. +Alternatively, you mix [...] (and) coarse flour. You knead it in the sap of kasû-tamarind, (and) you put it on as a bandage. +Alternatively, you knead [... in the sap] of kasû-tamarind, (and) you put it on as a bandage. Alternatively, you knead the peel of šellebēnu-plant in the sap of kasû-tamarind, (and) you put it on as a bandage. +Alternatively, you knead [...] (and) poplar ashes in the sap of kasû-tamarind, (and) you put it on as a bandage. +Alternatively, you knead [...] in the sap of kasû-tamarind, (and) you put it on as a bandage. +60048 If [a man’s head is inflamed with sun-heat, and the hair] of his head falls out, (and) he is constantly affected with throbbing of the temple: you [pound] one [shekel? of bat guano in oil], you shave his head, you cool it (and) you put it on as a bandage; then you should not remove it for three days. +60052 Alternatively, you mix together [ten shekels of cedar xx powder, ten shekels] of cypress powder, ten shekels of suādu-tree powder, ten shekels of burāšu-juniper powder, ten shekels of kukru-aromatic powder, ten shekels of kasû-tamarind powder, [ten shekels] of chick-pea powder, ten shekels of lentil powder, ten shekels of date skin, ten shekels of saḫlû-cress, ten shekels of fine beer spice (and) ten shekels of malt flour. You knead it in beer. You dry, crush (and) sieve it again, (and) once it is at your disposal, you take one-third litre from it. You knead it in the sap of kasû-tamarind, you shave (his head and) you put it on as a bandage; then DITTO (= you should not remove it for three days). +Alternatively, you pound together ground saḫlû-cress, kukru-aromatic (and) horned uḫūlu-alkali. You knead it in beer, you shave (his head and) DITTO (= you put it on as a bandage; then you should not remove it for three days). +Alternatively, you pound together kukru-aromatic, burāšu-juniper, nikiptu-spurge, kammantu-plant seed, sea algae (and) bitter-plant. You knead it in beer, you shave (his head and) DITTO (= you put it on as a bandage; then you should not remove it for three days). +Alternatively], you pound together kukru-aromatic, burāšu-juniper, the resin of baluḫḫu-aromatic, date (and) fat from a sheep’s kidney. You smear it onto a piece of leather, you shave (his head and) DITTO (= you put it on as a bandage; then you should not remove it for three days). +60057 [If a man’s] head is inflamed with sun-heat, and his body causes him a nagging pain; his head is (also) swollen: [you dry, crush] (and) sieve musukkannu-tree leaf. You knead it together (with) chick-pea powder, lentil powder (and) ennēnu-barley flour in beer dregs, you shave (his head and) DITTO (= you put it on as a bandage; then you should not remove it for three days). +Alternatively, you knead dried sesame husks, kukru-aromatic, burāšu-juniper (and) coarse flour in beer dregs, you shave (his head and) DITTO (= you put it on as a bandage; then you should not remove it for three days). +Alternatively, you knead [xx] ḫašû-thyme, kukru-aromatic, burāšu-juniper (and) coarse flour in beer, you shave (his head and) [DITTO (= you put it on as a bandage; then you should not remove it for three days)]. +Alternatively, you dry (and) pound ašqulālu-plant. You knead it in cold water, you shave (his head and) [DITTO (= you put it on as a bandage; then you should not remove it for three days)]. +60064 If a man’s head is hot, and the hair of his head falls out: in order to [eradicate?] the heat of his head, and to make the falling hair stay, you pound together aktam-plant, šimāḫu-boxthorn (and) white plant. You mix it with water, and you smear his head. For two days, on his head, to the right x[x]x, you wash his head. You pound together egemgiru-plant, ‘shepherd’s staff’ plant (and) ostrich egg shell, you mix it in oil, (and) you anoint his head. +60066 Incantation: “The hair that is mighty, the hair that is strong, the hair that is firmly bound, the hair that stays.” Incantation formula. +Wording of a spell for making the hair of the head stay, (and) for binding it (firmly). +60070 The accompanying procedure: dušû-stone, sāmtu-carnelian, uqnû-lapis, ḫulālu-agate, papparmīnu-agate, ‘fish eye’ stone, šubû-stone, right šubû-stone, left šubû-stone, [holding šadânu-stone], muššāru-sardonyx, ašgigû-turquoise, agusīgu-turquoise – you string these thirteen small pieces on red wool, you tie it [to the hair], and the falling hair will be held back. +60072 Incantation: “atta barangi zibangi [bategira] zimbara uzmiyaš patri undakurra ḫenna? ḫeminna pariša.” Incantation formula. +60074 The accompanying procedure: you take seven pieces of ḫarūbu-carob from the north side (of the tree), you parch them over fire of urbatu-rush, you mix with oil, (and) you recite the incantation seven times. You anoint him three times, (and) you comb him three times. When you comb him, you recite the incantation three times over his head. +60076 Incantation: “Turn the eyes away, turn the eyes away, so that it may shine for him! Leave the temples, leave the temples, so that it may shine for him! Depart from the temples, depart from the temples, so that it may shine for him! [Tear out the sheen], so that it may shine for him! It will diminish for me, it will stand aside for me. Destroy its evil!” Incantation (formula). +60078 The accompanying procedure: head of a mountain raven, head of a heron, head of a male rock-partridge, fresh date from a date palm xx[xxxxx] you recite the incantation three times over it. You anoint him repeatedly, and the falling hair will be held back, be it either that of a man, or that [of a woman]. +[xxxxxx] greyness lil greyness e-ne greyness. +[The accompanying procedure:] you take [seven pieces] of ḫarūbu-carob from the north side (of the tree), you parch them over fire, (and) you mix with cypress oil (and) cedar blood. You anoint him repeatedly, and it will grow straight. +60083 [Incantation: “O Star], the evil that exists, O mighty goddess, manirranni ḫabareš manirranni ḫalḫallata lagu, bring to (its) end whatever it creates [xx ma] ubanaš durunaš ḫurinaḫ mundiḫuna ḫattuk.” Incantation formula. +Wording of a spell for binding the hair (firmly). +If the hair on a man’s cheeks falls out extensively, that man’s god (and) goddess are angry with him. +60088 The accompanying procedure: you set up a ritual arrangement facing the first star, strew dates (and) fine sasqû-flour there, (and) you put out mirsu-cake (made) of honey (and) ghee. (Then) you make a sacrifice: you deliver shoulder meat, caul fat (and) roast meat; you pour a libation of beer. You mix kiškanû-tree, marišmalû-tree, bat guano, imḫur-ešrā-plant, [imḫur-līm?-plant] (and) sailor’s faeces with oil. You place it before the star, (and) you recite this incantation three times: +60091 “You, Star, who lights up x[x]xxxx midst of heaven (and) watches over all regions, I am so-and-so, son of so-and-so. I kneel before you on this night. Judge my case, pass a verdict for me! May these plants erase my misery!” Morning dawns, and you rub his cheeks. +Alternatively, you put around his neck kiškanû-tree, amīlānu-tree, elikulla-plant, mountain kurkanû-plant (and) nikiptu?-spurge, in the leather? of an unmated female kid. +Wording of six spells for binding the hair. +60101 If a man’s cranium holds fluid, with your big finger you touch the place where it holds fluid: if its UZU.GIŠ smells bad (and) the [fluid of] his skull has descended, you open it up by making an incision on his skull, (and) you remove? the fluid of his skull. You wash [a thin piece of fabric with water], you sprinkle it with oil, (and) you place it over the wound. You pound kiškanû-tree powder (and) potter’s faeces, (and) you [scatter] it over the wound. [You keep the bandage on for three? days, you remove it], and (again) you wash a thin piece of fabric with water, you sprinkle it with oil, (and) you place it over the wound. [xxx] the bandage of [xx] you keep the bandage on for two? [days], you remove it, and (again) you wash a thin piece of fabric with water, you sprinkle it with oil, you place it over the wound. You mix [xxxxx]x roasted kasû-tamarind with parched grain flour, (and) you scatter it over the wound. You keep the bandage on for one day, you remove it, and you crush [xxxx] burāšu-juniper. You mix it with coarse flour, you knead it in the sap of kasû-tamarind, (and) you put it on as a bandage. You shave the surface of the wound, (and) you keep the bandage on until it heals. x[x]x if you touch it, and its UGU.GIŠ does not smell bad, you place embers (in the size) of (small) stones around his head. +60105 Incantation: “Urbatu-worm, urbatu-worm, the red urbatu-worm rose up and covered the red cloud. The red rain rose up and flowed over the red earth. The red flood rose up and filled the red river. May the red farmer take up the red shovel (and) the red earth basket, may he dam up the red waters, saying ‘The door is red, (and) the bolt is red. Who is the one who will open their closed gate for you? He is going to request a shovel, he is going to request a shovel’.” Incantation formula. +60107 Wording of a spell for [the fluid of the head] not to be held back. +60110 The accompanying procedure: you wrap a tuft of black hair from the leg of a female donkey [xxxx] you place it into the broken spot, (and) you recite the incantation seven times. You shape it with a piece of fabric, you twist together [xxxx] you tie on seven knots, (and) whenever you tie a knot, you recite the incantation. You tie it to his temple, [and] he will get better. +If a man’s head holds fluid: you place hot cedar? over his tendons [on his neck], and it will dry up its fluid. +60113 If a man’s forelock area holds water: [xxxx] all day, (and) you bandage it on the seventh day. You make an incision? three times on his forelock area on the eighth day, and you bandage it continuously. +If a man’s head holds wind, place hot? [cedar?] (over his head). +60117 If a man’s head throbs constantly: mušītu-stone, muššāru-sardonyx, takkassu-stone, sāmtu-carnelian from (the land of) Marhaši, dark ṣurru-obsidian, ḫulālu-agate, AN.ZA.GUL.ME-stone, ašpû-chalcedony – [you string] these eight stones on (a twine composed of) red (and) white wool, twisted together. You tie it [to] his temples, and he will get better. +60119 If a man’s head gets cold repeatedly: kukru-aromatic, burāšu-juniper, suādu-aromatic, šimiššalû-aromatic, ballukku-aromatic, [xxxxxx] old cedar, sīḫu-wormwood, argānu-conifer, barīrātu-sagapenum, sweet reed. +[Alternatively,] you pound [xx]x in fat from a sheep’s kidney, which has not been put on salt, (and) in cedar blood. You smear it onto a piece of leather, (and) you bandage his head. +[Alternatively,] buṭuttu?-terebinth, baluḫḫu-aromatic, kurkanû-plant: fumigation for the head. +60124 [Ointment] for the head: white and black kibrītu-sulphur, male and female nikiptu-spurge, mūṣu-stone, [zalāqu-stone, anzaḫḫu-frit], sea algae, tamarisk [seed], stag horn, human skull. You pound these drugs together, [you mix in oil and cedar blood, and you rub] (the mixture on) his temples. +60126 [Fumigation] for the head: you grind finely [together] atā’išu-plant, kibrītu-sulphur, kurkanû-plant, [male and female] nikiptu-spurge. You mix it in cedar blood, (and) you fumigate him over embers. +60128 [If a man’s] head is ill: you pound together ṣaṣumtu-plant, murdudû-plant, pizzer-plant (and) [xxx] while green?. You knead it in the sap of kasû-tamarind, you shave his head (and) youput it on as a bandage; you should not remove it for three days. +60130 [If a man’s] head is heavy: you mix kukru-aromatic, burāšu-juniper, atā’išu-plant (and) bitter-plant [with] the resin of baluḫḫu-aromatic [and fat] from an ox’s kidney. You smear it onto a piece of leather, you shave (and) bandage (his head) for five? [days]. +[Alternatively,] you make an incision? [xxx]x right and left, three times each. You knead [xxx in the sap] of kasû-tamarind. You anoint with oil, (and) you put it on as a bandage. +60134 [If a man’s head becomes heavy due to heat progressing] into his head [during his illness], and when he gets up, his head [keeps pulling him forward]: you pound in a mortar [burāšu-juniper, margūṣu-bush, bitter-plant (and) urnuqqu-plant. You stir it into oil and beer, (then) you anoint repeatedly his head, and the heat] of his head will be extinguished completely. +[Alternatively, you pound kukru-aromatic, burāšu-juniper (and) kammantu-plant seed. You mix it in old oil,] (and) you anoint repeatedly his head. +60137 If a man [...]: you dry, crush (and) sieve [...] ... [...] with [...]. You bandage him; then you should not remove it for three days. +60142 If a man’s head, [face, eyes, feet (and) lips are swollen, his head] keeps pulling him forward, his hands and feet [cause him a nagging pain, his limbs are flaccid, (and) his body] is continuously affected with šimmatu-paralysis: [in order to heal him, you crush (and) sieve together] kukru-aromatic, burāšu-juniper, atā’išu-plant, [kammantu-plant seed, ground saḫlû-cress, leaf] of adāru-poplar, kasû-tamarind, parched grain flour, fine beer spice, [nikiptu-spurge (and) šurdunû-aromatic]. You knead it in the sap of kasû-tamarind, you [shave] his head, you [anoint his head with šūšu-liquorice oil (and) you put it on as a bandage]; then you should not remove it for seven days. +Alternatively, [... you anoint? repeatedly], and he will get better. +60147 If the middle of a man’s head [causes him a stinging pain; his knees are heavy (and) getting completely flaccid]; he is always tired (and) becomes more and more depressed; [he has constantly trouble with his kidneys? xxx he is thirsty] (and) short-tempered all the time: in order to remove? the disease, [you dry in the sun-heat, you crush (and) sieve sweet reed, atā’išu-plant xxx šunû-tree], fine? beer spice, kasû-tamarind, parched grain flour [xxxxx (and) ‘shepherd’s staff’ plant. You knead it in the sap of kasû-tamarind], and you put it on as a bandage. +60153 [...] you knead it in the sap of kasû-tamarind [...] +60155 Alternatively?, [...] tamarisk, kammantu?-plant seed [...] he should drink it either in prime quality beer or in wine [...]. +If a man is constantly affected with headache: errû-colocynth seed. +First tablet of (the series called) "If a man’s cranium holds heat." +Palace of Aššur-ban-apli, king of the universe, king of the land of Aššur, +on whom Nabû and Tašmētu have bestowed wisdom. +He acquired for himself shining eyes, the pinnacle of scholarship. +Of the kings who came before me, none were able to comprehend these tasks. +Prescriptions (organised) from head to foot, gleanings from extraneous materials, technical lore (and) whatever pertains to the great medical knowledge of Ninurta +and Gula, I have written on tablets, checked, collated, and +deposited them in the middle of my palace for my reading and recitation. +60166 [If a man . . .] it tires him out [. . .] imḫur-līm-plant, imḫur-ešrā-plant [. . .]. +[Alternatively], ḫašû-thyme, urnû-mint [. . .]. +[Alternatively], ḫarmunu-plant [. . .]. +[If] a man’s epigastrium burns him, (and) it is difficult for him to breathe through his nose, that man [. . .]. +60172 If a man’s epigastrium is enflamed, it stings him, (and) his phlegm [. . .] it is UD.DA SA₂.SA₂-fever: you have him continually drink pressed oil in water on an empty stomach, (and then) [. . .] burāšu-juniper, kukru-aromatic, resin of baluḫḫu-aromatic, tamarisk leaf, maštakal-plant leaf [. . .]. +60175 If a man is entirely enflamed between his shoulders, he constantly spits up blood with his phlegm, (and) [. . .] into ṣēta [. . .]: you crush burāšu-juniper, kukru-aromatic, saḫlû-cress [. . .] kūru-plant leaf (and) river mud, you kneed them in beer [. . .]. +60177 If a man eats bread (and) drinks beer, and subsequently his epigastrium gnaws at him, his internal organs are swollen [. . .] it is UD.DA SA₂.SA₂-fever: aktam-plant, imḫur-līm-plant, tarmuš-lupin [. . .]. +[Alternatively], you have his tongue seize pressed oil [. . .]. +60180 [If a man] is continually upset (and) constantly afflicted by grief, [he keeps biting his lips (and) drinks a lot of water], it is UD.DA SA₂.SA₂-fever: you pound fox-vine, he drinks it in beer, (and then) he eats fatty meat. He drinks burāšu-juniper (and) ṭūru-opopanax in beer, (then) you heat up (these ingredients) in beer, (and) [you pour them into his anus]. +60182 [Alternatively], you pound fox-vine, (and) he drinks it in beer. You pound river mud, gazelle droppings, ulḫaḫ-acacia leaf, kūru-plant leaf, blades of šalālu-reed, wheat flour (and) sesame husk, you knead them in beer, you smear (the mixture) on a piece of fabric, (and) you bandage him with it. +Alternatively, you pound aktam-plant, (and) he drinks it in prime-quality beer. +60185 [If a man] is continually upset (and) constantly afflicted by grief, piercing pain repeatedly affects him, (and) he keeps swallowing (lit. drinking) a lot of his (own) phlegm, it is UD.DA SA₂.SA₂-fever: you pound imḫur-līm-plant, milkweed (and) white juniper seeds, (and) he drinks them in beer. +60189 [If] a man eats bread (and) drinks beer, and subsequently his internal organs are bloated (and) swollen, (and) he drinks a lot of water, it is UD.DA SA₂.SA₂-fever: you pound [imḫur-līm-plant], imḫur-ešrā-plant, tarmuš-lupin, ṣumlalû-aromatic, tīyatu-plant (and) ḫašû-thyme, (and) he drinks them in beer on an empty stomach. You pound river mud, gazelle droppings, burāšu-juniper, kukru-aromatic, saḫlû-cress, fox-vine leaf [. . .] šalālu-reed leaf, wheat flour (and) sesame husk, you kneed them in beer, you smear (the \tmixture) on a piece of fabric, you bandage him with it, and then he will recover. +60191 You pound aktam-plant, he drinks it in beer, (then) he eats fatty meat, (and) his belly will (make him) vomit. You pound [. . .], (and) he drinks it in beer. You pound imḫur-līm-plant, (and) he drinks it in pressed oil. You pound river mud, (and) he drinks it in beer. You pound tīyatu-plant, (and) he drinks it in beer. +60193 [If] a man eats bread (and) drinks beer, and subsequently his internal organs are bloated (and) swollen, (and) he drinks [a lot of water], it is UD.DA SA₂.SA₂-fever: you dry (and) pound errû-colocynth fruit before it begins to shrink, (and) he drinks it in beer. +You pound nīnû-mint, (and) he drinks it in beer. You pound ḫarmunu-plant, (and) he drinks it in beer. +60196 If a man eats bread (and) drinks beer, and subsequently his internal organs are bloated, (and) his urination is continually \thindered, it is UD.DA SA₂.SA₂-fever: you dry (and) pound errû-colocynth fruit before it begins to shrink, (and) he drinks it in beer. +[If] a man eats bread (and) drinks beer, and subsequently his internal organs are bloated (and) have cramps, (and) he has diarrhoea, it is UD.DA SA₂.SA₂-fever: +60199 [. . .] in [. . .] +60201 If a man [. . .] +60203 [. . .] . . . [. . .] +60207 [If a man] . . . [. . .] that man suffers from . . . [. . .] aktam-plant in diluted beer [. . .]. Afterwards, [. . .] diluted beer [. . .]. +60211 Alternatively, he is constantly afflicted by grief [. . .] he never has any saliva (in his mouth) [. . .] so that it would not be prolonged: aprušu-plant [. . .] together [. . .] . . . [. . .]. +60213 [If a man] continually has a lot of [. . .] . . . [. . .]. +60217 If a man is constantly affected with headache: you crush, [sieve] (and) mix in equal amounts errû-colocynth seed, tigilû-colocynth seed, the seed of a ‘dog’s tongue’ plant, azupīru-saffron seed, būšānu-plant seed, ēdu-plant seed (and) kiššanu-plant seed. You boil down (the mixture) in vinegar, you sprinkle parched grain flour (and) emmer flour on it, (and then) you smear (the mixture) onto a piece of leather. You shave his head (and) you put it on as a bandage; then he will get better. +60219 Alternatively, you mix in equal amounts kasû-tamarind, kammantu-plant, kukru-aromatic, baluḫḫu-aromatic, sesame husk which xx[xxx] (and) wheat flour. You pound fine billatu-beer, you put it into (the mixture, and) you heat it up. You keep mixing these plants, while you boil down (the mixture, and then) you put it on as a bandage. +60222 [Alternatively, you crush (and) sieve] together cedar, cypress, asu-myrtle, sweet reed, kukru-aromatic, burāšu-juniper, old cedar, ballukku-aromatic, [šimiššalû-aromatic], suādu-aromatic, ṭūru-opopanax, baluḫḫu-aromatic (and) the resin of baluḫḫu-aromatic. You boil down (the mixture) in pressed wine, you sprinkle parched grain flour (and) [emmer flour] on it, (and then) you smear (the mixture) onto a piece of leather. You shave [his head] (and) you put it on as a bandage; then he will recover. +60225 Alternatively, you crush (and) [sieve] together adāru-poplar seed, aktam-plant, kammantu-plant seed, [amḫara-plant], kasû-tamarind, ḫûratu-madder seed (and) ‘field lump’ plant. [You boil down (the mixture) in pressed wine], you sprinkle parched grain [flour] (and) emmer flour on it, (and then) [you smear (the mixture) onto a piece of leather]. You shave his head (and) you put it on as a bandage; then he will recover. +60227 Alternatively, [you crush (and) sieve together] ḫašû-thyme, [atā’išu-plant, aktam-plant], kammantu-plant [seed], sea algae, wheat flour, fine beer spice (and) [x x x x]. You boil down (the mixture) in beer (and) you put it on as a bandage; then he will recover. +60229 Alternatively, you crush (and) [sieve] together kukru-aromatic, burāšu-juniper, [nikiptu-spurge], kammantu-plant [seed?], sea algae, bitter-plant (and) wheat flour. You boil down (the mixture) in beer (and) you put it on as a bandage; then he will recover. +60231 Alternatively, you crush (and) sieve together kukru-aromatic, burāšu-juniper (and) [nikiptu-spurge], (and then) you knead them in beer (with) wheat flour (and) fine? beer spice. [You heat up (the mixture)], you shave his head, (and) you put it on as a bandage; then he will recover. +60233 Alternatively, you crush (and) sieve together kukru-aromatic, burāšu-juniper, nikiptu-spurge, kammantu-plant seed, sea algae (and) ballukku-aromatic. You boil down (the mixture) in beer, you shave his head, (and) you put it on as a bandage; then he will recover. +60235 Alternatively, you take date palm frond which sways without wind, you dry it in the open air, you crush it, you sieve it, (and) you knead it in the sap of kasû-tamarind; (then) you put it on as a bandage. +60237 Alternatively, you pound aprušu-plant, you mix it with oil, (and) you put abukkatu-tree resin into (the mixture). You recite the incantation “ara šera ara bašera, burning fire, numunki ibgar” seven and seven times over it, (and) you bandage his temple. +60240 Alternatively, you fumigate him with atā’išu-plant (and) nikiptu-spurge over embers. [You pound together] kukru-aromatic, nikiptu-spurge, burāšu-juniper, kammantu-plant seed, sea algae (and) [bitter-plant], you heat (the mixture) over fire, (and) you put it on as a bandage. +60242 [Alternatively], you pound together [mūṣu-stone, nikiptu-spurge], sea algae (and) ru’tītu-sulphur. [You wrap them] in red wool, [you anoint (the pouch) with oil (xx)] (and) you tie it to his temple. +60244 Alternatively, [...] nikiptu?-spurge [...] (and) you rub it on his temple. Alternatively, [...] you mix it in kidney fat, (and) you rub it on his temple. +60246 Alternatively, [you boil down ten shekels] of saḫlû-cress (and) ten shekels of parched grain [in the sap of kasû-tamarind]; (then) you put it on as a bandage. Alternatively, [you boil down ten shekels] of saḫlû-cress, ten shekels of gypsum [(and) ten shekels of parched grain flour in the sap of kasû-tamarind; then you put it on as a bandage]. +60249 If a man has a temple [causing him seizing pain: you take dirt from the bottom of a gate door] that stands on your left when you go out, you bind it [(with) the hair of an unmated female kid] in red wool, [(and) you tie it to his temple; then that man will recover]. +60251 If a man has a temple causing him seizing pain: [you take date palm frond which sways], you dry, crush (and) sieve it, (and then) you knead it in beer. [You bandage his temple; then that man will recover]. +60253 If a man [has a temple causing him seizing pain: you take swaying date palm frond, (and) you tie it] to his temple; [then that man will recover]. +If [a man has a temple causing him seizing pain: you take swaying baltu-thornbush, you wrap it in a wad of wool, you bind (the wad) in red wool, (and) you tie it to his temple; (then) that man will recover]. +60258 If [a man has a temple causing him seizing pain: you wrap soiled rag in a strip of raw wool, (and) you tie it] to his temple; [then that man will recover]. +60260 If a man is affected with throbbing of the temple, [and he is (also) affected with rimûtu-paralysis: you dry, crush (and) sieve šūšu-liquorice leaf. You pound together šeguššu-barley flour], ground saḫlû-cress (and) parched grain flour. [You boil down (the whole mixture) in the sap of kasû-tamarind, (and) you put it on continuously as a bandage; then he will recover]. +60263 Alternatively, you dry, crush (and) sieve leaf of šunû-chaste tree, [you boil it down] with wheat flour, [saḫlû-cress (and) xxx in vinegar, (and) you bandage him]. Alternatively, you dry, crush (and) [sieve] fox-vine (and) supālu-juniper. [You boil down bitter-plant] with parched grain flour in the sap of kasû-tamarind, [(and) you put it on as a bandage]. +60265 If a man is affected with throbbing of the temple, and he is (also) affected with šimmatu-paralysis: [you dry (and) pound] ēru-tree leaf, you boil it down [(with) wheat flour], saḫlû-cress (and) ḫašû-thyme in brewer’s beer, [(and) you bandage him continuously; then he will recover]. +60268 You pound together leaf of ‘kid’s ear’ plant, nikiptu-spurge, sea algae, ḫašû-thyme, atā’išu-plant, w[heat? flour?], reed leaf, leaf of šalālu-reed, reed sprout, sprout of šalālu-reed, bud of baltu-thornbush, bud of ašāgu-acacia, lion fat (and) sap of an ašāgu-acacia which stands on top of a grave; (then) you anoint (the mixture) on with oil. +You pound in a mortar qudru-plant seed (and) fine beer spice, you boil them down in brewer’s beer, (and) you put (the mixture) on as a bandage. +60271 If a man is affected with throbbing of the temple, and his hands (and) feet are paralysed: you crush (and) sieve together ḫaluppu-tree leaf, suādu-aromatic, šumuttu-beetroot, šeguššu-barley flour, malt flour, ḫašû-thyme (and) fox-vine. You boil down (the mixture) in beer dregs, (and) you put it on as a bandage; then he will recover. +60273 You crush (and) sieve together leaf of šalālu-reed, burāšu-juniper, šumuttu-beetroot, aktam-plant, maštakal-plant (and) lentil powder. You boil down (the mixture) in dregs of prime-quality beer, (and) you put it on as a bandage; then he will recover. +If a man’s temple constantly hurts him: you pierce (his temple) with a piece of bronze once, twice (or) three times [until? the blood? starts flowi]ng?, (and then) you anoint him with nikiptu-spurge in oil. +60276 You place soiled rag, mūṣu-stone, [the ‘ear’?] of red! baltu-thornbush (and) tamarisk!? around his neck, (and then) you anoint him with the powder of SAG.KI-stone (and) the powder of ḫulālu-agate in oil. +60278 In order to soothe the throbbing of the temple, you crush old sesame husk, kukru-aromatic, ṭūru-opopanax, baluḫḫu-aromatic (and) kasû-tamarind, (and then) you heat them up in beer (with) fine beer spice (and) coarse flour. You boil down (the mixture, and) you put it on as a bandage. +60280 In order to soothe the throbbing of the temple, you crush together sesame husk, kukru-aromatic (and) baluḫḫu-aromatic, (and then) you heat them up in beer together (with) garum and coarse flour. You smear (the mixture) onto a piece of fabric, (and) you bandage him; then he will recover. +If a man’s temporal arteries are ill: you boil down burāšu-juniper, kukru-aromatic, gazelle droppings (and) wheat flour together in beer, (and) you put it on as a bandage; then he will recover. +You parch kasû-tamarind, you mix wheat flour with it, you boil down (the mixture) in oil and prime-quality beer, (and) you put it on as a bandage; then he will recover. +60284 If a man’s temporal artery causes him seizing pain, hurting him constantly: you mix together ten measures of wheat flour, ten measures of coarse flour, ten measures of kukru-aromatic, ten measures of kasû-tamarind, ten measures of malt flour (and) ten measures of sesame husk. You knead (the mixture) in beer, (and) you bandage his temple. +For soothing the (temporal) arteries: you mix in equal amounts parched grain (and) gazelle droppings. You boil down (the mixture) in prime-quality beer, (and) you put it on as a bandage. +60288 [If a man’s temporal artery] causes him seizing pain, hurting him (badly) and (therefore) he vomits: [...] he should drink it in beer [...] he vomits, DITTO. +60290 [If a man ...] (and) cannot tolerate bread and beer: that man’s god placed him [...] old, you burry him (and) you wash him over with water. +[Alternatively ...] you put it on as a bandage, (then) you wrap the hair of an unmated female kid in red wool, (and) you tie it on. +60294 [Alternatively], a post-menopausal [woman] should twist together [gazelle sinew (and) red wool], (and then) you plait together gazelle sinew with them. You string [xxxxxxx] uqnû-lapis (and) dark ṣurru-obsidian (on the plait, and) you tie it to his temples. You pound powder from [xxxxxx] sherd from a crossroad (and) nikiptu-spurge, you mix them with oil, (and) you anoint him (with the mixture). +60296 If a man’s [right temple] causes him seizing pain and his right eye contains tear: you mix together saḫlû-cress, parched grain flour, a b[lock? of] x (and) a block? of malt. You boil down (the mixture) in the sap of kasû-tamarind, (and) you bandage his temple; then he will recover. +60298 If a man’s left temple causes him seizing pain and his left eye contains tear: you crush (and) sieve saḫlû-cress (and) ḫašû-thyme. You boil down (the mixture) in cooked beer, (and) you bandage his temple; then he will recover. +60300 If both of a man’s temples cause him seizing pain and both his eyes contain tear: you boil down saḫlû-cress, ḫašû-thyme, kasû-tamarind, parched grain flour (and) malt porridge together in a diqāru-pot, in the sap of kasû-tamarind. You bind his temples (with the mixture); then he will recover. +60302 If a man’s right temple causes him seizing pain and his right eye contains blood: you crush (and) sieve together saḫlû-cress, ḫašû-thyme, gypsum, dadānu-plant, parched grain flour (and) malt porridge. You boil down (the mixture) in vinegar, DITTO. +60304 [If] a man’s left temple causes him seizing pain and his left eye contains blood: you crush (and) sieve together lardu-plant, šumuttu-beetroot (and) ballukku-aromatic. You boil down (the mixture) in [milk (and) vinegar], DITTO. +60306 [If both of a man’s temples] cause him seizing pain [and both his eyes contain blood: you crush (and) sieve kukru-aromatic, burāšu-juniper], parched grain [flour (and) dried sesame husk. You mix it with coarse flour, you knead (the mixture) in beer, (and)] you put it on as a bandage. +60315 You crush (and) [sieve] together [...] cypress, ma[rišmalû?-tree ...] argānu-conifer, barīrātu-sagapenum [...] ox dung (and) gazelle droppings. [You boil down (the mixture) in fine?] billatu-beer, you sprinkle [xxxx] on it, (and then) you shave his head (and) you put it on as a bandage. Then, you [xxx] imḫur-līm-plant (and) imḫur-ešrā-plant in? billatu?-beer, you pull it out, (and) you tie it (with) a SAG.KI-stone to his right side. You crush together arzallu-plant, fragment from a human skull [xxx] nikiptu-spurge, ēru-tree seed, ēdu-plant, tamarisk seed (and) ardadillu-plant, you mix them with cedar oil, and you anoint him (with the mixture). Taken fresh, you fumigate him (with the same drugs) over embers of ašāgu-acacia, (and) you anoint his temples with fine oil. +60319 If a man’s right temple hurts him, and his right eye is inflamed and sheds tears: Hand of Ghost, deputy of Ištar. In order to heal him, you mix sīḫu-wormwood, argānu-conifer, barīrātu-sagapenum, one shekel of ru’tītu-sulphur, maštakal-plant (and) šalālu-reed in coarse flour. You boil down (the mixture) in beer, (and) you put it on as a bandage. Alternatively, you pound garum residue, strong vinegar residue, the dregs of prime-quality beer, Dilmun date (and) one shekel of the fatty tissue of kanaktu-aromatic in ghee, (and) you daub it on. +60323 If a man’s left temple hurts him, and his left eye is inflamed and sheds tears: you pound Dilmun date, ašû-disease-plant (and) cedar blood in the oil of asu-myrtle. You let (the mixture) stand overnight under the stars, (and) you daub it on in the morning on an empty stomach. +60325 Alternatively, you crush (and) sieve gypsum from the Euphrates, malt flour, chick-pea powder, lentil powder (and) kasû-tamarind powder. You boil down (the mixture) in the sap of kasû-tamarind, (and) you bandage his temple (and) his eye. +60327 If a man has a temple causing him seizing pain, it becomes hot (and then) cold, (and) his eyes are inflamed: Hand of Ghost. You parch human bone, you pound it, (and) you anoint him repeatedly (with it) in cedar oil; then he will recover. +60330 If a man has a temple causing him seizing pain, hurting him from sunrise to sunset: Hand of Ghost, the exorcist should act according to what he knows. You anoint him with marrow from a [sheep’s?] fibula (and) [xxxx]. You dry, crush (and) sieve maštakal-plant, you boil it down in the sap of kasû-tamarind, [(and) you sprinkle parched? grain? flour on (the mixture)]. You shave (his head, and) you bandage him (with it). +60333 [...] you put it on as a bandage [...] +60335 [...] you pull it out, you wrap [...] (in) red wool, (and) [you tie it] to his temple and his neck [xxx] +60338 [If, while being seized by the Hand of Ghost], both of a man’s temples constantly hurt him: mūṣu-stone, anzaḫḫu-frit, black kutpû-frit, holding šadânu-stone, iron bead, ēdu-plant – you pound together these six drugs, you mix them with cedar [blood], and you anoint his temples, eyes and neck repeatedly (with the mixture); then he will get better. +60346 If, [while being seized by the Hand] of Ghost, a man is constantly affected with throbbing of the temple: in order to save him, you crush (and) sieve together ten shekels of cedar, ten shekels of cypress, ten shekels of bitter-plant, [ten shekels] of suādu-aromatic, ten shekels of daprānu-juniper, ten shekels of šimešallû-aromatic, ten shekels of asu-myrtle, [ten] shekels of ṣumlalû-aromatic, ten shekels of burāšu-juniper, ten shekels of kukru-aromatic, ten shekels of sweet reed, [ten shekels] of kasû-tamarind, ten shekels of ṭūru-opopanax, ten shekels of a lump of malt, ten shekels of [pressed] sesame husk, ten shekels of fine beer spice, ten shekels of saḫlû-cress, ten shekels of [date] skin, [ten] shekels of chick-pea (and) ten shekels of lentil. You boil down (the mixture) either in [prime-quality? beer or in wine], you smear it onto a piece of leather, (and) you sprinkle emmer flour on it. You shave [his head], (and) you bandage his temples; then he will get better. +60348 Alternatively, you crush together [...] nikiptu-spurge, the resin of baluḫḫu-aromatic, date skin, kidney fat [...] you smear it onto a piece of leather, (and) you put it on as a bandage; then he [will get better?]. +Alternatively, you knead sesame husk [...] kanaktu-aromatic (and) coarse flour in beer dregs, (and) [xx(x)] +60356 If a man [is constantly affected? with headache?]: you crush (and) [xx(x)] together? šakirû-henbane, seed of ‘kid’s ear’ plant, seed of ‘dog’s tongue’ plant, egemgiru?-plant seed, aprušu-plant seed, kammantu-plant seed, seed of kalbānu?-plant which? [xx(x)], excrement of a dove [which lives on a palm? tree], excrement of a swallow which lives on a tamarisk, the resin of šibburratu?-plant, kukru-aromatic, saḫlû?-cress, qudru-plant seed, kasû-tamarind (and) ašāgu-acacia. You roast these drugs in a copper tangussu-vessel, you take whatever of those plants are roasted, you mix them together, (and) you knead (the mixture) in beer dregs. You shave (his head), you anoint oil on, you bind him seven times (with the mixture), and on the fourth day you ‘bleed’ (lit. make a wound on) his temporal artery; then he will recover. +60358 Alternatively, you crush (and) sieve ēdu-plant seed (and) urânu-fennel seed, you knead them in water, (and) you put (the mixture) on as a bandage. Alternatively, you pound excrement of a dove, you knead it in beer, (and) you put (the mixture) on as a bandage. +60366 If a man is constantly affected with headache, his eyes flicker, all his flesh is paralysed (and) causes him a stinging pain, his internal organs are inflamed, his hands and feet are paralysed (and) cause him a stinging pain, his knees are tired (and) limp, (and) he is always tired: an incurable illness afflicted that person (and) has become too strong for him. In order for his illness not be prolonged, you fill a copper tangussu-vessel with diluted beer, you stir tamarisk [xx] ḫašḫūr-api-plant, urânu-fennel (and) seed of šunû-tree into it, (and) you heat up (the mixture). [xxx]xxx you make him emerge (from the bath?), and you rub him with horned uḫūlu-alkali (and) dirt from a bird’s nest. (Afterwards), you pound imḫur-līm-plant (and) imḫur-ešrā-plant, you mix them with cedar blood, (and) you anoint him (with the mixture); then he will recover. +60369 If a man is constantly affected with headache: imḫur-līm-plant, imḫur-ešrā-plant, tarmuš-lupin, ankinūtu-plant, ḫašḫūr-api-plant, ḫašû-thyme. You crush together these drugs, you put them [in a copper tangussu?-vessel], you heat them up, (and) you filter (the mixture). You stir ten shekels of honey (and) one-third litre of pressed oil into it, (and) you pour it into his anus; then he will recover. +60371 Alternatively, you pound together imḫur-līm-plant, imḫur-ešrā-plant, tamarisk seed (and) tullal-plant seed, (and) he should drink it in pressed wine on an empty stomach; then he will recover. +60373 Alternatively, you soak all (kinds of) aromatics in pressed wine and prime-quality beer, (then) you heat up (the mixture), you filter it, (and) you stir 10 measures of honey and one-third litre of pressed oil into it. You make a dose of it [for his anus]; then he will recover. +Alternatively, x[x(x)]x ḫašû-thyme, atā’išu-plant (and) horned uḫūlu-alkali, (and) he should drink it continually on an empty stomach; then he will recover. +60376 Alternatively, you pound? imḫur-līm-plant, imḫur-ešrā-plant, seed of x[xxxxxx] you heat them up in beer, (and) you filter (the mixture). [You stir] ten measures of honey (and) one-third litre [of pressed oil into it, (and) you pour it into his anus; then he will recover]. +60379 Alternatively, you crush (and) sieve together imḫur-līm-plant, šunû-tree leaf [...] in [...]. Alternatively, [...] ḫašḫūr-api-plant [...]. +60381 If a man [is constantly affected? with] headache? [...] black kutpû?-frit [...]. +60383 Alternatively, [...] together? nikiptu?-spurge [...]. +60388 [If, while being seized by a ghost, a man’s temple ... the muscles of his eyes cause him a stinging pain ...] mūṣu-stone [... iron bead ...] these drugs [... you recite] the incantation "The hero Asalluḫi" seven? times [...]. +60390 If a man has a temple causing him seizing pain and his eyes [...] you pound together [...] in beer? [...]. +60392 If a man’s temple, either on the right side or [on the left side, ...] and his eyes are cloudy [...] mūṣu-stone [...]. +60395 If a man’s temples throb constantly [...] you dry? ground saḫlû-cress [...] (and) the skin? of a black snake [...]. +60397 [If] a man has a temple [causing him seizing pain, and] he constantly has [vertigo, (so when) he gets up from the bed, he falls down (instantly): Hand of Ghost]. He should drink continually imḫur-līm-plant [(and) tarmuš-lupin in] sweet beer. [Then, you twist together xxx white wool (and) male ašlu-rush], +60399 [you recite the incantation xxxxxxx] (and) you bind him (with the string). (Afterwards) [you repeatedly smear] human semen [on his temple], you pound [together mūṣu-stone (and) nikiptu-spurge], you mix them with cedar oil, (and) you anoint him repeatedly (with the mixture); then he will recover. +60401 [If a man has a headache, and the tendons] of his neck hurt him constantly: Hand of Ghost. You crush (and) sieve sīḫu-wormwood, argānu-conifer, [barīrātu-sagapenum (and)] šalālu-reed, you boil them down in the sap of kasû-tamarind, (and) you bandage him (with the mixture). +If a man [has a headache], and it hurts him from sunset until the morning watch: it will be prolonged, he will die. +If a man [has a headache, and] he constantly cries out “my belly, my belly!”: Hand of Ghost, deputy of Ištar, he will die. +If a man [has a headache, and] he vomits a lot (and) cannot rise from bed: he will die. +If a man [has a headache, and] he constantly cries out a lot, his temporal arteries throb greatly xxxxx he will die. +These are [xxx]x for headache, it is complete? including (those for) the tendons? of the neck?. +If headache (and) Hand of Ghost stay continuously in a man's body and cannot be dispelled. +Second tablet of (the series called) "[If] a man’s cranium holds heat." +Palace of Aššur-ban-apli, [king of the universe, king of the land of Aššur], on whom Nabû and Tašmētu have bestowed wisdom. +He acquired for himself shining [eyes], the pinnacle of scholarship. +Of [the kings who came before me, none] were able to comprehend these tasks. +[Prescriptions (organised) from] head to foot, gleanings from [extraneous materials], technical lore +(and) whatever pertains to the great medical knowledge of Ninurta and Gula, I have written [on tablets], checked, collated, and +deposited them in the middle of my [palace] for my reading and recitation. +tr.en.(1 1): A family (kimtu) ghost afflicts this person [...] +tr.en.(1 2): [You ...] kikkirânu-juniper, x-plant, [...] +tr.en.(1 3): taramuš-plant, sīhu-plant, [...] +tr.en.(1 4): You put them (= the drugs) in water [...] +tr.en.(1 5): You hang [...]. The male ... the long loaf [...] +tr.en.(1 6): [You pour] murru-oil onto his head, [and ...] +tr.en.(1 7): Alternatively: erēnu-cedar, šurmēnu-cypress, ‘sweet-reed,’ [...]. +tr.en.(1 8): These eight plants you [mix, boil?] together in beer [...]. +tr.en.(1 9): Kibrītu-sulphur, bitumen of the river [... are fumigants]. +tr.en.(1 10): You fumigate him, [and make him eat?] hibṣu-preparation from [...] +tr.en.(1 11): If the patient’s ears [roar] due to ghost attack, [then you ...] +tr.en.(1 12): Nikiptu-plant, bristle of horse, powder of [...] +tr.en.(1 13): Blood from the snake of the nest, semen of a [...] +tr.en.(1 14): He inserts his fingers into his ears [and ...] +tr.en.(1 15): Wherever there is heat, [recite the incantation:] Ea created [...] +tr.en.(1 16): Afterwards, [you ...] the very tip of an ox horn [...] +tr.en.(1 17): If the patient’s ears roar due to ghost attack, [then you (fumigate his ears with) baluhhu-aromatic, sweet reed, kukuru-aromatic] +tr.en.(1 18): a kasû-plant, bristle of a horse. [Total of five drugs, tested fumigation for ears] +tr.en.(1 19): ... [...] ... through a bronze tube [...] +tr.en.(1 20): If the patient’s ears roar due to ghost attack then, 21'. you pulverize 20'. murru-plant, [ešmekku-stone, ašgikû-stone (...)] +tr.en.(1 21): You wrap (the mix) in a tuft and sprinkle (it) with cedar blood. You recite the incantation ‘(Ea) created the Release/Secret:’ (over it) [...]. +tr.en.(1 22): Incantation: ‘(Ea) created the Release:’ the mineral of heaven and earth. May the stone curse him (the ghost), may the stone overturn him, may the stone seal him up, +tr.en.(1 23): . may the stone eradicate him. Incantation spell. This incantation you recite three times over the tampon. You put it inside his ears. +tr.en.(1 24): Alternatively: you pound kukru-plant, hašû-plant, atāʾišu-plant, aktam-plant, imhur-lim-plant, imhur-ešra-plant, taramuš-plant, sahlû-plant. +tr.en.(1 25): You mix it... You wrap (the powder) in a tuft of wool. You place (it) into his ears and he will get better. Alternatively: youd pound sweet reed in oil, you put it into his ears. +tr.en.(1 26): Alternatively: you pound together murru-plant, ašgikû-stone, lapis lazuli, urrīqu-stone. +tr.en.(1 27): You mix (the mixture) in cedar oil. You place it into his ears. You smear (it) onto his (ears) flesh. +tr.en.(1 28): If the patient’s ears roar due to ghost attack then, 29'. you fumigate his ears over charcoal with urânu-plant seed, eʾru-plant seed, +tr.en.(1 29): male and female nikiptu, bristle of horse and soiled rag. +tr.en.(1 30): If the patient’s ears roar due to ghost attack then, you fumigate the inside of his ears with root of eʾru-plant, nikiptu-plant and soiled rag. +tr.en.(1 31): Kukru-plant, burāšu-plant, murru-plant, cedar, sweet reed, balukku-plant, kasû, kalgukku-paste +tr.en.(1 32): are eight plants for fumigation of the ears. You fumigate the inside of his ears over charcoal. +tr.en.(1 33): 34'. You fumigate the inside of his ears 33’ (with) mūṣu-stone, stag horn, human bone, imbuʾ tâmti-seaweed, monkey bone, +tr.en.(1 34): (and) nīnû-mint 34’ over charcoal. +tr.en.(1 35): You fumigate the inside of his ears (with) kibrītu-sulphur, urānu-plant, root of ēru-tree, horse hair, (and) soiled rag over ašāgu-thorn coals. +tr.en.(1 36): 37'. You fumigate the inside of his ears 36'. (with) stag horn, alum, nīnû-mint, sahlû-cress, imbuʾ tâmti-seaweed, kibrītu-sulphur, (and) +tr.en.(1 37): (and) human bone 37'. over ašāgu-thorn coals. +tr.en.(1 38): If the patient’s ears roar, then you wrap cedar blood, arantu-grass, and kukru in a tuft. +tr.en.(1 39): You throw it into water and boil it over fire. You put it into his ears and he will recover. +tr.en.(1 40): If the patient’s ears roar, then you mix cedar blood with pomegranate sap and pour it inside his ears, then he will recover. +tr.en.(1 41): Incantation. indarah tarahti šumaš indarah tarahti +tr.en.(1 42): tirkibi indarah tarahti tirki basutu. Incantation Spell. +tr.en.(2 1): Incantation: he opens his hand, he releases his feet: burše burna burnanna. Destroy! Destroy them! +tr.en.(2 2): Destroy (his) chest! Nikrah! Destroy! Tahtah! Incantation Spell. +tr.en.(2 3): Two invocations (for the case): If man’s ears roar. +60461 tr.en.(2 4-5): Its medical application: [You pound] murru-plant, ešmekku-stone, ašgikû-stone [...]. You mix (their powder) in cedar blood. The incatation (one or the other cited above) you recite into it, you wrap (the mixture) in tuft and put it into his ears. +tr.en.(2 6): Incantation: The horn soothes it! Ea created (it), the mineral of heaven and earth he created. [Knock down the seat of disease]. Incantation Spell! +tr.en.(2 7): One invocation (for the case): If man’s ears roar. +60468 tr.en.(2 8-12): Its medical application: You mix in oil murru-plant, ešmekku-stone, ašgikû-stone and nikiptu-plant, you let it stay under a star (= stay overnight). 9. You recite 8. the (above cited) incantation three times 9. into the middle (of the mixture), [you wrap (it) in tuft], place in [into his ears]. Incantation: It is the one who knows, the good one, 10. It is the [hero] Ninurta, the good one. 11. It is [the lord] Ninurta, the good one. 12. .... Ninurta, may you (ghost) not approach him. Incantation Spell. +tr.en.(2 13): One invocation (for the case): If man’s ears roar. +60471 tr.en.(2 14-15): Its medical application: You pound together ešmekku-stone [...] murru-plant, urnû-plant, mix (it) in cedar blood. 15. You recite into (the mixture the above cited) incantation, you wrap it in tuft and place it inside his ears. +60473 tr.en.(2 16-17): Incantation: Napiršeriš patarri zugalirri patahalli patarri 17. sumaš patri pakundi rataš ikkiriri šaraš. Incantation spell. +tr.en.(2 18): [Invocation (for the case): If man’s ears] roar. You blow/hiss/fumigate it (via tube) three times into his right year, three times into his left ear. +60485 tr.en.(2 22-29): [Incantation. The attentive watcher-demon is always pursuing something,] 23'. [fashioned in the Netherworld, (but) spawned in Heaven.] 24'. [Nothing heaven-like can come close to its appearance,] 25'. [with its face flattened like a destroyed mountain.] 26'. [O brigand(-demon) of the highway and crossroad,] 27'. [when you go out on your own or return on your own,] 28'. [may Ninurta, lord of the weapon, rebuff you.] 29'. O Huldub-demon, may you be adjured by heaven and be adjured by earth. +tr.en.(2 30): Invocation (for the case): If man’s ears roar, then] you recite [it three times into] his right [ear (and)] three times into his left ear. +60488 tr.en.(2 31-32): Incantaion: huhunti ibniati ibnira šanan 32'. akaliri sugari šatri kukti humatri sumaš Incantation Spell. +tr.en.(2 33): [Invocation (for the case): If man’s ears roar,] is whispered [into] his right ear. +60491 tr.en.(2 34-5): Incantation: ameaman kumam sumatri kiriri kukti 35'. rašan kukti hundi human. Incantation Spell. +tr.en.(2 36): [Invocation (for the case): If man’s ears roar,] is whispered [into] his left [ear]. +tr.en.(2 37): [...] kurkānu-plant +60495 tr.en.(2 53): [If man’s ears constantly hurt (and) the hearing is disturbed (lit. covered):] You sprinkle daprānu-juniper [oil] on a tuft. You put (the tuft) once, twice, three times into both his ears. +60499 tr.en.(2 54-7): If a person [is sick and his illness] at work inside his ears, with difficult hearing. 55'. You mix one shekel of pomegranate sap, 2 shekels of kanaktu sap (gloss: oil) [(x x)], you sprinkle (the mixture) on a tuft (and) place it into his ears. (NB. cf. iv 29) You do this for three days. 56'. When on the fourth day pus comes out of his ears then you wipe (it) off. When the pus comes to an end. 57'. You pound gabû-stone and blow (it) through a reed straw into both his ears. +60502 tr.en.(2 58-60): If a man: fever works its way into his ears and he is hard of hearing and he is sweating. 59'. You pour 58'. daprānu-juniper oil 59'. and sweet reed oil onto his head (for the fever). You sprinkle (the oils) on a tuft and put it once, twice, thrice into his ears. 60'. He will hear (lit. his hearing will open up). He shall (then) eat sahlû-plant in emmer bread, in which nothing has fallen. +60504 tr.en.(2 61-62): If a man: during his illness fever is at work inside his ears and then his ears are hearing heavy 62'. You pour 61'. goose fat 62'. into his ears and his hearing will feel better. You pulverize male pillû-root, you put it into his ears, and he will improve. +60508 tr.en.(2 63-66): If person’s ear continually hurt and stab like the attack of a hand of a ghost. 64'. You press out separately 63'. kanaktu-plant oil, sweet reed-oil 64'. and burāšu-juniper oil. You mix them together and put (the mixture) into his ears. 65'. You wrap 64'. lump of emesallu salt 65'. into a tuft and place it into his ears. 66'. You decoct in beer good beer dregs, hallūru-pea flour, kakku-pea flour, emmer flour, kasû-plant flour, (and) erēnu-cedar flour. [You bandage] and he will get better. +60513 tr.en.(2 67-71): If person’s ears are sick and [the inside] of his both ears is malodorous, giving him a stabbing pain (and) continually stinging... 68'. It continually hurt him and he cannot sleep. 69'. [You crush together and] sift 68'. burāšu-juniper, kukru-plant, asu-plant, balukku-plant, kasû-plant, kalû-clay paste 69'. (and) kalgukku-clay. You fumigate (with it) the inside of his ears over ašāgu-thorn charcoals. 70'. You do this [for three days], and on the fourth day, you wipe off the inside of his ears and 71'. [when the pus] comes to an end, you pound gabû-stone (and) blow (it) into his ears with reed straw. +tr.en.(2 72): [If] pus flows from [person’s] ears, you mix blood from an ox kidney with blood from cedar and drip (it) into his ears. +tr.en.(3 1): ... you drip into his ears ... +tr.en.(3 2): ... you drip [into his ears]. You mix pomegranate sap in cedar oil (and) +tr.en.(3 3): drip (it) [into his ears]. You mix kamkadu-plant-of-donkey-shin ... of donkey-spine into cedar oil. +tr.en.(3 4): You wrap (the mixture) [in tuft] (and) place it into his ears. You drip into his ears oil(s) of baluhhu-aromatic plant, burāšu-juniper, and frog bile. +tr.en.(3 5): [ ... you put] (and) mix its oil in goose fat, you drip it into his ears. +tr.en.(3 6): You mix [...] in isqūqu-flour (and) put (it) into his ears. +tr.en.(3 7): [you ... and] crush minutely (and) blow (it) through a reed straw into his ears. You roast kasû-plant as like a roasted grain, +tr.en.(3 8): (and) blow it into his ears [through a reed straw]. You parch and pound lipāru-plant (and) blow it into his ears. He/you shout a battle cry? +60525 tr.en.(3 9-11): you drip its juice into his ears. 10. You mix together 9. kamkama-cartilage-of-donkey-shin, ... 10. [for the inside] of his ears: you wrap uhhūlu qarnānu-plant, male and female lulû-mineral in a tuft 11. (and) insert it [into] his ears. You mash turû-garlic and drip it into his ears. +60535 tr.en.(3 12-21): [If] pus oozes from [persons’] ears, you drip pomegranate [sap] into his ears. You pound white plant 13. and blow it into his ears with a reed straw. You pound cedar and ballukku oil with cumin, 14. you mix it in ghee, wrap the (mixture) in tuft and place it into his ears. (similar prescription): You mix together zibû-black cumin, murru-aromatic, fish oil 15. and mint, (and) place (the mixture) into his ear (not ears ILF). You mix [swine] gall in isqūqu-flour, you wrap it in tuft and place it into his ears. 16. You dry and pound pomegrante and blow it into his ears. You parch and pound cedar, ...-aromatic, frog bile (and) 17. blow it [into his ear]. 17. You sprinkle šurmēnu-cypress oil on a tuft [and place it into his ears. [You pound mint and] place it into his ears. 18. You make fire ... [you place] dried white plant into [his ears. You pound] gabû-mineral, and blow it into his ears. 19. [You fumigate him] with [foils] of tamarisk and ašûhu-pine needles over charcoal 21. [you ...] 19.. goose fat, 20. ... frog [bile and] 21... place it into his ears. +60545 tr.en.(3 35-6): If both ears... kukru-plant [...]36'. pomegranate sap ... you sprinkle (the mixture) over charcoal from burāšu-juniper [and he will get better.] +tr.en.(3 37): If, then: you pound lulû-mineral (and) you sprinkle it into his ears, and he will get better. +tr.en.(3 38): Alternatively: you parch kasû-plant like a roasted grain, and sprinkle it into his ears [and he will get better.] +60550 tr.en.(3 39-41): 39'. If pus flows from the inside of his ears, 40'. You drip 39'. pomegranate sap, filtered(halṣu) sesame oil, cedar oil... 40'. sap of baluhhu-aromatic and burāšu-juniper and gall of greenish-yellowish frog (muṣaʾʾirānu). The hearing ... 41'. You mix together blood of a fly [and drip it] into [his] ears ...? +60553 tr.en.(3 42-44): 42'. If from person’s ear flow either water, or blood, or pus, you wipe off the inside of his ears ... 43'. You pour (medicine) through a reed straw and you wash the inside of his ears, you repeat it and [you drip] vinegar into [his] ears. 44' ... you pound and mix (it) in honey, you pour it into his ears, wrap it in tuft. You ... mountain honey... +60556 tr.en.(3 45-7): 45'. Alternatively: [You wrap] seeds of nuhurtu-plant in tuft (and) place it inside his ears. 46'. Alternatively: you pound seeds of kukru-plant, you wrap it in tuft, and place it inside his ears. 47'. Alternatively: you pound parched kasû-plant, wrap it in tuft and place it inside his ears. +60560 tr.en.(3 48-51): If person’s right ear ... due to fever. This man shall find the sanctuary/shrine of Šamaš or Sîn 49'. and then tell (his problem) and hear (the divine answer). You pound emesallu-saline in šurmēnu-cypress oil, kanaktu-aromatic oil and ... you pour pūru-oil over his head and ... You do this continually for seven days and he shall recover. +60563 tr.en.(3 52-4): If person’s ear is ... due to fever. This man shall seek out the sanctuary of Ninurta 53'. and then [tell (his problem) and hear (the divine answer) ...] 54'. [You pound emesallu, oil of ... kanaktu-aromatic oil [wrap it in tuft and place it into his ears. You pour pūru-oil] over [his head]. +60565 tr.en.(3 55-6): 55'. ... burāšu-juniper ... 56'. ... you do this continually [for seven days] and he will get better. +60569 tr.en.(3 57-60): 57'. [If person’s ear ... his]... . This man shall seek out the sanctuary of Šamaš and then 58'. [tell (his problem) and hear (the divine answer).] You pound ...in oil of] burāšu-juniper. You wrap it in tuft and place it into his ears. 59'. [You pour pūru-oil over his head and eat sahlû-plant] in emmer (kunāšu) bread, twice (a day) ... (cf. rev. 4) 60' [...] you keep on doing this for [seven days] and he will get better. +60572 tr.en.(3 61-63): 61'. [If ... this man shall] seek out [the sanctuary of ...] and then will see good fortune on the/for seven months.62'. [You pound ... wrap it in tuft and] place [it into] is ears. You pour pure pūru-oil over his head. 63'. [...] You do this for seven days and he will get better. +60576 tr.en.(3 64-7): [If ... is] sick with ṣētu-heat, this man raises/remove/excited/he can get up (from his bad). 65'. ... He will see improvement. In order to complete the cure: 66'. ... you pour šurmēnu-oil over his head 67'. [...] You do this for seven days and he will get better. +60580 tr.en.(3 68-71): 68'. [If person’s ears collect sweat toward the inside] ... 69'. [...] on the ninth day, bitumen? ... 70'. [... You wrap] kanaktu-aromatic oil in tuft [and place it into his ears ...] 71'. You pour 70'. [oil of...] 71'. over his head. [He shall eat] hot things [twice ... drink beer, twice. He shall do this for seven days and he will get better]. +60583 tr.en.(3 72-4): [If person’s right ear] collects sweat toward the inside ... he has ... This man 73'. shall seek [out the sanctuary of DN]. He will see improvement and in order to cure it: You press down a linen fiber, sprinkle (it) with oil of šurmēnu-cypress and cedar oil (and) place it into his ears. 74'. You pour ... onto his head, He shall eat this... twice, (and) drink hašû -plant in beer twice. He shall do (this) for seven days and shall recover. +60587 tr.en.(3 75-8): [If person’s] left [ear] collects sweat towards the inside and discharge pus. This man shall seek out the sanctuary of Ištar. 76'. He will see loss ... In order to cure it: 77'. You sprinkle red wool with oil of cedar, (sesame) oil, šurmēnu-cypress oil, balukku-aromatic oil, sweet reed oil (and) kanaktu-oil. You place (it) into his ears. 78'. You pour 77'. kanaktu-aromatic oil onto his head. 78'. He shall eat hot meal twice (a day), he shall drink beer twice (a day). He shall do this for seven days and then he will get better. +tr.en.(3 79): If person’s ear constantly buzz, is covered with ear wax (and) and pus flows out. This man shall seek out the sanctuary of Ninurta and then ... +60590 tr.en.(4 2): 2. You bathe him with sap of a fresh-green pomegranate and sprinkle sesame oil, and pound ... (and) pour it over his temples. [He shall experience] improvement. +60592 tr.en.(4 3-4): Alternatively: You pound salt, you wrap it in tuft, you sprinkle šurmēnu-cypress oil, and place it into his ear. [You pour] šurmēnu-cypress oil onto [his] temples. 4. He shall eat or drink it hot. He shall do this for three days and will experience improvement. +60594 tr.en.(4 5-6): Alternatively: You pound burāšu-juniper, wrap it in tuft and place it into his ears. [You pour] baluhhu oil and resin onto his head. 6. He shall continually eat sahlû with emmer bread, he keeps on doing this for three days and [will see improvement.] +60596 tr.en.(4 7-8): Alternatively: you sprinkle cedar oil on pušikku-carded wool [and place it] into [his ears.] 8. You continually pour ... onto his temples and ... +60598 tr.en.(4 9-10): [Alternatively:] you sprinkle oil of cedar and šurmēnu-cypress oil on pušikku-carded wool [and place it into his ears ...] 10. You continually pour ... onto his temples. He shall eat hašû-plant, [drink (water) he shall do this for 3 days and will see improvement. +tr.en.(4 11): If person’s right ear (hearing) is “heavy”, you break up turû-garlic and put it inside his (right) ear. +tr.en.(4 12): You pound green-fresh bīnu-tamarisk leaves, you mix it in isqūqu-flour and put it inside his (right) ear. +60602 tr.en.(4 13-14): You pound cedar, burāšu-juniper, zibû-black cumin, šūmu-garlic and mix in ghee. You sprinkle on a tuft and 14. put it inside his ear. You sprinkle šurmēnu-cypress oil on a tuft of wool and put it inside his ear. +tr.en.(4 15): You pound ṭūru-aromatic, pig fat, leaves of kalbānu, hair of virgin female goat kid (lit. does not know a penis), you wrap (the mixture) in tuft and put it into his (right) ear (see iv 34f.) +60605 tr.en.(4 16-7): You sprinkle duprānu-juniper oil on a tuft and put it inside his (right) ear. 17. You mix weasel blood with oil of cedar and šurmēnu-cypress oil and put it into his his (right) ear. +60607 tr.en.(4 18-9): You crush minutely kutpû-black frit in pomegranate sap ... [and put it into his ear]. You cut the head of male iṣṣūr hurri bird and drip (its) hot blood into his ear. +60609 tr.en.(4 20-1): If person’s left ear’s (hearing) is heavy, you pound murru-plant (var. kanaktu-aromatic) ... 21. You ... mountain honey in lion’s blood ... +tr.en.(4 22): Afterwards, lead spoon salve in oil ... +60614 tr.en.(4 23-6): Oil of cedar and šigūšu-flour/bread ... pounded, šūšu-plant?... 25. You/he takes his both ears, flour of .. his ear... 26. You weigh flour of buṭuttu-pistachio... and put inside his ear. +60616 tr.en.(4 27-8): Through your mouth you ... oil inside his ears ... pour in. 28. You ... kammu-tanning-fungus of a leather worker ... white plant and blow it into his ears. +60619 tr.en.(4 29-31): If person’s ears (hearing) is heavy. You sprinkle on a tuft one shekel of pomegranate sap and one shekel of kanaktu sap (NB. cf. ii 55) and place it inside his ears. 30. You do this for three days and on the fourth day ... you wipe off the inside of his ears. 31. You pound gabû-stone and blow (it) through a reed straw into both his ears. +60621 tr.en.(4 32-33): You take root of male pillû-plant, ... You pound (it) fresh, its sap ... his hearing will open up. +60623 tr.en.(4 34-5): You parch and pound 34. ṭūru-plant, pig fat, imbû tamti (see iv. 15)... hair of virgin female goat kid (lit. does not know a penis) 35. you put it inside his ears. +60625 tr.en.(4 36-7): You ... šamaškillu-onion, e’ru-plant leaves... When you have done this, 37. he shall drink sahlû-plant, bread and ... in beer. +60627 tr.en.(4 38-9): paršīgu-headdress ... his cover. 39. ... you keep on fumigating and then he should recover. +60629 tr.en.(4 40-1): ... you put it inside his ears. 41. ... you put it inside his ears. +60631 tr.en.(4 42-3): ... you put it inside his ears. 43. You mix ... and drip it inside his ears. +tr.en.(4 44): ... you place it inside his ears. +tr.en.(4 45): ... and drip it inside his ears. +tr.en.(4 46): ... you place it inside his ears. +60636 tr.en.(1 1): If person’s teeth are sick, [you ... copulating] geckos [of the steppe ...] +tr.en.(1 2): You wrap up the white part of its (geckos?) belly in wool ... [...] +tr.en.(1 3): Root of male pillû-plant, root of nīnû-plant ... [...] +tr.en.(1 4): white plant, resin of baluhhu-aromatic, vinegar, [...] +tr.en.(1 5): You place? upuntu-flour on top of his teeth [...] +60642 tr.en.(1 6): gabû-stone, ... [...] +tr.en.(1 7): baluhhu-aromatic, date, [...] +tr.en.(1 8): leaves of sikillu, [...] +tr.en.(1 9): fresh date, [...] +tr.en.(1 10): gabû-stone [...] +60659 tr.en.(1 23): root of [...] +tr.en.(1 24): [x] It cools down the fever (heat) [...] +tr.en.(1 25): Alternatively, on the first day you massage [...] +tr.en.(1 26): Alternatively, [you ...] flour, dust, malt [...] +tr.en.(1 27): You strew [...] +tr.en.(1 28): If man’s tooth hurts [...] +tr.en.(1 29): Alternatively, [you ... the bile of] green-yellow frog [...] +tr.en.(1 30): Alternatively, [you ... the bile of green-yellow] frog [...] +tr.en.(1 31): Alternatively, [you ...] aromatic [...] +tr.en.(1 32): Two liters of [...] +60670 tr.en.(1 40): You place [...] +tr.en.(1 41): You place [...] +tr.en.(1 42): You place [...] +tr.en.(1 43): [...] x he will improve. +tr.en.(1 44): You strew [...] +tr.en.(1 45): [...] he will get better. +tr.en.(1 46): [...] he will find relief. +tr.en.(1 47): [...] he will find relief. +tr.en.(1 48): [...] he will get better. +tr.en.(1 49): [...] he will get better? +tr.en.(1 50): [...] he will get better? +tr.en.(1 51): [...] he will get better? +60685 tr.en.(1 55): You strew [...] +tr.en.(1 56): You place [...] +tr.en.(1 57): You strew [...] +tr.en.(1 58): [...] he will get better. +60691 tr.en.(1 64): If person’s tooth hurts [...] +tr.en.(1 65): You wrap up, sprinkle oil? [...] +tr.en.(1 66): Alternatively, you parch flour [...] +tr.en.(1 67): Alternatively, you [...] +tr.en.(1 68): Alternatively, you [...] +tr.en.(1 69): in oil [...] +tr.en.(1 70): Alternatively, you [...] +tr.en.(1 71): Alternatively, you [...] +tr.en.(1 72): in his hand [...] +60701 tr.en.(1 40): Alternatively, [you ...] garlic [...] +tr.en.(1 41): your arm [...] ... [...] +tr.en.(1 42): [you put ...] alive, oil, ... in wool ... +tr.en.(1 43): Alternatively, [you ...] the fat of a steppe gecko [...] +tr.en.(1 44): šadânu-stone [...] in his bread [...] +tr.en.(1 45): Alternatively, you break up the likeness? [...] ...clay at the place of the atbaru?-stone [...] +tr.en.(1 46): You place on his tooth the white spot of the living speckled (gecko) [...] +tr.en.(1 47): Like the fluid, which you have poured over his tooth ... [...] ... you remove it and forget about it until it heals you do not anoint it! He will get better. +tr.en.(1 48): Alternatively, you [ nadānu? ...] the root of a male plant, the fluid which you put over the sick tooth. +tr.en.(1 49): Alternatively, you smash Humbaba-lizard. You wrap it in wool, sprinkle with oil and place it inside the gum of his sick tooth. +tr.en.(1 50): Alternatively, you pound black cumin (and) place it on the top of his tooth. +tr.en.(1 51): Alternatively, you pound atāʾišu-plant (and) smear it on the crown of his tooth. +60723 tr.en.(1 51-62): 52'. Incantation: It is/was Anu, Anu, Anu is the whole Sky! Anu is the whole Earth! The Earth created the worm! 53'. The worm created the ‘bad smell’ (buʾšānu)! The grip of the ‘bad smell’-disease is strong, like a lion it seizes the throats. 54'. Like a wolf it seizes the gorge! 55'. It seizes the nose, the soft parts of the nose, the flesh of the lung. Among the teeth his (of buʾšānu) seat is set. 56'. (As) a drunkard forgot [his path], (as) the blind forgot the square of his city, 57'. (as) the death does not return [from the Earth, (as) the foetus, which does not suck] the breast of its mother, 58'. (So) may the ‘bad smell’ [not return to the one it has] seized. 59'. The palace [...] 60'. Like [...] 61'. The incantation is not [mine ...] 62'. It is the incantation of [...] +tr.en.(1 1): In front of Šamaš you constantly pour out pure water. You [recite] this incantation 3 times [...] +tr.en.(1 2): Whenever you recite the incantation, you fill on his tooth lump of malt, [you ...] over [his?] skull [...] +tr.en.(1 3): You have to say seven times ‘Skull, take away the sickness of my tooth, [and he will get better.] +60730 tr.en.(1 4-7): Incantation. Indeed, it (=the worm) is the one that became hostile! Via the door of the flesh! Via the bar of the bone! From where [it entered] 5. The (jaw) bone has poured heat upon the tooth: It has poured sickness/chills upon the head! 6. Whom shall I send to the first born-son of the mountains-Marduk, that the worm be smashed! 7. May the worm get out through the doorpost socket like a mongoose! Incantation Spell. +60735 tr.en.(1 8-12): Its medical application: you make gums from clay out of clay pit. According to 9. his teeth you drive grains in. 10. On the place of his sick tooth, you insert black emmer (and) fill sesame oil on his tooth. You blow in the middle of the (clay) gums (and) 11. recite 10. the (above cited) incantation trice. 11. You place it in a hole facing west (the sunset and) close it up with clay and chaff 12. (and) you seal its opening with a seal of šubû-stone and šadânu-stone. +60739 tr.en.(1 13-6): 13. Incantation: heir of Emah, heir of Emah, the grand heir of Enlil you are. From 14. Ekur you descended. In the middle of the sky you stand with the Wagon Star. 15. You are the one who says: everything that hurts me may be still, are you! 16. ... instruction, must not hurt? Incantation Spell. +60743 tr.en.(1 17-20): Its medical application: you make gums (from clay). According to his teeth you insert emmer grains. On the place 18. of the sick tooth you insert black grain. You fill honey and pressed oil over his tooth. 19. You blow 18. into the middle 19. of the gums. You recite the incantation thrice (and) place it into a hole to the west... +60749 tr.en.(1 39): into his tooth ... +tr.en.(1 40): touching of his tooth ... +tr.en.(1 41): his mouth ... +tr.en.(1 42): Be burst/split like a water skin ... +tr.en.(1 43): Invocation for sick tooth ... +tr.en.(1 44): Incantation: Sick tooth, sick tooth [...] +tr.en.(1 45): The sickness of the tooth [...] +60757 tr.en.(1 50): Invocation [...] +60763 tr.en.(1 56): Invocation for sick tooth... +tr.en.(1 57): You recite the incantation once over it [...] +tr.en.(1 58): Incantation: O Sungod, (I speak to you) because of my tooth that hurts me [...] +tr.en.(1 59): the one for whom I did not offer a funerary meal, nor libate water [...] he ... +tr.en.(1 60): The ... tooth. (now) I turn to you. I kept it/him back and I +tr.en.(1 61): Like a moth, whose tooth does not hurt him, for me the tooth muss not hurt me. Incantation Spell. +tr.en.(1 62): Invocation for sick tooth [...] +tr.en.(1 63): ina še-rim 3#-[šu₂ ŠID-nu ...] +tr.en.(1 64): Incantation: After the god Anu created the sky [...] +tr.en.(1 65): Eridu created ... [...] +tr.en.(1 66): like a bright star [...] +tr.en.(1 67): it creaks/hisses [...] +tr.en.(1 68): Invocation for sick tooth [ ... you roll a pill] +tr.en.(1 69): whenever you roll [you recite the incantation ...] +tr.en.(1 70): You place it on the crown his tooth [ and it will improve]. +tr.en.(1 71): Incantation: God Anu [...] +tr.en.(1 72): After Anu created [...] +60788 tr.en.(1 29-37): [After Anu created the sky, the sky created the earth, the earth created the channels.] 31'. The channels made mud 32'. The mud made the worm. The worm went in front of the god Šamaš, he was crying and his tears were flowing before the god Ea. 33'. What will you give me to eat? What will you give me to suck? 34'. I have (already) given you a ripe fig, armannu fruit and apple fruit! 35'. I, why this: ripe fig, armannu fruit and apple fruit? 36'. Raise me high and settle me between the tooth and the gum! 37'. May I suck the blood of the tooth, may I chew the morsels (ILF) of the gums! +60790 tr.en.(1 38-9): [Invocation for sick tooth. Its medical application: 39'. You mix together 38'. beer, beer] dregs, lump of malt, 39'. [You recite the incantation three times over it.] You place it over his tooth. +60799 tr.en.(1 40-8): Incantation: your attack? ... we are watching you (MJG)?. 41'. Via the door of the flesh! Via the bar of the bone! From where it (the worm) went into the flesh (of the gums) and raised the bone! 42'. It bit the flesh! It broke the bone! 43'. It cast the worm on the teeth. It cast ummu-fever upon the head! 44'. Whom shall I send to Asalluhi, the first son of Ea? 45'. (So that) he may send me a plant of life, life-supporting-incantation, a waterskin, and ... The incantation is not mine! It is the incantation of Ea and Asalluhi! 47'. It is the incantation of Damu and Ninkarrak! 48'. O, Gula heal (me) and take your gift! Incantation Spell. +tr.en.(1 49): Invocation for sick tooth. Its medical application was not written down. +tr.en.(1 50): If all teeth of a person are shaky. It is the first tablet (of the series) If person’s teeth are sick. +60808 tr.en.(1 51-7): Palace of Ashurbanipal king of the world, king of the Land Assyria, to whom Nabû and Tašmētu granted understanding. 52'. (who) acquired clear insight (and) a high level of scribal proficiency: 53'. that skill which among the kings, my predecessor(s) no one acquired 56'. I wrote, checked, and collated tablets with 54'. medical prescriptions from cranium to the (toe-) nail, non-canonical material, elaborate teaching(s), (and) 55'. the advanced healing art(s) of Ninurta and Gula, as much as created, (and) 57'. I placed (them) within of my palace for consultation (and) my reading. +60812 [. . .] . . . [. . .] maštakal-plant (and) pure plant – you chop them up while green, [. . .] in [. . .] five shekels of the resin of baluḫḫu-aromatic (and) five shekels of wax into a pursītu?-bowl, [. . .] you remove (the bandage) from the place where you tied it on (and) after you removed it [. . .]. +60814 If a man has been anointed by the oil of testing, and his head [is full? of guraštu?-boils: . . .] you wash them (and) you dry them. Afterwards, you dry (and) crush kalbānu-plant [. . .]. +60817 Alternatively, you pound imḫur-līm-plant, [. . .] in [. . .]. Alternatively, you pound ‘field lump’ plant, [. . .] in [. . .]. Alternatively, [. . .] urânu-fennel, [. . .]. +60819 If someone’s head [. . .] errû-colocynth [. . .]. +60824 [. . .] you pound black . . . (and) fly . . . [. . .] you dry (and) parch together karašu-leek (and) old shoe leather [. . .] you mix together tin, lead (and) anzaḫḫu-frit, (and) [. . .] one, two, three times [. . .]. Alternatively, you pound alum (and) 'field lump' plant, you mix them in cedar oil . . . [. . .]. +60829 If a man's head is full of grey hair in his youth: in order to turn the grey hair black, you heat up over fire the head of a rock-partridge, [. . .], a heron : a stork, or . . . [. . .] . . ., you take their skull, (and) [. . .] in oil. [. . .] the incantation "The temple of the Lord" seven times . . . [. . .]. You recite the incantation "The temple of the Lord" . . . [. . .]. +60832 Alternatively, you take stag horn, [. . .] with the bone of . . . [. . .], he burns it over fire, (and) . . . with oil [. . .], you bandage him with it for three days, and then [. . .]. +60835 Alternatively, you parch (and) pound together marišmalû-plant, the head of a bat?, [. . .], the head of a black raven, the head of a rock-partridge, the head of [. . .], you mix them in fine oil, you shave his head, and then . . . [. . .]. +60840 Alternatively, you catch a chameleon, you open up its belly region, [. . .] its stomach, its . . . and . . ., (and then) [. . .]. Then, you put back its innards, stitch it up, . . . on the hot place, (and) [. . .] for seven days. You take [. . .] of its belly, you dry, parch (and) pound it, [. . .] in fine oil [. . .], you shave his head, you anoint (and) bandage him repeatedly (with the mixture) for seven days, [. . .], (and then) the grey hair will turn black. While you are bandaging him, you recite the incantation as follows [. . .]. +tr.en.(1 1): If a man’s eyes are troubled: [you mix together] white honey in ghee (and) [...] +60846 tr.en.(1 2-6): When his eyes repeatedly see a flash of light: (it is) a ‘Hand of the Ghost’ [...] In order to heal this condition (lit. it): magnetite, tin, [black] frit [...] mūṣu- stone, zalāqu-stone, lapis lazuli, šubû- stone, tašrītu-stone, male copper (bead), [...]-stone [... seed] of tamarisk, seed of ēru-tree, seed of male rush, ashar-stone [... you crush these drugs together], sprinkle, and pound (them) in kidney fat of a black ox – like (you pound) kammu-tanning- fungus over copper – and [you regularly daub his eyes, and he will get better.] +60848 tr.en.(1 7-8): [Alternatively: (when his eyes repeatedly see a flash of light)]: seed of tamarisk, seed of ēru-tree, seed of ašlu-rush [seed of ..., and] [seed] of juniper like fumigation for the eyes and forehead [...] +60850 tr.en.(1 9-10): [If ‘Hand of] the Ghost’ afflicts a man and (the ghost) shows itself in front of a man’s eyes like a lamp-light [or like distant lightning or like a (...)] ..., or like a goat; this man [has been seized by a ‘Hand of the Ghost’ ...] +60852 tr.en.(1 11-2): [In order to uproot it (the ‘Hand of the Ghost’) ...] you pound together [...] juniper, kukru-aromatic, [...] +tr.en.(1 13): [...] resin of abukkatu-plant [...] +60856 tr.en.(1 35): [...] you daub his eyes. +tr.en.(1 36): [...] you daub his eyes. +60859 tr.en.(1 37-8): [...] reddish/full of [...] you daub (his eyes). +60862 tr.en.(1 51): [...] date [...] +tr.en.(1 52): Alternatively: [...] tamarisk, [...] +60865 tr.en.(1 53-4): Incantation: ... canals ... +tr.en.(1 55): Invocation for cloudy (and) [blurred] eyes [...] +60871 tr.en.(1 56-60): Its medical application: seven grain measures of resin of abukkatu-[plant ...] During the night on the roof (you place the drugs) in front of [a star ...] In the morning, before sunrise [you ... (process)] these drugs. You apply ... in the inner part, (and) daub his eyes. Afterwards, [you do not remove the lead spoon ointment]. You treat his eyes in the same way, and rinse his eyes in the sap of a kasû-plant [...] +60876 tr.en.(1 61-65): Ointment for the eyes against ‘Hand of the Ghost’: [you ...] mūṣu-stone, [...]- stone [...] huluhhu-stone, black frit, lulû-antimony, leaf of male pillû- mandragora, leaf [...].You put all these 11 stones and drugs into water, (and) let (them) stay under a star (= stay overnight) [...].You put (them) in sesame oil, you smear his eyes (with it), you put (them) into beer and he drinks (it). You place (them) on his neck [in a leather bag] and then he will be safe. From now on, you do (this) in (any) one month on the twenty first day, and then he will be safe. +60880 tr.en.(1 66-9): Alternatively: with a stone red like the bulālu-plant you smear his eyes. If ditto, mūṣu-stone, ditto (=you smear his eyes). If ditto; you pound black frit in ghee, ditto (smear his eyes). If ditto: you pound mountain lapis lazuli in ghee, ditto. If ditto; sardonyx, ditto (you pound in ghee). If ditto; you pound šimbizidû-galena in the milk from a woman in maternity, you smear his eyes (with it). If ditto; you pound obsidian in goose fat, ditto (you smear his eyes with it and he will be safe). +60883 tr.en.(1 70-2): Kukru-aromatic, mirqu-powder? of ašû-disease-plant, nīnû-’mint’, kasû- plant, pith of reeds, magnetite, mūṣu-stone, fat from an old partridge?, (and) wax. These eleven drugs are an infusion against ‘Hand of the Ghost’ (affliction): you keep daubing his eyes (with the mixture), then he should recover. +60885 tr.en.(2 1-2): [...] on the 9th day [...] you make an offering and [...] their flesh [...] +60888 tr.en.(2 3-5): You mix together marrow of a short sheep-bone, [...] black cumin, sap of pomegranate, ... [...] You pound (them) in honey, ghee and cedar oil, [(and) ...] +60890 tr.en.(2 6-7): If a man’s eyes cannot see: that man is inflamed with sun heat: [you pound] one shekel of bat guano, half shekel of white plant, (and) one fourth shekel of emesallu-saline solution in mountain honey and ghee, (and) you daub his eyes (with it). +60894 tr.en.(2 8-11): If a man’s eyesight is diminished: you mix and pound in equal measures fat from a black snake, maštakal-plant, date?, tamarisk, fat from a lion, resin of tīyatu-plant, errû- colocynth(or ṭūru-plant), horned uhūlu- alkali, white plant, emesallu-saline solution, (and) black cumin in copper patina (and) in mountain honey. You daub (his eyes). You make a [collyrium stick] (out of it). You wash his eyes (with it in the sap of) ušû-plant and horned uhūlu-alkali. [Afterwards] you daub his eyes. On day x, you apply ..., up to seven times you daub (his eyes). Afterwards you do not stop using the lead spoon (salve). +60896 tr.en.(2 12-3): [..: you pound] horned uhūlu-alkali, nuhurtu-plant, sahlû-plant [...] you knead [(it) in ...], (and) you bandage (his eyes). +60901 tr.en.(2 14-8): [If ...] and his eyes, [...] emesallu- saline solution, [...] you pound, [... x times during the whole day] he keeps the bandage on. 61’[...] you keep daubing his eyes, and then he should recover. +60905 tr.en.(2 19-22): [... hand of the] god Šulpaea(gloss: Adad, the rain-maker), [...] hand of Ištar, [...] you put [...] over charcoal. You pound [...], daub (his eyes) again and again, then he should recover. +60907 tr.en.(2 23-4): [...], if (his eyes) do not see, (it is the) hand of Ištar. You pound [... in] honey and ghee, you daub his eyes, then he should recover. +60909 tr.en.(2 25-6): If the perforations of a man’s [eyelids ...] ... and he cannot sleep, the ‘condition’ (of the eyes) is heavy: You mix ‘fat from a black snake’ in ghee and mountain honey, (and) you daub (his eyes). +60912 tr.en.(2 27-9): If perforations of a man’s eye(lids) are lengthened, and he cannot ‘lift his bed’ (get out of bed): you heat up leaf of šunû-tree, fig leaf, leaf of lipāru-tree, (and) leaf of ‘date reed’in water in a tannour-oven, you keep on putting (the mixture) into it. You crush and sift together gazelle droppings (and) ox dung, you mix (them) with flour of roasted grain. You knead (it) in the sap of a kasû-plant (and) bandage (his eys). (In addition,) he shall drink aktam-plant in beer, then he should recover. +tr.en.(2 30): If a man cannot see during the whole day, (but) sees during the whole night: (it is) a day blindness. +tr.en.(2 31): If a man sees during the whole day, (but) cannot see during the whole night: (it is) a night blindness. +60920 tr.en.(2 32-7): If a man’s eyes (have) a day/night blindness: you twist (lit. thread) into a string the ‘pole’ of a donkey liver (and) its neck tendons, (and) place (it) on his neck. You set up a holy water vessel (and) in the morning you spread out a šahhû-cloth facing the sun, you install an incense burner with juniper. You have that man stand behind the šahhû-cloth facing the sun. The mašmašu-healer lifts up seven loafs of bread. The one whose eyes are sick (also) lifts up seven loafs of bread. [A mašmašu-healer?] shall say to the patient: ‘accept (the bread), O shining of eye(s)’. The patient shall say to the mašmašu-healer: ‘accept (the bread), O staring of eye(s)’. +60923 tr.en.(3 1): [If a man’s eyes (have) a day/night blindness:] you cut into the ‘pole’ of a liver, [... he shall eat it ...] ... You assemble children, and they shall say thus: [...] is [what] they shall say. You mix together ghee and first class sesame oil (and) daub his eyes again and again. +tr.en.(3 4): [This medical application (...)] is like the (previous) one. +60926 tr.en.(3 5-6): [Incantation: ... hear and] accept! May Ea hear, may Ea accept (it)! [...] see O, shining of eye, see O, staring of eye. Incantation spell. +60928 tr.en.(3 7-8): [Its medical application: ...] you take seven? ‘lobes’ of the lung and [recite] this incantation. You place [... at] the door in his hand and he shall eat (it). +60930 tr.en.(3 9-10): [...] ... ‘pole’ of a liver, wherever [you cut] a piece. [...] his lips and [...] and then he should get better. +60932 tr.en.(3 11-2): [...] ... ‘limbs/condition’? [...] ... [...] roasted grain [...] +60936 tr.en.(3 1-4): A ‘lead spoon’-salve, which you have to place (on the eyes) like dough?: you pound together juniper, kukru- aromatic, [...]-plant, kasû-plant, horned uhūlu-alkali, sahlû-plant, ašû- disease-plant, kibrītu-sulphur, ruʾtītu- sulphur, liquid bitumen, [...], and ox kidney fat, and put it into the lead. [(Then) you daub?] (the eyes with your) finger. A healing ointment from the hand of the ummânu-wise man, tested and checked. +60938 tr.en.(3 5-6): Kasû-plant, sahlû-plant, atāʾišu-plant, māš(t)u-twin plant, kukru-aromatic, wax, nīnû-mint, kanaktu-aromatic pith, seed of juniper. Nine drugs which (are used as) an infusion for the eyes. +60941 tr.en.(3 7-9): You boil over charcoal nīnû-mint, sahlû-plant, kasû-plant, nuhurtu-plant, atāʾišu-plant, māš(t)u-twin plant, kammu-tanning-fungus, kukru- aromatic, hašû-thyme, (and) pound (them into a salve) in sesame oil and white wax. Nine drugs which (are used as) a softening salve. +60943 tr.en.(3 10-1): You roast over charcoal nīnû-mint, atāʾišu-plant, kasû-plant, māš(t)u-twin plant, bitter-plant, seeds of juniper, kammu-tanning-fungus of a leather worker – seven drugs – (used as) an infusion for the eyes: you pound (them into salve) in fat, wax and ghee. You daub his eyes. +60945 tr.en.(3 12-3): Black frit, tuškû-mineral, ashar-stone, mūṣu-stone, horned uhūlu-alkali, kukru-aromatic, white plant, sahlû- plant, kammu-tanning-fungus, kibrītu-sulphur, ox fat, lead: lead spoon-salve – handiwork of an asû- physician. +60949 tr.en.(3 14-7): Black frit, kibrītu-sulphur, kupru-dry bitumen [...] black cumin, kasû- plant, sahlû-plant, [...] Ox fat, bone marrow, [...]a spoon/salve of? [...] +tr.en.(3 18): Kukru-aromatic?, [...] +60952 tr.en.(1 1-2): [If ...] you parch (and) crush [patina] from a copper tangussu-kettle, (and) you pound (it) in a good quality ghee. When you have made it [... (and)] you daub his eyes. +60955 tr.en.(1 3-5): You pound aktam-plant (and) boil it in beer [...]. You drip (the mixture) into his eyes. You pound maštakal-plant and bandage (his eyes). You pound papparhû-purslane (and) bandage (his eyes). You knead sīhu-artemisia, argānu- plant, (and) barīrātu-sagapenum in milk (and) you bandage (his eyes). You put reddish kidney fat in the sun-heat (and) pound (it) into a lead spoon(salve) (and) you daub his eyes. +60957 tr.en.(1 6-7): If a man’s eyes are sick and closed: you wash kikkirânu-aromatic [..., and] supālu-juniper while still green in water, (and) you bandage (his eyes). You [pound] fruit of errû-colocynth, white plant [...], (and) you daub his [eyes]. +60960 tr.en.(1 18-20): If a man’s eyes are sick and then he cannot open (them) for many days, while having ummu-fever [of his head (and) his eyes are filled up with a film.] You shave his head (and) three times a day, you cool off (his head) with dough. You parch seeds [of maštakal-plant. ]You pound (them) in the ghee of a lead spoon(salve), (and) daub? his eyes, and he should get better?. +tr.en.(1 11): If a man’s eyes suffer from ‘dryness’: he (the patient) should chop šamaškillu- onion (and) drink it in beer. (Then) you sprinkle? sesame oil into his eyes [and and he should get better?] +tr.en.(1 12): You parch (and) pound powder of date stones, you knead (this flour) in the sap of a kasû-plant, you roll it (into a pill, which) he swallows before eating. +tr.en.(1 13): You dissect a yellow-green muṣaʾʾirānu-frog (and) you mix its bile in ghee. You daub his eyes (with it). +tr.en.(1 14): You knead 5 SILA-measure chickpea powder, 6 SILA-measure powder of kasû-plant, (and) 5 shekels of sahlû- plant in the sap of a kasû-plant. You bandage his temple (and) his eyes. +60966 tr.en.(1 15-6): Incantation ... they cloud over, they become lazy?. You say [...] ... three times over water. +60975 tr.en.(1 21-5): If a man’s eyes are [full of] blood [and he cannot sleep day and night ...], if the inner part of his eyes is red, (and) his eyes are closed: you parch kasû-plant [...], you knead sheep dung in the milk from a woman in maternity (and) bandage (his eyes). In the morning you loosen it (the bandage), and then you pound ashar-stone in ghee, (and) daub his eyes [(...)]. You cut with a bronze knife the root of rapādu-disease- plant. You spin a cord of red and white wool, you wrap and bind up (the root of rapādu-plant with the wool, and) tie (it) on his both temples, and ... you remove (it), and then [daub] his eyes. +tr.en.(1 26): If a man’s eyes are suffused with blood: you mix seeds of egemgīru-plant, mountain honey, (and) lēru-paste, [you pound (them) and daub (his eyes)]. +tr.en.(1 27): [You pound] one shekel of bat guano, half SILA-measure of white plant (and) one-sixth (SILA-measure) emesallu- saline solution in [ghee and daub his eyes with (it)]. +60979 tr.en.(1 28-9): You spatter white plant in a dry state into his eyes, [you pound] dāmātu-paste in ghee [and ...] You pound lizard’s excrement in the marrow of a short bone, without (him) eating, [...]. +tr.en.(1 30): You pound five grain measure of white plant in sesame oil, you daub his eyes. You pound bat guano in ghee, (and) you daub his eyes (with it). +tr.en.(1 31): If a man’s eyes are full of blood: you pound dāmātu-paste in ghee, you daub (his eyes) : You mix in equal measure maštakal-plant and tarmuš-lupine, you pound [male and female] nikiptu-plant in ghee, (and) daub his eyes. +tr.en.(2 1): [...] you daub [his eyes.] +tr.en.(2 2): [...] you spatter [... into his eyes.] +60986 tr.en.(2 3-5): [...you pound] sahlû-plant, ašû-disease- plant, [...] ... In the summer, you wash (the ingredients) in the sap of a kasû-plant [...] (and) you apply (it on the eyes) in dry state. +tr.en.(2 6): If a man’s [...], you pound (drug(s)) [in ...] and sesame oil, (and) keep daubing (his eyes). +tr.en.(2 7): Alternatively: you pound [...], you keep daubing (his eyes). +tr.en.(2 8): Alternatively: [...] you blow white plant in a dry state into his eyes. +tr.en.(2 9): If a man’s eyes are [sick ...] ‘dog’s [tongue]’ plant (and) maštakal-plant you mix in coarse flour, (then) he drinks (it) in wine. +tr.en.(2 10): You pound in ghee white plant, [...] x (and) ashar-stone (and) daub (his eyes). +60993 tr.en.(2 11-2): If a man’s eyes are sick: you make his [...] ... face forwards, and bind (it). [...] you pound ashar-stone in ghee (and) daub (his eyes). +60996 tr.en.(2 13-5): [If a man’s eyes have a blood deposit (var. but he is still able to see): white plant], bat guano, emesallu-saline solution, nīnû-mint, [atāʾišu-plant, kukru-aromatic, kanaktu-aromatic pith]; you grind these drugs together (and) [mix (the ingredients)] in bile of a sheep. [You make a collyrium stick (out of it). You soften (it) in water when winter] (and) in the sap of a kasû-plant [when summer], (and) you instil his eyes (with the ‘liquid’). +tr.en.(2 16): You pound 3 shekels of bat guano, half shekel of white plant in mountain honey, daub his eyes; this is a drug (which is to be used) for twenty days. +61000 tr.en.(2 17-9): Incantation: the seed stays with it [........ in the] ‘kiln of life’, ‘My life be saved; my life be saved!’ She is too large; I can judge from the symptom [... (this)] woman cannot give birth. I hold back (treatment) completely. Incantation spell. +tr.en.(2 20): Invocation (for the case if) his eyes are full of blood. +tr.en.(2 21): Its medical application: you bind (together) root of urânu-plant, [...], and uqnâtu-blue-plant, (and) make fourteen knots. Wherever you make a knot you shall recite the incantation, (and) you bind it on his temple. +tr.en.(2 22): Incantation: (The syllables) hu-ha-hi: not by halves! hu-ha-hi: not by halves! Even a novice can complete it (the syllabary). A novice can complete it! Incantation spell. +tr.en.(2 23): Invocation: if a man’s eyes are full of blood. +tr.en.(2 24): Its medical application: you pound ashar-stone in ghee and apply (it) into his eyes. +61009 tr.en.(2 25-8): Incantation: The eye is healthy, the back is healthy, the ear is shining, the back is shining by means of the ‘real mountain plant’. You (the patient) have been leaning (over) my pig! (You Gula) fix me, fix me here! (Because) flesh consumes flesh, blood sucks blood, sinew twists sinew. May Gula cast the life incantation! May the (medical) experts produce the bandages! You (Gula) set the healing-efficacy of the remedy! Incantation spell. +tr.en.(2 29): Invocation: if a man’s eyes are full of blood. +tr.en.(2 30): Its medical application: you pound together three grains of horned uhūlu- alkali, three grains of gummy resin of abukkatu-plant (and) a three grain- measure of lizard’s excrement. You make an infusion from (them) in goat’s milk, bandage his eyes (with it). +61018 tr.en.(2 31-7): If a man’s eyes are sick and then full of blood. They (= the eyes) are suffused with baluhhu-granules (and) blood, blood (and) tear(s) come out from the middle of his eyes. A film pushes away the pupil of his eyes. The blurred vision has turned into a film, with seeing being burdensome to him. You squeeze bīnu- tamarisk while still fresh (and) soak (it) in strong vinegar and let it stay under a star (= stay overnight). In the morning, you press it out into a funnel (lit. huliam-vessel). You pound separately alluharu-mineral, white plant, emesallu-saline solution, fat, tuškû-mineral, black cumin (and) exudation of copper. You take in equal amounts, stir (them) together. You pour (them) into the funnel (lit. huliam- vessel), which you have (earlier) rinsed. You knead (it) in ghee and šumēnu- mineral, then you open the upper part of his eyes with a finger (and) put (the medication) into his eyes. He keeps his eyes closed (while) you rub his eyes (i.e. the eyelids and surroundings) and continuously do this for nine days. +tr.en.(2 38): Alternatively: you blow bitter-plant, white plant (and) emesallu-saline solution with a bronze tube into his eyes. +tr.en.(2 39): If a man: alternatively, you pound exudation of copper (and) white plant, you blow it with a bronze tube into his eyes. +tr.en.(2 40): If a man: alternatively, you pound urnû- plant (and) white plant, you blow (them) with a bronze tube into his eyes. +61028 tr.en.(2 41-7): Incantation: the open eye is a staring eye, the opened eye stares, the reddish eye is a crimson eye, the opened eye is crimson. The open eye is drowsy, the open eye is weak, the open eye is harmed. O cloudy eyes, blurred eyes (vision). [The (eye)] blood [vessel] is porous. The eyes are suffused with blood like a slaughtered sheep, they (= the eyes) are spotted like the (muddy) water of a lagoon with alapû-algae, they (= the eyes) are spotted like a vinegar-jar with a film. In between them (= the eyes), a mud-brick wall is constructed (= nose). (The god) Šakkan entered between them (= the eyes) and installed his seat. Therefore, one can not breathe in the middle of this (nose). The incantation is not mine; it is the incantation of Ea and Asalluhi, the incantation of Dāmu and Gula, the incantation of Ningirimma, mistress of incantations. O Gula keep (me) healthy and accept your fee. Incantation spell. +tr.en.(2 48): It is an invocation for a sick eye. +tr.en.(3 1): Its medical application: you spin this which is a cord of white wool. You shall tie (on) seven knots. Whenever you make a knot, you shall recite the (above) incantation, and bind it on his healthy eye! +61039 tr.en.(3 2-10): Incantation: The open eye is a staring eye, the opened eye stares, the reddish eye is a crimson eye, the opened eye is crimson. [The open eye is drowsy], the open [eye] is weak, the open eye is harmed (lit. evil). O, cloudy eyes, O blurred eyes, eyes which are full of blood. [I am ...] ... the one who executes the command of Gula. They are two, the two are sisters (= the eyes), between whom a mountain is parked! Whom shall I send to the celestial daughter of Anu? May they bring forward their flasks (made) from banded agate (onyx), their vessels (made) from pure lapis lazuli, and draw water of the sea and ocean, into which no woman in confinement plunged (and) no woman in maternity washed her hands! May they sprinkle (var. fill water) and cool off the ummu-fever (and) the hotness midst of his (patient) eyes. The incantation is not mine. It is the incantation of Ea and Asalluhi, the incantation of Dāmu and Gula,’the incantation of Ningirimma, mistress of incantations. O, Gula keep me healthy and accept your fee. Incantation spell. +tr.en.(3 11): It is an invocation for a sick eye. +tr.en.(3 12): Its medical application: you spin that which is a cord of red wool, you shall tie seven knots (on it). Whenever you make a knot, you shall recite the incantation (see above). You shall bind (it) on his sick eye! +61047 tr.en.(3 8-13-18): Incantation: The open eye is a staring eye, the opened eye stares, the reddish eye is a crimson eye, the opened eye is crimson. The open eye is drowsy, the open eye is weak, the open eye is harmed (lit. evil). O cloudy eyes, O blurred eyes, O eyes intersected by blood vessels! Why are you cloudy? Why are you blurry? Why does the sand of the river, the pollen of the date palm (or) the fig, (or) chaff of its straw cause you pain? I called to you, come here (to hide)! Did I not call you? Will you not come here, before the south, north, east (and) west wind rise up against you? (This is) the incantation. +tr.en.(3 19): It is an invocation for a sick eye. +61050 tr.en.(3 20-1): Its medical application: you spin separately red (and) white wool. You shall tie seven and seven knots (on each wool). Whenever you make a knot, you shall recite the (above) incantation. You tie the cord from the red wool on his sick eye. You tie the cord from the white wool on his healthy eye and then it (the eye) he should get better. +61056 tr.en.(3 22-7): Incantation: The open eye is a staring eye, the opened eye stares, the evil eye is malevolent, the opened eye is malevolent! The two of them are daughter(s) of Anu, between whom (the eyes) a mud-brick wall is constructed (= nose). A sister cannot go to the side (lit. cheek) of her sister! Whom shall I send to the heavenly daughter(s) of Anu? May they bring their kannu-jars from banded agate (onyx), their vessels of pure zagindurû-lapis lazuli! ’May they keep on drawing water and put an end to cloudy, blurred and troubled eyes. Incantation spell. +tr.en.(3 28): It is an invocation for a sick eye : Its medical application is like the (previous) one. +61063 tr.en.(3 29-34): Incantation: The open eye is a staring eye, the opened eye stares, the blurred eye blurs vision, the opened eye is blurred! Two eyes, both are sisters, between whom a mountain is parked! Above whom the ‘brow’ is furrowed, below whom a mud-brick wall (= nose) is constructed! Which one is their (toxic) wind, which one is not their (toxic) wind? Which is the wind rising against them, which is not a wind, rising against them? You, Marduk, disperse the resistance, gloom, and anger! [Incantation spell.] +tr.en.(3 35): [It is an invocation for a sick eye.] Its medical application is like the (previous) one. +tr.en.(3 36): Incantation: the open eye is a staring eye [...] +61068 tr.en.(3 48-9): [Its medical application:] you spin separately [red (and) white wool? ... You shall tie seven knots. Whenever you make a knot you shall recite the incantation.] You bind it on his temple. +tr.en.(3 50): [Incantation: ... malady of] the eye must not develop. Incantation spell. +tr.en.(3 51): [Its medical application: ... you bind it on his?] right [temple?] +tr.en.(3 52): [Incantation: ...] tamadraš tamadraš. Incantation spell. +tr.en.(3 53): Its medical application: ... you bind it on his?] left [temple?]. +tr.en.(3 54): [It is an invocation for a sick eye.] Its medical application is like the (previous) one. +61076 tr.en.(3 55-7): [Incantation: ... (pouring out)] like the water of the shaduf, o tear(s) be present, be present! 151’[Marduk noticed it (the harm) and then] cried out [to] his father Ea: 152’[what I must do I do not know: what I] know, you (already) know. Incantation spell. 153’[It is an invocation] for a sick eye. +61078 tr.en.(4 1-2): Its medical application: you spin together red (and) white wool. Seven and seven knots you shall tie. Whenever you make a knot you shall recite the incantation. You bind it on his temples and he will get better. +tr.en.(4 3): [Incantation: The eye] is healthy, the back is healthy, the eye is shining, the back is shining! Your tiny reed is your faithful hero. Incantation spell. +tr.en.(4 4): It is an invocation for a sick eye. : Its medical application is like the (previous) one. +tr.en.(4 5): Incantation: reddish ‘robe’, reddish ‘robe’, its ‘robe’ is reddish! In truth: the eye’s ‘robe’ is reddish. Incantation spell. +tr.en.(4 6): It is an invocation for a sick eye. Its medical application is the same (as the previous one). +61085 tr.en.(4 7-9): Incantation: The eye of the lad is sick; the eye of the maiden is sick! Who will heal the eye of the lad and the maiden? You will send for (and) they will bring you a clean date-palm offshoot! You break (it) up with your mouth (teeth) and twist (it to thread) with your hand. You bind (it) up on the lad’s or maiden’s temples and the eye of the lad and the maiden should recover. Incantation spell. +tr.en.(4 10): It is an invocation for a sick eye. Its medical application is the same (as the previous one). +61107 tr.en.(4 11-31): Incantation: The wind blew in the sky and thus caused lesions in a man’s eye. From the distant sky, the wind blew in the sky and thus caused lesions in a man’s eye. It caused lesions within the sick eyes! Regarding that man, his eyes are troubled, his eyes are blurred! This man weeps bitterly by himself. It was that man’s illness which the (water goddess) Nammu noticed (and said): ‘Take crushed kasû-plant, recite the Apsû incantation, (and) bandage the eyes of the man.’ When Nammu touches the man’s eye with her clean hand, may the wind which has inflated the man’s eye depart from his eye(s)! +tr.en.(4 32): It is an invocation for a sick eye. +tr.en.(4 33): [Incantation.] O cloudy eyes, O blurred eyes, O porous blood vessels! +tr.en.(1 1): [You pound] lulû-antimony, bat guano, marrow of a short bone of [ a sheep ...] +tr.en.(1 2): You pound šīpu-paste, (which) [you blow into his eyes] through a reed-[straw]. +tr.en.(1 3): You tie a wool braid on his head. You pour 10 SILA-measure sesame oil (and) one-half SILA-measure [... onto his head (and) ...] +tr.en.(1 4): For three days, you do it again and again, you parch (and) pound sahlû-plant [...] ... +tr.en.(1 5): If a man’s eyes are sick: you pound grain-sprout while still green, (and) horned uhūlu-alkali, you knead (them) in the sap of a kasû-plant, (and) bandage his eyes. +tr.en.(1 6): You pound ashar-stone (and) tuškû-mineral, drench (them) in fat, pound (them) in equal measure (and) mix (them) in ghee. You daub his eyes (with it). +61117 tr.en.(1 7-8): If a man’s eyes are sick: you keep on applying 10 SILA-measure of sesame oil on his temples. You spread copper patina from a leatherworker onto a waterproof leather.’You bandage his temples (with the leather). You pound exudation of copper, ashar-stone (and) šīpu-paste, you mix (them) in ghee, you keep daubing his eyes, then he should recover. +61119 tr.en.(1 9-10): If a man’s eyes are sick and burn: you pound patina of a copper tangussu-kettle in ghee (and) daub his eyes. You wash a bronze knife in water, you pound (with it) garlic (and) daub his eyes (with the paste) once, twice, three times. You knead sahlû-plant in beer dregs (and) you bandage (his eyes). +61121 tr.en.(1 11-2): [If ...] you parch (and) crush [patina] from a copper tangussu-kettle, (and) you pound (it) in a good quality ghee. When you have made it [... (and)] you daub his eyes. +61124 tr.en.(1 13-5): You pound aktam-plant (and) boil it in beer [...]. You drip (the mixture) into his eyes. You pound maštakal-plant and bandage (his eyes). You pound papparhû-purslane (and) bandage (his eyes). You knead sīhu-artemisia, argānu- plant, (and) barīrātu-sagapenum in milk (and) you bandage (his eyes). You put reddish kidney fat in the sun-heat (and) pound (it) into a lead spoon(salve) (and) you daub his eyes. +61126 tr.en.(1 16-7): If a man’s eyes are sick and closed: you wash kikkirânu-aromatic [..., and] supālu-juniper while still green in water, (and) you bandage (his eyes). You [pound] fruit of errû-colocynth, white plant [...], (and) you daub his [eyes]. +61129 tr.en.(1 18-20): If a man’s eyes are sick and then he cannot open (them) for many days, while having ummu-fever [of his head (and) his eyes are filled up with a film.] You shave his head (and) three times a day, you cool off (his head) with dough. You parch seeds [of maštakal-plant. ]You pound (them) in the ghee of a lead spoon(salve), (and) daub? his eyes, and he should get better?. +tr.en.(1 21): If a man’s eyes suffer from ‘dryness’: he (the patient) should chop šamaškillu- onion (and) drink it in beer. (Then) you sprinkle? sesame oil into his eyes [and and he should get better?] +61132 tr.en.(1 22-3): You parch (and) pound powder of date stones, you knead (this flour) in the sap of a kasû-plant, you roll it (into a pill, which) he swallows before eating. You dissect a yellow-green muṣaʾʾirānu-frog (and) you mix its bile in ghee. You daub his eyes (with it). +tr.en.(1 24): You knead 5 SILA-measure chickpea powder, 6 SILA-measure powder of kasû-plant, (and) 5 shekels of sahlû- plant in the sap of a kasû-plant. You bandage his temple (and) his eyes. +61135 tr.en.(1 25-6): Incantation ... they cloud over, they become lazy?. You say [...] ... three times over water. +61137 tr.en.(1 27-8): If a man’s [eyes] are [sick: nīnû-mint, atāʾišu-plant, kasû-plant,] sahlû-plant, māš(t)u-twin plant, kanaktu-aromatic pith, seed of juniper, kammu-tanning- fungus [of a leather worker. (These) eight? drugs (are used) as an infusion for the eyes which you] roast [over charcoal]. (Then) you stir (them) in ghee, sheep’s kidney-fat, and wax, (and) you daub his eyes. +tr.en.(1 29): If a man’s eyes [are sick you pound white plant in ghee and daub (the eyes): If a man’s eyes] are sick: you pound bat guano in ghee (and) daub (his eyes). +tr.en.(1 30): If a man’s eyes [are sick: You pound alum in ghee (and) daub (his eyes): If a man’s] eyes are sick you boil sahlû-plant in milk (and) bandage (his eyes with it). +61143 tr.en.(1 31-4): If a man’s eyes are [full of] blood [and he cannot sleep day and night ...], if the inner part of his eyes is red, (and) his eyes are closed: you parch kasû-plant [...], you knead sheep dung in the milk from a woman in maternity (and) bandage (his eyes). In the morning you loosen it (the bandage), and then you pound ashar-stone in ghee, (and) daub his eyes [(...)]. You cut with a bronze knife the root of rapādu-disease- plant. You spin a cord of red and white wool, you wrap and bind up (the root of rapādu-plant with the wool, and) tie (it) on his both temples, and ... you remove (it), and then [daub] his eyes. +tr.en.(1 35): If a man’s eyes are suffused with blood: you mix seeds of egemgīru-plant, mountain honey, (and) lēru-paste, [you pound (them) and daub (his eyes)]. +tr.en.(1 36): [You pound] one shekel of bat guano, half SILA-measure of white plant (and) one-sixth (SILA-measure) emesallu- saline solution in [ghee and daub his eyes with (it)]. +61147 tr.en.(1 37-8): You spatter white plant in a dry state into his eyes, [you pound] dāmātu-paste in ghee [and ...] You pound lizard’s excrement in the marrow of a short bone, without (him) eating, [...]. +tr.en.(1 39): You pound five grain measure of white plant in sesame oil, you daub his eyes. You pound bat guano in ghee, (and) you daub his eyes (with it). +tr.en.(1 40): If a man’s eyes are full of blood: you pound dāmātu-paste in ghee, you daub (his eyes). +tr.en.(1 41): You mix in equal measure maštakal-plant and tarmuš-lupine, you pound [male and female] nikiptu-plant in ghee, (and) daub his eyes. +tr.en.(1 42): You pound tašrītu-stone in spittle (and)daub (his eyes with it) : [You pound] šimbizidû-galena? (...) in the milk from a woman in maternity, you pound ... (and) an apple, (and) daub (his eyes). +tr.en.(1 43): You [drip] into his eyes blood from a pig’s heart ... you bandage his eyes. +tr.en.(2 1): You pound 3 shekels of bat guano, half shekel of white plant in mountain honey, daub his eyes; this is a drug (which is to be used) for twenty days. +61157 tr.en.(2 2-5): Incantation: the seed stays with it [........ in the] ‘kiln of life’, ‘My life be saved; my life be saved!’ She is too large; I can judge from the symptom [... (this)] woman cannot give birth. I hold back (treatment) completely. Incantation spell. Invocation (for the case if) his eyes are full of blood. +tr.en.(2 6): Its medical application: you bind (together) root of urânu-plant, [...], and uqnâtu-blue-plant, (and) make fourteen knots. Wherever you make a knot you shall recite the incantation, (and) you bind it on his temple. +tr.en.(2 7): Incantation: (The syllables) hu-ha-hi: not by halves! hu-ha-hi: not by halves! Even a novice can complete it (the syllabary). A novice can complete it! Incantation spell. +tr.en.(2 8): Invocation: if a man’s eyes are full of blood. +tr.en.(2 9): Its medical application: you pound ashar-stone in ghee and apply (it) into his eyes. +61166 tr.en.(2 10-4): Incantation: The eye is healthy, the back is healthy, the ear is shining, the back is shining by means of the ‘real mountain plant’. You (the patient) have been leaning (over) my pig! (You Gula) fix me, fix me here! (Because) flesh consumes flesh, blood sucks blood, sinew twists sinew. May Gula cast the life incantation! May the (medical) experts produce the bandages! You (Gula) set the healing-efficacy of the remedy! Incantation spell. Invocation: if a man’s eyes are full of blood. +tr.en.(2 15): Its medical application: you pound together three grains of horned uhūlu- alkali, three grains of gummy resin of abukkatu-plant (and) a three grain- measure of lizard’s excrement. You make an infusion from (them) in goat’s milk, bandage his eyes (with it). +61174 tr.en.(2 16-22): If a man’s eyes are sick and then full of blood. They (= the eyes) are suffused with baluhhu-granules (and) blood, blood (and) tear(s) come out from the middle of his eyes. A film pushes away the pupil of his eyes. The blurred vision has turned into a film, with seeing being burdensome to him. You squeeze bīnu- tamarisk while still fresh (and) soak (it) in strong vinegar and let it stay under a star (= stay overnight). In the morning, you press it out into a funnel (lit. huliam-vessel). You pound separately alluharu-mineral, white plant, emesallu-saline solution, fat, tuškû-mineral, black cumin (and) exudation of copper. You take in equal amounts, stir (them) together. You pour (them) into the funnel (lit. huliam- vessel), which you have (earlier) rinsed. You knead (it) in ghee and šumēnu- mineral, then you open the upper part of his eyes with a finger (and) put (the medication) into his eyes. He keeps his eyes closed (while) you rub his eyes (i.e. the eyelids and surroundings) and continuously do this for nine days. +tr.en.(2 23): Alternatively: you blow bitter-plant, white plant (and) emesallu-saline solution with a bronze tube into his eyes. +tr.en.(2 24): If a man: alternatively, you pound exudation of copper (and) white plant, you blow it with a bronze tube into his eyes. +tr.en.(2 25): If a man: alternatively, you pound urnû- plant (and) white plant, you blow (them) with a bronze tube into his eyes. +61184 tr.en.(2 26-32): Incantation: the open eye is a staring eye, the opened eye stares, the reddish eye is a crimson eye, the opened eye is crimson. The open eye is drowsy, the open eye is weak, the open eye is harmed. O cloudy eyes, blurred eyes (vision). [The (eye)] blood [vessel] is porous. The eyes are suffused with blood like a slaughtered sheep, they (= the eyes) are spotted like the (muddy) water of a lagoon with alapû-algae, they (= the eyes) are spotted like a vinegar-jar with a film. In between them (= the eyes), a mud-brick wall is constructed (= nose). (The god) Šakkan entered between them (= the eyes) and installed his seat. Therefore, one can not breathe in the middle of this (nose). The incantation is not mine; it is the incantation of Ea and Asalluhi, the incantation of Dāmu and Gula, the incantation of Ningirimma, mistress of incantations. O Gula keep (me) healthy and accept your fee. Incantation spell. +tr.en.(2 33): It is an invocation for a sick eye. +tr.en.(2 34): Its medical application: you spin this which is a cord of white wool. You shall tie (on) seven knots. Whenever you make a knot, you shall recite the (above) incantation, and bind it on his healthy eye! +61191 tr.en.(2 35-9): Incantation: The open eye is a staring eye, the opened eye stares, the reddish eye is a crimson eye, the opened eye is crimson. [The open eye is drowsy], the open [eye] is weak, the open eye is harmed (lit. evil). O, cloudy eyes, O blurred eyes, eyes which are full of blood. [I am ...] ... the one who executes the command of Gula. They are two, the two are sisters (= the eyes), between whom a mountain is parked! Whom shall I send to the celestial daughter of Anu? +61196 tr.en.(3 1-5): May they bring forward their flasks (made) from banded agate (onyx), their vessels (made) from pure lapis lazuli, and draw water of the sea and ocean, into which no woman in confinement plunged (and) no woman in maternity washed her hands! May they sprinkle (var. fill water) and cool off the ummu-fever (and) the hotness midst of his (patient) eyes. The incantation is not mine. It is the incantation of Ea and Asalluhi, the incantation of Dāmu and Gula the incantationn of Ningirimma, mistress of incantations. O, Gula keep me healthy and accept your fee. Incantation spell. It is an invocation for a sick eye. +tr.en.(3 6): It is an invocation for a sick eye. +tr.en.(3 7): Its medical application: you spin that which is a cord of red wool, you shall tie seven knots (on it). Whenever you make a knot, you shall recite the incantation (see above). You shall bind (it) on his sick eye! +61204 tr.en.(3 8-13): Incantation: The open eye is a staring eye, the opened eye stares, the reddish eye is a crimson eye, the opened eye is crimson. The open eye is drowsy, the open eye is weak, the open eye is harmed (lit. evil). O cloudy eyes, O blurred eyes, O eyes intersected by blood vessels! Why are you cloudy? Why are you blurry? Why does the sand of the river, the pollen of the date palm (or) the fig, (or) chaff of its straw cause you pain? I called to you, come here (to hide)! Did I not call you? Will you not come here, before the south, north, east (and) west wind rise up against you? (This is) the incantation. +tr.en.(3 14): It is an invocation for a sick eye. +61207 tr.en.(3 15-6): Its medical application: you spin separately red (and) white wool. You shall tie seven and seven knots (on each wool). Whenever you make a knot, you shall recite the (above) incantation. You tie the cord from the red wool on his sick eye. You tie the cord from the white wool on his healthy eye and then it (the eye) he should get better. +61213 tr.en.(3 17-22): Incantation: The open eye is a staring eye, the opened eye stares, the evil eye is malevolent, the opened eye is malevolent! The two of them are daughter(s) of Anu, between whom (the eyes) a mud-brick wall is constructed (= nose). A sister cannot go to the side (lit. cheek) of her sister! Whom shall I send to the heavenly daughter(s) of Anu? May they bring their kannu-jars from banded agate (onyx), their vessels of pure zagindurû-lapis lazuli! ’May they keep on drawing water and put an end to cloudy, blurred and troubled eyes. Incantation spell. It is an invocation for a sick eye. +tr.en.(3 23): Its medical application is like the (previous) one. +61219 tr.en.(3 24-32): Incantation: The open eye is a staring eye, the opened eye stares, the blurred eye blurs vision, the opened eye is blurred! Two eyes, both are sisters, between whom a mountain is parked! Above whom the ‘brow’ is furrowed, below whom a mud-brick wall (= nose) is constructed! Which one is their (toxic) wind, which one is not their (toxic) wind? Which is the wind rising against them, which is not a wind, rising against them? +tr.en.(3 29): [It is an invocation for a sick eye.] Its medical application is like the (previous) one. +61223 tr.en.(3 30-2): [Incantation: ... (pouring out)] like the water of the shaduf, o tear(s) be present, be present! [Marduk noticed it (the harm) and then] cried out [to] his father Ea: [what I must do I do not know: what I] know, you (already) know. Incantation spell. +tr.en.(3 33): [It is an invocation] for a sick eye. +tr.en.(3 34) Its medical application: you spin together red (and) white wool. Seven and seven knots you shall tie. Whenever you make a knot you shall recite the incantation. You bind it on his temples and he will get better. +61228 tr.en.(3 35-7): [Incantation: The eye] is healthy, the back is healthy, the eye is shining, the back is shining! Your tiny reed is your faithful hero. Incantation spell. It is an invocation for a sick eye. Its medical application is like the (previous) one. +61231 tr.en.(4 1-3): Incantation: The eye of the lad is sick; the eye of the maiden is sick! Who will heal the eye of the lad and the maiden? You will send for (and) they will bring you a clean date-palm offshoot! You break (it) up with your mouth (teeth) and twist (it to thread) with your hand. You bind (it) up on the lad’s or maiden’s temples and the eye of the lad and the maiden should recover. Incantation spell. +tr.en.(4 4): It is an invocation for a sick eye. Its medical application is the same (as the previous one). +61249 tr.en.(4 5-21): Incantation: The wind blew in the sky and thus caused lesions in a man’s eye. From the distant sky, the wind blew in the sky and thus caused lesions in a man’s eye. It caused lesions within the sick eyes! Regarding that man, his eyes are troubled, his eyes are blurred! This man weeps bitterly by himself. It was that man’s illness which the (water goddess) Nammu noticed (and said): ‘Take crushed kasû-plant, recite the Apsû incantation, (and) bandage the eyes of the man.’ When Nammu touches the man’s eye with her clean hand, may the wind which has inflated the man’s eye depart from his eye(s)! +tr.en.(4 22): It is an invocation for a sick eye. +61253 tr.en.(4 23-5): [Incantation.] O cloudy eyes, O blurred eyes, O porous blood vessels! The two (eyes) are weeping before their mother Mami: ‘Why us and (why) did you saddle us with blurred (vision), blood, and wind?’ Incantation spell. +tr.en.(4 26): It is an invocation for a sick eye. +61256 tr.en.(4 27-8): [Its medical application]: You spin separately red and white wool, make a wad from their middle (parts), bind the [red wool] on his sick eye and the white wool on his healthy eye, and he will get better. +61258 tr.en.(4 29-30): [Incantation: the winnowed grain], the winnowed grain! It is afflicted, the diminished eye (vision) is afflicted, it is afflicted, ditto, that diminished eye is afflicted, ditto! In the spring it was favourable, in the spring it was favourable! It will be good (and) favourable, secondly (it will be good and favourable)! +tr.en.(4 31): Invocation: if the man’s eyes are troubled. +61261 tr.en.(4 32-3): [Its medical application]: take sheep testicle (lit. ‘knee’) [...], and you spin (and) twine a two-ply cord ... [...], you shall tie seven [and] seven [knots]. Whenever you make a knot, you shall recite the incantation (see above), you bind it on his temple, (and) he will get better. +61267 tr.en.(4 34-9): Incantation: O [you] eyes are porous blood vessels! Why have you picked up chaff, the handabillu-pebbles?, šuršurru-fibre?, the alapû-algae of the river, the clods from the streets (and) twigs from the refuse heaps? Why have you carried (them) along? Rain down like (a shooting) star, drop down like a meteor (lit. flame), before Gula’s flint-razor and scalpel manage to reach you (i.e. the eyes). An irreversible incantation, the incantation of Asalluhi and Marduk, the incantation of Ningirimma, mistress of incantations, and Gula, mistress of the medical skill; she casts (the spell) and I (the asû- healer) carry (it) out. Incantation spell. +tr.en.(4 40): Invocation for removing the chaff, splinter and anything (else) from the eyes. +61273 tr.en.(4 41-5): Incantation. In the beginning before creation, the shaduf descended (from heaven) to earth, the seeder-plough gave birth to the furrow, the furrow to the sprout, the sprout to the root- stock, the root-stock to the bud, the bud to the head-of-grain, (and) the head-of- grain to the merhu-kernel. The Sun- god was harvesting, the Moon-god was reaping. While the Sun-god was harvesting (and) the Moon-god was reaping, the merhu-kernel entered into the eye of the lad. O Sun-god and Moon-god stand by me, and let the merhu-kernel take off! [Incantation spell.] +tr.en.(4 46): Invocation for removing the merhu from out of the eyes. +tr.en.(4 47): If a man’s eyes are full of murdinnu-brambles: you shall make an infusion from sahlû-plant (and) flour of roasted grain in beer, (and) bandage (his eyes). For three days [you do not loosen (the bandage from)] his eyes. +61277 [Wording of a spell for] dispelling? [headache (caused by) Hand of Ghost from a man’s body]. +61283 [Its ritual: you mix? tarmuš-lupin imḫur-līm-plant, imḫur-ešrā-plant, cypress], pure plant, [tamarisk, emesallu-salt, ašqulālu-plant, sea algae, elikulla-plant, sprout] of nuḫurtu-plant, peel of mekû-plant (and) [nikiptu-spurge together? into? oil?. (Then) you pound together ḫašû-thyme, seed of xxx, šalālu-reed], kibrītu-sulphur, mūṣu-stone, [anzaḫḫu-frit, white ḫuluḫḫu-frit,] black kutpû-frit, zalāqu-stone, iron bead (and) holding šadânu-stone, you stir them into (the mixture), you recite the incantation seven times, and you anoint repeatedly his temples, [his neck] (and) the sockets of his eyes; then he will get well, he will find relief. +61293 [If a man] has been seized [by a ghost?] so that he is constantly affected with headache: silver bead, gold bead, sāmtu-carnelian [xxx] muššāru-sardonyx, SAG.DU-stone, ḫulālu-agate, pappardilû-agate, zalāqu-stone, mūṣu-stone, anzaḫḫu-frit, šubû-stone, dark ṣurru-obsidian, male and female ŠU.U-stone, sangilmud-stone, SAG.KI?-stone, iron bead, ayyartu-coral with seven dots, yānibu-muscle (and) kapāṣu-muscle – you string all? these [stones] on (a twine composed of) the hair of an unmated female kid, gazelle sinew (and) male ašlu-rush, twisted? together. Tarmuš-lupin, imḫur-līm-plant, imḫur-ešrā-plant, ēru-tree, ēdu-plant, aprušu-plant, aktam-plant, elkulla-plant, atā’išu-plant [xx]xxx ḫarmunu-plant, maštakal-plant (and) tamarisk seed – you wrap [all?] these [plants] around each knot (of the twine) in red wool, you recite [the incantation] “It has seized the temple”, and you tie it to his temple. +61301 Ašpû-chalcedony, which shows the moon crescent, muššāru-sardonyx, sangilmud-stone, [bead] of iron fallen from the sky, SAG.DU-stone, SAG.KI-stone, šimbizidû-galena, luludānītu-stone, green šubû-stone, uqnû-lapis, sāmtu-carnelian, red spindle-stone, dark spindle-stone, green spindle-stone, arzallu-stone, red snake stone, turminû-breccia, turminabandû-breccia, GI.RIM.ḪI.LI.BA-stone, bead of mēsu-tree, ox dung, holding šadânu-stone, pappardilû-agate, papparmīnu-agate – you crush all these stones, you pound them (and) you mix them with the (ingredients of) the salves and bandages (used) against headache, (then) you anoint him repeatedly (and) bandage him (with the mixture). You (also) mount all these stones in gold, (and) you tie them to his temple. +61304 Root of baltu-thornbush from the top of a grave, root of ašāgu-acacia from the top of a grave, the left horn of an ox, the right horn of a goat, tamarisk seed, ēru-tree seed, azallû-plant – (these are) seven ingredients of a bandage against Hand of Ghost. You bandage his temples (with them). +61306 You mix burāšu-juniper, kukru-aromatic, sea algae, kibrītu-sulphur, ru’tītu?-sulphur, fat from a sheep’s kidney (and) wax, (and) bandage his temples (with the mixture). +[...] +61309 [he has been seized in the abandoned steppe by the hand of his family ghost who was killed with a weapon. Its ritual x] x x. +61312 [If a man has been seized by the Hand of Ghost so that the Hand of God and Goddess is upon him]: you mix human bone, [green frog, soiled rag, pig faeces, hair] of a black dog, hair of a cat?, [zalāqu-stone, mūṣu-stone (and) naphtha]. You fumigate him over embers (and you also put the mixture) in a leather bag. +61317 [Incantation: “Seven in Heaven (and) Seven on Earth], in the assembly of the Seven, may you, Utu who determines the destinies], clean [what has not been cleaned], what has not been purified. May you not let (this incantation) ever be dispelled, may you not let it ever be unbound. Land by land, may you Enki, king of the Abzu, and Asalluḫi, son of Eridu, not let (this incantation) ever be dispelled. May you be adjured by Heaven; may you be adjured by Earth.” +Wording of a spell for headache. +61327 Its ritual: you twist together red (and) white wool, gazelle sinew (and) male ašlu-rush, you tie on seven and seven knots (and) you wrap ēdu-plant, sea algae, nikiptu-spurge, kibrītu-sulphur, ru’tītu-sulphur, root of male pillû-mandrake, tamarisk seed, stag horn, human skull – (all) these drugs – around each of (these) knots in red wool, (then) you recite the incantation seven times (over the twine), you sprinkle it with cedar blood (and) you tie it to his temple. You parch human skull, you pound it (and) you anoint him with it in oil. You crush together pig faeces, pig jawbone, pig shin, human skull, horned uḫūlu-alkali, stag horn, mint, black cumin (and) saḫlû-cress, you mix them with old beef fat (and) you fumigate him (with the mixture) over embers. You pound together ankinūtu-plant, elikulla-plant, sea algae, nikiptu-spurge, šarmadu-plant seed, kibrītu-sulphur (and) mūṣu-stone, you mix them with oil, you anoint his temples (as well as) the bottom and middle part of his cranium (with the mixture), and then that man will recover. +61329 Incantation: “Seized (by a ghost), the temple gets sick. Seized (by a ghost), the temple gets sick. Seized (by a ghost), the temple is wretched (and) sick, (its) arteries are sick. By the life of Asalluhi, be adjured, be appeased!” Incantation formula. +61331 Its ritual: you take date palm frond which sways without wind, from the north side (of the tree), you twist it seven times to the right, seven times to the left, you tie on seven and seven knots, you recite the incantation (and) you tie it to his temple. +61334 Incantation: “He seized the temple. He seized the straight (part of the) head. He seized the bold? (part of the) head. He seized it, he seized it, Adapa, the wise man of Eridu, seized the temple. He seized the bold? (part of the) head.” Incantation formula. +61336 Its ritual: you twist together red wool, you tie on seven and seven knots, (and) with each of (these) knots you string on a piece of SAG.DU-stone, (then) you recite the incantation seven times (and) [you tie] (the string) to his temple. +61338 Incantation: “ara tu’e ara batu’e tila [tu’u šu] dudumeš šu nene’ameš Eridug’a muntum” Incantation formula. +61340 [Its ritual: you take] date palm frond which sways without wind, from the north side (of the tree), [you tie on] seven and seven knots, you recite the incantation seven times, you tie it to his temple, [and then he will recover?]. +61343 Incantation: “[surruga dibba] ribakti ti’ena [ḫatru] ḫatrumma [kinrešna ḫatri ukkištum sinanna] ku [šabdim lupitum šabdim antasurra” Incantation formula]. +Incantation: “[ara tu’e dipara tu’e : karrab ḫatara ḫatra” Incantation formula]. +Incantation: “[ara? bašera? ara bašera? x x raḫ ...]" Incantation formula]. +61351 [you prepare a ritual arrangement] on the altar, [you fill up a pīḫu-laḫannu-bowl with spiced beer] (and) you set it up there. [(Afterwards) you make that] man [kneel and] say three times: [“May the inside of my head not hurt me! My head is sick!”. Then you envelop imḫur-līm-plant, imḫur-ešrā-plant, ušû-tree seed, sherd xx(x)], human bone, bitumen [from a boat, kibrītu-sulphur, ḫašūtu-plant with seven heads], cedar blood (and) old oil from the sanctuary [of Šamaš in the sinew of a dead cow, you put it around his neck, and then he will recover]. +61354 Incantation: “It (= ghost) seized the temple! [It seized the straight (part of the) head!] It seized the bold? (part of the) head! [O Marduk, it seized the smitten head!] O Asalluḫi, it seized the smitten head! It seized it! [It seized it completely! It seized it completely!” Incantation formula]. +61356 Its ritual: [xx]x dark ṣurru-obsidian, male and female [šubû]-stone x [x ḫulālu-agate] (and) green šubû-stone, (and) [you tie] it to his temple. +61358 Incantation: “May the temple bring his temple back (to health), may the eye bring his eye back (to health), may the middle (of the head) bring his middle (of the head) back (to health). May he be able to shine, may he be able to shine.” [Incantation formula].š +61362 Its ritual: you twist together male ašlu-rush (and) gazelle sinew, you tie on seven and seven knots (and) with each of (these) knots you recite the incantation. You wrap male and female ḫallulāyu-insect (and) ..., which flies over the field, around the knots in red wool (and) you tie (the string) to his temple. +61369 tr.en: +Wording of a spell for headache. +61372 Its ritual: you twist together red (and) white wool, you string zalāqu?-stone, stag horn (and) date stone (on the twine), you tie on seven knots (and) with each knot you recite the incantation, you tie (the string) to his temple, and then he will recover. +61375 Incantation: “O headache, O headache, O headache of mankind, O headache of the gods! The headache is a disease that is to be allevieated. May the headache that has been placed upon mankind be alleviated.” Incantation formula. +61377 Incantation: “It (= ghost) seized the straight (part of the) head, it seized the bold? (part of the) head, (causing headache) which is placed upon the forehead, which is placed upon the head. May [Asalluḫi] alleviate (the headache) with the incantations that have been set. May you be adjured by Heaven; may you be adjured by Earth.” Incantation formula. +Wording of two spells for headache. You recite them over a string of amīlānu-plant. +61380 Incantation: “Seized (by a ghost), the temple gets sick. Seized (by a ghost), the temple is wretched. Seized (by a ghost), the head is sick (and) wretched. By the life of Asalluhi, son of Eridu, be adjured, be appeased!” Incantation formula. +Wording of a spell for headache. +61383 You recite this incantation seven times over the ointment, on an unfavourable day, and you rub it on his temples (as well as) the middle (and) bottom part [of his cranium], and then he will find relief. +Wording of eighteen spells for headache. +61386 Incantation: “The head is angry, the head is angry, the head is furious. O head (Sum.)! O head (Akk.)! The head is angry. May [king] Asaralim heal it, may king Enki [heal it], may king Asalluḫi heal it.” Incantation formula. +[Wording of a spell] for headache. +61389 [Its ritual]: you twist together [xxxxx] (and) white wool, [you tie on] seven and seven [knots (and) with each knot you recite the incantation], you tie (the string) to his head. +61391 tr.en: +Wording of a spell for headache. +61394 [you recite the incantation ara tu’e] (and) you fumigate him with ḫarmunu-mineral. +61399 [If a man’s] left temple [constantly causes him a seizing pain]: on the ninth [day] of the second month, you envelop imḫur-līm-plant, imḫur-ešrā-plant, tarmuš-lupin, elikulla-plant, ḫašūtu-plant with seven heads (and) old oil from the temple of Marduk in the sinew of a dead cow (and) you put it around his neck. (Then) you tie SAG.DU-stone to his temple (and) you recite the incantation inda riti raḫ. +61402 If a man’s right ear is affected, it is full of wind (and) inflamed: on the nineteenth (gloss: ninth) day of the fifth month, you squeeze out the juice of a sweet pomegranate, which is still on its tree, (and) you pour it (with) fine oil into his ear. (Then) you pour ballukku-aromatic oil on his head, (and) he should eat continually hot boiled stew. +61406 [If] a man’s left ear is affected, it is full of wind (and) inflamed: on the fifteenth day of the sixth month, you heat up goose fat (and) while it is still hot, you pour it into his ears. (Then) you heat up goose meat, (and) he should eat it. You pour cedar oil on his head, (and then) he should eat ḫibṣu-preparation in saḫlû-cress. +61409 [If] the right side of a man’s nose is affected: on the first day of the third month, you set up seven pieces of ember with your left big finger (and) you crush copulating geckos from the open country over his nose. (Then) you put the resin of baluḫḫu-aromatic into his left ear. +61413 [If] the left side of a man’s nose is affected: on the eleventh day of the fourth month, you chop up šūmu-garlic (and) you crush tūltu-worm from the inside of a reed over his nose. (Then) you set up seven pieces of ember with your right finger (and) you put the resin of baluḫḫu-aromatic into his ears. +61418 Tested and checked ointments and chain amulets which are suitable for use, from the mouth of the old sages from before the Flood, which Enlil-muballiṭ, a sage of Nippur, has left in Šuruppak, in the second year of Enlil-bāni, king of Isin. A non-expert should show it to an expert, an expert should not show it to a non-expert. Taboo of Marduk. +If a man's head is full of sweet lesions (due to) sunburn. +Third tablet of (the series called) "If a man’s cranium holds heat." +[Palace of Aššur-ban-apli, king] of the universe, king of the land of Aššur,on whom Nabû and Tašmētu have bestowed wisdom. +[He acquired for himself shining eyes, the pinnacle] of scholarship. +61424 If a man suffers from an acute fever (and) a throbbing temple, [before it becomes severe for him: in order to heal him], you take dirt from the doorjambs? of the city? gate?, [. . .] with [oil, you anoint him (with the mixture), and then he will recover]. +61426 If a man DITTO (= suffers from an acute fever and a throbbing temple) (and continues to) have a temperature: in order to heal him, [you continually anoint him] with aprušu-plant in oil. You pound [ankinūtu-plant], you heat it up in beer, you anoint him with it, [you keep a watch on him, and then he will recover]. +61428 If a man DITTO (= suffers from an acute fever and a throbbing temple) (and) he cannot eat bread or beer: in order to heal him, [you anoint him with oil of kukru-aromatic], you pound resin of mountain abukkatu-plant, [you have him drink it] in diluted [beer, (then) you make him throw up using a feather, and then he will recover]. +61430 If a man DITTO (= suffers from an acute fever and a throbbing temple) (and) he is constantly afflicted by cold and chills: [in order to heal him, you anoint him with oil of aprušu-plant, (then) he warms his body] by the oven of an innkeeper [(and) continually drinks kukru-aromatic; then he will recover]. +61432 If a man DITTO (= suffers from an acute fever and a throbbing temple), he (continues to) have a temperature [(and) is constantly afflicted by terror: in order to heal him], you anoint him [with oil of kukru-aromatic (and) oil of burāšu-juniper, (then) you light a fire in front of him (and) if he cries out, you continue the treatment, and then he will recover]. +61434 If a man DITTO (= suffers from an acute fever, a throbbing temple) [(and) any kind of sunburn: you bring aprušu-plant (and) elkulla-plant from the well, you mix kukru-aromatic in oil, you anoint him (with the mixture), and then he will recover]. +61436 Of [the kings who came before me, none were able to comprehend these tasks]. +Prescriptions (organized) from [head to foot, gleanings from extraneous materials], technical lore +[(and) whatever pertains to the] great medical knowledge [of Ninurta and Gula], +[I have written] on tablets, [checked, collated, and] +[deposited them in the middle of my palace] for my reading [and recitation]. +61442 [You crush (and) sieve together] ḫašû-thyme, [atā’išu-plant, aktam-plant, kammantu-plant seed, sea algae], wheat flour, fine beer spice [(and) x x x x. You boil down (the mixture) in beer (and) you put it on as a bandage; then he will recover]. +61444 [You crush (and) sieve together] kukru-aromatic, burāšu-juniper, nikiptu-spurge, [kammantu-plant seed?, sea algae], bitter-plant (and) wheat flour. [You boil down (the mixture) in beer (and) you put it on as a bandage; then he will recover]. +61446 [You crush (and) sieve] together kukru-aromatic, burāšu-juniper (and) nikiptu-spurge, (and then) you knead them in beer [(with) wheat flour (and) fine? beer spice]. You heat up (the mixture), [you shave] his head, [(and) you put it on as a bandage; then he will recover]. +61448 You crush (and) sieve together kukru-aromatic, burāšu-juniper, nikiptu-spurge, kammantu-plant [seed, sea algae (and) ballukku-aromatic]. You boil down (the mixture) in beer, [you shave] his head, [(and) you put it on as a bandage; then he will recover]. +You take a date palm leaf which sways without wind, you dry it in the open air, [you crush it, you sieve it, (and) you knead it in the sap of kasû-tamarind; (then) you put it on as a bandage]. +61452 You pound aprušu-plant, you mix it with oil, (and) [you put] abukkatu-tree resin [into (the mixture)]. You recite the incantation “ara šera ara bašera, burning fire, [numunki ibgar”] seven and seven times over it, (and) [you bandage] his temple. +61454 You fumigate him with atā’išu-plant (and) nikiptu-spurge over embers. You pound together kukru-aromatic, nikiptu-spurge, [burāšu-juniper], kammantu-plant seed, sea algae (and) bitter-plant, [you heat (the mixture)] over fire, [(and) you put it on as a bandage]. +61456 You pound [together] mūṣu-stone, nikiptu-spurge, sea algae (and) ru’tītu-sulphur. You wrap them in red wool, you anoint (the pouch) with oil, (and) you tie it [to his temple]. +[...] nikiptu?-spurge [...] (and) you rub it [on his temple]. +[...] you mix it in kidney fat, (and) you rub it on his temple. +61460 You boil down ten shekels of saḫlû-cress (and) ten shekels of parched grain in the sap of kasû-tamarind; (then) you put it on as a bandage. You boil down ten shekels of saḫlû-cress, ten shekels of gypsum (and) ten shekels of parched grain flour in the sap of kasû-tamarind; then you put it on as a bandage. +61463 If a man has a temple causing him seizing pain: you take dirt from the bottom of a gate door that stands on your left when you go out, you bind it (with) the hair of an unmated female kid [in] red wool, (and) you tie it to his temple; then that man will recover. +61465 If a man has a temple causing him seizing pain: you take date palm leaf which sways, you [dry], crush (and) sieve it, (and then) you knead it in beer. You bandage his temple; then that man will recover. +61467 tr.en If a man has a temple causing him seizing pain: you take swaying date palm leaf, (and) you tie it to his temple; then that man will recover. +61469 If a man has a temple causing him seizing pain: you take swaying baltu-thornbush, you wrap it in a wad of wool, you bind (the wad) in red wool, (and) you tie it to his temple; (then) that man will recover. +61471 If a man has a temple causing him seizing pain: you plait together (a strand of) red wool spun by a post-menopausal woman, gazelle sinew (and) male ašlu-rush with red wool. You attach ḫulālu-agate, muššāru-sardonyx, pappardilû-agate (and) dark ṣurru-obsidian to it, (and) you tie it to his temple; (then) that man will recover. +61473 If a man has a temple causing him seizing pain: you twist together snake jaw, scorpion sting, red wool, male ašlu-rush (and) gazelle sinew. You wrap it in a wad of wool, (and) you tie it to his temple; then that man will recover. +61475 If a man has a temple causing him seizing pain: you wrap soiled rag in a strip of raw wool, (and) you tie it to his temple; then that man will recover. +61477 If a man is affected with throbbing of the temple, and he is (also) affected with rimûtu-paralysis: you dry, crush (and) sieve šūšu-liquorice leaf. You pound together šeguššu-barley flour, ground saḫlû-cress (and) parched grain flour. You boil down (the whole mixture) in the sap of kasû-tamarind, (and) you put it on continuously as a bandage; then he will recover. +61479 [If] a man is affected with throbbing of the temple, and he is (also) affected with rimûtu-paralysis: you dry, crush (and) sieve leaf of šunû-chaste tree, you boil it down [with] wheat [flour], saḫlû-cress (and) xxx in vinegar, (and) you bandage him +61481 You [dry], crush (and) sieve [fox-vine (and) supālu-juniper]. You boil down bitter-plant [with parched grain flour in the sap of kasû-tamarind], (and) you put it on as a bandage. +61483 [If a man is affected with throbbing of the temple, and he is (also) affected with šimmatu-paralysis: you dry (and) pound ēru-tree leaf, you boil it down (with)] wheat flour, saḫlû-cress [(and) ḫašû-thyme in brewer’s beer, (and) you bandage him continuously]; then he will recover. +61486 [You pound together leaf of ‘kid’s ear’ plant, nikiptu-spurge, sea algae, ḫašû-thyme, atā’išu-plant, wheat? flour?, reed leaf, leaf of šalālu-reed], reed [sprout], sprout of šalālu-reed, [bud of baltu-thornbush, bud of ašāgu-acacia, lion fat (and) sap of an ašāgu-acacia] which stands on top of a grave]; (then) you anoint (the mixture) [on with oil]. +[You pound in a mortar qudru-plant seed (and) fine beer spice], you boil them down [in brewer’s beer], (and) you put (the mixture) on as a bandage. +[If a man is affected with throbbing of the temple, and his hands (and) feet are paralysed: you crush (and) sieve together ḫaluppu-tree leaf, suādu-aromatic], šumuttu?-beetroot, [šeguššu-barley] flour?, [malt flour, ḫašû-thyme (and) fox-vine. You boil down (the mixture) in beer dregs, (and) you put it on as a bandage; then he will recover]. +61491 If [both of a] man’s [temples cause him seizing pain and both his eyes contain tear: you boil down saḫlû-cress, ḫašû-thyme, kasû-tamarind], parched grain flour [(and) malt porridge together in a diqāru-pot, in the sap of kasû-tamarind. You bind his temples; then he will recover]. +61493 If a man’s [right temple causes him seizing pain and his right eye contains blood: you crush (and) sieve together saḫlû-cress, ḫašû-thyme, gypsum], dadānu-plant, [parched grain flour (and) malt porridge. You boil down (the mixture) in vinegar, DITTO]. +61495 If a man’s left temple [causes him seizing pain and his left eye contains blood: you crush (and) sieve together lardu-plant], šumuttu-beetroot [(and) ballukku-aromatic. You boil down (the mixture) in [milk (and) vinegar, DITTO]. +61497 If both of a man’s temples [cause him seizing pain and both his eyes contain blood: you crush (and) sieve kukru-aromatic, burāšu-juniper, parched grain flour] (and) dried sesame husk. [You mix it with coarse flour, you knead (the mixture) in beer, (and)] you put it on as a bandage]. +61499 If a man’s right temporal artery [throbs and his right eye ...] šurdunû-plant, wheat flour, [baluḫḫu-aromatic ...]. +61501 If a man’s left temporal artery [throbs and his left eye ...] šurdunû-plant [...] +61503 If a man’s right temporal artery [throbs and his right eye contains tear: you boil down roasted saḫlû-cress, ḫašû-thyme, kasû-tamarind], ‘dog’s tongue’ plant [in the sap of kasû-tamarind. You sprinkle parched grain flour on (the mixture), you shave his head, (and) you put it on as a bandage; then he will recover]. +If a man’s [left] temporal artery [throbs and his left eye contains tear: bandage, DITTO]. +61506 If a man’s [right and left temporal artery throb and both his eyes contain tear: you boil down roasted] saḫlû-cress [either in beer or in goat milk. You shave his head, (and) you put it on as a bandage; then he will recover]. +61508 If a man x [...] you put it on as a bandage and? [...] +If a ma[n ...] +If [a man ...] +61514 Alternatively, [...] red date [...]. +61517 If a man’s temporal arteries throb? [...] šakirû-henbane, ‘dog’s tongue’ plant [...] white plant, lurpânu-mineral (gloss: gypsum, sû-stone) asḫar?-stone [...]. +Alternatively, [...] the powder of ašgigû-turquoise [...]. +61520 Alternatively, [...] tamarisk leaf while green [...] you [...] into an išqillatu-shell [...]. +61525 If, while being seized by a ghost, a man’s temple [...] the muscles of his eyes cause him a stinging pain [...] mūṣu-stone [...] iron bead [... these drugs ... you recite] the incantation "The hero Asalluḫi" [seven? times ...]. +61527 [If] a man has a temple causing him seizing pain [and his eyes ...] you pound? together? [... in beer? ...]. +61531 [If a man has a temple causing him seizing pain, and he constantly has vertigo, (so when) he gets up from the bed, he falls down (instantly): Hand of Ghost. He should drink continually] imḫur-līm-plant (and) tarmuš-lupin [in sweet beer]. Then, you twist together [xxx] white wool (and) male ašlu-rush, [you recite] the incantation [xxxxxxx (and) you bind him (with the string). (Afterwards) you repeatedly smear] human semen on his temple, you pound together [mūṣu-stone] (and) nikiptu-spurge, you mix them with cedar oil, (and) you anoint him repeatedly (with the mixture); [then he will recover]. +61533 If a man has a headache, and the tendons of his neck hurt him constantly: Hand of Ghost. You crush (and) sieve sīḫu-wormwood, [argānu-conifer], barīrātu-sagapenum (and) šalālu-reed, [you boil them down] in the sap of kasû-tamarind, [(and) you bandage him (with the mixture)]. +If a man has a headache, and it hurts him from sunset until the morning watch: [it will be prolonged, he will die]. +If a man has a headache, and he constantly cries out “my belly, my belly!”: Hand of Ghost, deputy [of Ištar, he will die]. +If a man has a headache, and he vomits a lot (and) cannot rise from bed: [he will die]. +61538 If a man has a headache, and [he constantly cries out] a lot, his temporal arteries throb greatly [xxxxx he will die]. +These [are xxxx for headache, it is complete? including (those for) the tendons? of the neck?]. +61561 If a man’s epigastrium hurts him (and) he vomits up bile whenever he belches, that man suffers from ‘internal disease’, he is unable to accept šūmu-garlic, karašu-leek, beef, pork (or) brewer’s beer: in order to treat him, you crush (and) sieve together half a litre of saḫlû-cress, half a litre of burāšu-juniper, half a litre of kukru-aromatic, half a litre of flax seed, half a litre of malt porridge, half a litre of suādu-aromatic, half a litre of qutratu-plant seed, half a litre of kasû-tamarind, half a litre of šunû-tree, half a litre of kiššanu-plant, half a litre of pappasītu-mineral, half a litre of ašû-disease plant, half a litre of nīnû-mint, half a litre of pigeon droppings, a third of a litre of kammantu-plant seed, a third of a litre of the 'request of the field' plant, ten measures of the resin of baluḫḫu-aromatic, ten measures of sea algae, one litre of wheat flour, one litre of dates, one litre of fine beer spice (and) one litre of coarse flour, you boil them down to a paste in beer, you \t\t\tsmear (the mixture) on a piece of fabric, you bandage him with it for one-third of nine days, on the fourth day you remove (the bandage) and you examine him. If the boil is white, his belly will calm down. If the boil is red, his belly will retain heat. If the boil is green-yellow, acute fever keeps coming back to him. If the boil is black, it will make him sick and he will not recover. In order to soothe the boil, you crush (and) sieve ‘field lump’ plant (and) mud that has been reached by sunlight, you knead them in kasû-tamarind juice (and) you bandage him (with the mixture). Afterwards, he drinks saḫlû-cress in beer (and) while he drinks it, he continually bathes in šunû-tree juice, tamarisk, aktam-plant (and) maštakal-plant. +If a man suffers from bile: you pound šūmu-garlic, (and) he drinks it in water on an empty stomach. +He drinks strong vinegar, garum (and) thick kasû-tamarind. +He drinks diluted beer, (and) you make him vomit. +You pound kasû-tamarind, (and) he drinks it in water. You pound salt, (and) he drinks it in water on an empty stomach. You pound salt (and) he drinks it in beer on an empty stomach. +You crush abukkatu-tree resin, you put it in diluted beer, you leave (the mixture) out overnight under the stars, in the morning you put honey (and) pressed oil in it, he drinks it, and then he will vomit. +You pound kūru-plant seed, (and) he drinks it in beer. You pound namruqqu-plant, (and) he drinks it in beer. +61574 Drug: ēdu-plant, a drug for bile, for drinking in beer. Drug: mergirānu-plant, a drug for bile, for drinking in beer. (Drug:) kasû-tamarind, a drug for bile, for drinking in beer. Drug: burāšu-juniper, a drug for bile, for drinking in beer. Drug: nuḫurtu-plant, a drug for bile, for drinking in beer. Drug: bark of šūšu-liquorice, a drug for bile, for drinking in beer. (Drug:) allānu-oak leaf, a drug for bile, for drinking in beer. Drug: bat guano, a drug for bile, for drinking in beer. Drug: lumps of salt, a drug for bile, for drinking in beer. Drug: šūmu-garlic, a drug for bile, for drinking in beer. Drug: root of male pillû-mandrake, a drug for bile, for pounding (and) drinking in beer. Drug: root of šūšu-liquorice, a drug for bile, for drinking in oil and beer. Drug: ṣibaru-aloe, a drug for bile, for pounding (and) drinking in water. +61580 If a man with an empty stomach continually heaves to vomit, he regularly \tspits up a lot of saliva, fluid continuously flows from his mouth, he constantly has vertigo, his internal organs are swollen, his waist (and) his shins keep bothering him, he is hot (and) cold, he is constantly sweating, he has a diminished appetite for bread and beer, he drinks a lot of cold water (and) he vomits, he discharges yellow stuff through his anus (and) his penis, his appearance constantly changes, his flesh is flabby (lit. poured out) (and) whatever he eats does him no good, that man is ‘overwhelmed by bile’: in order to treat him, kukru-aromatic, burāšu-juniper (and) ṣumlalû-aromatic — you take these three drugs while green, you dry (and) pound them, you have him drink them in strong wine on an empty stomach, he will void, and then you bandage his epigastrium (and) his belly. He eats warm (food), he drinks warm (drinks), [you purge him] on the third day, [and then he will recover]. +Alternatively, you pound arariānu-plant, you have him drink it in beer on an empty stomach [. . .]. +Alternatively, you pound saḫlânu-plant, you have him drink it in strong wine on an empty stomach, [DITTO]. +Alternatively, you pound ṣibaru-aloe, you have him drink it in sweet milk, [DITTO]. +Alternatively, you pound sprout of errû-colocynth, you have him drink it in wine, honey and pressed oil, DITTO. +Alternatively, you have him drink ‘late plant’ from the mountains in wine, honey and pressed oil, DITTO. +61589 If a man eats bread, drinks beer, and then he becomes blocked up and has vertigo, that man suffers from ‘sickness of bile’: in order to treat him, you wash roasted errû-colocynth from the north side in water, you split up baluḫḫu-aromatic, (and) you select some nuḫurtu-plant, (then) you soak these three drugs in high-quality beer in proportion to equal amounts, you place them under the Goat star, you encircle them with a drawing, in the morning you filter those (drugs), he drinks them on an empty stomach, and when it (= the medicine) \taffects him, he will get even worse, but you should not worry, he will recover. You should have him drink it on a favourable day. +61592 [. . .] . . . [. . .] . . . [. . .] urnû-mint, ballukku-aromatic, atāʾišu-plant, fox-vine, [. . .], you heat them up in three litres of beer in a tangussu-vessel, until it turns into two litres, it will thicken, you put [. . .] on the surface, he rubs sap of kasû-tamarind on \t(his) face, (and) afterwards you pour this (mixture) into his anus. +Alternatively, you dry, crush (and) sieve errû-colocynth, you mix it with coarse flour, you boil (the mixture) down in sap of kasû-tamarind, you smear it on a piece of leather, (and) you bandage him with it. +61596 If a man’s head keeps pulling him forward when he gets up, his neck, his \thips, his shins (and) his feet hurt him, his belly is nauseated, his belly continually heaves to vomit (and) he has vertigo, that man has been seized by bile: in order to treat him, you boil down cedar, cypress, myrtle, sweet reed, horned uḫūlu-alkali, suādu-aromatic (and) emesallu-salt in beer, you heat (the mixture) in an oven, (and) you pour it into his anus. +You grind up nuḫurtu-plant, burāšu-juniper) (and) date stone together in a mortar, you mix them in fat, you make a suppository, you sprinkle it with oil (and) you place it into his anus. +61600 If a man’s chest and heel are constantly warm, his teeth exude (blood), (and) his speech is impeded, that man suffers from bile: in order to treat him, kukru-aromatic, burāšu-juniper, ṣumlalû-aromatic, salt, abukkatu-tree resin, urânu-fennel, white plant, būšānu-plant, aktam-plant, ḫûratu-madder, atāʾišu-plant (and) bat guano — he drinks these twelve drugs together on an empty stomach in beer, and then he will vomit. +61602 He drinks saḫlû-cress, nīnû-mint, kammu-fungus, abukkatu-tree resin, baluḫḫu-aromatic, burāšu-juniper, kukru-aromatic, baluḫḫu-aromatic resin, nuḫurtu-plant [seed?], nuḫurtu-plant flour (and) urnû-mint, freshly taken, in beer, and then he will vomit. +61604 [. . .] atāʾišu-plant, nuḫurtu-plant, ḫašû-thyme, bitter-plant, abukkatu-tree resin from the mountains, ru’tītu-sulphur, [. . .], 'life plant', cumin, [. . .], nīnû-mint, saḫlû-cress (and) kasû-tamarind — these [seventeen? drugs DITTO (= he drinks them in beer, and then he will vomit)]. +He drinks abukkatu-tree [resin], white plant, bat guano, aktam-plant, [. . .], baluḫḫu-aromatic (and) . . . [in beer], and then he will vomit. +He drinks atā'išu-plant, abukkatu-tree resin, white plant [. . .], and then he will vomit. +You heat up sweet [reed], ballukku-aromatic, kasû-tamarind, white plant [. . .] over fire, he drinks them, and then he will vomit. +61609 urnû-mint, šumuttu-beetroot, šibburatu?-rue [. . .] nīnû-mint, suādu-aromatic, sweet reed, andaḫšu-lily [. . .] — he drinks these [drugs] in beer, and then he will vomit. +61611 [sweet reed], leaves from [. . .] baluḫḫu-aromatic, ‘life plant’, date, [. . .] - you leave them out overnight under the stars, in the morning he drinks them on an empty stomach, and then he will vomit. +[. . .] (and) abukkatu-tree resin — he drinks these seven drugs in beer, and then he will vomit. +61614 [. . . white plant . . .] . . . atā'išu-plant [kukru-aromatic], horned uḫūlu-alkali, salt, imḫur-līm-plant, imḫur-ešrā-plant, tarmuš-lupin, [nīnû-mint, alum, aktam-plant)] (and) ḫašû-thyme — you pound together these fourteen drugs, he drinks them in beer, and then he will vomit. +61617 [. . . ten shekels of] saḫlānu-plant, ten shekels of garum, \tten shekels of strong vinegar, ten shekels of beer, ten shekels of utḫiru-plant, [. . . ten? shekels of] ḫašû-thyme, one shekel of šūmu-garlic, half a shekel of salt (and) [half a shekel] of kasû-tamarind — you mix them together, you leave them \tout overnight under the stars, in the morning [. . .], he will void from his mouth and from his anus, and then he will recover. He drinks [. . .] (and) broth from fatty meat, and then he will improve. +61620 [If a man has been seized by either bile or] aḫḫāzu-jaundice or amurriqānu-jaundice: you heat up urnû-mint, atāʾišu-plant, fox-vine, burāšu-juniper (and) ballukku-aromatic in three litres of beer in a tangussu-vessel, you filter it, [you put] oil on the surface, [you pour juice from kasû-tamarind over (the mixture), he drinks it with . . ., he will void from his anus, and then he will recover]. +61624 patrānu-plant, murgabriānu-plant, arīḫu-plant, [. . .], ṣaṣuntu-plant, sisinni libbi-plant, [. . .], errû-colocynth (gloss: [. . .] plant), būšānu-plant, tarmuš-lupin, nuḫurtu-plant, [. . .], sprout of ‘dog’s tongue’ plant (gloss: sprout of burāšu-juniper), sprout of ṣumlalû-aromatic, saḫlû-cress [. . .]. +You pound sprout of errû-colocynth (and) saḫlânu-plant, [. . .] in wine [. . .]. +61627 If a man suffers from bile, qidḫu-disease (and) lubāṭu-disease: in order to treat him, [. . .], tarmuš-lupin, imḫur-līm-plant, baluḫḫu-aromatic, nīnû-mint, resin of [. . .]. +61629 If a man suffers from ašû-disease, pāšittu-disease and lubāṭu-disease: [. . .], nīnû-mint (and) old copper — [. . .] these seven drugs together, [. . .]. +61631 If a man has been seized by bile: [. . .] nīnû-mint separately on an empty stomach, he drinks it in beer, and then he drinks thin beer [. . .]. +In order to remove ašû-disease, pāšittu-disease and lubāṭu-disease: [you mix together] white plant, abukkatu-tree resin, [aktam-plant (and) kammu-fungus, he drinks them in beer, and then he will recover]. +61634 If a man has been seized by pāšittu-disease: kukru-aromatic, ḫašû-thyme, atāʾišu-plant, nīnû-mint, [. . .], abukkatu-tree resin, nuḫurtu-plant, kammu-fungus from a leatherworker, ‘field lump’ plant [. . .], and then he will vomit. +ḫašû-thyme, nuḫurtu-plant, abukkatu-tree resin, burāšu-juniper (and) kukru-aromatic — [. . .] five drugs [. . .], (and) you anoint? him. +aktam-plant, atāʾišu-plant, horned uḫūlu-alkali, kukru-aromatic, burāšu-juniper, abukkatu-tree resin, salt (and) . . . — he drinks the eight drugs, (and) he will void easily. +61638 If a man has a headache (and) suffers from ašû-disease, pāšittu-disease and lubāṭu-disease: in order to treat him, you crush (and) sieve together fifteen shekels of kukru-aromatic, fifteen shekels of urnû-mint (and) fifteen shekels of atāʾišu-plant, you heat them up in oil \t(and) prime-quality beer, you pour (the mixture) into his anus, (and) you have him drink it until he can drink no more. +61641 If a man’s epigastrium causes him a gnawing pain on an empty stomach, he constantly has heat in (his) belly, (and) he vomits up bile whenever he belches, that man suffers from pāšittu-disease (and) tuganû-disease: in order to treat him, you soak kukru-aromatic, burāšu-juniper, abukkatu-tree resin, aktam-plant, \tatāʾišu-plant, salt (and) horned uḫūlu-alkali, freshly taken, in prime-quality beer, you leave (the mixture) out overnight under the stars, in the morning you filter it on an empty stomach, he drinks it, and you make him vomit, and then he will recover. +If a man suffers from bile [. . .]. +61646 Incantation: “The bile of a young man, the bile of a young man, . . . [. . .] the loins of a young man are the binder, that of the Lilith . . . [. . .] . . . vulva [of a pig . . .] . . . deserted . . . [. . .]. +[An invocation? for . . .]. +61657 [Incantation: “It is bile that splits the ground like] greenery. [It is the nanny goat that raises its head, it is speckled with white like the nanny goat’s kid. Like a water-snake, it flicks its] tongue, [it spits bile like the snake from scorched earth. O Bile!] You who bring yourself into existence, [be crushed like a pot], be extinguished like a fire! [Extinguish yourself like fire in the rushes!] The incantation spoken by Ningirima, [the spell of Eridu, may] Enki [release it (= the bile) at the] portico [of (his) cella!] You should take a lump of salt, [you should cast the spell] of Eridu [on it], you should put it in his mouth, [(and then the bile) can come out like flatulence], it can come out of his anus like wind, it can come up like a belch.” +61663 Incantation: “O Bile! O Bile! Bile is the pāšittu-disease. Bile constantly travels the pathways? like a yellow heron. It constantly perches on the reed fence on top of the wall. It looks at the one who is eating bread. It looks at the one who is drinking \tbeer: ‘When you all eat bread, when you all drink beer, I will attack you, and then you will belch like an ox’.” Incantation formula. +61668 Incantation: “The nanny goat is yellow, her offspring is yellow, her shepherd is yellow, her overseer is yellow, on a yellow canal-bank, it eats yellow grass, it drinks yellow water from a yellow canal: (whenever) one throws crooks at it, it does not turn its face, (whenever) one throws clods at it, it does not raise its head, (but whenever) one throws pillû-mandrake, ḫašû-thyme and salt at it, the bile rises until it dissolves like a fog. The incantation is not mine, it is the incantation of Ea and Asalluḫi, it is the \tincantation of Damu and Gula.” Incantation formula. +61670 An invocation for pāšittu-disease. Its ritual: you stir together [. . . kasû?-tamarind] (and) beer bread, you recite the incantation [. . .] . . ., (and then) he will recover. +61672 Incantation: “. . . [. . .] . . . [. . .] Ea [. . .] let him release.” Incantation. +61674 [Its ritual: . . .] you put [. . .] and salt from nuḫurtu?-plant [. . .] you recite the incantation over it [. . .] he drinks it on an empty stomach, and then he will improve. +An invocation for bile. +You pound a fourth of a shekel of abukkatu-tree resin, (and) you have him drink it in water. +You pound fourteen fronds of kūru-plant, (and) you have him drink it in five shekels of oil and beer. +You have him drink twenty-one (pieces of) nabruqqu-plant in ten shekels of oil and beer. +You have him drink fifteen grains of imḫur-līm-plant in half a liter of oil and beer. +You have him drink a fourth of a shekel of sissinni libbi-plant in ten shekels of water. +You have him drink a fourth of a shekel of sweet plant in ten shekels of water. +You have him drink a fourth of a shekel of ‘life plant' in ten shekels of oil. +You have him drink half a shekel of arariānu-plant in ten shekels of water. +You have him drink a fourth of a shekel of imḫur-ešrā-plant in ten shekels of water. +[You have him drink] a fourth of a shekel of mergirānu-plant in ten shekels of beer. +If a man has been seized by bile: you pound kasû-tamarind, he drinks it in beer, and then he will vomit. Alternatively, he drinks diluted beer (and) beer, and then he \twill vomit. +Alternatively, he drinks diluted beer (and) strong vinegar, and then he will vomit. Alternatively, you pound burāšu-juniper, he drinks it in beer, and then he will vomit. +Alternatively, you pound mergirānu-plant, he drinks it in water, and then he will vomit. Alternatively, you pound imḫur-līm-plant, he drinks it in beer, and then he will vomit. +Alternatively, he drinks salt in either water or beer, and then he will vomit. Alternatively, you pound šūmu-garlic, he drinks it in water, and then he will vomit. +61691 Alternatively, you pound abukkatu-tree resin, he drinks it in water, and then he will vomit. Alternatively, you pound abukkatu-tree resin, you soak it in water, you leave it out overnight under the stars, he drinks it, and then he will vomit. +61693 Alternatively, you leave errû-colocynth, baluḫḫu-aromatic (and) ḫašû-thyme in oil out overnight under the stars, he drinks them, and then he will vomit. Alternatively, you pound nuḫurtu-plant (and) šūmu-garlic separately, he drinks them in beer, and then he will vomit. +61695 If a man suffers from amurriqānu-jaundice, and then his illness goes up into his eyes (and) yellow strings cover the inside of his eyes, his internal organs heave, (and) he regurgitates bread and beer, that \tman suffers from every kind of wind, it will linger for a little while, and then he will die. +If a man suffers from amurriqānu-jaundice, and then (his \tillness) seizes his head, his face, his entire body (and) the root of his tongue, his affliction will last a long time, and then he will die. +If a man’s body is yellow, his face is yellow, (and) he has ‘wasting away of the flesh’, its name is amurriqānu-jaundice. +61714 You pound burāšu-juniper, (and) he drinks it in beer. You pound juniper seed, (and) he drinks it in beer. You pound bitter plant, (and) he drinks it in beer. You pound root from male pillû-mandrake from the north side that does not bear any fruit, (and) he drinks it in beer. You pound murrānu-plant from the mountains, (and) he drinks it in beer. You pound kurkanû-plant, (and) he drinks it in beer. You pound imḫur-līm-plant, (and) he drinks it in beer. You pound namruqqu-plant, (and) he drinks it in beer. You pound namruqqu-plant, (and) he drinks it in water. You pound alum, you put it in water, you keep pounding it (until it dissolves), (and) he drinks it. You pound burāšu-juniper, (and) he drinks it in milk. You pound juniper seed, (and) he drinks it in milk. You pound bitter plant, (and) he drinks it in milk. You pound namruqqu-plant, (and) he drinks it in milk. You put five grains of powder from anzaḫḫu-frit in beer, you leave it out \tovernight under the stars, you keep pounding it (until it dissolves), (and) he drinks it. You pound kalû-paste, (and) he drinks it in cedar oil and beer. You pound tamarisk seed (and) šumuttu-beetroot, (and) he drinks them in beer. You pound tamarisk seed, (and) he drinks it in beer. You pound tamarisk seed, (and) he drinks it in oil and beer. You pound root from šūšu-liquorice, DITTO (= he drinks it in water and beer). You pound imḫur-ešrā-plant, (and) he drinks it in beer. You heat root of ēru-tree (and) root of pomegranate in an oven, you keep pounding their liquids, you let them cool, he drinks them, and then he will improve. You fumigate him with aṣuṣumtu-plant (and) anunūtu-plant using a censer. You collect the blood of a weasel that was standing on ašlu-rush, (and) you continually anoint him with it in oil. You take grease from both of the doorjambs of the city gate, you continually anoint him with it in oil, (and then) he comes out (and) goes straight on an abandoned pathway, he marches along an abandoned causeway. You pound red ‘shepherd’s staff’ plant, (and) he drinks it in beer. You pound kukru-aromatic, (and) he drinks it in beer. You pound fruit of kazīru-plant, (and) he drinks it in beer. You pound ḫašû-thyme, (and) he drinks it in beer. You pound flesh of pomegranate, (and) he drinks it in beer. . . . [. . .]. You pound root of ‘dog’s tongue’ plant, (and) he drinks it in beer. [You pound] a sixth of a shekel [of imḫur-līm-plant, (and) he drinks it in beer]. You pound imḫur-ešrā-plant (and) qutru-plant, (and) he drinks it in oil and beer. [. . .] pomegranate leaf [. . .]. +61716 If a man is full of amurriqānu-jaundice: [. . .] root of šūšu-liquorice . . . [. . .] you leave it out overnight under the stars, (and) he drinks it. [. . .] ḫumbabītu-lizard [. . .]. +61718 [. . .] root of pomegranate from the north side [. . .] if [. . .] in [. . .]. +[. . .] peel of pomegranate [. . .]. +[. . .] saḫlû-cress [. . .]. +. . . [. . .]. +61723 If a man is full of amurriqānu-jaundice [. . .] you take away [. . .] pulp from errû-colocynth [. . .]. +a gecko [. . .]. +. . . [. . .]. +61727 [Alternatively], you pound [. . .] in the fatty tissue of errû-colocynth, (and) he drinks it [in] beer. Alternatively, he should continually eat fatty beef, (but) he should not accept (any) flour. +[Alternatively], he drinks human [faeces?] (and) bitter-plant in oil and beer. Alternatively, you dry (and) pound ‘mother of the water’ insect, he drinks it in oil and brewer’s beer, and then he will vomit. +Alternatively, he drinks aktam-plant, abukkatu-tree resin (and) white plant in oil and beer. Alternatively, he drinks the fatty tissue of errû-colocynth in beer. +Alternatively, you pound bitter-plant, burāšu-juniper seed (and) alum, (and) he drinks them in oil and beer. Alternatively, you put a red-gold ring on his hand. +If a man’s eyes are jaundiced: you pound pomegranate leaf, (and) you blow it through a reed straw into his eyes. +61733 If a man’s eyes are jaundiced, his face (and) his flesh are also full of it (= amurriqānu-jaundice): you take seven copulating geckos [. . .] you skin them, you pound them in a mortar, you mix them in spiced beer, he continually eats (the mixture), and then he will improve. +[. . .] . . . (and) parched saḫlû-cress - you bandage him with them, then you mix them in spiced beer, (and) he continually eats (the mixture), and then he will improve. +[. . .] . . . he drinks it in oil and beer, and then he will improve. +[. . .] . . . membrane [. . .] (and) you have him drink it in beer. +[. . .] . . . you skin it . . . [. . .] (and) you have him drink it [. . .]. +61739 [If a man’s eyes] are full of amurriqānu-jaundice: you pound ‘field lump’ plant, (and) he drinks it in beer. You [pound] alluḫaru-mineral, (and he drinks it) in beer. You pound [. . .], (and he drinks it) in beer. You pound ostrich egg shell, (and he \tdrinks it) in beer. You tie gold in red wool on both of his hands. +Alternatively, you crush [. . .], šakirû-henbane, red plant (and) ašqulālu-plant, you press out their juices, he drinks them in beer, and then he will improve. +Alternatively, you pound kasû-tamarind, bat \tguano (and) white plant in ghee, you continually daub his eyes with it, and then the membrane can be removed. +If a man’s body is yellow: you pound five grains of anzaḫḫu-frit, (and) you have him drink it in oil and beer. You use too \tmuch, he will die. +61751 If a man’s eyes are full of amurriqānu-jaundice: you pound būšānu-plant, he drinks it in beer, and then he will improve. Alternatively, you dry (and) pound root of šūšu-liquorice, you steep it in beer, he drinks it facing the sun, and then he will improve. Alternatively, you dry (and) pound root of ‘dog’s tongue’ plant, you steep it in beer, he drinks it, and then he will improve. Alternatively, you pound alluḫaru-mineral, he drinks it in beer, and then he will improve. Alternatively, you pound ostrich egg shell, he drinks it in beer, and then he will improve. Alternatively, you pound root of pomegranate, you leave it out \tovernight under the stars in beer, (and) you have him drink it in the morning. Alternatively, you pound kūru-plant seed, you leave it out overnight under the stars in beer, (and) you have him drink it in the \tmorning. Alternatively, you pound fox-vine’, (and) you have him drink it in beer. AIternatively, you pound nuḫurtu-plant, (and) you have him drink it in beer. Alternatively, you pound root of pillû-mandrake, (and) you have him drink it in beer. Alternatively, you pound abukkatu-tree resin, (and) you have him drink it in beer. Alternatively, you pound ‘big male gecko’ plant, (and) you have him drink it in [beer] and oil. +61753 If a man’s body is yellow, his face is yellow and black (and) the root of his tongue is black, its name is aḫḫāzu-jaundice: you pound a big female gecko from the steppe, he drinks it in beer, (and then) the aḫḫāzu-jaundice in his belly will come straight out. +61755 If a man is full of aḫḫāzu-jaundice: you pound burāšu-juniper, (and) he drinks it in beer. You pound white juniper seed (and) alum, he drinks it in oil and beer and then he will improve. You pound kukru-aromatic, (and) he drinks it in beer. You pound ḫašû-thyme, (and) he drinks it in beer. You pound root of kūru-plant, (and) he drinks it in water. You pound bitter plant, (and) he drinks it in milk. +If a man is full of aḫḫāzu-jaundice: you pound root of šūšu-liquorice, you soak it in beer, you leave it out overnight under the stars, (and) he drinks it. +61758 If a man is full of aḫḫāzu-jaundice: you fumigate him with aṣuṣimtu-plant (and) anunūtu-plant using a censer, and you anoint him with the blood of an anduḫallatu-lizard, and then he will improve. +61760 You take dirt from both of the doorjambs of the city gate, you put it in oil, you continually anoint him with it, (and then) he comes out (and) goes straight on an abandoned pathway, [. . .] an abandoned causeway. +61762 If a man is seized by aḫḫāzu-jaundice: you take root of male pillû-mandrake from the north side, (and) he drinks it in beer. [. . .] ḫašû-thyme [. . .]. You pound kurkānû-plant, (and he drinks) it in beer. You pound white juniper seed, (and) he drinks it in beer. (He drinks) \timḫur-līm-plant (and) imḫur-ešrā-plant in beer. [. . .] root of [. . .] +If a man DITTO (= is seized by aḫḫāzu-jaundice) (and) amurriqānu- \tjaundice: you pound burāšu-juniper (and) bitter plant, (and) [he drinks it] in beer on an empty stomach. +If a man DITTO (= is seized by aḫḫāzu-jaundice and amurriqānu-jaundice): you steep (tarassan) alum (and) black qitmu-paste together in beer, you purify it, (and then) [. . .]. +If a man DITTO (= is seized by aḫḫāzu-jaundice and amurriqānu-jaundice): you pound fifteen grains of anzaḫḫu-frit, you steep \t(tarassan) it in beer, you purify it, you put pressed oil in it, (and) [he drinks] it on an empty stomach. +61767 If a man DITTO (= is seized by aḫḫāzu-jaundice and amurriqānu-jaundice): you pound kalû-paste, (and) he drinks it in oil and beer. He drinks tamarisk seed in beer. [You pound] tamarisk seed, (and) [he drinks it in beer]. You pound tamarisk seed, (and) he drinks it in oil and beer. He drinks root of šūšu-liquorice in oil and beer. You pound imḫur-ešrā-plant, (and) he continually drinks it in [beer]. +Alternatively, you put root of šūšu-liquorice (and) root of pomegranate in water, you heat (the mixture) in an oven, you take it out, you filter it, you let it cool, (and then) he continually drinks it on an empty stomach. +61770 If aḫḫāzu-jaundice goes up into a man’s eyes, and then his eyes are covered by yellow strings, his internal organs heave (and) he regurgitates bread and beer, that man will linger for a little while, he will [not] recover, he will die. +61772 If a man suffers from aḫḫāzu-jaundice, (his illness) [seizes] his head, his face, his whole body and the root of his tongue: the physician should not do anything (lit. he should not bring his hand) for this illness, that man will die, he will not [recover]. +If someone has acute fever (and) suffers from throbbing of (his) temples, before it gets worse for him: in order to treat him, dirt from the doorjamb [. . .]. +Palace of Aššur-ban-apli, king of the universe, king of the land of Aššur, on whom Nabû and Tašmētu have bestowed wisdom. +He acquired for himself shining eyes, the pinnacle of scholarship. +Of the kings who came before me, none were able to comprehend these tasks. +Prescriptions (organised) from head to foot, gleanings from extraneous materials, [technical] lore +(and) whatever pertains to the great medical knowledge of Ninurta and Gula, +I have written on tablets, checked, collated, and +deposited them in the middle of my palace for my reading and recitation. +61783 [. . .] you anoint his head?, and then he will recover. +[. . .], (and then) lice will not approach him. +[So that lice would not approach a man], you put [. . .] in water from a well which does not have any [. . .] or fish in it, you wash him with it, and then lice will not approach him. +[Alternatively], you mix [errû-colocynth (and) . . .] in cedar oil, (and) you anoint him repeatedly (with the mixture). +61788 [If a man’s head] is full of sweet lice, [you anoint? his head? repeatedly?] with (a drug), its name is bitter-plant, [he should smear off (the anointment) with a cloth of date palm fiber], (which) he should burn once he cleaned himself, and then he will recover. +[So? that?] there would be no [lice?], you pound urṭû-tree, you anoint him with it in pressed oil, (and then) there will not be any lice. +If a man’s head is full of scabies and scurf: you pound kibrītu-sulphur, you mix it in cedar oil, (and) you anoint him repeatedly (with the mixture. +Alternatively, you roast kibrītu-sulphur, (and) you cool his head with it in oil. You roast saltpeter from salt, (and) you cool his head with it in oil. +61794 If a man’s head has been seized by sāmānu-disease, it itches him, but then it diminishes (and) calms down, (only to) increase again afterwards: you pound seed of ‘dog’s tongue’ plant, sesame powder, powder from the ‘dead wood’ of a baltu-thornbush, sesame powder, malt powder, dried excrement of a dove from a gurummaru-tree (and) ēdu-plant seed, you knead them in the warm sap of kasû-tamarind, you shave (and) cool his head, (and then) you bandage him (with the mixture). +61798 According to another tablet: If a man’s head has been seized by sāmānu-disease: dust from the limestone threshold of an old house, fresh white plant (picked at a time) when it grows on argānu-conifer, seed of ‘dog’s tongue’ plant, sesame powder from the bottom of a sieve, cut-off pieces of dried sesame husk, the UŠ-part of malt, excrement of a dove, the broken piece of a pebble (and) ēdu-plant seed – you pound these nine drugs, you anoint his head repeatedly [with] oil (and) cedar blood, you scatter these drugs over (the anointment), you bandage him with them, and then he will recover. +61801 [If] a man’s head has been seized by [. . .] . . .: you bandage him continuously with algae from the surface of water, earth from a pigsty, mouse excrement, kiškanû-tree, [. . .], . . ., [. . .], the powder of a taskarinnu-tree, the powder of an ašāgu-acacia which grows on a mud wall, burāšu-juniper, root of [. . .], olive, tamarisk leaf, šunû-tree leaf, chick-pea powder, lentil powder (and) parched grain flower, [and then he will recover]. +61803 [If a man’s head] has been seized by [. . .]: algae from the surface of water [. . .] . . . [. . .]. +61808 [. . .] you pound together kukru-aromatic, burāšu-juniper, atā’išu-plant, [. . .], parched? grain? (and) nikiptu-spurge, [. . .]. +[. . .] the man’s head has been taken? by ašû-disease [. . .]. +61812 [If a man’s] head [has been seized] by ašû-disease: you [crush] (and) sieve [. . .], kukru-aromatic, [. . .] with chick-pea [. . .]. +61815 [If a man’s] head [has been seized] by ašû-disease: [. . .] male? ŠU.U-stone [. . .] into his mouth [and his] nostrils [. . .]. +61817 [If a man’s] head has been seized by ašû-disease: [. . .], you have him drink it in [. . .] or in prime-quality beer, [. . .]. +61819 [If . . .] seized the [. . .] of a [man’s] head: [. . .] root of [. . .], you have him drink them [. . .] on an empty stomach, and then [. . .]. +61821 If a man has been seized by ašû-disease or miqtu-disease: [you pound thick] saḫlû-cress [in water, you dessicate carp (taken directly) from water], you take [their scales] (and) their internal organs, you dry them, you anoint him with them using your own hand, [. . ., he eats it on an empty stomach, and then he will recover]. +61824 If a man has been seized by ašû-disease or miqtu-disease: [you crush] five shekels of mint (and) five shekels of kasû-tamarind, and then you make a hole on a diqāru-pot [(as well as) on a pursītu?-pot], you lute the surface of the diqāru-pot with emmer dough (and) you bake it, (then) you hollow out a reed tube, you insert it into the pursītu-pot . . . [. . .], you remove the reed tube (and) he sucks (the medicament) out with his mouth. (Afterwards), you boil . . . [. . .], and he eats it (with) broth and fatty meat, and then he will get better. +[If a man] has been seized by [ašû-disease]: you pound kalû-mineral, he drinks it continually in prime-quality beer, and then he will recover. +61827 [If a man] has been seized by [ašû-disease]: you [fumigate?] him with seven and seven pieces of grain over embers, you take pulp from inside of sweet reed, [. . .], he swallows it with his mouth and he snuffs it into his nostrils, and then he will recover. +You parch (and) pound [. . .], he drinks them in oil and prime-quality beer, and then he will recover. +[If a man’s head] has been taken by ašû-disease: [you pound?] the ‘request’ of kasû-tamarind (and) urânu-fennel seed in [oil?], you anoint his . . . repeatedly with (the mixture, and then) he will recover. +You bandage him with [. . .] (and) fine beer spice, you [scatter?] ground saḫlû-cress over (the bandage), you place [. . .] . . ., and then he will recover. +61832 You crush completely [. . .], you let it stand overnight under the stars, (and) you have him drink it (in the morning) on an empty stomach. (Afterwards), [you crush? completely?] one litre of [. . . (and) one litre of] dregs of prime-quality beer, [. . .], you massage him from above to downward, you bandage him (with the mixture) for [ten] days, and then he will recover. +You crush [. . .] (and) tappinnu-flour in beer, (and) you cool his head with it. You crush urânu-fennel seed, you mix it with oil, you boil (the mixture) in a tangussu-vessel, you anoint him repeatedly with it, and then he will recover. +[If a man] has been seized by [ašû-disease]: you fumigate him with the resin of baluḫḫu-aromatic (and) ballukku-aromatic over embers, he snuffs (the smoke) into his nostrils, and then he will recover. +[Alternatively], you throw ṭūru-opopanax, the resin of baluḫḫu-aromatic (and) kurkanû-plant into fire, you fumigate his nostrils, you blow oil (into his) mouth, nose (and) [. . .], and then he will recover. +[If a man] has been seized by [ašû-disease]: you anoint him with imḫur-līm-plant, atā’išu-plant, kasû-tamarind seed, kammantu-plant seed (and) ašû-disease plant in oil, (and) you fumigate him over embers. +61840 [Incantation:] “O my hero! O my hero, heal (this disease)! O my hero, . . ., and then (you are) indeed my hero! ḫulqi ḫulqi ḫaltib ḫaltib. It is not so that you get better, and that . . . diḫun diḫun duli rapšu and his fever does not weaken, (it is indeed) many and without . . . [. . . ] physician of mankind.” Incantation formula. +Wording of a spell for ašû-disease. +Its ritual: you fumigate him with kasû-tamarind, kukru-aromatic (and) ašû-disease plant over embers, you recite this incantation three times, [and then he will recover]. +61844 [Incantation:] “O steppe, the bandage from the steppe! O steppe, the bandage from the steppe! O steppe, where one goes (for the bandage)! O steppe, where one goes (for the bandage)! From the stars, . . . came down (and) . . . with the stars.” Incantation formula. +Wording of a spell for ašû-disease. +Its ritual: you crush kammantu-plant, you mix it with oil, you recite the incantation three times, you anoint him repeatedly (with the mixture), and then he will recover. +A drug for removing the ašû-disease is the seed of kamkadu-plant, you pound it, (and) [you anoint him with it] in oil. +[You pound] kammantu-plant, (and) you anoint him with it in oil. You pound white plant, (and) [you anoint him with it] in oil. +61850 You pound together ḫašû-thyme, [būšānu-plant], saḫlû-cress, black cumin, white plant, the resin of [baluḫḫu?-aromatic] (and) [. . .], he drinks them continually in oil and prime-quality beer, and then [he will recover]. +61852 [If a man] has been seized by [ašû-disease]: in order to heal him, [. . .] white plant, bat guano, emesallu-salt, mint (and) [. . .], you wash his head with them, (and then) you scatter them repeatedly in dried form over his head, you wrap a wad of wool (around it) [. . .]. +61854 [Incantation: “. . .] iška gimma [anki DITTO] šuḫdi’am . . . [. . . pi šimḫi iška kimma te’eša.” Incantation formula]. +[Wording of a spell (for the case when) someone has been seized by ašû-disease and fluids flow from his nostrils, . . .] afflicts him and his temples constantly hurt him +61857 [It’s ritual: you mix together sweet reed and cedar blood, you recite the incantation three times over it, (and) you pour it into his nostrils. (Afterwards), . . . his head and his chest, (and) you cover him . . .]. He eats (the mixture) hot, he drinks it hot, [and then he will recover]. +[If a man has been seized by ašû-disease:] you anoint him with [imḫur-līm-plant, atā’išu-plant, . . .], kammantu-plant (and) ašû-disease plant in oil, [(and then) he will recover]. +[. . . DITTO . . .] it has seized [. . .]. +[. . .] ašû-disease . . . [. . .]. +[. . .] you fumigate him with [. . ., kukru-aromatic, atā’išu-plant] (and) ašlu-rush [seed] over embers, and then the ašû-disease will be eradicated. +[Incantation: “. . . upak gišḫurḫur upak bappak] gišḫurḫur upak upak.” Incantation formula. +61864 [. . .], its ritual: [. . .] pomegranate juice [. . .] you pour it into his mouth, [and then] he will get better. +61866 [If a man’s head is full of lesions:] you place [. . .], urânu-fennel seed, tarmuš-lupin, imḫur-līm-plant (and) imḫur-ešrā-plant in [oil, together with a bent stick of poplar wood, in front of Gula], you wash his head in the morning, you anoint him repeatedly (with the mixture), and then he will get better. +[Alternatively:] you mix [. . ., fatty tissue of errû-colocynth], stone of errû-colocynth (and) roasted kasû-tamarind in cedar oil, (and) you anoint him repeatedly (with the mixture). +[. . .] you warm it up, you sprinkle it on his head [. . .]. +[. . .] you mix it [. . .], you let it cool, you mix it with cedar blood (gloss: ghee), and you anoint him repeatedly (with the mixture). +[. . .] . . ., you wash his head, you pound stone of errû-colocynth, (and) [you anoint? him repeatedly with it] in cedar oil. +61872 [. . .] you put them in a [. . .], (and) you anoint his head repeatedly with it after it has been cooked. (Afterwards), you mix dried kulīltu-insect [. . .] (and) frog fat in ghee, you anoint him repeatedly (with the mixture), and then the hair will grow back. +[. . .] you mix it in strong vinegar, you cool his head, and [you anoint? him repeatedly (with the mixture)]. +61875 [. . .] . . . [. . .] you fumigate? him, [. . ., you wash?] his head in the morning with warm water, (and) then you anoint him repeatedly with cedar [oil]. (Afterwards), you parch fatty tissue of errû-colocynth, [. . .], you scatter them, you anoint him repeatedly with them, and then he will recover. +[Alternatively], you warm up cedar oil, (and) you sprinkle it on his head. Alternatively, you pound [. . .] (and) fox-vine, (and) [you anoint? him repeatedly with it] in cedar oil. +[Alternatively], you mix kibrītu-sulphur [in] dough, (and) you anoint him repeatedly (with the mixture). Alternatively, you mix kibrītu-sulphur in mountain honey, (and) you anoint him repeatedly (with the mixture). +[Alternatively], you pound maštakal-plant, (and) you anoint him repeatedly with it in oil. Alternatively, you pound aktam-plant, you mix it in fat, (and) you anoint him repeatedly (with the mixture). Alternatively, you sprinkle urânu-fennel, (and) you anoint him repeatedly with it in oil. +[Alternatively], you stir urânu-fennel into cow milk (gloss: cow urine), (and) you wash his head with it. You parch (and) pound kalbānu-plant, you shave his head, (and) you anoint him repeatedly with it (in) oil. +[Alternatively], you parch (and) pound [fatty tissue] of errû-colocynth (and) stone of errû-colocynth, you shave his head, you anoint him with them (in) oil, (and then) you put them on (as) a bandage by binding them on. +[Alternatively], you pound [. . .], you mix it in cedar oil, you anoint him repeatedly (with the mixture), and then the hair will grow back. +61883 [Alternatively], you pound [. . .], (and) you anoint his head repeatedly with it. You pound chick-pea powder, lentil powder and ‘field lump’ plant, you knead them in the sap of kasû-tamarind, (and) you bandage him (with the mixture). [. . .] aktam-plant (and) horned uḫūlu-alkali, (and) you wash his head with them in warm water. +61886 If a man is full of guraštu-boils: you pound together urânu-fennel, . . ., [. . .], you mix them in oil, you anoint them repeatedly (with the mixture), [and then] the hair will grow back. +Alternatively, you pound aktam-plant (and) kammantu-plant, [. . .] in [. . .], you wash his head with it, (and then) you roast the peel of . . ., you grind it, (and) you scatter it (over his head). +Alternatively, you anoint him repeatedly with oil from the inside of a fish, you pound [. . .], and you scatter it (over the anointment). +Alternatively, you rub and anoint him with samānu-insect from a wall, [. . .], you wash him with white mountain honey and water, and then he will get better. +61891 White plant, urânu-fennel (and) aktam-plant: three drugs against guraštu-boil, [. . .], (and) you anoint his head repeatedly with them in oil. (Afterwards), you pound imḫur-līm-plant, urânu-fennel, root of kalbānu-plant, root of tamarisk (and) kamūnu-fungus, [. . .] . . ., you wash his head in water, (and) you anoint him repeatedly (with the drugs) in oil. +If a man’s [head is affected with giṣṣatu-disease: you pound aktam-plant (and) horned uḫūlu-alkali, you heat them up, and then] you wash his head with them. (Afterwards), you pound ašqulālu-plant (and) urânu-fennel, (and) you anoint him repeatedly with them in oil. +[. . .] you pound [. . .], (and) you anoint him repeatedly with them in mountain honey. +[. . .] (and) he will become healthy. +[. . .] . . . +61898 Alternatively, you crush ‘field lump’ plant, you pound fat from wild animal [. . .]. +[In order to] remove the kurāru-boil, [. . .] foam from beerwort in [beer] dregs [. . .]. +Alternatively, you rub ‘field lump’ plant over the surface (of the boil), [you pound] black qitmu-paste [. . .]. +Alternatively, you pound together leek seed, aktam-plant (and) black plant [. . .]. +61906 If a man’s head has been seized by kurāru-boil: you pound chaff, you rub (and) scatter it (over the boil), [(and then) you bandage it. In the morning, you shave his kurāru-boil], you take away its flakes, you wash it with beer, you scatter taskarinnu-tree powder over it, (and then) you bandage it. Before he goes to bed, [you remove (the bandage), and then you have him eat something, (while) washing (the boil) with beer (and) bandaging it with a bandage (made of)] taskarinnu-tree powder, elammakku-tree powder, kalmarḫu-tree powder, chaff [(and) roasted kasû-tamarind]. In the morning, you remove (the bandage), you shave (the boil), you parch (and) pound suādu-aromatic (and) cedar, [. . .] on [. . .], you wash (the boil) with the sap of kasû-tamarind, (and then) [. . .] with taskarinnu-tree powder, elammakku-tree powder, kalmarḫu-tree powder, [. . .]. +61914 Alternatively, you shave his head, (and) you anoint it with ill-smelling oil. Before he goes to bed, you remove (the anointment, and then) you pound together root of [. . .], root of kumaḫu-tree, river mud, tarmuš-lupin, qutratu-plant seed, . . . (and) [. . .], you smear his head with cow urine, you wash it with beer, [. . .] it with the sap of kasû-tamarind, (and then) [. . .]. Seed of šunû-tree, mandrake seed, flax seed, kammantu-plant seed, urânu-fennel leaf, [baltu?-thornbush, rušruššu-plant, ṣaṣumtu-plant], kurkanû-plant, saggilatu-plant, marišmalû-plant leaf (and) [kalbānu-plant]– you dry, crush (and) sieve [these? eleven plants], you knead them in the sap of kasû-tamarind, you dry, crush (and) sieve (the mixture) over and over again, [you mix it with prime-quality beer and vinegar, you bandage his head with it, and then] you should not remove (the bandage) for three days. On the fourth day, while you are removing it, you wash (his head) with warm urine, [. . .] . . . [. . .]. +61917 [Alternatively], you pound [. . .] in fat, [. . .]. +[Alternatively, you pound] kibrītu-sulphur (and) black cumin, [you anoint him repeatedly with them in oil, (and then) he will recover]. +Alternatively, you pound kalû-mineral [. . .]. +61922 If a man’s head [has been seized] by kurāru-disease: [. . .] mint, saḫlû-cress, urânu-fennel, [. . .], you anoint him repeatedly with cedar [oil, (and then) . . .]. +[If a man suffers from kurāru-boil: you anoint him with ghee, you pound white plant, you scatter? it (over the anointment), and then he will recover]. +Alternatively, you smear him with sour vinegar, [. . .] . . . [. . .]. +Secondly, [. . .] river mud [. . .]. Alternatively, [. . .] chaff over . . . [. . .]. +Alternatively, you smear him with samānu-insect, [. . .], you scatter it, you anoint him repeatedly with it in ghee, (and then) [. . .]. +Alternatively, [you smear?] him with sour vinegar, [. . .], you scatter it, (and then) [. . .] šūmu-garlic, šamaškillu-onion, [...]. +61929 If a man’s head [. . .]: you crush (and) sieve coarse flour, chick-pea powder, boiled gypsum, horned uḫūlu-alkali, [. . .], river mud?, [. . .], once it is at your disposal, you anoint him repeatedly with ghee, (and) you put it on (as) a bandage, [. . .] fox-vine [. . .]. +Alternatively, [. . .]. +61940 [Alternatively], you mix [. . .], burāšu-juniper (and) tappinnu-flour in vinegar, you cool his head, (and) you sprinkle it (with the mixture) for three days. [. . .], you wash his head, (and) you sprinkle it (with the mixture) for three days. You shave (his head) [. . .] the surface of the kurāru-boil [. . .] you cool (his head) [. . .] you heat ghee (and) salt [. . .] in fine beer spice and cedar oil [. . .] you parch, pound (and) scatter [. . .] fruit of errû-colocynth [. . .] surface of the lesion [. . .] vinegar [. . .] you anoint him repeatedly with cedar oil [. . .] white plant [. . .] urânu-fennel (and) amānu-salt in donkey urine and vinegar [. . .]. +61942 Incantation: “sub him sub him a na . . . [. . .] lani hubi lani hubi lani [. . .]”. +61945 Its ritual: [. . .] errû-colocynth over the kurāru-boil [. . .] you rub him with samānu-insect from a wall [. . .] you mix it in old ghee . . . [. . .]. +Incantation: “kinip kinip baḫ [. . .]”. +Its ritual: [you peel away the surface of the lesion] with a golden ring, [. . .]. +[. . .] leek, black plant, mint? [. . .]. +[Incantation:] “The curse, like a thief at the opening of a hole, . . . [. . .]”. +[Incantation:] “Where you are created, may Ea dispel (you) [. . .]”. +[Incantation:] “atḫema atḫe’e ḫele’ema atḫhele [. . .]”. +Its ritual: you rub him with the nagappu of vinegar, you scatter qutru-plant (over it) . . . [. . .]. +[Wording of five] spells [for removing?] the kurāru-boil. +61955 [Incantation: “sub] ḫurrim sub ḫurrim ala šuḫta . . . [. . . ša sakutu ḫisi] apillat aš kurbanni idkia ul . . . [. . .]”. +61957 [Wording of a spell for removing the kurāru-boil. Its ritual: red wool . . .]. +[Incantation: “The curse, like a thief at the opening of a hole], . . . [. . .” Wording? of a spell? for removing the kurāru?-boil]. +61962 [Its ritual: you rub the surface of the lesion with aromatics], (and) you anoint it with foam from beerwort, (then) you parch donkey leather on fire, you pound it, (and) you scatter it (over the lesion, then), [you parch] algae on fire, [(and) you scatter it over the lesion], (then) you parch [bitter-plant on fire], (and) you scatter it over the lesion, (then) you anoint repeatedly the surface of the lesion with spider (taken) from a sheep, (then) you dry (and) crush leather, [(and) you scatter it over the lesion], (then) you parch the rib of a river ox on fire, (and) you scatter it over the lesion, (then) you pound imḫur-līm-plant, (and) you anoint repeatedly the surface of the lesion, (then) you rub [the surface of the lesion with beerwort of a tavern keeper], (and then) you peel away the surface of the lesion with a golden ring. +[Wording of two spells] for healing [. . .]. +[If a man’s (hair on his) head falls out in tufts: you bandage] his head with pulverized [saḫlû-cress, you should not remove (the bandage) for three days], (but) on the fourth day [you shave] his head, [you wash his head with water from uḫūlu-alkali, (and) you anoint it repeatedly with oil, (then) you crush cedar (and) cypress, you mix them in cedar oil, you anoint his head (with the mixture) for three days, (and then) he will recover]. +61967 [. . .] . . . +61971 [. . .] you wash? [. . .] you scatter? [. . .] you scatter? [. . .] you scatter? [. . .]. +61973 If a man’s belly is sick: he drinks pure cow milk (and) ghee for two days [. . .]. +61978 If a man’s belly is sick: you pound fox-vine, (and) he drinks it in beer. [You pound] suādu-aromatic, (and) he drinks it [in beer]. You pound šizbānu-plant, (and) he drinks it in beer. You crush half a litre of saḫlû-cress, [half a litre of] horned uḫūlu-alkali, half a litre of river mud, half a litre of šunû-tree, half a litre of coarse flour, half a litre of burāšu-juniper, [half a litre of] kukru-aromatic, half a litre of chickpea powder, half a litre of lentil powder, half a litre of pure plant, half a litre of ‘shepherd’s staff’ plant (and) half a litre of urnû-mint, you boil them down in prime-quality beer using a small copper pot, you smear (the mixture) on a piece of fabric, (and) you bandage him with it front and back. +61980 Alternatively, you mix a third of a litre of saḫlû-cress, a third of a litre of pigeon droppings, a third of a litre of parched grain, a third of a litre of burāšu-juniper (and) a third of a litre of kukru-aromatic, you take enough (of the mixture) for an entire bandage, you kneed it in prime-quality beer, (and) you bandage him with it. +Alternatively, you pound one mina of ŠE.ḪAR-tree leaf, you heat it up in the sap of kasû-tamarind, you let (the mixture) cool, (and then) you bandage him with it. +Alternatively, you pound half a litre of saḫlû-cress (and) half a litre of parched grain, you knead them in the sap of kasû-tamarind, you strew kukru-aromatic (and) burāšu-juniper on it, (and) you bandage him with it front and back. +Alternatively, you pound (and) mix half a litre of malt flour, half a litre of sesame husk powder, half a litre of wheat flour, half a litre of kukru-aromatic (and) half a litre of burāšu-juniper, you kneed (the mixture) in the sap of kasû-tamarind, (and) you bandage him with it. +61985 [If] a man’s belly is sick: you dry, crush (and) sieve errû-colocynth leaf, you stir it into honey, high-quality beer and pressed oil, you have him drink it on an empty stomach, he will void from his anus, and then he will recover. +If a man’s belly is sick: you chop up suādu-aromatic, you soak it in cold water, (and) he drinks it on an empty stomach. +61988 If a man’s belly is sick, and it throbs: you pound seed of kūru-plant, (and) he drinks it in prime-quality beer. You crush half a litre of saḫlû-cress, half a litre of horned uḫūlu-alkali, half a litre of wheat flour (and) half a litre of coarse flour, you kneed them in prime-quality beer, you smear (the mixture) on a piece of fabric, (and) you bandage him with it front and back. +61990 If a man’s belly is sick: you pound imḫur-līm-plant, you soak it in prime-quality beer, you leave it out overnight under the stars, (and) he drinks it on an empty stomach. You crush šunû-tree leaf, you mix it with coarse flour, you boil (the mixture) down in the sap of kasû-tamarind, you smear it on a piece of fabric, (and) you bandage him with it front and back. +Alternatively, you take karašu-leek that has been slit open, you pound it, (and) he drinks it in milk. +You knead half a litre of saḫlû-cress (and) half a litre of parched grain in milk, you smear (the mixture) on a piece of fabric, (and) you bandage him with it. +61994 If a man’s belly is sick, and the "inside of his bones" is yellow, his belly is full of lesions, (it is the fever called) UD.DA SA₂.SA₂: you mix the fatty tissue of errû-colocynth with parched grain flour, you sprinkle the fourteen pills with honey, (and) he swallows them. +61996 You pound half a litre of saḫlû-cress (and) sīḫu-wormwood, (and) he constantly eats them with fatty [beef?]. You knead half a litre of ground saḫlû-cress in [. . .], (and) you bandage him with it. +61999 If [a man’s] belly is sick, and it has piercing pains, he eats bread (and) [drinks] beer, (but then) he voids it [through his anus?], he vomits (and) swallows? saliva in a meadow: you pound nuḫurtu-plant, (and) he drinks it in water. [You boil? down white? plant in oil?], (and) you pour it into his anus. He drinks pressed wine. You boil down burāšu-juniper (and) šimiššalû-aromatic [. . .] in a small copper pot, you smear (the mixture) on a piece of fabric, (and) you bandage him with it. +62002 [Alternatively], he drinks white plant in oil, (and) he will vomit. [. . .] maštakal-plant (and) ‘dog’s tongue’ plant — you heat them up [in water], (and) you wash him with it. [. . .] sap of kasû-tamarind [. . .] date palm?, šūšu-liquorice leaf, juniper seeds?, šunû-tree leaf, burāšu-juniper (and) kukru-aromatic — [. . .] you smear (the mixture) on a piece of leather (and) you bandage him with it. +62005 [Alternatively], he drinks fox-vine in beer, he drinks white plant in oil, (and) he eats [. . . in] honey. You pour [the juice] of šunû-tree (and) the sap of kasû-tamarind into his anus. Leaf of [. . .] pure plant, šakirû-henbane leaf (and) maštakal-plant leaf — you crush them [. . .] you smear (the mixture) on a [. . .], (and) you bandage him with it. +62008 Alternatively, you pound nuḫurtu-plant (and) tīyatu-plant, (and) he drinks them in beer. [You boil down white plant in oil], (and) you pour it [into his anus. You heat up] šarmadu [leaf], ašāgu-acacia leaf (and) baltu-thornbush leaf in water, [(and) you wash him with them]. You pour [the sap of šunû-tree (and) the sap] of kasû-tamarind, into his anus. [You boil down] burāšu-juniper [(and) kukru-aromatic . . . in a tangussu-vessel, you smear (the mixture) on a piece of fabric (and) you bandage him with it]. +62010 [If] someone’s belly is sick, and [. . .] his belly [. . .] . . . [. . .]. +62015 Alternatively, white plant [. . .] pure plant . . . [. . .] (and) you pour it [into his anus]. burāšu-juniper, juniper seed, ṣumlalû-aromatic (and) the resin of baluḫḫu — you crush (these) aromatics, you mix them in fat, [you smear (the mixture) on a piece of leather], (and) you bandage him with it. +62018 Alternatively, he drinks white juniper seed in beer, and then he will vomit. He drinks root of male pillû-mandrake in beer, and then he will vomit. You dry [mountain] honey, (and) you wash him with it in the sap of šunû tree. You heat vinegar (and) oil, (and) you pour them into his anus. You pound šūšu-liquorice leaf, kūru-plant leaf, šakirû-henbane leaf, the leaf of ‘dog’s tongue’ plant, burāšu-juniper (and) date, you mix them in beer, (then) you dry, crush (and) sieve (the mixture) again, you [. . .] in [. . .], you smear it on a piece of leather (and) you bandage him with it. +62022 Alternatively, he drinks atā’išu-plant in beer and he will vomit. He drinks white plant in oil and he will vomit. You heat up the offshoot of the date palm, pillû-mandrake, burāšu-juniper (and) kasû-tamarind in water, (and) you wash him with it. You pound kukru-aromatic, you heat it in white honey, you drip oil in it, (and) you pour it into his anus. You crush šallūru-tree leaf, ēru-tree leaf, šunû-tree leaf, lipāru-tree leaf, burāšu-juniper leaf (and) kukru-aromatic, you mix them in beer, (then) you dry (and) crush (the mixture) over and over again, you mix it in fat, you smear it on a piece of leather (and) you bandage him with it. +62026 If a man’s belly is sick, and in addition he suffers from any other illness: you pound nīnû-mint, ḫašû-thyme, atāʾišu-plant, black cumin, urnû-mint, tarmuš-lupin, imḫur-līm-plant, elikulla-plant, pure plant, imḫur-ešrā-plant, fruit of baltu?-thornbush [. . .] (and) errû-colocynth leaf, he drinks them in beer, (and) he will void from his anus. At night, in the hot sap of kasû-tamarind [. . .], he eats fatty porkm [(and then) he will recover]. +62028 [. . .] you pound it, (and) you have his tongue seize it in oil on an empty stomach, [. . .] . . . (and then) he retches it up. +62030 [. . .] . . . you mix it in oil, you seal up (the mixture), and then you leave it for three days, [. . .] (and) he will vomit. He continually drinks it for seven days. +[. . .] (and) he drinks it in prime-quality beer. +62033 [. . .] . . . pomegranate leaf [. . .] (and) he drinks it in prime-quality beer. +62035 [. . .] . . . you crush it in oil and prime-quality beer [. . .] . . . +62039 [. . . you knead? it . . .] you wash him continuously, and then he will recover +[. . .] he drinks it, and then he will recover. +62042 [. . .] he will recover? [. . .]. +62047 [. . .] +62049 [. . .] date stone . . . [. . .] he should not drink water [. . .] water [. . .]. +You pound nīnû-mint, [. . .] in water [. . .]. +[. . .] pomegranate rind from the north side (of the tree) in [brewer’s beer . . .]. +He swallows very finely chopped fresh šūmū-garlic, [. . .]. +You pound azupirānu-saffron seed, [. . .]. +Third of a litre of vinegar, third of a litre of kasû-tamarind, 10 measures of salt, half a litre of pressed oil, [. . .]. +You put five shekels of salt in broth from fatty meat, and he drinks it on an empty stomach. Root of [. . .]. +You crush the fatty tissue of errû-colocynth, you put one litre of heated vinegar in it, and then [. . .]. +You pound burāšu-juniper, [. . .] in oil [. . .]. +If (a man’s belly is sick), and more specifically he continually has phlegm: you pound ‘field lump’ plant, you let it cool in pomegranate juice, you pour it [into his anus], and then [he will recover]. +62060 You dry (and) crush tendrils of errû-colocynth, you mix it into dough and mountain honey, he swallows (the mixture with) pigeon droppings, (and then) he drinks prime-quality beer (with) date. You pound būšānu-plant, (and) he continually drinks it in pressed oil. +62062 If a man’s internal organs are swollen (and) continually have cramps, his belly continually acts like it is going to vomit: in order to treat him, you pound together šūmū-garlic (and) black cumin, he continually drinks them in prime-quality beer on an empty stomach, (and then) he will recover. +Alternatively, you pound fresh pure plant, you mix it with lard, (and) he sucks (on the mixture) on an empty stomach, (then) he drinks sour beer, (and) he will recover. +62065 If a man’s internal organs are swollen (and) continually have cramps, flatulence (lit. wind) circulates (and) rumbles in his belly: you put the fatty tissue of errû-colocynth into his anus. You pound šūmū-garlic (and) black cumin, (and) he continually drinks them in beer. For two days you pour half a litre of oil (each day) into his anus, (and then) he will recover. +62067 If a man’s internal organs are swollen (and) continually have cramps: you have him drink beer (and) honey, while hot, on an empty stomach, (and) he will vomit. You heat up vinegar, you pound together nīnû-mint and salt, you crush them into (the vinegar), you put honey and pressed oil (into the mixture), you pou it into his anus, and then he will recover. +62069 If a man’s internal organs continually have cramps: he drinks beer from a flask on an empty stomach. You heat up vinegar, you put nīnû-mint (and) emesallu-salt in it, you drip oil into it, (and) you pour (the mixture) into the middle of the ‘anus’ (lit. vessel). You anoint him in his entirety with oil, using your left finger. +If a man’s internal organs continually have cramps: you place the fatty tissue of errû-colocynth into his anus, (and then) he swallows šūmū-garlic seven and seven times. +You pound šūmū-garlic (and) black cumin, (and) he drinks them in beer. You pour mountain honey (and) oil into his anus. You pound azupirānu-saffron seed, (and) [he eats? it]. +If (a man’s belly is sick), and more specifically he continually has phlegm (and) suffers from a hacking cough, (it is) acute fever: you press out pomegranate juice, [(and) he drinks? it]. +You have his tongue seize milk (and) oil, he drinks them, (and then) he drinks one litre of beer. You pound burāšu-juniper, (and) he drinks it in beer. +You pound black cumin, (and) he drinks it in beer. You pound black cumin, he drinks it in wine, (and then) he swallows oil. +62076 If a man’s epigastrium is warm (and) his internal organs are swollen: you boil down half a litre of ṭūru-opopanax in beer dregs, you smear (the mixture) on a piece of fabric, (and) you bandage him with it. You scatter kasû-tamarind (and) šimiššalû-aromatic on (another) bandage, (and) you bandage him with it front and back. +62078 You put [. . .] burāšu-juniper, juniper seed (and) ḫašû-thyme in beer, you crush [. . .] . . . you have him drink it while it is still hot, you make him vomit using the feather of a bird, and then he will recover. +62081 If a man’s internal organs are badly swollen, he constantly regurgitates foods (and) beer into his mouth, (and) he constantly bandages his head (and) chest: you heat up a paste from coarse flour, (and) he constantly eats it in honey, fat and ghee. He should not eat šūmū-garlic, šamaškilu-onion, karašu-leek, saḫlû-cress (and) urnû-mint for three days, (and) he should not bathe; then he will recover. +62086 If a man’s internal organs are swollen [. . .] heat? constantly affects him, he has a diminished appetite for bread and beer, (and) he continually has phlegm: in order to heal him, you pound separately imḫur-līm-plant, imḫur-ešrā-plant (and) root of pillû-mandrake, you have him drink them in beer so he will vomit and, after this, you have him drink pressed oil and beer. You heat up the sap of kasû-tamarind and vinegar, (and) you pour them into his anus. Kukru-aromatic, burāšu-juniper, ṣumlalû-aromatic, ŠE.ḪAR-tree leaf, lipāru-tree leaf, šunû-tree leaf (and) seed of urbatu-rush — you crush (and) sift together these seven ingredients, you mix them with fat, wax and ṭūru-opopanax, you spread (the mixture) on a piece of leather, you bandage him with it, and then he will recover. +62088 If a man’s internal organs are swollen, he continually has fits of coughing and phlegm, (and) he has a diminished appetite for bread and beer: in order to heal him, you pound together nīnû-mint (and) saḫlû-cress, (and) you have him drink them in beer. You heat up urnû-mint in the sap of kasû-tamarind, you filter (the mixture), you pour it into his anus either cold or hot, (and then) he will recover. +62091 If a man’s internal organs are swollen (and) his epigastrium continually retains phlegm: in order to heal him, you fix bat guano, tullal-plant, šalālu-reed (and) šūšu-liquorice leaf in cedar blood and the sap of kasû-tamarind, you put honey, pressed oil, ghee and prime-quality beer in it, you leave (the mixture) out overnight under the stars, you filter it in the morning, he drinks it on an empty stomach, and then he will recover. +62093 If a man’s internal organs are swollen: you pound together roasted barley flour, malt flour, qutru-plant seed (and) the diktu form of date, he constantly eats them on an empty stomach, (but) he should not drink any water (with them). You sprinkle his epigastrium with water, and then he will recover. +If a man’s belly is bloated: he drinks ten measures of šunû-tree juice (and) ten measures of salt water in honey and beer. +Alternatively, he eats pomegranate (and) drinks pomegranate juice. +Alternatively, you pound burāšu?-juniper (and) he drinks it in beer. Alternatively, you put pubic hair from an old woman in the middle of his mouth. +Alternatively, you pound pomegranate (and) marišmalû-plant leaf, (and) he drinks them in water. +62099 If a man’s belly is crammed with flatulence (lit. wind): he licks a bronze saw or a bronze knife, and then he will recover. You have him inhale dust from a bronze bell, he will sneeze, and then he will recover. +If a man’s internal organs are bloated: you put ten measures of šunû-tree leaf (and) ten measures of honey in beer, you leave (the mixture) out overnight under the stars, he continually drinks it in the morning on an empty stomach, and then he will recover. +62103 If a man’s internal organs are bloated (and) swollen, his belly constantly makes noises, (and) he regurgitates food and drink: he chews root of male pillû-mandrake (and) ṭūru-opopanax in his mouth, (and then) he drinks mountain honey in prime-quality beer. You heat up ṭūru-opopanax in prime-quality beer, (and) you pour (the mixture) into his anus. You crush lipāru-tree leaf, burāšu-juniper, kukru-aromatic, the resin of abukkatu-tree (and) the resin of šunû-tree, you mix them in fat, you smear (the mixture) on a piece of leather (and) you bandage him with it. He continually bathes in šunû-tree juice. +62106 If a man’s belly [. . .] heat constantly affects him, he continually has flatulence (lit. wind), (and) he regurgitates food (and) drink: you pound imḫur-ešrā-plant (and) root of male pillû-mandrake in prime-quality beer [(and) you have him drink it]. Afterwards, he drinks pressed oil in beer, (and) he will have a bowel movement. You heat up the sap of kasû-tamarind (and) vinegar, (and) you pour them into his anus. You crush burāšu-juniper [. . .] ṭūru-opopanax, lipāru-tree leaf (and) šunû-tree leaf, you mix them in fat, you smear (the mixture) on a piece of leather, (and) you bandage him with it. DITTO (= he continually bathes in šunû-tree juice). +62109 If a man’s belly [. . .] he constantly regurgitates food and drink into his mouth, his temples are splitting apart (in pain) . . . [. . .] . . . he constantly eats [. . .] in lard [. . .] šūmū-garlic, šamaškilu-onion [. . .] +62112 If a man’s belly is constipated, the head hurts him [. . .] "Who is good? Please send him! Who is [good? Please send him!" . . .] +An invocation for a constipated man. Its ritual: [you recite] the incantation three times over the belly [. . .]. +62115 If a man’s belly does not accept bread and beer: a third of a litre of date juice, a third of a litre of the sap of kasû-tamarind [. . .]. Afterwards, he drinks garum (and) vinegar, and then the heat in his belly will be removed, it (= the belly) will be made clean (again) [. . .]. +If a man’s belly does not accept food: you pound tamarisk seed, you mix it in honey and ghee, [you have him drink it on an empty stomach, and then he will recover]. +62119 If a man has a diminished appetite for bread and beer: you soak hašû-thyme, nuḫurtu-plant, urnû-mint, kasû-tamarind, tīyatu-plant, šumuttu-beetroot [. . .] kukru-aromatic, ṣumlalû-aromatic, suādu-aromatic, cedar, old cedar, ballukku-aromatic, date, lumps of malt, salt, šunû-tree (and) strong vinegar in beer, you leave them out overnight under the stars, you heat them up in the morning in a small copper pot, you put five shekels of pressed oil on the surface, (and) you pour (the mixture) into his anus. +62121 You put (the following) into a pot: a fourth of a shekel of a sweet plant, a fourth of a shekel of a small sweet plant, a fourth of a shekel of arariānu-plant (gloss: mergirānu-plant) (and) a fourth of a shekel of sissinni libbi-plant. You pound them in equal amounts, he drinks them in brewer’s beer on an empty stomach, then he will void from his anus, and he will recover. +62125 If a man’s internal organs are twisted, he has fits of coughing (and) a diminished appetite for food and drink, he continually has phlegm: you pound nīnû-mint, he drinks it in oil and he will vomit. You pound nīnû-mint (and) saḫlû-cress, (and) he drinks them in beer. You heat up urnû-mint in water, you let (the mixture) cool, (and) you pour it into his anus. You boil down lipāru-tree leaf, qutru-plant leaf, tamarisk leaf, burāšu-juniper, kukru-aromatic, ṣumlalû-aromatic, ṭūru-opopanax (and) [. . .] in date juice, (then) you dry (and) crush (the mixture) over and over again, you mix it in fat, you spread it on a piece of leather (and) you bandage him with it. He continually bathes in šunû-tree juice, and then he will recover. +62127 If a man’s belly is continually upset and cannot accept bread and prime-quality beer, his shoulder blades constantly cause him pain, he keeps his head bandaged, he is willing to eat ghee, but for seven days he would not eat šūmū-garlic, šamaškilu-onion or karašu-leek: he continually bathes in šunû-tree juice. He drinks errû-colocynth seed (and) ḫašû-thyme seed in beer, and then he will recover. +62130 If a man’s belly is full of mucus: in order to heal him, you put sweet reed, ballukku-aromatic, burāšu-juniper, ḫašû-thyme (and) [white? juniper seed?], in prime-quality beer, you heat up (the mixture), you filter it, you crush ten measures of honey into it while it is still hot, you have him drink it on an empty stomach, he will vomit, [and then] in the morning, you mix honey, pressed oil and beer together, you have his tongue seize (the mixture) on an empty stomach, you have him drink it, (and then) he will recover. +62132 If a man has been seized by mucus: pure plant seed, fox-vine seed, kamantu-plant, supālu-juniper (and) urânu-fennel — [you pound?] together these five drugs, you boil them down in the sap of kasû-tamarind, you smear (the mixture) on a piece of fabric, (and) you bandage his epigastrium with it. You pound white plant, he drinks it in water on an empty stomach, (and then) he will recover. +62134 Alternatively, you pound the resin of ballukku-aromatic, he drinks it in pressed wine on an empty stomach, [(and then) he will recover]. Alternatively, you pound [. . .], he drinks it in prime-quality beer on an empty stomach, [(and then) he will recover]. +62136 If flatulence (lit. wind) circulates in a man’s belly: in order to heal him, you dry (and) pound the root of ‘dog’s tongue’ plant, which has not yet seen the sun when you picked it, he drinks it in prime-quality beer on an empty stomach, (and then) he will recover. +If flatulence (lit. wind) rumbles in a man’s belly: you pound together ‘dog’s tongue’ plant (and) the seed of ‘dog’s tongue’ plant, he drinks them in beer on an empty stomach, (and then) he will recover. +62139 If flatulence (lit. wind) [continually affects him] like a piercing pain: [half a shekel] of cedar, half a shekel of cypress, a third of a shekel of asu-myrtle, ten shekels of old cedar, ten shekels of emesallu-salt, burāšu-juniper [. . .], you heat them up in prime-quality beer, you put oil on the surface, (and) you pour (the mixture) in his anus. +62146 If flatulence (lit. wind) churns (and) [growls] in a man’s belly, his soles, his feet, his chest and his shoulder blades constantly hurt him, his flesh is paralyzed [and] causes him a stinging pain, his flesh is wasting away (and) full of stench, his appearance constantly changes, he is continually hot (and) it affected him for an entire day: [in order to heal him, kukru-aromatic], burāšu-juniper, atā’išu-plant, ḫašû-thyme, saḫlû-cress, kasû-tamarind, amānu-salt, urnû-mint (and) tamarisk leaf — you pound together these nine drugs, you steep them in good wine and prime-quality beer, in the evening you leave (the mixture) out overnight under the stars, in the morning you heat it up, you filter it, you let it cool, (and then) you pound together seven grains of errû-colocynth shoot (and) seven grains of anzaḫḫu-frit, you crush them into (the mixture), you have him drink it before sunrise, (and) you make him vomit with a feather. If you have not seen any improvement, you pour (the mixture) into his anus, (and then) he will recover. +62148 If a man eats bread (and) drinks beer, but he is not satisfied, his internal organs are swollen, (and) [his belly] cannot accept anything, according to its sign, he suffers from bibiktu-disease: you soften ox dung in water, you anoint him, [. . .] date, karašu-leek (and) errû?-colocynth. He will not be able to eat bread or beer, but he will drink water from a well for seven days. +If ravenous hunger has seized a man: you leave one litre of prime-quality beer out overnight under the stars, in the morning [. . .] . . . [. . .]. +62151 If a man is extremely tired, and more specifically he is inflated with flatulence (lit. wind), and he does not [. . .] . . . [. . .] he continually bathes in the sap of kasû-tamarind, [. . .] salt, tīyatu-plant [. . .] . . . [. . .]. +62153 If a man takes (lit. drinks) a drug (and) does not throw up, but he is distended: hog bristles [. . .] you heat up water and oil, (and) he swallows them until he is satisfied . . . [. . .]. +62156 If a man takes (lit. drinks) a drug, he does not throw up, (and) he does not have a bowel movement, that man suffers from zēzēnu-disease: in order to heal him, [. . .] sīḫu-wormwood, [argannu-conifer], barīrātu-sagapenum, kukru-aromatic, burāšu-juniper, ṣumlalû-aromatic, kanaktu-aromatic, suādu-aromatic in water from a well, you pour it into his anus while it is still warm, you anoint him with ten measures of kukru-aromatic, then [he will void] his internal organs, [and he will recover]. +62158 If paralysis seizes a man, so that he cannot let anything come down: you heat up prime-quality beer in a tangussu-vessel, you put salt in it, (and) you pour (the mixture) into his anus, (then) you wrap your finger in linen, you coat it with salt, you rub his anus, (and) you put pubic hair from an old woman in the middle of his mouth; (then) he will get better. +62160 If a man drinks prime-quality beer, and then his lower extremities are impaired (lit. struck), (and his) vision is diminished: in order to heal him, pure plant seed, ēdu-plant seed, tamarisk seed, amḫaru-plant seed (and) maštakal-plant seed — you pound together these five drugs, you stir them into wine, he drinks them on an empty stomach, and then he will get better. +62164 If a man drinks beer, and then he is continually seized by his head, he keeps forgetting his words, in the midst of speaking he constantly corrects himself, (and) he cannot form a thought, that man has ‘constantly starring eyes’: in order to heal him, imḫur-līm-plant, imḫur-ešrā-plant, tarmuš-lupin, ḫašû-thyme, pure plant, ēdu-plant, sea algae, nuḫurtu-plant, egingīru-rocket seed, kamkadu-plant, elikulla-plant — you pound together these eleven drugs, you leave them out overnight in oil and beer before Gula, he drinks them in the morning, before sunrise, before anyone has kissed him, and then he will get better. +62168 If a man’s chest is diseased, and he continually has particles (lit. dust) (in his throat) as if it were an obstruction, he is short tempered whenever he speaks, (and) he continually vomits up bile, that man suffers from bišīt libbi-disease (lit. ‘stuff in the belly’): in order to heal him, you have him drink ‘dog’s tongue’ plant in beer on an empty stomach, he continually bathes in the sap of kasû-tamarind, you pour šunû-tree juice into his anus, he sucks up lentil flour (and) urnû-mint through a reed straw into his mouth, you mix ṭūru-opopanax, fat, date, burāšu-juniper (and) kukru-aromatic together, you smear (the mixture) on a piece of leather, (and) you bandage him with it. +62170 DITTO (= you have him drink) white plant in oil, DITTO (= he continually bathes) in the sap of kasû-tamarind, DITTO (= you pour into his anus) urnû-mint and the sap of kasû-tamarind (as well as) kukru-aromatic, DITTO (= he sucks up through a reed straw into his mouth) burāšu-juniper (and) kukru-aromatic, you mix lipāru-tree leaf, šunû-tree leaf, ēru-tree leaf from a house, dog fly (and) oil together DITTO (= you smear them on a piece of leather and you bandage him with it). +62172 You have him drink white plant in oil, you bathe him in the sap of kasû-tamarind, and then you pour pomegranate juice into his anus, and then he sucks up chickpea (and) kukru-aromatic, and then you pound together burāšu-juniper, ṭūru-opopanax, the resin of baluḫḫu-aromatic, tamarisk (and) pure plant, you mix them in fat, you bandage his chest (with the mixture), and then he will get better. +62174 He drinks ‘dog’s tongue’ plant in beer, DITTO (= you bathe him) in the sap of kasû-tamarind, DITTO (= you bandage him with) burāšu-juniper, kukru-aromatic, ṣumlalû-aromatic, all (these) aromatics, (as well as) lipāru-tree leaf (and) šūšu-liquorice leaf. +62186 If piercing pain continually afflicts him in the chest, and particles (lit. dust) continually block up (his throat) like an obstruction, he vomits up bile whenever he belches, (and) he is short tempered whenever he speaks, that man suffers from bišīt libbi-disease (lit. ‘stuff in the belly’), (and consequently) he is unable to accept fish, šūmū-garlic, beef, [pork] or brewer’s beer, (and) he is weakened by this: [half a litre] of saḫlû-cress, half a litre of kukru-aromatic, half a litre of burāšu-juniper, [half a litre of flax seed], half a litre of kanaktu-aromatic, half a litre of suādu-aromatic, half a litre of qutrātu-plant seed, half a litre of kasû-tamarind, half a litre of šunû-tree seed, [half a litre of kiššanu-pulse], half a litre of pappasītu-mineral, half a liter of kamantu-plant seed [. . .] ten measures of the resin of baluḫḫu-aromatic, ten measures of sea algae, [one litre of wheat flour, one litre of date, one litre of fine beer spice (and) one litre of coarse flour — you crush and sift together these] twenty-one drugs, [you boil them down to a paste in beer, you smear (the mixture) on a piece of fabric, you bandage him with it for one-third of nine days, on the fourth day you remove it and you examine him]. If [the boil is white, his belly will calm down. If the boil is red, his belly will retain heat. If the boil is green-yellow, acute fever keeps coming back to him. If the boil is black, it will make him sick, and he will not recover. In order to soothe the boil, you crush (and) sift ‘field lump’ plant (and) mud] that has been reached by sunlight, [you knead them in the sap of kasû-tamarind (and) you bandage him (with the mixture). Afterwards, he drinks saḫlû-cress in beer (and) while he drinks it], he bathes [in ēru-tree juice], tamarisk (and) maštakal-plant, and then he will recover. +[Alternatively, . . .] he drinks it in beer on an empty stomach, and then he will recover. +62192 [Alternatively], you pound together [. . .] (and) horned alkali, you kneed them in prime-quality beer, you smear (the mixture) on a piece of leather, (and) you bandage him with it. [. . .] you knead it [. . .] DITTO (= you smear the mixture) on a piece of leather, (and you bandage him with it). [. . .] you knead it [. . .] you bandage him on the epigastrium with it, and then he will recover. [. . .] you knead it in strong vinegar, you bandage his epigastrium with it, and then he will recover. [. . .] you dry, crush (and) sift [. . .] (and) urânu-fennel, you knead them in beer DITTO (= you bandage his epigastrium with it, and then he will recover). +62194 [Alternatively], you pound together [. . .] ḫašû-thyme, atāʾišu-plant, black cumin, tarmuš-lupin [. . .], he drinks them in beer, (and thereby) you remove the heat from his belly, and then he will recover. +62200 If someone [. . .], he regularly spits up blood along with his phlegm, he suffers from kiṣirti libbi-disease, he has UD.DA SA₂.SA₂ fever, his belly suffers from qerbēnu-disease (lit. ‘internal disease’): you crush urnû-mint, gazelle dung, qutru-plant seed, maštakal-plant seed, kukru-aromatic (and) two measures of sea algae, you boil them down in water from a well, (then) you dry (and) crush (the mixture) over and over again, you boil it down in date juice in a jar, you smear (the mixture) on a piece of fabric, (and) you bandage his epigastrium for a day and a night with it, you remove it, and then you draw water from a well. (Next) you pound white plant, you have his tongue seize it, he drinks it, (and) he will vomit. You bandage him (again) (and) you have him continually drink (the well water) (and), after he has finished drinking it, you crush half a litre of tamarisk seed, half a litre of fox-vine, half a litre of burāšu-juniper, half a litre of date (and) half a litre of wheat flour, you boil them down in the sap of kasû-tamarind, (then) you dry (and) crush (the mixture) over and over again, you boil it down in date juice in a jar, you smear it on a piece of fabric, (and) you bandage him with it for a day and a night. +62205 Alternatively, you crush pomegranate leaf, lipāru-tree leaf, leaf of a male pillû-mandrake, turtle shell (and) the resin of baluḫḫu-aromatic, you boil them down in date juice in a jar, (then) you dry (and) crush (the mixture) over and over again, you boil it down in beer and oil in a jar, you smear it on a piece of fabric, (and) you bandage him with it for a day and a night. (Next) he drinks the powder of tīyatu-plant in beer on an empty stomach. You crush a third of a litre of pigeon droppings, a third of a litre of kamantu-plant seed (and) a third of a liter of kalbānu-plant fruit, you boil them down in the sap of kasû-tamarind, (then) you dry (and) crush (the mixture) over and over again, you boil it down in date juice in a jar, you smear it on a piece of fabric, (and) you bandage him with it for a day and a night. +62208 Alternatively, you crush half a litre of ēdu-plant seed, half a litre of fresh ‘field lump’ plant, half a litre of bat guano (and) half a litre of emmer flour, you boil them down in water from the river, (then) you dry, crush (and) sift (the mixture) over and over again, you boil it down in date juice in a jar, you smear it on a piece of fabric, (and) you bandage him with it for a day and a night. He drinks fox-vine seed in beer on an empty stomach, (then) you heat it up in water, (and) you wash him with it. +62210 Alternatively, he drinks saḫlû-cress in beer, (and then) you crush qutru-plant seed, ēru-tree seed, tamarisk seed (and) kukru-aromatic, you boil them down in the sap of kasû-tamarind, (then) you dry (and) crush (the mixture) over and over again, you boil it down in date juice in a jar, you smear it on a piece of fabric, (and) you bandage him with it for a day and a night. +62213 Alternatively, you crush burāšu-juniper, kukru-aromatic, ṭūru-opopanax, ṣumlalû-aromatic, barīrātu-sagapenum, baluḫḫu-aromatic, cedar, cypress (and) ballukku-aromatic, you boil them down in the sap of kasû-tamarind, (then) you dry (and) crush (the mixture) over and over again, you boil it down in date juice and beer in a jar, you smear it on a piece of fabric, (and) you bandage him with it for a day and a night, (then) he drinks alum in beer. +62217 Alternatively, you crush kūru-plant leaf, pure plant leaf, maštakal-plant leaf, stalk of karašu-leek, pomegranate fruit, ḫaluppu-tree seed (and) poplar leaf, you boil them down in the sap of kasû-tamarind in a jar, you smear (the mixture) on a piece of fabric, (and) you bandage him with it for a day and a night, (then) you heat up (the mixture) in water, (and) you wash him with it. He drinks these drugs in oil and beer? on an empty stomach, you make him vomit, and then he eats (and) drinks good things, while standing? constantly in the doorway? for a whole day and night, without lying down in his bed. In the morning you wash him with warm water, (and) you anoint him with warm oil. You repeat (this procedure) on him for three days. +62220 If a man regularly spits up blood along with his phlegm, that man suffers from tašnīqu-disease: in order to heal him, a third of a litre of fat, a third of a litre of date, a third of a litre of ṭūru-opopanax, a third of a litre of kukru-aromatic, a third of a litre of burāšu-juniper, a third of a litre of baluḫḫu-aromatic, a third of a litre of sesame husk (and) a third of a litre of tamarisk seed — you crush together these eight drugs, you moisten (the mixture) with ghee, you smear it on a piece of leather, you bandage him with it front and back, over the next three months, until he improves, and when you say so, he will take the bandage off; then he will get better. +62226 If someone suffers from kiṣir libbi (lit. ‘knotted-up stomach’), his belly does not let him accept bread and beer, he regurgitates into his mouth (and) his stomach pierces him: in order to heal him, half a litre of saḫlû-cress, [half a litre] of kukru-aromatic, half a litre of burāšu-juniper, half a litre of qutru-plant, half a litre of kasû-tamarind, half a litre of pappasītu-mineral, half a litre of nīnû-mint, [half a litre] of kamantu-plant, half a litre of date, half a litre of fine beer spice, half a litre of malt flour, half a litre of chickpea flour, half a litre of coarse flour, half a litre of wheat flour, a third of a litre of pigeon droppings, a third of a litre of erišti eqli-plant, ten measaures of bitter-plant, ten measures of sea algae — you crush and sift together these [sixteen] drugs, you boil them down to a paste in beer in a tangussu-vessel, you smear (the mixture) on a piece of leather, you bandage his epigastrium with it for three days, (and) his belly will let him accept bread and beer; then he will get better. +62228 [If a man] suffers from kiṣir libbi-disease (lit. ‘knotted-up stomach’), his belly does not let him accept bread and beer, he regurgitates into his mouth, (and) he vomits constantly: in order to heal him, you pound half a litre of date juice, [half] a litre of the sap of kasû-tamarind (and) ten measures of nīnû-mint, you put them all together, (and) you have him drink (the mixture) on an empty stomach. Afterwards, he drinks a third of a litre of garum, he will void from his anus, then his belly DITTO (= will let him accept) bread and beer, (and then he will get better). +[Alternatively], you pound mountain salt (and) amānu-salt together, he drinks them in beer on an empty stomach, and then he will get better. +62231 Alternatively, you pound roasted barley flour, ḫarūbu-carob flour (and) date skin, you have him drink them in beer on an empty stomach for two days. He should not drink water (but) you sprinkle his epigastrium with water, and then he will get better. +62237 [If a man’s] belly does not let him accept bread and beer, his flesh continually sags (and) flatulence (lit. wind) circulates in his anus: in order to heal him, you mix (and) crush together half a litre of date juice, half a litre of the sap of kasû-tamarind, [two? shekels?] of vinegar, two shekels of nīnû-mint, three shekels of pressed oil (and) three shekels of mountain honey, you leave (the mixture) out in the evening overnight under the Goat-star, in the morning, you heat it up, you filter it, you let it cool, you keep it covered (and) afterwards, he drinks it. You fill (a vessel) with water and beer, you put sīḫu-wormwood, argannu-conifer, barīrātu-sagapenum, kasû-tamarind, kasû-tamarind leaf (and) šunû-tree seed in it, you heat up (the mixture), you filter it, you bring it together into a lotion, and then you wash him in it, (and) you anoint his body with oil. You pound fox-vine (and) ‘dog’s tongue’ plant, (and) you have him drink them in beer. You dry lipāru-tree leaf (and) šūšu-liquorice leaf, you crush (and) sift them together, you mix them in fat, you smear (the mixture) on a piece of leather, you bandage him with it, and then he will get better. +If a man’s epigastrium hurts him, (and) he vomits up bile whenever he belches, that man suffers from ‘internal disease’. +Second tablet of (the series called) “If someone suffers from phlegm, which has turned into gastric constriction.” +Palace of Aššur-ban-apli, king of the universe, king of the land of Aššur, on whom Nabû and Tašmētu have bestowed wisdom. +He acquired for himself shining eyes, the pinnacle of scholarship. +Of the kings who came before me, none were able to comprehend these tasks. +Prescriptions (organised) from head to foot, gleanings from extraneous materials, technical lore +(and) whatever pertains to the great medical knowledge of Ninurta and Gula, +I have written on tablets, checked, collated, and +deposited them in the middle of my palace for my reading and recitation. +[Its ritual: you take date palm frond which sways without wind, from the north side (of the tree), you twist it seven times to the right, seven times to the left, you tie on] seven and seven knots, [you recite the incantation (and) you tie it to his temple]. +62251 Incantation: “He seized the temple. [He seized the straight (part of the) head]. He seized the bold? (part of the) head. [He seized it, he seized it], Adapa, the wise man [of Eridu], seized the temple. [He seized the bold? (part of the) head.” Incantation formula]. +62253 Its ritual: [you twist together] red wool, [you tie on seven and seven knots, (and) with each of (these) knots] you string on a piece of SAG.DU-stone, [(then) you recite] the incantation [seven times (and) you tie (the string) to his temple]. +62255 Incantation: “ara tu’e ara [batu’e tila tu’u] šu dudumeš šu nene’ameš Eridug’a muntum” [Incantation formula]. +62257 Its ritual: [you take] date palm frond which sways without wind, from the north side (of the tree), you tie on [seven and seven knots], you recite the incantation seven times, you tie it to his temple, and then [he will recover?]. +62260 [Incantation]: “surruga sumahu maktu ti’ena ḫatru [ḫatrumma] kinrešna ḫatri ukkištum sinanna [ku šabdim] lupitu šabkim antasurra” Incantation formula. +62262 [Incantation: “ara] tu’e dipara tu’e [karrab] ḫatara ḫatra” Incantation formula]. +62264 [Incantation: “ara? bašera?] ara bašera? [x x raḫ ..." Incantation formula]. +62266 [O Asalluḫi], it seized the smitten [head! It seized it! It seized it completely! It seized it completely!” Incantation formula]. +62268 Its ritual: [xx]x dark ṣurru-obsidian, male and female šubû-stone xx] ḫulālu-agate (and) green šubû-stone, [(and) you tie it to his temple]. +62272 Incantation: “[May] the temple [bring] his temple [back (to health), may] the eye [bring] his eye [back (to health), may] the middle (of the head) [bring] his middle (of the head) [back (to health)]. May he be able to shine, may he be able to shine.” [Incantation formula]. +62291 tr.en.(1 1-3): [...] you daub (his eyes). 3’[...] ... you daub (his eyes). +62295 tr.en.(1 4-7): [...] you pound [in] oil, ditto. [...], ditto (=you daub his eyes). [...] you daub his eyes. +62300 tr.en.(1 8-12): [...] black [frit] mūṣu-stone, zalāqu-stone, carnelian, ...-stone, [...] tin, sardonyx, seeds of tamarisk, seeds of ēru-tree. [...] you crush these [drugs] together. Sprinkle, and pound (them) in kidney fat of a black ox [ – like (you pound) kammu-tanning-fungus over copper – and] you regularly daub his eyes, and he will get better. +62302 tr.en.(1 13-4): [If a man] constantly [sees a flash of light:] he should say three times as follows: ‘I belong to Enlil and Ninlil, [I belong to Ištar and Nanaya?].’ He says this, then he should recover. +62304 tr.en.(1 15-6): [If ... ] you take [...] which stands [on the right] and you burn (it) in the fire. [...] You pound (it) [in] honey and ghee. You daub his eyes and then he should get better. +62308 tr.en.(1 17-20): [...] in order that [the evil of a flash of light] does not approach a man. You set up a holy water vessel (and you put) in (it) tamarisk, maštakal-plant, [(...) sikillu-plant, date palm], ēru- tree, ašūhu-pine, apple, a fig, šunû- tree, male and female nikiptu-plant [... and let (them) stay under a star (= stay overnight). In] the morning, in front of the Sun-god, in a friendly house you wash him. [In oil of asu- aromatic you mix] kalû-paste, kalgukku-red paste, algae, 20you anoint him and he shall look upon silver and gold, and then the evil of a flash of light will not approach a man. +62311 tr.en.(1 21-3): [If ...] ... you throw in well water [tamarisk, maštakal-plant, date palm], apple, a fig, ašūhu-pine. [ (...) and let (them) stay under a star (= stay overnight). In] the morning [you mix] kalû-paste, kalgukku-red paste in oil of ballukku-aromatic. [You anoint him and you ...] pure cloth, (and then) the evil of a flash of light will not approach a man. +62318 tr.en.(1 2-7): If a supporter-of-[evil seized] a man [...] You shall have either a man or a woman climb on to the roof, and [...]. May (it) be left behind. In the night, as soon as the sun [sets ...]. You set out constantly small heaps of flour in front of the window [...]. They shall not open it [...]. and that night, the reclining bed [...] +62322 tr.en.(1 8-10): If a supporter-of-evil seized a man: a potion, a bath [and ...]. Alternatively: (=if a supporter-of- evil seized a man) and ummu-fever persists constantly in his body, and he growls loudly [...], and he sweats. You heat up maltster- water and human urine, cedar, burāšu-juniper, [tree-cone ...] in a tannour-oven. It (the mixture) shall be continually drenched, and [you ...] 10 SILA-measures of ašāgu- acacia [...]. +62329 tr.en.(1 12-8): Incantation: O hero Asalluhi, may this eye be adjured, [may the supporter-of- evil be adjured!] O Šazu (Marduk), may this eye be adjured, [may the supporter-of-evil be adjured!] / (AI) O hero of Enki, ditto! O hero (of) Enki, may this eye be adjured, [may the supporter-of-evil be adjured!] / (AI) O hero Šazu, ditto! O hero Ninurta, may this eye be adjured, [may the supporter-of-evil be adjured!] My father (var. Dāmu), the first-born son [of Nabû speaks to him.]/ ‘My son, the decision has been made (for this case): the man can not see!’ The asû- physician (is) a judge (who) cannot [decide this case!] / (AI) The attending (lit. touching) asû-physician cannot decide this [case]. Incantation spell. +tr.en.(1 19): [It is an invocation against] the supporter-of-evil! +62333 tr.en.(1 20-22): Its medical application: you thread seven ... on a cord of red wool [...] [you wrap] imhur-līm-plant [...] sikillu-plant, kiškanû-plant, tamarisk seed [...], you bind it on his forehead [...] +62341 Incantation: “The seed plough . . . [. . .] girgiššu-boil . . . [. . .] the attendant cultivated the field, (but) no . . . [. . .] potash [. . .] the field [. . .] . . . of the attendant should not be present [. . .] like potash (on the fields), it should not come out [. . .] the girgiššu-boil should not be brought into existence [. . .]. +[. . .] girgiššu-boil [. . .]. +[. . .] . . . [. . .] +62346 [If a man’s head] is full of sweet lesions (due to) sunburn: you mix fatty tissue [of errû-colocynth, stone of errû-colocynth (and) xxxx] in cedar oil (and) [you anoint] his head [repeatedly]. +62348 [Alternatively], you dry (and) pound [the plant?, which? is like?] ēru-tree (and) murrānu is its name, [you anoint his head repeatedly] three times (with it) in [cedar oil], (and then) he should smear off (the anointment) with a cloth of date palm fiber (which) [he should burn once he cleaned himself]. +62350 [Alternatively], you dry (and) pound (a drug), its name is bitter-plant, you mix it in water, [you anoint his head repeatedly], (and then) he should smear off (the anointment) with a cloth of date palm fiber (which) he should burn once he cleaned himself. (Afterwards) you mix imḫur-līm-plant in cedar oil (and) [you anoint him repeatedly]. +62355 If a man’s head is full of sweet lesions: you parch pig bristle, salt, coarse flour (and) sheep bone, you shave his head, you anoint it with oil (and) you scatter (the drugs over the anointment). You anoint (his head) with oil, you pound white plant (and) you scatter it (over the anointment). You dry, crush (and) scatter root of errû-colocynth (over his head). You parch together, pound (and) scatter malt flour, coarse flour (and) sheep bone (over his head). You heat up (and) pound together annuḫaru-mineral (and) alum over and over again, you anoint (his head) repeatedly with oil (and) you scatter? (the drugs over the anointment). [You roast (and) scatter xx] (over his head). You anoint (his head) [with] vinegar, you pound mint (and) you scatter it (over the anointment). You knead river mud in date juice (and) you put it on as a bandage. You roast kalbānu-plant, you anoint (his head) with ghee (and) [you put it on as a bandage]. You pound (and) scatter [xxx] (over his head). You pound (and) scatter pomegranate (over his head). You knead sheep dung in beer (and) you put it on as a bandage. You parch (and) pound [xx]x (and) you put it on as a bandage. +62357 [If a man’s] head is full of sweet lesions: you shave his head, you pound saḫlû-cress, you put it all together with ten shekels of [baluḫḫu-aromatic] resin, five shekels of ṭūru-opopanax, [ten shekels] of horned uḫūlu-alkali, kukru-aromatic (and) burāšu-juniper, you mix them in vinegar (and) you bandage him [for five days]; then he will recover. +62359 Alternatively, you burn amānu-salt, you combine copper? patina? (and) alum together, you mix them (all) in vinegar, you bandage him (with the mixture) and you do not remove it for three days. [While] you remove it, you wash him with warm urine, you anoint him with bappiru?-bread flour? (and) cedar blood, for five days you scatter these drugs (over the anointment and) you bandage him (with them); then he will recover. +62361 Alternatively, you pound rušruššu-plant, white plant, peel of pomegranate, date stone, ‘field lump’ plant, roasted? saḫlû?-cress, fruit of mint, nuḫurtu-plant (and) black cumin in a mortar, you anoint him repeatedly with bappiru?-bread flour? (and) cedar blood, you scatter these drugs (over the anointment and) [you bandage him] (with them); then he will recover. +62363 Alternatively, you knead warm urine of an ox in strong vinegar, you bandage him for three days [(x)] ... xxxx (and) you place it over the lesion. You parch (and) pound būšānu-plant (and) date stone [x(x)]xxx ... x (and) you scatter it (over the lesion). +62365 Alternatively, [...] sour pomegranate, black cumin [...] xx honey xx, you heat them over fire [(x)]xx you wash (and) shave his head [...] xxx you anoint? him; then he will recover. +62367 [If] a man’s head is full of sweet lesions [...]. +62372 If? a man? [...] his? head? [...]. +62374 Alternatively, you crush (and) sieve horned uḫūlu-alkali [...]. Alternatively, [...] his head with warm cow urine [...]. +If the middle of a man's heaad constantly causes him a stingin pain, [you anoint] his cranium [x x x x x x]. +Fourth tablet of (the series called) "If a man’s cranium holds heat." +Palace of Aššur-ban-apli, king of the universe, king of the land of Aššur, on whom Nabû and Tašmētu have bestowed wisdom. +He acquired for himself shining eyes, the pinnacle of scholarship. +Of the kings who came before me, none were able to comprehend these tasks. +Prescriptions (organised) from head to foot, gleanings from extraneous materials, [technical] lore +(and) whatever pertains to the great medical knowledge of Ninurta and Gula, [I have written] on tablets, [checked, collated, and] +[deposited them] in the middle [of my palace] for my reading and recitation. +62385 Incantation: “[May the temple bring] his temple [back (to health), may the eye bring his eye back (to health), may] the middle (of the head) [bring] his middle (of the head) [back (to health). May he be able to shine, may he be able to shine.” Incantation formula]. +62388 Its ritual: [you twist together] male ašlu-rush [(and) gazelle sinew, you tie on seven and seven knots] (and) with each of (these) knots you recite the incantation. You wrap [male and female ḫallulāyu-insect (and) ..., which flies over the field], around the knots in red wool [(and) you tie (the string) to his temple]. +62391 tr.en: +62395 [If a man’s left ear is affected, it is full of wind (and) inflamed: on the fifteenth day] of the sixth month, you heat up goose fat (and) while it is still hot, you pour it into his ears]. (Then) you heat up [goose meat], (and) he should eat it. [You pour cedar oil on his head], (and then) he should eat [ḫibṣu-preparation in saḫlû-cress]. diff --git a/tf/0.3/trans.tf b/tf/0.3/trans.tf new file mode 100644 index 0000000..815953f --- /dev/null +++ b/tf/0.3/trans.tf @@ -0,0 +1,1484 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=whether a line has a translation +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=int +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +59314 1 +1 +59317 1 +1 +1 +59323 1 +1 +59326 1 +59328 1 +59331 1 +1 +59340 1 +1 +1 +59346 1 +1 +59350 1 +1 +59358 1 +1 +59361 1 +1 +1 +1 +1 +59367 1 +59370 1 +1 +59373 1 +59375 1 +1 +1 +1 +59381 1 +59383 1 +59385 1 +59387 1 +59389 1 +59391 1 +1 +1 +59397 1 +59400 1 +1 +59408 1 +1 +59412 1 +1 +1 +1 +1 +59418 1 +59422 1 +59436 1 +1 +59441 1 +1 +1 +59450 1 +59452 1 +1 +1 +59456 1 +59458 1 +1 +59462 1 +59464 1 +59467 1 +59469 1 +59472 1 +59474 1 +1 +1 +59478 1 +1 +1 +59482 1 +1 +59485 1 +59487 1 +59489 1 +1 +1 +1 +1 +1 +59496 1 +1 +1 +1 +1 +59502 1 +59505 1 +1 +1 +1 +1 +1 +1 +1 +1 +59515 1 +59517 1 +59519 1 +59521 1 +59523 1 +59525 1 +1 +59528 1 +59531 1 +59538 1 +1 +1 +59543 1 +1 +59547 1 +59549 1 +59551 1 +59553 1 +59557 1 +59560 1 +59562 1 +1 +1 +1 +59567 1 +1 +59570 1 +1 +1 +1 +59575 1 +1 +1 +59579 1 +1 +59582 1 +1 +59586 1 +1 +1 +1 +1 +59592 1 +1 +1 +59597 1 +1 +59600 1 +1 +59604 1 +1 +1 +59608 1 +1 +1 +1 +59614 1 +1 +59617 1 +1 +1 +1 +59622 1 +1 +1 +1 +59627 1 +59629 1 +1 +1 +1 +59634 1 +59637 1 +1 +59640 1 +1 +59650 1 +59654 1 +59657 1 +59659 1 +1 +59663 1 +59665 1 +59667 1 +59670 1 +59672 1 +59677 1 +1 +1 +59681 1 +59688 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +59702 1 +59704 1 +59706 1 +1 +59709 1 +59711 1 +59714 1 +59719 1 +59721 1 +59725 1 +59732 1 +1 +59736 1 +1 +59739 1 +59742 1 +59745 1 +1 +1 +1 +59750 1 +59756 1 +59762 1 +1 +59770 1 +1 +59774 1 +1 +59778 1 +1 +59786 1 +1 +59793 1 +59802 1 +59804 1 +59810 1 +1 +59813 1 +59816 1 +59818 1 +59820 1 +1 +59823 1 +1 +1 +1 +59828 1 +1 +59831 1 +59834 1 +1 +59839 1 +59841 1 +59846 1 +59848 1 +1 +1 +59853 1 +1 +59860 1 +1 +59869 1 +59871 1 +59878 1 +1 +1 +59884 1 +1 +1 +59888 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +59900 1 +59902 1 +59904 1 +59908 1 +1 +1 +1 +59913 1 +59916 1 +1 +59919 1 +1 +59922 1 +1 +59926 1 +1 +1 +1 +59932 1 +1 +59935 1 +1 +1 +1 +1 +59944 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +59970 1 +59972 1 +59978 1 +59980 1 +59982 1 +1 +1 +1 +1 +1 +59989 1 +59991 1 +59994 1 +59996 1 +1 +1 +60000 1 +60003 1 +1 +1 +60007 1 +1 +1 +60011 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +60023 1 +60025 1 +1 +1 +1 +1 +1 +60032 1 +1 +1 +1 +1 +1 +1 +60040 1 +1 +1 +1 +1 +1 +1 +60048 1 +60052 1 +1 +1 +1 +60057 1 +1 +1 +1 +60064 1 +60066 1 +1 +60070 1 +60072 1 +60074 1 +60076 1 +60078 1 +1 +1 +60083 1 +1 +1 +60088 1 +60091 1 +1 +1 +60101 1 +60105 1 +60107 1 +60110 1 +1 +60113 1 +1 +60117 1 +60119 1 +1 +1 +60124 1 +60126 1 +60128 1 +60130 1 +1 +60134 1 +1 +60137 1 +60142 1 +1 +60147 1 +60153 1 +60155 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +60166 1 +1 +1 +1 +60172 1 +60175 1 +60177 1 +1 +60180 1 +60182 1 +1 +60185 1 +60189 1 +60191 1 +60193 1 +1 +60196 1 +1 +60199 1 +60201 1 +60203 1 +60207 1 +60211 1 +60213 1 +60217 1 +60219 1 +60222 1 +60225 1 +60227 1 +60229 1 +60231 1 +60233 1 +60235 1 +60237 1 +60240 1 +60242 1 +60244 1 +60246 1 +60249 1 +60251 1 +60253 1 +1 +60258 1 +60260 1 +60263 1 +60265 1 +60268 1 +1 +60271 1 +60273 1 +1 +60276 1 +60278 1 +60280 1 +1 +1 +60284 1 +1 +60288 1 +60290 1 +1 +60294 1 +60296 1 +60298 1 +60300 1 +60302 1 +60304 1 +60306 1 +60315 1 +60319 1 +60323 1 +60325 1 +60327 1 +60330 1 +60333 1 +60335 1 +60338 1 +60346 1 +60348 1 +1 +60356 1 +60358 1 +60366 1 +60369 1 +60371 1 +60373 1 +1 +60376 1 +60379 1 +60381 1 +60383 1 +60388 1 +60390 1 +60392 1 +60395 1 +60397 1 +60399 1 +60401 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +60461 1 +1 +1 +60468 1 +1 +60471 1 +60473 1 +1 +60485 1 +1 +60488 1 +1 +60491 1 +1 +1 +60495 1 +60499 1 +60502 1 +60504 1 +60508 1 +60513 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +60525 1 +60535 1 +60545 1 +1 +1 +60550 1 +60553 1 +60556 1 +60560 1 +60563 1 +60565 1 +60569 1 +60572 1 +60576 1 +60580 1 +60583 1 +60587 1 +1 +60590 1 +60592 1 +60594 1 +60596 1 +60598 1 +1 +1 +60602 1 +1 +60605 1 +60607 1 +60609 1 +1 +60614 1 +60616 1 +60619 1 +60621 1 +60623 1 +60625 1 +60627 1 +60629 1 +60631 1 +1 +1 +1 +60636 1 +1 +1 +1 +1 +60642 1 +1 +1 +1 +1 +60659 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +60670 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +60685 1 +1 +1 +1 +60691 1 +1 +1 +1 +1 +1 +1 +1 +1 +60701 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +60723 1 +1 +1 +1 +60730 1 +60735 1 +60739 1 +60743 1 +60749 1 +1 +1 +1 +1 +1 +1 +60757 1 +60763 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +60788 1 +60790 1 +60799 1 +1 +1 +60808 1 +60812 1 +60814 1 +60817 1 +60819 1 +60824 1 +60829 1 +60832 1 +60835 1 +60840 1 +1 +60846 1 +60848 1 +60850 1 +60852 1 +1 +60856 1 +1 +60859 1 +60862 1 +1 +60865 1 +1 +60871 1 +60876 1 +60880 1 +60883 1 +60885 1 +60888 1 +60890 1 +60894 1 +60896 1 +60901 1 +60905 1 +60907 1 +60909 1 +60912 1 +1 +1 +60920 1 +60923 1 +1 +60926 1 +60928 1 +60930 1 +60932 1 +60936 1 +60938 1 +60941 1 +60943 1 +60945 1 +60949 1 +1 +60952 1 +60955 1 +60957 1 +60960 1 +1 +1 +1 +1 +60966 1 +60975 1 +1 +1 +60979 1 +1 +1 +1 +1 +60986 1 +1 +1 +1 +1 +1 +60993 1 +60996 1 +1 +61000 1 +1 +1 +1 +1 +1 +61009 1 +1 +1 +61018 1 +1 +1 +1 +61028 1 +1 +1 +61039 1 +1 +1 +61047 1 +1 +61050 1 +61056 1 +1 +61063 1 +1 +1 +61068 1 +1 +1 +1 +1 +1 +61076 1 +61078 1 +1 +1 +1 +1 +61085 1 +1 +61107 1 +1 +1 +1 +1 +1 +1 +1 +1 +61117 1 +61119 1 +61121 1 +61124 1 +61126 1 +61129 1 +1 +61132 1 +1 +61135 1 +61137 1 +1 +1 +61143 1 +1 +1 +61147 1 +1 +1 +1 +1 +1 +1 +61157 1 +1 +1 +1 +1 +61166 1 +1 +61174 1 +1 +1 +1 +61184 1 +1 +1 +61191 1 +61196 1 +1 +1 +61204 1 +1 +61207 1 +61213 1 +1 +61219 1 +1 +61223 1 +1 +1 +61228 1 +61231 1 +1 +61249 1 +1 +61253 1 +1 +61256 1 +61258 1 +1 +61261 1 +61267 1 +1 +61273 1 +1 +1 +61277 1 +61283 1 +61293 1 +61301 1 +61304 1 +61306 1 +1 +61309 1 +61312 1 +61317 1 +1 +61327 1 +61329 1 +61331 1 +61334 1 +61336 1 +61338 1 +61340 1 +61343 1 +1 +1 +61351 1 +61354 1 +61356 1 +61358 1 +61362 1 +61369 1 +1 +61372 1 +61375 1 +61377 1 +1 +61380 1 +1 +61383 1 +1 +61386 1 +1 +61389 1 +61391 1 +1 +61394 1 +61399 1 +61402 1 +61406 1 +61409 1 +61413 1 +61418 1 +1 +1 +1 +1 +61424 1 +61426 1 +61428 1 +61430 1 +61432 1 +61434 1 +61436 1 +1 +1 +1 +1 +61442 1 +61444 1 +61446 1 +61448 1 +1 +61452 1 +61454 1 +61456 1 +1 +1 +61460 1 +61463 1 +61465 1 +61467 1 +61469 1 +61471 1 +61473 1 +61475 1 +61477 1 +61479 1 +61481 1 +61483 1 +61486 1 +1 +1 +61491 1 +61493 1 +61495 1 +61497 1 +61499 1 +61501 1 +61503 1 +1 +61506 1 +61508 1 +1 +1 +61514 1 +61517 1 +1 +61520 1 +61525 1 +61527 1 +61531 1 +61533 1 +1 +1 +1 +61538 1 +1 +61561 1 +1 +1 +1 +1 +1 +1 +61574 1 +61580 1 +1 +1 +1 +1 +1 +61589 1 +61592 1 +1 +61596 1 +1 +61600 1 +61602 1 +61604 1 +1 +1 +1 +61609 1 +61611 1 +1 +61614 1 +61617 1 +61620 1 +61624 1 +1 +61627 1 +61629 1 +61631 1 +1 +61634 1 +1 +1 +61638 1 +61641 1 +1 +61646 1 +1 +61657 1 +61663 1 +61668 1 +61670 1 +61672 1 +61674 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +61691 1 +61693 1 +61695 1 +1 +1 +61714 1 +61716 1 +61718 1 +1 +1 +1 +61723 1 +1 +1 +61727 1 +1 +1 +1 +1 +61733 1 +1 +1 +1 +1 +61739 1 +1 +1 +1 +61751 1 +61753 1 +61755 1 +1 +61758 1 +61760 1 +61762 1 +1 +1 +1 +61767 1 +1 +61770 1 +61772 1 +1 +1 +1 +1 +1 +1 +1 +1 +61783 1 +1 +1 +1 +61788 1 +1 +1 +1 +61794 1 +61798 1 +61801 1 +61803 1 +61808 1 +1 +61812 1 +61815 1 +61817 1 +61819 1 +61821 1 +61824 1 +1 +61827 1 +1 +1 +1 +61832 1 +1 +1 +1 +1 +61840 1 +1 +1 +61844 1 +1 +1 +1 +1 +61850 1 +61852 1 +61854 1 +1 +61857 1 +1 +1 +1 +1 +1 +61864 1 +61866 1 +1 +1 +1 +1 +61872 1 +1 +61875 1 +1 +1 +1 +1 +1 +1 +61883 1 +61886 1 +1 +1 +1 +61891 1 +1 +1 +1 +1 +61898 1 +1 +1 +1 +61906 1 +61914 1 +61917 1 +1 +1 +61922 1 +1 +1 +1 +1 +1 +61929 1 +1 +61940 1 +61942 1 +61945 1 +1 +1 +1 +1 +1 +1 +1 +1 +61955 1 +61957 1 +1 +61962 1 +1 +1 +61967 1 +61971 1 +61973 1 +61978 1 +61980 1 +1 +1 +1 +61985 1 +1 +61988 1 +61990 1 +1 +1 +61994 1 +61996 1 +61999 1 +62002 1 +62005 1 +62008 1 +62010 1 +62015 1 +62018 1 +62022 1 +62026 1 +62028 1 +62030 1 +1 +62033 1 +62035 1 +62039 1 +1 +62042 1 +62047 1 +62049 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +62060 1 +62062 1 +1 +62065 1 +62067 1 +62069 1 +1 +1 +1 +1 +1 +62076 1 +62078 1 +62081 1 +62086 1 +62088 1 +62091 1 +62093 1 +1 +1 +1 +1 +62099 1 +1 +62103 1 +62106 1 +62109 1 +62112 1 +1 +62115 1 +1 +62119 1 +62121 1 +62125 1 +62127 1 +62130 1 +62132 1 +62134 1 +62136 1 +1 +62139 1 +62146 1 +62148 1 +1 +62151 1 +62153 1 +62156 1 +62158 1 +62160 1 +62164 1 +62168 1 +62170 1 +62172 1 +62174 1 +62186 1 +1 +62192 1 +62194 1 +62200 1 +62205 1 +62208 1 +62210 1 +62213 1 +62217 1 +62220 1 +62226 1 +62228 1 +1 +62231 1 +62237 1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +62251 1 +62253 1 +62255 1 +62257 1 +62260 1 +62262 1 +62264 1 +62266 1 +62268 1 +62272 1 +62291 1 +62295 1 +62300 1 +62302 1 +62304 1 +62308 1 +62311 1 +62318 1 +62322 1 +62329 1 +1 +62333 1 +62341 1 +1 +1 +62346 1 +62348 1 +62350 1 +62355 1 +62357 1 +62359 1 +62361 1 +62363 1 +62365 1 +62367 1 +62372 1 +62374 1 +1 +1 +1 +1 +1 +1 +1 +1 +62385 1 +62388 1 +62391 1 +62395 1 diff --git a/tf/0.3/type.tf b/tf/0.3/type.tf new file mode 100644 index 0000000..8746ad7 --- /dev/null +++ b/tf/0.3/type.tf @@ -0,0 +1,90051 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=name of a type of cluster or kind of sign +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=str +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +grapheme +grapheme +grapheme +ellipsis +numeral +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +grapheme +reading +reading +reading +reading +reading +reading +reading +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +reading +reading +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +numeral +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +ellipsis +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +ellipsis +empty +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +ellipsis +grapheme +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +ellipsis +reading +reading +reading +wdiv +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +reading +reading +reading +ellipsis +grapheme +grapheme +empty +empty +ellipsis +reading +reading +reading +reading +reading +reading +ellipsis +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +ellipsis +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +ellipsis +reading +reading +reading +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +reading +grapheme +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +grapheme +reading +reading +reading +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +reading +reading +reading +reading +reading +ellipsis +reading +reading +reading +reading +reading +reading +numeral +grapheme +grapheme +grapheme +reading +numeral +reading +reading +numeral +reading +ellipsis +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +numeral +grapheme +grapheme +grapheme +grapheme +reading +grapheme +unknown +unknown +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +numeral +numeral +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +unknown +unknown +unknown +unknown +empty +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +grapheme +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +ellipsis +reading +grapheme +numeral +grapheme +grapheme +grapheme +reading +reading +reading +unknown +unknown +unknown +unknown +ellipsis +reading +reading +reading +grapheme +unknown +unknown +unknown +unknown +ellipsis +empty +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +unknown +unknown +unknown +unknown +unknown +ellipsis +reading +reading +grapheme +grapheme +reading +ellipsis +ellipsis +unknown +unknown +ellipsis +ellipsis +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +ellipsis +ellipsis +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +ellipsis +ellipsis +unknown +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +ellipsis +ellipsis +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +unknown +ellipsis +ellipsis +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +ellipsis +ellipsis +unknown +reading +reading +reading +reading +reading +ellipsis +ellipsis +unknown +grapheme +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +ellipsis +ellipsis +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +ellipsis +ellipsis +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +ellipsis +reading +reading +reading +reading +reading +reading +ellipsis +ellipsis +unknown +unknown +unknown +unknown +unknown +ellipsis +grapheme +reading +grapheme +grapheme +grapheme +ellipsis +grapheme +reading +grapheme +grapheme +ellipsis +grapheme +reading +reading +reading +reading +ellipsis +grapheme +grapheme +reading +reading +grapheme +grapheme +ellipsis +reading +reading +unknown +ellipsis +grapheme +grapheme +reading +reading +grapheme +grapheme +ellipsis +grapheme +reading +unknown +ellipsis +reading +reading +unknown +ellipsis +unknown +unknown +unknown +ellipsis +ellipsis +unknown +ellipsis +grapheme +grapheme +reading +reading +grapheme +ellipsis +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +unknown +unknown +reading +ellipsis +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +ellipsis +unknown +reading +reading +reading +wdiv +grapheme +reading +grapheme +ellipsis +grapheme +grapheme +reading +reading +grapheme +ellipsis +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +ellipsis +unknown +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +ellipsis +unknown +ellipsis +ellipsis +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +ellipsis +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +ellipsis +reading +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +ellipsis +grapheme +reading +grapheme +unknown +unknown +unknown +unknown +ellipsis +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +ellipsis +reading +reading +reading +grapheme +ellipsis +reading +grapheme +reading +ellipsis +grapheme +reading +reading +grapheme +ellipsis +grapheme +grapheme +ellipsis +grapheme +grapheme +ellipsis +unknown +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +reading +numeral +reading +grapheme +reading +numeral +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +numeral +reading +numeral +reading +numeral +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +unknown +unknown +reading +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +reading +numeral +reading +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +reading +numeral +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +numeral +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +unknown +ellipsis +ellipsis +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +ellipsis +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +unknown +unknown +unknown +ellipsis +grapheme +unknown +unknown +unknown +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +unknown +ellipsis +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +ellipsis +grapheme +ellipsis +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +reading +ellipsis +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +wdiv +unknown +ellipsis +unknown +unknown +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +wdiv +unknown +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +reading +reading +grapheme +reading +unknown +ellipsis +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +numeral +reading +grapheme +ellipsis +reading +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +ellipsis +reading +grapheme +reading +reading +numeral +grapheme +reading +reading +grapheme +reading +reading +reading +grapheme +reading +ellipsis +unknown +unknown +reading +reading +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +ellipsis +ellipsis +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +unknown +unknown +unknown +grapheme +grapheme +unknown +unknown +unknown +ellipsis +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +ellipsis +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +numeral +grapheme +unknown +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +ellipsis +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +ellipsis +grapheme +grapheme +unknown +unknown +unknown +unknown +numeral +grapheme +reading +reading +grapheme +reading +reading +reading +grapheme +reading +ellipsis +unknown +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +ellipsis +grapheme +grapheme +grapheme +reading +grapheme +unknown +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +ellipsis +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +unknown +ellipsis +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +wdiv +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +unknown +unknown +ellipsis +empty +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +wdiv +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +ellipsis +grapheme +numeral +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +unknown +unknown +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +ellipsis +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +numeral +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +unknown +unknown +unknown +unknown +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +ellipsis +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +ellipsis +reading +grapheme +grapheme +reading +reading +reading +grapheme +ellipsis +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +ellipsis +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +reading +reading +grapheme +numeral +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +unknown +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +ellipsis +unknown +wdiv +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +ellipsis +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +ellipsis +reading +grapheme +grapheme +reading +reading +ellipsis +unknown +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +ellipsis +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +ellipsis +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +numeral +grapheme +reading +grapheme +ellipsis +unknown +reading +reading +reading +reading +grapheme +grapheme +ellipsis +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +ellipsis +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +ellipsis +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +ellipsis +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +numeral +grapheme +reading +reading +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +unknown +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +ellipsis +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +ellipsis +reading +reading +reading +reading +reading +reading +ellipsis +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +wdiv +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +numeral +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +numeral +grapheme +grapheme +grapheme +reading +reading +reading +numeral +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +ellipsis +grapheme +ellipsis +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +ellipsis +unknown +reading +reading +reading +grapheme +unknown +unknown +ellipsis +grapheme +grapheme +grapheme +reading +grapheme +ellipsis +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +ellipsis +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +grapheme +ellipsis +unknown +grapheme +reading +unknown +unknown +ellipsis +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +ellipsis +grapheme +grapheme +ellipsis +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +ellipsis +unknown +reading +reading +reading +reading +reading +reading +reading +reading +ellipsis +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +ellipsis +unknown +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +ellipsis +numeral +grapheme +reading +numeral +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +ellipsis +numeral +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +reading +ellipsis +grapheme +ellipsis +unknown +unknown +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +wdiv +numeral +grapheme +grapheme +ellipsis +reading +ellipsis +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +empty +ellipsis +numeral +reading +numeral +reading +numeral +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +grapheme +reading +grapheme +numeral +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +ellipsis +unknown +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +ellipsis +unknown +unknown +ellipsis +grapheme +grapheme +grapheme +reading +ellipsis +unknown +reading +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +reading +reading +grapheme +ellipsis +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +ellipsis +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +ellipsis +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +ellipsis +unknown +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +ellipsis +unknown +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +ellipsis +grapheme +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +ellipsis +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +ellipsis +reading +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +ellipsis +grapheme +ellipsis +unknown +reading +reading +grapheme +ellipsis +unknown +reading +reading +ellipsis +grapheme +grapheme +ellipsis +reading +grapheme +reading +reading +ellipsis +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +ellipsis +grapheme +reading +reading +reading +ellipsis +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +reading +grapheme +ellipsis +unknown +ellipsis +unknown +reading +grapheme +grapheme +reading +reading +ellipsis +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +ellipsis +reading +reading +ellipsis +unknown +grapheme +reading +reading +ellipsis +reading +grapheme +grapheme +reading +reading +ellipsis +reading +grapheme +reading +grapheme +reading +reading +ellipsis +reading +reading +reading +reading +ellipsis +grapheme +grapheme +unknown +unknown +ellipsis +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +ellipsis +grapheme +reading +grapheme +grapheme +grapheme +reading +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +ellipsis +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +unknown +ellipsis +unknown +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +ellipsis +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +grapheme +reading +grapheme +ellipsis +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +unknown +ellipsis +unknown +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +empty +grapheme +grapheme +reading +ellipsis +grapheme +grapheme +reading +grapheme +grapheme +grapheme +unknown +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +ellipsis +reading +grapheme +grapheme +grapheme +reading +reading +reading +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +ellipsis +reading +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +unknown +ellipsis +grapheme +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +ellipsis +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +ellipsis +ellipsis +unknown +unknown +ellipsis +ellipsis +reading +reading +ellipsis +ellipsis +unknown +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +unknown +unknown +grapheme +unknown +ellipsis +ellipsis +unknown +grapheme +reading +reading +reading +grapheme +grapheme +reading +unknown +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +numeral +reading +grapheme +grapheme +ellipsis +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +wdiv +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +wdiv +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +wdiv +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +numeral +reading +grapheme +grapheme +reading +grapheme +reading +numeral +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +numeral +grapheme +reading +unknown +unknown +unknown +unknown +numeral +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +numeral +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +reading +numeral +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +reading +reading +numeral +grapheme +grapheme +numeral +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +reading +numeral +numeral +grapheme +reading +reading +grapheme +reading +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +reading +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +numeral +grapheme +reading +grapheme +grapheme +numeral +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +grapheme +grapheme +reading +numeral +numeral +grapheme +reading +reading +reading +numeral +numeral +grapheme +reading +grapheme +grapheme +numeral +numeral +grapheme +reading +grapheme +numeral +numeral +grapheme +reading +reading +reading +numeral +numeral +grapheme +grapheme +reading +numeral +numeral +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +grapheme +numeral +numeral +grapheme +reading +reading +reading +reading +grapheme +numeral +numeral +grapheme +reading +grapheme +grapheme +numeral +numeral +grapheme +reading +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +reading +numeral +numeral +grapheme +reading +grapheme +reading +grapheme +grapheme +numeral +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +numeral +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +unknown +unknown +unknown +unknown +unknown +grapheme +reading +reading +grapheme +grapheme +ellipsis +unknown +ellipsis +grapheme +grapheme +empty +empty +ellipsis +unknown +ellipsis +grapheme +ellipsis +unknown +ellipsis +unknown +unknown +empty +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +numeral +numeral +grapheme +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +reading +numeral +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +wdiv +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +wdiv +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +wdiv +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +unknown +unknown +unknown +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +wdiv +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +wdiv +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +unknown +unknown +unknown +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +wdiv +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +grapheme +grapheme +numeral +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +unknown +unknown +reading +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +reading +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +grapheme +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +grapheme +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +ellipsis +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +wdiv +reading +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +reading +wdiv +reading +reading +reading +reading +reading +reading +reading +reading +ellipsis +reading +wdiv +reading +reading +reading +reading +reading +wdiv +reading +reading +reading +wdiv +reading +reading +reading +reading +unknown +unknown +unknown +unknown +reading +reading +wdiv +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +wdiv +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +wdiv +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +empty +ellipsis +reading +reading +reading +reading +reading +reading +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +grapheme +numeral +reading +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +ellipsis +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +unknown +unknown +ellipsis +numeral +reading +reading +numeral +reading +unknown +ellipsis +grapheme +reading +reading +reading +reading +ellipsis +reading +grapheme +reading +grapheme +grapheme +numeral +reading +unknown +unknown +unknown +grapheme +reading +ellipsis +reading +grapheme +reading +reading +reading +unknown +unknown +unknown +unknown +reading +grapheme +numeral +reading +numeral +unknown +ellipsis +reading +reading +reading +grapheme +numeral +reading +numeral +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +unknown +unknown +grapheme +reading +wdiv +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +numeral +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +numeral +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +wdiv +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +ellipsis +unknown +unknown +unknown +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +grapheme +numeral +reading +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +ellipsis +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +unknown +ellipsis +unknown +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +numeral +reading +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +ellipsis +unknown +ellipsis +unknown +unknown +unknown +ellipsis +ellipsis +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +numeral +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +numeral +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +grapheme +reading +grapheme +reading +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +unknown +unknown +unknown +unknown +empty +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +reading +grapheme +reading +reading +reading +reading +grapheme +ellipsis +unknown +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +ellipsis +reading +reading +reading +grapheme +reading +grapheme +reading +ellipsis +reading +reading +reading +reading +reading +reading +ellipsis +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +reading +ellipsis +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +unknown +reading +grapheme +reading +unknown +unknown +grapheme +reading +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +ellipsis +grapheme +reading +grapheme +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +reading +grapheme +reading +grapheme +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +reading +numeral +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +numeral +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +numeral +reading +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +numeral +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +ellipsis +unknown +unknown +unknown +reading +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +ellipsis +unknown +unknown +unknown +unknown +ellipsis +unknown +reading +reading +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +reading +reading +reading +reading +unknown +unknown +unknown +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +numeral +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +unknown +unknown +unknown +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +unknown +unknown +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +unknown +unknown +unknown +unknown +grapheme +grapheme +reading +reading +reading +reading +reading +reading +ellipsis +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +unknown +ellipsis +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +ellipsis +unknown +unknown +unknown +unknown +unknown +reading +grapheme +reading +ellipsis +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +numeral +numeral +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +numeral +numeral +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +numeral +numeral +grapheme +reading +reading +reading +numeral +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +numeral +numeral +grapheme +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +reading +reading +reading +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +numeral +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +numeral +grapheme +unknown +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +ellipsis +numeral +grapheme +grapheme +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +numeral +numeral +grapheme +unknown +unknown +unknown +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +reading +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +grapheme +numeral +numeral +grapheme +unknown +unknown +unknown +unknown +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +unknown +ellipsis +grapheme +numeral +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +ellipsis +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +reading +ellipsis +numeral +grapheme +grapheme +grapheme +reading +numeral +numeral +grapheme +ellipsis +numeral +numeral +grapheme +grapheme +grapheme +grapheme +reading +numeral +numeral +grapheme +grapheme +grapheme +grapheme +reading +ellipsis +numeral +numeral +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +reading +unknown +ellipsis +grapheme +reading +reading +reading +ellipsis +unknown +unknown +ellipsis +ellipsis +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +numeral +numeral +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +grapheme +reading +grapheme +grapheme +numeral +numeral +grapheme +reading +grapheme +numeral +numeral +grapheme +grapheme +reading +grapheme +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +numeral +numeral +ellipsis +grapheme +reading +grapheme +grapheme +ellipsis +grapheme +reading +grapheme +grapheme +ellipsis +unknown +ellipsis +unknown +ellipsis +reading +reading +ellipsis +ellipsis +grapheme +reading +reading +ellipsis +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +ellipsis +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +ellipsis +unknown +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +numeral +numeral +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +numeral +numeral +grapheme +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +ellipsis +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +empty +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +numeral +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +numeral +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +numeral +numeral +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +numeral +numeral +grapheme +reading +reading +reading +reading +ellipsis +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +numeral +numeral +grapheme +reading +reading +reading +reading +ellipsis +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +ellipsis +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +unknown +unknown +unknown +reading +grapheme +reading +grapheme +grapheme +grapheme +unknown +unknown +unknown +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +numeral +numeral +grapheme +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +reading +grapheme +numeral +numeral +grapheme +reading +grapheme +numeral +numeral +grapheme +grapheme +grapheme +numeral +numeral +grapheme +reading +reading +reading +numeral +numeral +grapheme +reading +reading +reading +reading +reading +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +unknown +unknown +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +unknown +unknown +unknown +unknown +grapheme +grapheme +reading +grapheme +reading +unknown +unknown +unknown +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +reading +reading +unknown +unknown +unknown +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +reading +grapheme +reading +ellipsis +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +ellipsis +grapheme +reading +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +reading +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +unknown +unknown +unknown +reading +grapheme +grapheme +reading +unknown +ellipsis +unknown +reading +reading +reading +reading +grapheme +reading +reading +reading +unknown +unknown +reading +grapheme +grapheme +reading +reading +reading +ellipsis +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +unknown +unknown +reading +grapheme +grapheme +numeral +numeral +grapheme +reading +reading +reading +ellipsis +grapheme +reading +grapheme +reading +unknown +unknown +reading +grapheme +grapheme +numeral +numeral +grapheme +ellipsis +grapheme +reading +grapheme +reading +unknown +unknown +reading +grapheme +grapheme +numeral +numeral +grapheme +ellipsis +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +unknown +unknown +reading +grapheme +grapheme +reading +ellipsis +reading +grapheme +grapheme +reading +grapheme +reading +unknown +unknown +reading +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +reading +grapheme +reading +unknown +unknown +reading +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +unknown +unknown +reading +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +unknown +unknown +reading +grapheme +grapheme +ellipsis +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +unknown +unknown +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +numeral +numeral +grapheme +reading +grapheme +grapheme +numeral +numeral +grapheme +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +reading +grapheme +grapheme +unknown +unknown +unknown +reading +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +unknown +unknown +unknown +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +numeral +grapheme +wdiv +grapheme +numeral +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +wdiv +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +wdiv +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +wdiv +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +wdiv +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +unknown +unknown +unknown +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +empty +reading +grapheme +grapheme +ellipsis +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +wdiv +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +ellipsis +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +ellipsis +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +ellipsis +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +reading +grapheme +grapheme +ellipsis +grapheme +reading +grapheme +grapheme +numeral +grapheme +grapheme +reading +grapheme +grapheme +numeral +grapheme +grapheme +reading +grapheme +numeral +grapheme +grapheme +reading +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +reading +numeral +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +numeral +numeral +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +unknown +unknown +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +numeral +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +unknown +unknown +unknown +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +numeral +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +numeral +reading +grapheme +reading +numeral +reading +grapheme +reading +numeral +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +numeral +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +numeral +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +numeral +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +numeral +reading +grapheme +reading +reading +reading +grapheme +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +grapheme +numeral +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +empty +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +grapheme +reading +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +numeral +reading +grapheme +reading +reading +grapheme +reading +reading +reading +reading +unknown +unknown +unknown +unknown +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +reading +grapheme +reading +reading +grapheme +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +grapheme +unknown +unknown +unknown +unknown +reading +grapheme +numeral +grapheme +grapheme +reading +grapheme +numeral +grapheme +reading +reading +reading +reading +reading +numeral +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +unknown +unknown +unknown +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +reading +grapheme +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +reading +unknown +unknown +unknown +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +unknown +unknown +unknown +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +numeral +grapheme +grapheme +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +numeral +reading +numeral +numeral +grapheme +grapheme +reading +reading +reading +unknown +unknown +unknown +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +reading +ellipsis +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +reading +ellipsis +reading +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +reading +reading +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +ellipsis +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +ellipsis +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +ellipsis +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +unknown +ellipsis +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +ellipsis +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +ellipsis +reading +reading +reading +reading +reading +grapheme +grapheme +reading +ellipsis +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +reading +ellipsis +unknown +ellipsis +ellipsis +ellipsis +ellipsis +unknown +ellipsis +reading +grapheme +grapheme +reading +grapheme +reading +ellipsis +reading +grapheme +grapheme +ellipsis +unknown +reading +grapheme +grapheme +reading +grapheme +grapheme +ellipsis +unknown +ellipsis +grapheme +grapheme +reading +reading +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +unknown +unknown +unknown +reading +reading +reading +reading +reading +unknown +ellipsis +reading +grapheme +reading +reading +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +ellipsis +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +unknown +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +ellipsis +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +ellipsis +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +unknown +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +ellipsis +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +unknown +unknown +unknown +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +unknown +unknown +unknown +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +empty +reading +unknown +ellipsis +grapheme +grapheme +ellipsis +unknown +ellipsis +empty +unknown +reading +reading +unknown +ellipsis +grapheme +grapheme +reading +reading +ellipsis +grapheme +grapheme +unknown +unknown +grapheme +ellipsis +reading +reading +reading +reading +reading +reading +grapheme +ellipsis +grapheme +reading +reading +reading +grapheme +unknown +ellipsis +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +ellipsis +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +ellipsis +grapheme +grapheme +grapheme +reading +reading +reading +reading +unknown +ellipsis +grapheme +reading +unknown +unknown +unknown +unknown +ellipsis +grapheme +grapheme +unknown +unknown +reading +reading +grapheme +grapheme +ellipsis +ellipsis +unknown +unknown +unknown +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +unknown +unknown +unknown +unknown +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +unknown +unknown +unknown +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +unknown +unknown +unknown +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +unknown +unknown +unknown +unknown +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +unknown +unknown +unknown +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +reading +reading +numeral +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +reading +grapheme +reading +reading +reading +reading +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +ellipsis +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +unknown +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +empty +empty +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +unknown +unknown +unknown +unknown +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +numeral +reading +numeral +reading +numeral +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +empty +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +numeral +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +numeral +grapheme +reading +grapheme +grapheme +numeral +grapheme +grapheme +reading +numeral +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +ellipsis +reading +grapheme +grapheme +ellipsis +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +unknown +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +ellipsis +unknown +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +reading +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +empty +empty +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +reading +ellipsis +unknown +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +unknown +unknown +unknown +unknown +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +unknown +unknown +unknown +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +unknown +unknown +unknown +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +numeral +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +wdiv +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +numeral +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +empty +empty +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +numeral +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +reading +grapheme +reading +empty +empty +ellipsis +grapheme +ellipsis +ellipsis +grapheme +reading +reading +grapheme +grapheme +grapheme +ellipsis +ellipsis +grapheme +reading +reading +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +numeral +grapheme +reading +grapheme +numeral +grapheme +reading +grapheme +grapheme +numeral +grapheme +reading +grapheme +numeral +grapheme +reading +grapheme +grapheme +numeral +grapheme +reading +reading +reading +reading +numeral +grapheme +grapheme +grapheme +numeral +grapheme +reading +grapheme +numeral +grapheme +reading +grapheme +grapheme +numeral +grapheme +reading +grapheme +numeral +grapheme +reading +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +reading +numeral +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +unknown +numeral +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +reading +reading +reading +numeral +grapheme +reading +reading +unknown +unknown +unknown +numeral +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +unknown +unknown +unknown +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +unknown +unknown +unknown +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +ellipsis +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +unknown +unknown +unknown +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +reading +reading +grapheme +reading +reading +reading +grapheme +reading +unknown +unknown +unknown +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +numeral +reading +grapheme +reading +reading +reading +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +unknown +unknown +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +empty +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +numeral +grapheme +grapheme +numeral +numeral +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +numeral +grapheme +grapheme +numeral +numeral +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +unknown +unknown +unknown +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +numeral +grapheme +grapheme +numeral +numeral +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +unknown +ellipsis +grapheme +grapheme +reading +grapheme +reading +reading +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +reading +reading +reading +ellipsis +grapheme +grapheme +ellipsis +empty +empty +reading +reading +reading +reading +ellipsis +grapheme +grapheme +grapheme +reading +reading +reading +ellipsis +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +numeral +reading +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +ellipsis +grapheme +reading +grapheme +reading +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +ellipsis +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +ellipsis +reading +reading +reading +grapheme +grapheme +unknown +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +reading +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +grapheme +reading +reading +reading +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +ellipsis +reading +grapheme +grapheme +grapheme +reading +ellipsis +reading +reading +reading +reading +reading +reading +ellipsis +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +ellipsis +reading +reading +grapheme +grapheme +grapheme +grapheme +unknown +ellipsis +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +ellipsis +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +ellipsis +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +unknown +ellipsis +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +ellipsis +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +ellipsis +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +ellipsis +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +unknown +unknown +ellipsis +unknown +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +ellipsis +grapheme +reading +reading +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +ellipsis +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +wdiv +grapheme +reading +reading +reading +numeral +reading +reading +grapheme +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +grapheme +numeral +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +wdiv +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +numeral +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +unknown +unknown +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +numeral +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +numeral +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +unknown +unknown +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +numeral +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +numeral +reading +reading +grapheme +grapheme +grapheme +reading +numeral +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +ellipsis +unknown +unknown +ellipsis +unknown +unknown +ellipsis +ellipsis +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +numeral +reading +reading +grapheme +grapheme +grapheme +reading +numeral +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +numeral +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +numeral +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +ellipsis +reading +reading +reading +reading +reading +ellipsis +unknown +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +numeral +reading +numeral +reading +numeral +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +numeral +grapheme +grapheme +reading +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +reading +grapheme +grapheme +reading +unknown +unknown +unknown +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +numeral +grapheme +reading +reading +grapheme +reading +reading +grapheme +numeral +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +numeral +reading +numeral +reading +numeral +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +numeral +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +unknown +unknown +unknown +reading +reading +unknown +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +unknown +unknown +unknown +unknown +unknown +grapheme +numeral +grapheme +reading +reading +grapheme +reading +reading +reading +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +numeral +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +unknown +ellipsis +ellipsis +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +unknown +unknown +unknown +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +ellipsis +unknown +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +ellipsis +unknown +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +unknown +unknown +unknown +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +unknown +unknown +unknown +reading +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +unknown +reading +reading +reading +reading +unknown +unknown +unknown +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +unknown +unknown +reading +reading +reading +reading +numeral +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +wdiv +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +unknown +unknown +reading +grapheme +reading +unknown +unknown +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +ellipsis +unknown +ellipsis +grapheme +grapheme +grapheme +reading +ellipsis +unknown +grapheme +unknown +ellipsis +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +reading +grapheme +reading +ellipsis +reading +grapheme +grapheme +grapheme +ellipsis +grapheme +reading +ellipsis +unknown +grapheme +ellipsis +grapheme +unknown +ellipsis +unknown +ellipsis +reading +ellipsis +reading +ellipsis +grapheme +grapheme +grapheme +unknown +ellipsis +unknown +ellipsis +unknown +reading +grapheme +grapheme +ellipsis +grapheme +reading +grapheme +grapheme +grapheme +unknown +unknown +unknown +reading +reading +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +ellipsis +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +numeral +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +ellipsis +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +ellipsis +unknown +unknown +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +unknown +unknown +ellipsis +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +unknown +unknown +ellipsis +grapheme +grapheme +reading +reading +reading +grapheme +wdiv +reading +numeral +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +ellipsis +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +unknown +ellipsis +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +ellipsis +grapheme +numeral +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +ellipsis +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +ellipsis +reading +reading +reading +reading +grapheme +grapheme +ellipsis +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +ellipsis +reading +grapheme +ellipsis +unknown +ellipsis +grapheme +numeral +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +numeral +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +ellipsis +grapheme +grapheme +reading +reading +reading +ellipsis +grapheme +reading +numeral +grapheme +grapheme +grapheme +grapheme +reading +ellipsis +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +ellipsis +grapheme +numeral +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +unknown +grapheme +grapheme +reading +reading +grapheme +reading +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +ellipsis +grapheme +numeral +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +ellipsis +unknown +unknown +ellipsis +ellipsis +grapheme +numeral +grapheme +grapheme +reading +reading +ellipsis +ellipsis +unknown +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +ellipsis +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +unknown +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +unknown +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +ellipsis +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +unknown +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +ellipsis +unknown +unknown +unknown +reading +reading +reading +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +ellipsis +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +unknown +ellipsis +unknown +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +numeral +grapheme +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +ellipsis +ellipsis +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +unknown +ellipsis +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +ellipsis +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +numeral +grapheme +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +ellipsis +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +ellipsis +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +unknown +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +unknown +unknown +ellipsis +reading +reading +reading +reading +reading +reading +ellipsis +grapheme +grapheme +unknown +ellipsis +reading +reading +reading +reading +grapheme +reading +grapheme +ellipsis +unknown +grapheme +reading +reading +reading +ellipsis +unknown +unknown +grapheme +reading +reading +reading +grapheme +ellipsis +unknown +ellipsis +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +ellipsis +reading +reading +unknown +ellipsis +grapheme +reading +reading +reading +reading +grapheme +ellipsis +grapheme +grapheme +unknown +unknown +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +numeral +grapheme +grapheme +reading +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +numeral +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +numeral +grapheme +wdiv +numeral +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +ellipsis +unknown +unknown +ellipsis +unknown +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +unknown +ellipsis +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +ellipsis +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +unknown +ellipsis +reading +grapheme +reading +unknown +grapheme +ellipsis +grapheme +numeral +grapheme +grapheme +grapheme +reading +grapheme +ellipsis +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +ellipsis +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +ellipsis +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +ellipsis +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +ellipsis +unknown +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +ellipsis +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +ellipsis +reading +grapheme +grapheme +grapheme +reading +grapheme +ellipsis +unknown +unknown +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +unknown +ellipsis +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +ellipsis +unknown +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +reading +unknown +unknown +ellipsis +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +reading +grapheme +unknown +ellipsis +reading +reading +reading +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +unknown +ellipsis +unknown +ellipsis +ellipsis +unknown +ellipsis +ellipsis +ellipsis +ellipsis +ellipsis +ellipsis +ellipsis +ellipsis +unknown +unknown +reading +ellipsis +reading +reading +reading +reading +unknown +ellipsis +unknown +grapheme +reading +reading +reading +ellipsis +reading +grapheme +reading +reading +reading +reading +reading +ellipsis +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +reading +ellipsis +grapheme +grapheme +grapheme +reading +grapheme +ellipsis +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +ellipsis +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +ellipsis +reading +grapheme +reading +unknown +ellipsis +numeral +grapheme +unknown +ellipsis +unknown +ellipsis +ellipsis +grapheme +reading +ellipsis +grapheme +reading +ellipsis +grapheme +reading +ellipsis +unknown +reading +reading +ellipsis +grapheme +reading +ellipsis +grapheme +ellipsis +unknown +reading +reading +ellipsis +reading +reading +ellipsis +grapheme +ellipsis +grapheme +ellipsis +grapheme +ellipsis +grapheme +ellipsis +grapheme +ellipsis +grapheme +ellipsis +grapheme +reading +ellipsis +grapheme +reading +ellipsis +grapheme +reading +ellipsis +grapheme +reading +ellipsis +grapheme +ellipsis +unknown +unknown +ellipsis +grapheme +grapheme +grapheme +reading +ellipsis +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +reading +reading +ellipsis +reading +grapheme +grapheme +ellipsis +reading +grapheme +unknown +ellipsis +reading +grapheme +ellipsis +reading +grapheme +ellipsis +reading +grapheme +ellipsis +reading +grapheme +reading +unknown +ellipsis +unknown +unknown +ellipsis +reading +grapheme +reading +grapheme +ellipsis +reading +reading +reading +ellipsis +reading +reading +reading +reading +ellipsis +reading +reading +reading +grapheme +ellipsis +unknown +reading +grapheme +reading +unknown +ellipsis +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +ellipsis +reading +grapheme +grapheme +grapheme +ellipsis +reading +grapheme +reading +unknown +ellipsis +reading +grapheme +reading +reading +grapheme +reading +unknown +ellipsis +unknown +reading +reading +reading +reading +reading +grapheme +grapheme +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +ellipsis +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +unknown +reading +reading +reading +unknown +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +unknown +unknown +ellipsis +reading +reading +reading +unknown +ellipsis +grapheme +reading +ellipsis +grapheme +reading +ellipsis +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +numeral +reading +grapheme +reading +ellipsis +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +reading +reading +reading +ellipsis +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +numeral +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +wdiv +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +grapheme +reading +grapheme +numeral +reading +grapheme +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +numeral +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +unknown +reading +ellipsis +unknown +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +grapheme +reading +grapheme +numeral +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +ellipsis +ellipsis +unknown +unknown +unknown +ellipsis +reading +ellipsis +reading +reading +ellipsis +reading +reading +ellipsis +grapheme +grapheme +unknown +ellipsis +grapheme +grapheme +unknown +ellipsis +reading +reading +grapheme +grapheme +reading +ellipsis +reading +reading +reading +grapheme +reading +ellipsis +reading +reading +reading +reading +unknown +ellipsis +reading +reading +reading +reading +wdiv +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +ellipsis +reading +reading +reading +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +unknown +ellipsis +unknown +unknown +ellipsis +reading +reading +reading +ellipsis +reading +reading +ellipsis +grapheme +unknown +unknown +unknown +unknown +ellipsis +reading +unknown +unknown +reading +unknown +ellipsis +reading +unknown +reading +reading +reading +ellipsis +reading +unknown +reading +reading +reading +reading +ellipsis +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +numeral +reading +reading +grapheme +reading +grapheme +reading +ellipsis +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +ellipsis +grapheme +reading +reading +unknown +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +unknown +ellipsis +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +reading +reading +numeral +reading +grapheme +reading +ellipsis +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +ellipsis +reading +reading +reading +reading +reading +reading +unknown +ellipsis +reading +reading +reading +reading +reading +reading +unknown +ellipsis +reading +reading +reading +ellipsis +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +ellipsis +reading +grapheme +grapheme +grapheme +reading +unknown +ellipsis +reading +reading +grapheme +reading +grapheme +reading +unknown +ellipsis +reading +reading +reading +reading +reading +reading +reading +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +reading +grapheme +grapheme +grapheme +numeral +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +unknown +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +ellipsis +grapheme +reading +reading +reading +reading +grapheme +reading +numeral +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +wdiv +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +numeral +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +ellipsis +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +unknown +ellipsis +numeral +grapheme +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +ellipsis +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +ellipsis +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +ellipsis +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +ellipsis +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +unknown +ellipsis +grapheme +grapheme +reading +grapheme +grapheme +unknown +unknown +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +ellipsis +grapheme +grapheme +ellipsis +empty +ellipsis +unknown +unknown +grapheme +grapheme +grapheme +unknown +ellipsis +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +numeral +reading +numeral +reading +numeral +reading +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +unknown +ellipsis +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +ellipsis +grapheme +reading +wdiv +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +ellipsis +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +ellipsis +grapheme +reading +reading +reading +reading +numeral +reading +unknown +unknown +reading +unknown +unknown +unknown +unknown +ellipsis +grapheme +reading +reading +reading +reading +grapheme +reading +unknown +unknown +unknown +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +unknown +unknown +ellipsis +reading +grapheme +reading +reading +reading +grapheme +grapheme +unknown +unknown +ellipsis +numeral +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +ellipsis +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +ellipsis +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +ellipsis +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +unknown +ellipsis +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +reading +unknown +reading +reading +unknown +unknown +ellipsis +numeral +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +unknown +unknown +unknown +numeral +grapheme +reading +unknown +ellipsis +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +reading +grapheme +reading +numeral +grapheme +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +reading +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +numeral +reading +grapheme +grapheme +ellipsis +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +ellipsis +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +ellipsis +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +ellipsis +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +ellipsis +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +ellipsis +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +unknown +ellipsis +reading +reading +grapheme +ellipsis +unknown +unknown +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +ellipsis +ellipsis +reading +grapheme +reading +grapheme +grapheme +unknown +ellipsis +ellipsis +numeral +reading +grapheme +unknown +ellipsis +ellipsis +grapheme +grapheme +grapheme +ellipsis +ellipsis +reading +grapheme +ellipsis +ellipsis +unknown +ellipsis +ellipsis +grapheme +ellipsis +grapheme +ellipsis +grapheme +ellipsis +grapheme +ellipsis +unknown +unknown +unknown +unknown +ellipsis +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +reading +grapheme +ellipsis +grapheme +reading +reading +reading +unknown +ellipsis +reading +reading +reading +reading +reading +unknown +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +ellipsis +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +unknown +ellipsis +unknown +ellipsis +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +ellipsis +unknown +unknown +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +ellipsis +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +ellipsis +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +numeral +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +reading +reading +ellipsis +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +numeral +grapheme +grapheme +numeral +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +wdiv +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +wdiv +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +wdiv +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +ellipsis +unknown +reading +numeral +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +ellipsis +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +ellipsis +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +unknown +ellipsis +numeral +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +unknown +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +reading +numeral +numeral +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +unknown +grapheme +unknown +ellipsis +unknown +grapheme +grapheme +numeral +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +ellipsis +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +ellipsis +reading +ellipsis +grapheme +reading +grapheme +ellipsis +unknown +reading +grapheme +reading +ellipsis +unknown +unknown +reading +reading +reading +reading +ellipsis +unknown +grapheme +ellipsis +reading +reading +grapheme +reading +unknown +reading +grapheme +reading +reading +ellipsis +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +ellipsis +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +ellipsis +grapheme +reading +numeral +ellipsis +reading +grapheme +grapheme +reading +ellipsis +grapheme +grapheme +grapheme +reading +grapheme +ellipsis +unknown +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +ellipsis +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +ellipsis +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +numeral +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +numeral +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +numeral +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +numeral +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +ellipsis +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +ellipsis +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +numeral +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +numeral +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +reading +reading +reading +grapheme +reading +ellipsis +reading +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +ellipsis +unknown +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +ellipsis +grapheme +reading +reading +ellipsis +reading +reading +reading +ellipsis +unknown +grapheme +reading +reading +reading +ellipsis +unknown +unknown +unknown +ellipsis +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +ellipsis +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +numeral +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +numeral +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +ellipsis +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +reading +reading +grapheme +ellipsis +reading +grapheme +grapheme +ellipsis +grapheme +unknown +unknown +unknown +unknown +ellipsis +grapheme +reading +grapheme +reading +ellipsis +reading +reading +reading +grapheme +reading +grapheme +grapheme +unknown +ellipsis +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +ellipsis +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +reading +numeral +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +numeral +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +reading +numeral +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +ellipsis +unknown +unknown +reading +reading +reading +reading +reading +reading +ellipsis +reading +reading +grapheme +ellipsis +ellipsis +ellipsis +ellipsis +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +ellipsis +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +ellipsis +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +ellipsis +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +ellipsis +ellipsis +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +numeral +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +ellipsis +numeral +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +wdiv +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +ellipsis +grapheme +grapheme +reading +grapheme +ellipsis +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +ellipsis +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +ellipsis +unknown +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +ellipsis +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +ellipsis +unknown +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +ellipsis +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +ellipsis +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +ellipsis +unknown +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +ellipsis +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +reading +reading +reading +numeral +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +grapheme +numeral +grapheme +grapheme +reading +reading +reading +reading +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +unknown +reading +grapheme +grapheme +grapheme +reading +reading +numeral +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +numeral +reading +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +grapheme +reading +numeral +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +numeral +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +ellipsis +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +ellipsis +unknown +numeral +grapheme +numeral +reading +reading +reading +reading +reading +reading +reading +reading +reading +numeral +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +grapheme +reading +numeral +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +numeral +grapheme +numeral +grapheme +numeral +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +numeral +reading +numeral +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +wdiv +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +wdiv +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +unknown +ellipsis +ellipsis +unknown +grapheme +grapheme +grapheme +ellipsis +reading +reading +reading +reading +reading +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +ellipsis +unknown +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +reading +grapheme +grapheme +numeral +reading +numeral +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +wdiv +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +wdiv +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +wdiv +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +ellipsis +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +ellipsis +reading +grapheme +grapheme +reading +grapheme +reading +ellipsis +grapheme +numeral +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +ellipsis +unknown +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +numeral +reading +numeral +reading +numeral +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +ellipsis +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +reading +ellipsis +grapheme +grapheme +reading +reading +reading +ellipsis +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +grapheme +ellipsis +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +ellipsis +reading +grapheme +grapheme +ellipsis +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +unknown +ellipsis +reading +reading +ellipsis +grapheme +grapheme +reading +grapheme +ellipsis +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +ellipsis +grapheme +grapheme +reading +grapheme +reading +ellipsis +grapheme +grapheme +grapheme +reading +reading +reading +ellipsis +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +ellipsis +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +ellipsis +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +ellipsis +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +reading +numeral +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +grapheme +grapheme +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +reading +reading +grapheme +numeral +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +ellipsis +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +ellipsis +wdiv +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +ellipsis +wdiv +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +ellipsis +unknown +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +ellipsis +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +reading +ellipsis +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +ellipsis +numeral +grapheme +grapheme +grapheme +reading +grapheme +ellipsis +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +ellipsis +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +numeral +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +ellipsis +grapheme +grapheme +reading +grapheme +grapheme +grapheme +wdiv +reading +reading +reading +reading +ellipsis +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +ellipsis +numeral +grapheme +grapheme +grapheme +reading +ellipsis +grapheme +reading +reading +reading +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +numeral +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +ellipsis +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +numeral +reading +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +grapheme +reading +numeral +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +numeral +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +ellipsis +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +ellipsis +reading +reading +reading +reading +reading +reading +ellipsis +ellipsis +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +reading +numeral +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +grapheme +reading +numeral +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +ellipsis +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +numeral +grapheme +numeral +grapheme +numeral +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +numeral +reading +numeral +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +ellipsis +reading +reading +reading +reading +reading +ellipsis +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +reading +grapheme +grapheme +numeral +reading +numeral +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +wdiv +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +wdiv +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +wdiv +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +wdiv +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +wdiv +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +wdiv +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +wdiv +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +wdiv +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +unknown +unknown +reading +grapheme +grapheme +grapheme +reading +numeral +reading +reading +reading +reading +reading +unknown +unknown +unknown +numeral +reading +numeral +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +reading +reading +reading +ellipsis +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +numeral +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +numeral +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +reading +reading +numeral +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +reading +unknown +unknown +unknown +unknown +unknown +reading +unknown +unknown +unknown +unknown +unknown +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +grapheme +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +grapheme +grapheme +reading +grapheme +numeral +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +unknown +unknown +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +unknown +unknown +unknown +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +unknown +unknown +unknown +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +numeral +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +unknown +unknown +unknown +reading +reading +unknown +unknown +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +ellipsis +unknown +reading +unknown +unknown +unknown +unknown +ellipsis +empty +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +wdiv +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +wdiv +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +wdiv +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +numeral +reading +numeral +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +numeral +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +numeral +reading +reading +numeral +numeral +reading +reading +numeral +reading +reading +reading +numeral +reading +numeral +grapheme +grapheme +grapheme +numeral +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +reading +numeral +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +numeral +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +numeral +reading +unknown +unknown +unknown +grapheme +numeral +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +unknown +unknown +unknown +grapheme +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +ellipsis +empty +reading +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +numeral +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +reading +grapheme +grapheme +unknown +unknown +grapheme +reading +grapheme +reading +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +unknown +unknown +unknown +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +reading +numeral +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +numeral +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +numeral +reading +numeral +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +empty +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +numeral +reading +unknown +unknown +unknown +reading +grapheme +numeral +grapheme +reading +reading +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +numeral +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +numeral +grapheme +wdiv +grapheme +numeral +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +numeral +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +numeral +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +numeral +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +numeral +grapheme +reading +reading +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +numeral +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +numeral +grapheme +reading +reading +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +empty +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +unknown +unknown +unknown +unknown +unknown +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +numeral +reading +reading +numeral +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +unknown +unknown +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +grapheme +reading +reading +reading +reading +unknown +unknown +unknown +unknown +ellipsis +grapheme +grapheme +ellipsis +unknown +unknown +unknown +ellipsis +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +reading +numeral +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +reading +numeral +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +unknown +unknown +unknown +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +reading +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +grapheme +grapheme +empty +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +ellipsis +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +ellipsis +reading +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +unknown +ellipsis +grapheme +reading +ellipsis +grapheme +grapheme +ellipsis +grapheme +ellipsis +empty +empty +grapheme +grapheme +unknown +ellipsis +grapheme +grapheme +grapheme +unknown +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +ellipsis +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +ellipsis +grapheme +grapheme +reading +reading +reading +reading +wdiv +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +ellipsis +reading +grapheme +reading +grapheme +reading +unknown +ellipsis +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +ellipsis +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +ellipsis +reading +reading +reading +reading +unknown +ellipsis +grapheme +grapheme +grapheme +reading +ellipsis +grapheme +reading +reading +reading +reading +reading +reading +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +ellipsis +grapheme +reading +grapheme +ellipsis +unknown +unknown +unknown +unknown +reading +grapheme +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +unknown +unknown +unknown +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +numeral +numeral +grapheme +grapheme +grapheme +grapheme +numeral +numeral +grapheme +reading +grapheme +numeral +numeral +grapheme +reading +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +numeral +numeral +grapheme +reading +reading +reading +grapheme +numeral +numeral +grapheme +reading +grapheme +grapheme +numeral +numeral +grapheme +grapheme +reading +reading +reading +reading +numeral +numeral +grapheme +grapheme +reading +numeral +numeral +grapheme +reading +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +numeral +grapheme +reading +reading +reading +reading +grapheme +numeral +numeral +grapheme +grapheme +reading +reading +reading +numeral +numeral +grapheme +reading +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +reading +numeral +numeral +grapheme +grapheme +reading +grapheme +grapheme +numeral +numeral +grapheme +reading +reading +reading +grapheme +grapheme +numeral +grapheme +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +numeral +grapheme +reading +grapheme +reading +numeral +grapheme +reading +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +wdiv +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +wdiv +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +wdiv +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +numeral +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +reading +unknown +unknown +unknown +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +numeral +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +unknown +unknown +unknown +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +unknown +unknown +reading +numeral +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +numeral +grapheme +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +unknown +unknown +unknown +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +unknown +unknown +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +unknown +unknown +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +unknown +unknown +unknown +reading +grapheme +unknown +unknown +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +unknown +ellipsis +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +unknown +unknown +unknown +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +unknown +unknown +unknown +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +ellipsis +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +reading +grapheme +ellipsis +reading +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +ellipsis +unknown +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +ellipsis +numeral +grapheme +reading +reading +reading +reading +reading +numeral +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +numeral +grapheme +reading +reading +reading +ellipsis +numeral +grapheme +reading +grapheme +grapheme +numeral +grapheme +grapheme +reading +numeral +numeral +grapheme +grapheme +numeral +numeral +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +ellipsis +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +unknown +unknown +unknown +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +empty +reading +grapheme +numeral +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +ellipsis +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +unknown +ellipsis +reading +grapheme +grapheme +wdiv +reading +unknown +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +ellipsis +grapheme +reading +grapheme +grapheme +grapheme +wdiv +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +ellipsis +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +ellipsis +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +reading +ellipsis +reading +reading +reading +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +ellipsis +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +ellipsis +reading +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +reading +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +ellipsis +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +ellipsis +unknown +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +unknown +ellipsis +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +ellipsis +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +numeral +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +numeral +grapheme +reading +grapheme +grapheme +numeral +grapheme +reading +reading +reading +reading +numeral +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +reading +reading +grapheme +reading +reading +wdiv +reading +unknown +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +reading +unknown +ellipsis +unknown +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +ellipsis +unknown +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +ellipsis +grapheme +grapheme +grapheme +ellipsis +grapheme +reading +reading +reading +reading +reading +ellipsis +ellipsis +unknown +unknown +unknown +reading +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +ellipsis +reading +reading +reading +reading +reading +ellipsis +reading +reading +reading +reading +reading +reading +ellipsis +reading +reading +reading +reading +reading +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +wdiv +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +wdiv +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +wdiv +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +unknown +unknown +grapheme +ellipsis +unknown +unknown +unknown +grapheme +reading +grapheme +unknown +ellipsis +unknown +reading +unknown +ellipsis +reading +reading +reading +unknown +unknown +reading +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +ellipsis +grapheme +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +numeral +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +numeral +reading +reading +reading +reading +reading +numeral +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +numeral +grapheme +reading +grapheme +reading +reading +numeral +numeral +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +numeral +reading +reading +reading +reading +grapheme +reading +reading +numeral +grapheme +grapheme +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +reading +reading +reading +reading +numeral +grapheme +grapheme +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +numeral +grapheme +grapheme +grapheme +grapheme +reading +numeral +numeral +grapheme +reading +reading +reading +reading +reading +reading +reading +numeral +grapheme +grapheme +grapheme +reading +grapheme +numeral +grapheme +grapheme +reading +grapheme +grapheme +reading +numeral +grapheme +grapheme +grapheme +reading +grapheme +numeral +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +numeral +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +wdiv +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +wdiv +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +wdiv +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +wdiv +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +empty +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +wdiv +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +wdiv +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +unknown +unknown +unknown +ellipsis +reading +grapheme +reading +reading +grapheme +reading +reading +reading +reading +ellipsis +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +ellipsis +reading +reading +reading +unknown +ellipsis +grapheme +reading +grapheme +grapheme +grapheme +ellipsis +reading +reading +reading +ellipsis +unknown +unknown +unknown +unknown +unknown +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +ellipsis +unknown +unknown +unknown +ellipsis +empty +grapheme +grapheme +unknown +unknown +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +wdiv +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +wdiv +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +wdiv +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +wdiv +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +ellipsis +unknown +unknown +unknown +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +ellipsis +unknown +unknown +unknown +unknown +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +ellipsis +unknown +grapheme +reading +reading +reading +ellipsis +reading +grapheme +grapheme +reading +ellipsis +unknown +reading +reading +reading +unknown +ellipsis +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +unknown +unknown +unknown +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +unknown +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +wdiv +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +wdiv +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +wdiv +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +reading +reading +reading +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +unknown +unknown +unknown +unknown +grapheme +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +empty +empty +ellipsis +grapheme +grapheme +reading +grapheme +reading +grapheme +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +reading +unknown +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +unknown +unknown +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +unknown +unknown +unknown +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +ellipsis +ellipsis +unknown +unknown +unknown +unknown +unknown +ellipsis +empty +empty +empty +unknown +unknown +unknown +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +ellipsis +unknown +unknown +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +ellipsis +unknown +unknown +reading +reading +reading +grapheme +grapheme +reading +reading +reading +unknown +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +ellipsis +unknown +unknown +unknown +reading +grapheme +grapheme +reading +ellipsis +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +ellipsis +unknown +unknown +unknown +reading +grapheme +grapheme +grapheme +ellipsis +unknown +unknown +unknown +reading +grapheme +reading +reading +reading +reading +reading +reading +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +ellipsis +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +grapheme +grapheme +grapheme +reading +ellipsis +grapheme +grapheme +unknown +unknown +unknown +unknown +grapheme +grapheme +reading +grapheme +reading +grapheme +ellipsis +unknown +unknown +unknown +unknown +reading +reading +reading +reading +grapheme +reading +reading +ellipsis +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +reading +numeral +grapheme +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +reading +numeral +grapheme +reading +grapheme +grapheme +numeral +grapheme +grapheme +reading +unknown +unknown +reading +grapheme +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +reading +unknown +unknown +unknown +unknown +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +unknown +unknown +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +numeral +reading +reading +numeral +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +unknown +unknown +unknown +unknown +unknown +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +reading +unknown +unknown +unknown +unknown +reading +reading +grapheme +grapheme +grapheme +reading +unknown +unknown +unknown +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +unknown +unknown +unknown +grapheme +reading +reading +grapheme +reading +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +numeral +grapheme +unknown +unknown +numeral +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +numeral +grapheme +grapheme +reading +grapheme +unknown +unknown +unknown +unknown +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +numeral +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +unknown +unknown +unknown +unknown +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +unknown +unknown +unknown +reading +reading +reading +reading +unknown +unknown +unknown +unknown +ellipsis +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +grapheme +reading +reading +reading +grapheme +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +reading +reading +reading +unknown +unknown +unknown +ellipsis +reading +reading +reading +grapheme +unknown +unknown +unknown +unknown +ellipsis +reading +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +unknown +grapheme +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +ellipsis +unknown +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +unknown +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +unknown +unknown +ellipsis +unknown +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +wdiv +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +ellipsis +unknown +unknown +ellipsis +unknown +unknown +unknown +unknown +unknown +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +wdiv +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +wdiv +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +wdiv +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +wdiv +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +wdiv +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +unknown +unknown +unknown +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +unknown +unknown +unknown +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +empty +empty +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +reading +unknown +ellipsis +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +ellipsis +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +unknown +unknown +unknown +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +ellipsis +unknown +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +numeral +grapheme +reading +reading +reading +ellipsis +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +ellipsis +unknown +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +ellipsis +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +ellipsis +reading +reading +reading +ellipsis +unknown +unknown +unknown +empty +empty +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +ellipsis +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +reading +reading +grapheme +reading +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +reading +ellipsis +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +ellipsis +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +unknown +ellipsis +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +unknown +ellipsis +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +numeral +reading +reading +grapheme +grapheme +reading +numeral +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +ellipsis +ellipsis +unknown +unknown +unknown +ellipsis +empty +empty +grapheme +grapheme +grapheme +unknown +unknown +reading +grapheme +grapheme +grapheme +unknown +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +reading +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +ellipsis +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +ellipsis +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +ellipsis +grapheme +grapheme +reading +reading +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +unknown +unknown +ellipsis +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +grapheme +reading +reading +reading +unknown +ellipsis +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +ellipsis +grapheme +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +reading +grapheme +grapheme +reading +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +ellipsis +unknown +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +unknown +ellipsis +grapheme +grapheme +grapheme +ellipsis +unknown +ellipsis +grapheme +grapheme +grapheme +unknown +unknown +unknown +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +numeral +grapheme +grapheme +ellipsis +unknown +unknown +unknown +grapheme +grapheme +reading +grapheme +reading +grapheme +numeral +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +unknown +ellipsis +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +ellipsis +ellipsis +unknown +unknown +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +ellipsis +ellipsis +unknown +unknown +reading +grapheme +grapheme +ellipsis +ellipsis +ellipsis +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +ellipsis +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +ellipsis +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +unknown +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +ellipsis +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +ellipsis +reading +reading +reading +reading +grapheme +grapheme +reading +reading +ellipsis +reading +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +ellipsis +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +ellipsis +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +ellipsis +unknown +unknown +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +ellipsis +grapheme +reading +reading +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +ellipsis +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +unknown +ellipsis +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +ellipsis +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +unknown +ellipsis +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +unknown +ellipsis +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +unknown +ellipsis +empty +ellipsis +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +numeral +grapheme +grapheme +grapheme +reading +empty +empty +ellipsis +reading +ellipsis +grapheme +reading +ellipsis +grapheme +ellipsis +grapheme +ellipsis +grapheme +empty +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +numeral +numeral +grapheme +reading +reading +reading +numeral +numeral +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +numeral +grapheme +reading +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +numeral +numeral +grapheme +reading +grapheme +numeral +numeral +grapheme +reading +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +grapheme +numeral +numeral +grapheme +reading +grapheme +numeral +numeral +grapheme +reading +grapheme +grapheme +numeral +numeral +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +numeral +numeral +grapheme +reading +reading +reading +numeral +numeral +grapheme +grapheme +grapheme +reading +numeral +numeral +grapheme +grapheme +grapheme +grapheme +numeral +numeral +grapheme +reading +grapheme +numeral +numeral +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +numeral +numeral +grapheme +reading +grapheme +grapheme +numeral +numeral +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +numeral +numeral +grapheme +reading +reading +reading +numeral +numeral +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +numeral +numeral +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +unknown +unknown +unknown +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +unknown +unknown +unknown +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +reading +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +reading +grapheme +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +unknown +unknown +unknown +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +ellipsis +unknown +unknown +unknown +unknown +unknown +unknown +ellipsis +empty +empty +reading +grapheme +grapheme +grapheme +grapheme +unknown +ellipsis +unknown +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +ellipsis +reading +grapheme +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +unknown +unknown +unknown +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +unknown +unknown +unknown +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +unknown +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +unknown +reading +unknown +unknown +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +unknown +unknown +unknown +ellipsis +unknown +unknown +unknown +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +ellipsis +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +reading +ellipsis +unknown +reading +reading +reading +reading +ellipsis +unknown +unknown +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +numeral +grapheme +grapheme +ellipsis +reading +reading +reading +grapheme +numeral +grapheme +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +grapheme +ellipsis +unknown +grapheme +reading +grapheme +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +grapheme +ellipsis +unknown +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +ellipsis +unknown +unknown +reading +ellipsis +ellipsis +unknown +ellipsis +grapheme +reading +ellipsis +grapheme +grapheme +reading +reading +grapheme +ellipsis +grapheme +reading +grapheme +ellipsis +grapheme +reading +ellipsis +empty +empty +ellipsis +ellipsis +unknown +ellipsis +grapheme +grapheme +grapheme +grapheme +unknown +unknown +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +grapheme +reading +grapheme +ellipsis +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +ellipsis +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +unknown +ellipsis +grapheme +reading +reading +reading +reading +reading +reading +grapheme +ellipsis +numeral +numeral +grapheme +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +reading +numeral +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +wdiv +grapheme +ellipsis +grapheme +grapheme +reading +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +ellipsis +reading +grapheme +grapheme +reading +grapheme +grapheme +ellipsis +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +numeral +grapheme +reading +numeral +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +reading +numeral +reading +numeral +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +numeral +numeral +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +numeral +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +unknown +unknown +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +numeral +grapheme +grapheme +reading +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +wdiv +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +numeral +grapheme +grapheme +reading +reading +reading +numeral +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +reading +grapheme +unknown +unknown +unknown +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +ellipsis +unknown +unknown +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +ellipsis +unknown +ellipsis +unknown +ellipsis +empty +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +numeral +reading +reading +grapheme +grapheme +reading +ellipsis +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +numeral +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +unknown +unknown +unknown +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +numeral +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +reading +reading +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +numeral +grapheme +grapheme +reading +reading +reading +reading +reading +reading +wdiv +reading +reading +reading +reading +reading +reading +numeral +reading +reading +reading +reading +grapheme +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +unknown +unknown +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +unknown +unknown +unknown +grapheme +numeral +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +numeral +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +unknown +unknown +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +numeral +numeral +grapheme +reading +grapheme +numeral +numeral +grapheme +reading +grapheme +grapheme +numeral +numeral +grapheme +reading +grapheme +numeral +grapheme +reading +grapheme +grapheme +numeral +grapheme +grapheme +reading +reading +reading +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +numeral +grapheme +grapheme +grapheme +reading +grapheme +grapheme +numeral +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +unknown +unknown +unknown +grapheme +reading +grapheme +reading +reading +reading +grapheme +numeral +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +numeral +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +grapheme +ellipsis +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +ellipsis +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +ellipsis +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +grapheme +reading +reading +grapheme +reading +grapheme +reading +numeral +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +numeral +numeral +grapheme +grapheme +grapheme +grapheme +numeral +numeral +grapheme +reading +grapheme +grapheme +numeral +numeral +grapheme +reading +grapheme +numeral +numeral +grapheme +grapheme +grapheme +numeral +numeral +grapheme +reading +grapheme +numeral +numeral +grapheme +reading +grapheme +grapheme +numeral +numeral +grapheme +grapheme +reading +reading +reading +reading +numeral +numeral +grapheme +grapheme +reading +numeral +numeral +grapheme +grapheme +reading +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +grapheme +reading +grapheme +numeral +numeral +grapheme +grapheme +reading +reading +reading +reading +ellipsis +numeral +grapheme +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +numeral +grapheme +grapheme +grapheme +ellipsis +reading +reading +ellipsis +ellipsis +empty +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +ellipsis +grapheme +reading +reading +grapheme +grapheme +ellipsis +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +ellipsis +unknown +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +ellipsis +unknown +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +numeral +numeral +grapheme +grapheme +reading +reading +reading +numeral +numeral +grapheme +reading +grapheme +grapheme +grapheme +numeral +numeral +grapheme +reading +grapheme +numeral +numeral +grapheme +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +numeral +numeral +grapheme +grapheme +grapheme +reading +grapheme +numeral +numeral +grapheme +grapheme +reading +grapheme +grapheme +numeral +numeral +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +numeral +numeral +grapheme +grapheme +reading +grapheme +numeral +numeral +grapheme +reading +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +reading +numeral +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +reading +numeral +numeral +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +grapheme +numeral +numeral +grapheme +reading +grapheme +numeral +numeral +grapheme +reading +grapheme +grapheme +numeral +numeral +grapheme +reading +grapheme +numeral +numeral +grapheme +reading +grapheme +numeral +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +reading +reading +reading +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +numeral +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +reading +numeral +numeral +grapheme +reading +reading +reading +numeral +numeral +grapheme +reading +grapheme +grapheme +numeral +numeral +grapheme +reading +grapheme +numeral +numeral +grapheme +reading +grapheme +reading +grapheme +numeral +numeral +grapheme +reading +reading +reading +numeral +numeral +grapheme +reading +reading +reading +reading +grapheme +numeral +numeral +grapheme +reading +grapheme +grapheme +numeral +numeral +grapheme +reading +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +reading +numeral +numeral +grapheme +reading +grapheme +reading +grapheme +numeral +grapheme +reading +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +numeral +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +numeral +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +reading +numeral +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +reading +numeral +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +numeral +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +reading +reading +grapheme +reading +numeral +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +numeral +numeral +grapheme +grapheme +grapheme +reading +numeral +grapheme +grapheme +grapheme +grapheme +numeral +grapheme +reading +grapheme +grapheme +numeral +grapheme +grapheme +reading +reading +numeral +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +numeral +reading +numeral +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +unknown +unknown +unknown +unknown +grapheme +grapheme +numeral +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +reading +wdiv +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +wdiv +reading +reading +reading +reading +grapheme +grapheme +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +reading +reading +reading +reading +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +ellipsis +ellipsis +unknown +unknown +unknown +unknown +ellipsis +empty +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +unknown +unknown +unknown +unknown +unknown +reading +grapheme +reading +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +ellipsis +unknown +ellipsis +ellipsis +reading +reading +reading +reading +grapheme +grapheme +reading +ellipsis +ellipsis +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +ellipsis +ellipsis +grapheme +grapheme +reading +grapheme +reading +reading +reading +grapheme +reading +reading +ellipsis +ellipsis +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +ellipsis +ellipsis +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +unknown +ellipsis +ellipsis +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +ellipsis +ellipsis +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +ellipsis +ellipsis +reading +reading +reading +grapheme +reading +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +ellipsis +ellipsis +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +ellipsis +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +ellipsis +ellipsis +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +ellipsis +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +numeral +numeral +grapheme +reading +reading +reading +grapheme +numeral +numeral +grapheme +unknown +ellipsis +ellipsis +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +numeral +grapheme +grapheme +grapheme +reading +reading +reading +ellipsis +ellipsis +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +grapheme +reading +ellipsis +ellipsis +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +ellipsis +ellipsis +unknown +reading +ellipsis +reading +reading +ellipsis +unknown +reading +reading +ellipsis +grapheme +grapheme +ellipsis +reading +grapheme +grapheme +grapheme +ellipsis +grapheme +ellipsis +unknown +grapheme +grapheme +reading +grapheme +ellipsis +unknown +reading +ellipsis +reading +ellipsis +unknown +ellipsis +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +reading +unknown +unknown +ellipsis +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +grapheme +ellipsis +grapheme +grapheme +grapheme +numeral +reading +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +numeral +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +ellipsis +reading +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +reading +reading +reading +reading +ellipsis +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +ellipsis +grapheme +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +ellipsis +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +ellipsis +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +unknown +unknown +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +ellipsis +reading +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +ellipsis +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +ellipsis +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +unknown +unknown +ellipsis +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +ellipsis +reading +grapheme +reading +grapheme +reading +grapheme +reading +reading +reading +reading +ellipsis +reading +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +ellipsis +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +ellipsis +grapheme +reading +reading +reading +reading +ellipsis +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +unknown +ellipsis +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +ellipsis +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +unknown +ellipsis +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +grapheme +reading +grapheme +ellipsis +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +numeral +grapheme +reading +grapheme +unknown +unknown +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +reading +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +reading +ellipsis +reading +reading +reading +reading +reading +reading +ellipsis +reading +reading +reading +ellipsis +reading +reading +reading +reading +ellipsis +reading +reading +reading +ellipsis +reading +reading +reading +reading +reading +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +numeral +unknown +ellipsis +reading +grapheme +grapheme +grapheme +grapheme +reading +grapheme +unknown +ellipsis +reading +grapheme +reading +ellipsis +unknown +reading +grapheme +reading +reading +reading +grapheme +reading +grapheme +ellipsis +unknown +unknown +ellipsis +reading +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +unknown +ellipsis +unknown +ellipsis +unknown +unknown +ellipsis +grapheme +reading +grapheme +reading +unknown +unknown +ellipsis +reading +reading +reading +reading +reading +unknown +ellipsis +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +ellipsis +grapheme +grapheme +reading +reading +reading +ellipsis +unknown +reading +reading +reading +reading +reading +reading +reading +reading +reading +ellipsis +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +ellipsis +reading +reading +reading +reading +reading +reading +reading +reading +ellipsis +ellipsis +reading +reading +reading +ellipsis +ellipsis +unknown +unknown +ellipsis +empty +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +numeral +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +reading +grapheme +reading +reading +reading +reading +unknown +unknown +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +grapheme +reading +reading +grapheme +reading +reading +reading +reading +grapheme +reading +reading +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +unknown +unknown +unknown +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +reading +reading +grapheme +numeral +grapheme +grapheme +reading +grapheme +numeral +grapheme +reading +grapheme +unknown +unknown +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +unknown +unknown +grapheme +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +numeral +grapheme +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +reading +reading +grapheme +reading +grapheme +reading +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +numeral +grapheme +grapheme +reading +unknown +reading +reading +unknown +unknown +unknown +unknown +reading +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +grapheme +unknown +unknown +unknown +unknown +reading +unknown +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +ellipsis +unknown +unknown +grapheme +unknown +unknown +reading +grapheme +reading +reading +reading +reading +unknown +unknown +unknown +grapheme +grapheme +reading +grapheme +reading +grapheme +reading +ellipsis +unknown +unknown +unknown +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +ellipsis +unknown +unknown +unknown +unknown +unknown +unknown +ellipsis +unknown +ellipsis +unknown +ellipsis +empty +empty +empty +grapheme +grapheme +ellipsis +grapheme +grapheme +reading +unknown +unknown +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +unknown +unknown +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +unknown +ellipsis +grapheme +grapheme +grapheme +grapheme +grapheme +reading +grapheme +grapheme +reading +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +numeral +grapheme +grapheme +grapheme +grapheme +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +grapheme +grapheme +grapheme +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +reading +reading +grapheme +grapheme +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +reading +grapheme +grapheme +reading +reading +reading +empty +grapheme +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +reading +reading +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +grapheme +grapheme +reading +reading +grapheme +grapheme +grapheme +grapheme +reading +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +reading +reading +reading +reading +reading +reading +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +empty +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +reading +grapheme +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +unknown +grapheme +missing +missing +missing +missing +missing +supplied +missing +missing +det +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +det +missing +det +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +det +missing +det +missing +missing +missing +missing +det +missing +det +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +det +missing +missing +det +missing +det +missing +missing +det +det +missing +missing +missing +missing +det +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +supplied +missing +missing +missing +det +missing +missing +uncertain +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +det +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +det +missing +det +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +det +missing +det +det +missing +det +missing +missing +det +missing +missing +missing +uncertain +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +uncertain +missing +det +missing +det +gloss +det +det +det +missing +det +missing +missing +det +det +det +missing +det +missing +det +missing +det +det +missing +missing +missing +missing +missing +missing +uncertain +missing +missing +uncertain +missing +missing +det +det +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +det +det +missing +det +missing +det +det +missing +missing +det +missing +det +det +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +det +missing +missing +missing +missing +missing +det +missing +det +missing +missing +uncertain +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +det +det +missing +det +missing +missing +missing +missing +missing +missing +det +det +missing +det +missing +det +missing +missing +missing +det +missing +uncertain +gloss +missing +det +missing +missing +missing +uncertain +missing +missing +uncertain +det +missing +missing +det +uncertain +missing +missing +missing +missing +missing +det +missing +missing +det +missing +uncertain +det +missing +missing +missing +missing +missing +det +missing +missing +det +det +missing +det +missing +missing +missing +missing +missing +det +det +det +missing +gloss +missing +missing +missing +missing +det +missing +det +missing +missing +missing +det +missing +det +missing +missing +missing +uncertain +det +det +det +det +det +missing +det +det +missing +det +missing +missing +missing +missing +missing +det +missing +det +missing +missing +det +missing +det +missing +missing +missing +missing +det +missing +missing +det +missing +det +missing +missing +det +missing +missing +missing +det +det +missing +det +missing +missing +det +missing +det +det +det +missing +det +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +uncertain +missing +det +missing +missing +missing +missing +missing +missing +missing +det +det +missing +missing +missing +det +missing +det +missing +det +missing +uncertain +missing +missing +det +missing +det +det +missing +missing +missing +det +missing +missing +missing +det +det +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +det +missing +det +missing +missing +missing +missing +det +missing +det +det +missing +missing +det +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +det +det +det +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +det +det +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +det +det +det +missing +missing +missing +missing +missing +det +det +missing +supplied +det +det +det +det +det +det +det +det +det +det +gloss +det +det +det +supplied +det +det +det +det +det +det +det +missing +det +missing +det +missing +missing +missing +det +det +missing +missing +missing +det +det +det +det +det +det +det +missing +missing +det +det +det +det +det +missing +missing +missing +missing +missing +det +det +missing +det +det +missing +missing +det +det +missing +missing +det +det +missing +det +det +missing +det +missing +det +det +det +missing +missing +det +det +det +missing +missing +det +missing +det +missing +det +det +missing +det +det +det +det +det +det +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +excised +det +det +det +det +det +det +det +det +det +det +det +missing +det +det +det +det +det +det +det +missing +missing +det +missing +det +det +det +det +missing +missing +missing +det +det +det +det +det +det +det +det +missing +missing +missing +missing +missing +missing +det +det +det +missing +missing +missing +det +det +det +missing +det +det +det +missing +det +det +gloss +det +det +missing +det +det +det +gloss +det +det +missing +det +det +det +missing +gloss +missing +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +missing +missing +det +missing +det +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +det +det +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +det +missing +det +missing +det +missing +excised +missing +missing +missing +det +det +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +det +missing +det +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +det +missing +missing +missing +missing +missing +missing +det +missing +det +det +missing +det +det +missing +det +missing +det +det +det +det +det +det +missing +missing +missing +missing +det +det +missing +missing +missing +det +missing +missing +det +missing +det +missing +missing +missing +missing +missing +missing +gloss +det +det +missing +missing +missing +det +det +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +det +det +det +det +det +det +missing +missing +missing +missing +missing +det +missing +missing +det +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +det +missing +det +det +det +det +det +det +missing +missing +missing +missing +missing +missing +det +det +det +det +missing +det +missing +supplied +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +det +det +det +missing +missing +missing +missing +det +det +det +missing +missing +missing +det +det +missing +missing +det +missing +missing +det +missing +supplied +det +det +det +det +det +det +missing +det +missing +missing +missing +det +missing +det +missing +missing +missing +missing +missing +missing +missing +det +missing +det +det +det +det +det +det +missing +missing +det +missing +missing +missing +missing +missing +det +missing +missing +missing +det +missing +missing +missing +missing +det +missing +missing +det +missing +missing +missing +det +missing +missing +missing +missing +det +missing +det +missing +det +det +missing +missing +missing +missing +missing +missing +missing +det +missing +det +det +missing +det +missing +det +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +det +det +missing +det +det +missing +det +det +missing +det +det +missing +det +missing +det +det +missing +det +det +det +missing +missing +missing +missing +missing +missing +missing +det +missing +det +det +missing +det +det +det +det +det +det +det +det +det +missing +missing +det +det +missing +det +det +missing +missing +missing +det +missing +missing +det +det +missing +det +det +missing +det +missing +det +missing +missing +missing +det +det +missing +det +missing +missing +missing +missing +missing +det +det +missing +det +missing +missing +det +det +missing +det +missing +det +missing +missing +missing +missing +det +missing +missing +det +missing +det +missing +det +missing +missing +missing +missing +det +missing +det +det +det +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +uncertain +det +missing +missing +missing +missing +missing +det +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +det +det +missing +missing +missing +missing +det +missing +missing +det +missing +missing +det +missing +missing +missing +missing +det +det +missing +missing +det +missing +det +missing +det +missing +det +det +missing +det +det +missing +det +gloss +missing +det +missing +gloss +missing +det +missing +missing +det +missing +det +det +det +missing +det +missing +det +missing +det +det +det +missing +det +det +missing +det +det +missing +det +missing +det +missing +det +missing +det +det +missing +det +missing +det +missing +det +det +missing +det +missing +det +missing +missing +missing +det +det +det +det +missing +det +det +missing +det +missing +det +det +det +det +det +missing +det +det +det +missing +det +missing +det +missing +det +det +missing +missing +det +det +det +missing +det +missing +missing +det +missing +det +missing +det +det +det +det +missing +det +missing +missing +det +det +det +missing +det +det +det +det +det +det +missing +det +det +det +det +det +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +det +det +det +missing +missing +missing +missing +det +det +det +missing +missing +missing +missing +det +det +det +det +det +missing +det +det +det +det +det +det +missing +missing +det +det +det +det +missing +missing +missing +missing +det +missing +missing +det +missing +det +det +missing +det +det +det +det +det +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +det +missing +det +det +det +det +det +det +det +missing +det +det +missing +missing +det +missing +det +det +det +missing +det +det +det +missing +det +missing +missing +det +missing +det +det +missing +det +det +missing +missing +det +missing +missing +missing +missing +det +det +det +missing +missing +missing +det +missing +det +det +det +excised +missing +det +missing +det +det +det +det +missing +det +missing +missing +missing +missing +det +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +det +det +det +missing +det +missing +det +missing +missing +det +missing +det +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +det +det +missing +missing +missing +missing +det +missing +det +det +det +det +missing +missing +det +det +missing +missing +missing +det +det +missing +missing +det +det +missing +det +missing +det +missing +missing +missing +missing +missing +det +det +det +det +det +missing +missing +det +det +missing +supplied +missing +missing +missing +det +det +det +missing +missing +missing +missing +missing +missing +det +missing +det +det +missing +missing +det +missing +missing +missing +missing +det +missing +missing +det +det +det +missing +missing +det +missing +missing +det +det +det +det +det +missing +missing +det +det +missing +det +missing +missing +det +missing +missing +missing +det +missing +det +missing +missing +det +missing +missing +missing +det +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +det +det +missing +det +det +det +missing +missing +det +det +det +det +missing +missing +missing +det +det +det +det +missing +det +det +det +missing +det +det +det +det +missing +missing +missing +det +missing +det +missing +det +det +det +missing +missing +det +det +missing +det +det +missing +det +missing +det +det +missing +det +missing +uncertain +missing +det +det +missing +missing +missing +det +det +missing +det +det +det +missing +missing +det +missing +missing +det +det +det +det +missing +det +det +det +missing +missing +missing +det +missing +det +uncertain +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +det +det +missing +missing +det +det +missing +det +det +missing +det +det +det +det +missing +det +det +missing +det +det +det +det +det +det +det +det +det +det +det +det +det +det +missing +det +det +missing +det +det +det +det +det +det +det +det +det +det +det +det +det +det +missing +missing +missing +missing +missing +missing +det +det +missing +missing +det +det +missing +missing +missing +det +det +det +det +det +det +det +det +missing +missing +det +missing +det +det +missing +missing +missing +missing +det +det +missing +det +det +missing +missing +missing +missing +det +det +missing +det +det +missing +det +det +det +det +det +missing +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +missing +det +det +missing +missing +missing +missing +det +missing +missing +missing +missing +det +det +missing +det +missing +det +det +missing +missing +det +missing +det +det +det +missing +det +det +det +missing +det +det +det +missing +det +det +missing +missing +missing +missing +missing +missing +det +det +det +missing +missing +missing +missing +det +missing +uncertain +missing +det +det +det +missing +det +missing +det +det +det +missing +uncertain +det +missing +det +det +det +det +missing +det +missing +det +det +det +missing +uncertain +missing +det +missing +det +missing +det +det +missing +missing +missing +missing +det +det +det +missing +uncertain +det +det +det +missing +missing +missing +det +det +det +missing +det +det +det +missing +det +det +det +missing +det +det +det +det +det +missing +det +det +missing +uncertain +det +det +det +missing +missing +det +det +missing +missing +det +missing +missing +det +missing +missing +missing +missing +det +missing +det +missing +det +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +det +missing +det +det +det +missing +det +missing +det +missing +det +missing +missing +missing +missing +missing +missing +det +missing +det +det +det +missing +missing +missing +missing +det +det +missing +missing +missing +det +missing +det +det +det +missing +missing +missing +det +missing +det +det +missing +missing +det +det +missing +missing +missing +det +det +missing +det +missing +missing +det +missing +missing +missing +det +det +det +missing +missing +missing +det +missing +det +det +uncertain +det +det +missing +det +missing +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +missing +det +missing +det +det +det +missing +det +det +missing +missing +missing +missing +missing +det +det +det +missing +uncertain +det +det +missing +missing +det +missing +missing +missing +missing +det +det +det +missing +det +missing +missing +det +missing +det +det +missing +missing +det +missing +uncertain +det +det +det +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +det +det +missing +det +missing +missing +det +erasure +missing +det +missing +uncertain +det +missing +missing +missing +missing +missing +det +missing +det +missing +det +missing +missing +det +missing +det +missing +det +det +det +det +det +missing +missing +missing +uncertain +missing +det +det +det +det +missing +det +missing +missing +det +missing +uncertain +missing +det +missing +missing +det +missing +det +missing +missing +missing +det +missing +det +missing +missing +det +missing +det +det +det +missing +det +missing +missing +uncertain +missing +det +missing +missing +uncertain +det +missing +missing +missing +missing +det +missing +missing +missing +missing +det +missing +missing +det +det +missing +det +missing +det +missing +missing +det +missing +missing +missing +det +missing +det +missing +uncertain +det +det +missing +uncertain +missing +det +det +missing +missing +missing +det +missing +missing +missing +det +det +missing +missing +det +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +det +missing +missing +det +missing +missing +missing +det +missing +det +det +missing +det +det +missing +missing +missing +uncertain +missing +missing +det +missing +missing +det +det +missing +det +missing +det +det +missing +det +missing +det +det +missing +det +det +missing +missing +missing +det +missing +det +det +missing +det +missing +missing +det +missing +missing +missing +det +missing +det +det +missing +missing +missing +det +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +det +missing +missing +missing +missing +missing +missing +det +missing +det +missing +det +missing +det +det +det +missing +missing +det +det +det +missing +missing +missing +missing +det +missing +missing +det +missing +missing +det +missing +missing +det +det +det +missing +missing +missing +det +missing +uncertain +missing +missing +missing +det +missing +uncertain +missing +det +missing +missing +missing +det +missing +det +missing +missing +det +det +missing +det +det +missing +missing +det +det +det +missing +det +det +missing +det +det +missing +det +det +det +missing +missing +det +gloss +det +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +det +det +missing +missing +missing +det +det +det +missing +missing +missing +det +missing +det +missing +det +missing +missing +det +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +det +det +missing +det +missing +missing +missing +missing +det +missing +det +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +det +missing +missing +missing +det +missing +missing +missing +det +missing +missing +missing +missing +missing +det +missing +missing +missing +det +missing +det +missing +missing +det +missing +missing +det +det +det +det +missing +missing +missing +missing +det +missing +missing +det +missing +missing +missing +missing +det +missing +missing +det +missing +missing +missing +det +det +missing +uncertain +missing +det +missing +missing +missing +missing +det +missing +det +det +det +missing +det +missing +missing +det +missing +missing +missing +missing +det +gloss +det +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +gloss +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +det +missing +missing +missing +missing +missing +det +missing +det +missing +missing +det +missing +missing +missing +missing +det +det +missing +missing +det +det +missing +det +det +missing +missing +missing +missing +missing +missing +det +det +missing +missing +missing +det +missing +det +missing +det +missing +det +det +det +det +det +det +det +missing +det +det +det +missing +missing +missing +det +det +missing +det +det +missing +missing +missing +det +missing +det +missing +det +missing +det +missing +missing +missing +missing +missing +missing +det +det +det +missing +missing +det +det +missing +missing +det +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +det +det +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +det +det +missing +det +det +det +det +det +missing +missing +det +det +det +missing +missing +missing +missing +det +det +missing +missing +det +missing +missing +missing +missing +uncertain +missing +missing +det +det +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +uncertain +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +det +missing +det +missing +det +det +det +missing +missing +missing +missing +missing +det +det +det +missing +det +missing +det +det +missing +det +det +missing +det +det +det +missing +missing +missing +missing +det +det +missing +missing +missing +det +det +missing +det +missing +det +det +gloss +det +missing +det +det +missing +missing +det +missing +missing +missing +det +missing +missing +missing +det +missing +missing +missing +missing +det +gloss +det +missing +det +missing +missing +missing +det +missing +missing +det +det +det +det +det +det +det +det +det +det +det +det +missing +det +missing +det +missing +missing +det +missing +missing +uncertain +missing +det +det +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +det +missing +det +missing +det +det +missing +missing +missing +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +missing +det +det +missing +missing +missing +det +missing +missing +uncertain +missing +missing +det +missing +det +det +det +missing +missing +det +missing +det +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +det +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +det +missing +missing +det +uncertain +missing +missing +det +missing +missing +missing +missing +uncertain +missing +det +missing +missing +det +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +det +det +missing +missing +missing +missing +det +missing +det +missing +missing +missing +missing +missing +missing +det +det +missing +det +missing +missing +det +missing +det +det +det +missing +det +det +det +missing +det +missing +det +missing +missing +missing +missing +missing +det +det +missing +missing +missing +det +missing +missing +missing +det +missing +missing +missing +missing +missing +det +missing +det +det +missing +missing +det +det +missing +missing +det +missing +missing +det +det +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +det +det +missing +det +det +missing +det +det +det +det +missing +missing +missing +missing +missing +det +missing +det +missing +det +det +missing +missing +missing +det +det +det +det +det +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +det +det +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +det +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +det +det +det +missing +det +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +det +missing +missing +det +missing +det +det +missing +missing +missing +missing +missing +det +missing +missing +missing +det +missing +missing +missing +det +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +det +missing +det +missing +uncertain +missing +missing +missing +missing +det +det +det +det +missing +missing +det +missing +missing +missing +det +missing +missing +det +missing +missing +det +missing +missing +missing +missing +missing +det +det +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +det +missing +det +missing +missing +missing +missing +det +det +missing +missing +missing +det +missing +missing +missing +det +det +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +det +missing +det +missing +det +missing +det +det +det +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +det +missing +det +det +det +det +det +det +det +det +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +det +missing +det +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +uncertain +missing +missing +missing +missing +det +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +det +det +det +det +det +missing +missing +det +missing +det +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +det +det +det +det +missing +missing +missing +det +det +det +det +det +det +missing +missing +missing +missing +uncertain +missing +uncertain +missing +missing +det +missing +det +missing +det +det +missing +det +det +det +missing +missing +missing +det +missing +det +det +det +det +det +det +missing +det +det +det +det +det +missing +det +det +det +det +missing +det +det +missing +det +det +det +missing +det +det +det +det +det +det +missing +det +det +det +det +missing +det +missing +missing +det +det +det +missing +det +det +det +det +missing +missing +det +det +det +missing +missing +det +det +det +missing +missing +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +missing +det +missing +det +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +missing +missing +det +missing +missing +det +missing +missing +det +missing +missing +missing +missing +missing +det +missing +missing +det +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +det +missing +missing +det +missing +det +missing +det +missing +missing +missing +missing +missing +missing +uncertain +det +det +missing +missing +det +det +missing +missing +missing +uncertain +det +det +missing +missing +det +missing +det +det +missing +det +missing +missing +det +missing +missing +det +det +missing +missing +missing +missing +missing +det +det +missing +det +missing +missing +missing +missing +det +missing +uncertain +missing +missing +missing +det +missing +missing +missing +det +det +det +missing +det +det +det +det +missing +det +det +det +det +missing +det +missing +det +det +det +missing +det +missing +missing +det +missing +det +missing +det +missing +missing +det +missing +det +det +det +det +det +det +missing +missing +det +missing +missing +det +det +det +det +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +det +det +missing +missing +det +missing +missing +det +det +missing +det +missing +uncertain +det +det +det +missing +missing +det +det +det +det +missing +missing +det +missing +det +det +missing +missing +missing +uncertain +det +det +missing +det +det +missing +det +det +det +missing +det +missing +uncertain +missing +missing +missing +missing +missing +missing +missing +det +det +det +det +det +det +missing +det +missing +det +missing +missing +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +missing +det +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +det +missing +missing +det +missing +missing +missing +uncertain +missing +det +missing +missing +det +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +det +det +missing +gloss +det +det +missing +det +missing +det +missing +det +missing +missing +missing +missing +det +det +missing +missing +missing +det +missing +det +missing +missing +missing +missing +missing +missing +uncertain +det +det +missing +det +missing +missing +det +missing +det +missing +det +det +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +det +det +det +det +missing +missing +missing +missing +det +det +missing +missing +missing +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +missing +det +det +missing +missing +missing +det +missing +det +missing +det +missing +det +missing +missing +det +missing +det +det +det +missing +det +missing +missing +missing +missing +missing +missing +det +det +det +missing +det +missing +missing +det +missing +missing +det +missing +det +missing +det +det +det +det +missing +det +det +missing +det +missing +missing +missing +det +det +det +missing +det +det +det +missing +det +det +det +missing +missing +det +missing +det +det +det +det +missing +det +det +missing +det +missing +det +det +missing +det +det +det +missing +det +det +missing +det +det +missing +missing +missing +det +det +missing +det +missing +missing +det +missing +missing +det +det +missing +missing +det +det +det +missing +det +det +missing +missing +missing +det +missing +det +missing +missing +det +missing +missing +det +missing +det +det +det +det +missing +det +det +det +det +missing +missing +det +missing +missing +det +det +missing +det +missing +missing +missing +missing +det +missing +det +det +det +det +missing +det +det +det +det +missing +det +det +det +missing +det +gloss +det +missing +det +det +det +missing +missing +det +gloss +det +missing +det +missing +det +det +missing +missing +det +det +det +det +det +missing +det +det +missing +det +missing +missing +det +missing +missing +missing +det +det +det +det +missing +det +det +det +missing +det +det +det +det +missing +det +det +det +det +missing +det +det +det +det +det +det +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +det +missing +missing +missing +missing +missing +missing +missing +det +missing +det +det +det +det +missing +det +det +det +missing +missing +det +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +det +missing +det +missing +det +missing +missing +det +det +det +missing +det +missing +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +missing +det +det +det +det +det +det +det +missing +det +det +missing +det +missing +det +det +missing +det +missing +missing +det +missing +det +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +det +missing +det +missing +det +det +missing +det +det +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +det +det +missing +det +det +missing +det +det +det +det +det +det +det +det +det +det +det +det +det +missing +missing +det +det +det +det +det +det +det +det +missing +missing +missing +det +det +det +missing +det +det +det +det +det +missing +det +det +missing +missing +missing +missing +det +det +det +missing +det +det +det +missing +det +det +missing +missing +missing +det +missing +missing +det +det +det +det +missing +missing +missing +missing +det +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +det +missing +det +det +missing +det +missing +det +det +det +det +missing +det +missing +det +missing +missing +det +det +det +det +det +missing +det +missing +missing +missing +missing +missing +det +det +missing +missing +det +det +det +missing +missing +missing +missing +missing +missing +det +det +det +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +det +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +det +det +missing +det +missing +det +missing +det +missing +det +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +supplied +det +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +det +missing +missing +det +det +missing +missing +missing +det +det +det +missing +missing +det +det +det +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +det +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +det +missing +det +missing +missing +missing +det +det +missing +det +missing +det +missing +missing +missing +det +det +missing +missing +det +missing +missing +missing +missing +missing +missing +uncertain +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +det +missing +uncertain +missing +missing +missing +det +missing +missing +missing +missing +missing +det +det +det +det +missing +missing +missing +missing +det +missing +missing +missing +missing +gloss +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +uncertain +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +det +missing +det +missing +missing +det +det +det +missing +missing +det +gloss +det +missing +missing +missing +missing +det +det +det +missing +det +det +missing +missing +missing +det +det +missing +det +missing +uncertain +missing +missing +missing +det +det +missing +det +det +det +det +missing +missing +det +det +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +det +missing +det +det +missing +det +missing +det +missing +det +det +det +det +missing +det +det +missing +det +det +det +det +missing +missing +det +det +det +missing +det +missing +det +det +det +det +det +missing +det +det +det +det +missing +det +missing +missing +missing +missing +missing +missing +missing +det +det +missing +missing +det +missing +missing +det +det +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +det +det +missing +missing +missing +missing +det +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +det +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +det +det +det +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +det +det +missing +det +missing +missing +det +missing +det +det +missing +det +det +det +det +missing +det +det +det +det +det +missing +det +det +det +missing +det +det +det +missing +det +missing +det +missing +det +det +det +det +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +det +missing +det +missing +det +missing +missing +det +det +missing +det +missing +det +missing +det +det +det +det +missing +missing +det +missing +missing +det +det +missing +det +missing +det +det +missing +missing +det +det +missing +missing +det +det +det +missing +det +det +missing +det +missing +det +det +missing +missing +missing +missing +missing +missing +det +missing +missing +det +det +det +det +missing +det +det +missing +det +det +missing +det +det +det +supplied +missing +missing +det +det +missing +missing +det +det +det +det +missing +missing +det +det +det +missing +det +det +det +missing +det +det +det +det +missing +missing +det +det +det +det +det +det +missing +det +missing +det +det +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +det +det +missing +det +missing +det +missing +det +missing +missing +det +missing +det +missing +det +det +missing +missing +det +missing +missing +det +det +missing +det +det +det +missing +det +missing +det +det +det +missing +missing +det +missing +det +det +missing +supplied +missing +supplied +det +missing +det +det +missing +det +missing +det +missing +det +missing +det +det +missing +det +det +missing +supplied +missing +det +missing +missing +det +missing +missing +missing +missing +missing +det +det +det +missing +det +det +det +det +missing +missing +det +det +det +missing +missing +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +missing +det +missing +missing +det +det +missing +missing +missing +det +missing +missing +missing +det +det +missing +missing +missing +det +det +missing +missing +det +det +missing +missing +missing +supplied +missing +det +missing +det +det +missing +det +det +det +det +missing +det +det +missing +det +det +missing +det +det +missing +det +det +det +missing +missing +det +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +det +missing +det +missing +det +det +det +det +det +det +det +missing +det +det +det +det +det +det +det +missing +det +missing +det +gloss +det +det +det +supplied +det +missing +det +det +missing +det +det +det +det +det +det +det +det +missing +det +missing +det +missing +missing +missing +missing +det +det +det +det +det +det +missing +det +det +det +det +missing +missing +missing +missing +missing +det +det +det +det +det +det +missing +det +missing +missing +det +missing +det +missing +missing +missing +det +det +missing +missing +missing +missing +det +det +missing +det +det +det +det +det +missing +missing +missing +missing +det +det +det +det +det +det +missing +missing +det +det +missing +det +missing +supplied +missing +det +det +missing +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +det +missing +det +det +det +det +det +det +det +missing +det +missing +missing +det +det +missing +det +det +det +missing +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +missing +missing +missing +supplied +det +missing +det +missing +det +det +missing +det +det +det +missing +det +det +missing +det +det +missing +det +missing +missing +missing +missing +missing +missing +det +det +missing +missing +det +missing +missing +missing +missing +det +missing +det +det +det +det +missing +missing +missing +det +det +det +det +det +missing +det +missing +det +det +det +det +missing +det +missing +det +det +det +det +det +missing +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +missing +det +det +det +det +det +det +det +det +missing +det +det +det +det +det +det +det +det +det +det +det +missing +missing +missing +det +missing +missing +det +det +det +det +det +missing +missing +missing +missing +det +det +det +det +det +missing +det +missing +det +missing +det +det +det +missing +det +missing +missing +det +det +missing +missing +missing +missing +det +missing +det +det +missing +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +det +missing +missing +missing +missing +det +missing +missing +det +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +det +det +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +det +missing +missing +missing +missing +missing +missing +det +det +missing +missing +det +missing +missing +det +det +missing +missing +det +det +missing +missing +det +missing +missing +missing +missing +det +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +det +det +det +missing +det +uncertain +missing +det +det +det +det +missing +missing +missing +det +det +missing +det +det +missing +missing +missing +det +det +missing +uncertain +det +det +det +det +det +det +det +det +det +missing +uncertain +det +det +det +missing +uncertain +det +missing +missing +det +det +det +det +det +det +missing +uncertain +missing +det +det +det +missing +missing +missing +missing +missing +det +missing +missing +missing +det +missing +missing +missing +det +det +missing +det +missing +det +missing +det +missing +missing +det +missing +det +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +det +missing +det +det +missing +missing +missing +missing +missing +det +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +missing +missing +det +det +missing +missing +missing +missing +det +missing +det +det +missing +uncertain +missing +missing +missing +missing +missing +det +missing +missing +det +det +missing +missing +det +missing +missing +missing +missing +det +det +missing +missing +det +det +missing +missing +det +missing +det +det +det +det +det +det +det +missing +missing +uncertain +det +missing +uncertain +missing +det +det +missing +missing +uncertain +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +missing +det +det +det +det +missing +missing +det +det +excised +missing +missing +missing +missing +missing +missing +det +missing +missing +det +missing +missing +missing +det +missing +missing +missing +missing +det +missing +missing +62396 word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word +word diff --git a/tf/0.3/uncertain.tf b/tf/0.3/uncertain.tf new file mode 100644 index 0000000..38e4b5b --- /dev/null +++ b/tf/0.3/uncertain.tf @@ -0,0 +1,89 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=whether a sign is uncertain - between ( ) +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=int +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +1372 1 +1615 1 +1784 1 +2013 1 +2030 1 +1 +2489 1 +2758 1 +1 +2828 1 +2868 1 +2908 1 +2999 1 +3374 1 +3745 1 +3889 1 +1 +1 +11452 1 +15489 1 +1 +1 +15714 1 +1 +17666 1 +17709 1 +17754 1 +17934 1 +18149 1 +18967 1 +19533 1 +19699 1 +20140 1 +1 +20437 1 +20483 1 +20672 1 +20710 1 +20919 1 +20924 1 +21171 1 +21997 1 +22031 1 +23239 1 +24842 1 +24897 1 +25868 1 +26262 1 +26581 1 +26618 1 +29531 1 +31121 1 +32155 1 +1 +32161 1 +33618 1 +33723 1 +34159 1 +35018 1 +1 +1 +35174 1 +1 +35244 1 +36035 1 +36306 1 +42696 1 +42814 1 +43038 1 +43349 1 +51256 1 +51397 1 +51422 1 +51450 1 +51499 1 +51990 1 +52335 1 +52357 1 +52389 1 diff --git a/tf/0.3/variant.tf b/tf/0.3/variant.tf new file mode 100644 index 0000000..0fa5845 --- /dev/null +++ b/tf/0.3/variant.tf @@ -0,0 +1,392 @@ +@node +@converters=Cale Johnson, Dirk Roorda +@description=if sign is part of a variant pair, this is the sequence number of the variant (1 or 2) +@editor=Cale Johnson et al. +@name=NinMed Medical Texts from Nineveh +@project=BabMed +@valueType=int +@writtenBy=Text-Fabric +@dateWritten=2022-02-09T16:41:26Z + +807 1 +2 +917 1 +2 +5356 1 +2 +5363 1 +2 +5412 1 +2 +5601 1 +2 +5607 1 +2 +5613 1 +2 +5618 1 +2 +5624 1 +2 +5629 1 +2 +5634 1 +2 +5640 1 +2 +5646 1 +2 +5654 1 +2 +5660 1 +2 +5666 1 +2 +5672 1 +2 +5690 1 +2 +5695 1 +2 +5701 1 +2 +5707 1 +2 +6108 1 +2 +6114 1 +2 +6122 1 +2 +9719 1 +2 +9740 1 +2 +9760 1 +2 +9766 1 +2 +9824 1 +2 +9830 1 +2 +9940 1 +2 +9990 1 +2 +10079 1 +2 +10083 1 +2 +10090 1 +2 +10098 1 +2 +10133 1 +2 +10171 1 +2 +10176 1 +2 +10208 1 +2 +10428 1 +2 +10576 1 +2 +10582 1 +2 +10598 1 +2 +10623 1 +2 +10916 1 +2 +10942 1 +2 +10948 1 +2 +10971 1 +2 +10985 1 +2 +10998 1 +2 +11014 1 +2 +11124 1 +2 +11130 1 +2 +11136 1 +2 +11141 1 +2 +11146 1 +2 +11152 1 +2 +11526 1 +2 +11542 1 +2 +11555 1 +2 +11671 1 +2 +11677 1 +2 +12259 1 +2 +18044 1 +2 +18115 1 +2 +18187 1 +2 +20758 1 +2 +22687 1 +2 +23435 1 +2 +23544 1 +2 +24076 1 +2 +25300 1 +2 +36719 1 +2 +36725 1 +2 +36730 1 +2 +36736 1 +2 +36741 1 +2 +36748 1 +2 +36754 1 +2 +36762 1 +2 +36767 1 +2 +36773 1 +2 +36780 1 +2 +36788 1 +2 +36795 1 +2 +36801 1 +2 +36807 1 +2 +36814 1 +2 +38217 1 +2 +38221 1 +2 +39186 1 +2 +39237 1 +2 +44570 1 +2 +44576 1 +2 +44581 1 +2 +44588 1 +2 +44594 1 +2 +44599 1 +2 +44604 1 +2 +44610 1 +2 +44616 1 +2 +44622 1 +2 +44627 1 +2 +44633 1 +2 +44664 1 +2 +44670 1 +2 +44676 1 +2 +44682 1 +2 +44687 1 +2 +44736 1 +2 +44742 1 +2 +44773 1 +2 +44778 1 +2 +44786 1 +2 +44791 1 +2 +44797 1 +2 +44891 1 +2 +44897 1 +2 +44902 1 +2 +44907 1 +2 +44989 1 +2 +44995 1 +2 +45051 1 +2 +45068 1 +2 +45858 1 +2 +45864 1 +2 +45872 1 +2 +46101 1 +2 +46351 1 +2 +47227 1 +2 +47234 1 +2 +47881 1 +2 +47886 1 +2 +47892 1 +2 +48920 1 +2 +48926 1 +2 +48932 1 +2 +48937 1 +2 +48942 1 +2 +48947 1 +2 +48953 1 +2 +48961 1 +2 +48966 1 +2 +48973 1 +2 +48980 1 +2 +48988 1 +2 +49278 1 +2 +49285 1 +2 +49292 1 +2 +49297 1 +2 +49303 1 +2 +49412 1 +2 +49419 1 +2 +49426 1 +2 +49470 1 +2 +49476 1 +2 +49483 1 +2 +49489 1 +2 +49808 1 +2 +49813 1 +2 +49819 1 +2 +49824 1 +2 +49830 1 +2 +49835 1 +2 +49840 1 +2 +49847 1 +2 +49925 1 +2 +49931 1 +2 +49937 1 +2 +49942 1 +2 +49949 1 +2 +49955 1 +2 +49963 1 +2 +49969 1 +2 +49975 1 +2 +49981 1 +2 +49986 1 +2 +49991 1 +2 +49997 1 +2 +50002 1 +2 +50007 1 +2 +50013 1 +2 +50099 1 +2 +50106 1 +2 +50129 1 +2 +50235 1 +2 +50242 1 +2 +51144 1 +2 +51151 1 +2 diff --git a/tutorial/display.ipynb b/tutorial/display.ipynb index d26dd2e..c2e9329 100644 --- a/tutorial/display.ipynb +++ b/tutorial/display.ipynb @@ -45,13 +45,13 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 9, "metadata": {}, "outputs": [ { "data": { "text/html": [ - "TF-app: ~/text-fabric-data/Nino-cunei/ninmed/app" + "TF-app: ~/github/Nino-cunei/ninmed/app" ], "text/plain": [ "" @@ -63,7 +63,7 @@ { "data": { "text/html": [ - "data: ~/text-fabric-data/Nino-cunei/ninmed/tf/0.2" + "data: ~/github/Nino-cunei/ninmed/tf/0.3" ], "text/plain": [ "" @@ -79,7 +79,7 @@ "This is Text-Fabric 9.2.5\n", "Api reference : https://annotation.github.io/text-fabric/tf/cheatsheet.html\n", "\n", - "45 features found and 0 ignored\n" + "48 features found and 0 ignored\n" ] }, { @@ -91,7 +91,7 @@ "\n", "
\n", "
\n", - "after\n", + "after\n", "
\n", "
str
\n", "
\n", @@ -105,7 +105,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:36Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -134,7 +134,7 @@ "\n", "
\n", "
\n", - "atf\n", + "atf\n", "
\n", "
str
\n", "
\n", @@ -148,7 +148,93 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", + "
\n", + "\n", + "
\n", + "
editor:
\n", + "
Cale Johnson et al.
\n", + "
\n", + "\n", + "
\n", + "
name:
\n", + "
NinMed Medical Texts from Nineveh
\n", + "
\n", + "\n", + "
\n", + "
project:
\n", + "
BabMed
\n", + "
\n", + "\n", + "
\n", + "
writtenBy:
\n", + "
Text-Fabric
\n", + "
\n", + "\n", + "
\n", + "
\n", + "
\n", + "\n", + "
\n", + "
\n", + "atfpost\n", + "
\n", + "
str
\n", + "
\n", + " cluster characters that follow a sign or word\n", + "
\n", + "\n", + "
\n", + "
converters:
\n", + "
Cale Johnson, Dirk Roorda
\n", + "
\n", + "\n", + "
\n", + "
dateWritten:
\n", + "
2022-02-09T16:41:26Z
\n", + "
\n", + "\n", + "
\n", + "
editor:
\n", + "
Cale Johnson et al.
\n", + "
\n", + "\n", + "
\n", + "
name:
\n", + "
NinMed Medical Texts from Nineveh
\n", + "
\n", + "\n", + "
\n", + "
project:
\n", + "
BabMed
\n", + "
\n", + "\n", + "
\n", + "
writtenBy:
\n", + "
Text-Fabric
\n", + "
\n", + "\n", + "
\n", + "
\n", + "
\n", + "\n", + "
\n", + "
\n", + "atfpre\n", + "
\n", + "
str
\n", + "
\n", + " cluster characters that precede a sign or word\n", + "
\n", + "\n", + "
\n", + "
converters:
\n", + "
Cale Johnson, Dirk Roorda
\n", + "
\n", + "\n", + "
\n", + "
dateWritten:
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -177,7 +263,7 @@ "\n", "
\n", "
\n", - "col\n", + "col\n", "
\n", "
int
\n", "
\n", @@ -191,7 +277,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -220,7 +306,7 @@ "\n", "
\n", "
\n", - "collated\n", + "collated\n", "
\n", "
int
\n", "
\n", @@ -234,7 +320,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -263,7 +349,7 @@ "\n", "
\n", "
\n", - "collection\n", + "collection\n", "
\n", "
str
\n", "
\n", @@ -277,7 +363,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -306,7 +392,7 @@ "\n", "
\n", "
\n", - "colofon\n", + "colofon\n", "
\n", "
str
\n", "
\n", @@ -320,7 +406,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -349,7 +435,7 @@ "\n", "
\n", "
\n", - "comment\n", + "comment\n", "
\n", "
str
\n", "
\n", @@ -363,7 +449,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -392,7 +478,7 @@ "\n", "
\n", "
\n", - "damage\n", + "damage\n", "
\n", "
int
\n", "
\n", @@ -406,7 +492,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -435,7 +521,7 @@ "\n", "
\n", "
\n", - "description\n", + "description\n", "
\n", "
str
\n", "
\n", @@ -449,7 +535,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -478,7 +564,7 @@ "\n", "
\n", "
\n", - "det\n", + "det\n", "
\n", "
int
\n", "
\n", @@ -492,7 +578,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -521,7 +607,7 @@ "\n", "
\n", "
\n", - "docnumber\n", + "docnumber\n", "
\n", "
str
\n", "
\n", @@ -535,7 +621,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -564,7 +650,50 @@ "\n", "
\n", "
\n", - "excised\n", + "erasure\n", + "
\n", + "
int
\n", + "
\n", + " whether a sign is in an erasure - between ° / °: 1: between ° and /; 2: between / and °\n", + "
\n", + "\n", + "
\n", + "
converters:
\n", + "
Cale Johnson, Dirk Roorda
\n", + "
\n", + "\n", + "
\n", + "
dateWritten:
\n", + "
2022-02-09T16:41:26Z
\n", + "
\n", + "\n", + "
\n", + "
editor:
\n", + "
Cale Johnson et al.
\n", + "
\n", + "\n", + "
\n", + "
name:
\n", + "
NinMed Medical Texts from Nineveh
\n", + "
\n", + "\n", + "
\n", + "
project:
\n", + "
BabMed
\n", + "
\n", + "\n", + "
\n", + "
writtenBy:
\n", + "
Text-Fabric
\n", + "
\n", + "\n", + "
\n", + "
\n", + "
\n", + "\n", + "
\n", + "
\n", + "excised\n", "
\n", "
int
\n", "
\n", @@ -578,7 +707,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -607,7 +736,7 @@ "\n", "
\n", "
\n", - "face\n", + "face\n", "
\n", "
str
\n", "
\n", @@ -621,7 +750,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -650,7 +779,7 @@ "\n", "
\n", "
\n", - "flags\n", + "flags\n", "
\n", "
str
\n", "
\n", @@ -664,7 +793,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -693,7 +822,7 @@ "\n", "
\n", "
\n", - "gloss\n", + "gloss\n", "
\n", "
int
\n", "
\n", @@ -707,7 +836,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -736,7 +865,7 @@ "\n", "
\n", "
\n", - "grapheme\n", + "grapheme\n", "
\n", "
str
\n", "
\n", @@ -750,7 +879,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -779,7 +908,7 @@ "\n", "
\n", "
\n", - "lang\n", + "lang\n", "
\n", "
str
\n", "
\n", @@ -793,7 +922,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -822,7 +951,7 @@ "\n", "
\n", "
\n", - "lemma\n", + "lemma\n", "
\n", "
str
\n", "
\n", @@ -836,7 +965,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -865,7 +994,7 @@ "\n", "
\n", "
\n", - "lln\n", + "lln\n", "
\n", "
int
\n", "
\n", @@ -879,7 +1008,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -908,7 +1037,7 @@ "\n", "
\n", "
\n", - "ln\n", + "ln\n", "
\n", "
int
\n", "
\n", @@ -922,7 +1051,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -951,7 +1080,7 @@ "\n", "
\n", "
\n", - "lnno\n", + "lnno\n", "
\n", "
str
\n", "
\n", @@ -965,7 +1094,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -994,7 +1123,7 @@ "\n", "
\n", "
\n", - "missing\n", + "missing\n", "
\n", "
int
\n", "
\n", @@ -1008,7 +1137,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -1037,7 +1166,7 @@ "\n", "
\n", "
\n", - "modifiers\n", + "modifiers\n", "
\n", "
str
\n", "
\n", @@ -1051,7 +1180,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -1080,7 +1209,7 @@ "\n", "
\n", "
\n", - "museum\n", + "museum\n", "
\n", "
str
\n", "
\n", @@ -1094,7 +1223,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -1123,7 +1252,7 @@ "\n", "
\n", "
\n", - "note\n", + "note\n", "
\n", "
str
\n", "
\n", @@ -1137,7 +1266,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -1166,7 +1295,7 @@ "\n", "
\n", "
\n", - "number\n", + "number\n", "
\n", "
int
\n", "
\n", @@ -1180,7 +1309,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -1209,7 +1338,7 @@ "\n", "
\n", "
\n", - "otype\n", + "otype\n", "
\n", "
str
\n", "
\n", @@ -1223,7 +1352,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -1252,7 +1381,7 @@ "\n", "
\n", "
\n", - "pnumber\n", + "pnumber\n", "
\n", "
str
\n", "
\n", @@ -1266,7 +1395,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -1295,7 +1424,7 @@ "\n", "
\n", "
\n", - "primecol\n", + "primecol\n", "
\n", "
int
\n", "
\n", @@ -1309,7 +1438,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -1338,7 +1467,7 @@ "\n", "
\n", "
\n", - "primeln\n", + "primeln\n", "
\n", "
int
\n", "
\n", @@ -1352,7 +1481,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -1381,7 +1510,7 @@ "\n", "
\n", "
\n", - "publication\n", + "publication\n", "
\n", "
str
\n", "
\n", @@ -1395,7 +1524,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -1424,7 +1553,7 @@ "\n", "
\n", "
\n", - "question\n", + "question\n", "
\n", "
int
\n", "
\n", @@ -1438,7 +1567,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -1467,7 +1596,7 @@ "\n", "
\n", "
\n", - "reading\n", + "reading\n", "
\n", "
str
\n", "
\n", @@ -1481,7 +1610,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -1510,7 +1639,7 @@ "\n", "
\n", "
\n", - "remarkable\n", + "remarkable\n", "
\n", "
int
\n", "
\n", @@ -1524,7 +1653,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -1553,7 +1682,7 @@ "\n", "
\n", "
\n", - "ruling\n", + "ruling\n", "
\n", "
str
\n", "
\n", @@ -1567,7 +1696,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -1596,7 +1725,7 @@ "\n", "
\n", "
\n", - "seal\n", + "seal\n", "
\n", "
str
\n", "
\n", @@ -1610,7 +1739,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -1639,7 +1768,7 @@ "\n", "
\n", "
\n", - "supplied\n", + "supplied\n", "
\n", "
int
\n", "
\n", @@ -1653,7 +1782,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -1682,7 +1811,7 @@ "\n", "
\n", "
\n", - "sym\n", + "sym\n", "
\n", "
str
\n", "
\n", @@ -1696,7 +1825,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -1725,7 +1854,7 @@ "\n", "
\n", "
\n", - "tr@ll\n", + "tr@ll\n", "
\n", "
str
\n", "
\n", @@ -1739,7 +1868,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -1768,7 +1897,7 @@ "\n", "
\n", "
\n", - "trans\n", + "trans\n", "
\n", "
int
\n", "
\n", @@ -1782,7 +1911,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -1811,7 +1940,7 @@ "\n", "
\n", "
\n", - "type\n", + "type\n", "
\n", "
str
\n", "
\n", @@ -1825,7 +1954,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -1854,7 +1983,7 @@ "\n", "
\n", "
\n", - "uncertain\n", + "uncertain\n", "
\n", "
int
\n", "
\n", @@ -1868,7 +1997,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -1897,7 +2026,7 @@ "\n", "
\n", "
\n", - "variant\n", + "variant\n", "
\n", "
int
\n", "
\n", @@ -1911,7 +2040,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -1940,7 +2069,7 @@ "\n", "
\n", "
\n", - "oslots\n", + "oslots\n", "
\n", "
none
\n", "
\n", @@ -1954,7 +2083,7 @@ "\n", "
\n", "
dateWritten:
\n", - "
2022-02-06T13:00:37Z
\n", + "
2022-02-09T16:41:26Z
\n", "
\n", "\n", "
\n", @@ -2649,7 +2778,8 @@ } ], "source": [ - "A = use(\"Nino-cunei/ninmed\", hoist=globals())" + "A = use(\"Nino-cunei/ninmed:clone\", checkout=\"clone\", hoist=globals())\n", + "# A = use(\"Nino-cunei/ninmed\", hoist=globals())" ] }, { @@ -2661,7 +2791,7 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 10, "metadata": {}, "outputs": [], "source": [ @@ -2682,7 +2812,7 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 11, "metadata": {}, "outputs": [ { @@ -2731,7 +2861,7 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 12, "metadata": {}, "outputs": [ { @@ -2743,7 +2873,7 @@ " 'layout-orig-plain': 'sign'}" ] }, - "execution_count": 6, + "execution_count": 12, "metadata": {}, "output_type": "execute_result" } @@ -2754,7 +2884,9 @@ }, { "cell_type": "markdown", - "metadata": {}, + "metadata": { + "tags": [] + }, "source": [ "## Plain text formats\n", "\n", @@ -2769,17 +2901,58 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 13, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "2:1' [x x x] x lu#-u₂# ina KAŠ.SAG [x x x x x x x] \n", - "2:2' [DIŠ NA ] SAG#.KI.DAB.BA TUKU.TUKU [x x x x] \n", - "2:3' [x x x x x UGU-] šu₂# KUM₂ [x x] \n", - "2:4' [x x x x x x x x ] ŠU₂?# LUGAL?# [x x x x] \n" + "atf='x' atfpre='[' atfpost=None after=' '\n", + "atf='x' atfpre=None atfpost=None after=' '\n", + "atf='x' atfpre=None atfpost=']' after=' '\n", + "atf='x' atfpre=None atfpost=None after='-'\n", + "atf='lu#' atfpre=None atfpost=None after=' '\n", + "atf='u₂#' atfpre=None atfpost=None after='- '\n", + "atf='ina' atfpre=None atfpost=None after='.'\n", + "atf='KAŠ' atfpre=None atfpost=None after=' '\n", + "atf='SAG' atfpre=None atfpost=None after='. '\n", + "atf='x' atfpre='[' atfpost=None after=' '\n", + "atf='x' atfpre=None atfpost=None after=' '\n", + "atf='x' atfpre=None atfpost=None after=' '\n", + "atf='x' atfpre=None atfpost=None after=' '\n", + "atf='x' atfpre=None atfpost=None after=' '\n", + "atf='x' atfpre=None atfpost=None after=' '\n", + "atf='x' atfpre=None atfpost=']' after='\\n'\n" + ] + } + ], + "source": [ + "for s in L.d(lines[0], otype=\"sign\"):\n", + " atf = F.atf.v(s)\n", + " after = F.after.v(s)\n", + " atfpre = F.atfpre.v(s)\n", + " atfpost = F.atfpost.v(s)\n", + " print(f\"{atf=} {atfpre=} {atfpost=} {after=}\")" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2:1' [x x x] x-lu# u₂#- ina.KAŠ SAG. [x x x x x x x]\n", + "\n", + "2:2' [DIŠ NA.SAG].KI.DAB. BA.TUKU TUKU. [x x x x]\n", + "\n", + "2:3' [x x x x x-UGU šu₂]- KUM₂ [x x]\n", + "\n", + "2:4' [x x x x x x x x ŠU₂?] [LUGAL? x x x x]\n", + "\n" ] } ], @@ -2798,13 +2971,14 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 15, "metadata": {}, "outputs": [ { "data": { "text/html": [ - "
P285109 reverse:2:1'  [x x x] x lu#-u₂# ina KAŠ.SAG [x x x x x x x]
" + "
P285109 reverse:2:1'  [x x x] x-lu# u₂#- ina.KAŠ SAG. [x x x x x x x]\n", + "
" ], "text/plain": [ "" @@ -2816,7 +2990,8 @@ { "data": { "text/html": [ - "
P285109 reverse:2:2'  [DIŠ NA ] SAG#.KI.DAB.BA TUKU.TUKU [x x x x]
" + "
P285109 reverse:2:2'  [DIŠ NA.SAG].KI.DAB. BA.TUKU TUKU. [x x x x]\n", + "
" ], "text/plain": [ "" @@ -2828,7 +3003,8 @@ { "data": { "text/html": [ - "
P285109 reverse:2:3'  [x x x x x UGU-] šu₂# KUM₂ [x x]
" + "
P285109 reverse:2:3'  [x x x x x-UGU šu₂]- KUM₂ [x x]\n", + "
" ], "text/plain": [ "" @@ -2840,7 +3016,8 @@ { "data": { "text/html": [ - "
P285109 reverse:2:4'  [x x x x x x x x ] ŠU₂?# LUGAL?# [x x x x]
" + "
P285109 reverse:2:4'  [x x x x x x x x ŠU₂?] [LUGAL? x x x x]\n", + "
" ], "text/plain": [ "" @@ -2868,7 +3045,7 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 16, "metadata": {}, "outputs": [ { @@ -3296,13 +3473,14 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 17, "metadata": {}, "outputs": [ { "data": { "text/html": [ - "
P285109 reverse:2:1'  x x x x lu-u ina KAŠ.SAG x x x x x x x
" + "
P285109 reverse:2:1'  x x x x-lu u₂- ina.KAŠ SAG. x x x x x x x\n", + "
" ], "text/plain": [ "" @@ -3314,7 +3492,8 @@ { "data": { "text/html": [ - "
P285109 reverse:2:2'  DIŠ NA SAG.KI.DAB.BA TUKU.TUKU x x x x
" + "
P285109 reverse:2:2'  DIŠ NA.SAG.KI.DAB. BA.TUKU TUKU. x x x x\n", + "
" ], "text/plain": [ "" @@ -3326,7 +3505,8 @@ { "data": { "text/html": [ - "
P285109 reverse:2:3'  x x x x x UGU- šu KUM₂ x x
" + "
P285109 reverse:2:3'  x x x x x-UGU šu₂- KUM₂ x x\n", + "
" ], "text/plain": [ "" @@ -3338,7 +3518,8 @@ { "data": { "text/html": [ - "
P285109 reverse:2:4'  x x x x x x x x ŠU₂ LUGAL x x x x
" + "
P285109 reverse:2:4'  x x x x x x x x ŠU₂ LUGAL x x x x\n", + "
" ], "text/plain": [ "" @@ -3371,13 +3552,14 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 18, "metadata": {}, "outputs": [ { "data": { "text/html": [ - "
P285109 reverse:2:1'  [x x x] x lu-u ina KAŠ.SAG [x x x x x x x]
" + "
P285109 reverse:2:1'  x x x x-lu u- ina.KAŠ SAG. x x x x x x x\n", + "
" ], "text/plain": [ "" @@ -3389,7 +3571,8 @@ { "data": { "text/html": [ - "
P285109 reverse:2:2'  [DIŠ NA ] SAG.KI.DAB.BA TUKU.TUKU [x x x x]
" + "
P285109 reverse:2:2'  DIŠ NA.SAG.KI.DAB. BA.TUKU TUKU. x x x x\n", + "
" ], "text/plain": [ "" @@ -3401,7 +3584,8 @@ { "data": { "text/html": [ - "
P285109 reverse:2:3'  [x x x x x UGU-] šu KUM₂ [x x]
" + "
P285109 reverse:2:3'  x x x x x-UGU šu- KUM₂ x x\n", + "
" ], "text/plain": [ "" @@ -3413,7 +3597,8 @@ { "data": { "text/html": [ - "
P285109 reverse:2:4'  [x x x x x x x x ] ŠU₂ LUGAL [x x x x]
" + "
P285109 reverse:2:4'  x x x x x x x x ŠU₂ LUGAL x x x x\n", + "
" ], "text/plain": [ "" @@ -3442,13 +3627,14 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": 19, "metadata": {}, "outputs": [ { "data": { "text/html": [ - "
P285109 reverse:2:1'  x x x x lu-u ina KAŠ.SAG x x x x x x x
" + "
P285109 reverse:2:1'  x x x x-lu u- ina.KAŠ SAG. x x x x x x x\n", + "
" ], "text/plain": [ "" @@ -3460,7 +3646,8 @@ { "data": { "text/html": [ - "
P285109 reverse:2:2'  DIŠ NA SAG.KI.DAB.BA TUKU.TUKU x x x x
" + "
P285109 reverse:2:2'  DIŠ NA.SAG.KI.DAB. BA.TUKU TUKU. x x x x\n", + "
" ], "text/plain": [ "" @@ -3472,7 +3659,8 @@ { "data": { "text/html": [ - "
P285109 reverse:2:3'  x x x x x UGU- šu KUM₂ x x
" + "
P285109 reverse:2:3'  x x x x x-UGU šu- KUM₂ x x\n", + "
" ], "text/plain": [ "" @@ -3484,7 +3672,8 @@ { "data": { "text/html": [ - "
P285109 reverse:2:4'  x x x x x x x x ŠU₂ LUGAL Nonex x x x
" + "
P285109 reverse:2:4'  x x x x x x x x ŠU₂ LUGAL x x x x\n", + "
" ], "text/plain": [ "" @@ -3526,7 +3715,7 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 20, "metadata": {}, "outputs": [ { @@ -3535,7 +3724,7 @@ "'hur.ri.im#'" ] }, - "execution_count": 12, + "execution_count": 20, "metadata": {}, "output_type": "execute_result" } @@ -3547,13 +3736,13 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 21, "metadata": {}, "outputs": [ { "data": { "text/html": [ - "
word hur.ri.im#
" + "
word hur.ri. im#.
" ], "text/plain": [ "" @@ -3569,13 +3758,13 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 22, "metadata": {}, "outputs": [ { "data": { "text/html": [ - "
word:89064 hur.ri.im
" + "
word:62406 hur.ri. im.
" ], "text/plain": [ "" @@ -3598,13 +3787,13 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 23, "metadata": {}, "outputs": [ { "data": { "text/html": [ - "
word hur.ri.im#
hur
.
ri
.
im#
" + "
word hur.ri. im#.
hur.
ri.
im#.
" ], "text/plain": [ "" @@ -3620,13 +3809,13 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 24, "metadata": {}, "outputs": [ { "data": { "text/html": [ - "
word:89064 hur.ri.im
25 hur
26 .
27 ri
28 .
29 im
" + "
word:62406 hur.ri. im.
16 hur.
17 ri.
18 im.
" ], "text/plain": [ "" @@ -3659,13 +3848,13 @@ }, { "cell_type": "code", - "execution_count": 17, + "execution_count": 25, "metadata": {}, "outputs": [ { "data": { "text/html": [ - "
face:85922 P285109 reverse
" + "
face:59264 P285109 reverse
" ], "text/plain": [ "" @@ -3694,13 +3883,62 @@ }, { "cell_type": "code", - "execution_count": 18, + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "59465" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ln = T.nodeFromSection((\"P394104\", \"obverse\", \"1:23\"))\n", + "ln" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
line
cluster
type=missing
cluster
type=det
word [šim] GIG.
type=word
[šim]
type=reading
word [šim] GIG.
type=word
GIG.
type=grapheme
word U₂ BABBAR.
type=word
U₂
type=grapheme
BABBAR.
type=grapheme
word U₅ ARGAB. mušen
type=word
U₅
type=grapheme
ARGAB.
type=grapheme
cluster
type=det
word U₅ ARGAB. mušen
type=word
mušen
type=reading
cluster
type=missing
cluster
type=det
word [mun-eme-sal- li₃-
type=word
[mun-
type=reading
word [mun-eme-sal- li₃-
type=word
eme-
type=reading
sal-
type=reading
li₃-
type=reading
word 1 niš-
type=word
1
type=numeral
niš-
type=reading
word SUD₂
type=word
SUD₂
type=grapheme
word ...]\n", + "
type=word
...]\n", + "
type=ellipsis
" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "A.pretty(ln, extraFeatures=\"type\", baseTypes=[\"sign\"])" + ] + }, + { + "cell_type": "code", + "execution_count": 27, "metadata": {}, "outputs": [ { "data": { "text/html": [ - "
face:85922 P285109 reverse
line:86033
atf=1'. [x x x] x lu#-u₂# ina KAŠ.SAG [x x x x x x x]
word:89780
atf=[x
cluster:79578
word:89780 x
atf=[x
word:89781 x
atf=x
word:89782 x
atf=x]
word:89783 x
atf=x
word:89784 lu-u
atf=lu#-u₂#
word:89785 ina
atf=ina
word:89786 KAŠ.SAG
atf=KAŠ.SAG
word:89787
atf=[x
cluster:79579
word:89787 x
atf=[x
word:89788 x
atf=x
word:89789 x
atf=x
word:89790 x
atf=x
word:89791 x
atf=x
word:89792 x
atf=x
word:89793 x
atf=x]
line:86034
atf=2'. [DIŠ NA SA]G.KI.DAB.BA TUKU.TUKU [x x x x]
word:89794
atf=[DIŠ
cluster:79580
word:89794 DIŠ
atf=[DIŠ
word:89795 NA
atf=NA
word:89796
atf=SA]G.KI.DAB.BA
word:89796 SAG.KI.DAB.BA
atf=SA]G.KI.DAB.BA
word:89797 TUKU.TUKU
atf=TUKU.TUKU
word:89798
atf=[x
cluster:79581
word:89798 x
atf=[x
word:89799 x
atf=x
word:89800 x
atf=x
word:89801 x
atf=x]
line:86035
atf=3'. [x x x x x UGU-š]u₂ KUM₂ [x x]
word:89802
atf=[x
cluster:79582
word:89802 x
atf=[x
word:89803 x
atf=x
word:89804 x
atf=x
word:89805 x
atf=x
word:89806 x
atf=x
word:89807 UGU-
atf=UGU-š]u₂
word:89807 šu
atf=UGU-š]u₂
word:89808 KUM₂
atf=KUM₂
word:89809
atf=[x
cluster:79583
word:89809 x
atf=[x
word:89810 x
atf=x]
line:86036
atf=4'. [x x x x x x x x Š]U₂? L[UGAL? x x x x]
word:89811
atf=[x
cluster:79584
word:89811 x
atf=[x
word:89812 x
atf=x
word:89813 x
atf=x
word:89814 x
atf=x
word:89815 x
atf=x
word:89816 x
atf=x
word:89817 x
atf=x
word:89818 x
atf=x
word:89819
atf=Š]U₂?
word:89819 ŠU₂
atf=Š]U₂?
word:89820 LUGAL None
atf=L[UGAL?
cluster:79585
word:89821 x
atf=x
word:89822 x
atf=x
word:89823 x
atf=x
word:89824 x
atf=x]
" + "
face:59264 P285109 reverse
line:59375
atf=1'. [x x x] x lu#-u₂# ina KAŠ.SAG [x x x x x x x]
cluster:52919
word:63111 x
atf=[x
word:63112 x
atf=x
word:63113 x
atf=x]
word:63114 x-
atf=x
word:63115 lu u-
atf=lu#-u₂#
word:63116 ina.
atf=ina
word:63117 KAŠ SAG.
atf=KAŠ.SAG
cluster:52920
word:63118 x
atf=[x
word:63119 x
atf=x
word:63120 x
atf=x
word:63121 x
atf=x
word:63122 x
atf=x
word:63123 x
atf=x
word:63124 x\n", + "
atf=x]
line:59376
atf=2'. [DIŠ NA SA]G.KI.DAB.BA TUKU.TUKU [x x x x]
cluster:52921
word:63125 DIŠ
atf=[DIŠ
word:63126 NA.
atf=NA
word:63127 SAG.
atf=SA]G.KI.DAB.BA
word:63127 KI.DAB. BA.
atf=SA]G.KI.DAB.BA
word:63128 TUKU TUKU.
atf=TUKU.TUKU
cluster:52922
word:63129 x
atf=[x
word:63130 x
atf=x
word:63131 x
atf=x
word:63132 x\n", + "
atf=x]
line:59377
atf=3'. [x x x x x UGU-š]u₂ KUM₂ [x x]
cluster:52923
word:63133 x
atf=[x
word:63134 x
atf=x
word:63135 x
atf=x
word:63136 x
atf=x
word:63137 x-
atf=x
word:63138 UGU šu-
atf=UGU-š]u₂
word:63139 KUM₂
atf=KUM₂
cluster:52924
word:63140 x
atf=[x
word:63141 x\n", + "
atf=x]
line:59378
atf=4'. [x x x x x x x x Š]U₂? L[UGAL? x x x x]
cluster:52925
word:63142 x
atf=[x
word:63143 x
atf=x
word:63144 x
atf=x
word:63145 x
atf=x
word:63146 x
atf=x
word:63147 x
atf=x
word:63148 x
atf=x
word:63149 x
atf=x
word:63150 ŠU₂
atf=Š]U₂?
cluster:52926
word:63151 LUGAL
atf=L[UGAL?
word:63152 x
atf=x
word:63153 x
atf=x
word:63154 x
atf=x
word:63155 x\n", + "
atf=x]
" ], "text/plain": [ "" diff --git a/tutorial/start.ipynb b/tutorial/start.ipynb index 4bfa143..91cc6bb 100644 --- a/tutorial/start.ipynb +++ b/tutorial/start.ipynb @@ -139,13 +139,13 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "text/html": [ - "TF-app: ~/text-fabric-data/Nino-cunei/ninmed/app" + "TF-app: ~/github/Nino-cunei/ninmed/app" ], "text/plain": [ "" @@ -157,7 +157,7 @@ { "data": { "text/html": [ - "data: ~/text-fabric-data/Nino-cunei/ninmed/tf/0.2" + "data: ~/github/Nino-cunei/ninmed/tf/0.2" ], "text/plain": [ "" @@ -185,7 +185,7 @@ "\n", "
\n", "
\n", - "after\n", + "after\n", "
\n", "
str
\n", "
\n", @@ -228,7 +228,7 @@ "\n", "
\n", "
\n", - "atf\n", + "atf\n", "
\n", "
str
\n", "
\n", @@ -271,7 +271,7 @@ "\n", "
\n", "
\n", - "col\n", + "col\n", "
\n", "
int
\n", "
\n", @@ -314,7 +314,7 @@ "\n", "
\n", "
\n", - "collated\n", + "collated\n", "
\n", "
int
\n", "
\n", @@ -357,7 +357,7 @@ "\n", "
\n", "
\n", - "collection\n", + "collection\n", "
\n", "
str
\n", "
\n", @@ -400,7 +400,7 @@ "\n", "
\n", "
\n", - "colofon\n", + "colofon\n", "
\n", "
str
\n", "
\n", @@ -443,7 +443,7 @@ "\n", "
\n", "
\n", - "comment\n", + "comment\n", "
\n", "
str
\n", "
\n", @@ -486,7 +486,7 @@ "\n", "
\n", "
\n", - "damage\n", + "damage\n", "
\n", "
int
\n", "
\n", @@ -529,7 +529,7 @@ "\n", "
\n", "
\n", - "description\n", + "description\n", "
\n", "
str
\n", "
\n", @@ -572,7 +572,7 @@ "\n", "
\n", "
\n", - "det\n", + "det\n", "
\n", "
int
\n", "
\n", @@ -615,7 +615,7 @@ "\n", "
\n", "
\n", - "docnumber\n", + "docnumber\n", "
\n", "
str
\n", "
\n", @@ -658,7 +658,7 @@ "\n", "
\n", "
\n", - "excised\n", + "excised\n", "
\n", "
int
\n", "
\n", @@ -701,7 +701,7 @@ "\n", "
\n", "
\n", - "face\n", + "face\n", "
\n", "
str
\n", "
\n", @@ -744,7 +744,7 @@ "\n", "
\n", "
\n", - "flags\n", + "flags\n", "
\n", "
str
\n", "
\n", @@ -787,7 +787,7 @@ "\n", "
\n", "
\n", - "gloss\n", + "gloss\n", "
\n", "
int
\n", "
\n", @@ -830,7 +830,7 @@ "\n", "
\n", "
\n", - "grapheme\n", + "grapheme\n", "
\n", "
str
\n", "
\n", @@ -873,7 +873,7 @@ "\n", "
\n", "
\n", - "lang\n", + "lang\n", "
\n", "
str
\n", "
\n", @@ -916,7 +916,7 @@ "\n", "
\n", "
\n", - "lemma\n", + "lemma\n", "
\n", "
str
\n", "
\n", @@ -959,7 +959,7 @@ "\n", "
\n", "
\n", - "lln\n", + "lln\n", "
\n", "
int
\n", "
\n", @@ -1002,7 +1002,7 @@ "\n", "
\n", "
\n", - "ln\n", + "ln\n", "
\n", "
int
\n", "
\n", @@ -1045,7 +1045,7 @@ "\n", "
\n", "
\n", - "lnno\n", + "lnno\n", "
\n", "
str
\n", "
\n", @@ -1088,7 +1088,7 @@ "\n", "
\n", "
\n", - "missing\n", + "missing\n", "
\n", "
int
\n", "
\n", @@ -1131,7 +1131,7 @@ "\n", "
\n", "
\n", - "modifiers\n", + "modifiers\n", "
\n", "
str
\n", "
\n", @@ -1174,7 +1174,7 @@ "\n", "
\n", "
\n", - "museum\n", + "museum\n", "
\n", "
str
\n", "
\n", @@ -1217,7 +1217,7 @@ "\n", "
\n", "
\n", - "note\n", + "note\n", "
\n", "
str
\n", "
\n", @@ -1260,7 +1260,7 @@ "\n", "
\n", "
\n", - "number\n", + "number\n", "
\n", "
int
\n", "
\n", @@ -1303,7 +1303,7 @@ "\n", "
\n", "
\n", - "otype\n", + "otype\n", "
\n", "
str
\n", "
\n", @@ -1346,7 +1346,7 @@ "\n", "
\n", "
\n", - "pnumber\n", + "pnumber\n", "
\n", "
str
\n", "
\n", @@ -1389,7 +1389,7 @@ "\n", "
\n", "
\n", - "primecol\n", + "primecol\n", "
\n", "
int
\n", "
\n", @@ -1432,7 +1432,7 @@ "\n", "
\n", "
\n", - "primeln\n", + "primeln\n", "
\n", "
int
\n", "
\n", @@ -1475,7 +1475,7 @@ "\n", "
\n", "
\n", - "publication\n", + "publication\n", "
\n", "
str
\n", "
\n", @@ -1518,7 +1518,7 @@ "\n", "
\n", "
\n", - "question\n", + "question\n", "
\n", "
int
\n", "
\n", @@ -1561,7 +1561,7 @@ "\n", "
\n", "
\n", - "reading\n", + "reading\n", "
\n", "
str
\n", "
\n", @@ -1604,7 +1604,7 @@ "\n", "
\n", "
\n", - "remarkable\n", + "remarkable\n", "
\n", "
int
\n", "
\n", @@ -1647,7 +1647,7 @@ "\n", "
\n", "
\n", - "ruling\n", + "ruling\n", "
\n", "
str
\n", "
\n", @@ -1690,7 +1690,7 @@ "\n", "
\n", "
\n", - "seal\n", + "seal\n", "
\n", "
str
\n", "
\n", @@ -1733,7 +1733,7 @@ "\n", "
\n", "
\n", - "supplied\n", + "supplied\n", "
\n", "
int
\n", "
\n", @@ -1776,7 +1776,7 @@ "\n", "
\n", "
\n", - "sym\n", + "sym\n", "
\n", "
str
\n", "
\n", @@ -1819,7 +1819,7 @@ "\n", "
\n", "
\n", - "tr@ll\n", + "tr@ll\n", "
\n", "
str
\n", "
\n", @@ -1862,7 +1862,7 @@ "\n", "
\n", "
\n", - "trans\n", + "trans\n", "
\n", "
int
\n", "
\n", @@ -1905,7 +1905,7 @@ "\n", "
\n", "
\n", - "type\n", + "type\n", "
\n", "
str
\n", "
\n", @@ -1948,7 +1948,7 @@ "\n", "
\n", "
\n", - "uncertain\n", + "uncertain\n", "
\n", "
int
\n", "
\n", @@ -1991,7 +1991,7 @@ "\n", "
\n", "
\n", - "variant\n", + "variant\n", "
\n", "
int
\n", "
\n", @@ -2034,7 +2034,7 @@ "\n", "
\n", "
\n", - "oslots\n", + "oslots\n", "
\n", "
none
\n", "
\n", @@ -2743,7 +2743,8 @@ } ], "source": [ - "A = use(\"Nino-cunei/ninmed\", hoist=globals())" + "A = use(\"Nino-cunei/ninmed:clone\", checkout=\"clone\", hoist=globals())\n", + "# A = use(\"Nino-cunei/ninmed\", hoist=globals())" ] }, { @@ -2826,7 +2827,7 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 5, "metadata": { "ExecuteTime": { "end_time": "2018-05-18T09:17:43.894153Z", @@ -2877,7 +2878,7 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 6, "metadata": { "ExecuteTime": { "end_time": "2018-05-18T09:17:47.820323Z", @@ -2891,7 +2892,7 @@ "'sign'" ] }, - "execution_count": 7, + "execution_count": 6, "metadata": {}, "output_type": "execute_result" } @@ -2902,7 +2903,7 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 7, "metadata": { "ExecuteTime": { "end_time": "2018-05-18T09:17:48.549430Z", @@ -2916,7 +2917,7 @@ "79488" ] }, - "execution_count": 8, + "execution_count": 7, "metadata": {}, "output_type": "execute_result" } @@ -2927,7 +2928,7 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 8, "metadata": { "ExecuteTime": { "end_time": "2018-05-18T09:17:49.251302Z", @@ -2941,7 +2942,7 @@ "120237" ] }, - "execution_count": 9, + "execution_count": 8, "metadata": {}, "output_type": "execute_result" } @@ -2952,7 +2953,7 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 9, "metadata": { "ExecuteTime": { "end_time": "2018-05-18T09:17:49.922863Z", @@ -2966,7 +2967,7 @@ "('document', 'face', 'line', 'cluster', 'word', 'sign')" ] }, - "execution_count": 10, + "execution_count": 9, "metadata": {}, "output_type": "execute_result" } @@ -2977,7 +2978,7 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": 10, "metadata": { "ExecuteTime": { "end_time": "2018-05-18T09:17:51.782779Z", @@ -2996,7 +2997,7 @@ " ('sign', 1, 1, 79488))" ] }, - "execution_count": 11, + "execution_count": 10, "metadata": {}, "output_type": "execute_result" } @@ -3025,7 +3026,7 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 11, "metadata": { "ExecuteTime": { "end_time": "2018-05-18T09:17:57.806821Z", @@ -3095,7 +3096,7 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 12, "metadata": { "ExecuteTime": { "end_time": "2018-05-18T09:18:18.039544Z", @@ -3128,7 +3129,7 @@ " ('šanû I', 178))" ] }, - "execution_count": 13, + "execution_count": 12, "metadata": {}, "output_type": "execute_result" } @@ -3146,7 +3147,7 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 13, "metadata": { "ExecuteTime": { "end_time": "2018-05-18T09:18:18.039544Z", @@ -3165,7 +3166,7 @@ " ('excised', 4))" ] }, - "execution_count": 14, + "execution_count": 13, "metadata": {}, "output_type": "execute_result" } @@ -3176,7 +3177,7 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 14, "metadata": { "ExecuteTime": { "end_time": "2018-05-18T09:18:18.039544Z", @@ -3200,7 +3201,7 @@ " ('erasure', 26))" ] }, - "execution_count": 15, + "execution_count": 14, "metadata": {}, "output_type": "execute_result" } @@ -3218,7 +3219,7 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 15, "metadata": { "ExecuteTime": { "end_time": "2018-05-18T09:18:18.039544Z", @@ -3244,7 +3245,7 @@ " ('??#', 1))" ] }, - "execution_count": 16, + "execution_count": 15, "metadata": {}, "output_type": "execute_result" } @@ -3272,7 +3273,7 @@ }, { "cell_type": "code", - "execution_count": 17, + "execution_count": 16, "metadata": {}, "outputs": [ { @@ -3357,7 +3358,7 @@ }, { "cell_type": "code", - "execution_count": 18, + "execution_count": 17, "metadata": { "ExecuteTime": { "end_time": "2018-05-18T09:18:55.410034Z", @@ -3387,7 +3388,7 @@ }, { "cell_type": "code", - "execution_count": 19, + "execution_count": 18, "metadata": { "ExecuteTime": { "end_time": "2018-05-18T09:18:56.772513Z", @@ -3427,7 +3428,7 @@ }, { "cell_type": "code", - "execution_count": 20, + "execution_count": 19, "metadata": { "ExecuteTime": { "end_time": "2018-05-18T09:18:58.821681Z", @@ -3471,7 +3472,7 @@ }, { "cell_type": "code", - "execution_count": 21, + "execution_count": 20, "metadata": { "ExecuteTime": { "end_time": "2018-05-18T09:19:00.163973Z", @@ -3520,7 +3521,7 @@ }, { "cell_type": "code", - "execution_count": 22, + "execution_count": 21, "metadata": { "ExecuteTime": { "end_time": "2018-05-18T09:19:02.530705Z", @@ -3552,7 +3553,7 @@ }, { "cell_type": "code", - "execution_count": 23, + "execution_count": 22, "metadata": { "ExecuteTime": { "end_time": "2018-05-18T09:19:04.024679Z", @@ -3651,7 +3652,7 @@ }, { "cell_type": "code", - "execution_count": 24, + "execution_count": 23, "metadata": { "ExecuteTime": { "end_time": "2018-05-18T09:19:05.606582Z", @@ -3665,7 +3666,7 @@ "['layout-orig-full', 'layout-orig-plain', 'text-orig-full', 'text-orig-plain']" ] }, - "execution_count": 24, + "execution_count": 23, "metadata": {}, "output_type": "execute_result" } @@ -3693,7 +3694,7 @@ }, { "cell_type": "code", - "execution_count": 25, + "execution_count": 24, "metadata": {}, "outputs": [ { @@ -3702,7 +3703,7 @@ "'DU₃.DU₃.BI ... 5 KA.'" ] }, - "execution_count": 25, + "execution_count": 24, "metadata": {}, "output_type": "execute_result" } @@ -3734,7 +3735,7 @@ }, { "cell_type": "code", - "execution_count": 26, + "execution_count": 25, "metadata": {}, "outputs": [ { @@ -3743,7 +3744,7 @@ "[1, 89054, 79489, 85972, 85918, 85884]" ] }, - "execution_count": 26, + "execution_count": 25, "metadata": {}, "output_type": "execute_result" } @@ -3762,7 +3763,7 @@ }, { "cell_type": "code", - "execution_count": 27, + "execution_count": 26, "metadata": {}, "outputs": [ { @@ -3811,7 +3812,7 @@ }, { "cell_type": "code", - "execution_count": 28, + "execution_count": 27, "metadata": { "ExecuteTime": { "end_time": "2018-05-18T09:19:10.077589Z", @@ -3845,7 +3846,7 @@ }, { "cell_type": "code", - "execution_count": 29, + "execution_count": 28, "metadata": { "ExecuteTime": { "end_time": "2018-05-18T09:19:13.490426Z", @@ -3859,7 +3860,7 @@ "'DU₃#[.DU₃.BI ...] 5 KA#.'" ] }, - "execution_count": 29, + "execution_count": 28, "metadata": {}, "output_type": "execute_result" } @@ -3870,7 +3871,7 @@ }, { "cell_type": "code", - "execution_count": 30, + "execution_count": 29, "metadata": {}, "outputs": [ { @@ -3879,7 +3880,7 @@ "'DU₃#[.DU₃.BI ...] '" ] }, - "execution_count": 30, + "execution_count": 29, "metadata": {}, "output_type": "execute_result" } @@ -3891,7 +3892,7 @@ }, { "cell_type": "code", - "execution_count": 31, + "execution_count": 30, "metadata": {}, "outputs": [ { @@ -3900,7 +3901,7 @@ "'DU₃.DU₃.BI ... '" ] }, - "execution_count": 31, + "execution_count": 30, "metadata": {}, "output_type": "execute_result" } @@ -3929,7 +3930,7 @@ }, { "cell_type": "code", - "execution_count": 32, + "execution_count": 31, "metadata": { "ExecuteTime": { "end_time": "2018-05-18T09:19:27.839331Z", @@ -3942,7 +3943,7 @@ "output_type": "stream", "text": [ " 0.00s writing plain text of all letters in all text formats\n", - " 0.22s done 2 formats\n", + " 0.21s done 2 formats\n", "text-orig-full\n", "DU₃#[.DU₃.BI ...] \n", "5 KA#.INIM.MA [x x x x] \n", @@ -3987,7 +3988,7 @@ }, { "cell_type": "code", - "execution_count": 33, + "execution_count": 32, "metadata": { "ExecuteTime": { "end_time": "2018-05-18T09:19:34.250294Z", @@ -4034,7 +4035,7 @@ }, { "cell_type": "code", - "execution_count": 34, + "execution_count": 33, "metadata": {}, "outputs": [], "source": [ @@ -4050,7 +4051,7 @@ }, { "cell_type": "code", - "execution_count": 35, + "execution_count": 34, "metadata": { "ExecuteTime": { "end_time": "2018-05-18T09:19:43.056511Z", diff --git a/yaml/meta.yaml b/yaml/meta.yaml index 171fc2e..6b6f9d7 100644 --- a/yaml/meta.yaml +++ b/yaml/meta.yaml @@ -1,5 +1,5 @@ versionSrc: "0.1" -versionTf: "0.2" +versionTf: "0.3" name: NinMed Medical Texts from Nineveh editor: Cale Johnson et al.