diff --git a/convert-anystyle-data/requirements.txt b/convert-anystyle-data/requirements.txt
index f514882cb282f6756976e9bf5088dc8218d4570f..d287bcccf309910c88fce9329c43c88015f01713 100644
--- a/convert-anystyle-data/requirements.txt
+++ b/convert-anystyle-data/requirements.txt
@@ -7,4 +7,5 @@ xmltodict
 nameparser
 rdflib
 pandoc
-bibutils
\ No newline at end of file
+bibutils
+standoffconverter
\ No newline at end of file
diff --git a/convert-anystyle-data/tei-to-prodigy.ipynb b/convert-anystyle-data/tei-to-prodigy.ipynb
new file mode 100644
index 0000000000000000000000000000000000000000..355c629029284a3210e06814ae8359fb267a1a7f
--- /dev/null
+++ b/convert-anystyle-data/tei-to-prodigy.ipynb
@@ -0,0 +1,94 @@
+{
+ "cells": [
+  {
+   "metadata": {},
+   "cell_type": "markdown",
+   "source": [
+    "# Convert TEI files to the Prodigy format\n",
+    "\n",
+    "Uses https://github.com/standoff-nlp/standoffconverter and https://spacy.io/\n",
+    "\n",
+    "based on https://github.com/standoff-nlp/standoffconverter/blob/master/examples/tei-spacy-tei.ipynb"
+   ],
+   "id": "cb631197c03a0768"
+  },
+  {
+   "metadata": {
+    "ExecuteTime": {
+     "start_time": "2024-09-01T09:20:00.456059Z"
+    }
+   },
+   "cell_type": "code",
+   "outputs": [],
+   "execution_count": null,
+   "source": [
+    "!pip install standoffconverter\n",
+    "!pip install spacy"
+   ],
+   "id": "29d86dcc18e8ffe4"
+  },
+  {
+   "metadata": {
+    "ExecuteTime": {
+     "end_time": "2024-09-01T21:19:59.712485Z",
+     "start_time": "2024-09-01T21:19:59.313924Z"
+    }
+   },
+   "cell_type": "code",
+   "source": [
+    "from lxml import etree\n",
+    "from standoffconverter import Standoff, View\n",
+    "parser = etree.XMLParser(remove_blank_text=True)\n",
+    "\n",
+    "input_path = 'tei/10.1111_1467-6478.00057.xml'\n",
+    "namespaces = {'tei': 'http://www.tei-c.org/ns/1.0'}\n",
+    "tree = etree.parse(input_path, parser=parser)\n",
+    "so = Standoff(tree, namespaces=namespaces)\n",
+    "so.json"
+   ],
+   "id": "8cf7971ebda71f27",
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "'[{\"tag\": \"{http://www.tei-c.org/ns/1.0}text\", \"attrib\": {}, \"begin\": 0, \"end\": 21209, \"depth\": 0}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}body\", \"attrib\": {}, \"begin\": 0, \"end\": 21209, \"depth\": 1}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}p\", \"attrib\": {}, \"begin\": 0, \"end\": 45, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"1\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 45, \"end\": 259, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 45, \"end\": 259, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 45, \"end\": 55, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 45, \"end\": 55, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 45, \"end\": 47, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 47, \"end\": 55, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 80, \"end\": 113, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"m\"}, \"begin\": 139, \"end\": 150, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}editor\", \"attrib\": {}, \"begin\": 177, \"end\": 186, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 177, \"end\": 186, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 177, \"end\": 179, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 179, \"end\": 186, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 209, \"end\": 213, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"77\"}, \"begin\": 236, \"end\": 238, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"2\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 259, \"end\": 519, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 259, \"end\": 519, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 259, \"end\": 268, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 259, \"end\": 268, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 259, \"end\": 261, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 261, \"end\": 268, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 293, \"end\": 302, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 293, \"end\": 302, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 293, \"end\": 295, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 295, \"end\": 302, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 328, \"end\": 402, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 427, \"end\": 431, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"volume\", \"from\": \"27\", \"to\": \"27\"}, \"begin\": 454, \"end\": 456, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"j\"}, \"begin\": 467, \"end\": 484, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"183\"}, \"begin\": 495, \"end\": 498, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"3\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 519, \"end\": 708, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 519, \"end\": 708, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 519, \"end\": 526, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 519, \"end\": 526, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 519, \"end\": 521, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 521, \"end\": 526, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 551, \"end\": 558, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 551, \"end\": 558, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 551, \"end\": 553, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 553, \"end\": 558, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 581, \"end\": 629, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}edition\", \"attrib\": {}, \"begin\": 652, \"end\": 659, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 682, \"end\": 686, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"4\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 708, \"end\": 1224, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 708, \"end\": 1003, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"comment\"}, \"begin\": 708, \"end\": 804, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 829, \"end\": 850, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"m\"}, \"begin\": 876, \"end\": 918, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}editor\", \"attrib\": {}, \"begin\": 945, \"end\": 955, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 945, \"end\": 955, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 945, \"end\": 947, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 947, \"end\": 955, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 978, \"end\": 982, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 1003, \"end\": 1224, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 1003, \"end\": 1006, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 1029, \"end\": 1083, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 1108, \"end\": 1112, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"volume\", \"from\": \"20\", \"to\": \"20\"}, \"begin\": 1135, \"end\": 1137, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"j\"}, \"begin\": 1148, \"end\": 1176, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"1072\"}, \"begin\": 1199, \"end\": 1203, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"5\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 1224, \"end\": 1377, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 1224, \"end\": 1377, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 1224, \"end\": 1231, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 1224, \"end\": 1231, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 1224, \"end\": 1226, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 1226, \"end\": 1231, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 1256, \"end\": 1280, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 1305, \"end\": 1309, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"volume\", \"from\": \"28\", \"to\": \"28\"}, \"begin\": 1332, \"end\": 1334, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"j\"}, \"begin\": 1345, \"end\": 1354, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"379\"}, \"begin\": 1365, \"end\": 1368, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"6\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 1377, \"end\": 1655, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 1377, \"end\": 1655, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 1377, \"end\": 1383, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 1377, \"end\": 1383, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 1377, \"end\": 1379, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 1379, \"end\": 1383, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 1408, \"end\": 1462, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"m\"}, \"begin\": 1488, \"end\": 1513, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"comment\"}, \"begin\": 1536, \"end\": 1552, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 1575, \"end\": 1579, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"125\", \"to\": \"6\"}, \"begin\": 1602, \"end\": 1607, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"146\"}, \"begin\": 1631, \"end\": 1634, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"7\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 1655, \"end\": 1900, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 1655, \"end\": 1900, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 1655, \"end\": 1662, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 1655, \"end\": 1662, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 1655, \"end\": 1657, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 1657, \"end\": 1662, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 1687, \"end\": 1729, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"m\"}, \"begin\": 1755, \"end\": 1783, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}editor\", \"attrib\": {}, \"begin\": 1810, \"end\": 1827, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 1810, \"end\": 1827, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 1810, \"end\": 1812, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 1812, \"end\": 1827, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 1850, \"end\": 1854, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"75\"}, \"begin\": 1877, \"end\": 1879, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"8\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 1900, \"end\": 2089, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 1900, \"end\": 2089, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 1900, \"end\": 1908, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 1900, \"end\": 1908, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 1900, \"end\": 1902, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 1902, \"end\": 1908, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 1933, \"end\": 1941, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 1933, \"end\": 1941, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 1933, \"end\": 1935, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 1935, \"end\": 1941, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 1966, \"end\": 2011, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {}, \"begin\": 2034, \"end\": 2040, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}citedRange\", \"attrib\": {\"unit\": \"page\", \"from\": \"97\"}, \"begin\": 2066, \"end\": 2068, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"9\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 2089, \"end\": 2345, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 2089, \"end\": 2169, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 2089, \"end\": 2094, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 2089, \"end\": 2094, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 2089, \"end\": 2094, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {}, \"begin\": 2117, \"end\": 2120, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}citedRange\", \"attrib\": {\"unit\": \"page\", \"from\": \"79\"}, \"begin\": 2146, \"end\": 2148, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 2169, \"end\": 2345, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 2169, \"end\": 2181, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 2169, \"end\": 2181, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 2169, \"end\": 2171, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 2171, \"end\": 2181, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 2204, \"end\": 2216, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"comment\"}, \"begin\": 2239, \"end\": 2271, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 2294, \"end\": 2298, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"442\"}, \"begin\": 2321, \"end\": 2324, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"11\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 2345, \"end\": 2439, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 2345, \"end\": 2439, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 2345, \"end\": 2350, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 2345, \"end\": 2350, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 2345, \"end\": 2350, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {}, \"begin\": 2373, \"end\": 2387, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}citedRange\", \"attrib\": {\"unit\": \"page\", \"from\": \"80\", \"to\": \"1\"}, \"begin\": 2414, \"end\": 2418, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"12\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 2439, \"end\": 2597, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 2439, \"end\": 2597, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}editor\", \"attrib\": {}, \"begin\": 2439, \"end\": 2445, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 2439, \"end\": 2445, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 2439, \"end\": 2441, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 2441, \"end\": 2445, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 2474, \"end\": 2523, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 2546, \"end\": 2550, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"196\"}, \"begin\": 2573, \"end\": 2576, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"13\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 2597, \"end\": 2825, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 2597, \"end\": 2825, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 2597, \"end\": 2608, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 2597, \"end\": 2608, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 2597, \"end\": 2599, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 2599, \"end\": 2608, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 2633, \"end\": 2692, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 2717, \"end\": 2721, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"volume\", \"from\": \"20\", \"to\": \"20\"}, \"begin\": 2744, \"end\": 2746, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"j\"}, \"begin\": 2757, \"end\": 2778, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"56\"}, \"begin\": 2789, \"end\": 2791, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"61\"}, \"begin\": 2802, \"end\": 2804, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"14\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 2825, \"end\": 2973, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 2825, \"end\": 2973, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 2825, \"end\": 2831, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 2825, \"end\": 2831, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 2825, \"end\": 2827, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 2827, \"end\": 2831, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 2856, \"end\": 2923, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 2948, \"end\": 2952, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"30\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 2973, \"end\": 3244, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 2973, \"end\": 3031, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 2973, \"end\": 2984, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"145\"}, \"begin\": 3007, \"end\": 3010, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 3031, \"end\": 3244, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 3031, \"end\": 3038, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 3038, \"end\": 3048, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 3038, \"end\": 3048, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 3038, \"end\": 3040, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 3040, \"end\": 3048, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 3071, \"end\": 3136, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}editor\", \"attrib\": {}, \"begin\": 3163, \"end\": 3171, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 3163, \"end\": 3171, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 3163, \"end\": 3165, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 3165, \"end\": 3171, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 3194, \"end\": 3198, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"98\"}, \"begin\": 3221, \"end\": 3223, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"15\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 3244, \"end\": 3532, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 3244, \"end\": 3532, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 3244, \"end\": 3320, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 3320, \"end\": 3331, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 3320, \"end\": 3331, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 3320, \"end\": 3324, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 3324, \"end\": 3331, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 3356, \"end\": 3407, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 3432, \"end\": 3436, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"volume\", \"from\": \"3\", \"to\": \"3\"}, \"begin\": 3459, \"end\": 3460, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"j\"}, \"begin\": 3471, \"end\": 3498, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"30\"}, \"begin\": 3509, \"end\": 3511, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"16\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 3532, \"end\": 3763, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 3532, \"end\": 3763, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 3532, \"end\": 3541, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 3532, \"end\": 3541, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 3532, \"end\": 3536, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 3536, \"end\": 3541, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 3564, \"end\": 3658, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}edition\", \"attrib\": {}, \"begin\": 3681, \"end\": 3689, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 3712, \"end\": 3716, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"174\"}, \"begin\": 3739, \"end\": 3742, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"17\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 3763, \"end\": 4002, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 3763, \"end\": 3846, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"comment\"}, \"begin\": 3763, \"end\": 3825, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 3846, \"end\": 4002, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 3846, \"end\": 3849, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 3849, \"end\": 3860, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 3849, \"end\": 3860, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 3849, \"end\": 3853, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 3853, \"end\": 3860, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 3883, \"end\": 3928, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 3951, \"end\": 3955, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"160\"}, \"begin\": 3978, \"end\": 3981, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"18\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 4002, \"end\": 4179, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 4002, \"end\": 4179, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 4002, \"end\": 4013, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 4002, \"end\": 4013, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 4002, \"end\": 4004, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 4004, \"end\": 4013, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 4036, \"end\": 4106, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 4129, \"end\": 4133, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"ix\"}, \"begin\": 4156, \"end\": 4158, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"19\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 4179, \"end\": 4645, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 4179, \"end\": 4458, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"comment\"}, \"begin\": 4179, \"end\": 4458, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 4458, \"end\": 4645, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 4458, \"end\": 4461, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 4461, \"end\": 4469, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 4461, \"end\": 4469, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 4461, \"end\": 4463, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 4463, \"end\": 4469, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 4492, \"end\": 4547, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 4570, \"end\": 4574, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"volume\", \"from\": \"4\", \"to\": \"4\"}, \"begin\": 4597, \"end\": 4598, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"220\"}, \"begin\": 4621, \"end\": 4624, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"20\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 4645, \"end\": 4984, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 4645, \"end\": 4763, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"comment\"}, \"begin\": 4645, \"end\": 4742, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 4763, \"end\": 4984, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 4763, \"end\": 4766, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 4766, \"end\": 4776, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 4766, \"end\": 4776, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 4766, \"end\": 4770, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 4770, \"end\": 4776, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 4802, \"end\": 4860, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 4885, \"end\": 4889, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"volume\", \"from\": \"105\", \"to\": \"105\"}, \"begin\": 4912, \"end\": 4915, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"j\"}, \"begin\": 4926, \"end\": 4936, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"2117\"}, \"begin\": 4959, \"end\": 4963, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"21\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 4984, \"end\": 5270, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 4984, \"end\": 5084, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 4984, \"end\": 4993, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 4984, \"end\": 4993, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 4984, \"end\": 4986, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 4986, \"end\": 4993, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 5016, \"end\": 5035, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 5058, \"end\": 5062, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 5084, \"end\": 5270, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 5084, \"end\": 5134, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 5134, \"end\": 5145, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 5134, \"end\": 5145, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 5134, \"end\": 5136, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 5136, \"end\": 5145, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 5168, \"end\": 5182, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 5205, \"end\": 5209, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"especially\"}, \"begin\": 5233, \"end\": 5249, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"23\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 5270, \"end\": 6101, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 5270, \"end\": 5362, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {\"type\": \"legal\"}, \"begin\": 5270, \"end\": 5307, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 5307, \"end\": 5311, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}pubPlace\", \"attrib\": {}, \"begin\": 5334, \"end\": 5339, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 5362, \"end\": 5459, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {\"type\": \"legal\"}, \"begin\": 5362, \"end\": 5406, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 5406, \"end\": 5410, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}pubPlace\", \"attrib\": {}, \"begin\": 5433, \"end\": 5436, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 5459, \"end\": 5547, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {\"type\": \"legal\"}, \"begin\": 5459, \"end\": 5494, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 5494, \"end\": 5498, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}pubPlace\", \"attrib\": {}, \"begin\": 5521, \"end\": 5524, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 5547, \"end\": 5624, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {\"type\": \"legal\"}, \"begin\": 5547, \"end\": 5571, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 5571, \"end\": 5575, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}pubPlace\", \"attrib\": {}, \"begin\": 5598, \"end\": 5601, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 5624, \"end\": 5793, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {\"type\": \"legal\"}, \"begin\": 5624, \"end\": 5659, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 5659, \"end\": 5663, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}pubPlace\", \"attrib\": {}, \"begin\": 5686, \"end\": 5689, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"comment\"}, \"begin\": 5714, \"end\": 5784, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 5793, \"end\": 5797, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 5793, \"end\": 5797, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 5797, \"end\": 5854, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {\"type\": \"legal\"}, \"begin\": 5797, \"end\": 5804, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 5829, \"end\": 5833, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 5854, \"end\": 5974, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {\"type\": \"legal\"}, \"begin\": 5854, \"end\": 5868, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"comment\"}, \"begin\": 5892, \"end\": 5952, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 5974, \"end\": 5977, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 5974, \"end\": 5977, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 5977, \"end\": 6076, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {\"type\": \"legal\"}, \"begin\": 5977, \"end\": 5984, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 6009, \"end\": 6013, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"volume\", \"from\": \"2\", \"to\": \"2\"}, \"begin\": 6036, \"end\": 6037, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"j\"}, \"begin\": 6048, \"end\": 6055, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 6076, \"end\": 6101, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {\"type\": \"legal\"}, \"begin\": 6076, \"end\": 6079, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"24\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 6101, \"end\": 6599, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 6101, \"end\": 6358, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 6101, \"end\": 6110, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 6101, \"end\": 6110, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 6101, \"end\": 6103, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 6103, \"end\": 6110, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 6135, \"end\": 6189, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"m\"}, \"begin\": 6215, \"end\": 6251, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}editor\", \"attrib\": {}, \"begin\": 6278, \"end\": 6286, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 6278, \"end\": 6286, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 6278, \"end\": 6280, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 6280, \"end\": 6286, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 6309, \"end\": 6313, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"74\"}, \"begin\": 6336, \"end\": 6338, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\"}, \"begin\": 6349, \"end\": 6349, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 6358, \"end\": 6510, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 6358, \"end\": 6367, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 6358, \"end\": 6367, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 6358, \"end\": 6360, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 6360, \"end\": 6367, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 6390, \"end\": 6421, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 6444, \"end\": 6448, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"127\"}, \"begin\": 6471, \"end\": 6489, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 6510, \"end\": 6599, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 6510, \"end\": 6513, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 6513, \"end\": 6520, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 6513, \"end\": 6520, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 6513, \"end\": 6520, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"comment\"}, \"begin\": 6520, \"end\": 6578, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"25\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 6599, \"end\": 6772, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 6599, \"end\": 6772, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 6599, \"end\": 6609, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 6599, \"end\": 6609, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 6599, \"end\": 6603, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 6603, \"end\": 6609, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 6632, \"end\": 6670, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}edition\", \"attrib\": {}, \"begin\": 6693, \"end\": 6700, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 6723, \"end\": 6727, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"3\"}, \"begin\": 6750, \"end\": 6751, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"26\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 6772, \"end\": 7675, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 6772, \"end\": 6898, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"comment\"}, \"begin\": 6772, \"end\": 6898, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 6898, \"end\": 7223, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 6898, \"end\": 6901, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 6901, \"end\": 6931, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"j\"}, \"begin\": 6954, \"end\": 6967, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 6990, \"end\": 6994, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 7018, \"end\": 7025, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 7018, \"end\": 7025, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 7018, \"end\": 7025, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 7049, \"end\": 7174, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 7197, \"end\": 7201, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 7223, \"end\": 7405, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 7223, \"end\": 7240, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 7240, \"end\": 7247, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 7240, \"end\": 7247, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 7240, \"end\": 7242, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 7242, \"end\": 7247, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 7272, \"end\": 7324, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"m\"}, \"begin\": 7350, \"end\": 7358, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {}, \"begin\": 7381, \"end\": 7396, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 7405, \"end\": 7675, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 7405, \"end\": 7469, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 7469, \"end\": 7477, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 7469, \"end\": 7477, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 7469, \"end\": 7471, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 7471, \"end\": 7477, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 7502, \"end\": 7553, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 7578, \"end\": 7582, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"volume\", \"from\": \"94\", \"to\": \"94\"}, \"begin\": 7605, \"end\": 7607, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"j\"}, \"begin\": 7618, \"end\": 7628, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"997\"}, \"begin\": 7651, \"end\": 7654, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"27\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 7675, \"end\": 7838, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 7675, \"end\": 7838, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 7675, \"end\": 7687, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 7675, \"end\": 7687, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 7675, \"end\": 7677, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 7677, \"end\": 7679, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 7679, \"end\": 7687, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 7710, \"end\": 7761, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 7784, \"end\": 7788, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"347\"}, \"begin\": 7811, \"end\": 7814, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"28\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 7838, \"end\": 7934, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 7838, \"end\": 7934, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 7838, \"end\": 7847, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 7838, \"end\": 7847, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 7838, \"end\": 7847, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {}, \"begin\": 7870, \"end\": 7885, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}citedRange\", \"attrib\": {\"unit\": \"page\", \"from\": \"52\"}, \"begin\": 7911, \"end\": 7913, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"29\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 7934, \"end\": 8031, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 7934, \"end\": 8031, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 7934, \"end\": 7950, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 7934, \"end\": 7950, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 7934, \"end\": 7941, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 7941, \"end\": 7943, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 7943, \"end\": 7950, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 7973, \"end\": 7977, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"2\"}, \"begin\": 8000, \"end\": 8010, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"30\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 8031, \"end\": 8651, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 8031, \"end\": 8528, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 8031, \"end\": 8038, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 8031, \"end\": 8038, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 8031, \"end\": 8038, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {}, \"begin\": 8061, \"end\": 8077, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"comment\"}, \"begin\": 8088, \"end\": 8499, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 8528, \"end\": 8651, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 8528, \"end\": 8531, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 8531, \"end\": 8540, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 8531, \"end\": 8540, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 8531, \"end\": 8535, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 8535, \"end\": 8540, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 8564, \"end\": 8602, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 8625, \"end\": 8629, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"31\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 8651, \"end\": 8930, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 8651, \"end\": 8682, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 8651, \"end\": 8661, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 8651, \"end\": 8661, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 8651, \"end\": 8654, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 8654, \"end\": 8661, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 8682, \"end\": 8776, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {\"type\": \"legal\"}, \"begin\": 8682, \"end\": 8723, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 8723, \"end\": 8727, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}pubPlace\", \"attrib\": {}, \"begin\": 8750, \"end\": 8753, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 8776, \"end\": 8851, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {\"type\": \"legal\"}, \"begin\": 8776, \"end\": 8798, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 8798, \"end\": 8802, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}pubPlace\", \"attrib\": {}, \"begin\": 8825, \"end\": 8828, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 8851, \"end\": 8930, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {\"type\": \"legal\"}, \"begin\": 8851, \"end\": 8877, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 8877, \"end\": 8881, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}pubPlace\", \"attrib\": {}, \"begin\": 8904, \"end\": 8908, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"32\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 8930, \"end\": 9150, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 8930, \"end\": 9056, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 8930, \"end\": 8939, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 8930, \"end\": 8939, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 8930, \"end\": 8934, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 8934, \"end\": 8939, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 8962, \"end\": 9035, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 9056, \"end\": 9150, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 9056, \"end\": 9064, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 9056, \"end\": 9064, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 9056, \"end\": 9064, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {}, \"begin\": 9087, \"end\": 9095, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 9118, \"end\": 9122, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"33\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 9150, \"end\": 9246, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 9150, \"end\": 9246, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 9150, \"end\": 9159, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 9150, \"end\": 9159, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 9150, \"end\": 9159, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {}, \"begin\": 9182, \"end\": 9197, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}citedRange\", \"attrib\": {\"unit\": \"page\", \"from\": \"38\"}, \"begin\": 9223, \"end\": 9225, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"34\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 9246, \"end\": 9510, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 9246, \"end\": 9510, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 9246, \"end\": 9253, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 9253, \"end\": 9260, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 9253, \"end\": 9260, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 9253, \"end\": 9255, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 9255, \"end\": 9260, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 9285, \"end\": 9316, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"m\"}, \"begin\": 9342, \"end\": 9370, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}editor\", \"attrib\": {}, \"begin\": 9398, \"end\": 9405, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 9398, \"end\": 9405, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 9398, \"end\": 9400, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 9400, \"end\": 9405, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}editor\", \"attrib\": {}, \"begin\": 9430, \"end\": 9437, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 9430, \"end\": 9437, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 9430, \"end\": 9432, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 9432, \"end\": 9437, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 9460, \"end\": 9464, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"59\"}, \"begin\": 9487, \"end\": 9489, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"35\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 9510, \"end\": 9618, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 9510, \"end\": 9527, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 9510, \"end\": 9527, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 9527, \"end\": 9618, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {\"type\": \"legal\"}, \"begin\": 9527, \"end\": 9569, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 9592, \"end\": 9596, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"36\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 9618, \"end\": 9744, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 9618, \"end\": 9744, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 9618, \"end\": 9625, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 9625, \"end\": 9631, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 9625, \"end\": 9631, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 9625, \"end\": 9627, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 9627, \"end\": 9631, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 9654, \"end\": 9672, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 9695, \"end\": 9699, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"5\"}, \"begin\": 9722, \"end\": 9723, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"37\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 9744, \"end\": 11039, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 9744, \"end\": 9944, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 9744, \"end\": 9752, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 9744, \"end\": 9752, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 9744, \"end\": 9752, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"comment\"}, \"begin\": 9752, \"end\": 9944, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 9944, \"end\": 10448, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 9944, \"end\": 9971, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 9971, \"end\": 9991, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 9971, \"end\": 9991, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 9971, \"end\": 9973, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 9973, \"end\": 9982, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 9982, \"end\": 9991, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 10016, \"end\": 10025, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 10016, \"end\": 10025, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 10016, \"end\": 10018, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 10018, \"end\": 10025, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 10048, \"end\": 10106, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 10129, \"end\": 10133, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"comment\"}, \"begin\": 10157, \"end\": 10419, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 10448, \"end\": 10722, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 10448, \"end\": 10499, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 10499, \"end\": 10509, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 10499, \"end\": 10509, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 10499, \"end\": 10503, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 10503, \"end\": 10509, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 10534, \"end\": 10594, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 10619, \"end\": 10623, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"volume\", \"from\": \"56\", \"to\": \"56\"}, \"begin\": 10646, \"end\": 10648, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"j\"}, \"begin\": 10659, \"end\": 10688, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"99\"}, \"begin\": 10699, \"end\": 10701, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 10722, \"end\": 11039, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 10722, \"end\": 10777, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 10777, \"end\": 10786, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 10777, \"end\": 10786, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 10777, \"end\": 10779, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 10779, \"end\": 10786, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 10812, \"end\": 10914, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 10937, \"end\": 10941, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"volume\", \"from\": \"78\", \"to\": \"78\"}, \"begin\": 10964, \"end\": 10966, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"j\"}, \"begin\": 10977, \"end\": 10993, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"59\"}, \"begin\": 11016, \"end\": 11018, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"38\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 11039, \"end\": 11302, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 11039, \"end\": 11168, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"comment\"}, \"begin\": 11039, \"end\": 11168, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 11168, \"end\": 11244, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 11168, \"end\": 11188, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 11188, \"end\": 11197, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 11188, \"end\": 11197, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 11188, \"end\": 11197, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {}, \"begin\": 11220, \"end\": 11235, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 11244, \"end\": 11302, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 11244, \"end\": 11247, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 11247, \"end\": 11254, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 11247, \"end\": 11254, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 11247, \"end\": 11254, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {}, \"begin\": 11277, \"end\": 11293, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"39\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 11302, \"end\": 11539, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 11302, \"end\": 11539, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 11302, \"end\": 11350, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 11350, \"end\": 11359, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 11350, \"end\": 11359, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 11350, \"end\": 11352, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 11352, \"end\": 11359, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 11382, \"end\": 11409, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}editor\", \"attrib\": {}, \"begin\": 11435, \"end\": 11443, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 11435, \"end\": 11443, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 11435, \"end\": 11443, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {}, \"begin\": 11466, \"end\": 11474, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 11497, \"end\": 11501, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {}, \"begin\": 11525, \"end\": 11530, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"40\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 11539, \"end\": 11614, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 11539, \"end\": 11614, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"j\"}, \"begin\": 11539, \"end\": 11559, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 11559, \"end\": 11563, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}pubPlace\", \"attrib\": {}, \"begin\": 11586, \"end\": 11591, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"41\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 11614, \"end\": 11838, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 11614, \"end\": 11838, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 11614, \"end\": 11624, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 11614, \"end\": 11624, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 11614, \"end\": 11616, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 11616, \"end\": 11624, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 11647, \"end\": 11749, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 11772, \"end\": 11776, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}citedRange\", \"attrib\": {\"unit\": \"page\", \"from\": \"223\"}, \"begin\": 11800, \"end\": 11814, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"42\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 11838, \"end\": 11987, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 11838, \"end\": 11987, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 11838, \"end\": 11852, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 11838, \"end\": 11852, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 11838, \"end\": 11842, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 11842, \"end\": 11852, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 11875, \"end\": 11913, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 11936, \"end\": 11940, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"120\"}, \"begin\": 11963, \"end\": 11966, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"43\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 11987, \"end\": 12257, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 11987, \"end\": 12257, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 11987, \"end\": 11999, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 11999, \"end\": 12007, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 11999, \"end\": 12007, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 11999, \"end\": 12001, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 12001, \"end\": 12007, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 12033, \"end\": 12127, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 12152, \"end\": 12156, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"volume\", \"from\": \"4\", \"to\": \"4\"}, \"begin\": 12179, \"end\": 12180, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"j\"}, \"begin\": 12191, \"end\": 12211, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"93\"}, \"begin\": 12234, \"end\": 12236, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"44\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 12257, \"end\": 12471, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 12257, \"end\": 12471, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 12257, \"end\": 12264, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 12257, \"end\": 12264, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 12257, \"end\": 12259, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 12259, \"end\": 12264, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 12289, \"end\": 12358, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 12383, \"end\": 12387, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"volume\", \"from\": \"13\", \"to\": \"13\"}, \"begin\": 12410, \"end\": 12412, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"j\"}, \"begin\": 12423, \"end\": 12437, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"23\"}, \"begin\": 12448, \"end\": 12450, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"45\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 12471, \"end\": 12919, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 12471, \"end\": 12748, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {}, \"begin\": 12471, \"end\": 12474, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}citedRange\", \"attrib\": {\"unit\": \"page\", \"from\": \"24\"}, \"begin\": 12500, \"end\": 12502, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}citedRange\", \"attrib\": {\"unit\": \"page\"}, \"begin\": 12513, \"end\": 12513, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 12524, \"end\": 12534, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 12524, \"end\": 12534, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 12524, \"end\": 12526, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 12526, \"end\": 12534, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 12559, \"end\": 12608, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 12633, \"end\": 12637, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"volume\", \"from\": \"57\", \"to\": \"57\"}, \"begin\": 12660, \"end\": 12662, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"j\"}, \"begin\": 12673, \"end\": 12687, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"467\"}, \"begin\": 12710, \"end\": 12713, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"468\"}, \"begin\": 12724, \"end\": 12727, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 12748, \"end\": 12758, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 12748, \"end\": 12758, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 12758, \"end\": 12830, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {\"type\": \"legal\"}, \"begin\": 12758, \"end\": 12782, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 12805, \"end\": 12809, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 12830, \"end\": 12919, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {\"type\": \"legal\"}, \"begin\": 12830, \"end\": 12840, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}citedRange\", \"attrib\": {\"unit\": \"page\", \"from\": \"at\"}, \"begin\": 12863, \"end\": 12869, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}citedRange\", \"attrib\": {\"unit\": \"page\"}, \"begin\": 12880, \"end\": 12880, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 12891, \"end\": 12910, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 12891, \"end\": 12910, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 12891, \"end\": 12894, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 12894, \"end\": 12909, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 12909, \"end\": 12910, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"46\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 12919, \"end\": 13301, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 12919, \"end\": 13010, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 12919, \"end\": 12924, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 12919, \"end\": 12924, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 12919, \"end\": 12924, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {}, \"begin\": 12947, \"end\": 12962, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}citedRange\", \"attrib\": {\"unit\": \"page\", \"from\": \"34\"}, \"begin\": 12988, \"end\": 12990, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}citedRange\", \"attrib\": {\"unit\": \"page\"}, \"begin\": 13001, \"end\": 13001, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 13010, \"end\": 13301, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 13010, \"end\": 13022, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 13010, \"end\": 13022, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 13010, \"end\": 13012, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 13012, \"end\": 13022, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 13047, \"end\": 13190, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 13213, \"end\": 13217, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"volume\", \"from\": \"16\", \"to\": \"16\"}, \"begin\": 13240, \"end\": 13242, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"j\"}, \"begin\": 13253, \"end\": 13266, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"368\"}, \"begin\": 13277, \"end\": 13280, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"47\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 13301, \"end\": 13854, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 13301, \"end\": 13442, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 13301, \"end\": 13442, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 13442, \"end\": 13474, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {\"type\": \"legal\"}, \"begin\": 13442, \"end\": 13453, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 13474, \"end\": 13797, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {\"type\": \"legal\"}, \"begin\": 13474, \"end\": 13506, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 13539, \"end\": 13543, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"comment\"}, \"begin\": 13566, \"end\": 13768, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 13797, \"end\": 13854, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 13797, \"end\": 13800, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 13800, \"end\": 13806, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 13800, \"end\": 13806, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 13800, \"end\": 13806, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {}, \"begin\": 13829, \"end\": 13845, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"48\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 13854, \"end\": 14077, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 13854, \"end\": 14077, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 13854, \"end\": 13864, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 13854, \"end\": 13864, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 13854, \"end\": 13856, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 13856, \"end\": 13864, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 13889, \"end\": 13951, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 13976, \"end\": 13980, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"volume\", \"from\": \"59\", \"to\": \"59\"}, \"begin\": 14003, \"end\": 14005, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"j\"}, \"begin\": 14016, \"end\": 14030, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"675\"}, \"begin\": 14053, \"end\": 14056, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"49\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 14077, \"end\": 14319, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 14077, \"end\": 14207, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {\"type\": \"legal\"}, \"begin\": 14077, \"end\": 14114, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 14137, \"end\": 14141, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"volume\", \"from\": \"39\", \"to\": \"39\"}, \"begin\": 14164, \"end\": 14166, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"j\"}, \"begin\": 14177, \"end\": 14186, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 14207, \"end\": 14275, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {\"type\": \"legal\"}, \"begin\": 14207, \"end\": 14227, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 14250, \"end\": 14254, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 14275, \"end\": 14319, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {\"type\": \"legal\"}, \"begin\": 14275, \"end\": 14298, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"52\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 14319, \"end\": 14391, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 14319, \"end\": 14344, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 14319, \"end\": 14323, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 14344, \"end\": 14391, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {\"type\": \"legal\"}, \"begin\": 14344, \"end\": 14370, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"53\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 14391, \"end\": 14697, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 14391, \"end\": 14403, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"comment\"}, \"begin\": 14391, \"end\": 14403, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 14403, \"end\": 14501, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {\"type\": \"legal\"}, \"begin\": 14403, \"end\": 14435, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}citedRange\", \"attrib\": {\"unit\": \"page\", \"from\": \"52\"}, \"begin\": 14461, \"end\": 14463, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}citedRange\", \"attrib\": {\"unit\": \"page\"}, \"begin\": 14474, \"end\": 14474, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"comment\"}, \"begin\": 14485, \"end\": 14492, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 14501, \"end\": 14697, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {\"type\": \"legal\"}, \"begin\": 14501, \"end\": 14521, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 14521, \"end\": 14525, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}pubPlace\", \"attrib\": {}, \"begin\": 14548, \"end\": 14553, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"volume\", \"from\": \"54\", \"to\": \"54\"}, \"begin\": 14578, \"end\": 14580, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 14603, \"end\": 14607, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"A\"}, \"begin\": 14630, \"end\": 14643, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}citedRange\", \"attrib\": {\"unit\": \"page\", \"from\": \"N\"}, \"begin\": 14666, \"end\": 14675, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"55\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 14697, \"end\": 15106, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 14697, \"end\": 14869, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"comment\"}, \"begin\": 14697, \"end\": 14869, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 14869, \"end\": 14977, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {\"type\": \"legal\"}, \"begin\": 14869, \"end\": 14896, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 14919, \"end\": 14923, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"1\"}, \"begin\": 14946, \"end\": 14956, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 14977, \"end\": 14987, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 14977, \"end\": 14987, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 14987, \"end\": 15071, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {\"type\": \"legal\"}, \"begin\": 14987, \"end\": 15023, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 15046, \"end\": 15050, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 15071, \"end\": 15106, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {\"type\": \"legal\"}, \"begin\": 15071, \"end\": 15085, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"56\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 15106, \"end\": 15283, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 15106, \"end\": 15283, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 15106, \"end\": 15109, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 15109, \"end\": 15123, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 15109, \"end\": 15123, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 15109, \"end\": 15113, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 15113, \"end\": 15123, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 15148, \"end\": 15157, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 15148, \"end\": 15157, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 15148, \"end\": 15152, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 15152, \"end\": 15157, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 15180, \"end\": 15210, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 15233, \"end\": 15237, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"94\"}, \"begin\": 15260, \"end\": 15262, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"57\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 15283, \"end\": 15436, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 15283, \"end\": 15436, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 15283, \"end\": 15290, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 15290, \"end\": 15301, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 15290, \"end\": 15301, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 15290, \"end\": 15292, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 15292, \"end\": 15301, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 15324, \"end\": 15347, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 15370, \"end\": 15374, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"especially\"}, \"begin\": 15398, \"end\": 15415, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"58\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 15436, \"end\": 16212, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 15436, \"end\": 15691, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"comment\"}, \"begin\": 15436, \"end\": 15691, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 15691, \"end\": 16091, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 15691, \"end\": 15694, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 15694, \"end\": 15703, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 15694, \"end\": 15703, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 15694, \"end\": 15698, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 15698, \"end\": 15703, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 15728, \"end\": 15744, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 15769, \"end\": 15773, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"volume\", \"from\": \"73\", \"to\": \"73\"}, \"begin\": 15796, \"end\": 15798, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"j\"}, \"begin\": 15809, \"end\": 15819, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"733\"}, \"begin\": 15842, \"end\": 15845, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"comment\"}, \"begin\": 15868, \"end\": 16062, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 16091, \"end\": 16212, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 16091, \"end\": 16094, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 16094, \"end\": 16105, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 16094, \"end\": 16105, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 16094, \"end\": 16098, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 16098, \"end\": 16105, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 16128, \"end\": 16163, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 16186, \"end\": 16190, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"59\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 16212, \"end\": 16304, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 16212, \"end\": 16304, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 16212, \"end\": 16216, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"29\"}, \"begin\": 16239, \"end\": 16256, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}citedRange\", \"attrib\": {\"unit\": \"page\", \"from\": \"C\"}, \"begin\": 16279, \"end\": 16282, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"60\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 16304, \"end\": 16975, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 16304, \"end\": 16672, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"comment\"}, \"begin\": 16304, \"end\": 16672, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 16672, \"end\": 16975, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 16672, \"end\": 16723, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 16723, \"end\": 16734, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 16723, \"end\": 16734, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 16723, \"end\": 16725, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 16725, \"end\": 16734, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 16759, \"end\": 16851, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 16876, \"end\": 16880, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"volume\", \"from\": \"11\", \"to\": \"11\"}, \"begin\": 16903, \"end\": 16905, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"j\"}, \"begin\": 16916, \"end\": 16940, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"100\"}, \"begin\": 16951, \"end\": 16954, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"61\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 16975, \"end\": 17222, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 16975, \"end\": 17222, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 16975, \"end\": 16994, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 16994, \"end\": 17001, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 16994, \"end\": 17001, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 16994, \"end\": 16996, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 16996, \"end\": 17001, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 17026, \"end\": 17096, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 17121, \"end\": 17125, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"volume\", \"from\": \"16\", \"to\": \"16\"}, \"begin\": 17148, \"end\": 17150, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"j\"}, \"begin\": 17161, \"end\": 17175, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"412\"}, \"begin\": 17198, \"end\": 17201, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"62\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 17222, \"end\": 17478, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 17222, \"end\": 17478, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 17222, \"end\": 17225, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 17225, \"end\": 17248, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 17225, \"end\": 17248, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 17225, \"end\": 17232, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 17232, \"end\": 17237, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 17237, \"end\": 17248, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 17273, \"end\": 17283, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 17273, \"end\": 17283, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 17273, \"end\": 17277, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 17277, \"end\": 17283, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 17308, \"end\": 17346, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 17371, \"end\": 17375, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"volume\", \"from\": \"8\", \"to\": \"8\"}, \"begin\": 17398, \"end\": 17399, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"j\"}, \"begin\": 17410, \"end\": 17429, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"111\"}, \"begin\": 17440, \"end\": 17443, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"133\"}, \"begin\": 17454, \"end\": 17457, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"63\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 17478, \"end\": 17698, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 17478, \"end\": 17698, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 17478, \"end\": 17487, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 17478, \"end\": 17487, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 17478, \"end\": 17480, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 17480, \"end\": 17487, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 17512, \"end\": 17577, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 17602, \"end\": 17606, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"volume\", \"from\": \"18\", \"to\": \"18\"}, \"begin\": 17629, \"end\": 17631, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"j\"}, \"begin\": 17642, \"end\": 17663, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"206\"}, \"begin\": 17674, \"end\": 17677, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"64\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 17698, \"end\": 17828, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 17698, \"end\": 17766, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 17698, \"end\": 17707, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 17698, \"end\": 17707, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 17698, \"end\": 17707, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {}, \"begin\": 17730, \"end\": 17745, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 17766, \"end\": 17828, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 17766, \"end\": 17774, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 17766, \"end\": 17774, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 17766, \"end\": 17774, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {}, \"begin\": 17797, \"end\": 17819, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"65\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 17828, \"end\": 17905, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 17828, \"end\": 17905, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"comment\"}, \"begin\": 17828, \"end\": 17850, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 17880, \"end\": 17884, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"66\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 17905, \"end\": 18155, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 17905, \"end\": 18155, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 17905, \"end\": 17954, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 17954, \"end\": 17966, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 17954, \"end\": 17966, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 17954, \"end\": 17958, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 17958, \"end\": 17966, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 17989, \"end\": 18106, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 18129, \"end\": 18133, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"67\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 18155, \"end\": 18325, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 18155, \"end\": 18325, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 18155, \"end\": 18166, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 18155, \"end\": 18166, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 18155, \"end\": 18159, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 18159, \"end\": 18166, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 18189, \"end\": 18252, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 18275, \"end\": 18279, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"46\"}, \"begin\": 18302, \"end\": 18304, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"68\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 18325, \"end\": 18638, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 18325, \"end\": 18438, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"comment\"}, \"begin\": 18325, \"end\": 18417, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 18438, \"end\": 18521, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 18438, \"end\": 18455, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 18455, \"end\": 18462, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 18455, \"end\": 18462, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 18455, \"end\": 18462, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {}, \"begin\": 18485, \"end\": 18500, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 18521, \"end\": 18585, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 18521, \"end\": 18526, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 18521, \"end\": 18526, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 18521, \"end\": 18526, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {}, \"begin\": 18549, \"end\": 18564, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 18585, \"end\": 18638, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 18585, \"end\": 18590, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 18585, \"end\": 18590, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 18585, \"end\": 18590, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {}, \"begin\": 18613, \"end\": 18629, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"69\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 18638, \"end\": 19201, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 18638, \"end\": 18900, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 18638, \"end\": 18652, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 18638, \"end\": 18652, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 18638, \"end\": 18644, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 18644, \"end\": 18646, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 18646, \"end\": 18652, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"comment\"}, \"begin\": 18652, \"end\": 18900, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 18900, \"end\": 19201, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 18900, \"end\": 18903, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 18903, \"end\": 18910, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 18903, \"end\": 18910, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 18903, \"end\": 18905, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 18905, \"end\": 18910, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 18934, \"end\": 19034, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"m\"}, \"begin\": 19058, \"end\": 19088, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}editor\", \"attrib\": {}, \"begin\": 19115, \"end\": 19125, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 19115, \"end\": 19125, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 19115, \"end\": 19119, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 19119, \"end\": 19125, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 19148, \"end\": 19152, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"262\", \"to\": \"4\"}, \"begin\": 19175, \"end\": 19180, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"70\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 19201, \"end\": 19485, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 19201, \"end\": 19485, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 19201, \"end\": 19254, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 19254, \"end\": 19262, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 19254, \"end\": 19262, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 19254, \"end\": 19256, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 19256, \"end\": 19262, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 19287, \"end\": 19345, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 19370, \"end\": 19374, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"volume\", \"from\": \"19\", \"to\": \"19\"}, \"begin\": 19397, \"end\": 19399, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"j\"}, \"begin\": 19410, \"end\": 19438, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"701\"}, \"begin\": 19461, \"end\": 19464, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"71\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 19485, \"end\": 19688, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 19485, \"end\": 19688, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 19485, \"end\": 19496, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 19485, \"end\": 19496, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 19485, \"end\": 19487, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 19487, \"end\": 19496, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 19521, \"end\": 19552, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 19577, \"end\": 19581, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"volume\", \"from\": \"11\", \"to\": \"11\"}, \"begin\": 19604, \"end\": 19606, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"j\"}, \"begin\": 19617, \"end\": 19639, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"295\"}, \"begin\": 19650, \"end\": 19653, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"300\"}, \"begin\": 19664, \"end\": 19667, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"72\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 19688, \"end\": 19877, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 19688, \"end\": 19877, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 19688, \"end\": 19706, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 19688, \"end\": 19706, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 19688, \"end\": 19690, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 19690, \"end\": 19699, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 19699, \"end\": 19706, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 19729, \"end\": 19805, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 19828, \"end\": 19832, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"7\"}, \"begin\": 19855, \"end\": 19856, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"73\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 19877, \"end\": 20109, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 19877, \"end\": 20109, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 19877, \"end\": 19884, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 19884, \"end\": 19895, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 19884, \"end\": 19895, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 19884, \"end\": 19886, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 19886, \"end\": 19895, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 19920, \"end\": 19967, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 19992, \"end\": 19996, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"volume\", \"from\": \"45\", \"to\": \"45\"}, \"begin\": 20019, \"end\": 20021, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"j\"}, \"begin\": 20032, \"end\": 20046, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"424\"}, \"begin\": 20069, \"end\": 20072, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"431\", \"to\": \"3\"}, \"begin\": 20083, \"end\": 20088, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"74\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 20109, \"end\": 20582, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 20109, \"end\": 20121, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 20109, \"end\": 20121, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 20121, \"end\": 20202, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {\"type\": \"legal\"}, \"begin\": 20121, \"end\": 20147, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 20147, \"end\": 20151, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}pubPlace\", \"attrib\": {}, \"begin\": 20174, \"end\": 20179, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 20202, \"end\": 20439, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 20202, \"end\": 20257, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 20257, \"end\": 20270, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 20257, \"end\": 20270, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 20257, \"end\": 20263, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 20263, \"end\": 20270, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 20295, \"end\": 20303, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 20295, \"end\": 20303, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 20295, \"end\": 20299, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 20299, \"end\": 20303, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 20326, \"end\": 20390, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 20413, \"end\": 20417, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 20439, \"end\": 20582, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 20439, \"end\": 20474, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 20439, \"end\": 20474, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 20439, \"end\": 20442, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 20442, \"end\": 20464, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 20464, \"end\": 20474, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 20497, \"end\": 20533, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 20556, \"end\": 20560, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"75\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 20582, \"end\": 20977, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 20582, \"end\": 20712, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 20582, \"end\": 20610, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 20582, \"end\": 20610, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 20582, \"end\": 20601, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 20601, \"end\": 20604, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 20604, \"end\": 20610, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 20633, \"end\": 20663, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 20686, \"end\": 20690, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 20712, \"end\": 20977, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {\"type\": \"legal\"}, \"begin\": 20712, \"end\": 20758, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}citedRange\", \"attrib\": {\"unit\": \"page\", \"from\": \"307\"}, \"begin\": 20758, \"end\": 20761, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 20784, \"end\": 20788, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 20812, \"end\": 20824, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 20812, \"end\": 20824, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 20812, \"end\": 20814, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 20814, \"end\": 20824, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 20849, \"end\": 20870, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"j\"}, \"begin\": 20893, \"end\": 20900, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}biblScope\", \"attrib\": {\"unit\": \"page\", \"from\": \"26\"}, \"begin\": 20923, \"end\": 20925, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 20952, \"end\": 20956, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"76\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 20977, \"end\": 21145, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 20977, \"end\": 21145, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}seg\", \"attrib\": {\"type\": \"signal\"}, \"begin\": 20977, \"end\": 20989, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 20989, \"end\": 20996, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 20989, \"end\": 20996, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 20989, \"end\": 20996, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}author\", \"attrib\": {}, \"begin\": 20996, \"end\": 21012, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}persName\", \"attrib\": {}, \"begin\": 20996, \"end\": 21012, \"depth\": 5}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 20996, \"end\": 20999, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}forename\", \"attrib\": {}, \"begin\": 20999, \"end\": 21005, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}surname\", \"attrib\": {}, \"begin\": 21005, \"end\": 21012, \"depth\": 6}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}title\", \"attrib\": {\"level\": \"a\"}, \"begin\": 21037, \"end\": 21096, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}date\", \"attrib\": {}, \"begin\": 21119, \"end\": 21123, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"77\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 21145, \"end\": 21196, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 21145, \"end\": 21196, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {}, \"begin\": 21145, \"end\": 21148, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}citedRange\", \"attrib\": {\"unit\": \"page\", \"from\": \"3\"}, \"begin\": 21174, \"end\": 21175, \"depth\": 4}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}note\", \"attrib\": {\"n\": \"78\", \"type\": \"footnote\", \"place\": \"bottom\"}, \"begin\": 21196, \"end\": 21209, \"depth\": 2}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}bibl\", \"attrib\": {}, \"begin\": 21196, \"end\": 21209, \"depth\": 3}, {\"tag\": \"{http://www.tei-c.org/ns/1.0}ref\", \"attrib\": {}, \"begin\": 21196, \"end\": 21209, \"depth\": 4}]'"
+      ]
+     },
+     "execution_count": 2,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "execution_count": 2
+  },
+  {
+   "metadata": {},
+   "cell_type": "code",
+   "outputs": [],
+   "execution_count": null,
+   "source": "",
+   "id": "f67a3774493ffd9"
+  }
+ ],
+ "metadata": {
+  "kernelspec": {
+   "display_name": "Python 3",
+   "language": "python",
+   "name": "python3"
+  },
+  "language_info": {
+   "codemirror_mode": {
+    "name": "ipython",
+    "version": 2
+   },
+   "file_extension": ".py",
+   "mimetype": "text/x-python",
+   "name": "python",
+   "nbconvert_exporter": "python",
+   "pygments_lexer": "ipython2",
+   "version": "2.7.6"
+  }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 5
+}