From 2268f32a7898f07dec216ca2f219695ed2b7a7c9 Mon Sep 17 00:00:00 2001 From: "Gerber, Mike" Date: Thu, 2 Mar 2023 10:06:00 +0100 Subject: [PATCH 01/82] =?UTF-8?q?=E2=9C=94=20CircleCI:=20Test=20on=20Pytho?= =?UTF-8?q?n=203.11?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d3dbd2e..9910485 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -20,4 +20,4 @@ workflows: - test: matrix: parameters: - python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] + python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"] From 0f0819512e4e958a88eaf1fa9a0e9a8f13d7c200 Mon Sep 17 00:00:00 2001 From: "Gerber, Mike" Date: Thu, 2 Mar 2023 10:22:51 +0100 Subject: [PATCH 02/82] =?UTF-8?q?=F0=9F=8E=A8=20Reformat=20using=20Black?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- qurator/dinglehopper/cli_line_dirs.py | 10 +++++++--- qurator/dinglehopper/ocr_files.py | 15 +++++++++++---- qurator/dinglehopper/ocrd_cli.py | 2 +- qurator/dinglehopper/tests/test_integ_ocrd_cli.py | 2 +- qurator/dinglehopper/word_error_rate.py | 2 -- setup.py | 2 +- 6 files changed, 21 insertions(+), 12 deletions(-) diff --git a/qurator/dinglehopper/cli_line_dirs.py b/qurator/dinglehopper/cli_line_dirs.py index 4c07ce5..950f668 100644 --- a/qurator/dinglehopper/cli_line_dirs.py +++ b/qurator/dinglehopper/cli_line_dirs.py @@ -32,7 +32,7 @@ def common_suffix(its): def removesuffix(text, suffix): if suffix and text.endswith(suffix): - return text[:-len(suffix)] + return text[: -len(suffix)] return text @@ -52,7 +52,9 @@ def process(gt_dir, ocr_dir, report_prefix, *, metrics=True): ocr = removesuffix(gt, gt_suffix) + ocr_suffix gt_text = plain_extract(os.path.join(gt_dir, gt), include_filename_in_id=True) - ocr_text = plain_extract(os.path.join(ocr_dir, ocr), include_filename_in_id=True) + ocr_text = plain_extract( + os.path.join(ocr_dir, ocr), include_filename_in_id=True + ) # Compute CER l_cer, l_n_characters = character_error_rate_n(gt_text, ocr_text) @@ -60,7 +62,9 @@ def process(gt_dir, ocr_dir, report_prefix, *, metrics=True): cer, n_characters = l_cer, l_n_characters else: # Rolling update - cer = (cer * n_characters + l_cer * l_n_characters) / (n_characters + l_n_characters) + cer = (cer * n_characters + l_cer * l_n_characters) / ( + n_characters + l_n_characters + ) n_characters = n_characters + l_n_characters # Compute WER diff --git a/qurator/dinglehopper/ocr_files.py b/qurator/dinglehopper/ocr_files.py index 69f4df7..97e56ed 100644 --- a/qurator/dinglehopper/ocr_files.py +++ b/qurator/dinglehopper/ocr_files.py @@ -98,14 +98,18 @@ def extract_texts_from_reading_order_group(group, tree, nsmap, textequiv_level): ro_children = filter(lambda child: "index" in child.attrib.keys(), ro_children) ro_children = sorted(ro_children, key=lambda child: int(child.attrib["index"])) - elif ET.QName(group.tag).localname in ["UnorderedGroup","UnorderedGroupIndexed"]: + elif ET.QName(group.tag).localname in ["UnorderedGroup", "UnorderedGroupIndexed"]: ro_children = list(group) else: raise NotImplementedError - for ro_child in ro_children: - if ET.QName(ro_child.tag).localname in ["OrderedGroup", "OrderedGroupIndexed", "UnorderedGroup", "UnorderedGroupIndexed"]: + if ET.QName(ro_child.tag).localname in [ + "OrderedGroup", + "OrderedGroupIndexed", + "UnorderedGroup", + "UnorderedGroupIndexed", + ]: regions.extend( extract_texts_from_reading_order_group( ro_child, tree, nsmap, textequiv_level @@ -139,7 +143,10 @@ def plain_extract(filename, include_filename_in_id=False): [ ExtractedText( id_template.format(filename=os.path.basename(filename), no=no), - None, None, normalize_sbb(line)) + None, + None, + normalize_sbb(line), + ) for no, line in enumerate(f.readlines()) ], "\n", diff --git a/qurator/dinglehopper/ocrd_cli.py b/qurator/dinglehopper/ocrd_cli.py index 7c513e6..9578a0a 100644 --- a/qurator/dinglehopper/ocrd_cli.py +++ b/qurator/dinglehopper/ocrd_cli.py @@ -33,7 +33,7 @@ class OcrdDinglehopperEvaluate(Processor): textequiv_level = self.parameter["textequiv_level"] gt_grp, ocr_grp = self.input_file_grp.split(",") - input_file_tuples = self.zip_input_files(on_error='abort') + input_file_tuples = self.zip_input_files(on_error="abort") for n, (gt_file, ocr_file) in enumerate(input_file_tuples): if not gt_file or not ocr_file: # file/page was not found in this group diff --git a/qurator/dinglehopper/tests/test_integ_ocrd_cli.py b/qurator/dinglehopper/tests/test_integ_ocrd_cli.py index 8aff22d..652b850 100644 --- a/qurator/dinglehopper/tests/test_integ_ocrd_cli.py +++ b/qurator/dinglehopper/tests/test_integ_ocrd_cli.py @@ -15,7 +15,7 @@ data_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)), "data") @pytest.mark.integration -@pytest.mark.skipif(sys.platform == 'win32', reason="only on unix") +@pytest.mark.skipif(sys.platform == "win32", reason="only on unix") def test_ocrd_cli(tmp_path): """Test OCR-D interface""" diff --git a/qurator/dinglehopper/word_error_rate.py b/qurator/dinglehopper/word_error_rate.py index 8f0cc96..64dc36c 100644 --- a/qurator/dinglehopper/word_error_rate.py +++ b/qurator/dinglehopper/word_error_rate.py @@ -42,10 +42,8 @@ def words(s: str): if not word_break_patched: patch_word_break() - # Check if c is an unwanted character, i.e. whitespace, punctuation, or similar def unwanted(c): - # See https://www.fileformat.info/info/unicode/category/index.htm # and https://unicodebook.readthedocs.io/unicode.html#categories unwanted_categories = "O", "M", "P", "Z", "S" diff --git a/setup.py b/setup.py index be17cc6..646a50f 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import find_packages, setup with open("requirements.txt") as fp: install_requires = fp.read() -with open('requirements-dev.txt') as fp: +with open("requirements-dev.txt") as fp: tests_require = fp.read() setup( From 0fd4ea19732b2956942bc0fee735cef90a7d36cc Mon Sep 17 00:00:00 2001 From: "Gerber, Mike" Date: Thu, 2 Mar 2023 16:24:08 +0100 Subject: [PATCH 03/82] =?UTF-8?q?=E2=9C=94=20Add=20@cneud's=20former=2040?= =?UTF-8?q?=20GB=20problem=20files=20to=20the=20test=20suite?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../00008228/00008228-00236534.gt4hist.xml | 17158 ++++++++++++ .../bigger-texts/00008228/00008228.gt.xml | 22865 ++++++++++++++++ .../tests/test_integ_bigger_texts.py | 29 + 3 files changed, 40052 insertions(+) create mode 100644 qurator/dinglehopper/tests/data/bigger-texts/00008228/00008228-00236534.gt4hist.xml create mode 100644 qurator/dinglehopper/tests/data/bigger-texts/00008228/00008228.gt.xml create mode 100644 qurator/dinglehopper/tests/test_integ_bigger_texts.py diff --git a/qurator/dinglehopper/tests/data/bigger-texts/00008228/00008228-00236534.gt4hist.xml b/qurator/dinglehopper/tests/data/bigger-texts/00008228/00008228-00236534.gt4hist.xml new file mode 100644 index 0000000..6e1ce5f --- /dev/null +++ b/qurator/dinglehopper/tests/data/bigger-texts/00008228/00008228-00236534.gt4hist.xml @@ -0,0 +1,17158 @@ + + + + pixel + + + + + + + tesseract v4.1.0-elag2019 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/qurator/dinglehopper/tests/data/bigger-texts/00008228/00008228.gt.xml b/qurator/dinglehopper/tests/data/bigger-texts/00008228/00008228.gt.xml new file mode 100644 index 0000000..d21e8b8 --- /dev/null +++ b/qurator/dinglehopper/tests/data/bigger-texts/00008228/00008228.gt.xml @@ -0,0 +1,22865 @@ + + + + ABBYY FineReader Engine 9.0 + 2010-12-06T05:01:38 + 2011-06-23T10:50:31 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + </PlainText> + <Unicode>THE MORNING CHRONICLE, FRIDAY JANUARY 1.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r4" type="heading"> + <Coords> + <Point x="598" y="511"/> + <Point x="637" y="513"/> + <Point x="641" y="520"/> + <Point x="654" y="520"/> + <Point x="657" y="519"/> + <Point x="669" y="519"/> + <Point x="672" y="521"/> + <Point x="688" y="521"/> + <Point x="690" y="513"/> + <Point x="698" y="513"/> + <Point x="704" y="517"/> + <Point x="714" y="518"/> + <Point x="731" y="518"/> + <Point x="749" y="508"/> + <Point x="772" y="508"/> + <Point x="772" y="507"/> + <Point x="787" y="507"/> + <Point x="790" y="515"/> + <Point x="837" y="515"/> + <Point x="839" y="507"/> + <Point x="847" y="507"/> + <Point x="849" y="510"/> + <Point x="857" y="510"/> + <Point x="864" y="505"/> + <Point x="873" y="505"/> + <Point x="878" y="513"/> + <Point x="887" y="514"/> + <Point x="902" y="505"/> + <Point x="927" y="505"/> + <Point x="921" y="504"/> + <Point x="958" y="504"/> + <Point x="921" y="504"/> + <Point x="958" y="504"/> + <Point x="921" y="504"/> + <Point x="958" y="504"/> + <Point x="961" y="512"/> + <Point x="972" y="512"/> + <Point x="974" y="513"/> + <Point x="987" y="513"/> + <Point x="991" y="519"/> + <Point x="995" y="519"/> + <Point x="1023" y="503"/> + <Point x="1042" y="503"/> + <Point x="1049" y="508"/> + <Point x="1058" y="511"/> + <Point x="1072" y="511"/> + <Point x="1073" y="510"/> + <Point x="1105" y="510"/> + <Point x="1117" y="509"/> + <Point x="1130" y="500"/> + <Point x="1141" y="500"/> + <Point x="1144" y="504"/> + <Point x="1154" y="503"/> + <Point x="1158" y="501"/> + <Point x="1167" y="501"/> + <Point x="1172" y="506"/> + <Point x="1182" y="507"/> + <Point x="1181" y="506"/> + <Point x="1193" y="505"/> + <Point x="1197" y="498"/> + <Point x="1207" y="497"/> + <Point x="1217" y="515"/> + <Point x="1226" y="518"/> + <Point x="1227" y="528"/> + <Point x="1217" y="529"/> + <Point x="1197" y="529"/> + <Point x="1196" y="531"/> + <Point x="1181" y="531"/> + <Point x="1182" y="532"/> + <Point x="1164" y="535"/> + <Point x="1158" y="531"/> + <Point x="1157" y="531"/> + <Point x="1142" y="534"/> + <Point x="1137" y="534"/> + <Point x="1132" y="533"/> + <Point x="1117" y="533"/> + <Point x="1105" y="534"/> + <Point x="1088" y="534"/> + <Point x="1086" y="535"/> + <Point x="1058" y="535"/> + <Point x="1058" y="536"/> + <Point x="1041" y="536"/> + <Point x="1042" y="536"/> + <Point x="1023" y="536"/> + <Point x="996" y="545"/> + <Point x="982" y="545"/> + <Point x="974" y="538"/> + <Point x="960" y="538"/> + <Point x="958" y="547"/> + <Point x="921" y="547"/> + <Point x="958" y="547"/> + <Point x="921" y="547"/> + <Point x="958" y="547"/> + <Point x="921" y="547"/> + <Point x="908" y="545"/> + <Point x="902" y="538"/> + <Point x="847" y="538"/> + <Point x="847" y="537"/> + <Point x="839" y="537"/> + <Point x="837" y="538"/> + <Point x="790" y="538"/> + <Point x="787" y="539"/> + <Point x="772" y="539"/> + <Point x="772" y="541"/> + <Point x="749" y="541"/> + <Point x="733" y="547"/> + <Point x="717" y="552"/> + <Point x="707" y="547"/> + <Point x="700" y="544"/> + <Point x="690" y="544"/> + <Point x="688" y="545"/> + <Point x="672" y="545"/> + <Point x="669" y="542"/> + <Point x="657" y="542"/> + <Point x="655" y="546"/> + <Point x="637" y="546"/> + <Point x="598" y="547"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>Morning Chronicle Office, Seven o’clock.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r5" type="heading"> + <Coords> + <Point x="477" y="605"/> + <Point x="528" y="605"/> + <Point x="531" y="603"/> + <Point x="588" y="603"/> + <Point x="587" y="602"/> + <Point x="639" y="602"/> + <Point x="641" y="601"/> + <Point x="699" y="601"/> + <Point x="708" y="595"/> + <Point x="828" y="595"/> + <Point x="870" y="593"/> + <Point x="932" y="592"/> + <Point x="945" y="591"/> + <Point x="992" y="589"/> + <Point x="999" y="589"/> + <Point x="1018" y="588"/> + <Point x="1111" y="588"/> + <Point x="1121" y="589"/> + <Point x="1176" y="589"/> + <Point x="1190" y="588"/> + <Point x="1239" y="588"/> + <Point x="1251" y="628"/> + <Point x="1264" y="628"/> + <Point x="1263" y="650"/> + <Point x="1249" y="649"/> + <Point x="1235" y="650"/> + <Point x="1190" y="650"/> + <Point x="1177" y="653"/> + <Point x="1124" y="653"/> + <Point x="1113" y="654"/> + <Point x="1094" y="654"/> + <Point x="1083" y="656"/> + <Point x="1033" y="656"/> + <Point x="1024" y="657"/> + <Point x="1000" y="657"/> + <Point x="994" y="660"/> + <Point x="943" y="660"/> + <Point x="932" y="661"/> + <Point x="877" y="661"/> + <Point x="828" y="665"/> + <Point x="768" y="665"/> + <Point x="762" y="663"/> + <Point x="708" y="663"/> + <Point x="699" y="666"/> + <Point x="641" y="666"/> + <Point x="639" y="665"/> + <Point x="587" y="665"/> + <Point x="588" y="666"/> + <Point x="531" y="666"/> + <Point x="523" y="668"/> + <Point x="477" y="668"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>SECOND EDITION.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r6" type="heading"> + <Coords> + <Point x="597" y="716"/> + <Point x="645" y="716"/> + <Point x="683" y="715"/> + <Point x="694" y="715"/> + <Point x="714" y="716"/> + <Point x="722" y="715"/> + <Point x="754" y="715"/> + <Point x="764" y="716"/> + <Point x="801" y="714"/> + <Point x="854" y="714"/> + <Point x="904" y="712"/> + <Point x="977" y="712"/> + <Point x="976" y="712"/> + <Point x="1020" y="712"/> + <Point x="1021" y="711"/> + <Point x="1054" y="710"/> + <Point x="1060" y="709"/> + <Point x="1104" y="709"/> + <Point x="1107" y="708"/> + <Point x="1138" y="708"/> + <Point x="1141" y="738"/> + <Point x="1154" y="738"/> + <Point x="1154" y="758"/> + <Point x="1058" y="758"/> + <Point x="1057" y="759"/> + <Point x="1021" y="759"/> + <Point x="1020" y="760"/> + <Point x="976" y="760"/> + <Point x="977" y="761"/> + <Point x="905" y="761"/> + <Point x="855" y="766"/> + <Point x="817" y="765"/> + <Point x="800" y="767"/> + <Point x="767" y="766"/> + <Point x="756" y="767"/> + <Point x="724" y="765"/> + <Point x="712" y="766"/> + <Point x="692" y="765"/> + <Point x="596" y="765"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>UNITED STATES.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r7" type="heading"> + <Coords> + <Point x="550" y="804"/> + <Point x="555" y="805"/> + <Point x="599" y="805"/> + <Point x="598" y="805"/> + <Point x="689" y="805"/> + <Point x="688" y="805"/> + <Point x="718" y="805"/> + <Point x="716" y="805"/> + <Point x="735" y="805"/> + <Point x="737" y="804"/> + <Point x="836" y="804"/> + <Point x="840" y="803"/> + <Point x="901" y="803"/> + <Point x="928" y="802"/> + <Point x="943" y="798"/> + <Point x="955" y="798"/> + <Point x="970" y="797"/> + <Point x="1001" y="797"/> + <Point x="1023" y="798"/> + <Point x="1030" y="797"/> + <Point x="1052" y="797"/> + <Point x="1060" y="798"/> + <Point x="1081" y="797"/> + <Point x="1088" y="796"/> + <Point x="1108" y="797"/> + <Point x="1124" y="796"/> + <Point x="1140" y="796"/> + <Point x="1149" y="795"/> + <Point x="1172" y="795"/> + <Point x="1175" y="797"/> + <Point x="1187" y="795"/> + <Point x="1198" y="797"/> + <Point x="1198" y="835"/> + <Point x="1175" y="835"/> + <Point x="1172" y="828"/> + <Point x="1148" y="828"/> + <Point x="1144" y="829"/> + <Point x="1119" y="829"/> + <Point x="1114" y="830"/> + <Point x="1060" y="830"/> + <Point x="1054" y="833"/> + <Point x="1026" y="833"/> + <Point x="1025" y="831"/> + <Point x="976" y="831"/> + <Point x="970" y="833"/> + <Point x="954" y="833"/> + <Point x="950" y="834"/> + <Point x="928" y="834"/> + <Point x="901" y="835"/> + <Point x="869" y="841"/> + <Point x="864" y="847"/> + <Point x="838" y="842"/> + <Point x="836" y="844"/> + <Point x="808" y="842"/> + <Point x="807" y="838"/> + <Point x="779" y="838"/> + <Point x="758" y="840"/> + <Point x="737" y="840"/> + <Point x="738" y="840"/> + <Point x="714" y="840"/> + <Point x="718" y="840"/> + <Point x="688" y="840"/> + <Point x="689" y="840"/> + <Point x="598" y="840"/> + <Point x="599" y="840"/> + <Point x="572" y="847"/> + <Point x="559" y="846"/> + <Point x="550" y="846"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>(EXPRESS FROM LIVERPOOL.)</Unicode></TextEquiv></TextRegion> + <TextRegion id="r19" type="paragraph"> + <Coords> + <Point x="524" y="1801"/> + <Point x="566" y="1801"/> + <Point x="569" y="1809"/> + <Point x="611" y="1809"/> + <Point x="625" y="1798"/> + <Point x="630" y="1798"/> + <Point x="636" y="1805"/> + <Point x="644" y="1807"/> + <Point x="656" y="1806"/> + <Point x="675" y="1806"/> + <Point x="685" y="1800"/> + <Point x="691" y="1800"/> + <Point x="704" y="1801"/> + <Point x="714" y="1804"/> + <Point x="740" y="1804"/> + <Point x="744" y="1803"/> + <Point x="761" y="1803"/> + <Point x="767" y="1794"/> + <Point x="792" y="1794"/> + <Point x="806" y="1801"/> + <Point x="821" y="1801"/> + <Point x="822" y="1792"/> + <Point x="857" y="1792"/> + <Point x="867" y="1799"/> + <Point x="887" y="1801"/> + <Point x="909" y="1801"/> + <Point x="909" y="1800"/> + <Point x="928" y="1800"/> + <Point x="937" y="1796"/> + <Point x="942" y="1794"/> + <Point x="950" y="1795"/> + <Point x="957" y="1797"/> + <Point x="967" y="1799"/> + <Point x="971" y="1799"/> + <Point x="984" y="1798"/> + <Point x="990" y="1798"/> + <Point x="1000" y="1799"/> + <Point x="1004" y="1799"/> + <Point x="1018" y="1792"/> + <Point x="1041" y="1792"/> + <Point x="1047" y="1798"/> + <Point x="1056" y="1797"/> + <Point x="1074" y="1791"/> + <Point x="1090" y="1791"/> + <Point x="1101" y="1792"/> + <Point x="1106" y="1796"/> + <Point x="1118" y="1799"/> + <Point x="1130" y="1798"/> + <Point x="1148" y="1798"/> + <Point x="1150" y="1797"/> + <Point x="1185" y="1797"/> + <Point x="1185" y="1796"/> + <Point x="1198" y="1796"/> + <Point x="1201" y="1797"/> + <Point x="1212" y="1797"/> + <Point x="1214" y="1792"/> + <Point x="1226" y="1793"/> + <Point x="1233" y="1794"/> + <Point x="1258" y="1794"/> + <Point x="1275" y="1792"/> + <Point x="1275" y="1816"/> + <Point x="1260" y="1845"/> + <Point x="1272" y="1845"/> + <Point x="1272" y="1851"/> + <Point x="1271" y="1863"/> + <Point x="1261" y="1862"/> + <Point x="1257" y="1861"/> + <Point x="1242" y="1861"/> + <Point x="1238" y="1863"/> + <Point x="1182" y="1863"/> + <Point x="1179" y="1865"/> + <Point x="1164" y="1865"/> + <Point x="1161" y="1864"/> + <Point x="1151" y="1864"/> + <Point x="1132" y="1866"/> + <Point x="1101" y="1866"/> + <Point x="1089" y="1867"/> + <Point x="1064" y="1867"/> + <Point x="1063" y="1868"/> + <Point x="1048" y="1868"/> + <Point x="1046" y="1876"/> + <Point x="1017" y="1876"/> + <Point x="1013" y="1868"/> + <Point x="1000" y="1868"/> + <Point x="986" y="1869"/> + <Point x="972" y="1869"/> + <Point x="969" y="1868"/> + <Point x="954" y="1868"/> + <Point x="951" y="1869"/> + <Point x="910" y="1869"/> + <Point x="906" y="1868"/> + <Point x="892" y="1868"/> + <Point x="889" y="1869"/> + <Point x="874" y="1869"/> + <Point x="870" y="1868"/> + <Point x="854" y="1868"/> + <Point x="851" y="1869"/> + <Point x="800" y="1869"/> + <Point x="798" y="1868"/> + <Point x="775" y="1868"/> + <Point x="761" y="1869"/> + <Point x="752" y="1869"/> + <Point x="748" y="1870"/> + <Point x="715" y="1870"/> + <Point x="724" y="1909"/> + <Point x="691" y="1914"/> + <Point x="680" y="1915"/> + <Point x="619" y="1915"/> + <Point x="609" y="1918"/> + <Point x="592" y="1918"/> + <Point x="582" y="1920"/> + <Point x="561" y="1924"/> + <Point x="544" y="1926"/> + <Point x="514" y="1926"/> + <Point x="506" y="1925"/> + <Point x="487" y="1925"/> + <Point x="487" y="1844"/> + <Point x="513" y="1844"/> + <Point x="517" y="1845"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>There is not much of importance in the papers we +have received, but we annex the report of the Mo‐ +ney Market: —</Unicode></TextEquiv></TextRegion> + <TextRegion id="r20" type="heading"> + <Coords> + <Point x="725" y="1922"/> + <Point x="754" y="1923"/> + <Point x="803" y="1923"/> + <Point x="811" y="1922"/> + <Point x="831" y="1923"/> + <Point x="835" y="1923"/> + <Point x="853" y="1925"/> + <Point x="959" y="1925"/> + <Point x="979" y="1922"/> + <Point x="984" y="1922"/> + <Point x="1004" y="1923"/> + <Point x="1038" y="1923"/> + <Point x="1038" y="1957"/> + <Point x="1028" y="1957"/> + <Point x="1006" y="1956"/> + <Point x="755" y="1956"/> + <Point x="726" y="1957"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>MONEY MARKET.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r21" type="paragraph"> + <Coords> + <Point x="524" y="1969"/> + <Point x="551" y="1969"/> + <Point x="571" y="1972"/> + <Point x="576" y="1978"/> + <Point x="590" y="1978"/> + <Point x="594" y="1977"/> + <Point x="658" y="1977"/> + <Point x="661" y="1978"/> + <Point x="675" y="1978"/> + <Point x="679" y="1977"/> + <Point x="695" y="1973"/> + <Point x="701" y="1985"/> + <Point x="710" y="1984"/> + <Point x="722" y="1967"/> + <Point x="746" y="1967"/> + <Point x="747" y="1974"/> + <Point x="761" y="1974"/> + <Point x="759" y="1975"/> + <Point x="777" y="1975"/> + <Point x="781" y="1985"/> + <Point x="791" y="1983"/> + <Point x="800" y="1970"/> + <Point x="816" y="1970"/> + <Point x="823" y="1985"/> + <Point x="827" y="1984"/> + <Point x="843" y="1966"/> + <Point x="860" y="1966"/> + <Point x="867" y="1973"/> + <Point x="870" y="1975"/> + <Point x="888" y="1975"/> + <Point x="910" y="1974"/> + <Point x="923" y="1971"/> + <Point x="929" y="1978"/> + <Point x="932" y="1979"/> + <Point x="935" y="1974"/> + <Point x="952" y="1974"/> + <Point x="958" y="1982"/> + <Point x="964" y="1982"/> + <Point x="992" y="1981"/> + <Point x="996" y="1965"/> + <Point x="1012" y="1964"/> + <Point x="1021" y="1964"/> + <Point x="1034" y="1963"/> + <Point x="1042" y="1970"/> + <Point x="1048" y="1970"/> + <Point x="1075" y="1964"/> + <Point x="1094" y="1963"/> + <Point x="1105" y="1970"/> + <Point x="1108" y="1971"/> + <Point x="1124" y="1971"/> + <Point x="1134" y="1966"/> + <Point x="1139" y="1963"/> + <Point x="1147" y="1964"/> + <Point x="1166" y="1963"/> + <Point x="1190" y="1963"/> + <Point x="1198" y="1964"/> + <Point x="1206" y="1966"/> + <Point x="1209" y="1966"/> + <Point x="1213" y="1965"/> + <Point x="1220" y="1964"/> + <Point x="1229" y="1964"/> + <Point x="1232" y="1969"/> + <Point x="1244" y="1969"/> + <Point x="1247" y="1968"/> + <Point x="1257" y="1968"/> + <Point x="1259" y="1967"/> + <Point x="1272" y="1967"/> + <Point x="1259" y="1967"/> + <Point x="1272" y="1967"/> + <Point x="1275" y="1970"/> + <Point x="1275" y="1987"/> + <Point x="1260" y="2003"/> + <Point x="1276" y="2003"/> + <Point x="1260" y="2003"/> + <Point x="1276" y="2003"/> + <Point x="1278" y="2006"/> + <Point x="1278" y="2067"/> + <Point x="1277" y="2103"/> + <Point x="1274" y="2109"/> + <Point x="1274" y="2151"/> + <Point x="1278" y="2156"/> + <Point x="1278" y="2194"/> + <Point x="1276" y="2197"/> + <Point x="1263" y="2197"/> + <Point x="1276" y="2197"/> + <Point x="1263" y="2197"/> + <Point x="1278" y="2221"/> + <Point x="1278" y="2236"/> + <Point x="1266" y="2259"/> + <Point x="1278" y="2259"/> + <Point x="1266" y="2259"/> + <Point x="1277" y="2259"/> + <Point x="1278" y="2262"/> + <Point x="1278" y="2277"/> + <Point x="1270" y="2310"/> + <Point x="1273" y="2310"/> + <Point x="1270" y="2310"/> + <Point x="1273" y="2310"/> + <Point x="1276" y="2313"/> + <Point x="1276" y="2317"/> + <Point x="1273" y="2320"/> + <Point x="1270" y="2320"/> + <Point x="1273" y="2320"/> + <Point x="1270" y="2320"/> + <Point x="1278" y="2343"/> + <Point x="1278" y="2357"/> + <Point x="1272" y="2390"/> + <Point x="1277" y="2390"/> + <Point x="1272" y="2390"/> + <Point x="1277" y="2390"/> + <Point x="1278" y="2393"/> + <Point x="1278" y="2400"/> + <Point x="1277" y="2403"/> + <Point x="1272" y="2403"/> + <Point x="1277" y="2403"/> + <Point x="1272" y="2403"/> + <Point x="1278" y="2429"/> + <Point x="1278" y="2434"/> + <Point x="1275" y="2437"/> + <Point x="1276" y="2439"/> + <Point x="1275" y="2437"/> + <Point x="1278" y="2442"/> + <Point x="1280" y="2464"/> + <Point x="1280" y="2480"/> + <Point x="1282" y="2493"/> + <Point x="1283" y="2494"/> + <Point x="1282" y="2496"/> + <Point x="1283" y="2514"/> + <Point x="1270" y="2514"/> + <Point x="1266" y="2515"/> + <Point x="1230" y="2515"/> + <Point x="1227" y="2516"/> + <Point x="1173" y="2516"/> + <Point x="1169" y="2517"/> + <Point x="1155" y="2517"/> + <Point x="1152" y="2518"/> + <Point x="1138" y="2518"/> + <Point x="1118" y="2522"/> + <Point x="1113" y="2522"/> + <Point x="1109" y="2524"/> + <Point x="1098" y="2526"/> + <Point x="1096" y="2525"/> + <Point x="1081" y="2525"/> + <Point x="1073" y="2524"/> + <Point x="1065" y="2518"/> + <Point x="1053" y="2518"/> + <Point x="1050" y="2519"/> + <Point x="1036" y="2519"/> + <Point x="1031" y="2518"/> + <Point x="1015" y="2518"/> + <Point x="998" y="2519"/> + <Point x="987" y="2519"/> + <Point x="971" y="2550"/> + <Point x="967" y="2550"/> + <Point x="965" y="2551"/> + <Point x="881" y="2551"/> + <Point x="868" y="2552"/> + <Point x="854" y="2552"/> + <Point x="852" y="2553"/> + <Point x="846" y="2553"/> + <Point x="843" y="2554"/> + <Point x="760" y="2554"/> + <Point x="757" y="2555"/> + <Point x="734" y="2555"/> + <Point x="731" y="2556"/> + <Point x="704" y="2556"/> + <Point x="707" y="2556"/> + <Point x="687" y="2556"/> + <Point x="707" y="2556"/> + <Point x="672" y="2556"/> + <Point x="661" y="2562"/> + <Point x="650" y="2562"/> + <Point x="644" y="2561"/> + <Point x="640" y="2559"/> + <Point x="635" y="2557"/> + <Point x="619" y="2557"/> + <Point x="615" y="2558"/> + <Point x="555" y="2558"/> + <Point x="542" y="2560"/> + <Point x="527" y="2562"/> + <Point x="522" y="2562"/> + <Point x="513" y="2563"/> + <Point x="507" y="2562"/> + <Point x="501" y="2563"/> + <Point x="495" y="2563"/> + <Point x="497" y="2545"/> + <Point x="496" y="2526"/> + <Point x="495" y="2518"/> + <Point x="494" y="2499"/> + <Point x="496" y="2482"/> + <Point x="516" y="2457"/> + <Point x="499" y="2457"/> + <Point x="496" y="2454"/> + <Point x="496" y="2429"/> + <Point x="510" y="2415"/> + <Point x="498" y="2415"/> + <Point x="495" y="2412"/> + <Point x="495" y="2396"/> + <Point x="492" y="2371"/> + <Point x="491" y="2349"/> + <Point x="492" y="2334"/> + <Point x="492" y="2333"/> + <Point x="496" y="2331"/> + <Point x="493" y="2318"/> + <Point x="514" y="2295"/> + <Point x="498" y="2295"/> + <Point x="494" y="2290"/> + <Point x="494" y="2267"/> + <Point x="509" y="2254"/> + <Point x="497" y="2254"/> + <Point x="493" y="2250"/> + <Point x="493" y="2234"/> + <Point x="498" y="2211"/> + <Point x="498" y="2184"/> + <Point x="514" y="2169"/> + <Point x="494" y="2169"/> + <Point x="494" y="2147"/> + <Point x="504" y="2128"/> + <Point x="490" y="2128"/> + <Point x="490" y="2124"/> + <Point x="491" y="2106"/> + <Point x="491" y="2059"/> + <Point x="505" y="2043"/> + <Point x="491" y="2042"/> + <Point x="491" y="2022"/> + <Point x="501" y="2018"/> + <Point x="506" y="2020"/> + <Point x="514" y="2018"/> + <Point x="519" y="2013"/> + <Point x="519" y="2010"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>WEDNESDAY, DEC. 9, SIX P.M. — The Great Western +sailed to‑day at one o’clock, with a full freight—$ 102,000 +in specie—70 passengers—a letter bag yielding $ 1,100 at +the Exchange, and probably $ 1,400 at the agent’s office. +She could not wait longer for the President’s Message. +It will be seen, therefore, that the movement in specie +still goes forward, in the face of resumption +here. By the steamer and the other packets this +week, nearly $ 400,000 specie has gone to Europe. +This fact, at the beginning of the winter season, when +steam navigation will be nearly closed for three months, +begins to alarm bankers in connection with the sub‐ +ject of specie payments at Philadelphia. In summer a +ready supply could be imported from Europe, but this is +not so easily effected in mid winter.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r22" type="paragraph"> + <Coords> + <Point x="535" y="2563"/> + <Point x="559" y="2563"/> + <Point x="571" y="2565"/> + <Point x="574" y="2569"/> + <Point x="607" y="2569"/> + <Point x="612" y="2570"/> + <Point x="624" y="2570"/> + <Point x="627" y="2569"/> + <Point x="640" y="2569"/> + <Point x="642" y="2568"/> + <Point x="647" y="2565"/> + <Point x="652" y="2565"/> + <Point x="657" y="2568"/> + <Point x="670" y="2568"/> + <Point x="672" y="2569"/> + <Point x="677" y="2569"/> + <Point x="680" y="2567"/> + <Point x="695" y="2567"/> + <Point x="699" y="2564"/> + <Point x="701" y="2562"/> + <Point x="709" y="2559"/> + <Point x="715" y="2559"/> + <Point x="721" y="2564"/> + <Point x="730" y="2566"/> + <Point x="770" y="2566"/> + <Point x="776" y="2557"/> + <Point x="783" y="2557"/> + <Point x="794" y="2562"/> + <Point x="800" y="2560"/> + <Point x="806" y="2558"/> + <Point x="818" y="2558"/> + <Point x="822" y="2563"/> + <Point x="834" y="2560"/> + <Point x="850" y="2556"/> + <Point x="869" y="2556"/> + <Point x="882" y="2557"/> + <Point x="886" y="2556"/> + <Point x="889" y="2555"/> + <Point x="899" y="2555"/> + <Point x="906" y="2558"/> + <Point x="911" y="2559"/> + <Point x="917" y="2554"/> + <Point x="931" y="2554"/> + <Point x="938" y="2559"/> + <Point x="942" y="2558"/> + <Point x="949" y="2554"/> + <Point x="954" y="2554"/> + <Point x="957" y="2561"/> + <Point x="967" y="2556"/> + <Point x="974" y="2554"/> + <Point x="996" y="2554"/> + <Point x="999" y="2561"/> + <Point x="1012" y="2561"/> + <Point x="1023" y="2553"/> + <Point x="1038" y="2553"/> + <Point x="1041" y="2561"/> + <Point x="1053" y="2561"/> + <Point x="1056" y="2560"/> + <Point x="1063" y="2553"/> + <Point x="1086" y="2553"/> + <Point x="1089" y="2560"/> + <Point x="1099" y="2560"/> + <Point x="1107" y="2570"/> + <Point x="1118" y="2570"/> + <Point x="1125" y="2559"/> + <Point x="1139" y="2559"/> + <Point x="1142" y="2560"/> + <Point x="1155" y="2560"/> + <Point x="1168" y="2555"/> + <Point x="1176" y="2551"/> + <Point x="1180" y="2551"/> + <Point x="1193" y="2553"/> + <Point x="1197" y="2558"/> + <Point x="1210" y="2558"/> + <Point x="1220" y="2551"/> + <Point x="1247" y="2551"/> + <Point x="1250" y="2550"/> + <Point x="1272" y="2550"/> + <Point x="1272" y="2556"/> + <Point x="1277" y="2556"/> + <Point x="1272" y="2556"/> + <Point x="1277" y="2556"/> + <Point x="1281" y="2558"/> + <Point x="1281" y="2576"/> + <Point x="1277" y="2579"/> + <Point x="1272" y="2579"/> + <Point x="1277" y="2579"/> + <Point x="1272" y="2579"/> + <Point x="1279" y="2600"/> + <Point x="1279" y="2604"/> + <Point x="1272" y="2632"/> + <Point x="1278" y="2632"/> + <Point x="1272" y="2632"/> + <Point x="1278" y="2632"/> + <Point x="1279" y="2635"/> + <Point x="1279" y="2675"/> + <Point x="1277" y="2678"/> + <Point x="1272" y="2678"/> + <Point x="1277" y="2678"/> + <Point x="1272" y="2678"/> + <Point x="1279" y="2699"/> + <Point x="1279" y="2704"/> + <Point x="1278" y="2707"/> + <Point x="1271" y="2707"/> + <Point x="1278" y="2707"/> + <Point x="1271" y="2707"/> + <Point x="1282" y="2716"/> + <Point x="1282" y="2740"/> + <Point x="1283" y="2743"/> + <Point x="1266" y="2743"/> + <Point x="1279" y="2743"/> + <Point x="1266" y="2743"/> + <Point x="1263" y="2744"/> + <Point x="1250" y="2744"/> + <Point x="1247" y="2745"/> + <Point x="1197" y="2745"/> + <Point x="1195" y="2746"/> + <Point x="1144" y="2746"/> + <Point x="1124" y="2747"/> + <Point x="1090" y="2747"/> + <Point x="1089" y="2748"/> + <Point x="1049" y="2748"/> + <Point x="1047" y="2747"/> + <Point x="1041" y="2747"/> + <Point x="1018" y="2756"/> + <Point x="993" y="2756"/> + <Point x="989" y="2749"/> + <Point x="974" y="2749"/> + <Point x="970" y="2748"/> + <Point x="931" y="2748"/> + <Point x="892" y="2749"/> + <Point x="860" y="2749"/> + <Point x="857" y="2750"/> + <Point x="798" y="2750"/> + <Point x="796" y="2751"/> + <Point x="784" y="2751"/> + <Point x="782" y="2759"/> + <Point x="767" y="2759"/> + <Point x="707" y="2753"/> + <Point x="693" y="2753"/> + <Point x="690" y="2752"/> + <Point x="681" y="2752"/> + <Point x="662" y="2764"/> + <Point x="649" y="2764"/> + <Point x="624" y="2755"/> + <Point x="602" y="2755"/> + <Point x="602" y="2788"/> + <Point x="590" y="2788"/> + <Point x="587" y="2789"/> + <Point x="579" y="2790"/> + <Point x="576" y="2790"/> + <Point x="571" y="2791"/> + <Point x="495" y="2791"/> + <Point x="495" y="2758"/> + <Point x="499" y="2734"/> + <Point x="499" y="2700"/> + <Point x="508" y="2693"/> + <Point x="496" y="2690"/> + <Point x="496" y="2644"/> + <Point x="505" y="2628"/> + <Point x="495" y="2628"/> + <Point x="495" y="2614"/> + <Point x="512" y="2600"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>The resumption of the Philadelphia banks, on the 15th +of January, if not sooner, which is now generally an‐ +nounced and believed, does not seem to give any anima‐ +tion to the markets generally—indeed the reverse is felt. +In the stock market a general fall has taken place, vary‐ +ing from ¼ to 2 per cent. Money is also scarce and +dearer.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r158" type="heading"> + <Coords> + <Point x="834" y="4107"/> + <Point x="970" y="4107"/> + <Point x="976" y="4125"/> + <Point x="977" y="4129"/> + <Point x="978" y="4143"/> + <Point x="970" y="4144"/> + <Point x="834" y="4144"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>SPAIN.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r161" type="paragraph"> + <Coords> + <Point x="541" y="4284"/> + <Point x="584" y="4284"/> + <Point x="586" y="4290"/> + <Point x="598" y="4288"/> + <Point x="626" y="4288"/> + <Point x="633" y="4282"/> + <Point x="638" y="4279"/> + <Point x="656" y="4279"/> + <Point x="658" y="4286"/> + <Point x="708" y="4286"/> + <Point x="711" y="4285"/> + <Point x="725" y="4285"/> + <Point x="727" y="4276"/> + <Point x="739" y="4276"/> + <Point x="754" y="4275"/> + <Point x="760" y="4275"/> + <Point x="765" y="4280"/> + <Point x="778" y="4280"/> + <Point x="793" y="4273"/> + <Point x="802" y="4273"/> + <Point x="809" y="4276"/> + <Point x="834" y="4276"/> + <Point x="841" y="4274"/> + <Point x="849" y="4270"/> + <Point x="855" y="4268"/> + <Point x="861" y="4267"/> + <Point x="867" y="4267"/> + <Point x="874" y="4271"/> + <Point x="883" y="4273"/> + <Point x="899" y="4273"/> + <Point x="902" y="4272"/> + <Point x="910" y="4270"/> + <Point x="924" y="4264"/> + <Point x="934" y="4264"/> + <Point x="943" y="4269"/> + <Point x="945" y="4271"/> + <Point x="959" y="4271"/> + <Point x="975" y="4266"/> + <Point x="981" y="4263"/> + <Point x="987" y="4262"/> + <Point x="1002" y="4262"/> + <Point x="1004" y="4269"/> + <Point x="1048" y="4269"/> + <Point x="1051" y="4268"/> + <Point x="1086" y="4268"/> + <Point x="1103" y="4267"/> + <Point x="1105" y="4259"/> + <Point x="1124" y="4259"/> + <Point x="1126" y="4267"/> + <Point x="1152" y="4267"/> + <Point x="1155" y="4262"/> + <Point x="1158" y="4259"/> + <Point x="1166" y="4258"/> + <Point x="1172" y="4258"/> + <Point x="1179" y="4263"/> + <Point x="1186" y="4263"/> + <Point x="1190" y="4264"/> + <Point x="1217" y="4264"/> + <Point x="1229" y="4255"/> + <Point x="1248" y="4255"/> + <Point x="1255" y="4261"/> + <Point x="1278" y="4261"/> + <Point x="1281" y="4260"/> + <Point x="1298" y="4260"/> + <Point x="1298" y="4281"/> + <Point x="1295" y="4284"/> + <Point x="1281" y="4284"/> + <Point x="1295" y="4284"/> + <Point x="1281" y="4284"/> + <Point x="1298" y="4306"/> + <Point x="1298" y="4322"/> + <Point x="1282" y="4341"/> + <Point x="1296" y="4344"/> + <Point x="1299" y="4347"/> + <Point x="1299" y="4405"/> + <Point x="1283" y="4425"/> + <Point x="1299" y="4428"/> + <Point x="1300" y="4444"/> + <Point x="1300" y="4495"/> + <Point x="1283" y="4495"/> + <Point x="1297" y="4495"/> + <Point x="1283" y="4495"/> + <Point x="1301" y="4510"/> + <Point x="1301" y="4536"/> + <Point x="1275" y="4555"/> + <Point x="1290" y="4555"/> + <Point x="1292" y="4548"/> + <Point x="1301" y="4548"/> + <Point x="1292" y="4548"/> + <Point x="1306" y="4548"/> + <Point x="1306" y="4578"/> + <Point x="1292" y="4578"/> + <Point x="1301" y="4578"/> + <Point x="1292" y="4578"/> + <Point x="1307" y="4595"/> + <Point x="1301" y="4618"/> + <Point x="1301" y="4621"/> + <Point x="1291" y="4621"/> + <Point x="1301" y="4621"/> + <Point x="1291" y="4621"/> + <Point x="1301" y="4649"/> + <Point x="1298" y="4658"/> + <Point x="1290" y="4658"/> + <Point x="1298" y="4658"/> + <Point x="1290" y="4658"/> + <Point x="1303" y="4676"/> + <Point x="1303" y="4700"/> + <Point x="1294" y="4727"/> + <Point x="1301" y="4730"/> + <Point x="1301" y="4742"/> + <Point x="1289" y="4742"/> + <Point x="1299" y="4742"/> + <Point x="1289" y="4742"/> + <Point x="1301" y="4768"/> + <Point x="1301" y="4785"/> + <Point x="1304" y="4808"/> + <Point x="1304" y="4895"/> + <Point x="1288" y="4895"/> + <Point x="1304" y="4900"/> + <Point x="1304" y="4926"/> + <Point x="1287" y="4938"/> + <Point x="1305" y="4936"/> + <Point x="1305" y="4956"/> + <Point x="1292" y="4977"/> + <Point x="1307" y="4977"/> + <Point x="1306" y="4989"/> + <Point x="1293" y="5012"/> + <Point x="1300" y="5012"/> + <Point x="1293" y="5012"/> + <Point x="1300" y="5012"/> + <Point x="1301" y="5015"/> + <Point x="1301" y="5020"/> + <Point x="1300" y="5023"/> + <Point x="1293" y="5023"/> + <Point x="1300" y="5023"/> + <Point x="1293" y="5023"/> + <Point x="1306" y="5040"/> + <Point x="1309" y="5060"/> + <Point x="1309" y="5087"/> + <Point x="1298" y="5107"/> + <Point x="1307" y="5111"/> + <Point x="1307" y="5155"/> + <Point x="1295" y="5159"/> + <Point x="1285" y="5159"/> + <Point x="1284" y="5160"/> + <Point x="1270" y="5160"/> + <Point x="1272" y="5160"/> + <Point x="1261" y="5160"/> + <Point x="1249" y="5161"/> + <Point x="1239" y="5161"/> + <Point x="1237" y="5162"/> + <Point x="1176" y="5162"/> + <Point x="1174" y="5163"/> + <Point x="1137" y="5163"/> + <Point x="1126" y="5164"/> + <Point x="1096" y="5164"/> + <Point x="1086" y="5168"/> + <Point x="1076" y="5169"/> + <Point x="1068" y="5169"/> + <Point x="1066" y="5165"/> + <Point x="1056" y="5165"/> + <Point x="1054" y="5166"/> + <Point x="1018" y="5166"/> + <Point x="1015" y="5167"/> + <Point x="983" y="5167"/> + <Point x="983" y="5169"/> + <Point x="935" y="5169"/> + <Point x="933" y="5168"/> + <Point x="928" y="5168"/> + <Point x="924" y="5169"/> + <Point x="918" y="5169"/> + <Point x="916" y="5170"/> + <Point x="903" y="5170"/> + <Point x="901" y="5178"/> + <Point x="887" y="5178"/> + <Point x="875" y="5172"/> + <Point x="862" y="5172"/> + <Point x="859" y="5173"/> + <Point x="833" y="5173"/> + <Point x="822" y="5178"/> + <Point x="793" y="5178"/> + <Point x="784" y="5180"/> + <Point x="732" y="5180"/> + <Point x="703" y="5182"/> + <Point x="680" y="5183"/> + <Point x="653" y="5213"/> + <Point x="520" y="5226"/> + <Point x="520" y="5130"/> + <Point x="518" y="5121"/> + <Point x="520" y="5098"/> + <Point x="520" y="5097"/> + <Point x="521" y="5084"/> + <Point x="521" y="5030"/> + <Point x="519" y="5024"/> + <Point x="519" y="5016"/> + <Point x="517" y="4986"/> + <Point x="517" y="4871"/> + <Point x="517" y="4883"/> + <Point x="517" y="4837"/> + <Point x="516" y="4825"/> + <Point x="516" y="4793"/> + <Point x="515" y="4769"/> + <Point x="514" y="4750"/> + <Point x="517" y="4730"/> + <Point x="517" y="4711"/> + <Point x="515" y="4685"/> + <Point x="515" y="4665"/> + <Point x="517" y="4649"/> + <Point x="514" y="4646"/> + <Point x="514" y="4626"/> + <Point x="515" y="4606"/> + <Point x="512" y="4603"/> + <Point x="512" y="4536"/> + <Point x="510" y="4522"/> + <Point x="510" y="4325"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>The order and instructions for the new elections have +been issued to‑day by the Minister of the Interior. On +the first of the new year the provincial deputations are to +proceed to the division of their respective provinces into +electoral districts, consulting exclusively in this act the +convenience of the electors, and advertising them of the +divisions adopted on the 6th of the same month in +the official bulletin. On the 8th the lists of +the voters are to be posted up for the term of +fifteen days in the usual public places. All reclama‐ +tions with respect to the right of voting are to be decided +by the 26th of the month, and communicated to the cor‐ +porations before the 30th, in order that the lists may be +rectified. On the 1st of February the elections are to +commence, and to be conducted in the manner prescribed +by the Electoral Law. On the 12th of said month the +general scrutiny is to take place in the capital of each +province; and the result immediately communicated to +the Minister of the Interior. The number of new sena‐ +tors to be elected at the same time is 45, and 241 depu‐ +ties, with 100 suplentes or substitutes. Nothing could be +fairer than the instructions of the minister to the autho‐ +rities for conducting those elections. In a separate pa‐ +ragraph, addressed to the political chiefs, he states as fol‐ +lows: —</Unicode></TextEquiv></TextRegion> + <TextRegion id="r180" type="paragraph"> + <Coords> + <Point x="1326" y="4633"/> + <Point x="1408" y="4631"/> + <Point x="1409" y="4632"/> + <Point x="1424" y="4632"/> + <Point x="1425" y="4637"/> + <Point x="1438" y="4637"/> + <Point x="1449" y="4636"/> + <Point x="1462" y="4636"/> + <Point x="1464" y="4635"/> + <Point x="1476" y="4631"/> + <Point x="1482" y="4627"/> + <Point x="1494" y="4627"/> + <Point x="1496" y="4628"/> + <Point x="1512" y="4628"/> + <Point x="1514" y="4634"/> + <Point x="1526" y="4634"/> + <Point x="1527" y="4633"/> + <Point x="1540" y="4633"/> + <Point x="1542" y="4629"/> + <Point x="1550" y="4627"/> + <Point x="1560" y="4627"/> + <Point x="1561" y="4632"/> + <Point x="1589" y="4632"/> + <Point x="1608" y="4631"/> + <Point x="1622" y="4631"/> + <Point x="1623" y="4623"/> + <Point x="1671" y="4623"/> + <Point x="1670" y="4623"/> + <Point x="1685" y="4623"/> + <Point x="1685" y="4630"/> + <Point x="1698" y="4630"/> + <Point x="1717" y="4621"/> + <Point x="1748" y="4621"/> + <Point x="1754" y="4628"/> + <Point x="1778" y="4628"/> + <Point x="1777" y="4627"/> + <Point x="1822" y="4627"/> + <Point x="1822" y="4626"/> + <Point x="1837" y="4626"/> + <Point x="1853" y="4620"/> + <Point x="1890" y="4620"/> + <Point x="1891" y="4626"/> + <Point x="1904" y="4626"/> + <Point x="1906" y="4625"/> + <Point x="1920" y="4625"/> + <Point x="1919" y="4625"/> + <Point x="1935" y="4625"/> + <Point x="1937" y="4620"/> + <Point x="1946" y="4620"/> + <Point x="1949" y="4625"/> + <Point x="1959" y="4625"/> + <Point x="1960" y="4618"/> + <Point x="1970" y="4618"/> + <Point x="1973" y="4624"/> + <Point x="1981" y="4625"/> + <Point x="2000" y="4620"/> + <Point x="2008" y="4617"/> + <Point x="2018" y="4617"/> + <Point x="2019" y="4624"/> + <Point x="2033" y="4624"/> + <Point x="2033" y="4617"/> + <Point x="2044" y="4617"/> + <Point x="2043" y="4624"/> + <Point x="2053" y="4624"/> + <Point x="2054" y="4618"/> + <Point x="2069" y="4618"/> + <Point x="2072" y="4624"/> + <Point x="2082" y="4624"/> + <Point x="2085" y="4620"/> + <Point x="2101" y="4615"/> + <Point x="2105" y="4645"/> + <Point x="2085" y="4646"/> + <Point x="2034" y="4646"/> + <Point x="2033" y="4647"/> + <Point x="2007" y="4647"/> + <Point x="2009" y="4647"/> + <Point x="2000" y="4647"/> + <Point x="1981" y="4649"/> + <Point x="1968" y="4649"/> + <Point x="1969" y="4648"/> + <Point x="1960" y="4648"/> + <Point x="1953" y="4678"/> + <Point x="1947" y="4678"/> + <Point x="1944" y="4677"/> + <Point x="1929" y="4677"/> + <Point x="1927" y="4678"/> + <Point x="1877" y="4678"/> + <Point x="1870" y="4680"/> + <Point x="1869" y="4678"/> + <Point x="1856" y="4678"/> + <Point x="1839" y="4679"/> + <Point x="1812" y="4679"/> + <Point x="1810" y="4686"/> + <Point x="1789" y="4686"/> + <Point x="1789" y="4680"/> + <Point x="1787" y="4681"/> + <Point x="1731" y="4681"/> + <Point x="1718" y="4686"/> + <Point x="1695" y="4686"/> + <Point x="1652" y="4682"/> + <Point x="1650" y="4683"/> + <Point x="1614" y="4683"/> + <Point x="1604" y="4690"/> + <Point x="1582" y="4690"/> + <Point x="1575" y="4684"/> + <Point x="1573" y="4685"/> + <Point x="1559" y="4685"/> + <Point x="1558" y="4686"/> + <Point x="1511" y="4686"/> + <Point x="1509" y="4687"/> + <Point x="1498" y="4687"/> + <Point x="1492" y="4693"/> + <Point x="1475" y="4693"/> + <Point x="1475" y="4659"/> + <Point x="1464" y="4659"/> + <Point x="1462" y="4664"/> + <Point x="1449" y="4664"/> + <Point x="1438" y="4659"/> + <Point x="1425" y="4659"/> + <Point x="1424" y="4660"/> + <Point x="1409" y="4660"/> + <Point x="1408" y="4661"/> + <Point x="1326" y="4669"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>☞ The publication of The Morning Chroniele finished +yesterday morning at Eight o’clock.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r198" type="heading"> + <Coords> + <Point x="1370" y="4741"/> + <Point x="1402" y="4741"/> + <Point x="1440" y="4739"/> + <Point x="1475" y="4739"/> + <Point x="1494" y="4737"/> + <Point x="1537" y="4737"/> + <Point x="1538" y="4736"/> + <Point x="1567" y="4736"/> + <Point x="1570" y="4734"/> + <Point x="1603" y="4734"/> + <Point x="1605" y="4732"/> + <Point x="1645" y="4732"/> + <Point x="1643" y="4732"/> + <Point x="1666" y="4732"/> + <Point x="1664" y="4732"/> + <Point x="1699" y="4732"/> + <Point x="1705" y="4731"/> + <Point x="1737" y="4731"/> + <Point x="1761" y="4730"/> + <Point x="1791" y="4730"/> + <Point x="1789" y="4729"/> + <Point x="1829" y="4729"/> + <Point x="1828" y="4728"/> + <Point x="1983" y="4725"/> + <Point x="2058" y="4725"/> + <Point x="2058" y="4746"/> + <Point x="2067" y="4747"/> + <Point x="2067" y="4766"/> + <Point x="2055" y="4766"/> + <Point x="2055" y="4765"/> + <Point x="1989" y="4765"/> + <Point x="1990" y="4766"/> + <Point x="1962" y="4766"/> + <Point x="1955" y="4767"/> + <Point x="1941" y="4767"/> + <Point x="1939" y="4768"/> + <Point x="1828" y="4768"/> + <Point x="1829" y="4769"/> + <Point x="1789" y="4769"/> + <Point x="1791" y="4770"/> + <Point x="1705" y="4770"/> + <Point x="1699" y="4771"/> + <Point x="1664" y="4771"/> + <Point x="1666" y="4772"/> + <Point x="1643" y="4772"/> + <Point x="1645" y="4773"/> + <Point x="1605" y="4773"/> + <Point x="1603" y="4774"/> + <Point x="1570" y="4774"/> + <Point x="1567" y="4775"/> + <Point x="1538" y="4775"/> + <Point x="1537" y="4776"/> + <Point x="1494" y="4776"/> + <Point x="1475" y="4778"/> + <Point x="1440" y="4778"/> + <Point x="1441" y="4779"/> + <Point x="1402" y="4779"/> + <Point x="1404" y="4779"/> + <Point x="1370" y="4781"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>THE MORNING CHRONICLE.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r199" type="heading"> + <Coords> + <Point x="1602" y="4819"/> + <Point x="1661" y="4820"/> + <Point x="1670" y="4819"/> + <Point x="1696" y="4819"/> + <Point x="1712" y="4818"/> + <Point x="1811" y="4815"/> + <Point x="1820" y="4824"/> + <Point x="1827" y="4824"/> + <Point x="1820" y="4824"/> + <Point x="1827" y="4824"/> + <Point x="1830" y="4827"/> + <Point x="1830" y="4846"/> + <Point x="1842" y="4871"/> + <Point x="1850" y="4871"/> + <Point x="1859" y="4887"/> + <Point x="1863" y="4886"/> + <Point x="1880" y="4871"/> + <Point x="1925" y="4871"/> + <Point x="1929" y="4870"/> + <Point x="1938" y="4870"/> + <Point x="1943" y="4888"/> + <Point x="1952" y="4888"/> + <Point x="1952" y="4900"/> + <Point x="1943" y="4901"/> + <Point x="1938" y="4900"/> + <Point x="1929" y="4900"/> + <Point x="1925" y="4902"/> + <Point x="1911" y="4902"/> + <Point x="1909" y="4903"/> + <Point x="1894" y="4903"/> + <Point x="1889" y="4902"/> + <Point x="1880" y="4902"/> + <Point x="1863" y="4908"/> + <Point x="1857" y="4908"/> + <Point x="1848" y="4906"/> + <Point x="1842" y="4902"/> + <Point x="1826" y="4904"/> + <Point x="1802" y="4904"/> + <Point x="1795" y="4903"/> + <Point x="1774" y="4903"/> + <Point x="1769" y="4904"/> + <Point x="1745" y="4904"/> + <Point x="1746" y="4905"/> + <Point x="1721" y="4905"/> + <Point x="1717" y="4906"/> + <Point x="1663" y="4906"/> + <Point x="1664" y="4907"/> + <Point x="1642" y="4907"/> + <Point x="1620" y="4910"/> + <Point x="1615" y="4912"/> + <Point x="1611" y="4912"/> + <Point x="1591" y="4909"/> + <Point x="1583" y="4910"/> + <Point x="1463" y="4911"/> + <Point x="1463" y="4881"/> + <Point x="1491" y="4881"/> + <Point x="1490" y="4881"/> + <Point x="1530" y="4881"/> + <Point x="1531" y="4880"/> + <Point x="1558" y="4880"/> + <Point x="1560" y="4879"/> + <Point x="1583" y="4879"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>LONDON: +FRIDAY, JANUARY 1, 1841.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r200" type="paragraph"> + <Coords> + <Point x="1367" y="4959"/> + <Point x="1388" y="4959"/> + <Point x="1391" y="4958"/> + <Point x="1406" y="4958"/> + <Point x="1408" y="4966"/> + <Point x="1422" y="4966"/> + <Point x="1436" y="4957"/> + <Point x="1467" y="4957"/> + <Point x="1467" y="4965"/> + <Point x="1484" y="4965"/> + <Point x="1486" y="4964"/> + <Point x="1501" y="4964"/> + <Point x="1502" y="4963"/> + <Point x="1535" y="4963"/> + <Point x="1533" y="4962"/> + <Point x="1550" y="4962"/> + <Point x="1564" y="4952"/> + <Point x="1604" y="4952"/> + <Point x="1606" y="4960"/> + <Point x="1619" y="4958"/> + <Point x="1625" y="4951"/> + <Point x="1632" y="4951"/> + <Point x="1635" y="4958"/> + <Point x="1644" y="4958"/> + <Point x="1648" y="4954"/> + <Point x="1658" y="4954"/> + <Point x="1658" y="4958"/> + <Point x="1688" y="4958"/> + <Point x="1690" y="4969"/> + <Point x="1695" y="4969"/> + <Point x="1708" y="4947"/> + <Point x="1739" y="4947"/> + <Point x="1752" y="4966"/> + <Point x="1756" y="4964"/> + <Point x="1764" y="4945"/> + <Point x="1790" y="4945"/> + <Point x="1796" y="4951"/> + <Point x="1839" y="4952"/> + <Point x="1902" y="4952"/> + <Point x="1910" y="4964"/> + <Point x="1913" y="4965"/> + <Point x="1921" y="4952"/> + <Point x="1969" y="4952"/> + <Point x="1971" y="4951"/> + <Point x="1997" y="4951"/> + <Point x="1999" y="4950"/> + <Point x="2015" y="4950"/> + <Point x="2017" y="4943"/> + <Point x="2027" y="4943"/> + <Point x="2029" y="4950"/> + <Point x="2044" y="4950"/> + <Point x="2044" y="4940"/> + <Point x="2063" y="4940"/> + <Point x="2071" y="4947"/> + <Point x="2083" y="4947"/> + <Point x="2086" y="4948"/> + <Point x="2107" y="4948"/> + <Point x="2107" y="4972"/> + <Point x="2086" y="4973"/> + <Point x="2102" y="4973"/> + <Point x="2086" y="4973"/> + <Point x="2084" y="4974"/> + <Point x="2044" y="4974"/> + <Point x="2044" y="4975"/> + <Point x="1999" y="4975"/> + <Point x="1997" y="4976"/> + <Point x="1983" y="4976"/> + <Point x="1982" y="4975"/> + <Point x="1971" y="4975"/> + <Point x="1969" y="4977"/> + <Point x="1942" y="4977"/> + <Point x="1940" y="4986"/> + <Point x="1924" y="4986"/> + <Point x="1913" y="4987"/> + <Point x="1906" y="4985"/> + <Point x="1899" y="4984"/> + <Point x="1885" y="4978"/> + <Point x="1880" y="4979"/> + <Point x="1841" y="4979"/> + <Point x="1820" y="5008"/> + <Point x="1815" y="5016"/> + <Point x="1795" y="5025"/> + <Point x="1788" y="5025"/> + <Point x="1785" y="5024"/> + <Point x="1769" y="5024"/> + <Point x="1768" y="5025"/> + <Point x="1720" y="5025"/> + <Point x="1711" y="5026"/> + <Point x="1698" y="5026"/> + <Point x="1696" y="5027"/> + <Point x="1661" y="5027"/> + <Point x="1659" y="5028"/> + <Point x="1646" y="5028"/> + <Point x="1645" y="5037"/> + <Point x="1627" y="5037"/> + <Point x="1624" y="5029"/> + <Point x="1572" y="5029"/> + <Point x="1561" y="5031"/> + <Point x="1547" y="5031"/> + <Point x="1545" y="5030"/> + <Point x="1529" y="5030"/> + <Point x="1527" y="5031"/> + <Point x="1516" y="5031"/> + <Point x="1503" y="5037"/> + <Point x="1488" y="5040"/> + <Point x="1481" y="5038"/> + <Point x="1470" y="5032"/> + <Point x="1466" y="5033"/> + <Point x="1451" y="5033"/> + <Point x="1451" y="5034"/> + <Point x="1439" y="5034"/> + <Point x="1437" y="5035"/> + <Point x="1405" y="5035"/> + <Point x="1402" y="5036"/> + <Point x="1371" y="5036"/> + <Point x="1367" y="5037"/> + <Point x="1333" y="5036"/> + <Point x="1333" y="5008"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>The Finance Minister, M. HUMANN, presented on +Wednesday the budget of 1842.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r201" type="paragraph"> + <Coords> + <Point x="1364" y="5048"/> + <Point x="1394" y="5048"/> + <Point x="1410" y="5047"/> + <Point x="1411" y="5055"/> + <Point x="1425" y="5055"/> + <Point x="1436" y="5054"/> + <Point x="1465" y="5054"/> + <Point x="1466" y="5046"/> + <Point x="1482" y="5046"/> + <Point x="1485" y="5044"/> + <Point x="1492" y="5044"/> + <Point x="1495" y="5052"/> + <Point x="1510" y="5052"/> + <Point x="1513" y="5051"/> + <Point x="1560" y="5051"/> + <Point x="1570" y="5050"/> + <Point x="1586" y="5050"/> + <Point x="1587" y="5049"/> + <Point x="1603" y="5049"/> + <Point x="1605" y="5040"/> + <Point x="1622" y="5040"/> + <Point x="1634" y="5048"/> + <Point x="1648" y="5048"/> + <Point x="1649" y="5047"/> + <Point x="1666" y="5047"/> + <Point x="1669" y="5041"/> + <Point x="1678" y="5041"/> + <Point x="1680" y="5046"/> + <Point x="1725" y="5046"/> + <Point x="1726" y="5045"/> + <Point x="1738" y="5045"/> + <Point x="1738" y="5036"/> + <Point x="1765" y="5036"/> + <Point x="1768" y="5045"/> + <Point x="1784" y="5045"/> + <Point x="1786" y="5044"/> + <Point x="1815" y="5044"/> + <Point x="1816" y="5045"/> + <Point x="1831" y="5045"/> + <Point x="1844" y="5044"/> + <Point x="1858" y="5044"/> + <Point x="1861" y="5043"/> + <Point x="1896" y="5043"/> + <Point x="1898" y="5042"/> + <Point x="1931" y="5042"/> + <Point x="1933" y="5041"/> + <Point x="1942" y="5041"/> + <Point x="1944" y="5040"/> + <Point x="2012" y="5040"/> + <Point x="2013" y="5039"/> + <Point x="2057" y="5039"/> + <Point x="2059" y="5038"/> + <Point x="2070" y="5038"/> + <Point x="2072" y="5029"/> + <Point x="2095" y="5029"/> + <Point x="2095" y="5042"/> + <Point x="2107" y="5042"/> + <Point x="2107" y="5056"/> + <Point x="2097" y="5060"/> + <Point x="2091" y="5061"/> + <Point x="2092" y="5062"/> + <Point x="2072" y="5062"/> + <Point x="2070" y="5063"/> + <Point x="2043" y="5063"/> + <Point x="2027" y="5064"/> + <Point x="1983" y="5064"/> + <Point x="1972" y="5066"/> + <Point x="1933" y="5066"/> + <Point x="1931" y="5067"/> + <Point x="1898" y="5067"/> + <Point x="1896" y="5075"/> + <Point x="1876" y="5076"/> + <Point x="1870" y="5069"/> + <Point x="1861" y="5067"/> + <Point x="1858" y="5068"/> + <Point x="1844" y="5068"/> + <Point x="1831" y="5077"/> + <Point x="1824" y="5079"/> + <Point x="1824" y="5111"/> + <Point x="1814" y="5113"/> + <Point x="1811" y="5112"/> + <Point x="1800" y="5112"/> + <Point x="1798" y="5113"/> + <Point x="1737" y="5113"/> + <Point x="1739" y="5113"/> + <Point x="1726" y="5113"/> + <Point x="1719" y="5114"/> + <Point x="1709" y="5114"/> + <Point x="1707" y="5115"/> + <Point x="1650" y="5115"/> + <Point x="1649" y="5117"/> + <Point x="1633" y="5117"/> + <Point x="1631" y="5116"/> + <Point x="1625" y="5116"/> + <Point x="1622" y="5117"/> + <Point x="1595" y="5117"/> + <Point x="1593" y="5118"/> + <Point x="1541" y="5118"/> + <Point x="1537" y="5119"/> + <Point x="1526" y="5119"/> + <Point x="1522" y="5120"/> + <Point x="1507" y="5120"/> + <Point x="1504" y="5124"/> + <Point x="1495" y="5128"/> + <Point x="1487" y="5125"/> + <Point x="1481" y="5121"/> + <Point x="1467" y="5122"/> + <Point x="1457" y="5122"/> + <Point x="1455" y="5123"/> + <Point x="1439" y="5123"/> + <Point x="1426" y="5124"/> + <Point x="1334" y="5125"/> + <Point x="1334" y="5100"/> + <Point x="1355" y="5098"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>The ordinary and extraordinary expenses are esti‐ +mated at 1,316 millions of francs.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r202" type="paragraph"> + <Coords> + <Point x="1364" y="5137"/> + <Point x="1386" y="5136"/> + <Point x="1409" y="5136"/> + <Point x="1411" y="5144"/> + <Point x="1425" y="5144"/> + <Point x="1437" y="5143"/> + <Point x="1452" y="5143"/> + <Point x="1454" y="5142"/> + <Point x="1465" y="5142"/> + <Point x="1466" y="5132"/> + <Point x="1493" y="5132"/> + <Point x="1496" y="5140"/> + <Point x="1530" y="5140"/> + <Point x="1531" y="5139"/> + <Point x="1543" y="5139"/> + <Point x="1545" y="5138"/> + <Point x="1601" y="5138"/> + <Point x="1602" y="5137"/> + <Point x="1632" y="5137"/> + <Point x="1635" y="5136"/> + <Point x="1670" y="5136"/> + <Point x="1672" y="5135"/> + <Point x="1686" y="5135"/> + <Point x="1696" y="5125"/> + <Point x="1706" y="5125"/> + <Point x="1708" y="5134"/> + <Point x="1755" y="5133"/> + <Point x="1758" y="5127"/> + <Point x="1767" y="5127"/> + <Point x="1772" y="5124"/> + <Point x="1779" y="5124"/> + <Point x="1785" y="5132"/> + <Point x="1823" y="5132"/> + <Point x="1826" y="5125"/> + <Point x="1835" y="5125"/> + <Point x="1837" y="5132"/> + <Point x="1851" y="5132"/> + <Point x="1853" y="5123"/> + <Point x="1869" y="5123"/> + <Point x="1893" y="5131"/> + <Point x="1908" y="5131"/> + <Point x="1912" y="5122"/> + <Point x="1919" y="5122"/> + <Point x="1946" y="5121"/> + <Point x="1958" y="5121"/> + <Point x="1963" y="5130"/> + <Point x="1967" y="5126"/> + <Point x="1973" y="5121"/> + <Point x="1986" y="5121"/> + <Point x="1988" y="5120"/> + <Point x="2023" y="5120"/> + <Point x="2046" y="5127"/> + <Point x="2068" y="5116"/> + <Point x="2077" y="5116"/> + <Point x="2081" y="5115"/> + <Point x="2085" y="5114"/> + <Point x="2094" y="5119"/> + <Point x="2095" y="5132"/> + <Point x="2109" y="5132"/> + <Point x="2109" y="5141"/> + <Point x="2097" y="5171"/> + <Point x="2107" y="5171"/> + <Point x="2097" y="5171"/> + <Point x="2112" y="5171"/> + <Point x="2112" y="5196"/> + <Point x="2097" y="5196"/> + <Point x="2094" y="5197"/> + <Point x="2063" y="5197"/> + <Point x="2061" y="5198"/> + <Point x="2034" y="5198"/> + <Point x="2035" y="5198"/> + <Point x="1993" y="5198"/> + <Point x="1991" y="5200"/> + <Point x="1948" y="5200"/> + <Point x="1946" y="5201"/> + <Point x="1929" y="5201"/> + <Point x="1928" y="5202"/> + <Point x="1912" y="5202"/> + <Point x="1911" y="5201"/> + <Point x="1893" y="5201"/> + <Point x="1890" y="5202"/> + <Point x="1883" y="5202"/> + <Point x="1882" y="5201"/> + <Point x="1873" y="5201"/> + <Point x="1871" y="5202"/> + <Point x="1817" y="5202"/> + <Point x="1814" y="5203"/> + <Point x="1799" y="5203"/> + <Point x="1795" y="5202"/> + <Point x="1784" y="5202"/> + <Point x="1777" y="5203"/> + <Point x="1764" y="5203"/> + <Point x="1763" y="5204"/> + <Point x="1747" y="5204"/> + <Point x="1736" y="5205"/> + <Point x="1725" y="5205"/> + <Point x="1723" y="5204"/> + <Point x="1715" y="5204"/> + <Point x="1713" y="5205"/> + <Point x="1701" y="5205"/> + <Point x="1699" y="5204"/> + <Point x="1689" y="5204"/> + <Point x="1691" y="5204"/> + <Point x="1682" y="5204"/> + <Point x="1680" y="5206"/> + <Point x="1663" y="5205"/> + <Point x="1663" y="5251"/> + <Point x="1653" y="5251"/> + <Point x="1650" y="5257"/> + <Point x="1640" y="5257"/> + <Point x="1636" y="5259"/> + <Point x="1619" y="5259"/> + <Point x="1613" y="5252"/> + <Point x="1580" y="5251"/> + <Point x="1580" y="5252"/> + <Point x="1568" y="5252"/> + <Point x="1566" y="5253"/> + <Point x="1527" y="5253"/> + <Point x="1518" y="5254"/> + <Point x="1488" y="5254"/> + <Point x="1486" y="5256"/> + <Point x="1471" y="5256"/> + <Point x="1469" y="5255"/> + <Point x="1452" y="5255"/> + <Point x="1449" y="5256"/> + <Point x="1432" y="5256"/> + <Point x="1430" y="5257"/> + <Point x="1403" y="5257"/> + <Point x="1391" y="5258"/> + <Point x="1364" y="5258"/> + <Point x="1363" y="5260"/> + <Point x="1352" y="5260"/> + <Point x="1351" y="5269"/> + <Point x="1335" y="5263"/> + <Point x="1335" y="5186"/> + <Point x="1338" y="5182"/> + <Point x="1346" y="5182"/> + <Point x="1349" y="5183"/> + <Point x="1356" y="5183"/> + <Point x="1363" y="5192"/> + <Point x="1372" y="5181"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>The ordinary revenue is estimated at 1,162 mil‐ +lions, which leaves deficit of 154 millions of francs +(six millions sterling).</Unicode></TextEquiv></TextRegion> + <TextRegion id="r203" type="paragraph"> + <Coords> + <Point x="1369" y="5268"/> + <Point x="1411" y="5268"/> + <Point x="1413" y="5274"/> + <Point x="1425" y="5271"/> + <Point x="1436" y="5264"/> + <Point x="1476" y="5266"/> + <Point x="1478" y="5272"/> + <Point x="1490" y="5271"/> + <Point x="1497" y="5264"/> + <Point x="1504" y="5264"/> + <Point x="1507" y="5272"/> + <Point x="1514" y="5270"/> + <Point x="1519" y="5267"/> + <Point x="1529" y="5267"/> + <Point x="1530" y="5271"/> + <Point x="1544" y="5271"/> + <Point x="1547" y="5270"/> + <Point x="1559" y="5270"/> + <Point x="1566" y="5263"/> + <Point x="1582" y="5263"/> + <Point x="1584" y="5269"/> + <Point x="1625" y="5269"/> + <Point x="1628" y="5268"/> + <Point x="1660" y="5268"/> + <Point x="1663" y="5260"/> + <Point x="1678" y="5260"/> + <Point x="1684" y="5265"/> + <Point x="1693" y="5268"/> + <Point x="1696" y="5259"/> + <Point x="1713" y="5259"/> + <Point x="1722" y="5267"/> + <Point x="1738" y="5267"/> + <Point x="1739" y="5266"/> + <Point x="1791" y="5263"/> + <Point x="1797" y="5257"/> + <Point x="1805" y="5257"/> + <Point x="1811" y="5263"/> + <Point x="1825" y="5263"/> + <Point x="1831" y="5257"/> + <Point x="1839" y="5257"/> + <Point x="1841" y="5265"/> + <Point x="1874" y="5265"/> + <Point x="1884" y="5264"/> + <Point x="1899" y="5264"/> + <Point x="1902" y="5255"/> + <Point x="1913" y="5255"/> + <Point x="1922" y="5259"/> + <Point x="1927" y="5257"/> + <Point x="1934" y="5255"/> + <Point x="1952" y="5255"/> + <Point x="1953" y="5262"/> + <Point x="1967" y="5262"/> + <Point x="1976" y="5253"/> + <Point x="2016" y="5253"/> + <Point x="2019" y="5261"/> + <Point x="2057" y="5252"/> + <Point x="2063" y="5251"/> + <Point x="2079" y="5251"/> + <Point x="2082" y="5260"/> + <Point x="2095" y="5260"/> + <Point x="2097" y="5259"/> + <Point x="2109" y="5259"/> + <Point x="2097" y="5259"/> + <Point x="2109" y="5259"/> + <Point x="2112" y="5262"/> + <Point x="2112" y="5278"/> + <Point x="2098" y="5307"/> + <Point x="2110" y="5307"/> + <Point x="2098" y="5307"/> + <Point x="2110" y="5307"/> + <Point x="2112" y="5310"/> + <Point x="2112" y="5317"/> + <Point x="2110" y="5320"/> + <Point x="2098" y="5320"/> + <Point x="2110" y="5320"/> + <Point x="2098" y="5320"/> + <Point x="2112" y="5350"/> + <Point x="2112" y="5368"/> + <Point x="2100" y="5396"/> + <Point x="2111" y="5396"/> + <Point x="2100" y="5396"/> + <Point x="2111" y="5396"/> + <Point x="2112" y="5399"/> + <Point x="2112" y="5452"/> + <Point x="2100" y="5452"/> + <Point x="2112" y="5452"/> + <Point x="2100" y="5452"/> + <Point x="2117" y="5479"/> + <Point x="2117" y="5501"/> + <Point x="2112" y="5508"/> + <Point x="2081" y="5500"/> + <Point x="2079" y="5501"/> + <Point x="2069" y="5501"/> + <Point x="2052" y="5511"/> + <Point x="2035" y="5511"/> + <Point x="2024" y="5505"/> + <Point x="2017" y="5503"/> + <Point x="2014" y="5502"/> + <Point x="2007" y="5502"/> + <Point x="2004" y="5504"/> + <Point x="1988" y="5504"/> + <Point x="1984" y="5503"/> + <Point x="1978" y="5503"/> + <Point x="1980" y="5504"/> + <Point x="1942" y="5504"/> + <Point x="1940" y="5505"/> + <Point x="1901" y="5505"/> + <Point x="1899" y="5506"/> + <Point x="1886" y="5506"/> + <Point x="1883" y="5507"/> + <Point x="1843" y="5507"/> + <Point x="1841" y="5515"/> + <Point x="1824" y="5515"/> + <Point x="1804" y="5553"/> + <Point x="1797" y="5553"/> + <Point x="1793" y="5552"/> + <Point x="1776" y="5552"/> + <Point x="1775" y="5553"/> + <Point x="1760" y="5553"/> + <Point x="1759" y="5554"/> + <Point x="1743" y="5554"/> + <Point x="1741" y="5553"/> + <Point x="1734" y="5553"/> + <Point x="1721" y="5554"/> + <Point x="1705" y="5554"/> + <Point x="1694" y="5562"/> + <Point x="1676" y="5562"/> + <Point x="1667" y="5555"/> + <Point x="1648" y="5555"/> + <Point x="1646" y="5556"/> + <Point x="1594" y="5556"/> + <Point x="1586" y="5558"/> + <Point x="1573" y="5558"/> + <Point x="1571" y="5559"/> + <Point x="1556" y="5559"/> + <Point x="1543" y="5560"/> + <Point x="1529" y="5560"/> + <Point x="1528" y="5558"/> + <Point x="1517" y="5558"/> + <Point x="1515" y="5560"/> + <Point x="1487" y="5560"/> + <Point x="1473" y="5561"/> + <Point x="1457" y="5561"/> + <Point x="1454" y="5565"/> + <Point x="1342" y="5565"/> + <Point x="1342" y="5540"/> + <Point x="1355" y="5521"/> + <Point x="1342" y="5521"/> + <Point x="1339" y="5518"/> + <Point x="1339" y="5501"/> + <Point x="1359" y="5487"/> + <Point x="1341" y="5487"/> + <Point x="1339" y="5484"/> + <Point x="1339" y="5457"/> + <Point x="1356" y="5436"/> + <Point x="1340" y="5436"/> + <Point x="1337" y="5433"/> + <Point x="1337" y="5415"/> + <Point x="1347" y="5391"/> + <Point x="1336" y="5389"/> + <Point x="1336" y="5316"/> + <Point x="1350" y="5316"/> + <Point x="1351" y="5321"/> + <Point x="1362" y="5316"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>The Minister demanded permission of the Chamber +to create rentes, if necessary, for a capital of 450 mil‐ +lions of francs. But as the treasury has still a reserve +of 120 millions, the creation of these rentes is not ur‐ +gent. The Minister will wait for favourable cir‐ +cumstances, and demands the power of fixing the +time and rate of issuing a loan.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r204" type="paragraph"> + <Coords> + <Point x="1376" y="5575"/> + <Point x="1416" y="5575"/> + <Point x="1419" y="5583"/> + <Point x="1433" y="5583"/> + <Point x="1448" y="5573"/> + <Point x="1473" y="5572"/> + <Point x="1488" y="5572"/> + <Point x="1493" y="5579"/> + <Point x="1501" y="5579"/> + <Point x="1506" y="5570"/> + <Point x="1514" y="5571"/> + <Point x="1517" y="5579"/> + <Point x="1528" y="5579"/> + <Point x="1528" y="5572"/> + <Point x="1540" y="5572"/> + <Point x="1541" y="5579"/> + <Point x="1555" y="5579"/> + <Point x="1557" y="5578"/> + <Point x="1569" y="5578"/> + <Point x="1580" y="5569"/> + <Point x="1596" y="5569"/> + <Point x="1602" y="5576"/> + <Point x="1615" y="5576"/> + <Point x="1627" y="5566"/> + <Point x="1637" y="5566"/> + <Point x="1643" y="5572"/> + <Point x="1672" y="5572"/> + <Point x="1679" y="5571"/> + <Point x="1683" y="5566"/> + <Point x="1699" y="5566"/> + <Point x="1712" y="5571"/> + <Point x="1718" y="5565"/> + <Point x="1741" y="5565"/> + <Point x="1743" y="5573"/> + <Point x="1757" y="5573"/> + <Point x="1759" y="5566"/> + <Point x="1770" y="5566"/> + <Point x="1777" y="5580"/> + <Point x="1785" y="5580"/> + <Point x="1791" y="5560"/> + <Point x="1811" y="5560"/> + <Point x="1811" y="5572"/> + <Point x="1820" y="5569"/> + <Point x="1822" y="5561"/> + <Point x="1844" y="5561"/> + <Point x="1852" y="5571"/> + <Point x="1874" y="5571"/> + <Point x="1880" y="5562"/> + <Point x="1887" y="5562"/> + <Point x="1889" y="5570"/> + <Point x="1924" y="5568"/> + <Point x="1935" y="5559"/> + <Point x="1947" y="5559"/> + <Point x="1947" y="5569"/> + <Point x="1965" y="5569"/> + <Point x="1984" y="5558"/> + <Point x="2000" y="5558"/> + <Point x="2013" y="5562"/> + <Point x="2016" y="5568"/> + <Point x="2029" y="5568"/> + <Point x="2052" y="5567"/> + <Point x="2065" y="5567"/> + <Point x="2068" y="5566"/> + <Point x="2099" y="5566"/> + <Point x="2103" y="5571"/> + <Point x="2115" y="5571"/> + <Point x="2103" y="5571"/> + <Point x="2115" y="5571"/> + <Point x="2117" y="5574"/> + <Point x="2117" y="5581"/> + <Point x="2115" y="5584"/> + <Point x="2103" y="5584"/> + <Point x="2115" y="5584"/> + <Point x="2103" y="5584"/> + <Point x="2120" y="5610"/> + <Point x="2120" y="5631"/> + <Point x="2107" y="5649"/> + <Point x="2122" y="5649"/> + <Point x="2122" y="5676"/> + <Point x="2108" y="5681"/> + <Point x="2097" y="5679"/> + <Point x="2093" y="5680"/> + <Point x="2035" y="5680"/> + <Point x="2023" y="5681"/> + <Point x="2007" y="5681"/> + <Point x="1995" y="5680"/> + <Point x="1978" y="5680"/> + <Point x="1976" y="5682"/> + <Point x="1960" y="5682"/> + <Point x="1957" y="5681"/> + <Point x="1943" y="5681"/> + <Point x="1940" y="5683"/> + <Point x="1899" y="5683"/> + <Point x="1896" y="5682"/> + <Point x="1880" y="5682"/> + <Point x="1862" y="5684"/> + <Point x="1800" y="5684"/> + <Point x="1797" y="5685"/> + <Point x="1775" y="5685"/> + <Point x="1751" y="5686"/> + <Point x="1742" y="5686"/> + <Point x="1739" y="5687"/> + <Point x="1723" y="5687"/> + <Point x="1720" y="5686"/> + <Point x="1703" y="5686"/> + <Point x="1684" y="5695"/> + <Point x="1677" y="5695"/> + <Point x="1669" y="5691"/> + <Point x="1660" y="5689"/> + <Point x="1658" y="5688"/> + <Point x="1645" y="5688"/> + <Point x="1644" y="5689"/> + <Point x="1629" y="5689"/> + <Point x="1628" y="5690"/> + <Point x="1613" y="5690"/> + <Point x="1583" y="5716"/> + <Point x="1502" y="5705"/> + <Point x="1479" y="5739"/> + <Point x="1472" y="5739"/> + <Point x="1467" y="5738"/> + <Point x="1442" y="5738"/> + <Point x="1440" y="5740"/> + <Point x="1427" y="5740"/> + <Point x="1424" y="5739"/> + <Point x="1408" y="5739"/> + <Point x="1406" y="5740"/> + <Point x="1396" y="5740"/> + <Point x="1385" y="5741"/> + <Point x="1373" y="5741"/> + <Point x="1371" y="5742"/> + <Point x="1356" y="5742"/> + <Point x="1358" y="5742"/> + <Point x="1340" y="5743"/> + <Point x="1340" y="5674"/> + <Point x="1353" y="5649"/> + <Point x="1340" y="5649"/> + <Point x="1340" y="5623"/> + <Point x="1350" y="5619"/> + <Point x="1364" y="5619"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>The Minister declared that, believing in the con‐ +tinuance of peace, he did not intend to suspend the +public works of peace, but would demand a credit +for them.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r220" type="paragraph"> + <Coords> + <Point x="623" y="7606"/> + <Point x="670" y="7606"/> + <Point x="672" y="7614"/> + <Point x="686" y="7614"/> + <Point x="699" y="7604"/> + <Point x="720" y="7604"/> + <Point x="727" y="7609"/> + <Point x="737" y="7609"/> + <Point x="744" y="7606"/> + <Point x="753" y="7602"/> + <Point x="760" y="7602"/> + <Point x="773" y="7609"/> + <Point x="784" y="7605"/> + <Point x="791" y="7600"/> + <Point x="801" y="7598"/> + <Point x="842" y="7598"/> + <Point x="848" y="7603"/> + <Point x="867" y="7603"/> + <Point x="867" y="7605"/> + <Point x="898" y="7605"/> + <Point x="902" y="7604"/> + <Point x="921" y="7604"/> + <Point x="925" y="7603"/> + <Point x="964" y="7603"/> + <Point x="965" y="7601"/> + <Point x="1003" y="7601"/> + <Point x="1010" y="7599"/> + <Point x="1041" y="7599"/> + <Point x="1049" y="7594"/> + <Point x="1065" y="7594"/> + <Point x="1075" y="7588"/> + <Point x="1091" y="7588"/> + <Point x="1096" y="7594"/> + <Point x="1122" y="7594"/> + <Point x="1125" y="7586"/> + <Point x="1146" y="7586"/> + <Point x="1148" y="7591"/> + <Point x="1161" y="7591"/> + <Point x="1164" y="7592"/> + <Point x="1196" y="7592"/> + <Point x="1203" y="7589"/> + <Point x="1216" y="7580"/> + <Point x="1272" y="7580"/> + <Point x="1271" y="7580"/> + <Point x="1280" y="7578"/> + <Point x="1289" y="7577"/> + <Point x="1320" y="7577"/> + <Point x="1352" y="7575"/> + <Point x="1368" y="7580"/> + <Point x="1377" y="7804"/> + <Point x="1040" y="7804"/> + <Point x="887" y="7802"/> + <Point x="587" y="7806"/> + <Point x="588" y="7745"/> + <Point x="588" y="7639"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>The Earl of WESTMORELAND has been slightly in‐ +disposed since Thursday last, but is now nearly recovered. +His lordship has, in consequence, discontinued his dinner +parties, but will resume them to‑morrow, on which day +the noble lord will enter his 82d year, having been born +on the 1st of January, 1759.—Brighton Gazette.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r224" type="paragraph"> + <Coords> + <Point x="1379" y="5769"/> + <Point x="1405" y="5769"/> + <Point x="1408" y="5777"/> + <Point x="1420" y="5776"/> + <Point x="1424" y="5774"/> + <Point x="1430" y="5770"/> + <Point x="1435" y="5769"/> + <Point x="1452" y="5769"/> + <Point x="1464" y="5772"/> + <Point x="1471" y="5768"/> + <Point x="1493" y="5768"/> + <Point x="1496" y="5776"/> + <Point x="1509" y="5776"/> + <Point x="1529" y="5765"/> + <Point x="1551" y="5765"/> + <Point x="1557" y="5773"/> + <Point x="1580" y="5773"/> + <Point x="1585" y="5774"/> + <Point x="1598" y="5774"/> + <Point x="1600" y="5773"/> + <Point x="1613" y="5771"/> + <Point x="1615" y="5765"/> + <Point x="1623" y="5765"/> + <Point x="1629" y="5772"/> + <Point x="1650" y="5772"/> + <Point x="1671" y="5762"/> + <Point x="1698" y="5762"/> + <Point x="1706" y="5770"/> + <Point x="1746" y="5771"/> + <Point x="1748" y="5770"/> + <Point x="1781" y="5770"/> + <Point x="1778" y="5762"/> + <Point x="1796" y="5762"/> + <Point x="1821" y="5769"/> + <Point x="1837" y="5769"/> + <Point x="1838" y="5768"/> + <Point x="1855" y="5768"/> + <Point x="1857" y="5759"/> + <Point x="1873" y="5759"/> + <Point x="1897" y="5758"/> + <Point x="1922" y="5758"/> + <Point x="1928" y="5766"/> + <Point x="1935" y="5761"/> + <Point x="1934" y="5766"/> + <Point x="1953" y="5766"/> + <Point x="1955" y="5767"/> + <Point x="1963" y="5765"/> + <Point x="1969" y="5760"/> + <Point x="1978" y="5760"/> + <Point x="1980" y="5758"/> + <Point x="1988" y="5758"/> + <Point x="1991" y="5759"/> + <Point x="1999" y="5756"/> + <Point x="2006" y="5763"/> + <Point x="2018" y="5765"/> + <Point x="2021" y="5759"/> + <Point x="2030" y="5759"/> + <Point x="2033" y="5757"/> + <Point x="2041" y="5757"/> + <Point x="2046" y="5763"/> + <Point x="2056" y="5764"/> + <Point x="2059" y="5763"/> + <Point x="2092" y="5763"/> + <Point x="2095" y="5762"/> + <Point x="2103" y="5754"/> + <Point x="2112" y="5753"/> + <Point x="2116" y="5753"/> + <Point x="2121" y="5756"/> + <Point x="2121" y="5783"/> + <Point x="2118" y="5786"/> + <Point x="2110" y="5786"/> + <Point x="2118" y="5786"/> + <Point x="2110" y="5786"/> + <Point x="2121" y="5814"/> + <Point x="2121" y="5821"/> + <Point x="2125" y="5843"/> + <Point x="2122" y="5846"/> + <Point x="2122" y="5872"/> + <Point x="2119" y="5875"/> + <Point x="2112" y="5875"/> + <Point x="2119" y="5875"/> + <Point x="2112" y="5875"/> + <Point x="2122" y="5890"/> + <Point x="2122" y="5916"/> + <Point x="2119" y="5921"/> + <Point x="2111" y="5921"/> + <Point x="2111" y="5929"/> + <Point x="2122" y="5944"/> + <Point x="2122" y="6006"/> + <Point x="2109" y="6023"/> + <Point x="2122" y="6023"/> + <Point x="2124" y="6028"/> + <Point x="2124" y="6052"/> + <Point x="2121" y="6055"/> + <Point x="2111" y="6055"/> + <Point x="2121" y="6055"/> + <Point x="2111" y="6055"/> + <Point x="2109" y="6070"/> + <Point x="2128" y="6078"/> + <Point x="2128" y="6094"/> + <Point x="2112" y="6095"/> + <Point x="2111" y="6106"/> + <Point x="2125" y="6113"/> + <Point x="2125" y="6138"/> + <Point x="2114" y="6151"/> + <Point x="2127" y="6151"/> + <Point x="2114" y="6151"/> + <Point x="2127" y="6151"/> + <Point x="2130" y="6154"/> + <Point x="2130" y="6178"/> + <Point x="2127" y="6181"/> + <Point x="2114" y="6181"/> + <Point x="2127" y="6181"/> + <Point x="2114" y="6181"/> + <Point x="2127" y="6208"/> + <Point x="2127" y="6215"/> + <Point x="2124" y="6218"/> + <Point x="2113" y="6218"/> + <Point x="2124" y="6218"/> + <Point x="2113" y="6218"/> + <Point x="2129" y="6245"/> + <Point x="2129" y="6262"/> + <Point x="2117" y="6289"/> + <Point x="2126" y="6289"/> + <Point x="2117" y="6289"/> + <Point x="2126" y="6289"/> + <Point x="2129" y="6292"/> + <Point x="2129" y="6299"/> + <Point x="2121" y="6339"/> + <Point x="2129" y="6339"/> + <Point x="2121" y="6339"/> + <Point x="2129" y="6339"/> + <Point x="2132" y="6342"/> + <Point x="2132" y="6356"/> + <Point x="2129" y="6359"/> + <Point x="2121" y="6359"/> + <Point x="2134" y="6365"/> + <Point x="2134" y="6391"/> + <Point x="2121" y="6420"/> + <Point x="2132" y="6420"/> + <Point x="2121" y="6420"/> + <Point x="2132" y="6420"/> + <Point x="2135" y="6423"/> + <Point x="2135" y="6429"/> + <Point x="2131" y="6462"/> + <Point x="2132" y="6469"/> + <Point x="2135" y="6472"/> + <Point x="2135" y="6485"/> + <Point x="2138" y="6495"/> + <Point x="2138" y="6521"/> + <Point x="2135" y="6524"/> + <Point x="2128" y="6527"/> + <Point x="2139" y="6547"/> + <Point x="2139" y="6574"/> + <Point x="2121" y="6587"/> + <Point x="2137" y="6587"/> + <Point x="2121" y="6587"/> + <Point x="2137" y="6587"/> + <Point x="2140" y="6590"/> + <Point x="2140" y="6608"/> + <Point x="2126" y="6630"/> + <Point x="2138" y="6630"/> + <Point x="2126" y="6630"/> + <Point x="2138" y="6630"/> + <Point x="2141" y="6633"/> + <Point x="2141" y="6650"/> + <Point x="2138" y="6653"/> + <Point x="2126" y="6653"/> + <Point x="2138" y="6653"/> + <Point x="2126" y="6653"/> + <Point x="2141" y="6676"/> + <Point x="2141" y="6694"/> + <Point x="2138" y="6697"/> + <Point x="2125" y="6697"/> + <Point x="2138" y="6697"/> + <Point x="2125" y="6697"/> + <Point x="2143" y="6721"/> + <Point x="2143" y="6739"/> + <Point x="2132" y="6758"/> + <Point x="2142" y="6758"/> + <Point x="2132" y="6758"/> + <Point x="2142" y="6758"/> + <Point x="2145" y="6761"/> + <Point x="2145" y="6783"/> + <Point x="2134" y="6797"/> + <Point x="2147" y="6797"/> + <Point x="2134" y="6797"/> + <Point x="2147" y="6797"/> + <Point x="2150" y="6800"/> + <Point x="2150" y="6826"/> + <Point x="2147" y="6829"/> + <Point x="2134" y="6829"/> + <Point x="2147" y="6829"/> + <Point x="2134" y="6829"/> + <Point x="2146" y="6853"/> + <Point x="2146" y="6871"/> + <Point x="2143" y="6874"/> + <Point x="2132" y="6874"/> + <Point x="2143" y="6874"/> + <Point x="2132" y="6874"/> + <Point x="2146" y="6896"/> + <Point x="2146" y="6914"/> + <Point x="2133" y="6943"/> + <Point x="2144" y="6943"/> + <Point x="2133" y="6943"/> + <Point x="2144" y="6943"/> + <Point x="2147" y="6946"/> + <Point x="2147" y="6952"/> + <Point x="2144" y="6955"/> + <Point x="2133" y="6955"/> + <Point x="2144" y="6955"/> + <Point x="2133" y="6955"/> + <Point x="2149" y="6985"/> + <Point x="2149" y="7002"/> + <Point x="2137" y="7020"/> + <Point x="2149" y="7020"/> + <Point x="2137" y="7020"/> + <Point x="2149" y="7020"/> + <Point x="2152" y="7023"/> + <Point x="2152" y="7045"/> + <Point x="2149" y="7048"/> + <Point x="2137" y="7048"/> + <Point x="2149" y="7048"/> + <Point x="2137" y="7048"/> + <Point x="2135" y="7049"/> + <Point x="2118" y="7049"/> + <Point x="2154" y="7068"/> + <Point x="2154" y="7088"/> + <Point x="2141" y="7097"/> + <Point x="2132" y="7102"/> + <Point x="2134" y="7110"/> + <Point x="2150" y="7110"/> + <Point x="2134" y="7110"/> + <Point x="2150" y="7110"/> + <Point x="2153" y="7113"/> + <Point x="2153" y="7130"/> + <Point x="2135" y="7154"/> + <Point x="2151" y="7154"/> + <Point x="2135" y="7154"/> + <Point x="2151" y="7154"/> + <Point x="2154" y="7157"/> + <Point x="2154" y="7183"/> + <Point x="2141" y="7206"/> + <Point x="2152" y="7206"/> + <Point x="2141" y="7206"/> + <Point x="2152" y="7206"/> + <Point x="2155" y="7209"/> + <Point x="2155" y="7215"/> + <Point x="2156" y="7247"/> + <Point x="2156" y="7265"/> + <Point x="2144" y="7288"/> + <Point x="2155" y="7288"/> + <Point x="2144" y="7288"/> + <Point x="2155" y="7288"/> + <Point x="2158" y="7291"/> + <Point x="2158" y="7309"/> + <Point x="2160" y="7335"/> + <Point x="2160" y="7354"/> + <Point x="2149" y="7388"/> + <Point x="2156" y="7388"/> + <Point x="2149" y="7388"/> + <Point x="2156" y="7388"/> + <Point x="2159" y="7391"/> + <Point x="2159" y="7405"/> + <Point x="2156" y="7408"/> + <Point x="2149" y="7408"/> + <Point x="2156" y="7408"/> + <Point x="2149" y="7408"/> + <Point x="2162" y="7423"/> + <Point x="2162" y="7440"/> + <Point x="2154" y="7468"/> + <Point x="2161" y="7468"/> + <Point x="2154" y="7468"/> + <Point x="2161" y="7468"/> + <Point x="2164" y="7471"/> + <Point x="2164" y="7481"/> + <Point x="2161" y="7484"/> + <Point x="2154" y="7484"/> + <Point x="2161" y="7484"/> + <Point x="2154" y="7484"/> + <Point x="2164" y="7510"/> + <Point x="2164" y="7529"/> + <Point x="2154" y="7564"/> + <Point x="2160" y="7564"/> + <Point x="2154" y="7564"/> + <Point x="2160" y="7564"/> + <Point x="2163" y="7567"/> + <Point x="2163" y="7581"/> + <Point x="2160" y="7584"/> + <Point x="2154" y="7584"/> + <Point x="2160" y="7584"/> + <Point x="2154" y="7584"/> + <Point x="2165" y="7599"/> + <Point x="2165" y="7617"/> + <Point x="2150" y="7641"/> + <Point x="2167" y="7641"/> + <Point x="2167" y="7662"/> + <Point x="2159" y="7683"/> + <Point x="2169" y="7683"/> + <Point x="2169" y="7709"/> + <Point x="2151" y="7709"/> + <Point x="2168" y="7715"/> + <Point x="2171" y="7751"/> + <Point x="2151" y="7758"/> + <Point x="2148" y="7765"/> + <Point x="2130" y="7765"/> + <Point x="2121" y="7757"/> + <Point x="2120" y="7756"/> + <Point x="2120" y="7757"/> + <Point x="2108" y="7757"/> + <Point x="2089" y="7758"/> + <Point x="2062" y="7758"/> + <Point x="2060" y="7759"/> + <Point x="2050" y="7759"/> + <Point x="2050" y="7760"/> + <Point x="2043" y="7760"/> + <Point x="2042" y="7761"/> + <Point x="2026" y="7761"/> + <Point x="2024" y="7762"/> + <Point x="2001" y="7762"/> + <Point x="1980" y="7763"/> + <Point x="1964" y="7763"/> + <Point x="1961" y="7765"/> + <Point x="1949" y="7765"/> + <Point x="1946" y="7766"/> + <Point x="1920" y="7766"/> + <Point x="1919" y="7767"/> + <Point x="1892" y="7767"/> + <Point x="1890" y="7768"/> + <Point x="1880" y="7768"/> + <Point x="1878" y="7769"/> + <Point x="1838" y="7769"/> + <Point x="1825" y="7770"/> + <Point x="1808" y="7770"/> + <Point x="1806" y="7771"/> + <Point x="1665" y="7771"/> + <Point x="1664" y="7770"/> + <Point x="1619" y="7770"/> + <Point x="1619" y="7771"/> + <Point x="1606" y="7771"/> + <Point x="1604" y="7770"/> + <Point x="1561" y="7770"/> + <Point x="1558" y="7769"/> + <Point x="1539" y="7769"/> + <Point x="1523" y="7776"/> + <Point x="1509" y="7779"/> + <Point x="1498" y="7778"/> + <Point x="1488" y="7773"/> + <Point x="1488" y="7772"/> + <Point x="1472" y="7772"/> + <Point x="1460" y="7773"/> + <Point x="1404" y="7773"/> + <Point x="1401" y="7770"/> + <Point x="1401" y="7749"/> + <Point x="1410" y="7729"/> + <Point x="1400" y="7729"/> + <Point x="1397" y="7726"/> + <Point x="1397" y="7655"/> + <Point x="1422" y="7639"/> + <Point x="1399" y="7639"/> + <Point x="1396" y="7636"/> + <Point x="1396" y="7619"/> + <Point x="1407" y="7598"/> + <Point x="1397" y="7598"/> + <Point x="1394" y="7595"/> + <Point x="1394" y="7573"/> + <Point x="1410" y="7553"/> + <Point x="1395" y="7553"/> + <Point x="1390" y="7549"/> + <Point x="1390" y="7533"/> + <Point x="1400" y="7511"/> + <Point x="1393" y="7511"/> + <Point x="1390" y="7508"/> + <Point x="1390" y="7483"/> + <Point x="1398" y="7469"/> + <Point x="1390" y="7469"/> + <Point x="1386" y="7463"/> + <Point x="1386" y="7441"/> + <Point x="1399" y="7426"/> + <Point x="1388" y="7426"/> + <Point x="1383" y="7422"/> + <Point x="1383" y="7405"/> + <Point x="1401" y="7383"/> + <Point x="1386" y="7383"/> + <Point x="1382" y="7378"/> + <Point x="1382" y="7363"/> + <Point x="1392" y="7338"/> + <Point x="1385" y="7338"/> + <Point x="1379" y="7333"/> + <Point x="1379" y="7309"/> + <Point x="1396" y="7294"/> + <Point x="1384" y="7294"/> + <Point x="1380" y="7289"/> + <Point x="1380" y="7272"/> + <Point x="1393" y="7248"/> + <Point x="1383" y="7248"/> + <Point x="1378" y="7244"/> + <Point x="1378" y="7177"/> + <Point x="1398" y="7156"/> + <Point x="1381" y="7156"/> + <Point x="1377" y="7150"/> + <Point x="1377" y="7090"/> + <Point x="1392" y="7067"/> + <Point x="1379" y="7067"/> + <Point x="1376" y="7064"/> + <Point x="1376" y="7002"/> + <Point x="1387" y="6980"/> + <Point x="1377" y="6980"/> + <Point x="1374" y="6977"/> + <Point x="1374" y="6955"/> + <Point x="1400" y="6935"/> + <Point x="1376" y="6935"/> + <Point x="1373" y="6932"/> + <Point x="1373" y="6914"/> + <Point x="1384" y="6892"/> + <Point x="1373" y="6892"/> + <Point x="1370" y="6889"/> + <Point x="1370" y="6826"/> + <Point x="1379" y="6800"/> + <Point x="1371" y="6800"/> + <Point x="1366" y="6796"/> + <Point x="1366" y="6774"/> + <Point x="1392" y="6757"/> + <Point x="1370" y="6757"/> + <Point x="1367" y="6754"/> + <Point x="1367" y="6738"/> + <Point x="1384" y="6711"/> + <Point x="1369" y="6711"/> + <Point x="1366" y="6708"/> + <Point x="1366" y="6598"/> + <Point x="1380" y="6582"/> + <Point x="1367" y="6582"/> + <Point x="1362" y="6578"/> + <Point x="1362" y="6564"/> + <Point x="1374" y="6541"/> + <Point x="1365" y="6541"/> + <Point x="1362" y="6538"/> + <Point x="1362" y="6518"/> + <Point x="1373" y="6498"/> + <Point x="1362" y="6498"/> + <Point x="1359" y="6495"/> + <Point x="1359" y="6427"/> + <Point x="1375" y="6413"/> + <Point x="1360" y="6413"/> + <Point x="1357" y="6410"/> + <Point x="1357" y="6393"/> + <Point x="1376" y="6370"/> + <Point x="1358" y="6370"/> + <Point x="1355" y="6367"/> + <Point x="1355" y="6348"/> + <Point x="1368" y="6327"/> + <Point x="1356" y="6327"/> + <Point x="1353" y="6324"/> + <Point x="1353" y="6263"/> + <Point x="1365" y="6241"/> + <Point x="1353" y="6241"/> + <Point x="1350" y="6238"/> + <Point x="1350" y="6216"/> + <Point x="1363" y="6199"/> + <Point x="1351" y="6199"/> + <Point x="1348" y="6196"/> + <Point x="1348" y="6178"/> + <Point x="1360" y="6157"/> + <Point x="1349" y="6157"/> + <Point x="1346" y="6154"/> + <Point x="1346" y="6135"/> + <Point x="1363" y="6116"/> + <Point x="1347" y="6116"/> + <Point x="1344" y="6111"/> + <Point x="1344" y="5959"/> + <Point x="1369" y="5936"/> + <Point x="1348" y="5936"/> + <Point x="1344" y="5932"/> + <Point x="1344" y="5870"/> + <Point x="1362" y="5849"/> + <Point x="1343" y="5849"/> + <Point x="1343" y="5823"/> + <Point x="1362" y="5824"/> + <Point x="1364" y="5816"/> + <Point x="1374" y="5810"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>Both the Courrier Français and Constitutionnel +of Wednesday reject the advances, or supposed ad‐ +vances, of Russia, contained in the reported note of +Count NESSELRODE. To do justice to these Liberal +organs, if their hurt pride directs their animosity +against England, an older and more deeply‑rooted +sentiment dictates resentment against, and mistrust +of, Russia. Yet, if Russia display no more ambi‐ +tion than she has done in the late events, we do not +see why she is to be depicted as the fee, fau, fum of +the West. The great, the dangerous, cause of quar‐ +rel, enmity, and mutual distrust hitherto, between +the nations of Europe, has been the doubt and dark‐ +ness which rested upon so many questions. But, +one by one, these are clearing up. Ten years back +Russia might have hoped to be able to swallow up Con‐ +stantinople, without exciting the jealousies, or, at least, +the opposition of the rest of Europe. France, till +very lately, conceived the possibility of converting +Egypt, Syria, and Arabia into a new empire, “to +be governed in the sphere of French ideas.” Neither +of these schemes is feasible, simply because the +world is too much awake. The Levant was a terra +incognita twenty years ago, where any Power almost +might plant its standard. Now, any accession of +territory or influence there would excite almost as +much difficulty and danger as similar ambition on +the Elbe or the Rhine. Had England any ambi‐ +tion or selfish views, or did any English statesman +entertain such for her, these are checked and cut +short by the late events quite as much as the am‐ +bition of other Powers. Exclusive advantages in +the Levant are now not to be sought or obtained by +the Powers of Europe. What an immense gua‐ +rantee of peace is there in this addition to the public +law and right of Europe! We feel that any plot or +alliance for the purpose of setting aside this public +right, and breaking through the laws of Europe, +is first of all not to be dreaded as possible, nor, were +it possible, could it be successful. The French jour‐ +nalists, who idly talk (and none but journalist do +talk of it) of an alliance between France and Russia, +mean an alliance the result of which would be +France taking the frontier of the Rhine, and Russia +taking Constantinople. Now, we do not believe +that any French and Russian statesmen would sign</Unicode></TextEquiv></TextRegion> + <TextRegion id="r225" type="paragraph"> + <Coords> + <Point x="2137" y="1842"/> + <Point x="2177" y="1842"/> + <Point x="2183" y="1850"/> + <Point x="2191" y="1852"/> + <Point x="2211" y="1847"/> + <Point x="2216" y="1842"/> + <Point x="2225" y="1841"/> + <Point x="2238" y="1841"/> + <Point x="2241" y="1842"/> + <Point x="2249" y="1842"/> + <Point x="2252" y="1851"/> + <Point x="2263" y="1851"/> + <Point x="2286" y="1841"/> + <Point x="2299" y="1841"/> + <Point x="2302" y="1849"/> + <Point x="2317" y="1849"/> + <Point x="2319" y="1850"/> + <Point x="2334" y="1850"/> + <Point x="2354" y="1838"/> + <Point x="2365" y="1838"/> + <Point x="2367" y="1848"/> + <Point x="2382" y="1848"/> + <Point x="2384" y="1849"/> + <Point x="2399" y="1849"/> + <Point x="2429" y="1838"/> + <Point x="2445" y="1838"/> + <Point x="2448" y="1846"/> + <Point x="2461" y="1846"/> + <Point x="2464" y="1837"/> + <Point x="2487" y="1837"/> + <Point x="2464" y="1837"/> + <Point x="2487" y="1837"/> + <Point x="2489" y="1845"/> + <Point x="2501" y="1845"/> + <Point x="2501" y="1844"/> + <Point x="2515" y="1844"/> + <Point x="2538" y="1843"/> + <Point x="2553" y="1843"/> + <Point x="2555" y="1842"/> + <Point x="2586" y="1842"/> + <Point x="2608" y="1841"/> + <Point x="2620" y="1841"/> + <Point x="2622" y="1840"/> + <Point x="2635" y="1840"/> + <Point x="2637" y="1839"/> + <Point x="2652" y="1839"/> + <Point x="2653" y="1830"/> + <Point x="2670" y="1830"/> + <Point x="2672" y="1839"/> + <Point x="2684" y="1839"/> + <Point x="2687" y="1838"/> + <Point x="2712" y="1838"/> + <Point x="2730" y="1827"/> + <Point x="2742" y="1827"/> + <Point x="2746" y="1836"/> + <Point x="2790" y="1836"/> + <Point x="2792" y="1835"/> + <Point x="2813" y="1826"/> + <Point x="2822" y="1825"/> + <Point x="2833" y="1829"/> + <Point x="2834" y="1833"/> + <Point x="2847" y="1833"/> + <Point x="2850" y="1832"/> + <Point x="2859" y="1823"/> + <Point x="2874" y="1823"/> + <Point x="2884" y="1828"/> + <Point x="2882" y="1829"/> + <Point x="2882" y="1898"/> + <Point x="2877" y="1901"/> + <Point x="2872" y="1904"/> + <Point x="2883" y="1923"/> + <Point x="2883" y="1942"/> + <Point x="2870" y="1960"/> + <Point x="2883" y="1959"/> + <Point x="2883" y="1988"/> + <Point x="2870" y="1989"/> + <Point x="2880" y="1989"/> + <Point x="2870" y="1989"/> + <Point x="2883" y="2010"/> + <Point x="2883" y="2029"/> + <Point x="2858" y="2031"/> + <Point x="2816" y="2034"/> + <Point x="2547" y="2047"/> + <Point x="2273" y="2061"/> + <Point x="2219" y="2096"/> + <Point x="2214" y="2095"/> + <Point x="2196" y="2095"/> + <Point x="2193" y="2096"/> + <Point x="2176" y="2096"/> + <Point x="2172" y="2097"/> + <Point x="2154" y="2097"/> + <Point x="2150" y="2096"/> + <Point x="2108" y="2096"/> + <Point x="2104" y="2093"/> + <Point x="2103" y="2004"/> + <Point x="2103" y="1933"/> + <Point x="2123" y="1920"/> + <Point x="2102" y="1920"/> + <Point x="2102" y="1895"/> + <Point x="2123" y="1895"/> + <Point x="2124" y="1887"/> + <Point x="2137" y="1886"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>We this day lay before our readers important +additional information respecting the case of Mr. +HILL, in the Ecclesiastical Court of Exeter, and the +resolution, agreed on at a meeting on Monday last +in Monmouth, with regard to the case of SARAH +YOUNG.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r226" type="paragraph"> + <Coords> + <Point x="2137" y="2107"/> + <Point x="2171" y="2106"/> + <Point x="2180" y="2113"/> + <Point x="2187" y="2116"/> + <Point x="2194" y="2127"/> + <Point x="2200" y="2111"/> + <Point x="2212" y="2105"/> + <Point x="2240" y="2105"/> + <Point x="2252" y="2110"/> + <Point x="2293" y="2113"/> + <Point x="2296" y="2112"/> + <Point x="2347" y="2111"/> + <Point x="2371" y="2102"/> + <Point x="2387" y="2102"/> + <Point x="2390" y="2111"/> + <Point x="2418" y="2111"/> + <Point x="2440" y="2110"/> + <Point x="2470" y="2110"/> + <Point x="2472" y="2109"/> + <Point x="2497" y="2099"/> + <Point x="2518" y="2099"/> + <Point x="2519" y="2097"/> + <Point x="2527" y="2098"/> + <Point x="2532" y="2107"/> + <Point x="2543" y="2107"/> + <Point x="2544" y="2097"/> + <Point x="2561" y="2097"/> + <Point x="2582" y="2106"/> + <Point x="2599" y="2106"/> + <Point x="2601" y="2105"/> + <Point x="2613" y="2105"/> + <Point x="2633" y="2104"/> + <Point x="2653" y="2098"/> + <Point x="2659" y="2095"/> + <Point x="2667" y="2095"/> + <Point x="2670" y="2098"/> + <Point x="2676" y="2094"/> + <Point x="2698" y="2094"/> + <Point x="2710" y="2096"/> + <Point x="2718" y="2092"/> + <Point x="2726" y="2091"/> + <Point x="2739" y="2094"/> + <Point x="2741" y="2100"/> + <Point x="2755" y="2100"/> + <Point x="2772" y="2098"/> + <Point x="2822" y="2085"/> + <Point x="2845" y="2083"/> + <Point x="2862" y="2097"/> + <Point x="2863" y="2096"/> + <Point x="2881" y="2096"/> + <Point x="2863" y="2096"/> + <Point x="2881" y="2096"/> + <Point x="2884" y="2099"/> + <Point x="2884" y="2118"/> + <Point x="2872" y="2152"/> + <Point x="2880" y="2152"/> + <Point x="2872" y="2152"/> + <Point x="2880" y="2152"/> + <Point x="2883" y="2155"/> + <Point x="2883" y="2170"/> + <Point x="2880" y="2173"/> + <Point x="2891" y="2173"/> + <Point x="2891" y="2181"/> + <Point x="2887" y="2214"/> + <Point x="2871" y="2228"/> + <Point x="2883" y="2228"/> + <Point x="2871" y="2228"/> + <Point x="2883" y="2228"/> + <Point x="2886" y="2231"/> + <Point x="2886" y="2248"/> + <Point x="2875" y="2284"/> + <Point x="2881" y="2284"/> + <Point x="2875" y="2284"/> + <Point x="2881" y="2284"/> + <Point x="2884" y="2287"/> + <Point x="2884" y="2294"/> + <Point x="2881" y="2297"/> + <Point x="2875" y="2297"/> + <Point x="2881" y="2297"/> + <Point x="2875" y="2297"/> + <Point x="2872" y="2296"/> + <Point x="2859" y="2296"/> + <Point x="2885" y="2318"/> + <Point x="2885" y="2336"/> + <Point x="2873" y="2353"/> + <Point x="2884" y="2353"/> + <Point x="2873" y="2353"/> + <Point x="2884" y="2353"/> + <Point x="2887" y="2356"/> + <Point x="2887" y="2379"/> + <Point x="2884" y="2382"/> + <Point x="2873" y="2382"/> + <Point x="2884" y="2382"/> + <Point x="2873" y="2382"/> + <Point x="2887" y="2403"/> + <Point x="2887" y="2421"/> + <Point x="2871" y="2444"/> + <Point x="2885" y="2444"/> + <Point x="2871" y="2444"/> + <Point x="2885" y="2444"/> + <Point x="2887" y="2447"/> + <Point x="2887" y="2465"/> + <Point x="2885" y="2468"/> + <Point x="2871" y="2468"/> + <Point x="2885" y="2468"/> + <Point x="2871" y="2468"/> + <Point x="2887" y="2491"/> + <Point x="2887" y="2509"/> + <Point x="2879" y="2544"/> + <Point x="2885" y="2544"/> + <Point x="2879" y="2544"/> + <Point x="2885" y="2544"/> + <Point x="2887" y="2547"/> + <Point x="2887" y="2559"/> + <Point x="2885" y="2562"/> + <Point x="2879" y="2562"/> + <Point x="2885" y="2562"/> + <Point x="2873" y="2562"/> + <Point x="2865" y="2556"/> + <Point x="2864" y="2557"/> + <Point x="2853" y="2557"/> + <Point x="2851" y="2558"/> + <Point x="2840" y="2558"/> + <Point x="2838" y="2559"/> + <Point x="2808" y="2559"/> + <Point x="2786" y="2560"/> + <Point x="2746" y="2560"/> + <Point x="2725" y="2562"/> + <Point x="2688" y="2562"/> + <Point x="2686" y="2563"/> + <Point x="2668" y="2563"/> + <Point x="2656" y="2565"/> + <Point x="2632" y="2565"/> + <Point x="2631" y="2566"/> + <Point x="2615" y="2566"/> + <Point x="2613" y="2565"/> + <Point x="2595" y="2565"/> + <Point x="2594" y="2566"/> + <Point x="2578" y="2566"/> + <Point x="2566" y="2567"/> + <Point x="2516" y="2567"/> + <Point x="2513" y="2568"/> + <Point x="2469" y="2568"/> + <Point x="2471" y="2568"/> + <Point x="2464" y="2568"/> + <Point x="2464" y="2616"/> + <Point x="2447" y="2615"/> + <Point x="2444" y="2613"/> + <Point x="2426" y="2613"/> + <Point x="2425" y="2621"/> + <Point x="2408" y="2621"/> + <Point x="2402" y="2617"/> + <Point x="2398" y="2615"/> + <Point x="2396" y="2614"/> + <Point x="2380" y="2614"/> + <Point x="2368" y="2615"/> + <Point x="2356" y="2615"/> + <Point x="2352" y="2621"/> + <Point x="2342" y="2623"/> + <Point x="2330" y="2622"/> + <Point x="2320" y="2616"/> + <Point x="2318" y="2617"/> + <Point x="2268" y="2617"/> + <Point x="2255" y="2618"/> + <Point x="2183" y="2618"/> + <Point x="2180" y="2619"/> + <Point x="2168" y="2619"/> + <Point x="2166" y="2618"/> + <Point x="2158" y="2618"/> + <Point x="2156" y="2619"/> + <Point x="2140" y="2619"/> + <Point x="2137" y="2620"/> + <Point x="2114" y="2620"/> + <Point x="2111" y="2617"/> + <Point x="2111" y="2598"/> + <Point x="2124" y="2575"/> + <Point x="2113" y="2575"/> + <Point x="2108" y="2571"/> + <Point x="2108" y="2510"/> + <Point x="2125" y="2488"/> + <Point x="2112" y="2488"/> + <Point x="2109" y="2485"/> + <Point x="2109" y="2461"/> + <Point x="2119" y="2442"/> + <Point x="2111" y="2442"/> + <Point x="2107" y="2438"/> + <Point x="2107" y="2328"/> + <Point x="2119" y="2314"/> + <Point x="2110" y="2314"/> + <Point x="2106" y="2311"/> + <Point x="2106" y="2243"/> + <Point x="2122" y="2229"/> + <Point x="2105" y="2228"/> + <Point x="2105" y="2157"/> + <Point x="2120" y="2157"/> + <Point x="2122" y="2149"/> + <Point x="2124" y="2142"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>Mr. MILLETT has supplied us with the opinion +given by Dr. ADDAMS in the case of Mr. HILL, +from which it will be seen that the omnipotence of +Parliament, to use the well‑known expression, is +impotence in regard to the Ecclesiastical Courts. +Parliament may pass an act, prohibiting courts from +entertaining suits for tithes for sums under £10, but +if they choose to entertain suits for a smaller sum +than £10, a party can only have the benefit of the +prohibition by appearing to the citation, and then +the iniquitous court refuses to allow him his costs, +which are always high.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r227" type="paragraph"> + <Coords> + <Point x="2144" y="2638"/> + <Point x="2163" y="2638"/> + <Point x="2164" y="2648"/> + <Point x="2181" y="2648"/> + <Point x="2197" y="2636"/> + <Point x="2237" y="2636"/> + <Point x="2238" y="2638"/> + <Point x="2240" y="2646"/> + <Point x="2274" y="2644"/> + <Point x="2278" y="2637"/> + <Point x="2286" y="2637"/> + <Point x="2288" y="2645"/> + <Point x="2324" y="2645"/> + <Point x="2346" y="2636"/> + <Point x="2364" y="2636"/> + <Point x="2365" y="2644"/> + <Point x="2379" y="2644"/> + <Point x="2382" y="2635"/> + <Point x="2394" y="2635"/> + <Point x="2401" y="2641"/> + <Point x="2406" y="2643"/> + <Point x="2407" y="2644"/> + <Point x="2420" y="2644"/> + <Point x="2421" y="2643"/> + <Point x="2435" y="2643"/> + <Point x="2459" y="2637"/> + <Point x="2466" y="2634"/> + <Point x="2471" y="2633"/> + <Point x="2488" y="2633"/> + <Point x="2490" y="2641"/> + <Point x="2504" y="2641"/> + <Point x="2525" y="2632"/> + <Point x="2552" y="2632"/> + <Point x="2558" y="2638"/> + <Point x="2603" y="2640"/> + <Point x="2604" y="2639"/> + <Point x="2618" y="2639"/> + <Point x="2638" y="2638"/> + <Point x="2654" y="2638"/> + <Point x="2656" y="2629"/> + <Point x="2670" y="2629"/> + <Point x="2687" y="2628"/> + <Point x="2708" y="2628"/> + <Point x="2711" y="2636"/> + <Point x="2726" y="2636"/> + <Point x="2728" y="2635"/> + <Point x="2754" y="2635"/> + <Point x="2758" y="2634"/> + <Point x="2782" y="2634"/> + <Point x="2785" y="2633"/> + <Point x="2800" y="2633"/> + <Point x="2802" y="2632"/> + <Point x="2831" y="2632"/> + <Point x="2833" y="2643"/> + <Point x="2840" y="2643"/> + <Point x="2857" y="2622"/> + <Point x="2870" y="2622"/> + <Point x="2870" y="2630"/> + <Point x="2886" y="2630"/> + <Point x="2870" y="2630"/> + <Point x="2886" y="2630"/> + <Point x="2889" y="2633"/> + <Point x="2889" y="2652"/> + <Point x="2879" y="2686"/> + <Point x="2887" y="2686"/> + <Point x="2879" y="2686"/> + <Point x="2887" y="2686"/> + <Point x="2890" y="2689"/> + <Point x="2890" y="2704"/> + <Point x="2887" y="2707"/> + <Point x="2879" y="2707"/> + <Point x="2887" y="2707"/> + <Point x="2879" y="2707"/> + <Point x="2891" y="2724"/> + <Point x="2891" y="2751"/> + <Point x="2878" y="2765"/> + <Point x="2890" y="2765"/> + <Point x="2878" y="2765"/> + <Point x="2890" y="2765"/> + <Point x="2893" y="2768"/> + <Point x="2893" y="2786"/> + <Point x="2890" y="2789"/> + <Point x="2878" y="2789"/> + <Point x="2890" y="2789"/> + <Point x="2878" y="2789"/> + <Point x="2891" y="2803"/> + <Point x="2891" y="2830"/> + <Point x="2883" y="2863"/> + <Point x="2889" y="2863"/> + <Point x="2883" y="2863"/> + <Point x="2889" y="2863"/> + <Point x="2892" y="2866"/> + <Point x="2892" y="2874"/> + <Point x="2889" y="2877"/> + <Point x="2883" y="2877"/> + <Point x="2889" y="2877"/> + <Point x="2883" y="2877"/> + <Point x="2894" y="2898"/> + <Point x="2894" y="2916"/> + <Point x="2891" y="2919"/> + <Point x="2879" y="2919"/> + <Point x="2891" y="2919"/> + <Point x="2879" y="2919"/> + <Point x="2893" y="2933"/> + <Point x="2893" y="2961"/> + <Point x="2880" y="2989"/> + <Point x="2892" y="2989"/> + <Point x="2880" y="2989"/> + <Point x="2892" y="2989"/> + <Point x="2895" y="2992"/> + <Point x="2895" y="2999"/> + <Point x="2892" y="3002"/> + <Point x="2880" y="3002"/> + <Point x="2892" y="3002"/> + <Point x="2880" y="3002"/> + <Point x="2894" y="3031"/> + <Point x="2894" y="3049"/> + <Point x="2881" y="3073"/> + <Point x="2893" y="3073"/> + <Point x="2881" y="3073"/> + <Point x="2893" y="3073"/> + <Point x="2896" y="3076"/> + <Point x="2896" y="3094"/> + <Point x="2893" y="3097"/> + <Point x="2881" y="3097"/> + <Point x="2893" y="3097"/> + <Point x="2881" y="3097"/> + <Point x="2897" y="3120"/> + <Point x="2897" y="3138"/> + <Point x="2886" y="3168"/> + <Point x="2894" y="3168"/> + <Point x="2886" y="3168"/> + <Point x="2894" y="3168"/> + <Point x="2897" y="3171"/> + <Point x="2897" y="3236"/> + <Point x="2887" y="3243"/> + <Point x="2900" y="3243"/> + <Point x="2887" y="3243"/> + <Point x="2900" y="3243"/> + <Point x="2903" y="3246"/> + <Point x="2903" y="3273"/> + <Point x="2900" y="3276"/> + <Point x="2887" y="3276"/> + <Point x="2900" y="3276"/> + <Point x="2887" y="3276"/> + <Point x="2899" y="3298"/> + <Point x="2899" y="3325"/> + <Point x="2888" y="3351"/> + <Point x="2895" y="3351"/> + <Point x="2888" y="3351"/> + <Point x="2895" y="3351"/> + <Point x="2898" y="3354"/> + <Point x="2898" y="3362"/> + <Point x="2895" y="3365"/> + <Point x="2888" y="3365"/> + <Point x="2895" y="3365"/> + <Point x="2888" y="3365"/> + <Point x="2903" y="3379"/> + <Point x="2903" y="3407"/> + <Point x="2900" y="3410"/> + <Point x="2887" y="3410"/> + <Point x="2900" y="3410"/> + <Point x="2887" y="3410"/> + <Point x="2898" y="3438"/> + <Point x="2898" y="3445"/> + <Point x="2895" y="3448"/> + <Point x="2884" y="3448"/> + <Point x="2895" y="3448"/> + <Point x="2884" y="3448"/> + <Point x="2899" y="3476"/> + <Point x="2899" y="3494"/> + <Point x="2887" y="3517"/> + <Point x="2898" y="3517"/> + <Point x="2887" y="3517"/> + <Point x="2898" y="3517"/> + <Point x="2901" y="3520"/> + <Point x="2901" y="3537"/> + <Point x="2898" y="3540"/> + <Point x="2887" y="3540"/> + <Point x="2898" y="3540"/> + <Point x="2887" y="3540"/> + <Point x="2901" y="3554"/> + <Point x="2901" y="3580"/> + <Point x="2884" y="3611"/> + <Point x="2896" y="3611"/> + <Point x="2884" y="3611"/> + <Point x="2896" y="3611"/> + <Point x="2899" y="3614"/> + <Point x="2899" y="3620"/> + <Point x="2889" y="3660"/> + <Point x="2896" y="3660"/> + <Point x="2889" y="3660"/> + <Point x="2896" y="3660"/> + <Point x="2899" y="3663"/> + <Point x="2899" y="3672"/> + <Point x="2896" y="3675"/> + <Point x="2889" y="3675"/> + <Point x="2896" y="3675"/> + <Point x="2889" y="3675"/> + <Point x="2903" y="3687"/> + <Point x="2903" y="3715"/> + <Point x="2900" y="3718"/> + <Point x="2887" y="3718"/> + <Point x="2900" y="3718"/> + <Point x="2887" y="3718"/> + <Point x="2897" y="3753"/> + <Point x="2897" y="3768"/> + <Point x="2894" y="3771"/> + <Point x="2886" y="3771"/> + <Point x="2894" y="3771"/> + <Point x="2886" y="3771"/> + <Point x="2900" y="3786"/> + <Point x="2900" y="3813"/> + <Point x="2885" y="3834"/> + <Point x="2896" y="3834"/> + <Point x="2885" y="3834"/> + <Point x="2896" y="3834"/> + <Point x="2899" y="3837"/> + <Point x="2899" y="3843"/> + <Point x="2889" y="3876"/> + <Point x="2901" y="3876"/> + <Point x="2889" y="3876"/> + <Point x="2901" y="3876"/> + <Point x="2904" y="3879"/> + <Point x="2904" y="3885"/> + <Point x="2901" y="3888"/> + <Point x="2889" y="3888"/> + <Point x="2901" y="3888"/> + <Point x="2889" y="3888"/> + <Point x="2905" y="3918"/> + <Point x="2905" y="3936"/> + <Point x="2892" y="3953"/> + <Point x="2902" y="3953"/> + <Point x="2892" y="3953"/> + <Point x="2902" y="3953"/> + <Point x="2905" y="3956"/> + <Point x="2905" y="3979"/> + <Point x="2902" y="3982"/> + <Point x="2892" y="3982"/> + <Point x="2902" y="3982"/> + <Point x="2892" y="3982"/> + <Point x="2906" y="3999"/> + <Point x="2906" y="4023"/> + <Point x="2894" y="4057"/> + <Point x="2901" y="4057"/> + <Point x="2894" y="4057"/> + <Point x="2901" y="4057"/> + <Point x="2904" y="4060"/> + <Point x="2904" y="4068"/> + <Point x="2901" y="4071"/> + <Point x="2894" y="4071"/> + <Point x="2901" y="4071"/> + <Point x="2894" y="4071"/> + <Point x="2903" y="4086"/> + <Point x="2903" y="4111"/> + <Point x="2894" y="4146"/> + <Point x="2901" y="4146"/> + <Point x="2894" y="4146"/> + <Point x="2901" y="4146"/> + <Point x="2904" y="4149"/> + <Point x="2904" y="4163"/> + <Point x="2901" y="4166"/> + <Point x="2894" y="4166"/> + <Point x="2901" y="4166"/> + <Point x="2894" y="4166"/> + <Point x="2905" y="4188"/> + <Point x="2905" y="4194"/> + <Point x="2892" y="4228"/> + <Point x="2904" y="4228"/> + <Point x="2892" y="4228"/> + <Point x="2904" y="4228"/> + <Point x="2907" y="4231"/> + <Point x="2907" y="4238"/> + <Point x="2904" y="4241"/> + <Point x="2892" y="4241"/> + <Point x="2904" y="4241"/> + <Point x="2892" y="4241"/> + <Point x="2908" y="4269"/> + <Point x="2908" y="4297"/> + <Point x="2895" y="4302"/> + <Point x="2908" y="4302"/> + <Point x="2895" y="4302"/> + <Point x="2908" y="4302"/> + <Point x="2910" y="4305"/> + <Point x="2910" y="4333"/> + <Point x="2909" y="4355"/> + <Point x="2909" y="4377"/> + <Point x="2906" y="4380"/> + <Point x="2895" y="4380"/> + <Point x="2906" y="4380"/> + <Point x="2895" y="4380"/> + <Point x="2909" y="4394"/> + <Point x="2909" y="4423"/> + <Point x="2898" y="4438"/> + <Point x="2909" y="4438"/> + <Point x="2898" y="4438"/> + <Point x="2909" y="4438"/> + <Point x="2910" y="4441"/> + <Point x="2910" y="4466"/> + <Point x="2909" y="4469"/> + <Point x="2898" y="4469"/> + <Point x="2909" y="4469"/> + <Point x="2898" y="4469"/> + <Point x="2910" y="4483"/> + <Point x="2910" y="4510"/> + <Point x="2896" y="4539"/> + <Point x="2908" y="4539"/> + <Point x="2896" y="4539"/> + <Point x="2908" y="4539"/> + <Point x="2910" y="4542"/> + <Point x="2910" y="4549"/> + <Point x="2897" y="4584"/> + <Point x="2909" y="4584"/> + <Point x="2897" y="4584"/> + <Point x="2909" y="4584"/> + <Point x="2910" y="4587"/> + <Point x="2910" y="4594"/> + <Point x="2898" y="4622"/> + <Point x="2915" y="4622"/> + <Point x="2915" y="4647"/> + <Point x="2898" y="4647"/> + <Point x="2912" y="4670"/> + <Point x="2912" y="4686"/> + <Point x="2898" y="4712"/> + <Point x="2910" y="4712"/> + <Point x="2898" y="4712"/> + <Point x="2912" y="4712"/> + <Point x="2912" y="4732"/> + <Point x="2899" y="4763"/> + <Point x="2910" y="4763"/> + <Point x="2899" y="4763"/> + <Point x="2913" y="4762"/> + <Point x="2913" y="4775"/> + <Point x="2899" y="4775"/> + <Point x="2910" y="4775"/> + <Point x="2899" y="4775"/> + <Point x="2912" y="4801"/> + <Point x="2912" y="4819"/> + <Point x="2903" y="4856"/> + <Point x="2913" y="4856"/> + <Point x="2913" y="4877"/> + <Point x="2903" y="4877"/> + <Point x="2901" y="4878"/> + <Point x="2891" y="4878"/> + <Point x="2897" y="4914"/> + <Point x="2834" y="4915"/> + <Point x="2832" y="4916"/> + <Point x="2802" y="4916"/> + <Point x="2799" y="4925"/> + <Point x="2789" y="4925"/> + <Point x="2782" y="4919"/> + <Point x="2764" y="4916"/> + <Point x="2752" y="4925"/> + <Point x="2735" y="4925"/> + <Point x="2730" y="4919"/> + <Point x="2706" y="4917"/> + <Point x="2705" y="4918"/> + <Point x="2695" y="4918"/> + <Point x="2692" y="4917"/> + <Point x="2683" y="4917"/> + <Point x="2682" y="4918"/> + <Point x="2667" y="4918"/> + <Point x="2665" y="4919"/> + <Point x="2634" y="4919"/> + <Point x="2633" y="4918"/> + <Point x="2620" y="4918"/> + <Point x="2606" y="4919"/> + <Point x="2581" y="4919"/> + <Point x="2580" y="4920"/> + <Point x="2509" y="4920"/> + <Point x="2507" y="4919"/> + <Point x="2491" y="4919"/> + <Point x="2490" y="4920"/> + <Point x="2478" y="4920"/> + <Point x="2466" y="4921"/> + <Point x="2450" y="4921"/> + <Point x="2450" y="4920"/> + <Point x="2439" y="4920"/> + <Point x="2426" y="4928"/> + <Point x="2409" y="4928"/> + <Point x="2401" y="4924"/> + <Point x="2387" y="4920"/> + <Point x="2384" y="4921"/> + <Point x="2367" y="4921"/> + <Point x="2365" y="4922"/> + <Point x="2349" y="4922"/> + <Point x="2347" y="4928"/> + <Point x="2330" y="4928"/> + <Point x="2323" y="4926"/> + <Point x="2301" y="4921"/> + <Point x="2298" y="4922"/> + <Point x="2236" y="4922"/> + <Point x="2233" y="4930"/> + <Point x="2215" y="4930"/> + <Point x="2207" y="4923"/> + <Point x="2183" y="4923"/> + <Point x="2180" y="4924"/> + <Point x="2164" y="4924"/> + <Point x="2162" y="4923"/> + <Point x="2135" y="4923"/> + <Point x="2132" y="4920"/> + <Point x="2132" y="4850"/> + <Point x="2145" y="4834"/> + <Point x="2134" y="4834"/> + <Point x="2131" y="4831"/> + <Point x="2131" y="4807"/> + <Point x="2149" y="4791"/> + <Point x="2133" y="4791"/> + <Point x="2130" y="4788"/> + <Point x="2130" y="4769"/> + <Point x="2149" y="4746"/> + <Point x="2132" y="4746"/> + <Point x="2129" y="4743"/> + <Point x="2129" y="4546"/> + <Point x="2138" y="4527"/> + <Point x="2127" y="4527"/> + <Point x="2124" y="4524"/> + <Point x="2124" y="4488"/> + <Point x="2128" y="4477"/> + <Point x="2128" y="4405"/> + <Point x="2136" y="4399"/> + <Point x="2125" y="4399"/> + <Point x="2122" y="4396"/> + <Point x="2122" y="4362"/> + <Point x="2127" y="4344"/> + <Point x="2127" y="4316"/> + <Point x="2140" y="4303"/> + <Point x="2129" y="4303"/> + <Point x="2126" y="4300"/> + <Point x="2126" y="4189"/> + <Point x="2145" y="4171"/> + <Point x="2128" y="4171"/> + <Point x="2125" y="4168"/> + <Point x="2125" y="4096"/> + <Point x="2139" y="4082"/> + <Point x="2126" y="4082"/> + <Point x="2123" y="4079"/> + <Point x="2123" y="4061"/> + <Point x="2141" y="4038"/> + <Point x="2125" y="4038"/> + <Point x="2122" y="4035"/> + <Point x="2122" y="3973"/> + <Point x="2140" y="3952"/> + <Point x="2124" y="3952"/> + <Point x="2121" y="3949"/> + <Point x="2121" y="3930"/> + <Point x="2120" y="3925"/> + <Point x="2120" y="3874"/> + <Point x="2152" y="3874"/> + <Point x="2177" y="3864"/> + <Point x="2124" y="3864"/> + <Point x="2121" y="3861"/> + <Point x="2121" y="3755"/> + <Point x="2145" y="3732"/> + <Point x="2123" y="3732"/> + <Point x="2120" y="3729"/> + <Point x="2120" y="3702"/> + <Point x="2121" y="3694"/> + <Point x="2121" y="3666"/> + <Point x="2131" y="3643"/> + <Point x="2123" y="3643"/> + <Point x="2120" y="3640"/> + <Point x="2120" y="3576"/> + <Point x="2131" y="3555"/> + <Point x="2122" y="3555"/> + <Point x="2119" y="3552"/> + <Point x="2119" y="3527"/> + <Point x="2120" y="3517"/> + <Point x="2120" y="3491"/> + <Point x="2133" y="3467"/> + <Point x="2122" y="3467"/> + <Point x="2119" y="3464"/> + <Point x="2119" y="3442"/> + <Point x="2120" y="3420"/> + <Point x="2120" y="3351"/> + <Point x="2133" y="3334"/> + <Point x="2121" y="3334"/> + <Point x="2118" y="3331"/> + <Point x="2118" y="3269"/> + <Point x="2117" y="3251"/> + <Point x="2117" y="3223"/> + <Point x="2135" y="3202"/> + <Point x="2121" y="3202"/> + <Point x="2118" y="3199"/> + <Point x="2118" y="3180"/> + <Point x="2134" y="3157"/> + <Point x="2119" y="3157"/> + <Point x="2116" y="3154"/> + <Point x="2116" y="3088"/> + <Point x="2130" y="3069"/> + <Point x="2119" y="3069"/> + <Point x="2116" y="3066"/> + <Point x="2116" y="3041"/> + <Point x="2133" y="3023"/> + <Point x="2118" y="3023"/> + <Point x="2115" y="3020"/> + <Point x="2115" y="2948"/> + <Point x="2114" y="2928"/> + <Point x="2114" y="2902"/> + <Point x="2144" y="2891"/> + <Point x="2116" y="2891"/> + <Point x="2113" y="2886"/> + <Point x="2113" y="2826"/> + <Point x="2131" y="2804"/> + <Point x="2112" y="2802"/> + <Point x="2113" y="2689"/> + <Point x="2113" y="2684"/> + <Point x="2139" y="2680"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>In bringing before the House of Commons, in +1839, his motion respecting Ecclesiastical Courts, +Mr. HAWES observed, that it was often extremely +difficult to ascertain over what description of causes +any particular (Ecclesiastical) court operated, and +much inconvenience resulted from this uncertainty. +In the majority of the peculiar courts, and perhaps +in all, there neither were nor could be efficient and +experienced judges, officers, advocates, or prac‐ +titioners, the emoluments being too small, and the +number of causes too few, to ensure those requisites +for the due administration of justice. The +consequence was, that no confidence was re‐ +posed in these tribunals; and delay arose, +and expense was incurred in applying for letters of +request, and in resorting to other means of escaping +the jurisdiction.” As a proof of ignorance, Dr. +LUSHINGTON stated that the practitioners of one of +these ecclesiastical courts did not know that an ap‐ +peal lay from its jurisdiction. But all this ignorance +is displayed at the expense of the unfortunate persons +subject to the jurisdiction. The Court may, through +its ignorance, put a party to great trouble and ex‐ +pense; but the Court itself is vested with impunity. +The Court itself may be composed of a knot of +clergymen having the same interests as the suitor, +and suits may be entertained, in the very +teeth of an act of Parliament prohibit‐ +ing them; but though it may be obvi‐ +ous that the suits are entertained for the purpose +of obtaining incomes to the members of the court +and the practitioners, through enormous costs, yet +corrupt motives cannot be brought home to any one. +If the members of these tribunals avoid doing what +no man not a downright idiot would think of doing, +they may perpetrate all sorts of iniquity with im‐ +punity. We remember, in the case of an ac‐ +tion brought against an inferior tribunal, hearing +Lord TENTERDEN observe, that errors of +judges ought to be viewed with indulgence—that +it was more important that they should act with +confidence on the opinion they entertained, than that +Justice should be paralyzed from hesitation and +anxiety respecting the consequences of their deci‐ +sions. In the case of judges, like those of our su‐ +perior courts, under the eye of an intelligent Bar +and public, a charitable construction of conduct can +be productive of little injury; but in such dens +of iniquity as the Ecclesiastical Courts of the coun‐ +try confessedly are, the doctrine of Lord TENTERDEN +(of which they would be allowed to avail themselves), +must give impunity to the most revolting injustice.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r228" type="paragraph"> + <Coords> + <Point x="2166" y="4934"/> + <Point x="2201" y="4934"/> + <Point x="2204" y="4943"/> + <Point x="2216" y="4943"/> + <Point x="2219" y="4955"/> + <Point x="2225" y="4955"/> + <Point x="2240" y="4934"/> + <Point x="2266" y="4934"/> + <Point x="2270" y="4941"/> + <Point x="2288" y="4941"/> + <Point x="2291" y="4942"/> + <Point x="2316" y="4942"/> + <Point x="2320" y="4941"/> + <Point x="2349" y="4938"/> + <Point x="2356" y="4933"/> + <Point x="2362" y="4933"/> + <Point x="2366" y="4941"/> + <Point x="2432" y="4941"/> + <Point x="2434" y="4940"/> + <Point x="2444" y="4935"/> + <Point x="2450" y="4931"/> + <Point x="2459" y="4931"/> + <Point x="2461" y="4941"/> + <Point x="2477" y="4941"/> + <Point x="2479" y="4935"/> + <Point x="2487" y="4931"/> + <Point x="2499" y="4931"/> + <Point x="2502" y="4940"/> + <Point x="2534" y="4940"/> + <Point x="2537" y="4952"/> + <Point x="2545" y="4952"/> + <Point x="2569" y="4933"/> + <Point x="2577" y="4931"/> + <Point x="2582" y="4930"/> + <Point x="2598" y="4930"/> + <Point x="2601" y="4939"/> + <Point x="2616" y="4939"/> + <Point x="2618" y="4933"/> + <Point x="2656" y="4930"/> + <Point x="2660" y="4929"/> + <Point x="2678" y="4929"/> + <Point x="2680" y="4938"/> + <Point x="2694" y="4938"/> + <Point x="2711" y="4929"/> + <Point x="2719" y="4929"/> + <Point x="2722" y="4937"/> + <Point x="2738" y="4937"/> + <Point x="2741" y="4929"/> + <Point x="2754" y="4929"/> + <Point x="2758" y="4937"/> + <Point x="2764" y="4937"/> + <Point x="2767" y="4929"/> + <Point x="2788" y="4929"/> + <Point x="2767" y="4929"/> + <Point x="2788" y="4929"/> + <Point x="2789" y="4937"/> + <Point x="2844" y="4937"/> + <Point x="2846" y="4936"/> + <Point x="2859" y="4936"/> + <Point x="2860" y="4935"/> + <Point x="2869" y="4934"/> + <Point x="2871" y="4926"/> + <Point x="2885" y="4926"/> + <Point x="2885" y="4934"/> + <Point x="2899" y="4934"/> + <Point x="2901" y="4941"/> + <Point x="2913" y="4941"/> + <Point x="2901" y="4941"/> + <Point x="2913" y="4941"/> + <Point x="2916" y="4944"/> + <Point x="2916" y="4951"/> + <Point x="2905" y="4990"/> + <Point x="2913" y="4990"/> + <Point x="2905" y="4990"/> + <Point x="2913" y="4990"/> + <Point x="2916" y="4993"/> + <Point x="2916" y="5008"/> + <Point x="2913" y="5011"/> + <Point x="2905" y="5011"/> + <Point x="2913" y="5011"/> + <Point x="2905" y="5011"/> + <Point x="2917" y="5033"/> + <Point x="2917" y="5039"/> + <Point x="2914" y="5042"/> + <Point x="2903" y="5042"/> + <Point x="2914" y="5042"/> + <Point x="2903" y="5042"/> + <Point x="2916" y="5071"/> + <Point x="2916" y="5098"/> + <Point x="2905" y="5104"/> + <Point x="2918" y="5104"/> + <Point x="2920" y="5109"/> + <Point x="2920" y="5133"/> + <Point x="2917" y="5136"/> + <Point x="2906" y="5136"/> + <Point x="2917" y="5136"/> + <Point x="2906" y="5136"/> + <Point x="2920" y="5158"/> + <Point x="2920" y="5178"/> + <Point x="2917" y="5181"/> + <Point x="2903" y="5181"/> + <Point x="2917" y="5181"/> + <Point x="2903" y="5181"/> + <Point x="2920" y="5204"/> + <Point x="2920" y="5223"/> + <Point x="2908" y="5239"/> + <Point x="2919" y="5239"/> + <Point x="2922" y="5241"/> + <Point x="2922" y="5266"/> + <Point x="2910" y="5281"/> + <Point x="2920" y="5281"/> + <Point x="2910" y="5281"/> + <Point x="2923" y="5281"/> + <Point x="2923" y="5310"/> + <Point x="2910" y="5310"/> + <Point x="2920" y="5310"/> + <Point x="2910" y="5310"/> + <Point x="2920" y="5340"/> + <Point x="2920" y="5347"/> + <Point x="2917" y="5350"/> + <Point x="2906" y="5350"/> + <Point x="2917" y="5350"/> + <Point x="2906" y="5350"/> + <Point x="2924" y="5377"/> + <Point x="2924" y="5408"/> + <Point x="2903" y="5408"/> + <Point x="2920" y="5408"/> + <Point x="2903" y="5408"/> + <Point x="2922" y="5412"/> + <Point x="2922" y="5440"/> + <Point x="2907" y="5468"/> + <Point x="2918" y="5468"/> + <Point x="2907" y="5468"/> + <Point x="2918" y="5468"/> + <Point x="2920" y="5471"/> + <Point x="2920" y="5478"/> + <Point x="2918" y="5481"/> + <Point x="2907" y="5481"/> + <Point x="2918" y="5481"/> + <Point x="2907" y="5481"/> + <Point x="2903" y="5495"/> + <Point x="2888" y="5495"/> + <Point x="2879" y="5486"/> + <Point x="2852" y="5486"/> + <Point x="2852" y="5531"/> + <Point x="2844" y="5531"/> + <Point x="2840" y="5529"/> + <Point x="2823" y="5529"/> + <Point x="2822" y="5530"/> + <Point x="2790" y="5530"/> + <Point x="2788" y="5531"/> + <Point x="2760" y="5531"/> + <Point x="2758" y="5530"/> + <Point x="2741" y="5530"/> + <Point x="2729" y="5531"/> + <Point x="2712" y="5531"/> + <Point x="2710" y="5532"/> + <Point x="2676" y="5532"/> + <Point x="2665" y="5533"/> + <Point x="2655" y="5533"/> + <Point x="2652" y="5534"/> + <Point x="2638" y="5534"/> + <Point x="2636" y="5533"/> + <Point x="2607" y="5533"/> + <Point x="2596" y="5534"/> + <Point x="2584" y="5534"/> + <Point x="2582" y="5533"/> + <Point x="2572" y="5533"/> + <Point x="2570" y="5534"/> + <Point x="2540" y="5534"/> + <Point x="2538" y="5535"/> + <Point x="2471" y="5535"/> + <Point x="2470" y="5536"/> + <Point x="2395" y="5536"/> + <Point x="2394" y="5537"/> + <Point x="2383" y="5537"/> + <Point x="2381" y="5536"/> + <Point x="2363" y="5536"/> + <Point x="2362" y="5538"/> + <Point x="2347" y="5538"/> + <Point x="2345" y="5537"/> + <Point x="2272" y="5537"/> + <Point x="2256" y="5538"/> + <Point x="2235" y="5538"/> + <Point x="2222" y="5546"/> + <Point x="2202" y="5546"/> + <Point x="2196" y="5539"/> + <Point x="2177" y="5538"/> + <Point x="2173" y="5539"/> + <Point x="2146" y="5539"/> + <Point x="2143" y="5536"/> + <Point x="2143" y="5512"/> + <Point x="2158" y="5497"/> + <Point x="2144" y="5497"/> + <Point x="2141" y="5494"/> + <Point x="2141" y="5475"/> + <Point x="2142" y="5450"/> + <Point x="2140" y="5427"/> + <Point x="2155" y="5410"/> + <Point x="2143" y="5410"/> + <Point x="2140" y="5407"/> + <Point x="2140" y="5384"/> + <Point x="2156" y="5366"/> + <Point x="2142" y="5366"/> + <Point x="2139" y="5363"/> + <Point x="2139" y="5294"/> + <Point x="2138" y="5269"/> + <Point x="2138" y="5247"/> + <Point x="2158" y="5235"/> + <Point x="2141" y="5235"/> + <Point x="2136" y="5230"/> + <Point x="2136" y="5204"/> + <Point x="2151" y="5191"/> + <Point x="2139" y="5191"/> + <Point x="2135" y="5186"/> + <Point x="2135" y="5124"/> + <Point x="2149" y="5101"/> + <Point x="2138" y="5101"/> + <Point x="2135" y="5097"/> + <Point x="2135" y="5036"/> + <Point x="2148" y="5012"/> + <Point x="2133" y="5010"/> + <Point x="2133" y="4987"/> + <Point x="2144" y="4985"/> + <Point x="2150" y="4979"/> + <Point x="2157" y="4979"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>Mr. HAWES’S resolution, that the inferior eccle‐ +siastical courts should be abolished without delay, +was carried, but they still exist, to the great oppres‐ +sion of the community. They may know that they +are flying in the face of an Act of Parliament; but +they know that the oppressed party can only secure +himself by an outlay which renders submission to +his wrong the more prudent course. They feel that +they are vested with impunity. Parliament +cannot protect the people from courts de‐ +termined to set it at defiance, trusting +to the difficulty of distinguishing between venial and +criminal fallibility. The only remedy worth any‐ +thing is to abolish such court, root and branch.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r229" type="paragraph"> + <Coords> + <Point x="2174" y="5550"/> + <Point x="2196" y="5550"/> + <Point x="2200" y="5558"/> + <Point x="2209" y="5558"/> + <Point x="2232" y="5555"/> + <Point x="2234" y="5553"/> + <Point x="2241" y="5548"/> + <Point x="2261" y="5550"/> + <Point x="2263" y="5558"/> + <Point x="2277" y="5558"/> + <Point x="2296" y="5557"/> + <Point x="2347" y="5557"/> + <Point x="2349" y="5544"/> + <Point x="2361" y="5548"/> + <Point x="2364" y="5557"/> + <Point x="2380" y="5557"/> + <Point x="2382" y="5552"/> + <Point x="2392" y="5552"/> + <Point x="2393" y="5545"/> + <Point x="2402" y="5545"/> + <Point x="2404" y="5556"/> + <Point x="2451" y="5556"/> + <Point x="2475" y="5555"/> + <Point x="2509" y="5555"/> + <Point x="2511" y="5554"/> + <Point x="2553" y="5554"/> + <Point x="2555" y="5545"/> + <Point x="2572" y="5545"/> + <Point x="2595" y="5553"/> + <Point x="2629" y="5553"/> + <Point x="2650" y="5552"/> + <Point x="2666" y="5552"/> + <Point x="2667" y="5546"/> + <Point x="2701" y="5542"/> + <Point x="2724" y="5542"/> + <Point x="2726" y="5551"/> + <Point x="2740" y="5551"/> + <Point x="2762" y="5541"/> + <Point x="2792" y="5541"/> + <Point x="2794" y="5549"/> + <Point x="2856" y="5549"/> + <Point x="2858" y="5547"/> + <Point x="2873" y="5547"/> + <Point x="2875" y="5548"/> + <Point x="2891" y="5548"/> + <Point x="2894" y="5536"/> + <Point x="2924" y="5536"/> + <Point x="2926" y="5541"/> + <Point x="2926" y="5568"/> + <Point x="2913" y="5585"/> + <Point x="2925" y="5585"/> + <Point x="2913" y="5585"/> + <Point x="2925" y="5585"/> + <Point x="2928" y="5588"/> + <Point x="2928" y="5611"/> + <Point x="2925" y="5614"/> + <Point x="2913" y="5614"/> + <Point x="2925" y="5614"/> + <Point x="2913" y="5614"/> + <Point x="2928" y="5637"/> + <Point x="2928" y="5663"/> + <Point x="2909" y="5678"/> + <Point x="2926" y="5678"/> + <Point x="2909" y="5678"/> + <Point x="2926" y="5678"/> + <Point x="2929" y="5681"/> + <Point x="2929" y="5701"/> + <Point x="2912" y="5729"/> + <Point x="2925" y="5729"/> + <Point x="2912" y="5729"/> + <Point x="2925" y="5729"/> + <Point x="2928" y="5732"/> + <Point x="2928" y="5739"/> + <Point x="2913" y="5774"/> + <Point x="2916" y="5774"/> + <Point x="2913" y="5774"/> + <Point x="2916" y="5774"/> + <Point x="2925" y="5772"/> + <Point x="2928" y="5780"/> + <Point x="2916" y="5804"/> + <Point x="2927" y="5804"/> + <Point x="2916" y="5804"/> + <Point x="2927" y="5804"/> + <Point x="2930" y="5807"/> + <Point x="2930" y="5831"/> + <Point x="2918" y="5849"/> + <Point x="2928" y="5849"/> + <Point x="2918" y="5849"/> + <Point x="2928" y="5849"/> + <Point x="2931" y="5852"/> + <Point x="2931" y="5875"/> + <Point x="2929" y="5913"/> + <Point x="2929" y="5926"/> + <Point x="2926" y="5929"/> + <Point x="2918" y="5929"/> + <Point x="2926" y="5929"/> + <Point x="2918" y="5929"/> + <Point x="2932" y="5936"/> + <Point x="2932" y="5964"/> + <Point x="2921" y="5980"/> + <Point x="2933" y="5980"/> + <Point x="2921" y="5980"/> + <Point x="2933" y="5980"/> + <Point x="2936" y="5983"/> + <Point x="2936" y="6011"/> + <Point x="2933" y="6014"/> + <Point x="2921" y="6014"/> + <Point x="2933" y="6014"/> + <Point x="2921" y="6014"/> + <Point x="2933" y="6034"/> + <Point x="2933" y="6052"/> + <Point x="2930" y="6055"/> + <Point x="2914" y="6055"/> + <Point x="2930" y="6055"/> + <Point x="2914" y="6055"/> + <Point x="2922" y="6075"/> + <Point x="2935" y="6101"/> + <Point x="2918" y="6120"/> + <Point x="2931" y="6120"/> + <Point x="2918" y="6120"/> + <Point x="2931" y="6120"/> + <Point x="2934" y="6123"/> + <Point x="2934" y="6141"/> + <Point x="2919" y="6162"/> + <Point x="2932" y="6162"/> + <Point x="2919" y="6162"/> + <Point x="2932" y="6162"/> + <Point x="2935" y="6165"/> + <Point x="2935" y="6182"/> + <Point x="2922" y="6210"/> + <Point x="2931" y="6210"/> + <Point x="2922" y="6210"/> + <Point x="2931" y="6210"/> + <Point x="2934" y="6213"/> + <Point x="2934" y="6219"/> + <Point x="2931" y="6222"/> + <Point x="2922" y="6222"/> + <Point x="2931" y="6222"/> + <Point x="2922" y="6222"/> + <Point x="2937" y="6250"/> + <Point x="2937" y="6276"/> + <Point x="2923" y="6295"/> + <Point x="2935" y="6295"/> + <Point x="2923" y="6295"/> + <Point x="2935" y="6295"/> + <Point x="2937" y="6298"/> + <Point x="2937" y="6305"/> + <Point x="2935" y="6308"/> + <Point x="2923" y="6308"/> + <Point x="2935" y="6308"/> + <Point x="2923" y="6308"/> + <Point x="2940" y="6336"/> + <Point x="2940" y="6352"/> + <Point x="2926" y="6380"/> + <Point x="2941" y="6380"/> + <Point x="2941" y="6394"/> + <Point x="2928" y="6394"/> + <Point x="2926" y="6395"/> + <Point x="2924" y="6398"/> + <Point x="2910" y="6398"/> + <Point x="2909" y="6399"/> + <Point x="2881" y="6399"/> + <Point x="2879" y="6408"/> + <Point x="2862" y="6408"/> + <Point x="2843" y="6400"/> + <Point x="2829" y="6400"/> + <Point x="2827" y="6399"/> + <Point x="2811" y="6399"/> + <Point x="2810" y="6400"/> + <Point x="2759" y="6400"/> + <Point x="2747" y="6401"/> + <Point x="2729" y="6401"/> + <Point x="2728" y="6402"/> + <Point x="2693" y="6402"/> + <Point x="2691" y="6403"/> + <Point x="2675" y="6403"/> + <Point x="2678" y="6403"/> + <Point x="2630" y="6403"/> + <Point x="2630" y="6447"/> + <Point x="2589" y="6447"/> + <Point x="2586" y="6448"/> + <Point x="2556" y="6448"/> + <Point x="2554" y="6449"/> + <Point x="2524" y="6449"/> + <Point x="2513" y="6448"/> + <Point x="2504" y="6448"/> + <Point x="2502" y="6449"/> + <Point x="2473" y="6449"/> + <Point x="2471" y="6448"/> + <Point x="2463" y="6448"/> + <Point x="2462" y="6450"/> + <Point x="2399" y="6450"/> + <Point x="2397" y="6451"/> + <Point x="2160" y="6453"/> + <Point x="2162" y="6430"/> + <Point x="2180" y="6420"/> + <Point x="2163" y="6420"/> + <Point x="2160" y="6417"/> + <Point x="2160" y="6390"/> + <Point x="2174" y="6368"/> + <Point x="2162" y="6368"/> + <Point x="2159" y="6365"/> + <Point x="2159" y="6347"/> + <Point x="2176" y="6325"/> + <Point x="2160" y="6325"/> + <Point x="2157" y="6322"/> + <Point x="2157" y="6295"/> + <Point x="2171" y="6282"/> + <Point x="2159" y="6282"/> + <Point x="2156" y="6279"/> + <Point x="2156" y="6262"/> + <Point x="2174" y="6240"/> + <Point x="2158" y="6240"/> + <Point x="2155" y="6237"/> + <Point x="2155" y="6210"/> + <Point x="2188" y="6197"/> + <Point x="2156" y="6197"/> + <Point x="2153" y="6194"/> + <Point x="2153" y="6168"/> + <Point x="2170" y="6157"/> + <Point x="2154" y="6157"/> + <Point x="2151" y="6154"/> + <Point x="2151" y="6138"/> + <Point x="2152" y="6115"/> + <Point x="2152" y="6088"/> + <Point x="2175" y="6073"/> + <Point x="2154" y="6073"/> + <Point x="2151" y="6070"/> + <Point x="2151" y="6043"/> + <Point x="2169" y="6028"/> + <Point x="2152" y="6028"/> + <Point x="2149" y="6025"/> + <Point x="2149" y="5997"/> + <Point x="2150" y="5980"/> + <Point x="2150" y="5961"/> + <Point x="2167" y="5938"/> + <Point x="2151" y="5938"/> + <Point x="2148" y="5935"/> + <Point x="2148" y="5917"/> + <Point x="2150" y="5891"/> + <Point x="2150" y="5873"/> + <Point x="2158" y="5859"/> + <Point x="2144" y="5858"/> + <Point x="2144" y="5821"/> + <Point x="2145" y="5801"/> + <Point x="2145" y="5784"/> + <Point x="2173" y="5762"/> + <Point x="2150" y="5762"/> + <Point x="2147" y="5759"/> + <Point x="2147" y="5740"/> + <Point x="2162" y="5719"/> + <Point x="2148" y="5719"/> + <Point x="2145" y="5715"/> + <Point x="2145" y="5602"/> + <Point x="2174" y="5603"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>In the resolutions agreed on at the Monmouth +meeting, it is stated “that the Ecclesiastical Court +of Llandaff, which has been in the habit of issuing +citations for small amounts of tithe, has displayed a +want of respect for the laws of our country, and ex‐ +ercised a power dangerous to the liberty of the sub‐ +ject, which ought not to pass with impunity.” But +we suspect this and every other Ecclesiastical Court +acting with the same barefaced disregard of the law, +may count on impunity. This opinion we deliver with +due hesitation; but, as the conduct of the Court of +Llandaff has excited much indignant feeling in +Monmouth and the parts of the county adjacent, +and a subscription has been set on foot to enable the +Widow YOUNG to obtain redress, if redress is to be +had, it is not impossible that the point will be de‐ +cided respecting which we are in doubt. If any +degree of iniquitous practice, short of barefaced cor‐ +ruption brought home to a judge, can serve as a +ground for punishment, it is to be found in the prac‐ +tice of the Ecclesiastical courts.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r230" type="paragraph"> + <Coords> + <Point x="2195" y="6465"/> + <Point x="2212" y="6465"/> + <Point x="2217" y="6473"/> + <Point x="2233" y="6473"/> + <Point x="2246" y="6468"/> + <Point x="2253" y="6465"/> + <Point x="2258" y="6464"/> + <Point x="2275" y="6464"/> + <Point x="2277" y="6472"/> + <Point x="2291" y="6472"/> + <Point x="2304" y="6463"/> + <Point x="2322" y="6463"/> + <Point x="2333" y="6462"/> + <Point x="2367" y="6462"/> + <Point x="2369" y="6470"/> + <Point x="2384" y="6470"/> + <Point x="2387" y="6469"/> + <Point x="2434" y="6469"/> + <Point x="2437" y="6463"/> + <Point x="2445" y="6463"/> + <Point x="2447" y="6468"/> + <Point x="2481" y="6468"/> + <Point x="2495" y="6459"/> + <Point x="2518" y="6459"/> + <Point x="2520" y="6467"/> + <Point x="2583" y="6467"/> + <Point x="2585" y="6466"/> + <Point x="2595" y="6463"/> + <Point x="2600" y="6476"/> + <Point x="2605" y="6477"/> + <Point x="2605" y="6457"/> + <Point x="2623" y="6457"/> + <Point x="2639" y="6465"/> + <Point x="2673" y="6465"/> + <Point x="2673" y="6453"/> + <Point x="2702" y="6453"/> + <Point x="2705" y="6455"/> + <Point x="2713" y="6455"/> + <Point x="2715" y="6464"/> + <Point x="2721" y="6463"/> + <Point x="2723" y="6454"/> + <Point x="2744" y="6455"/> + <Point x="2747" y="6464"/> + <Point x="2759" y="6464"/> + <Point x="2761" y="6455"/> + <Point x="2778" y="6455"/> + <Point x="2792" y="6462"/> + <Point x="2864" y="6462"/> + <Point x="2876" y="6452"/> + <Point x="2897" y="6452"/> + <Point x="2899" y="6461"/> + <Point x="2924" y="6461"/> + <Point x="2927" y="6460"/> + <Point x="2941" y="6460"/> + <Point x="2927" y="6460"/> + <Point x="2941" y="6460"/> + <Point x="2944" y="6463"/> + <Point x="2944" y="6481"/> + <Point x="2931" y="6503"/> + <Point x="2942" y="6503"/> + <Point x="2931" y="6503"/> + <Point x="2942" y="6503"/> + <Point x="2945" y="6506"/> + <Point x="2945" y="6523"/> + <Point x="2932" y="6557"/> + <Point x="2940" y="6557"/> + <Point x="2932" y="6557"/> + <Point x="2940" y="6557"/> + <Point x="2943" y="6560"/> + <Point x="2943" y="6574"/> + <Point x="2940" y="6577"/> + <Point x="2932" y="6577"/> + <Point x="2940" y="6577"/> + <Point x="2932" y="6577"/> + <Point x="2946" y="6592"/> + <Point x="2946" y="6610"/> + <Point x="2917" y="6633"/> + <Point x="2931" y="6633"/> + <Point x="2932" y="6639"/> + <Point x="2944" y="6639"/> + <Point x="2932" y="6639"/> + <Point x="2944" y="6639"/> + <Point x="2947" y="6642"/> + <Point x="2947" y="6648"/> + <Point x="2949" y="6678"/> + <Point x="2949" y="6696"/> + <Point x="2934" y="6725"/> + <Point x="2946" y="6725"/> + <Point x="2934" y="6725"/> + <Point x="2946" y="6725"/> + <Point x="2949" y="6728"/> + <Point x="2949" y="6735"/> + <Point x="2946" y="6738"/> + <Point x="2934" y="6738"/> + <Point x="2946" y="6738"/> + <Point x="2934" y="6738"/> + <Point x="2950" y="6757"/> + <Point x="2950" y="6784"/> + <Point x="2939" y="6797"/> + <Point x="2951" y="6797"/> + <Point x="2939" y="6797"/> + <Point x="2951" y="6797"/> + <Point x="2954" y="6800"/> + <Point x="2954" y="6828"/> + <Point x="2951" y="6831"/> + <Point x="2939" y="6831"/> + <Point x="2951" y="6831"/> + <Point x="2939" y="6831"/> + <Point x="2952" y="6854"/> + <Point x="2952" y="6872"/> + <Point x="2941" y="6905"/> + <Point x="2950" y="6905"/> + <Point x="2941" y="6905"/> + <Point x="2950" y="6905"/> + <Point x="2953" y="6908"/> + <Point x="2953" y="6921"/> + <Point x="2950" y="6924"/> + <Point x="2941" y="6924"/> + <Point x="2950" y="6924"/> + <Point x="2941" y="6924"/> + <Point x="2953" y="6932"/> + <Point x="2953" y="6960"/> + <Point x="2940" y="6982"/> + <Point x="2954" y="6982"/> + <Point x="2940" y="6982"/> + <Point x="2954" y="6982"/> + <Point x="2957" y="6985"/> + <Point x="2957" y="7004"/> + <Point x="2954" y="7007"/> + <Point x="2940" y="7007"/> + <Point x="2954" y="7007"/> + <Point x="2940" y="7007"/> + <Point x="2961" y="7020"/> + <Point x="2961" y="7043"/> + <Point x="2927" y="7064"/> + <Point x="2939" y="7064"/> + <Point x="2939" y="7068"/> + <Point x="2955" y="7068"/> + <Point x="2939" y="7068"/> + <Point x="2955" y="7068"/> + <Point x="2958" y="7071"/> + <Point x="2958" y="7090"/> + <Point x="2946" y="7112"/> + <Point x="2957" y="7112"/> + <Point x="2946" y="7112"/> + <Point x="2957" y="7112"/> + <Point x="2960" y="7115"/> + <Point x="2960" y="7134"/> + <Point x="2949" y="7147"/> + <Point x="2958" y="7147"/> + <Point x="2949" y="7147"/> + <Point x="2958" y="7147"/> + <Point x="2961" y="7150"/> + <Point x="2961" y="7177"/> + <Point x="2950" y="7191"/> + <Point x="2966" y="7191"/> + <Point x="2966" y="7224"/> + <Point x="2950" y="7224"/> + <Point x="2962" y="7246"/> + <Point x="2962" y="7264"/> + <Point x="2949" y="7287"/> + <Point x="2961" y="7287"/> + <Point x="2949" y="7287"/> + <Point x="2961" y="7287"/> + <Point x="2962" y="7290"/> + <Point x="2962" y="7308"/> + <Point x="2961" y="7311"/> + <Point x="2949" y="7311"/> + <Point x="2961" y="7311"/> + <Point x="2949" y="7311"/> + <Point x="2962" y="7334"/> + <Point x="2962" y="7352"/> + <Point x="2945" y="7366"/> + <Point x="2960" y="7366"/> + <Point x="2945" y="7366"/> + <Point x="2960" y="7366"/> + <Point x="2962" y="7369"/> + <Point x="2962" y="7396"/> + <Point x="2960" y="7399"/> + <Point x="2945" y="7399"/> + <Point x="2960" y="7399"/> + <Point x="2909" y="7399"/> + <Point x="2895" y="7408"/> + <Point x="2888" y="7408"/> + <Point x="2880" y="7402"/> + <Point x="2869" y="7400"/> + <Point x="2866" y="7401"/> + <Point x="2824" y="7401"/> + <Point x="2811" y="7403"/> + <Point x="2782" y="7403"/> + <Point x="2781" y="7404"/> + <Point x="2766" y="7404"/> + <Point x="2763" y="7412"/> + <Point x="2746" y="7412"/> + <Point x="2727" y="7405"/> + <Point x="2712" y="7405"/> + <Point x="2700" y="7406"/> + <Point x="2688" y="7406"/> + <Point x="2686" y="7407"/> + <Point x="2672" y="7407"/> + <Point x="2674" y="7407"/> + <Point x="2669" y="7407"/> + <Point x="2669" y="7450"/> + <Point x="2651" y="7451"/> + <Point x="2648" y="7452"/> + <Point x="2634" y="7452"/> + <Point x="2632" y="7453"/> + <Point x="2618" y="7453"/> + <Point x="2616" y="7452"/> + <Point x="2600" y="7452"/> + <Point x="2598" y="7453"/> + <Point x="2566" y="7453"/> + <Point x="2564" y="7452"/> + <Point x="2553" y="7452"/> + <Point x="2549" y="7461"/> + <Point x="2533" y="7461"/> + <Point x="2521" y="7452"/> + <Point x="2483" y="7452"/> + <Point x="2480" y="7453"/> + <Point x="2466" y="7453"/> + <Point x="2467" y="7452"/> + <Point x="2455" y="7452"/> + <Point x="2441" y="7453"/> + <Point x="2411" y="7453"/> + <Point x="2409" y="7462"/> + <Point x="2391" y="7462"/> + <Point x="2385" y="7455"/> + <Point x="2383" y="7453"/> + <Point x="2380" y="7454"/> + <Point x="2372" y="7454"/> + <Point x="2361" y="7455"/> + <Point x="2347" y="7455"/> + <Point x="2343" y="7456"/> + <Point x="2329" y="7456"/> + <Point x="2327" y="7455"/> + <Point x="2317" y="7455"/> + <Point x="2303" y="7463"/> + <Point x="2285" y="7463"/> + <Point x="2284" y="7456"/> + <Point x="2269" y="7456"/> + <Point x="2266" y="7455"/> + <Point x="2259" y="7455"/> + <Point x="2256" y="7456"/> + <Point x="2240" y="7456"/> + <Point x="2239" y="7455"/> + <Point x="2229" y="7455"/> + <Point x="2226" y="7457"/> + <Point x="2212" y="7457"/> + <Point x="2209" y="7456"/> + <Point x="2193" y="7456"/> + <Point x="2189" y="7452"/> + <Point x="2189" y="7383"/> + <Point x="2206" y="7370"/> + <Point x="2190" y="7370"/> + <Point x="2187" y="7367"/> + <Point x="2187" y="7301"/> + <Point x="2198" y="7283"/> + <Point x="2188" y="7283"/> + <Point x="2185" y="7280"/> + <Point x="2185" y="7258"/> + <Point x="2202" y="7239"/> + <Point x="2187" y="7239"/> + <Point x="2184" y="7236"/> + <Point x="2184" y="7217"/> + <Point x="2200" y="7194"/> + <Point x="2184" y="7194"/> + <Point x="2181" y="7191"/> + <Point x="2181" y="7130"/> + <Point x="2189" y="7106"/> + <Point x="2183" y="7106"/> + <Point x="2177" y="7101"/> + <Point x="2177" y="7031"/> + <Point x="2191" y="7021"/> + <Point x="2180" y="7021"/> + <Point x="2177" y="7018"/> + <Point x="2177" y="6996"/> + <Point x="2189" y="6978"/> + <Point x="2179" y="6978"/> + <Point x="2176" y="6975"/> + <Point x="2176" y="6952"/> + <Point x="2188" y="6933"/> + <Point x="2177" y="6933"/> + <Point x="2174" y="6930"/> + <Point x="2174" y="6908"/> + <Point x="2193" y="6898"/> + <Point x="2176" y="6898"/> + <Point x="2173" y="6895"/> + <Point x="2173" y="6819"/> + <Point x="2186" y="6801"/> + <Point x="2173" y="6801"/> + <Point x="2170" y="6798"/> + <Point x="2170" y="6736"/> + <Point x="2183" y="6713"/> + <Point x="2171" y="6713"/> + <Point x="2168" y="6710"/> + <Point x="2168" y="6648"/> + <Point x="2192" y="6625"/> + <Point x="2169" y="6625"/> + <Point x="2166" y="6621"/> + <Point x="2166" y="6555"/> + <Point x="2182" y="6540"/> + <Point x="2164" y="6540"/> + <Point x="2164" y="6515"/> + <Point x="2182" y="6516"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>In the “Plympton Papers,” published some time +ago by the Camden Society, a curious light is +thrown on the conduct of EMPSON and DUDLEY, +who, it appears, played very different parts from +what might be inferred from the statements re‐ +specting them in our common histories. These +gentlemen, like the practitioner, in our Ecclesiasti‐ +cal Courts, proceeded according to law. They had +the same objects in view, the acquisition of +plunder, but yet they set law less at defiance than +the Ecclesiastical Courts have done. To be sure, +they flew at higher game than Widow YOUNG, and +the other unfortunate cottagers caged by the +Bishops’ Court of Llandaff, and hence their death‐ +less renown. No man in England can long hope to +oppress the rich with impunity. Excessive fines +and excessive bail figure conspicuously in the Bill +of Rights, though, in comparison to the incomes of +the parties, heavier fines and heavier bails than +those which led to the clause in the Bill of Rights +are of every day occurrence in our police courts. +But nothing can be too heavy for a poor man, and +nothing too light for a grandee.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r233" type="paragraph"> + <Coords> + <Point x="2892" y="425"/> + <Point x="2911" y="425"/> + <Point x="2914" y="416"/> + <Point x="2925" y="416"/> + <Point x="2939" y="418"/> + <Point x="2945" y="415"/> + <Point x="2950" y="413"/> + <Point x="2967" y="413"/> + <Point x="2970" y="422"/> + <Point x="2984" y="422"/> + <Point x="2996" y="420"/> + <Point x="3039" y="420"/> + <Point x="3041" y="415"/> + <Point x="3052" y="415"/> + <Point x="3052" y="420"/> + <Point x="3064" y="420"/> + <Point x="3065" y="419"/> + <Point x="3080" y="419"/> + <Point x="3082" y="418"/> + <Point x="3099" y="418"/> + <Point x="3101" y="417"/> + <Point x="3110" y="414"/> + <Point x="3117" y="408"/> + <Point x="3123" y="406"/> + <Point x="3128" y="407"/> + <Point x="3134" y="407"/> + <Point x="3137" y="415"/> + <Point x="3149" y="415"/> + <Point x="3153" y="426"/> + <Point x="3158" y="427"/> + <Point x="3172" y="416"/> + <Point x="3204" y="416"/> + <Point x="3207" y="407"/> + <Point x="3222" y="407"/> + <Point x="3235" y="406"/> + <Point x="3241" y="406"/> + <Point x="3243" y="413"/> + <Point x="3255" y="413"/> + <Point x="3259" y="406"/> + <Point x="3272" y="406"/> + <Point x="3291" y="414"/> + <Point x="3300" y="410"/> + <Point x="3308" y="405"/> + <Point x="3324" y="405"/> + <Point x="3327" y="407"/> + <Point x="3337" y="407"/> + <Point x="3338" y="412"/> + <Point x="3349" y="412"/> + <Point x="3355" y="403"/> + <Point x="3361" y="403"/> + <Point x="3365" y="411"/> + <Point x="3376" y="409"/> + <Point x="3383" y="401"/> + <Point x="3390" y="401"/> + <Point x="3393" y="410"/> + <Point x="3428" y="410"/> + <Point x="3440" y="409"/> + <Point x="3456" y="405"/> + <Point x="3464" y="399"/> + <Point x="3474" y="399"/> + <Point x="3478" y="406"/> + <Point x="3491" y="406"/> + <Point x="3493" y="404"/> + <Point x="3511" y="404"/> + <Point x="3511" y="403"/> + <Point x="3519" y="398"/> + <Point x="3528" y="395"/> + <Point x="3537" y="395"/> + <Point x="3549" y="404"/> + <Point x="3566" y="404"/> + <Point x="3568" y="403"/> + <Point x="3587" y="395"/> + <Point x="3595" y="393"/> + <Point x="3613" y="393"/> + <Point x="3619" y="392"/> + <Point x="3630" y="393"/> + <Point x="3642" y="393"/> + <Point x="3650" y="391"/> + <Point x="3659" y="399"/> + <Point x="3654" y="406"/> + <Point x="3665" y="406"/> + <Point x="3654" y="406"/> + <Point x="3665" y="406"/> + <Point x="3668" y="409"/> + <Point x="3668" y="415"/> + <Point x="3665" y="418"/> + <Point x="3654" y="418"/> + <Point x="3665" y="418"/> + <Point x="3654" y="418"/> + <Point x="3668" y="446"/> + <Point x="3668" y="466"/> + <Point x="3665" y="469"/> + <Point x="3647" y="469"/> + <Point x="3665" y="469"/> + <Point x="3647" y="469"/> + <Point x="3669" y="485"/> + <Point x="3669" y="508"/> + <Point x="3657" y="531"/> + <Point x="3669" y="531"/> + <Point x="3657" y="531"/> + <Point x="3669" y="531"/> + <Point x="3672" y="534"/> + <Point x="3672" y="551"/> + <Point x="3669" y="554"/> + <Point x="3657" y="554"/> + <Point x="3669" y="554"/> + <Point x="3657" y="554"/> + <Point x="3669" y="570"/> + <Point x="3669" y="596"/> + <Point x="3661" y="610"/> + <Point x="3672" y="610"/> + <Point x="3671" y="615"/> + <Point x="3671" y="641"/> + <Point x="3668" y="644"/> + <Point x="3661" y="644"/> + <Point x="3668" y="644"/> + <Point x="3661" y="644"/> + <Point x="3670" y="680"/> + <Point x="3670" y="695"/> + <Point x="3667" y="698"/> + <Point x="3660" y="698"/> + <Point x="3667" y="698"/> + <Point x="3660" y="698"/> + <Point x="3672" y="714"/> + <Point x="3672" y="732"/> + <Point x="3659" y="748"/> + <Point x="3670" y="748"/> + <Point x="3673" y="753"/> + <Point x="3673" y="776"/> + <Point x="3670" y="779"/> + <Point x="3659" y="779"/> + <Point x="3670" y="779"/> + <Point x="3659" y="779"/> + <Point x="3672" y="802"/> + <Point x="3672" y="820"/> + <Point x="3657" y="849"/> + <Point x="3667" y="849"/> + <Point x="3657" y="849"/> + <Point x="3667" y="849"/> + <Point x="3670" y="852"/> + <Point x="3670" y="857"/> + <Point x="3667" y="860"/> + <Point x="3657" y="860"/> + <Point x="3667" y="860"/> + <Point x="3657" y="860"/> + <Point x="3670" y="894"/> + <Point x="3670" y="899"/> + <Point x="3662" y="940"/> + <Point x="3668" y="940"/> + <Point x="3662" y="940"/> + <Point x="3668" y="940"/> + <Point x="3671" y="943"/> + <Point x="3671" y="950"/> + <Point x="3668" y="953"/> + <Point x="3662" y="953"/> + <Point x="3668" y="953"/> + <Point x="3662" y="953"/> + <Point x="3673" y="975"/> + <Point x="3673" y="993"/> + <Point x="3670" y="996"/> + <Point x="3658" y="996"/> + <Point x="3670" y="996"/> + <Point x="3658" y="996"/> + <Point x="3673" y="1018"/> + <Point x="3673" y="1046"/> + <Point x="3657" y="1066"/> + <Point x="3669" y="1066"/> + <Point x="3657" y="1066"/> + <Point x="3669" y="1066"/> + <Point x="3672" y="1069"/> + <Point x="3672" y="1076"/> + <Point x="3658" y="1105"/> + <Point x="3670" y="1105"/> + <Point x="3658" y="1105"/> + <Point x="3670" y="1105"/> + <Point x="3673" y="1108"/> + <Point x="3673" y="1127"/> + <Point x="3670" y="1130"/> + <Point x="3658" y="1130"/> + <Point x="3670" y="1130"/> + <Point x="3658" y="1130"/> + <Point x="3672" y="1153"/> + <Point x="3672" y="1179"/> + <Point x="3657" y="1191"/> + <Point x="3670" y="1191"/> + <Point x="3657" y="1191"/> + <Point x="3670" y="1191"/> + <Point x="3673" y="1194"/> + <Point x="3673" y="1212"/> + <Point x="3660" y="1235"/> + <Point x="3672" y="1235"/> + <Point x="3660" y="1235"/> + <Point x="3672" y="1235"/> + <Point x="3675" y="1238"/> + <Point x="3675" y="1255"/> + <Point x="3672" y="1258"/> + <Point x="3660" y="1258"/> + <Point x="3672" y="1258"/> + <Point x="3660" y="1258"/> + <Point x="3674" y="1283"/> + <Point x="3674" y="1300"/> + <Point x="3661" y="1323"/> + <Point x="3673" y="1323"/> + <Point x="3661" y="1323"/> + <Point x="3673" y="1323"/> + <Point x="3676" y="1326"/> + <Point x="3676" y="1343"/> + <Point x="3673" y="1346"/> + <Point x="3661" y="1346"/> + <Point x="3673" y="1346"/> + <Point x="3661" y="1346"/> + <Point x="3675" y="1370"/> + <Point x="3675" y="1388"/> + <Point x="3659" y="1411"/> + <Point x="3672" y="1411"/> + <Point x="3659" y="1411"/> + <Point x="3672" y="1411"/> + <Point x="3675" y="1414"/> + <Point x="3675" y="1432"/> + <Point x="3672" y="1435"/> + <Point x="3659" y="1435"/> + <Point x="3672" y="1435"/> + <Point x="3659" y="1435"/> + <Point x="3674" y="1459"/> + <Point x="3674" y="1477"/> + <Point x="3663" y="1494"/> + <Point x="3675" y="1494"/> + <Point x="3677" y="1502"/> + <Point x="3677" y="1521"/> + <Point x="3674" y="1524"/> + <Point x="3663" y="1524"/> + <Point x="3674" y="1524"/> + <Point x="3663" y="1524"/> + <Point x="3677" y="1547"/> + <Point x="3677" y="1565"/> + <Point x="3665" y="1584"/> + <Point x="3675" y="1584"/> + <Point x="3678" y="1587"/> + <Point x="3678" y="1609"/> + <Point x="3675" y="1612"/> + <Point x="3665" y="1612"/> + <Point x="3675" y="1612"/> + <Point x="3665" y="1612"/> + <Point x="3679" y="1630"/> + <Point x="3679" y="1653"/> + <Point x="3676" y="1656"/> + <Point x="3664" y="1656"/> + <Point x="3676" y="1656"/> + <Point x="3664" y="1656"/> + <Point x="3662" y="1657"/> + <Point x="3651" y="1657"/> + <Point x="3676" y="1676"/> + <Point x="3676" y="1708"/> + <Point x="3666" y="1710"/> + <Point x="3681" y="1716"/> + <Point x="3681" y="1776"/> + <Point x="3674" y="1794"/> + <Point x="3683" y="1809"/> + <Point x="3683" y="1822"/> + <Point x="3664" y="1838"/> + <Point x="3683" y="1838"/> + <Point x="3683" y="1860"/> + <Point x="3681" y="1876"/> + <Point x="3669" y="1876"/> + <Point x="3681" y="1876"/> + <Point x="3669" y="1876"/> + <Point x="3680" y="1900"/> + <Point x="3680" y="1918"/> + <Point x="3671" y="1919"/> + <Point x="3662" y="1919"/> + <Point x="3671" y="1919"/> + <Point x="3662" y="1919"/> + <Point x="3683" y="1942"/> + <Point x="3683" y="1964"/> + <Point x="3663" y="1983"/> + <Point x="3679" y="1983"/> + <Point x="3663" y="1983"/> + <Point x="3679" y="1983"/> + <Point x="3681" y="1986"/> + <Point x="3681" y="2003"/> + <Point x="3662" y="2016"/> + <Point x="3681" y="2016"/> + <Point x="3681" y="2046"/> + <Point x="3674" y="2059"/> + <Point x="3688" y="2058"/> + <Point x="3688" y="2093"/> + <Point x="3673" y="2093"/> + <Point x="3670" y="2096"/> + <Point x="3655" y="2096"/> + <Point x="3644" y="2095"/> + <Point x="3629" y="2095"/> + <Point x="3628" y="2097"/> + <Point x="3613" y="2097"/> + <Point x="3610" y="2098"/> + <Point x="3595" y="2098"/> + <Point x="3596" y="2098"/> + <Point x="3573" y="2098"/> + <Point x="3570" y="2099"/> + <Point x="3544" y="2099"/> + <Point x="3531" y="2110"/> + <Point x="3522" y="2110"/> + <Point x="3516" y="2106"/> + <Point x="3501" y="2103"/> + <Point x="3504" y="2104"/> + <Point x="3480" y="2104"/> + <Point x="3465" y="2105"/> + <Point x="3449" y="2104"/> + <Point x="3449" y="2105"/> + <Point x="3411" y="2105"/> + <Point x="3409" y="2106"/> + <Point x="3382" y="2106"/> + <Point x="3380" y="2107"/> + <Point x="3348" y="2107"/> + <Point x="3346" y="2109"/> + <Point x="3320" y="2109"/> + <Point x="3307" y="2110"/> + <Point x="3273" y="2110"/> + <Point x="3272" y="2111"/> + <Point x="3256" y="2111"/> + <Point x="3244" y="2120"/> + <Point x="3227" y="2120"/> + <Point x="3221" y="2113"/> + <Point x="3207" y="2111"/> + <Point x="3199" y="2157"/> + <Point x="3192" y="2157"/> + <Point x="3188" y="2156"/> + <Point x="3173" y="2156"/> + <Point x="3170" y="2158"/> + <Point x="3156" y="2158"/> + <Point x="3153" y="2157"/> + <Point x="3146" y="2157"/> + <Point x="3144" y="2166"/> + <Point x="3126" y="2166"/> + <Point x="3120" y="2162"/> + <Point x="3109" y="2158"/> + <Point x="3110" y="2159"/> + <Point x="3081" y="2159"/> + <Point x="3079" y="2160"/> + <Point x="3049" y="2160"/> + <Point x="3036" y="2169"/> + <Point x="3018" y="2171"/> + <Point x="3012" y="2161"/> + <Point x="3002" y="2160"/> + <Point x="3000" y="2161"/> + <Point x="2979" y="2161"/> + <Point x="2977" y="2162"/> + <Point x="2962" y="2162"/> + <Point x="2963" y="2161"/> + <Point x="2949" y="2161"/> + <Point x="2953" y="2161"/> + <Point x="2931" y="2161"/> + <Point x="2928" y="2163"/> + <Point x="2912" y="2163"/> + <Point x="2909" y="2160"/> + <Point x="2909" y="2133"/> + <Point x="2938" y="2118"/> + <Point x="2911" y="2118"/> + <Point x="2908" y="2115"/> + <Point x="2908" y="2000"/> + <Point x="2927" y="1996"/> + <Point x="2910" y="1996"/> + <Point x="2907" y="1993"/> + <Point x="2907" y="1878"/> + <Point x="2923" y="1855"/> + <Point x="2909" y="1855"/> + <Point x="2906" y="1852"/> + <Point x="2906" y="1834"/> + <Point x="2907" y="1807"/> + <Point x="2907" y="1789"/> + <Point x="2917" y="1767"/> + <Point x="2909" y="1767"/> + <Point x="2906" y="1764"/> + <Point x="2906" y="1737"/> + <Point x="2923" y="1724"/> + <Point x="2908" y="1724"/> + <Point x="2905" y="1721"/> + <Point x="2905" y="1652"/> + <Point x="2923" y="1636"/> + <Point x="2907" y="1636"/> + <Point x="2904" y="1633"/> + <Point x="2904" y="1518"/> + <Point x="2905" y="1502"/> + <Point x="2905" y="1474"/> + <Point x="2914" y="1462"/> + <Point x="2905" y="1462"/> + <Point x="2902" y="1459"/> + <Point x="2902" y="1389"/> + <Point x="2920" y="1370"/> + <Point x="2904" y="1370"/> + <Point x="2901" y="1367"/> + <Point x="2901" y="1340"/> + <Point x="2916" y="1326"/> + <Point x="2903" y="1326"/> + <Point x="2900" y="1323"/> + <Point x="2900" y="1211"/> + <Point x="2926" y="1193"/> + <Point x="2902" y="1193"/> + <Point x="2899" y="1190"/> + <Point x="2897" y="981"/> + <Point x="2917" y="978"/> + <Point x="2900" y="978"/> + <Point x="2897" y="975"/> + <Point x="2897" y="904"/> + <Point x="2898" y="882"/> + <Point x="2898" y="864"/> + <Point x="2910" y="842"/> + <Point x="2899" y="842"/> + <Point x="2896" y="839"/> + <Point x="2896" y="734"/> + <Point x="2907" y="714"/> + <Point x="2899" y="714"/> + <Point x="2896" y="711"/> + <Point x="2896" y="684"/> + <Point x="2915" y="669"/> + <Point x="2898" y="669"/> + <Point x="2895" y="666"/> + <Point x="2895" y="603"/> + <Point x="2894" y="572"/> + <Point x="2894" y="550"/> + <Point x="2909" y="536"/> + <Point x="2896" y="536"/> + <Point x="2893" y="532"/> + <Point x="2893" y="464"/> + <Point x="2911" y="449"/> + <Point x="2892" y="449"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>of the metropolis, and of obtaining a legal prohibi‐ +tion of the most unwholesome custom of burying in +crowded localities. The administrators of the new +Poor‑law have made a beginning of those measures +of sanatory police which have long been so much +needed. We fear they will achieve no very material +improvement without an amended Building Act, +more comprehensive in its provisions, and more +stringent in its penalties. It will be contended that +the “rights of property” forbid any interference +with those sinks of filth and sources of dis‐ +ease which disgrace the metropolis, and per‐ +petually endanger the health of its inhabitants. +Nor can any change be efficient which allows +the continued accumulation of dead and decaying +bodies in vaults under the churches where congrega‐ +tions assemble for worship, or in churchyards +which are surrounded by dwelling‑houses, and keep +the smell of the dead for ever in the nostrils of the +living. These masses of corruption are centres +from which disease and death radiate. They are +batteries against human existence, and sometimes +their cross fire leaves little chance of escape. There +is a neighbourhood, for instance, between Clare +Market and the Strand, hemmed in by no less than +four of these malignant receptacles. It is, as might +be expected, frequently visited by aggravated forms +of typhus fever. The permanence of disease amongst +the poor of St. Giles’s and Whitechapel, in part +occasioned by the wretched condition of the living +is also in part owing to the loathsome accu‐ +mulation of the dead in the churches and +churchyards of these parishes. Similar‐ +stances might be multiplied. The practice of +burying under churches, and in grave yards it +populous neighbourhoods is a pestilential nuisance +Conveyed to cemetery grounds, such a, have been +recently established, the abodes of the dead would +minister both to bodily and mental health, instead of +diffusing contagion.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r234" type="paragraph"> + <Coords> + <Point x="2941" y="2180"/> + <Point x="2985" y="2182"/> + <Point x="2988" y="2190"/> + <Point x="3044" y="2190"/> + <Point x="3045" y="2189"/> + <Point x="3071" y="2185"/> + <Point x="3077" y="2182"/> + <Point x="3089" y="2182"/> + <Point x="3098" y="2188"/> + <Point x="3105" y="2183"/> + <Point x="3111" y="2178"/> + <Point x="3128" y="2178"/> + <Point x="3133" y="2187"/> + <Point x="3144" y="2187"/> + <Point x="3147" y="2182"/> + <Point x="3156" y="2182"/> + <Point x="3158" y="2186"/> + <Point x="3184" y="2185"/> + <Point x="3185" y="2175"/> + <Point x="3198" y="2175"/> + <Point x="3199" y="2185"/> + <Point x="3213" y="2185"/> + <Point x="3230" y="2178"/> + <Point x="3241" y="2178"/> + <Point x="3243" y="2184"/> + <Point x="3258" y="2184"/> + <Point x="3278" y="2178"/> + <Point x="3284" y="2173"/> + <Point x="3290" y="2173"/> + <Point x="3304" y="2172"/> + <Point x="3308" y="2182"/> + <Point x="3322" y="2182"/> + <Point x="3344" y="2181"/> + <Point x="3362" y="2181"/> + <Point x="3364" y="2180"/> + <Point x="3407" y="2178"/> + <Point x="3412" y="2170"/> + <Point x="3420" y="2170"/> + <Point x="3422" y="2177"/> + <Point x="3430" y="2177"/> + <Point x="3434" y="2169"/> + <Point x="3441" y="2169"/> + <Point x="3443" y="2178"/> + <Point x="3458" y="2178"/> + <Point x="3460" y="2177"/> + <Point x="3476" y="2177"/> + <Point x="3489" y="2176"/> + <Point x="3503" y="2174"/> + <Point x="3508" y="2164"/> + <Point x="3540" y="2164"/> + <Point x="3547" y="2172"/> + <Point x="3554" y="2174"/> + <Point x="3557" y="2173"/> + <Point x="3566" y="2171"/> + <Point x="3567" y="2162"/> + <Point x="3596" y="2162"/> + <Point x="3600" y="2171"/> + <Point x="3627" y="2171"/> + <Point x="3639" y="2170"/> + <Point x="3654" y="2170"/> + <Point x="3655" y="2169"/> + <Point x="3668" y="2169"/> + <Point x="3670" y="2175"/> + <Point x="3682" y="2175"/> + <Point x="3670" y="2175"/> + <Point x="3682" y="2175"/> + <Point x="3685" y="2178"/> + <Point x="3685" y="2185"/> + <Point x="3687" y="2215"/> + <Point x="3687" y="2234"/> + <Point x="3671" y="2243"/> + <Point x="3672" y="2248"/> + <Point x="3686" y="2245"/> + <Point x="3691" y="2247"/> + <Point x="3687" y="2278"/> + <Point x="3684" y="2281"/> + <Point x="3676" y="2281"/> + <Point x="3684" y="2281"/> + <Point x="3676" y="2281"/> + <Point x="3685" y="2304"/> + <Point x="3685" y="2330"/> + <Point x="3682" y="2333"/> + <Point x="3666" y="2333"/> + <Point x="3682" y="2333"/> + <Point x="3666" y="2333"/> + <Point x="3686" y="2347"/> + <Point x="3686" y="2365"/> + <Point x="3667" y="2380"/> + <Point x="3683" y="2380"/> + <Point x="3667" y="2380"/> + <Point x="3683" y="2380"/> + <Point x="3686" y="2383"/> + <Point x="3686" y="2408"/> + <Point x="3670" y="2431"/> + <Point x="3685" y="2431"/> + <Point x="3670" y="2431"/> + <Point x="3685" y="2431"/> + <Point x="3688" y="2434"/> + <Point x="3688" y="2451"/> + <Point x="3685" y="2454"/> + <Point x="3670" y="2454"/> + <Point x="3685" y="2454"/> + <Point x="3670" y="2454"/> + <Point x="3688" y="2478"/> + <Point x="3688" y="2496"/> + <Point x="3670" y="2504"/> + <Point x="3677" y="2511"/> + <Point x="3674" y="2525"/> + <Point x="3687" y="2525"/> + <Point x="3674" y="2525"/> + <Point x="3687" y="2525"/> + <Point x="3690" y="2528"/> + <Point x="3690" y="2535"/> + <Point x="3687" y="2538"/> + <Point x="3674" y="2538"/> + <Point x="3687" y="2538"/> + <Point x="3674" y="2538"/> + <Point x="3690" y="2565"/> + <Point x="3690" y="2583"/> + <Point x="3678" y="2613"/> + <Point x="3689" y="2613"/> + <Point x="3678" y="2613"/> + <Point x="3689" y="2613"/> + <Point x="3692" y="2616"/> + <Point x="3692" y="2623"/> + <Point x="3680" y="2662"/> + <Point x="3688" y="2662"/> + <Point x="3680" y="2662"/> + <Point x="3688" y="2662"/> + <Point x="3691" y="2665"/> + <Point x="3691" y="2680"/> + <Point x="3688" y="2683"/> + <Point x="3680" y="2683"/> + <Point x="3688" y="2683"/> + <Point x="3680" y="2683"/> + <Point x="3692" y="2698"/> + <Point x="3692" y="2716"/> + <Point x="3679" y="2745"/> + <Point x="3689" y="2745"/> + <Point x="3679" y="2745"/> + <Point x="3689" y="2745"/> + <Point x="3692" y="2748"/> + <Point x="3692" y="2754"/> + <Point x="3689" y="2757"/> + <Point x="3679" y="2757"/> + <Point x="3689" y="2757"/> + <Point x="3679" y="2757"/> + <Point x="3676" y="2762"/> + <Point x="3660" y="2762"/> + <Point x="3694" y="2792"/> + <Point x="3694" y="2798"/> + <Point x="3679" y="2832"/> + <Point x="3691" y="2832"/> + <Point x="3679" y="2832"/> + <Point x="3691" y="2832"/> + <Point x="3694" y="2835"/> + <Point x="3694" y="2886"/> + <Point x="3691" y="2889"/> + <Point x="3679" y="2889"/> + <Point x="3691" y="2889"/> + <Point x="3679" y="2889"/> + <Point x="3695" y="2918"/> + <Point x="3695" y="2936"/> + <Point x="3685" y="2970"/> + <Point x="3691" y="2970"/> + <Point x="3685" y="2970"/> + <Point x="3691" y="2970"/> + <Point x="3694" y="2973"/> + <Point x="3694" y="2981"/> + <Point x="3691" y="2984"/> + <Point x="3685" y="2984"/> + <Point x="3691" y="2984"/> + <Point x="3685" y="2984"/> + <Point x="3695" y="3013"/> + <Point x="3695" y="3019"/> + <Point x="3692" y="3022"/> + <Point x="3681" y="3022"/> + <Point x="3692" y="3022"/> + <Point x="3681" y="3022"/> + <Point x="3696" y="3052"/> + <Point x="3696" y="3070"/> + <Point x="3681" y="3092"/> + <Point x="3694" y="3092"/> + <Point x="3681" y="3092"/> + <Point x="3694" y="3092"/> + <Point x="3697" y="3095"/> + <Point x="3697" y="3114"/> + <Point x="3694" y="3117"/> + <Point x="3681" y="3117"/> + <Point x="3694" y="3117"/> + <Point x="3681" y="3117"/> + <Point x="3698" y="3140"/> + <Point x="3698" y="3158"/> + <Point x="3683" y="3188"/> + <Point x="3695" y="3188"/> + <Point x="3683" y="3188"/> + <Point x="3695" y="3188"/> + <Point x="3698" y="3191"/> + <Point x="3698" y="3198"/> + <Point x="3686" y="3228"/> + <Point x="3697" y="3228"/> + <Point x="3686" y="3228"/> + <Point x="3697" y="3228"/> + <Point x="3699" y="3231"/> + <Point x="3699" y="3249"/> + <Point x="3687" y="3272"/> + <Point x="3698" y="3272"/> + <Point x="3687" y="3272"/> + <Point x="3698" y="3272"/> + <Point x="3699" y="3275"/> + <Point x="3699" y="3292"/> + <Point x="3687" y="3301"/> + <Point x="3699" y="3308"/> + <Point x="3701" y="3311"/> + <Point x="3701" y="3336"/> + <Point x="3698" y="3340"/> + <Point x="3690" y="3340"/> + <Point x="3698" y="3340"/> + <Point x="3690" y="3340"/> + <Point x="3700" y="3362"/> + <Point x="3700" y="3382"/> + <Point x="3688" y="3405"/> + <Point x="3701" y="3404"/> + <Point x="3701" y="3430"/> + <Point x="3688" y="3430"/> + <Point x="3702" y="3452"/> + <Point x="3702" y="3480"/> + <Point x="3683" y="3494"/> + <Point x="3699" y="3494"/> + <Point x="3683" y="3494"/> + <Point x="3702" y="3494"/> + <Point x="3702" y="3527"/> + <Point x="3683" y="3527"/> + <Point x="3702" y="3538"/> + <Point x="3702" y="3565"/> + <Point x="3686" y="3580"/> + <Point x="3702" y="3580"/> + <Point x="3702" y="3603"/> + <Point x="3699" y="3604"/> + <Point x="3699" y="3611"/> + <Point x="3708" y="3650"/> + <Point x="3708" y="3685"/> + <Point x="3699" y="3702"/> + <Point x="3705" y="3744"/> + <Point x="3665" y="3744"/> + <Point x="3655" y="3769"/> + <Point x="3647" y="3790"/> + <Point x="3543" y="3790"/> + <Point x="3507" y="3791"/> + <Point x="3442" y="3794"/> + <Point x="3214" y="3803"/> + <Point x="3204" y="3808"/> + <Point x="3196" y="3808"/> + <Point x="3190" y="3800"/> + <Point x="3176" y="3800"/> + <Point x="2925" y="3805"/> + <Point x="2925" y="3652"/> + <Point x="2941" y="3626"/> + <Point x="2928" y="3626"/> + <Point x="2925" y="3623"/> + <Point x="2925" y="3604"/> + <Point x="2926" y="3579"/> + <Point x="2926" y="3560"/> + <Point x="2946" y="3539"/> + <Point x="2928" y="3539"/> + <Point x="2925" y="3536"/> + <Point x="2925" y="3510"/> + <Point x="2926" y="3493"/> + <Point x="2926" y="3475"/> + <Point x="2955" y="3453"/> + <Point x="2928" y="3453"/> + <Point x="2925" y="3450"/> + <Point x="2925" y="3336"/> + <Point x="2943" y="3319"/> + <Point x="2927" y="3319"/> + <Point x="2924" y="3316"/> + <Point x="2924" y="3297"/> + <Point x="2937" y="3273"/> + <Point x="2926" y="3273"/> + <Point x="2923" y="3270"/> + <Point x="2923" y="3163"/> + <Point x="2938" y="3140"/> + <Point x="2925" y="3140"/> + <Point x="2922" y="3137"/> + <Point x="2922" y="3074"/> + <Point x="2944" y="3051"/> + <Point x="2923" y="3051"/> + <Point x="2920" y="3048"/> + <Point x="2920" y="3020"/> + <Point x="2921" y="3012"/> + <Point x="2921" y="2936"/> + <Point x="2939" y="2918"/> + <Point x="2923" y="2918"/> + <Point x="2920" y="2915"/> + <Point x="2920" y="2888"/> + <Point x="2933" y="2874"/> + <Point x="2922" y="2874"/> + <Point x="2919" y="2871"/> + <Point x="2919" y="2848"/> + <Point x="2928" y="2839"/> + <Point x="2917" y="2839"/> + <Point x="2914" y="2836"/> + <Point x="2914" y="2801"/> + <Point x="2917" y="2784"/> + <Point x="2917" y="2758"/> + <Point x="2918" y="2740"/> + <Point x="2918" y="2722"/> + <Point x="2934" y="2699"/> + <Point x="2920" y="2699"/> + <Point x="2917" y="2696"/> + <Point x="2917" y="2676"/> + <Point x="2919" y="2652"/> + <Point x="2919" y="2628"/> + <Point x="2938" y="2610"/> + <Point x="2920" y="2610"/> + <Point x="2917" y="2607"/> + <Point x="2917" y="2579"/> + <Point x="2918" y="2561"/> + <Point x="2918" y="2535"/> + <Point x="2929" y="2523"/> + <Point x="2917" y="2523"/> + <Point x="2914" y="2520"/> + <Point x="2914" y="2496"/> + <Point x="2933" y="2485"/> + <Point x="2916" y="2485"/> + <Point x="2913" y="2482"/> + <Point x="2913" y="2457"/> + <Point x="2937" y="2435"/> + <Point x="2914" y="2435"/> + <Point x="2913" y="2432"/> + <Point x="2913" y="2322"/> + <Point x="2926" y="2305"/> + <Point x="2910" y="2305"/> + <Point x="2909" y="2233"/> + <Point x="2941" y="2235"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>The great obstacle to the provision of further ac‐ +commodation of this description is in the inordinate +claims and intolerable assumptions of a portion of +the clergy. The Kensal Green Cemetery has to pay +five shillings to the incumbent of every parish from +which a corpse is brought for interment in a brick +grave, and 1s. 6d. if it be put in a common grave in +the open ground. If the body be brought from +Marylebone, there is an additional tax for the well‐ +known rector of 2s. 6d., which is called the “SPRY +tax.” From this ground alone, the clergy have re‐ +ceived upwards of £2,000, for no duty done, +and with no reason whatever, except that people die +in their parishes. The Highgate Cemetery is sub‐ +jected to the same extortion, with this difference— +that Kensal‑green is only taxed on behalf of incum‐ +bents of parishes situate both within the bills of mor‐ +tality and the diocese of London; while Highgate +pays toll to all within five miles of the cemetery. +The Westminster Cemetery, at Kensington, is com‐ +pelled to pay, for every corpse, ten shillings to the +clergyman of the parish of the deceased, and one +shilling to the clerk; and the extortion extends to a +circle of twenty miles in diameter. We have men‐ +tioned these grounds in the order in which the acts +of Parliament were obtained. In that order has +the imposition been augmented. Every new bill +has been obstructed by a demand of more +money. The Abney Park Company has +resisted, and not before it was high time. They +have found other means for obtaining “sanctity +and security” than by submission to such growing +rapacity. The result shows they were right; and we +rejoice to see, by Mr. COLLISON’S interesting book +on “Cemetery Interment,” that the episcopalian +funerals, in this beautiful ground, are more than +two to one as compared with those of dissenters.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r239" type="paragraph"> + <Coords> + <Point x="3692" y="396"/> + <Point x="3991" y="378"/> + <Point x="4150" y="374"/> + <Point x="4343" y="365"/> + <Point x="4472" y="361"/> + <Point x="4473" y="519"/> + <Point x="4474" y="531"/> + <Point x="4474" y="555"/> + <Point x="4461" y="554"/> + <Point x="4458" y="555"/> + <Point x="4447" y="555"/> + <Point x="4443" y="554"/> + <Point x="4432" y="554"/> + <Point x="4428" y="555"/> + <Point x="4385" y="555"/> + <Point x="4373" y="557"/> + <Point x="4354" y="557"/> + <Point x="4352" y="558"/> + <Point x="4321" y="558"/> + <Point x="4302" y="561"/> + <Point x="4290" y="561"/> + <Point x="4287" y="562"/> + <Point x="4272" y="562"/> + <Point x="4269" y="563"/> + <Point x="4261" y="563"/> + <Point x="4249" y="564"/> + <Point x="4234" y="564"/> + <Point x="4230" y="566"/> + <Point x="4220" y="566"/> + <Point x="4217" y="567"/> + <Point x="4205" y="567"/> + <Point x="4202" y="568"/> + <Point x="4173" y="568"/> + <Point x="4160" y="569"/> + <Point x="4146" y="569"/> + <Point x="4143" y="570"/> + <Point x="4130" y="570"/> + <Point x="4119" y="571"/> + <Point x="4093" y="571"/> + <Point x="4090" y="572"/> + <Point x="4078" y="572"/> + <Point x="4076" y="573"/> + <Point x="4057" y="573"/> + <Point x="4045" y="575"/> + <Point x="4037" y="575"/> + <Point x="4037" y="576"/> + <Point x="4021" y="576"/> + <Point x="4020" y="585"/> + <Point x="4004" y="585"/> + <Point x="3972" y="577"/> + <Point x="3972" y="578"/> + <Point x="3958" y="578"/> + <Point x="3959" y="578"/> + <Point x="3932" y="611"/> + <Point x="3887" y="611"/> + <Point x="3867" y="612"/> + <Point x="3840" y="613"/> + <Point x="3785" y="613"/> + <Point x="3782" y="621"/> + <Point x="3769" y="621"/> + <Point x="3763" y="617"/> + <Point x="3692" y="617"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>merous wrecks in the Black Sea. We have already re- +ceived accounts of the loss of eighteen Greek vessels, +three English, and a much greater number of Austrians, +Sardinians, and Neapolitans. Even in the channel seven +were cast away. Lieutenant‑Colonel de Philippovich and +Captain Count Szechvyni were on board the Seri Pervas +during the storm.”</Unicode></TextEquiv></TextRegion> + <TextRegion id="r245" type="paragraph"> + <Coords> + <Point x="3728" y="1114"/> + <Point x="3746" y="1114"/> + <Point x="3756" y="1110"/> + <Point x="3777" y="1110"/> + <Point x="3783" y="1112"/> + <Point x="3787" y="1118"/> + <Point x="3808" y="1118"/> + <Point x="3827" y="1109"/> + <Point x="3841" y="1109"/> + <Point x="3844" y="1116"/> + <Point x="3858" y="1116"/> + <Point x="3860" y="1107"/> + <Point x="3874" y="1107"/> + <Point x="3876" y="1115"/> + <Point x="3904" y="1115"/> + <Point x="3907" y="1111"/> + <Point x="3917" y="1111"/> + <Point x="3929" y="1106"/> + <Point x="3938" y="1106"/> + <Point x="3977" y="1104"/> + <Point x="4020" y="1104"/> + <Point x="4022" y="1102"/> + <Point x="4037" y="1102"/> + <Point x="4046" y="1103"/> + <Point x="4059" y="1103"/> + <Point x="4070" y="1108"/> + <Point x="4080" y="1108"/> + <Point x="4082" y="1107"/> + <Point x="4123" y="1107"/> + <Point x="4144" y="1101"/> + <Point x="4152" y="1101"/> + <Point x="4157" y="1098"/> + <Point x="4171" y="1098"/> + <Point x="4174" y="1104"/> + <Point x="4187" y="1104"/> + <Point x="4211" y="1093"/> + <Point x="4261" y="1093"/> + <Point x="4263" y="1101"/> + <Point x="4275" y="1101"/> + <Point x="4277" y="1096"/> + <Point x="4285" y="1096"/> + <Point x="4297" y="1099"/> + <Point x="4312" y="1091"/> + <Point x="4354" y="1086"/> + <Point x="4441" y="1086"/> + <Point x="4474" y="1096"/> + <Point x="4474" y="1147"/> + <Point x="4475" y="1161"/> + <Point x="4475" y="1204"/> + <Point x="4472" y="1214"/> + <Point x="4478" y="1214"/> + <Point x="4475" y="1244"/> + <Point x="4474" y="1249"/> + <Point x="4474" y="1279"/> + <Point x="4466" y="1279"/> + <Point x="4408" y="1280"/> + <Point x="4406" y="1288"/> + <Point x="4392" y="1288"/> + <Point x="4391" y="1281"/> + <Point x="4232" y="1293"/> + <Point x="4222" y="1319"/> + <Point x="4205" y="1321"/> + <Point x="4179" y="1321"/> + <Point x="4153" y="1322"/> + <Point x="4122" y="1322"/> + <Point x="4109" y="1325"/> + <Point x="4075" y="1326"/> + <Point x="4060" y="1327"/> + <Point x="4034" y="1328"/> + <Point x="3911" y="1331"/> + <Point x="3895" y="1332"/> + <Point x="3886" y="1336"/> + <Point x="3876" y="1336"/> + <Point x="3877" y="1332"/> + <Point x="3851" y="1333"/> + <Point x="3847" y="1332"/> + <Point x="3828" y="1333"/> + <Point x="3813" y="1333"/> + <Point x="3761" y="1335"/> + <Point x="3762" y="1335"/> + <Point x="3753" y="1335"/> + <Point x="3741" y="1336"/> + <Point x="3726" y="1336"/> + <Point x="3723" y="1337"/> + <Point x="3698" y="1337"/> + <Point x="3699" y="1309"/> + <Point x="3713" y="1305"/> + <Point x="3698" y="1306"/> + <Point x="3698" y="1250"/> + <Point x="3713" y="1239"/> + <Point x="3697" y="1237"/> + <Point x="3697" y="1214"/> + <Point x="3698" y="1173"/> + <Point x="3698" y="1153"/> + <Point x="3714" y="1153"/> + <Point x="3717" y="1152"/> + <Point x="3728" y="1152"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>“The budget for 1842,” says the Débats, “will com- +prise a complete plan of finances, and an exact exposé in +detail of all our resources. It will coutain a particular +chapter for extraordinary expenses, in which the minis- +ter will demand, in order to cover them, the faculty of +creating Rentes. There will, therefore, be no special +bill for a loan, as has been announced.”</Unicode></TextEquiv></TextRegion> + <TextRegion id="r246" type="paragraph"> + <Coords> + <Point x="3733" y="1338"/> + <Point x="3754" y="1338"/> + <Point x="3756" y="1339"/> + <Point x="3770" y="1339"/> + <Point x="3773" y="1345"/> + <Point x="3785" y="1345"/> + <Point x="3811" y="1336"/> + <Point x="3858" y="1336"/> + <Point x="3870" y="1338"/> + <Point x="3892" y="1338"/> + <Point x="3919" y="1342"/> + <Point x="3929" y="1342"/> + <Point x="3931" y="1337"/> + <Point x="3939" y="1337"/> + <Point x="3942" y="1341"/> + <Point x="3956" y="1341"/> + <Point x="3958" y="1339"/> + <Point x="3967" y="1339"/> + <Point x="3968" y="1341"/> + <Point x="3979" y="1341"/> + <Point x="3983" y="1339"/> + <Point x="3995" y="1339"/> + <Point x="4007" y="1337"/> + <Point x="4016" y="1332"/> + <Point x="4033" y="1332"/> + <Point x="4036" y="1338"/> + <Point x="4049" y="1338"/> + <Point x="4050" y="1333"/> + <Point x="4061" y="1333"/> + <Point x="4079" y="1332"/> + <Point x="4089" y="1332"/> + <Point x="4092" y="1330"/> + <Point x="4105" y="1330"/> + <Point x="4108" y="1335"/> + <Point x="4121" y="1335"/> + <Point x="4136" y="1333"/> + <Point x="4184" y="1324"/> + <Point x="4193" y="1324"/> + <Point x="4194" y="1331"/> + <Point x="4210" y="1331"/> + <Point x="4207" y="1331"/> + <Point x="4230" y="1322"/> + <Point x="4287" y="1322"/> + <Point x="4293" y="1329"/> + <Point x="4304" y="1329"/> + <Point x="4322" y="1327"/> + <Point x="4336" y="1327"/> + <Point x="4338" y="1317"/> + <Point x="4393" y="1317"/> + <Point x="4409" y="1325"/> + <Point x="4411" y="1324"/> + <Point x="4422" y="1324"/> + <Point x="4424" y="1325"/> + <Point x="4434" y="1316"/> + <Point x="4450" y="1316"/> + <Point x="4453" y="1324"/> + <Point x="4464" y="1315"/> + <Point x="4476" y="1315"/> + <Point x="4476" y="1345"/> + <Point x="4467" y="1345"/> + <Point x="4476" y="1363"/> + <Point x="4477" y="1373"/> + <Point x="4477" y="1445"/> + <Point x="4458" y="1445"/> + <Point x="4459" y="1445"/> + <Point x="4450" y="1445"/> + <Point x="4449" y="1446"/> + <Point x="4390" y="1446"/> + <Point x="4388" y="1447"/> + <Point x="4367" y="1447"/> + <Point x="4365" y="1448"/> + <Point x="4350" y="1448"/> + <Point x="4348" y="1449"/> + <Point x="4327" y="1449"/> + <Point x="4327" y="1483"/> + <Point x="4299" y="1483"/> + <Point x="4297" y="1484"/> + <Point x="4270" y="1484"/> + <Point x="4268" y="1485"/> + <Point x="4227" y="1485"/> + <Point x="4224" y="1486"/> + <Point x="4211" y="1486"/> + <Point x="4208" y="1487"/> + <Point x="4179" y="1487"/> + <Point x="4166" y="1488"/> + <Point x="4157" y="1488"/> + <Point x="4154" y="1489"/> + <Point x="4142" y="1489"/> + <Point x="4139" y="1490"/> + <Point x="4100" y="1490"/> + <Point x="4098" y="1491"/> + <Point x="4086" y="1491"/> + <Point x="4083" y="1492"/> + <Point x="4046" y="1492"/> + <Point x="4033" y="1493"/> + <Point x="4020" y="1493"/> + <Point x="4018" y="1494"/> + <Point x="3991" y="1494"/> + <Point x="3979" y="1495"/> + <Point x="3953" y="1495"/> + <Point x="3942" y="1496"/> + <Point x="3933" y="1496"/> + <Point x="3931" y="1497"/> + <Point x="3904" y="1497"/> + <Point x="3902" y="1505"/> + <Point x="3888" y="1505"/> + <Point x="3883" y="1498"/> + <Point x="3874" y="1497"/> + <Point x="3871" y="1498"/> + <Point x="3860" y="1498"/> + <Point x="3849" y="1499"/> + <Point x="3812" y="1499"/> + <Point x="3800" y="1500"/> + <Point x="3760" y="1500"/> + <Point x="3756" y="1501"/> + <Point x="3733" y="1501"/> + <Point x="3731" y="1502"/> + <Point x="3720" y="1502"/> + <Point x="3715" y="1508"/> + <Point x="3700" y="1508"/> + <Point x="3700" y="1481"/> + <Point x="3699" y="1445"/> + <Point x="3701" y="1374"/> + <Point x="3705" y="1372"/> + <Point x="3720" y="1372"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>The Débats states that the explanations of Marshal +Soult to the committee on the Fortifications Bill, are un- +derstood to have been perfectly satisfactory; that he is +again to be heard by that body, and that M. Thiers will +present his report to the Chamer next week.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r247" type="paragraph"> + <Coords> + <Point x="3734" y="1511"/> + <Point x="3756" y="1511"/> + <Point x="3759" y="1512"/> + <Point x="3772" y="1512"/> + <Point x="3776" y="1518"/> + <Point x="3789" y="1518"/> + <Point x="3805" y="1510"/> + <Point x="3827" y="1510"/> + <Point x="3838" y="1518"/> + <Point x="3839" y="1517"/> + <Point x="3865" y="1517"/> + <Point x="3866" y="1513"/> + <Point x="3873" y="1513"/> + <Point x="3876" y="1509"/> + <Point x="3883" y="1509"/> + <Point x="3884" y="1511"/> + <Point x="3916" y="1511"/> + <Point x="3918" y="1508"/> + <Point x="3926" y="1508"/> + <Point x="3939" y="1515"/> + <Point x="3940" y="1514"/> + <Point x="3980" y="1514"/> + <Point x="3982" y="1504"/> + <Point x="3990" y="1504"/> + <Point x="4002" y="1511"/> + <Point x="4057" y="1511"/> + <Point x="4059" y="1507"/> + <Point x="4068" y="1507"/> + <Point x="4070" y="1502"/> + <Point x="4076" y="1502"/> + <Point x="4079" y="1509"/> + <Point x="4108" y="1509"/> + <Point x="4110" y="1508"/> + <Point x="4121" y="1508"/> + <Point x="4142" y="1507"/> + <Point x="4157" y="1507"/> + <Point x="4173" y="1506"/> + <Point x="4201" y="1506"/> + <Point x="4203" y="1505"/> + <Point x="4225" y="1505"/> + <Point x="4228" y="1504"/> + <Point x="4241" y="1504"/> + <Point x="4243" y="1503"/> + <Point x="4272" y="1503"/> + <Point x="4295" y="1501"/> + <Point x="4309" y="1501"/> + <Point x="4310" y="1492"/> + <Point x="4363" y="1492"/> + <Point x="4382" y="1498"/> + <Point x="4412" y="1498"/> + <Point x="4415" y="1489"/> + <Point x="4462" y="1489"/> + <Point x="4463" y="1496"/> + <Point x="4478" y="1496"/> + <Point x="4478" y="1517"/> + <Point x="4480" y="1530"/> + <Point x="4481" y="1615"/> + <Point x="4464" y="1615"/> + <Point x="4476" y="1615"/> + <Point x="4464" y="1615"/> + <Point x="4460" y="1616"/> + <Point x="4432" y="1616"/> + <Point x="4428" y="1617"/> + <Point x="4402" y="1617"/> + <Point x="4399" y="1618"/> + <Point x="4384" y="1618"/> + <Point x="4373" y="1650"/> + <Point x="4365" y="1651"/> + <Point x="4288" y="1652"/> + <Point x="4218" y="1655"/> + <Point x="4192" y="1657"/> + <Point x="4123" y="1657"/> + <Point x="4105" y="1660"/> + <Point x="4076" y="1660"/> + <Point x="4056" y="1669"/> + <Point x="4050" y="1669"/> + <Point x="4041" y="1662"/> + <Point x="4022" y="1664"/> + <Point x="4008" y="1664"/> + <Point x="4005" y="1665"/> + <Point x="3980" y="1664"/> + <Point x="3976" y="1670"/> + <Point x="3967" y="1671"/> + <Point x="3965" y="1664"/> + <Point x="3950" y="1666"/> + <Point x="3923" y="1666"/> + <Point x="3920" y="1667"/> + <Point x="3906" y="1667"/> + <Point x="3894" y="1673"/> + <Point x="3882" y="1673"/> + <Point x="3878" y="1667"/> + <Point x="3872" y="1667"/> + <Point x="3870" y="1668"/> + <Point x="3847" y="1668"/> + <Point x="3845" y="1669"/> + <Point x="3775" y="1669"/> + <Point x="3773" y="1668"/> + <Point x="3765" y="1673"/> + <Point x="3756" y="1675"/> + <Point x="3749" y="1671"/> + <Point x="3704" y="1671"/> + <Point x="3704" y="1588"/> + <Point x="3705" y="1543"/> + <Point x="3727" y="1543"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>The Constitutionnel mentions a rumour of Count de +Flahault being sent to St. Petersburg to replace M. de +Barante, who is to go to Vienna as ambassador, instead of +M. de St. Aulaire; while this latter diplomatist will take +the post lately occupied by M. Guizot at London.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r248" type="paragraph"> + <Coords> + <Point x="3734" y="1676"/> + <Point x="3754" y="1677"/> + <Point x="3767" y="1674"/> + <Point x="3791" y="1674"/> + <Point x="3792" y="1680"/> + <Point x="3804" y="1680"/> + <Point x="3816" y="1679"/> + <Point x="3847" y="1679"/> + <Point x="3850" y="1671"/> + <Point x="3863" y="1671"/> + <Point x="3866" y="1679"/> + <Point x="3878" y="1679"/> + <Point x="3882" y="1678"/> + <Point x="3891" y="1678"/> + <Point x="3893" y="1677"/> + <Point x="3903" y="1677"/> + <Point x="3905" y="1674"/> + <Point x="3914" y="1674"/> + <Point x="3916" y="1677"/> + <Point x="3944" y="1677"/> + <Point x="3948" y="1669"/> + <Point x="3962" y="1669"/> + <Point x="3964" y="1673"/> + <Point x="3984" y="1670"/> + <Point x="4001" y="1673"/> + <Point x="4028" y="1673"/> + <Point x="4027" y="1672"/> + <Point x="4043" y="1672"/> + <Point x="4043" y="1671"/> + <Point x="4056" y="1671"/> + <Point x="4064" y="1667"/> + <Point x="4076" y="1663"/> + <Point x="4094" y="1663"/> + <Point x="4094" y="1670"/> + <Point x="4108" y="1670"/> + <Point x="4128" y="1661"/> + <Point x="4152" y="1661"/> + <Point x="4164" y="1670"/> + <Point x="4167" y="1668"/> + <Point x="4177" y="1668"/> + <Point x="4176" y="1668"/> + <Point x="4199" y="1668"/> + <Point x="4236" y="1661"/> + <Point x="4276" y="1658"/> + <Point x="4287" y="1662"/> + <Point x="4304" y="1660"/> + <Point x="4312" y="1660"/> + <Point x="4329" y="1656"/> + <Point x="4354" y="1656"/> + <Point x="4359" y="1662"/> + <Point x="4369" y="1662"/> + <Point x="4383" y="1654"/> + <Point x="4404" y="1653"/> + <Point x="4415" y="1661"/> + <Point x="4416" y="1659"/> + <Point x="4457" y="1650"/> + <Point x="4468" y="1650"/> + <Point x="4477" y="1658"/> + <Point x="4480" y="1661"/> + <Point x="4480" y="1676"/> + <Point x="4479" y="1682"/> + <Point x="4479" y="1730"/> + <Point x="4480" y="1734"/> + <Point x="4480" y="1739"/> + <Point x="4471" y="1765"/> + <Point x="4478" y="1765"/> + <Point x="4471" y="1765"/> + <Point x="4478" y="1765"/> + <Point x="4481" y="1768"/> + <Point x="4481" y="1772"/> + <Point x="4478" y="1775"/> + <Point x="4471" y="1775"/> + <Point x="4478" y="1775"/> + <Point x="4471" y="1775"/> + <Point x="4468" y="1779"/> + <Point x="4457" y="1779"/> + <Point x="4482" y="1791"/> + <Point x="4482" y="1811"/> + <Point x="4455" y="1820"/> + <Point x="4470" y="1820"/> + <Point x="4469" y="1828"/> + <Point x="4479" y="1828"/> + <Point x="4469" y="1828"/> + <Point x="4479" y="1828"/> + <Point x="4482" y="1831"/> + <Point x="4482" y="1839"/> + <Point x="4479" y="1842"/> + <Point x="4483" y="1850"/> + <Point x="4483" y="1919"/> + <Point x="4481" y="1921"/> + <Point x="4484" y="1924"/> + <Point x="4484" y="2003"/> + <Point x="4481" y="2006"/> + <Point x="4485" y="2013"/> + <Point x="4485" y="2036"/> + <Point x="4487" y="2082"/> + <Point x="4486" y="2087"/> + <Point x="4486" y="2102"/> + <Point x="4489" y="2109"/> + <Point x="4489" y="2139"/> + <Point x="4479" y="2139"/> + <Point x="4486" y="2139"/> + <Point x="4479" y="2139"/> + <Point x="4488" y="2149"/> + <Point x="4488" y="2173"/> + <Point x="4475" y="2173"/> + <Point x="4474" y="2174"/> + <Point x="4474" y="2189"/> + <Point x="4455" y="2207"/> + <Point x="4449" y="2207"/> + <Point x="4447" y="2206"/> + <Point x="4434" y="2206"/> + <Point x="4432" y="2207"/> + <Point x="4418" y="2207"/> + <Point x="4416" y="2208"/> + <Point x="4377" y="2208"/> + <Point x="4368" y="2209"/> + <Point x="4353" y="2209"/> + <Point x="4351" y="2210"/> + <Point x="4339" y="2210"/> + <Point x="4336" y="2211"/> + <Point x="4308" y="2211"/> + <Point x="4291" y="2212"/> + <Point x="4263" y="2212"/> + <Point x="4261" y="2213"/> + <Point x="4231" y="2213"/> + <Point x="4219" y="2214"/> + <Point x="4210" y="2214"/> + <Point x="4207" y="2215"/> + <Point x="4193" y="2215"/> + <Point x="4191" y="2216"/> + <Point x="4177" y="2216"/> + <Point x="4164" y="2215"/> + <Point x="4151" y="2215"/> + <Point x="4148" y="2216"/> + <Point x="4141" y="2216"/> + <Point x="4140" y="2217"/> + <Point x="4126" y="2217"/> + <Point x="4123" y="2218"/> + <Point x="4095" y="2218"/> + <Point x="4084" y="2219"/> + <Point x="4072" y="2219"/> + <Point x="4069" y="2220"/> + <Point x="4048" y="2220"/> + <Point x="4045" y="2221"/> + <Point x="4016" y="2221"/> + <Point x="4014" y="2222"/> + <Point x="4001" y="2222"/> + <Point x="3990" y="2223"/> + <Point x="3953" y="2223"/> + <Point x="3951" y="2225"/> + <Point x="3942" y="2225"/> + <Point x="3939" y="2224"/> + <Point x="3927" y="2224"/> + <Point x="3925" y="2225"/> + <Point x="3881" y="2225"/> + <Point x="3842" y="2226"/> + <Point x="3836" y="2226"/> + <Point x="3834" y="2227"/> + <Point x="3820" y="2227"/> + <Point x="3817" y="2233"/> + <Point x="3802" y="2233"/> + <Point x="3801" y="2228"/> + <Point x="3780" y="2228"/> + <Point x="3777" y="2229"/> + <Point x="3739" y="2229"/> + <Point x="3737" y="2230"/> + <Point x="3716" y="2230"/> + <Point x="3713" y="2227"/> + <Point x="3713" y="2203"/> + <Point x="3722" y="2196"/> + <Point x="3713" y="2196"/> + <Point x="3710" y="2193"/> + <Point x="3710" y="2173"/> + <Point x="3725" y="2164"/> + <Point x="3712" y="2164"/> + <Point x="3709" y="2161"/> + <Point x="3709" y="2111"/> + <Point x="3710" y="2065"/> + <Point x="3707" y="2062"/> + <Point x="3707" y="2045"/> + <Point x="3707" y="2061"/> + <Point x="3707" y="2045"/> + <Point x="3708" y="2028"/> + <Point x="3708" y="1981"/> + <Point x="3709" y="1964"/> + <Point x="3709" y="1940"/> + <Point x="3717" y="1934"/> + <Point x="3709" y="1934"/> + <Point x="3706" y="1931"/> + <Point x="3706" y="1913"/> + <Point x="3723" y="1901"/> + <Point x="3708" y="1901"/> + <Point x="3706" y="1898"/> + <Point x="3706" y="1850"/> + <Point x="3706" y="1872"/> + <Point x="3706" y="1850"/> + <Point x="3717" y="1836"/> + <Point x="3705" y="1836"/> + <Point x="3704" y="1751"/> + <Point x="3702" y="1745"/> + <Point x="3702" y="1716"/> + <Point x="3719" y="1716"/> + <Point x="3722" y="1715"/> + <Point x="3734" y="1715"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>“We understand,” says the Presse, “that the French +government has selected Baron Billing as a fifth com- +missioner, to act, in case of a disagreement, as arbiter be- +tween the two British and the two Neapolitan commis- +sioners, who are to discuss the settlements of the sulphur +question. Baron Billing is the senior of French Secreta- +ries of Legation, and by a fortunate coincidence has filled +that office both at London and Naples. The British and +Sicilian governments have hastened to notify that no +choice could be made which could be more agreeable +to them, nor one which could inspire them with greater +confidence. Baron Billing, to all the guarantees which +his character and fortune give him, joins the advantage +of being well‑informed in matters of litigation, having to +occupy himself with them every day as a member of +the commission of indemnity for the colonists of Saint +Domingo. A better choice could not have been made.”</Unicode></TextEquiv></TextRegion> + <TextRegion id="r249" type="paragraph"> + <Coords> + <Point x="3746" y="2239"/> + <Point x="3764" y="2239"/> + <Point x="3766" y="2247"/> + <Point x="3778" y="2247"/> + <Point x="3781" y="2246"/> + <Point x="3793" y="2246"/> + <Point x="3796" y="2245"/> + <Point x="3808" y="2245"/> + <Point x="3811" y="2246"/> + <Point x="3820" y="2246"/> + <Point x="3823" y="2245"/> + <Point x="3834" y="2237"/> + <Point x="3843" y="2237"/> + <Point x="3863" y="2244"/> + <Point x="3877" y="2244"/> + <Point x="3880" y="2236"/> + <Point x="3887" y="2236"/> + <Point x="3897" y="2242"/> + <Point x="3941" y="2242"/> + <Point x="3957" y="2239"/> + <Point x="4003" y="2239"/> + <Point x="4003" y="2234"/> + <Point x="4014" y="2234"/> + <Point x="4013" y="2239"/> + <Point x="4028" y="2239"/> + <Point x="4028" y="2237"/> + <Point x="4070" y="2237"/> + <Point x="4070" y="2236"/> + <Point x="4086" y="2236"/> + <Point x="4086" y="2234"/> + <Point x="4125" y="2227"/> + <Point x="4134" y="2227"/> + <Point x="4148" y="2234"/> + <Point x="4147" y="2233"/> + <Point x="4161" y="2233"/> + <Point x="4169" y="2232"/> + <Point x="4182" y="2228"/> + <Point x="4207" y="2228"/> + <Point x="4182" y="2228"/> + <Point x="4207" y="2228"/> + <Point x="4207" y="2226"/> + <Point x="4255" y="2222"/> + <Point x="4272" y="2222"/> + <Point x="4272" y="2229"/> + <Point x="4286" y="2229"/> + <Point x="4286" y="2224"/> + <Point x="4300" y="2224"/> + <Point x="4310" y="2221"/> + <Point x="4336" y="2221"/> + <Point x="4336" y="2235"/> + <Point x="4347" y="2235"/> + <Point x="4358" y="2224"/> + <Point x="4363" y="2218"/> + <Point x="4477" y="2218"/> + <Point x="4487" y="2233"/> + <Point x="4490" y="2234"/> + <Point x="4490" y="2280"/> + <Point x="4477" y="2281"/> + <Point x="4478" y="2282"/> + <Point x="4452" y="2282"/> + <Point x="4430" y="2281"/> + <Point x="4415" y="2281"/> + <Point x="4413" y="2282"/> + <Point x="4390" y="2282"/> + <Point x="4388" y="2283"/> + <Point x="4350" y="2283"/> + <Point x="4348" y="2284"/> + <Point x="4336" y="2284"/> + <Point x="4334" y="2285"/> + <Point x="4302" y="2285"/> + <Point x="4300" y="2286"/> + <Point x="4269" y="2286"/> + <Point x="4246" y="2293"/> + <Point x="4240" y="2293"/> + <Point x="4218" y="2288"/> + <Point x="4214" y="2289"/> + <Point x="4189" y="2289"/> + <Point x="4187" y="2290"/> + <Point x="4172" y="2290"/> + <Point x="4170" y="2291"/> + <Point x="4141" y="2291"/> + <Point x="4138" y="2292"/> + <Point x="4127" y="2292"/> + <Point x="4124" y="2291"/> + <Point x="4118" y="2291"/> + <Point x="4116" y="2292"/> + <Point x="4097" y="2292"/> + <Point x="4075" y="2293"/> + <Point x="4066" y="2293"/> + <Point x="4064" y="2294"/> + <Point x="4050" y="2294"/> + <Point x="4031" y="2295"/> + <Point x="4023" y="2295"/> + <Point x="4022" y="2296"/> + <Point x="3964" y="2296"/> + <Point x="3965" y="2329"/> + <Point x="3899" y="2328"/> + <Point x="3892" y="2337"/> + <Point x="3882" y="2337"/> + <Point x="3881" y="2331"/> + <Point x="3789" y="2333"/> + <Point x="3711" y="2336"/> + <Point x="3714" y="2273"/> + <Point x="3734" y="2273"/> + <Point x="3746" y="2280"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>Several of our contemporaries state that M. Cochelet, +French Consul‑General at Alexandria, has solicited his +recall.—Galignani.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r255" type="paragraph"> + <Coords> + <Point x="5310" y="343"/> + <Point x="5312" y="336"/> + <Point x="5355" y="336"/> + <Point x="5355" y="335"/> + <Point x="5368" y="330"/> + <Point x="5380" y="330"/> + <Point x="5388" y="333"/> + <Point x="5402" y="333"/> + <Point x="5402" y="332"/> + <Point x="5418" y="332"/> + <Point x="5416" y="332"/> + <Point x="5433" y="332"/> + <Point x="5444" y="323"/> + <Point x="5470" y="323"/> + <Point x="5472" y="328"/> + <Point x="5487" y="328"/> + <Point x="5505" y="329"/> + <Point x="5519" y="329"/> + <Point x="5522" y="327"/> + <Point x="5532" y="327"/> + <Point x="5533" y="326"/> + <Point x="5547" y="326"/> + <Point x="5551" y="325"/> + <Point x="5579" y="325"/> + <Point x="5582" y="323"/> + <Point x="5595" y="318"/> + <Point x="5602" y="318"/> + <Point x="5607" y="322"/> + <Point x="5621" y="322"/> + <Point x="5639" y="320"/> + <Point x="5657" y="311"/> + <Point x="5711" y="311"/> + <Point x="5714" y="317"/> + <Point x="5727" y="317"/> + <Point x="5745" y="309"/> + <Point x="5763" y="309"/> + <Point x="5765" y="315"/> + <Point x="5794" y="315"/> + <Point x="5796" y="307"/> + <Point x="5826" y="307"/> + <Point x="5830" y="315"/> + <Point x="5841" y="315"/> + <Point x="5842" y="306"/> + <Point x="5868" y="306"/> + <Point x="5870" y="316"/> + <Point x="5906" y="316"/> + <Point x="5925" y="310"/> + <Point x="5943" y="310"/> + <Point x="5925" y="310"/> + <Point x="5968" y="310"/> + <Point x="5997" y="311"/> + <Point x="6005" y="311"/> + <Point x="6016" y="313"/> + <Point x="6036" y="313"/> + <Point x="6035" y="317"/> + <Point x="6056" y="317"/> + <Point x="6055" y="326"/> + <Point x="6070" y="326"/> + <Point x="6070" y="510"/> + <Point x="6061" y="511"/> + <Point x="6058" y="512"/> + <Point x="6049" y="512"/> + <Point x="6071" y="518"/> + <Point x="6069" y="552"/> + <Point x="6068" y="581"/> + <Point x="6067" y="618"/> + <Point x="6070" y="629"/> + <Point x="6070" y="642"/> + <Point x="6068" y="685"/> + <Point x="6068" y="750"/> + <Point x="6031" y="751"/> + <Point x="6025" y="750"/> + <Point x="6011" y="750"/> + <Point x="6002" y="741"/> + <Point x="5988" y="741"/> + <Point x="5990" y="738"/> + <Point x="5979" y="738"/> + <Point x="5966" y="736"/> + <Point x="5958" y="736"/> + <Point x="5955" y="735"/> + <Point x="5880" y="735"/> + <Point x="5877" y="734"/> + <Point x="5833" y="734"/> + <Point x="5830" y="735"/> + <Point x="5818" y="735"/> + <Point x="5815" y="736"/> + <Point x="5801" y="736"/> + <Point x="5789" y="740"/> + <Point x="5784" y="740"/> + <Point x="5758" y="736"/> + <Point x="5756" y="737"/> + <Point x="5715" y="737"/> + <Point x="5712" y="744"/> + <Point x="5698" y="744"/> + <Point x="5673" y="738"/> + <Point x="5670" y="739"/> + <Point x="5647" y="739"/> + <Point x="5643" y="740"/> + <Point x="5619" y="740"/> + <Point x="5608" y="741"/> + <Point x="5586" y="741"/> + <Point x="5584" y="743"/> + <Point x="5571" y="743"/> + <Point x="5567" y="744"/> + <Point x="5544" y="744"/> + <Point x="5532" y="746"/> + <Point x="5489" y="746"/> + <Point x="5477" y="749"/> + <Point x="5465" y="749"/> + <Point x="5462" y="758"/> + <Point x="5431" y="757"/> + <Point x="5429" y="783"/> + <Point x="5403" y="785"/> + <Point x="5333" y="787"/> + <Point x="5328" y="794"/> + <Point x="5312" y="795"/> + <Point x="5311" y="764"/> + <Point x="5312" y="743"/> + <Point x="5313" y="730"/> + <Point x="5310" y="704"/> + <Point x="5312" y="684"/> + <Point x="5312" y="671"/> + <Point x="5313" y="653"/> + <Point x="5311" y="628"/> + <Point x="5311" y="603"/> + <Point x="5312" y="585"/> + <Point x="5310" y="572"/> + <Point x="5309" y="556"/> + <Point x="5310" y="488"/> + <Point x="5309" y="386"/> + <Point x="5309" y="373"/> + <Point x="5310" y="370"/> + <Point x="5311" y="362"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>must say the property of the bondholders is inviolably +recognised to the full extent of principal end interest; +and, in addition to the original securities, we now have a +hold on the best sources of revenue—the customs of Lis- +bon and Oporto; and such was the moral obligation held +by the Chambers, that, without discussion, the govern- +ment was authorised to negotiate as they best could, +without delay, and without making special provision, to +order the half dividend now in course of discharge. +Three years and a half have passed without receiving any +sensible relief, and, the moment a disposition is shown to +repair the injuries sustained, the government is assailed +by language the most intemperate, and conduct very un- +grateful.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r282" type="paragraph"> + <Coords> + <Point x="5347" y="791"/> + <Point x="5380" y="791"/> + <Point x="5390" y="797"/> + <Point x="5421" y="797"/> + <Point x="5423" y="796"/> + <Point x="5436" y="796"/> + <Point x="5448" y="793"/> + <Point x="5477" y="793"/> + <Point x="5480" y="792"/> + <Point x="5491" y="792"/> + <Point x="5493" y="791"/> + <Point x="5507" y="791"/> + <Point x="5519" y="783"/> + <Point x="5528" y="783"/> + <Point x="5541" y="789"/> + <Point x="5543" y="788"/> + <Point x="5563" y="788"/> + <Point x="5574" y="786"/> + <Point x="5596" y="778"/> + <Point x="5602" y="778"/> + <Point x="5604" y="777"/> + <Point x="5647" y="777"/> + <Point x="5649" y="783"/> + <Point x="5661" y="783"/> + <Point x="5673" y="774"/> + <Point x="5683" y="774"/> + <Point x="5730" y="781"/> + <Point x="5734" y="772"/> + <Point x="5749" y="772"/> + <Point x="5759" y="776"/> + <Point x="5768" y="776"/> + <Point x="5770" y="780"/> + <Point x="5807" y="780"/> + <Point x="5809" y="779"/> + <Point x="5820" y="779"/> + <Point x="5823" y="781"/> + <Point x="5835" y="781"/> + <Point x="5838" y="778"/> + <Point x="5848" y="772"/> + <Point x="5864" y="772"/> + <Point x="5866" y="779"/> + <Point x="5870" y="778"/> + <Point x="5882" y="771"/> + <Point x="5894" y="771"/> + <Point x="5894" y="778"/> + <Point x="5904" y="778"/> + <Point x="5906" y="779"/> + <Point x="5917" y="779"/> + <Point x="5929" y="774"/> + <Point x="5935" y="771"/> + <Point x="5945" y="771"/> + <Point x="6071" y="777"/> + <Point x="6070" y="816"/> + <Point x="6069" y="835"/> + <Point x="6068" y="883"/> + <Point x="6068" y="910"/> + <Point x="6059" y="908"/> + <Point x="6056" y="913"/> + <Point x="6047" y="913"/> + <Point x="6068" y="917"/> + <Point x="6067" y="949"/> + <Point x="6043" y="949"/> + <Point x="6064" y="949"/> + <Point x="6043" y="949"/> + <Point x="6022" y="941"/> + <Point x="6013" y="945"/> + <Point x="6002" y="945"/> + <Point x="5994" y="935"/> + <Point x="5982" y="935"/> + <Point x="5981" y="934"/> + <Point x="5972" y="934"/> + <Point x="5970" y="933"/> + <Point x="5958" y="933"/> + <Point x="5947" y="932"/> + <Point x="5934" y="932"/> + <Point x="5933" y="931"/> + <Point x="5915" y="931"/> + <Point x="5903" y="930"/> + <Point x="5890" y="930"/> + <Point x="5888" y="931"/> + <Point x="5874" y="931"/> + <Point x="5872" y="930"/> + <Point x="5859" y="930"/> + <Point x="5863" y="964"/> + <Point x="5854" y="965"/> + <Point x="5851" y="964"/> + <Point x="5814" y="964"/> + <Point x="5809" y="963"/> + <Point x="5804" y="963"/> + <Point x="5801" y="965"/> + <Point x="5795" y="965"/> + <Point x="5791" y="964"/> + <Point x="5779" y="964"/> + <Point x="5776" y="965"/> + <Point x="5730" y="965"/> + <Point x="5721" y="966"/> + <Point x="5706" y="966"/> + <Point x="5704" y="967"/> + <Point x="5692" y="967"/> + <Point x="5689" y="966"/> + <Point x="5680" y="966"/> + <Point x="5678" y="967"/> + <Point x="5642" y="967"/> + <Point x="5639" y="969"/> + <Point x="5627" y="969"/> + <Point x="5624" y="970"/> + <Point x="5611" y="970"/> + <Point x="5597" y="978"/> + <Point x="5582" y="977"/> + <Point x="5578" y="970"/> + <Point x="5574" y="970"/> + <Point x="5572" y="972"/> + <Point x="5544" y="972"/> + <Point x="5541" y="973"/> + <Point x="5535" y="973"/> + <Point x="5530" y="972"/> + <Point x="5523" y="972"/> + <Point x="5522" y="975"/> + <Point x="5507" y="975"/> + <Point x="5504" y="976"/> + <Point x="5473" y="975"/> + <Point x="5471" y="984"/> + <Point x="5460" y="984"/> + <Point x="5459" y="978"/> + <Point x="5437" y="978"/> + <Point x="5434" y="979"/> + <Point x="5421" y="979"/> + <Point x="5419" y="978"/> + <Point x="5406" y="978"/> + <Point x="5394" y="980"/> + <Point x="5366" y="980"/> + <Point x="5363" y="981"/> + <Point x="5313" y="982"/> + <Point x="5313" y="927"/> + <Point x="5312" y="916"/> + <Point x="5311" y="868"/> + <Point x="5310" y="822"/> + <Point x="5324" y="822"/> + <Point x="5325" y="831"/> + <Point x="5338" y="831"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>I hope very few will be found to recognise the proceed- +ings likely to emanate from such announcement, but rather +assume the gentlemanly bearing and quiet perseverance +of Mr. Thornton, whose exertions have been really in- +valuable to the service, and by whom alone we are placed +in our comparatively bettered condition.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r284" type="heading"> + <Coords> + <Point x="5318" y="1081"/> + <Point x="5341" y="1081"/> + <Point x="5344" y="1080"/> + <Point x="5363" y="1080"/> + <Point x="5367" y="1079"/> + <Point x="5387" y="1079"/> + <Point x="5390" y="1077"/> + <Point x="5418" y="1077"/> + <Point x="5419" y="1076"/> + <Point x="5446" y="1076"/> + <Point x="5451" y="1075"/> + <Point x="5477" y="1075"/> + <Point x="5482" y="1074"/> + <Point x="5507" y="1074"/> + <Point x="5512" y="1072"/> + <Point x="5537" y="1072"/> + <Point x="5542" y="1071"/> + <Point x="5563" y="1071"/> + <Point x="5583" y="1069"/> + <Point x="5603" y="1069"/> + <Point x="5606" y="1068"/> + <Point x="5637" y="1068"/> + <Point x="5636" y="1067"/> + <Point x="5661" y="1067"/> + <Point x="5666" y="1066"/> + <Point x="5929" y="1060"/> + <Point x="5980" y="1064"/> + <Point x="6006" y="1078"/> + <Point x="6063" y="1078"/> + <Point x="6070" y="1113"/> + <Point x="6053" y="1113"/> + <Point x="5952" y="1101"/> + <Point x="5953" y="1091"/> + <Point x="5924" y="1091"/> + <Point x="5925" y="1096"/> + <Point x="5904" y="1096"/> + <Point x="5902" y="1097"/> + <Point x="5876" y="1097"/> + <Point x="5874" y="1096"/> + <Point x="5790" y="1096"/> + <Point x="5787" y="1098"/> + <Point x="5752" y="1098"/> + <Point x="5724" y="1100"/> + <Point x="5695" y="1100"/> + <Point x="5693" y="1101"/> + <Point x="5636" y="1101"/> + <Point x="5637" y="1102"/> + <Point x="5583" y="1102"/> + <Point x="5563" y="1104"/> + <Point x="5542" y="1104"/> + <Point x="5537" y="1107"/> + <Point x="5482" y="1107"/> + <Point x="5477" y="1109"/> + <Point x="5451" y="1109"/> + <Point x="5446" y="1110"/> + <Point x="5419" y="1110"/> + <Point x="5418" y="1111"/> + <Point x="5313" y="1116"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>LIVERPOOL SHARE MARKET—DEC. 30.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r285" type="paragraph"> + <Coords> + <Point x="5351" y="1144"/> + <Point x="5374" y="1144"/> + <Point x="5377" y="1150"/> + <Point x="5390" y="1150"/> + <Point x="5393" y="1149"/> + <Point x="5405" y="1149"/> + <Point x="5427" y="1147"/> + <Point x="5450" y="1147"/> + <Point x="5454" y="1146"/> + <Point x="5482" y="1137"/> + <Point x="5496" y="1137"/> + <Point x="5514" y="1138"/> + <Point x="5524" y="1138"/> + <Point x="5546" y="1134"/> + <Point x="5561" y="1134"/> + <Point x="5565" y="1142"/> + <Point x="5578" y="1142"/> + <Point x="5579" y="1141"/> + <Point x="5590" y="1141"/> + <Point x="5611" y="1132"/> + <Point x="5626" y="1132"/> + <Point x="5629" y="1139"/> + <Point x="5640" y="1139"/> + <Point x="5643" y="1138"/> + <Point x="5672" y="1138"/> + <Point x="5695" y="1130"/> + <Point x="5709" y="1130"/> + <Point x="5730" y="1129"/> + <Point x="5744" y="1129"/> + <Point x="5757" y="1130"/> + <Point x="5769" y="1127"/> + <Point x="5797" y="1127"/> + <Point x="5797" y="1134"/> + <Point x="5806" y="1134"/> + <Point x="5816" y="1126"/> + <Point x="5833" y="1126"/> + <Point x="5835" y="1134"/> + <Point x="5846" y="1134"/> + <Point x="5850" y="1135"/> + <Point x="5863" y="1135"/> + <Point x="5890" y="1134"/> + <Point x="5907" y="1134"/> + <Point x="5910" y="1127"/> + <Point x="5932" y="1127"/> + <Point x="5943" y="1129"/> + <Point x="5962" y="1134"/> + <Point x="6067" y="1134"/> + <Point x="6065" y="1150"/> + <Point x="6067" y="1153"/> + <Point x="6067" y="1169"/> + <Point x="6059" y="1190"/> + <Point x="6066" y="1190"/> + <Point x="6059" y="1190"/> + <Point x="6066" y="1190"/> + <Point x="6067" y="1193"/> + <Point x="6067" y="1200"/> + <Point x="6070" y="1239"/> + <Point x="6073" y="1284"/> + <Point x="6070" y="1317"/> + <Point x="6070" y="1339"/> + <Point x="6052" y="1373"/> + <Point x="6036" y="1373"/> + <Point x="6035" y="1363"/> + <Point x="6020" y="1364"/> + <Point x="5991" y="1364"/> + <Point x="5996" y="1358"/> + <Point x="5858" y="1354"/> + <Point x="5796" y="1354"/> + <Point x="5676" y="1356"/> + <Point x="5670" y="1360"/> + <Point x="5659" y="1360"/> + <Point x="5658" y="1356"/> + <Point x="5600" y="1360"/> + <Point x="5512" y="1365"/> + <Point x="5489" y="1366"/> + <Point x="5483" y="1372"/> + <Point x="5476" y="1372"/> + <Point x="5474" y="1367"/> + <Point x="5316" y="1375"/> + <Point x="5318" y="1338"/> + <Point x="5318" y="1281"/> + <Point x="5328" y="1275"/> + <Point x="5319" y="1275"/> + <Point x="5317" y="1276"/> + <Point x="5315" y="1258"/> + <Point x="5313" y="1242"/> + <Point x="5313" y="1178"/> + <Point x="5328" y="1177"/> + <Point x="5328" y="1186"/> + <Point x="5340" y="1186"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>Our market has been dull this day, with very little +inquiry for any description of stock. A few of the follow- +ing Shares were disposed of, and previous rates were +realised:—Grand Junction, 211; ditto quarters, 52; +London and Brighton, 43¼; Manchester and Leeds, 76; +Chester and Birkenhead halves, 16 5/8, Eastern Counties +Debentures, 4l. 18s. 6d.; and Great Western fifths, 10�.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r295" type="paragraph"> + <Coords> + <Point x="4510" y="1951"/> + <Point x="4594" y="1951"/> + <Point x="4596" y="1959"/> + <Point x="4611" y="1959"/> + <Point x="4612" y="1958"/> + <Point x="4644" y="1958"/> + <Point x="4651" y="1949"/> + <Point x="4662" y="1949"/> + <Point x="4667" y="1957"/> + <Point x="4681" y="1957"/> + <Point x="4684" y="1948"/> + <Point x="4700" y="1948"/> + <Point x="4703" y="1957"/> + <Point x="4719" y="1957"/> + <Point x="4721" y="1956"/> + <Point x="4735" y="1956"/> + <Point x="4737" y="1947"/> + <Point x="4771" y="1947"/> + <Point x="4774" y="1949"/> + <Point x="4785" y="1949"/> + <Point x="4795" y="1946"/> + <Point x="4812" y="1946"/> + <Point x="4814" y="1954"/> + <Point x="4830" y="1954"/> + <Point x="4834" y="1947"/> + <Point x="4845" y="1947"/> + <Point x="4856" y="1943"/> + <Point x="4869" y="1943"/> + <Point x="4883" y="1942"/> + <Point x="4891" y="1942"/> + <Point x="4893" y="1951"/> + <Point x="4905" y="1951"/> + <Point x="4917" y="1944"/> + <Point x="4927" y="1944"/> + <Point x="4929" y="1949"/> + <Point x="4945" y="1949"/> + <Point x="4957" y="1947"/> + <Point x="4973" y="1939"/> + <Point x="4987" y="1939"/> + <Point x="4986" y="1946"/> + <Point x="5018" y="1946"/> + <Point x="5035" y="1940"/> + <Point x="5048" y="1935"/> + <Point x="5079" y="1935"/> + <Point x="5089" y="1942"/> + <Point x="5101" y="1941"/> + <Point x="5133" y="1941"/> + <Point x="5137" y="1940"/> + <Point x="5154" y="1940"/> + <Point x="5155" y="1939"/> + <Point x="5171" y="1939"/> + <Point x="5173" y="1937"/> + <Point x="5181" y="1929"/> + <Point x="5216" y="1928"/> + <Point x="5216" y="1934"/> + <Point x="5276" y="1934"/> + <Point x="5289" y="1924"/> + <Point x="5302" y="1924"/> + <Point x="5302" y="1957"/> + <Point x="5298" y="1968"/> + <Point x="5298" y="1991"/> + <Point x="5295" y="1994"/> + <Point x="5298" y="2001"/> + <Point x="5298" y="2054"/> + <Point x="5295" y="2065"/> + <Point x="5263" y="2067"/> + <Point x="5258" y="2073"/> + <Point x="5246" y="2073"/> + <Point x="5242" y="2067"/> + <Point x="5232" y="2067"/> + <Point x="5230" y="2068"/> + <Point x="5198" y="2068"/> + <Point x="5196" y="2069"/> + <Point x="5185" y="2069"/> + <Point x="5183" y="2070"/> + <Point x="5171" y="2070"/> + <Point x="5168" y="2071"/> + <Point x="5154" y="2071"/> + <Point x="5148" y="2073"/> + <Point x="5126" y="2073"/> + <Point x="5122" y="2074"/> + <Point x="5115" y="2074"/> + <Point x="5115" y="2073"/> + <Point x="5088" y="2073"/> + <Point x="5085" y="2074"/> + <Point x="5063" y="2074"/> + <Point x="5015" y="2075"/> + <Point x="5011" y="2077"/> + <Point x="4993" y="2077"/> + <Point x="4992" y="2078"/> + <Point x="4923" y="2078"/> + <Point x="4913" y="2079"/> + <Point x="4903" y="2080"/> + <Point x="4901" y="2081"/> + <Point x="4862" y="2081"/> + <Point x="4858" y="2083"/> + <Point x="4845" y="2083"/> + <Point x="4843" y="2084"/> + <Point x="4827" y="2084"/> + <Point x="4820" y="2085"/> + <Point x="4808" y="2085"/> + <Point x="4806" y="2086"/> + <Point x="4790" y="2086"/> + <Point x="4789" y="2085"/> + <Point x="4761" y="2085"/> + <Point x="4758" y="2086"/> + <Point x="4741" y="2086"/> + <Point x="4739" y="2087"/> + <Point x="4715" y="2087"/> + <Point x="4707" y="2077"/> + <Point x="4689" y="2077"/> + <Point x="4681" y="2088"/> + <Point x="4648" y="2088"/> + <Point x="4647" y="2089"/> + <Point x="4636" y="2089"/> + <Point x="4626" y="2090"/> + <Point x="4610" y="2090"/> + <Point x="4609" y="2089"/> + <Point x="4599" y="2089"/> + <Point x="4589" y="2098"/> + <Point x="4573" y="2096"/> + <Point x="4572" y="2090"/> + <Point x="4565" y="2090"/> + <Point x="4562" y="2095"/> + <Point x="4544" y="2095"/> + <Point x="4543" y="2092"/> + <Point x="4530" y="2092"/> + <Point x="4529" y="2091"/> + <Point x="4516" y="2091"/> + <Point x="4511" y="2087"/> + <Point x="4511" y="2019"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>We have judged it but fair to give this exposition of +the source from which our correspondent derived +his data, that he may be enabled to condense his +reply to the “Author of Reflections on the Currency.”</Unicode></TextEquiv></TextRegion> + <TextRegion id="r296" type="paragraph"> + <Coords> + <Point x="4547" y="2096"/> + <Point x="4571" y="2096"/> + <Point x="4572" y="2097"/> + <Point x="4580" y="2098"/> + <Point x="4591" y="2102"/> + <Point x="4606" y="2102"/> + <Point x="4619" y="2101"/> + <Point x="4657" y="2101"/> + <Point x="4659" y="2100"/> + <Point x="4675" y="2091"/> + <Point x="4703" y="2091"/> + <Point x="4706" y="2100"/> + <Point x="4722" y="2100"/> + <Point x="4736" y="2094"/> + <Point x="4745" y="2094"/> + <Point x="4767" y="2090"/> + <Point x="4782" y="2090"/> + <Point x="4784" y="2089"/> + <Point x="4791" y="2089"/> + <Point x="4793" y="2097"/> + <Point x="4820" y="2097"/> + <Point x="4830" y="2107"/> + <Point x="4849" y="2095"/> + <Point x="4865" y="2095"/> + <Point x="4868" y="2094"/> + <Point x="4887" y="2085"/> + <Point x="4905" y="2084"/> + <Point x="4912" y="2084"/> + <Point x="4915" y="2083"/> + <Point x="4922" y="2083"/> + <Point x="4936" y="2082"/> + <Point x="4954" y="2082"/> + <Point x="4956" y="2090"/> + <Point x="4969" y="2090"/> + <Point x="4971" y="2081"/> + <Point x="4988" y="2081"/> + <Point x="5021" y="2080"/> + <Point x="5018" y="2088"/> + <Point x="5035" y="2088"/> + <Point x="5047" y="2084"/> + <Point x="5060" y="2078"/> + <Point x="5076" y="2078"/> + <Point x="5078" y="2086"/> + <Point x="5093" y="2086"/> + <Point x="5106" y="2077"/> + <Point x="5128" y="2077"/> + <Point x="5132" y="2084"/> + <Point x="5148" y="2084"/> + <Point x="5151" y="2083"/> + <Point x="5167" y="2083"/> + <Point x="5169" y="2082"/> + <Point x="5183" y="2082"/> + <Point x="5186" y="2081"/> + <Point x="5201" y="2081"/> + <Point x="5204" y="2075"/> + <Point x="5206" y="2071"/> + <Point x="5226" y="2070"/> + <Point x="5250" y="2079"/> + <Point x="5269" y="2075"/> + <Point x="5279" y="2075"/> + <Point x="5282" y="2078"/> + <Point x="5297" y="2078"/> + <Point x="5282" y="2078"/> + <Point x="5297" y="2078"/> + <Point x="5299" y="2081"/> + <Point x="5299" y="2099"/> + <Point x="5286" y="2115"/> + <Point x="5300" y="2114"/> + <Point x="5300" y="2121"/> + <Point x="5299" y="2134"/> + <Point x="5298" y="2137"/> + <Point x="5286" y="2137"/> + <Point x="5298" y="2137"/> + <Point x="5286" y="2137"/> + <Point x="5299" y="2159"/> + <Point x="5299" y="2165"/> + <Point x="5296" y="2168"/> + <Point x="5305" y="2191"/> + <Point x="5305" y="2217"/> + <Point x="5303" y="2253"/> + <Point x="5303" y="2304"/> + <Point x="5306" y="2396"/> + <Point x="5140" y="2404"/> + <Point x="4741" y="2410"/> + <Point x="4740" y="2433"/> + <Point x="4699" y="2443"/> + <Point x="4603" y="2443"/> + <Point x="4598" y="2453"/> + <Point x="4519" y="2452"/> + <Point x="4517" y="2346"/> + <Point x="4517" y="2322"/> + <Point x="4531" y="2307"/> + <Point x="4519" y="2307"/> + <Point x="4517" y="2304"/> + <Point x="4517" y="2246"/> + <Point x="4525" y="2235"/> + <Point x="4518" y="2235"/> + <Point x="4517" y="2232"/> + <Point x="4517" y="2205"/> + <Point x="4528" y="2199"/> + <Point x="4517" y="2199"/> + <Point x="4517" y="2138"/> + <Point x="4518" y="2135"/> + <Point x="4526" y="2135"/> + <Point x="4529" y="2130"/> + <Point x="4545" y="2130"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>The weekly tables, published in the Appendix to +the report of the committee, are carried no farther +than June, 1840, for the present, but when Par- +liament re‑assembles they will no doubt be con- +tinued. In the mean time our correspondent had +recourse afterwards to the Gazette returns, to sup- +ply the means of carrying on his calculations. He, +therefore, took the average from the Gazette for the +period from the 28th of April to the 21st of July, +1840, thus:—</Unicode></TextEquiv></TextRegion> + <TextRegion id="r301" type="paragraph"> + <Coords> + <Point x="2961" y="3815"/> + <Point x="2978" y="3815"/> + <Point x="2983" y="3819"/> + <Point x="2993" y="3820"/> + <Point x="3005" y="3815"/> + <Point x="3013" y="3815"/> + <Point x="3015" y="3824"/> + <Point x="3026" y="3824"/> + <Point x="3038" y="3823"/> + <Point x="3077" y="3823"/> + <Point x="3081" y="3817"/> + <Point x="3088" y="3817"/> + <Point x="3091" y="3823"/> + <Point x="3104" y="3823"/> + <Point x="3104" y="3822"/> + <Point x="3172" y="3822"/> + <Point x="3184" y="3821"/> + <Point x="3192" y="3818"/> + <Point x="3197" y="3812"/> + <Point x="3207" y="3812"/> + <Point x="3209" y="3820"/> + <Point x="3221" y="3820"/> + <Point x="3225" y="3811"/> + <Point x="3233" y="3811"/> + <Point x="3236" y="3819"/> + <Point x="3260" y="3819"/> + <Point x="3263" y="3830"/> + <Point x="3271" y="3830"/> + <Point x="3289" y="3812"/> + <Point x="3297" y="3808"/> + <Point x="3301" y="3809"/> + <Point x="3317" y="3809"/> + <Point x="3320" y="3808"/> + <Point x="3327" y="3808"/> + <Point x="3330" y="3817"/> + <Point x="3341" y="3817"/> + <Point x="3364" y="3816"/> + <Point x="3379" y="3816"/> + <Point x="3381" y="3815"/> + <Point x="3422" y="3815"/> + <Point x="3425" y="3814"/> + <Point x="3470" y="3814"/> + <Point x="3472" y="3807"/> + <Point x="3481" y="3804"/> + <Point x="3485" y="3803"/> + <Point x="3491" y="3803"/> + <Point x="3494" y="3811"/> + <Point x="3527" y="3811"/> + <Point x="3551" y="3810"/> + <Point x="3566" y="3810"/> + <Point x="3568" y="3801"/> + <Point x="3582" y="3801"/> + <Point x="3600" y="3808"/> + <Point x="3609" y="3805"/> + <Point x="3612" y="3799"/> + <Point x="3623" y="3799"/> + <Point x="3626" y="3808"/> + <Point x="3650" y="3808"/> + <Point x="3655" y="3797"/> + <Point x="3661" y="3797"/> + <Point x="3663" y="3806"/> + <Point x="3686" y="3806"/> + <Point x="3691" y="3796"/> + <Point x="3695" y="3795"/> + <Point x="3700" y="3795"/> + <Point x="3705" y="3800"/> + <Point x="3705" y="3827"/> + <Point x="3702" y="3830"/> + <Point x="3695" y="3830"/> + <Point x="3702" y="3830"/> + <Point x="3695" y="3830"/> + <Point x="3707" y="3853"/> + <Point x="3707" y="3870"/> + <Point x="3697" y="3906"/> + <Point x="3703" y="3906"/> + <Point x="3697" y="3906"/> + <Point x="3703" y="3906"/> + <Point x="3706" y="3909"/> + <Point x="3706" y="3916"/> + <Point x="3703" y="3919"/> + <Point x="3697" y="3919"/> + <Point x="3703" y="3919"/> + <Point x="3697" y="3919"/> + <Point x="3707" y="3941"/> + <Point x="3707" y="3967"/> + <Point x="3692" y="3980"/> + <Point x="3705" y="3980"/> + <Point x="3692" y="3980"/> + <Point x="3705" y="3980"/> + <Point x="3708" y="3983"/> + <Point x="3708" y="4001"/> + <Point x="3705" y="4004"/> + <Point x="3692" y="4004"/> + <Point x="3705" y="4004"/> + <Point x="3692" y="4004"/> + <Point x="3709" y="4028"/> + <Point x="3709" y="4054"/> + <Point x="3695" y="4062"/> + <Point x="3708" y="4062"/> + <Point x="3695" y="4062"/> + <Point x="3708" y="4062"/> + <Point x="3711" y="4065"/> + <Point x="3711" y="4084"/> + <Point x="3696" y="4114"/> + <Point x="3708" y="4114"/> + <Point x="3696" y="4114"/> + <Point x="3708" y="4114"/> + <Point x="3711" y="4117"/> + <Point x="3711" y="4180"/> + <Point x="3700" y="4201"/> + <Point x="3710" y="4201"/> + <Point x="3700" y="4201"/> + <Point x="3710" y="4201"/> + <Point x="3712" y="4204"/> + <Point x="3712" y="4232"/> + <Point x="3710" y="4235"/> + <Point x="3700" y="4235"/> + <Point x="3710" y="4235"/> + <Point x="3700" y="4235"/> + <Point x="3712" y="4250"/> + <Point x="3712" y="4269"/> + <Point x="3702" y="4293"/> + <Point x="3708" y="4293"/> + <Point x="3702" y="4293"/> + <Point x="3708" y="4293"/> + <Point x="3711" y="4296"/> + <Point x="3711" y="4321"/> + <Point x="3708" y="4324"/> + <Point x="3702" y="4324"/> + <Point x="3708" y="4324"/> + <Point x="3702" y="4324"/> + <Point x="3712" y="4345"/> + <Point x="3712" y="4351"/> + <Point x="3700" y="4379"/> + <Point x="3714" y="4377"/> + <Point x="3714" y="4402"/> + <Point x="3711" y="4404"/> + <Point x="3700" y="4404"/> + <Point x="3711" y="4404"/> + <Point x="3700" y="4404"/> + <Point x="3714" y="4427"/> + <Point x="3714" y="4454"/> + <Point x="3701" y="4469"/> + <Point x="3716" y="4467"/> + <Point x="3716" y="4492"/> + <Point x="3705" y="4506"/> + <Point x="3717" y="4505"/> + <Point x="3717" y="4540"/> + <Point x="3705" y="4539"/> + <Point x="3715" y="4572"/> + <Point x="3712" y="4592"/> + <Point x="3704" y="4592"/> + <Point x="3712" y="4592"/> + <Point x="3704" y="4592"/> + <Point x="3701" y="4584"/> + <Point x="3686" y="4584"/> + <Point x="3683" y="4585"/> + <Point x="3671" y="4585"/> + <Point x="3668" y="4584"/> + <Point x="3660" y="4584"/> + <Point x="3657" y="4585"/> + <Point x="3635" y="4585"/> + <Point x="3633" y="4586"/> + <Point x="3619" y="4586"/> + <Point x="3615" y="4595"/> + <Point x="3598" y="4595"/> + <Point x="3580" y="4588"/> + <Point x="3569" y="4588"/> + <Point x="3567" y="4587"/> + <Point x="3559" y="4587"/> + <Point x="3541" y="4589"/> + <Point x="3495" y="4589"/> + <Point x="3493" y="4590"/> + <Point x="3469" y="4590"/> + <Point x="3467" y="4591"/> + <Point x="3420" y="4591"/> + <Point x="3402" y="4602"/> + <Point x="3392" y="4603"/> + <Point x="3392" y="4638"/> + <Point x="3333" y="4638"/> + <Point x="3332" y="4639"/> + <Point x="3312" y="4639"/> + <Point x="3311" y="4640"/> + <Point x="3281" y="4640"/> + <Point x="3279" y="4641"/> + <Point x="3264" y="4641"/> + <Point x="3262" y="4640"/> + <Point x="3244" y="4640"/> + <Point x="3262" y="4640"/> + <Point x="3244" y="4640"/> + <Point x="3233" y="4642"/> + <Point x="3186" y="4642"/> + <Point x="3185" y="4644"/> + <Point x="3143" y="4644"/> + <Point x="3140" y="4645"/> + <Point x="3071" y="4645"/> + <Point x="3073" y="4645"/> + <Point x="2939" y="4648"/> + <Point x="2940" y="4619"/> + <Point x="2959" y="4603"/> + <Point x="2941" y="4603"/> + <Point x="2938" y="4600"/> + <Point x="2938" y="4528"/> + <Point x="2955" y="4514"/> + <Point x="2940" y="4514"/> + <Point x="2937" y="4511"/> + <Point x="2937" y="4492"/> + <Point x="2953" y="4469"/> + <Point x="2939" y="4469"/> + <Point x="2936" y="4466"/> + <Point x="2936" y="4439"/> + <Point x="2950" y="4425"/> + <Point x="2938" y="4425"/> + <Point x="2935" y="4422"/> + <Point x="2935" y="4359"/> + <Point x="2938" y="4333"/> + <Point x="2938" y="4305"/> + <Point x="2946" y="4291"/> + <Point x="2937" y="4293"/> + <Point x="2935" y="4288"/> + <Point x="2935" y="4216"/> + <Point x="2936" y="4198"/> + <Point x="2936" y="4180"/> + <Point x="2951" y="4157"/> + <Point x="2936" y="4157"/> + <Point x="2933" y="4154"/> + <Point x="2933" y="4135"/> + <Point x="2945" y="4112"/> + <Point x="2933" y="4112"/> + <Point x="2929" y="4109"/> + <Point x="2929" y="4036"/> + <Point x="2951" y="4031"/> + <Point x="2933" y="4031"/> + <Point x="2929" y="4028"/> + <Point x="2929" y="3998"/> + <Point x="2953" y="3979"/> + <Point x="2928" y="3977"/> + <Point x="2928" y="3905"/> + <Point x="2949" y="3901"/> + <Point x="2928" y="3902"/> + <Point x="2928" y="3867"/> + <Point x="2961" y="3867"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>It is a strange claim, this assumption of clerical +property in corpses. The connection is not obvious +between a cure of souls and a poll‑tax on carcases. +The Romish priest, granting his doctrine, is properly +paid for praying a spirit out of purgatory, but the +Protestant priest is paid when he does not even pray +the body of his parishioner into the grave. He sits +at ease in his parsonage, over his wine, and becomes +entitled, by the mere fact of his existence, to his +five shillings, if he is within five miles of a funeral +in Highgate Cemetery; or if he be a Dr. SPRY, in +Marylebone, to his seven shillings and sixpence; +or to his ten shillings if within ten miles of Kensing‐ +ton. The involuntary relation of having been his +fleeced parishioner is extended beyond the boundary +of mortality; and this one species of grave plunder +flourishes as if Mr. WARBURTON’S Anatomy Bill +had never passed. The body snatcher is quelled, +but the fee snatcher flourishes.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r302" type="paragraph"> + <Coords> + <Point x="2966" y="4658"/> + <Point x="3017" y="4659"/> + <Point x="3019" y="4667"/> + <Point x="3047" y="4667"/> + <Point x="3047" y="4666"/> + <Point x="3062" y="4666"/> + <Point x="3091" y="4657"/> + <Point x="3099" y="4657"/> + <Point x="3107" y="4663"/> + <Point x="3114" y="4666"/> + <Point x="3136" y="4664"/> + <Point x="3158" y="4660"/> + <Point x="3164" y="4653"/> + <Point x="3174" y="4653"/> + <Point x="3176" y="4654"/> + <Point x="3193" y="4654"/> + <Point x="3213" y="4656"/> + <Point x="3225" y="4656"/> + <Point x="3225" y="4662"/> + <Point x="3241" y="4662"/> + <Point x="3258" y="4650"/> + <Point x="3277" y="4650"/> + <Point x="3279" y="4661"/> + <Point x="3293" y="4661"/> + <Point x="3313" y="4659"/> + <Point x="3348" y="4659"/> + <Point x="3368" y="4658"/> + <Point x="3416" y="4658"/> + <Point x="3418" y="4657"/> + <Point x="3452" y="4657"/> + <Point x="3473" y="4656"/> + <Point x="3502" y="4656"/> + <Point x="3521" y="4655"/> + <Point x="3536" y="4655"/> + <Point x="3538" y="4650"/> + <Point x="3546" y="4646"/> + <Point x="3551" y="4645"/> + <Point x="3567" y="4645"/> + <Point x="3569" y="4653"/> + <Point x="3596" y="4653"/> + <Point x="3613" y="4643"/> + <Point x="3623" y="4643"/> + <Point x="3626" y="4652"/> + <Point x="3666" y="4652"/> + <Point x="3683" y="4642"/> + <Point x="3695" y="4642"/> + <Point x="3697" y="4650"/> + <Point x="3713" y="4650"/> + <Point x="3697" y="4650"/> + <Point x="3713" y="4650"/> + <Point x="3716" y="4653"/> + <Point x="3716" y="4672"/> + <Point x="3713" y="4675"/> + <Point x="3697" y="4675"/> + <Point x="3713" y="4675"/> + <Point x="3687" y="4675"/> + <Point x="3719" y="4697"/> + <Point x="3719" y="4722"/> + <Point x="3701" y="4739"/> + <Point x="3715" y="4739"/> + <Point x="3701" y="4739"/> + <Point x="3715" y="4739"/> + <Point x="3718" y="4742"/> + <Point x="3718" y="4761"/> + <Point x="3703" y="4788"/> + <Point x="3714" y="4788"/> + <Point x="3703" y="4788"/> + <Point x="3714" y="4788"/> + <Point x="3717" y="4791"/> + <Point x="3717" y="4799"/> + <Point x="3714" y="4802"/> + <Point x="3703" y="4802"/> + <Point x="3714" y="4802"/> + <Point x="3703" y="4802"/> + <Point x="3719" y="4831"/> + <Point x="3719" y="4849"/> + <Point x="3716" y="4852"/> + <Point x="3700" y="4852"/> + <Point x="3716" y="4852"/> + <Point x="3700" y="4852"/> + <Point x="3717" y="4876"/> + <Point x="3717" y="4893"/> + <Point x="3707" y="4929"/> + <Point x="3715" y="4929"/> + <Point x="3707" y="4929"/> + <Point x="3715" y="4929"/> + <Point x="3718" y="4932"/> + <Point x="3718" y="4946"/> + <Point x="3715" y="4949"/> + <Point x="3707" y="4949"/> + <Point x="3715" y="4949"/> + <Point x="3707" y="4949"/> + <Point x="3720" y="4964"/> + <Point x="3720" y="5005"/> + <Point x="3712" y="5012"/> + <Point x="3722" y="5012"/> + <Point x="3722" y="5024"/> + <Point x="3707" y="5051"/> + <Point x="3718" y="5051"/> + <Point x="3707" y="5051"/> + <Point x="3718" y="5051"/> + <Point x="3721" y="5054"/> + <Point x="3721" y="5071"/> + <Point x="3718" y="5074"/> + <Point x="3707" y="5074"/> + <Point x="3718" y="5074"/> + <Point x="3707" y="5074"/> + <Point x="3722" y="5098"/> + <Point x="3722" y="5116"/> + <Point x="3707" y="5145"/> + <Point x="3720" y="5145"/> + <Point x="3707" y="5145"/> + <Point x="3720" y="5145"/> + <Point x="3723" y="5148"/> + <Point x="3723" y="5155"/> + <Point x="3711" y="5177"/> + <Point x="3720" y="5177"/> + <Point x="3711" y="5177"/> + <Point x="3720" y="5177"/> + <Point x="3723" y="5180"/> + <Point x="3723" y="5207"/> + <Point x="3720" y="5210"/> + <Point x="3711" y="5210"/> + <Point x="3720" y="5210"/> + <Point x="3711" y="5210"/> + <Point x="3724" y="5233"/> + <Point x="3724" y="5251"/> + <Point x="3714" y="5282"/> + <Point x="3720" y="5282"/> + <Point x="3714" y="5282"/> + <Point x="3720" y="5282"/> + <Point x="3723" y="5285"/> + <Point x="3723" y="5292"/> + <Point x="3720" y="5295"/> + <Point x="3714" y="5295"/> + <Point x="3720" y="5295"/> + <Point x="3714" y="5295"/> + <Point x="3725" y="5310"/> + <Point x="3725" y="5337"/> + <Point x="3714" y="5372"/> + <Point x="3722" y="5372"/> + <Point x="3714" y="5372"/> + <Point x="3722" y="5372"/> + <Point x="3725" y="5375"/> + <Point x="3725" y="5389"/> + <Point x="3722" y="5392"/> + <Point x="3714" y="5392"/> + <Point x="3722" y="5392"/> + <Point x="3714" y="5392"/> + <Point x="3725" y="5406"/> + <Point x="3725" y="5424"/> + <Point x="3723" y="5427"/> + <Point x="3712" y="5427"/> + <Point x="3723" y="5427"/> + <Point x="3712" y="5427"/> + <Point x="3727" y="5450"/> + <Point x="3727" y="5476"/> + <Point x="3708" y="5483"/> + <Point x="3725" y="5483"/> + <Point x="3708" y="5483"/> + <Point x="3728" y="5483"/> + <Point x="3728" y="5510"/> + <Point x="3713" y="5541"/> + <Point x="3725" y="5541"/> + <Point x="3713" y="5541"/> + <Point x="3728" y="5541"/> + <Point x="3728" y="5554"/> + <Point x="3713" y="5554"/> + <Point x="3725" y="5554"/> + <Point x="3713" y="5554"/> + <Point x="3730" y="5585"/> + <Point x="3730" y="5604"/> + <Point x="3712" y="5605"/> + <Point x="3709" y="5604"/> + <Point x="3694" y="5604"/> + <Point x="3691" y="5605"/> + <Point x="3637" y="5605"/> + <Point x="3633" y="5606"/> + <Point x="3618" y="5606"/> + <Point x="3616" y="5605"/> + <Point x="3609" y="5605"/> + <Point x="3607" y="5606"/> + <Point x="3569" y="5606"/> + <Point x="3566" y="5607"/> + <Point x="3533" y="5607"/> + <Point x="3510" y="5608"/> + <Point x="3484" y="5608"/> + <Point x="3481" y="5609"/> + <Point x="3468" y="5609"/> + <Point x="3470" y="5609"/> + <Point x="3456" y="5609"/> + <Point x="3437" y="5610"/> + <Point x="3423" y="5610"/> + <Point x="3420" y="5609"/> + <Point x="3404" y="5609"/> + <Point x="3403" y="5610"/> + <Point x="3371" y="5610"/> + <Point x="3371" y="5655"/> + <Point x="3356" y="5656"/> + <Point x="3347" y="5662"/> + <Point x="3333" y="5663"/> + <Point x="3325" y="5657"/> + <Point x="3295" y="5656"/> + <Point x="3292" y="5657"/> + <Point x="3279" y="5657"/> + <Point x="3277" y="5658"/> + <Point x="3235" y="5658"/> + <Point x="3233" y="5659"/> + <Point x="3220" y="5659"/> + <Point x="3203" y="5661"/> + <Point x="3189" y="5661"/> + <Point x="3187" y="5660"/> + <Point x="3171" y="5660"/> + <Point x="3170" y="5661"/> + <Point x="3138" y="5661"/> + <Point x="3135" y="5663"/> + <Point x="3120" y="5663"/> + <Point x="3107" y="5672"/> + <Point x="3090" y="5672"/> + <Point x="3083" y="5666"/> + <Point x="3068" y="5663"/> + <Point x="3067" y="5664"/> + <Point x="3027" y="5664"/> + <Point x="3026" y="5666"/> + <Point x="3010" y="5666"/> + <Point x="3008" y="5672"/> + <Point x="2986" y="5672"/> + <Point x="2983" y="5668"/> + <Point x="2974" y="5667"/> + <Point x="2971" y="5675"/> + <Point x="2952" y="5675"/> + <Point x="2952" y="5642"/> + <Point x="2965" y="5621"/> + <Point x="2954" y="5621"/> + <Point x="2950" y="5616"/> + <Point x="2950" y="5556"/> + <Point x="2966" y="5535"/> + <Point x="2953" y="5535"/> + <Point x="2949" y="5530"/> + <Point x="2949" y="5462"/> + <Point x="2978" y="5450"/> + <Point x="2952" y="5450"/> + <Point x="2949" y="5447"/> + <Point x="2947" y="5440"/> + <Point x="2947" y="5376"/> + <Point x="2957" y="5372"/> + <Point x="2961" y="5370"/> + <Point x="2974" y="5359"/> + <Point x="2971" y="5360"/> + <Point x="2948" y="5363"/> + <Point x="2946" y="5357"/> + <Point x="2946" y="5281"/> + <Point x="2965" y="5272"/> + <Point x="2948" y="5272"/> + <Point x="2945" y="5269"/> + <Point x="2945" y="5196"/> + <Point x="2959" y="5185"/> + <Point x="2947" y="5185"/> + <Point x="2944" y="5182"/> + <Point x="2943" y="5063"/> + <Point x="2958" y="5050"/> + <Point x="2946" y="5050"/> + <Point x="2942" y="5045"/> + <Point x="2942" y="4977"/> + <Point x="2958" y="4960"/> + <Point x="2945" y="4960"/> + <Point x="2942" y="4953"/> + <Point x="2942" y="4885"/> + <Point x="2953" y="4873"/> + <Point x="2941" y="4872"/> + <Point x="2939" y="4705"/> + <Point x="2966" y="4704"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>There is said to be no canon or other law in +England for the consecration of burial grounds; +and there is certainly no law of Christianity for the +mischiefs of which that ceremony (however becom‐ +ing in itself) is made the pretext. Hedges have to +be run up to part the graves of Dissenters from +those of Churchmen. Member, of the same family, +who have lived in harmony, and would repose +together notwithstanding their theological dif‐ +ferences, must be taken to separate chapels +and consigned to remote graves, unless they purchase +the unconscious neighbourhood by a sort of post‐ +humous apostacy. The sectarian spirit of clerical +domination kindles the torch of discord with the +last spark of vitality, and shakes it over the grave. +There are but two of the new cemeteries (Norwood +and Abney Park), and one of them unconsecrated, +in which Death makes no distinction, and the graves +intermingle of those who intermingled in living +society. How the consecration of the Norwood +ground escaped being also, like the rest, a desecra‐ +tion, does not appear. But the fact has aided the +popularity of the cemetery.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r303" type="paragraph"> + <Coords> + <Point x="2986" y="5677"/> + <Point x="3014" y="5678"/> + <Point x="3025" y="5685"/> + <Point x="3043" y="5685"/> + <Point x="3044" y="5684"/> + <Point x="3076" y="5684"/> + <Point x="3078" y="5683"/> + <Point x="3105" y="5683"/> + <Point x="3107" y="5682"/> + <Point x="3114" y="5676"/> + <Point x="3123" y="5673"/> + <Point x="3133" y="5673"/> + <Point x="3145" y="5681"/> + <Point x="3171" y="5681"/> + <Point x="3174" y="5680"/> + <Point x="3234" y="5680"/> + <Point x="3236" y="5679"/> + <Point x="3249" y="5679"/> + <Point x="3250" y="5678"/> + <Point x="3263" y="5678"/> + <Point x="3277" y="5677"/> + <Point x="3292" y="5677"/> + <Point x="3295" y="5667"/> + <Point x="3331" y="5667"/> + <Point x="3334" y="5675"/> + <Point x="3362" y="5672"/> + <Point x="3367" y="5665"/> + <Point x="3375" y="5665"/> + <Point x="3377" y="5675"/> + <Point x="3383" y="5672"/> + <Point x="3390" y="5665"/> + <Point x="3397" y="5665"/> + <Point x="3400" y="5674"/> + <Point x="3415" y="5674"/> + <Point x="3416" y="5668"/> + <Point x="3424" y="5665"/> + <Point x="3435" y="5665"/> + <Point x="3437" y="5674"/> + <Point x="3452" y="5674"/> + <Point x="3455" y="5673"/> + <Point x="3471" y="5673"/> + <Point x="3494" y="5664"/> + <Point x="3502" y="5664"/> + <Point x="3504" y="5672"/> + <Point x="3516" y="5672"/> + <Point x="3536" y="5663"/> + <Point x="3552" y="5663"/> + <Point x="3555" y="5671"/> + <Point x="3568" y="5671"/> + <Point x="3570" y="5670"/> + <Point x="3577" y="5666"/> + <Point x="3582" y="5661"/> + <Point x="3590" y="5661"/> + <Point x="3592" y="5670"/> + <Point x="3616" y="5669"/> + <Point x="3619" y="5657"/> + <Point x="3647" y="5657"/> + <Point x="3650" y="5669"/> + <Point x="3663" y="5669"/> + <Point x="3665" y="5680"/> + <Point x="3673" y="5680"/> + <Point x="3687" y="5668"/> + <Point x="3713" y="5668"/> + <Point x="3716" y="5674"/> + <Point x="3728" y="5674"/> + <Point x="3716" y="5674"/> + <Point x="3728" y="5674"/> + <Point x="3731" y="5677"/> + <Point x="3731" y="5684"/> + <Point x="3717" y="5718"/> + <Point x="3730" y="5718"/> + <Point x="3717" y="5718"/> + <Point x="3730" y="5718"/> + <Point x="3732" y="5721"/> + <Point x="3732" y="5740"/> + <Point x="3730" y="5743"/> + <Point x="3717" y="5743"/> + <Point x="3730" y="5743"/> + <Point x="3717" y="5743"/> + <Point x="3732" y="5759"/> + <Point x="3732" y="5778"/> + <Point x="3718" y="5799"/> + <Point x="3731" y="5799"/> + <Point x="3718" y="5799"/> + <Point x="3731" y="5799"/> + <Point x="3732" y="5802"/> + <Point x="3732" y="5821"/> + <Point x="3731" y="5824"/> + <Point x="3718" y="5824"/> + <Point x="3731" y="5824"/> + <Point x="3718" y="5824"/> + <Point x="3734" y="5846"/> + <Point x="3734" y="5875"/> + <Point x="3722" y="5886"/> + <Point x="3735" y="5886"/> + <Point x="3735" y="5914"/> + <Point x="3725" y="5944"/> + <Point x="3734" y="5944"/> + <Point x="3736" y="5948"/> + <Point x="3736" y="5959"/> + <Point x="3725" y="5963"/> + <Point x="3734" y="5976"/> + <Point x="3735" y="5984"/> + <Point x="3724" y="5996"/> + <Point x="3736" y="5995"/> + <Point x="3736" y="6027"/> + <Point x="3724" y="6028"/> + <Point x="3722" y="6030"/> + <Point x="3706" y="6030"/> + <Point x="3689" y="6029"/> + <Point x="3677" y="6029"/> + <Point x="3674" y="6030"/> + <Point x="3641" y="6030"/> + <Point x="3639" y="6029"/> + <Point x="3633" y="6029"/> + <Point x="3630" y="6040"/> + <Point x="3613" y="6040"/> + <Point x="3605" y="6032"/> + <Point x="3597" y="6031"/> + <Point x="3595" y="6032"/> + <Point x="3553" y="6032"/> + <Point x="3549" y="6033"/> + <Point x="3536" y="6033"/> + <Point x="3537" y="6033"/> + <Point x="3508" y="6033"/> + <Point x="3506" y="6034"/> + <Point x="3462" y="6034"/> + <Point x="3460" y="6044"/> + <Point x="3443" y="6044"/> + <Point x="3420" y="6036"/> + <Point x="3406" y="6036"/> + <Point x="3404" y="6035"/> + <Point x="3375" y="6035"/> + <Point x="3356" y="6037"/> + <Point x="3342" y="6037"/> + <Point x="3340" y="6038"/> + <Point x="3274" y="6038"/> + <Point x="3272" y="6039"/> + <Point x="3256" y="6039"/> + <Point x="3254" y="6040"/> + <Point x="3239" y="6040"/> + <Point x="3237" y="6039"/> + <Point x="3221" y="6039"/> + <Point x="3125" y="6046"/> + <Point x="3095" y="6082"/> + <Point x="3051" y="6082"/> + <Point x="3049" y="6083"/> + <Point x="3017" y="6083"/> + <Point x="3006" y="6084"/> + <Point x="2974" y="6084"/> + <Point x="2971" y="6085"/> + <Point x="2960" y="6085"/> + <Point x="2957" y="6082"/> + <Point x="2957" y="5990"/> + <Point x="2976" y="5974"/> + <Point x="2958" y="5974"/> + <Point x="2956" y="5971"/> + <Point x="2956" y="5865"/> + <Point x="2975" y="5851"/> + <Point x="2957" y="5851"/> + <Point x="2955" y="5848"/> + <Point x="2955" y="5820"/> + <Point x="2979" y="5799"/> + <Point x="2952" y="5794"/> + <Point x="2952" y="5730"/> + <Point x="2986" y="5730"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>A general measure of legislation is desirable, re‐ +pressing these clerical exactions, prohibiting funeral, +within the limits of the metropolis, giving public +pledge of the perpetuity of the sepulchral character +of grounds set apart for that purpose, and providing +against offensive demonstrations of the anti‑national +bigotry which (whether in the Church or out of it), +carries its paltry sectarian animosities and distine‐ +tions into what should be the peaceful region, of +the dead.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r306" type="paragraph"> + <Coords> + <Point x="3747" y="2638"/> + <Point x="3787" y="2638"/> + <Point x="3791" y="2645"/> + <Point x="3804" y="2645"/> + <Point x="3817" y="2633"/> + <Point x="3842" y="2633"/> + <Point x="3817" y="2633"/> + <Point x="3842" y="2633"/> + <Point x="3869" y="2638"/> + <Point x="3897" y="2638"/> + <Point x="3907" y="2631"/> + <Point x="3930" y="2631"/> + <Point x="3955" y="2640"/> + <Point x="3957" y="2638"/> + <Point x="3969" y="2638"/> + <Point x="3968" y="2638"/> + <Point x="4000" y="2628"/> + <Point x="4007" y="2628"/> + <Point x="4017" y="2637"/> + <Point x="4032" y="2637"/> + <Point x="4035" y="2636"/> + <Point x="4065" y="2636"/> + <Point x="4068" y="2630"/> + <Point x="4075" y="2630"/> + <Point x="4079" y="2634"/> + <Point x="4104" y="2634"/> + <Point x="4120" y="2632"/> + <Point x="4134" y="2632"/> + <Point x="4135" y="2624"/> + <Point x="4150" y="2624"/> + <Point x="4153" y="2632"/> + <Point x="4163" y="2632"/> + <Point x="4168" y="2623"/> + <Point x="4174" y="2623"/> + <Point x="4176" y="2630"/> + <Point x="4188" y="2630"/> + <Point x="4190" y="2629"/> + <Point x="4215" y="2629"/> + <Point x="4226" y="2621"/> + <Point x="4237" y="2621"/> + <Point x="4261" y="2628"/> + <Point x="4264" y="2627"/> + <Point x="4287" y="2627"/> + <Point x="4301" y="2618"/> + <Point x="4319" y="2618"/> + <Point x="4323" y="2625"/> + <Point x="4350" y="2625"/> + <Point x="4353" y="2624"/> + <Point x="4368" y="2624"/> + <Point x="4370" y="2623"/> + <Point x="4397" y="2623"/> + <Point x="4412" y="2613"/> + <Point x="4430" y="2613"/> + <Point x="4433" y="2622"/> + <Point x="4445" y="2622"/> + <Point x="4448" y="2621"/> + <Point x="4473" y="2621"/> + <Point x="4475" y="2620"/> + <Point x="4485" y="2620"/> + <Point x="4475" y="2620"/> + <Point x="4485" y="2620"/> + <Point x="4497" y="2624"/> + <Point x="4495" y="2655"/> + <Point x="4496" y="2659"/> + <Point x="4496" y="2674"/> + <Point x="4493" y="2677"/> + <Point x="4496" y="2683"/> + <Point x="4496" y="2708"/> + <Point x="4485" y="2713"/> + <Point x="4499" y="2713"/> + <Point x="4496" y="2745"/> + <Point x="4485" y="2745"/> + <Point x="4496" y="2745"/> + <Point x="4485" y="2745"/> + <Point x="4499" y="2758"/> + <Point x="4499" y="2776"/> + <Point x="4496" y="2807"/> + <Point x="4494" y="2810"/> + <Point x="4488" y="2810"/> + <Point x="4494" y="2810"/> + <Point x="4488" y="2810"/> + <Point x="4497" y="2831"/> + <Point x="4496" y="2847"/> + <Point x="4497" y="2853"/> + <Point x="4499" y="2878"/> + <Point x="4483" y="2888"/> + <Point x="4499" y="2888"/> + <Point x="4499" y="2911"/> + <Point x="4496" y="2921"/> + <Point x="4500" y="2921"/> + <Point x="4496" y="2968"/> + <Point x="4500" y="2986"/> + <Point x="4500" y="3008"/> + <Point x="4479" y="3008"/> + <Point x="4477" y="3009"/> + <Point x="4453" y="3009"/> + <Point x="4451" y="3010"/> + <Point x="4426" y="3010"/> + <Point x="4422" y="3043"/> + <Point x="4413" y="3044"/> + <Point x="4409" y="3043"/> + <Point x="4398" y="3043"/> + <Point x="4396" y="3045"/> + <Point x="4369" y="3045"/> + <Point x="4374" y="3054"/> + <Point x="4332" y="3054"/> + <Point x="4323" y="3049"/> + <Point x="4311" y="3049"/> + <Point x="4309" y="3047"/> + <Point x="4297" y="3047"/> + <Point x="4300" y="3055"/> + <Point x="4279" y="3055"/> + <Point x="4228" y="3049"/> + <Point x="4229" y="3050"/> + <Point x="4217" y="3050"/> + <Point x="4205" y="3056"/> + <Point x="4199" y="3056"/> + <Point x="4173" y="3051"/> + <Point x="4171" y="3052"/> + <Point x="4150" y="3052"/> + <Point x="4148" y="3053"/> + <Point x="4130" y="3053"/> + <Point x="4116" y="3054"/> + <Point x="4103" y="3054"/> + <Point x="4100" y="3055"/> + <Point x="4075" y="3055"/> + <Point x="4062" y="3056"/> + <Point x="4039" y="3056"/> + <Point x="4028" y="3064"/> + <Point x="4020" y="3064"/> + <Point x="4018" y="3059"/> + <Point x="3996" y="3059"/> + <Point x="3996" y="3058"/> + <Point x="3976" y="3058"/> + <Point x="3996" y="3058"/> + <Point x="3976" y="3058"/> + <Point x="3965" y="3064"/> + <Point x="3959" y="3064"/> + <Point x="3936" y="3059"/> + <Point x="3934" y="3060"/> + <Point x="3889" y="3060"/> + <Point x="3884" y="3057"/> + <Point x="3877" y="3057"/> + <Point x="3875" y="3062"/> + <Point x="3844" y="3062"/> + <Point x="3842" y="3069"/> + <Point x="3805" y="3069"/> + <Point x="3797" y="3063"/> + <Point x="3794" y="3064"/> + <Point x="3741" y="3064"/> + <Point x="3739" y="3065"/> + <Point x="3725" y="3065"/> + <Point x="3722" y="3062"/> + <Point x="3722" y="3044"/> + <Point x="3724" y="3029"/> + <Point x="3724" y="3003"/> + <Point x="3726" y="2994"/> + <Point x="3726" y="2970"/> + <Point x="3724" y="2964"/> + <Point x="3721" y="2961"/> + <Point x="3721" y="2903"/> + <Point x="3728" y="2898"/> + <Point x="3723" y="2898"/> + <Point x="3720" y="2897"/> + <Point x="3719" y="2872"/> + <Point x="3722" y="2806"/> + <Point x="3722" y="2802"/> + <Point x="3718" y="2801"/> + <Point x="3718" y="2763"/> + <Point x="3717" y="2742"/> + <Point x="3718" y="2734"/> + <Point x="3717" y="2680"/> + <Point x="3735" y="2680"/> + <Point x="3737" y="2672"/> + <Point x="3746" y="2672"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>The Havre Journal quotes advices from Buenos Ayres, +of 21st October, and from Montevideo, of 29th. At the +former place a considerable quantity of merchandize had +been introduced, notwithstanding the blockade. Most of +the French residents, who had been protected by the +British consul, were preparing to depart. Admiral +Mackau’s division had arrived at Montevideo, on the 25th, +in thirty‑one days from Goree. Preparations were making +first for a landing at Martin Garcia, and then for going up +to Buenos Ayres. It was said that a lieutenant of the +French navy had been put to death by Rosas, but no par- +ticulars were known. The total number of French vessels +of war, gun‑boats, &amp;c., in the Plata, were forty‑four.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r315" type="heading"> + <Coords> + <Point x="3988" y="3965"/> + <Point x="4027" y="3965"/> + <Point x="4028" y="3964"/> + <Point x="4057" y="3964"/> + <Point x="4057" y="3963"/> + <Point x="4102" y="3963"/> + <Point x="4106" y="3960"/> + <Point x="4245" y="3960"/> + <Point x="4245" y="3971"/> + <Point x="4253" y="3971"/> + <Point x="4253" y="3983"/> + <Point x="4188" y="3983"/> + <Point x="4033" y="3988"/> + <Point x="3986" y="3988"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>RAILWAY SHARES.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r322" type="heading"> + <Coords> + <Point x="3981" y="4150"/> + <Point x="4014" y="4150"/> + <Point x="4024" y="4151"/> + <Point x="4034" y="4149"/> + <Point x="4091" y="4149"/> + <Point x="4094" y="4148"/> + <Point x="4141" y="4148"/> + <Point x="4142" y="4145"/> + <Point x="4259" y="4144"/> + <Point x="4258" y="4158"/> + <Point x="4267" y="4158"/> + <Point x="4267" y="4170"/> + <Point x="4199" y="4170"/> + <Point x="4182" y="4172"/> + <Point x="3981" y="4177"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>FOR THE ACCOUNT.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r370" type="paragraph"> + <Coords> + <Point x="3771" y="4322"/> + <Point x="3798" y="4322"/> + <Point x="3802" y="4331"/> + <Point x="3817" y="4331"/> + <Point x="3820" y="4330"/> + <Point x="3832" y="4330"/> + <Point x="3843" y="4321"/> + <Point x="3851" y="4321"/> + <Point x="3854" y="4329"/> + <Point x="3869" y="4329"/> + <Point x="3871" y="4324"/> + <Point x="3881" y="4324"/> + <Point x="3882" y="4329"/> + <Point x="3895" y="4329"/> + <Point x="3898" y="4328"/> + <Point x="3909" y="4328"/> + <Point x="3911" y="4324"/> + <Point x="3921" y="4324"/> + <Point x="3932" y="4319"/> + <Point x="3960" y="4319"/> + <Point x="3965" y="4327"/> + <Point x="3979" y="4327"/> + <Point x="3981" y="4317"/> + <Point x="4038" y="4317"/> + <Point x="4048" y="4316"/> + <Point x="4057" y="4316"/> + <Point x="4074" y="4318"/> + <Point x="4088" y="4319"/> + <Point x="4096" y="4319"/> + <Point x="4097" y="4323"/> + <Point x="4126" y="4323"/> + <Point x="4126" y="4322"/> + <Point x="4137" y="4322"/> + <Point x="4150" y="4321"/> + <Point x="4166" y="4321"/> + <Point x="4166" y="4322"/> + <Point x="4179" y="4322"/> + <Point x="4180" y="4321"/> + <Point x="4221" y="4321"/> + <Point x="4223" y="4311"/> + <Point x="4236" y="4311"/> + <Point x="4249" y="4314"/> + <Point x="4262" y="4310"/> + <Point x="4278" y="4310"/> + <Point x="4280" y="4318"/> + <Point x="4294" y="4318"/> + <Point x="4307" y="4310"/> + <Point x="4341" y="4310"/> + <Point x="4343" y="4308"/> + <Point x="4359" y="4308"/> + <Point x="4373" y="4316"/> + <Point x="4390" y="4307"/> + <Point x="4399" y="4307"/> + <Point x="4403" y="4310"/> + <Point x="4412" y="4310"/> + <Point x="4415" y="4327"/> + <Point x="4422" y="4327"/> + <Point x="4425" y="4326"/> + <Point x="4433" y="4326"/> + <Point x="4447" y="4315"/> + <Point x="4472" y="4304"/> + <Point x="4482" y="4304"/> + <Point x="4484" y="4311"/> + <Point x="4490" y="4311"/> + <Point x="4492" y="4304"/> + <Point x="4514" y="4304"/> + <Point x="4515" y="4337"/> + <Point x="4494" y="4337"/> + <Point x="4490" y="4338"/> + <Point x="4473" y="4338"/> + <Point x="4470" y="4339"/> + <Point x="4447" y="4339"/> + <Point x="4433" y="4348"/> + <Point x="4425" y="4348"/> + <Point x="4415" y="4341"/> + <Point x="4412" y="4340"/> + <Point x="4390" y="4340"/> + <Point x="4390" y="4341"/> + <Point x="4326" y="4341"/> + <Point x="4324" y="4342"/> + <Point x="4307" y="4342"/> + <Point x="4294" y="4343"/> + <Point x="4262" y="4343"/> + <Point x="4260" y="4344"/> + <Point x="4249" y="4344"/> + <Point x="4236" y="4345"/> + <Point x="4206" y="4345"/> + <Point x="4194" y="4346"/> + <Point x="4150" y="4346"/> + <Point x="4137" y="4347"/> + <Point x="4126" y="4347"/> + <Point x="4126" y="4348"/> + <Point x="4073" y="4348"/> + <Point x="4072" y="4349"/> + <Point x="4048" y="4349"/> + <Point x="4038" y="4350"/> + <Point x="3981" y="4350"/> + <Point x="3979" y="4351"/> + <Point x="3965" y="4351"/> + <Point x="3960" y="4352"/> + <Point x="3902" y="4352"/> + <Point x="3904" y="4399"/> + <Point x="3737" y="4399"/> + <Point x="3737" y="4368"/> + <Point x="3749" y="4368"/> + <Point x="3752" y="4367"/> + <Point x="3759" y="4367"/> + <Point x="3761" y="4371"/> + <Point x="3771" y="4371"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>Our latest Madrid letters are of the 22d ult., with +little news.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r371" type="paragraph"> + <Coords> + <Point x="3774" y="4411"/> + <Point x="3799" y="4411"/> + <Point x="3801" y="4418"/> + <Point x="3812" y="4421"/> + <Point x="3813" y="4420"/> + <Point x="3856" y="4420"/> + <Point x="3876" y="4409"/> + <Point x="3901" y="4409"/> + <Point x="3905" y="4418"/> + <Point x="3920" y="4418"/> + <Point x="3922" y="4408"/> + <Point x="3929" y="4408"/> + <Point x="3933" y="4417"/> + <Point x="3980" y="4417"/> + <Point x="3982" y="4416"/> + <Point x="3995" y="4416"/> + <Point x="3997" y="4415"/> + <Point x="4029" y="4415"/> + <Point x="4052" y="4414"/> + <Point x="4076" y="4414"/> + <Point x="4078" y="4413"/> + <Point x="4092" y="4413"/> + <Point x="4114" y="4403"/> + <Point x="4122" y="4403"/> + <Point x="4125" y="4412"/> + <Point x="4168" y="4412"/> + <Point x="4171" y="4411"/> + <Point x="4186" y="4411"/> + <Point x="4211" y="4405"/> + <Point x="4224" y="4400"/> + <Point x="4240" y="4400"/> + <Point x="4243" y="4409"/> + <Point x="4257" y="4409"/> + <Point x="4260" y="4403"/> + <Point x="4270" y="4403"/> + <Point x="4293" y="4408"/> + <Point x="4309" y="4408"/> + <Point x="4311" y="4407"/> + <Point x="4327" y="4407"/> + <Point x="4348" y="4401"/> + <Point x="4360" y="4396"/> + <Point x="4377" y="4396"/> + <Point x="4379" y="4405"/> + <Point x="4393" y="4405"/> + <Point x="4415" y="4396"/> + <Point x="4457" y="4392"/> + <Point x="4515" y="4392"/> + <Point x="4515" y="4560"/> + <Point x="4482" y="4560"/> + <Point x="4480" y="4561"/> + <Point x="4469" y="4561"/> + <Point x="4457" y="4562"/> + <Point x="4446" y="4562"/> + <Point x="4445" y="4561"/> + <Point x="4410" y="4561"/> + <Point x="4409" y="4563"/> + <Point x="4369" y="4563"/> + <Point x="4366" y="4564"/> + <Point x="4340" y="4564"/> + <Point x="4338" y="4566"/> + <Point x="4323" y="4566"/> + <Point x="4320" y="4575"/> + <Point x="4303" y="4575"/> + <Point x="4301" y="4576"/> + <Point x="4285" y="4576"/> + <Point x="4277" y="4614"/> + <Point x="4254" y="4614"/> + <Point x="4251" y="4613"/> + <Point x="4226" y="4613"/> + <Point x="4224" y="4614"/> + <Point x="4210" y="4614"/> + <Point x="4212" y="4614"/> + <Point x="4199" y="4614"/> + <Point x="4184" y="4623"/> + <Point x="4170" y="4623"/> + <Point x="4151" y="4615"/> + <Point x="4140" y="4616"/> + <Point x="4096" y="4616"/> + <Point x="4094" y="4617"/> + <Point x="4080" y="4617"/> + <Point x="4077" y="4618"/> + <Point x="4029" y="4618"/> + <Point x="4028" y="4619"/> + <Point x="4012" y="4619"/> + <Point x="4010" y="4620"/> + <Point x="3970" y="4620"/> + <Point x="3968" y="4621"/> + <Point x="3930" y="4621"/> + <Point x="3928" y="4622"/> + <Point x="3741" y="4624"/> + <Point x="3741" y="4603"/> + <Point x="3763" y="4579"/> + <Point x="3738" y="4579"/> + <Point x="3738" y="4465"/> + <Point x="3772" y="4465"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>From Guipuscoa we learn that on the 14th a +commission reached Aspeitia in order to make an +inventory of the effects of the Convent of Loyola. +The order was resisted; and it is supposed that the +convent must be evacuated by force.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r372" type="paragraph"> + <Coords> + <Point x="3774" y="4670"/> + <Point x="3802" y="4670"/> + <Point x="3803" y="4680"/> + <Point x="3830" y="4680"/> + <Point x="3833" y="4679"/> + <Point x="3859" y="4679"/> + <Point x="3882" y="4673"/> + <Point x="3895" y="4669"/> + <Point x="3911" y="4669"/> + <Point x="3913" y="4677"/> + <Point x="3927" y="4677"/> + <Point x="3951" y="4668"/> + <Point x="3968" y="4668"/> + <Point x="3972" y="4667"/> + <Point x="3977" y="4667"/> + <Point x="3980" y="4675"/> + <Point x="3991" y="4675"/> + <Point x="3992" y="4674"/> + <Point x="4005" y="4674"/> + <Point x="4008" y="4675"/> + <Point x="4023" y="4675"/> + <Point x="4025" y="4674"/> + <Point x="4037" y="4674"/> + <Point x="4037" y="4673"/> + <Point x="4051" y="4665"/> + <Point x="4058" y="4665"/> + <Point x="4060" y="4673"/> + <Point x="4094" y="4673"/> + <Point x="4117" y="4672"/> + <Point x="4133" y="4672"/> + <Point x="4135" y="4663"/> + <Point x="4145" y="4663"/> + <Point x="4179" y="4662"/> + <Point x="4197" y="4662"/> + <Point x="4198" y="4670"/> + <Point x="4212" y="4670"/> + <Point x="4231" y="4661"/> + <Point x="4240" y="4661"/> + <Point x="4241" y="4669"/> + <Point x="4256" y="4669"/> + <Point x="4258" y="4668"/> + <Point x="4291" y="4668"/> + <Point x="4311" y="4658"/> + <Point x="4320" y="4658"/> + <Point x="4322" y="4667"/> + <Point x="4339" y="4667"/> + <Point x="4360" y="4661"/> + <Point x="4373" y="4657"/> + <Point x="4389" y="4657"/> + <Point x="4391" y="4665"/> + <Point x="4405" y="4665"/> + <Point x="4423" y="4654"/> + <Point x="4452" y="4654"/> + <Point x="4454" y="4664"/> + <Point x="4470" y="4664"/> + <Point x="4471" y="4657"/> + <Point x="4481" y="4657"/> + <Point x="4483" y="4663"/> + <Point x="4492" y="4663"/> + <Point x="4494" y="4653"/> + <Point x="4516" y="4653"/> + <Point x="4516" y="4683"/> + <Point x="4517" y="4717"/> + <Point x="4517" y="4748"/> + <Point x="4519" y="4753"/> + <Point x="4519" y="4777"/> + <Point x="4484" y="4777"/> + <Point x="4483" y="4778"/> + <Point x="4449" y="4778"/> + <Point x="4447" y="4779"/> + <Point x="4432" y="4779"/> + <Point x="4433" y="4779"/> + <Point x="4421" y="4779"/> + <Point x="4404" y="4780"/> + <Point x="4388" y="4780"/> + <Point x="4386" y="4781"/> + <Point x="4360" y="4781"/> + <Point x="4356" y="4780"/> + <Point x="4349" y="4780"/> + <Point x="4347" y="4781"/> + <Point x="4329" y="4790"/> + <Point x="4313" y="4790"/> + <Point x="4311" y="4782"/> + <Point x="4297" y="4782"/> + <Point x="4297" y="4783"/> + <Point x="4284" y="4783"/> + <Point x="4264" y="4784"/> + <Point x="4220" y="4784"/> + <Point x="4200" y="4785"/> + <Point x="4169" y="4785"/> + <Point x="4167" y="4787"/> + <Point x="4153" y="4787"/> + <Point x="4151" y="4785"/> + <Point x="4143" y="4785"/> + <Point x="4141" y="4786"/> + <Point x="4133" y="4786"/> + <Point x="4132" y="4787"/> + <Point x="4122" y="4787"/> + <Point x="4120" y="4786"/> + <Point x="4113" y="4786"/> + <Point x="4111" y="4787"/> + <Point x="4039" y="4787"/> + <Point x="4039" y="4833"/> + <Point x="4016" y="4834"/> + <Point x="4014" y="4833"/> + <Point x="3982" y="4833"/> + <Point x="3978" y="4834"/> + <Point x="3963" y="4834"/> + <Point x="3950" y="4835"/> + <Point x="3918" y="4835"/> + <Point x="3917" y="4836"/> + <Point x="3885" y="4836"/> + <Point x="3883" y="4837"/> + <Point x="3868" y="4837"/> + <Point x="3856" y="4838"/> + <Point x="3832" y="4838"/> + <Point x="3829" y="4839"/> + <Point x="3788" y="4839"/> + <Point x="3787" y="4840"/> + <Point x="3743" y="4840"/> + <Point x="3743" y="4773"/> + <Point x="3766" y="4751"/> + <Point x="3741" y="4751"/> + <Point x="3741" y="4717"/> + <Point x="3766" y="4717"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>From the discussion of the loan in the Dutch +Chambers, it appears that out of a revenue of 52 +millions of florins, 40 millions are required for the +interest of the debt.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r373" type="paragraph"> + <Coords> + <Point x="3776" y="4886"/> + <Point x="3819" y="4886"/> + <Point x="3821" y="4894"/> + <Point x="3835" y="4894"/> + <Point x="3859" y="4884"/> + <Point x="3884" y="4884"/> + <Point x="3904" y="4883"/> + <Point x="3924" y="4883"/> + <Point x="3925" y="4891"/> + <Point x="3939" y="4891"/> + <Point x="3964" y="4890"/> + <Point x="3980" y="4890"/> + <Point x="3981" y="4881"/> + <Point x="4043" y="4881"/> + <Point x="4045" y="4888"/> + <Point x="4085" y="4888"/> + <Point x="4087" y="4887"/> + <Point x="4126" y="4887"/> + <Point x="4129" y="4886"/> + <Point x="4192" y="4886"/> + <Point x="4224" y="4877"/> + <Point x="4240" y="4877"/> + <Point x="4243" y="4884"/> + <Point x="4270" y="4884"/> + <Point x="4296" y="4883"/> + <Point x="4314" y="4883"/> + <Point x="4315" y="4882"/> + <Point x="4364" y="4882"/> + <Point x="4383" y="4875"/> + <Point x="4395" y="4875"/> + <Point x="4395" y="4881"/> + <Point x="4412" y="4881"/> + <Point x="4440" y="4880"/> + <Point x="4452" y="4880"/> + <Point x="4453" y="4874"/> + <Point x="4464" y="4874"/> + <Point x="4467" y="4880"/> + <Point x="4482" y="4880"/> + <Point x="4484" y="4870"/> + <Point x="4501" y="4870"/> + <Point x="4503" y="4880"/> + <Point x="4517" y="4880"/> + <Point x="4503" y="4880"/> + <Point x="4520" y="4880"/> + <Point x="4520" y="4910"/> + <Point x="4524" y="4964"/> + <Point x="4526" y="4967"/> + <Point x="4525" y="4998"/> + <Point x="4526" y="5002"/> + <Point x="4528" y="5072"/> + <Point x="4528" y="5154"/> + <Point x="4481" y="5154"/> + <Point x="4460" y="5155"/> + <Point x="4418" y="5155"/> + <Point x="4415" y="5156"/> + <Point x="4402" y="5156"/> + <Point x="4399" y="5163"/> + <Point x="4385" y="5163"/> + <Point x="4373" y="5156"/> + <Point x="4371" y="5157"/> + <Point x="4314" y="5157"/> + <Point x="4295" y="5163"/> + <Point x="4289" y="5163"/> + <Point x="4260" y="5158"/> + <Point x="4258" y="5160"/> + <Point x="4244" y="5160"/> + <Point x="4241" y="5159"/> + <Point x="4217" y="5159"/> + <Point x="4214" y="5160"/> + <Point x="4172" y="5160"/> + <Point x="4169" y="5161"/> + <Point x="4149" y="5161"/> + <Point x="4129" y="5162"/> + <Point x="4087" y="5162"/> + <Point x="4071" y="5163"/> + <Point x="4056" y="5163"/> + <Point x="4054" y="5164"/> + <Point x="4048" y="5164"/> + <Point x="4024" y="5165"/> + <Point x="3997" y="5165"/> + <Point x="3994" y="5166"/> + <Point x="3951" y="5166"/> + <Point x="3949" y="5167"/> + <Point x="3878" y="5167"/> + <Point x="3874" y="5211"/> + <Point x="3749" y="5214"/> + <Point x="3751" y="5186"/> + <Point x="3772" y="5171"/> + <Point x="3748" y="5171"/> + <Point x="3748" y="5139"/> + <Point x="3764" y="5130"/> + <Point x="3750" y="5130"/> + <Point x="3747" y="5127"/> + <Point x="3747" y="5110"/> + <Point x="3749" y="5085"/> + <Point x="3747" y="5059"/> + <Point x="3763" y="5047"/> + <Point x="3749" y="5047"/> + <Point x="3744" y="5046"/> + <Point x="3745" y="5025"/> + <Point x="3755" y="5008"/> + <Point x="3743" y="5008"/> + <Point x="3743" y="4938"/> + <Point x="3774" y="4938"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>The Duke of BORDEAUX has gone to study +naval science and affairs in the Arsenal of Venice! This +is no joke. The Augsburg Gazette says so. The last of +a dying race taking lessons in an extinct arsenal! The +Prince de JOINVILLE and the crew of the Belle Poule +ought to shudder at the prospect of seeing the Duke of +BORDEAUX sail out in the Bucentaur, to espouse the +Adriatic!</Unicode></TextEquiv></TextRegion> + <TextRegion id="r374" type="paragraph"> + <Coords> + <Point x="3782" y="5224"/> + <Point x="3809" y="5224"/> + <Point x="3827" y="5231"/> + <Point x="3831" y="5230"/> + <Point x="3867" y="5230"/> + <Point x="3869" y="5229"/> + <Point x="3882" y="5229"/> + <Point x="3886" y="5228"/> + <Point x="3927" y="5228"/> + <Point x="3930" y="5227"/> + <Point x="3967" y="5227"/> + <Point x="3970" y="5226"/> + <Point x="3991" y="5226"/> + <Point x="4038" y="5217"/> + <Point x="4059" y="5217"/> + <Point x="4061" y="5216"/> + <Point x="4078" y="5216"/> + <Point x="4079" y="5224"/> + <Point x="4094" y="5224"/> + <Point x="4117" y="5223"/> + <Point x="4129" y="5223"/> + <Point x="4130" y="5218"/> + <Point x="4141" y="5218"/> + <Point x="4141" y="5223"/> + <Point x="4155" y="5223"/> + <Point x="4157" y="5222"/> + <Point x="4200" y="5222"/> + <Point x="4203" y="5228"/> + <Point x="4213" y="5228"/> + <Point x="4217" y="5222"/> + <Point x="4248" y="5222"/> + <Point x="4250" y="5221"/> + <Point x="4261" y="5221"/> + <Point x="4262" y="5220"/> + <Point x="4275" y="5220"/> + <Point x="4274" y="5221"/> + <Point x="4290" y="5211"/> + <Point x="4346" y="5211"/> + <Point x="4348" y="5219"/> + <Point x="4364" y="5219"/> + <Point x="4366" y="5218"/> + <Point x="4398" y="5218"/> + <Point x="4402" y="5229"/> + <Point x="4409" y="5229"/> + <Point x="4432" y="5207"/> + <Point x="4468" y="5207"/> + <Point x="4467" y="5216"/> + <Point x="4499" y="5216"/> + <Point x="4502" y="5211"/> + <Point x="4512" y="5211"/> + <Point x="4502" y="5211"/> + <Point x="4529" y="5211"/> + <Point x="4527" y="5246"/> + <Point x="4527" y="5296"/> + <Point x="4528" y="5330"/> + <Point x="4527" y="5415"/> + <Point x="4527" y="5432"/> + <Point x="4513" y="5444"/> + <Point x="4527" y="5444"/> + <Point x="4513" y="5444"/> + <Point x="4527" y="5444"/> + <Point x="4530" y="5447"/> + <Point x="4530" y="5464"/> + <Point x="4528" y="5487"/> + <Point x="4528" y="5528"/> + <Point x="4529" y="5556"/> + <Point x="4529" y="5563"/> + <Point x="4530" y="5587"/> + <Point x="4530" y="5597"/> + <Point x="4527" y="5600"/> + <Point x="4522" y="5600"/> + <Point x="4527" y="5600"/> + <Point x="4522" y="5600"/> + <Point x="4532" y="5608"/> + <Point x="4532" y="5626"/> + <Point x="4531" y="5642"/> + <Point x="4531" y="5659"/> + <Point x="4519" y="5672"/> + <Point x="4530" y="5672"/> + <Point x="4519" y="5672"/> + <Point x="4530" y="5672"/> + <Point x="4533" y="5675"/> + <Point x="4533" y="5692"/> + <Point x="4530" y="5695"/> + <Point x="4519" y="5695"/> + <Point x="4530" y="5695"/> + <Point x="4519" y="5695"/> + <Point x="4532" y="5709"/> + <Point x="4532" y="5733"/> + <Point x="4520" y="5745"/> + <Point x="4527" y="5745"/> + <Point x="4520" y="5745"/> + <Point x="4527" y="5745"/> + <Point x="4530" y="5748"/> + <Point x="4530" y="5754"/> + <Point x="4522" y="5781"/> + <Point x="4526" y="5781"/> + <Point x="4522" y="5781"/> + <Point x="4526" y="5781"/> + <Point x="4529" y="5784"/> + <Point x="4529" y="5790"/> + <Point x="4526" y="5814"/> + <Point x="4532" y="5814"/> + <Point x="4526" y="5814"/> + <Point x="4532" y="5814"/> + <Point x="4535" y="5817"/> + <Point x="4535" y="5829"/> + <Point x="4532" y="5832"/> + <Point x="4526" y="5832"/> + <Point x="4532" y="5832"/> + <Point x="4526" y="5832"/> + <Point x="4534" y="5847"/> + <Point x="4534" y="5853"/> + <Point x="4531" y="5856"/> + <Point x="4522" y="5856"/> + <Point x="4531" y="5856"/> + <Point x="4522" y="5856"/> + <Point x="4536" y="5867"/> + <Point x="4536" y="5889"/> + <Point x="4528" y="5915"/> + <Point x="4533" y="5915"/> + <Point x="4528" y="5915"/> + <Point x="4533" y="5915"/> + <Point x="4536" y="5918"/> + <Point x="4536" y="5925"/> + <Point x="4533" y="5928"/> + <Point x="4528" y="5928"/> + <Point x="4533" y="5928"/> + <Point x="4528" y="5928"/> + <Point x="4537" y="5940"/> + <Point x="4537" y="5956"/> + <Point x="4534" y="5959"/> + <Point x="4524" y="5959"/> + <Point x="4534" y="5959"/> + <Point x="4524" y="5959"/> + <Point x="4521" y="5958"/> + <Point x="4516" y="5958"/> + <Point x="4537" y="5973"/> + <Point x="4537" y="5996"/> + <Point x="4538" y="5999"/> + <Point x="4540" y="6023"/> + <Point x="4529" y="6047"/> + <Point x="4535" y="6047"/> + <Point x="4529" y="6047"/> + <Point x="4535" y="6047"/> + <Point x="4538" y="6050"/> + <Point x="4538" y="6057"/> + <Point x="4541" y="6061"/> + <Point x="4542" y="6086"/> + <Point x="4541" y="6171"/> + <Point x="4541" y="6242"/> + <Point x="4543" y="6375"/> + <Point x="4501" y="6374"/> + <Point x="4496" y="6380"/> + <Point x="4452" y="6381"/> + <Point x="4452" y="6375"/> + <Point x="4393" y="6376"/> + <Point x="4388" y="6382"/> + <Point x="4376" y="6382"/> + <Point x="4376" y="6376"/> + <Point x="4341" y="6377"/> + <Point x="4288" y="6378"/> + <Point x="4282" y="6386"/> + <Point x="4272" y="6386"/> + <Point x="4271" y="6379"/> + <Point x="4130" y="6383"/> + <Point x="4125" y="6388"/> + <Point x="4118" y="6389"/> + <Point x="4116" y="6383"/> + <Point x="3965" y="6389"/> + <Point x="3871" y="6392"/> + <Point x="3867" y="6400"/> + <Point x="3856" y="6400"/> + <Point x="3855" y="6391"/> + <Point x="3764" y="6396"/> + <Point x="3762" y="6241"/> + <Point x="3760" y="6081"/> + <Point x="3760" y="6074"/> + <Point x="3759" y="6059"/> + <Point x="3777" y="6044"/> + <Point x="3764" y="6044"/> + <Point x="3761" y="6041"/> + <Point x="3761" y="5983"/> + <Point x="3779" y="5977"/> + <Point x="3763" y="5977"/> + <Point x="3760" y="5974"/> + <Point x="3760" y="5925"/> + <Point x="3785" y="5912"/> + <Point x="3762" y="5912"/> + <Point x="3759" y="5909"/> + <Point x="3759" y="5817"/> + <Point x="3783" y="5812"/> + <Point x="3760" y="5812"/> + <Point x="3757" y="5809"/> + <Point x="3757" y="5728"/> + <Point x="3773" y="5715"/> + <Point x="3759" y="5715"/> + <Point x="3756" y="5712"/> + <Point x="3756" y="5688"/> + <Point x="3758" y="5681"/> + <Point x="3755" y="5678"/> + <Point x="3755" y="5654"/> + <Point x="3757" y="5648"/> + <Point x="3754" y="5645"/> + <Point x="3754" y="5596"/> + <Point x="3756" y="5583"/> + <Point x="3753" y="5580"/> + <Point x="3753" y="5555"/> + <Point x="3755" y="5550"/> + <Point x="3753" y="5547"/> + <Point x="3753" y="5497"/> + <Point x="3767" y="5484"/> + <Point x="3751" y="5484"/> + <Point x="3753" y="5360"/> + <Point x="3750" y="5352"/> + <Point x="3749" y="5260"/> + <Point x="3773" y="5260"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>PORTSMOUTH.—The steam‑vessel Avon, Lieut. +PRITCHARD, has passed on to Sheerness from Plymouth +with men for the Monarch, 84, and Vernon, 50, at Sheer- +ness. The Inconstant, 36, Captain PRING, has arrived at +Plymouth, from Cork, with volunteer seamen for general +service. Tne Vindictive, a fine frigate, to mount upwards +of 50 guns, is preparing here with every despatch for +commission; and at Plymouth also are two more of the +same class bringing forward, namely, the Portland, 50, +and America, 50. The greatest despatch is used +here in the equipment of the St. Vincent, 120. +a three‑decker of the largest class; she is getting rigged, +and otherwise fitting for sea. The pendant will be +hoisted in about a month. The Vengeance, 84, is in the +basin, rigged and masted, and only waiting orders for +commission. The Driver, a new steam‑ship, recently +launched here, is in dock preparing for immediate com- +mission. She is intended for the Mediterranean. +The Impregnable, 104, Captain THOMAS FORREST, C. B., +and Belleisle, 78, Captain TOUP NICOLAS, are in Ply- +mouth Sound, where they will complete their crews and +sea stores. They will not proceed to the Mediterranean, +however, for some time. The Indus, 84, Captain Sir +JAMES STIRLING, and Tweed, 29, Commander DOUGLAS, +are alougside their respective hulks, fitting out. Both +ships will be ready for sea about the 25th of January. +The above are the only ships equipping here, but orders +are daily looked for to commission several more. The +steam frigate Phœnix is rapidly refitting in the harbour, +to return to the Mediterranean. There is no commander +yet appointed to her. It is expected that she will pro- +ceed about the 5th of January. The Apollo and Athol, +troop ships, are nearly ready for sea. They will go to +Cork to transfer troops, the 42d Regiment, thence to the +Ionian Islands. The Neptune, 120, is to be overhauled +at this port for commission, if necessary.—Brighton paper.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r385" type="paragraph"> + <Coords> + <Point x="2220" y="7495"/> + <Point x="2247" y="7495"/> + <Point x="2251" y="7496"/> + <Point x="2266" y="7496"/> + <Point x="2269" y="7505"/> + <Point x="2282" y="7505"/> + <Point x="2294" y="7496"/> + <Point x="2301" y="7496"/> + <Point x="2305" y="7504"/> + <Point x="2320" y="7504"/> + <Point x="2322" y="7498"/> + <Point x="2331" y="7498"/> + <Point x="2333" y="7504"/> + <Point x="2347" y="7504"/> + <Point x="2359" y="7503"/> + <Point x="2375" y="7503"/> + <Point x="2376" y="7497"/> + <Point x="2399" y="7497"/> + <Point x="2398" y="7502"/> + <Point x="2415" y="7502"/> + <Point x="2417" y="7503"/> + <Point x="2423" y="7499"/> + <Point x="2430" y="7491"/> + <Point x="2481" y="7491"/> + <Point x="2485" y="7502"/> + <Point x="2500" y="7502"/> + <Point x="2514" y="7497"/> + <Point x="2521" y="7494"/> + <Point x="2525" y="7493"/> + <Point x="2542" y="7493"/> + <Point x="2544" y="7502"/> + <Point x="2557" y="7502"/> + <Point x="2569" y="7491"/> + <Point x="2592" y="7491"/> + <Point x="2592" y="7492"/> + <Point x="2601" y="7492"/> + <Point x="2605" y="7499"/> + <Point x="2641" y="7500"/> + <Point x="2639" y="7499"/> + <Point x="2678" y="7499"/> + <Point x="2681" y="7498"/> + <Point x="2697" y="7498"/> + <Point x="2707" y="7493"/> + <Point x="2714" y="7490"/> + <Point x="2719" y="7488"/> + <Point x="2735" y="7488"/> + <Point x="2738" y="7496"/> + <Point x="2751" y="7496"/> + <Point x="2763" y="7483"/> + <Point x="2804" y="7483"/> + <Point x="2808" y="7494"/> + <Point x="2857" y="7494"/> + <Point x="2869" y="7483"/> + <Point x="2890" y="7483"/> + <Point x="2893" y="7492"/> + <Point x="2907" y="7492"/> + <Point x="2909" y="7491"/> + <Point x="2933" y="7491"/> + <Point x="2936" y="7492"/> + <Point x="2949" y="7492"/> + <Point x="2952" y="7498"/> + <Point x="2963" y="7498"/> + <Point x="2952" y="7498"/> + <Point x="2963" y="7498"/> + <Point x="2964" y="7501"/> + <Point x="2964" y="7508"/> + <Point x="2963" y="7511"/> + <Point x="2952" y="7511"/> + <Point x="2963" y="7511"/> + <Point x="2952" y="7511"/> + <Point x="2967" y="7532"/> + <Point x="2966" y="7556"/> + <Point x="2949" y="7581"/> + <Point x="2968" y="7581"/> + <Point x="2968" y="7611"/> + <Point x="2972" y="7738"/> + <Point x="2925" y="7740"/> + <Point x="2844" y="7741"/> + <Point x="2751" y="7751"/> + <Point x="2674" y="7746"/> + <Point x="2658" y="7747"/> + <Point x="2641" y="7751"/> + <Point x="2575" y="7753"/> + <Point x="2494" y="7756"/> + <Point x="2459" y="7757"/> + <Point x="2416" y="7759"/> + <Point x="2365" y="7758"/> + <Point x="2305" y="7760"/> + <Point x="2272" y="7760"/> + <Point x="2245" y="7761"/> + <Point x="2191" y="7761"/> + <Point x="2191" y="7545"/> + <Point x="2206" y="7546"/> + <Point x="2208" y="7550"/> + <Point x="2220" y="7550"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>The late attack by the Times on the Abney Ceme‐ +tery, although it thinly veiled the most sordid and +intolerant purposes by an affected zeal for “sanctity +nd security,” will render good service should it +occasion the direction of public attention to the ne‐ +cessity of multiplying cemeteries beyond the bounds</Unicode></TextEquiv></TextRegion> + <TextRegion id="r387" type="paragraph"> + <Coords> + <Point x="2993" y="6113"/> + <Point x="3034" y="6113"/> + <Point x="3037" y="6121"/> + <Point x="3050" y="6121"/> + <Point x="3063" y="6111"/> + <Point x="3085" y="6111"/> + <Point x="3088" y="6119"/> + <Point x="3113" y="6118"/> + <Point x="3118" y="6110"/> + <Point x="3125" y="6110"/> + <Point x="3128" y="6118"/> + <Point x="3168" y="6118"/> + <Point x="3170" y="6117"/> + <Point x="3203" y="6117"/> + <Point x="3205" y="6116"/> + <Point x="3244" y="6116"/> + <Point x="3252" y="6115"/> + <Point x="3267" y="6115"/> + <Point x="3268" y="6106"/> + <Point x="3283" y="6106"/> + <Point x="3296" y="6105"/> + <Point x="3330" y="6105"/> + <Point x="3331" y="6113"/> + <Point x="3345" y="6113"/> + <Point x="3347" y="6104"/> + <Point x="3362" y="6104"/> + <Point x="3366" y="6112"/> + <Point x="3382" y="6112"/> + <Point x="3385" y="6111"/> + <Point x="3397" y="6111"/> + <Point x="3400" y="6112"/> + <Point x="3411" y="6112"/> + <Point x="3413" y="6103"/> + <Point x="3427" y="6103"/> + <Point x="3431" y="6111"/> + <Point x="3464" y="6111"/> + <Point x="3484" y="6102"/> + <Point x="3501" y="6102"/> + <Point x="3504" y="6109"/> + <Point x="3519" y="6109"/> + <Point x="3520" y="6110"/> + <Point x="3536" y="6110"/> + <Point x="3538" y="6109"/> + <Point x="3552" y="6109"/> + <Point x="3572" y="6108"/> + <Point x="3599" y="6108"/> + <Point x="3601" y="6107"/> + <Point x="3625" y="6106"/> + <Point x="3630" y="6096"/> + <Point x="3649" y="6096"/> + <Point x="3654" y="6106"/> + <Point x="3668" y="6106"/> + <Point x="3669" y="6095"/> + <Point x="3688" y="6095"/> + <Point x="3704" y="6103"/> + <Point x="3722" y="6103"/> + <Point x="3724" y="6105"/> + <Point x="3739" y="6105"/> + <Point x="3739" y="6123"/> + <Point x="3725" y="6153"/> + <Point x="3739" y="6153"/> + <Point x="3741" y="6165"/> + <Point x="3725" y="6165"/> + <Point x="3736" y="6165"/> + <Point x="3725" y="6165"/> + <Point x="3736" y="6193"/> + <Point x="3736" y="6212"/> + <Point x="3735" y="6215"/> + <Point x="3719" y="6215"/> + <Point x="3735" y="6215"/> + <Point x="3671" y="6215"/> + <Point x="3669" y="6216"/> + <Point x="3643" y="6216"/> + <Point x="3641" y="6217"/> + <Point x="3613" y="6217"/> + <Point x="3610" y="6218"/> + <Point x="3585" y="6218"/> + <Point x="3582" y="6217"/> + <Point x="3578" y="6218"/> + <Point x="3578" y="6259"/> + <Point x="3541" y="6260"/> + <Point x="3538" y="6261"/> + <Point x="3484" y="6261"/> + <Point x="3480" y="6262"/> + <Point x="3465" y="6262"/> + <Point x="3462" y="6263"/> + <Point x="3448" y="6263"/> + <Point x="3437" y="6264"/> + <Point x="3423" y="6264"/> + <Point x="3420" y="6265"/> + <Point x="3395" y="6265"/> + <Point x="3393" y="6267"/> + <Point x="3378" y="6267"/> + <Point x="3376" y="6266"/> + <Point x="3365" y="6266"/> + <Point x="3352" y="6267"/> + <Point x="3325" y="6267"/> + <Point x="3324" y="6268"/> + <Point x="3309" y="6268"/> + <Point x="3305" y="6275"/> + <Point x="3295" y="6275"/> + <Point x="3289" y="6268"/> + <Point x="3249" y="6267"/> + <Point x="3240" y="6268"/> + <Point x="3226" y="6268"/> + <Point x="3222" y="6267"/> + <Point x="3190" y="6267"/> + <Point x="3154" y="6271"/> + <Point x="3148" y="6271"/> + <Point x="3144" y="6269"/> + <Point x="3134" y="6269"/> + <Point x="3132" y="6270"/> + <Point x="3105" y="6270"/> + <Point x="3102" y="6277"/> + <Point x="3082" y="6277"/> + <Point x="3081" y="6271"/> + <Point x="3070" y="6271"/> + <Point x="3064" y="6278"/> + <Point x="3046" y="6278"/> + <Point x="3038" y="6272"/> + <Point x="3012" y="6272"/> + <Point x="3009" y="6273"/> + <Point x="2977" y="6273"/> + <Point x="2975" y="6274"/> + <Point x="2966" y="6274"/> + <Point x="2963" y="6271"/> + <Point x="2963" y="6248"/> + <Point x="2980" y="6233"/> + <Point x="2960" y="6233"/> + <Point x="2960" y="6156"/> + <Point x="2980" y="6157"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>The Paris papers of Wednesday have reached us +by our ordinary Express. We have already ad‐ +verted to the only topics of interest discussed in +these papers. We subjoin some extracts.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r388" type="paragraph"> + <Coords> + <Point x="2996" y="6282"/> + <Point x="3039" y="6282"/> + <Point x="3041" y="6290"/> + <Point x="3054" y="6290"/> + <Point x="3074" y="6281"/> + <Point x="3081" y="6281"/> + <Point x="3084" y="6290"/> + <Point x="3123" y="6287"/> + <Point x="3130" y="6299"/> + <Point x="3134" y="6300"/> + <Point x="3144" y="6288"/> + <Point x="3193" y="6288"/> + <Point x="3205" y="6277"/> + <Point x="3216" y="6277"/> + <Point x="3219" y="6287"/> + <Point x="3234" y="6287"/> + <Point x="3234" y="6280"/> + <Point x="3244" y="6279"/> + <Point x="3248" y="6278"/> + <Point x="3255" y="6278"/> + <Point x="3257" y="6286"/> + <Point x="3273" y="6286"/> + <Point x="3276" y="6287"/> + <Point x="3293" y="6287"/> + <Point x="3302" y="6283"/> + <Point x="3311" y="6282"/> + <Point x="3312" y="6274"/> + <Point x="3330" y="6279"/> + <Point x="3333" y="6287"/> + <Point x="3346" y="6287"/> + <Point x="3353" y="6278"/> + <Point x="3366" y="6278"/> + <Point x="3370" y="6286"/> + <Point x="3382" y="6285"/> + <Point x="3382" y="6277"/> + <Point x="3401" y="6277"/> + <Point x="3404" y="6285"/> + <Point x="3418" y="6285"/> + <Point x="3421" y="6284"/> + <Point x="3436" y="6284"/> + <Point x="3439" y="6283"/> + <Point x="3450" y="6283"/> + <Point x="3457" y="6282"/> + <Point x="3472" y="6282"/> + <Point x="3475" y="6273"/> + <Point x="3487" y="6273"/> + <Point x="3495" y="6280"/> + <Point x="3504" y="6277"/> + <Point x="3508" y="6270"/> + <Point x="3562" y="6270"/> + <Point x="3567" y="6279"/> + <Point x="3579" y="6279"/> + <Point x="3580" y="6278"/> + <Point x="3611" y="6278"/> + <Point x="3624" y="6269"/> + <Point x="3635" y="6269"/> + <Point x="3639" y="6277"/> + <Point x="3655" y="6277"/> + <Point x="3679" y="6275"/> + <Point x="3705" y="6275"/> + <Point x="3708" y="6274"/> + <Point x="3723" y="6274"/> + <Point x="3724" y="6280"/> + <Point x="3735" y="6280"/> + <Point x="3740" y="6292"/> + <Point x="3724" y="6293"/> + <Point x="3724" y="6342"/> + <Point x="3712" y="6342"/> + <Point x="3708" y="6351"/> + <Point x="3691" y="6351"/> + <Point x="3681" y="6343"/> + <Point x="3675" y="6342"/> + <Point x="3671" y="6343"/> + <Point x="3643" y="6343"/> + <Point x="3641" y="6344"/> + <Point x="3587" y="6344"/> + <Point x="3575" y="6346"/> + <Point x="3559" y="6346"/> + <Point x="3556" y="6347"/> + <Point x="3541" y="6347"/> + <Point x="3532" y="6356"/> + <Point x="3516" y="6356"/> + <Point x="3505" y="6348"/> + <Point x="3494" y="6347"/> + <Point x="3491" y="6348"/> + <Point x="3480" y="6348"/> + <Point x="3478" y="6349"/> + <Point x="3464" y="6349"/> + <Point x="3460" y="6359"/> + <Point x="3452" y="6359"/> + <Point x="3439" y="6352"/> + <Point x="3437" y="6351"/> + <Point x="3434" y="6352"/> + <Point x="3409" y="6352"/> + <Point x="3399" y="6354"/> + <Point x="3385" y="6354"/> + <Point x="3383" y="6360"/> + <Point x="3367" y="6361"/> + <Point x="3362" y="6355"/> + <Point x="3337" y="6355"/> + <Point x="3334" y="6354"/> + <Point x="3327" y="6354"/> + <Point x="3318" y="6355"/> + <Point x="3302" y="6355"/> + <Point x="3289" y="6359"/> + <Point x="3272" y="6361"/> + <Point x="3263" y="6358"/> + <Point x="3211" y="6354"/> + <Point x="3208" y="6355"/> + <Point x="3170" y="6355"/> + <Point x="3166" y="6362"/> + <Point x="3125" y="6362"/> + <Point x="3114" y="6356"/> + <Point x="3077" y="6356"/> + <Point x="3075" y="6357"/> + <Point x="3049" y="6357"/> + <Point x="3047" y="6358"/> + <Point x="3033" y="6358"/> + <Point x="3032" y="6357"/> + <Point x="3017" y="6357"/> + <Point x="3019" y="6357"/> + <Point x="3006" y="6357"/> + <Point x="3004" y="6358"/> + <Point x="2988" y="6358"/> + <Point x="2986" y="6359"/> + <Point x="2964" y="6358"/> + <Point x="2964" y="6333"/> + <Point x="2985" y="6324"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>The law, regulating the labour of children in ma‐ +nufactories, passed by a large majority on Tuesday.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r389" type="paragraph"> + <Coords> + <Point x="2998" y="6368"/> + <Point x="3029" y="6369"/> + <Point x="3032" y="6376"/> + <Point x="3044" y="6376"/> + <Point x="3055" y="6368"/> + <Point x="3070" y="6368"/> + <Point x="3074" y="6375"/> + <Point x="3087" y="6375"/> + <Point x="3089" y="6376"/> + <Point x="3101" y="6376"/> + <Point x="3104" y="6375"/> + <Point x="3154" y="6375"/> + <Point x="3156" y="6374"/> + <Point x="3178" y="6373"/> + <Point x="3184" y="6366"/> + <Point x="3191" y="6366"/> + <Point x="3194" y="6374"/> + <Point x="3220" y="6374"/> + <Point x="3222" y="6366"/> + <Point x="3237" y="6366"/> + <Point x="3247" y="6373"/> + <Point x="3260" y="6373"/> + <Point x="3268" y="6366"/> + <Point x="3281" y="6366"/> + <Point x="3268" y="6366"/> + <Point x="3289" y="6366"/> + <Point x="3292" y="6374"/> + <Point x="3329" y="6374"/> + <Point x="3332" y="6367"/> + <Point x="3341" y="6367"/> + <Point x="3351" y="6366"/> + <Point x="3373" y="6366"/> + <Point x="3377" y="6373"/> + <Point x="3384" y="6371"/> + <Point x="3391" y="6364"/> + <Point x="3398" y="6364"/> + <Point x="3402" y="6369"/> + <Point x="3410" y="6369"/> + <Point x="3412" y="6372"/> + <Point x="3425" y="6372"/> + <Point x="3433" y="6370"/> + <Point x="3448" y="6370"/> + <Point x="3451" y="6369"/> + <Point x="3478" y="6369"/> + <Point x="3481" y="6368"/> + <Point x="3493" y="6368"/> + <Point x="3496" y="6367"/> + <Point x="3506" y="6367"/> + <Point x="3508" y="6366"/> + <Point x="3518" y="6366"/> + <Point x="3525" y="6362"/> + <Point x="3535" y="6362"/> + <Point x="3537" y="6365"/> + <Point x="3550" y="6365"/> + <Point x="3562" y="6360"/> + <Point x="3568" y="6357"/> + <Point x="3588" y="6357"/> + <Point x="3591" y="6364"/> + <Point x="3603" y="6364"/> + <Point x="3613" y="6354"/> + <Point x="3642" y="6356"/> + <Point x="3644" y="6355"/> + <Point x="3651" y="6353"/> + <Point x="3655" y="6352"/> + <Point x="3671" y="6356"/> + <Point x="3683" y="6361"/> + <Point x="3691" y="6361"/> + <Point x="3696" y="6354"/> + <Point x="3715" y="6354"/> + <Point x="3721" y="6370"/> + <Point x="3736" y="6370"/> + <Point x="3731" y="6370"/> + <Point x="3736" y="6370"/> + <Point x="3738" y="6373"/> + <Point x="3738" y="6383"/> + <Point x="3736" y="6386"/> + <Point x="3731" y="6386"/> + <Point x="3736" y="6386"/> + <Point x="3731" y="6386"/> + <Point x="3742" y="6391"/> + <Point x="3742" y="6414"/> + <Point x="3730" y="6414"/> + <Point x="3738" y="6414"/> + <Point x="3730" y="6414"/> + <Point x="3741" y="6422"/> + <Point x="3741" y="6444"/> + <Point x="3726" y="6456"/> + <Point x="3742" y="6455"/> + <Point x="3742" y="6478"/> + <Point x="3726" y="6478"/> + <Point x="3724" y="6479"/> + <Point x="3709" y="6479"/> + <Point x="3705" y="6480"/> + <Point x="3687" y="6480"/> + <Point x="3670" y="6481"/> + <Point x="3631" y="6481"/> + <Point x="3629" y="6482"/> + <Point x="3601" y="6482"/> + <Point x="3599" y="6483"/> + <Point x="3581" y="6483"/> + <Point x="3578" y="6484"/> + <Point x="3567" y="6484"/> + <Point x="3564" y="6485"/> + <Point x="3554" y="6485"/> + <Point x="3525" y="6517"/> + <Point x="3520" y="6517"/> + <Point x="3519" y="6518"/> + <Point x="3507" y="6518"/> + <Point x="3505" y="6519"/> + <Point x="3465" y="6519"/> + <Point x="3463" y="6520"/> + <Point x="3457" y="6520"/> + <Point x="3454" y="6521"/> + <Point x="3440" y="6521"/> + <Point x="3437" y="6522"/> + <Point x="3429" y="6522"/> + <Point x="3417" y="6523"/> + <Point x="3404" y="6523"/> + <Point x="3401" y="6525"/> + <Point x="3362" y="6525"/> + <Point x="3359" y="6526"/> + <Point x="3348" y="6526"/> + <Point x="3345" y="6525"/> + <Point x="3287" y="6525"/> + <Point x="3285" y="6524"/> + <Point x="3245" y="6524"/> + <Point x="3242" y="6523"/> + <Point x="3220" y="6523"/> + <Point x="3217" y="6524"/> + <Point x="3161" y="6524"/> + <Point x="3158" y="6528"/> + <Point x="3110" y="6529"/> + <Point x="3108" y="6525"/> + <Point x="3090" y="6525"/> + <Point x="3071" y="6526"/> + <Point x="3037" y="6526"/> + <Point x="3035" y="6527"/> + <Point x="3003" y="6527"/> + <Point x="3002" y="6528"/> + <Point x="2971" y="6528"/> + <Point x="2968" y="6525"/> + <Point x="2968" y="6501"/> + <Point x="2983" y="6497"/> + <Point x="2970" y="6497"/> + <Point x="2968" y="6494"/> + <Point x="2968" y="6442"/> + <Point x="2982" y="6433"/> + <Point x="2966" y="6428"/> + <Point x="2966" y="6403"/> + <Point x="2982" y="6403"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>We have received a file of Malta papers to the 17th ult., +but their intelligence from the Levant is anterior to what +we have already given by several days. It was expected +at Alexandria that most of the European residents who +had left Egypt would now return thither.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r393" type="paragraph"> + <Coords> + <Point x="3802" y="6405"/> + <Point x="3828" y="6405"/> + <Point x="3831" y="6413"/> + <Point x="3846" y="6413"/> + <Point x="3850" y="6408"/> + <Point x="3859" y="6408"/> + <Point x="3861" y="6412"/> + <Point x="3889" y="6412"/> + <Point x="3890" y="6411"/> + <Point x="3903" y="6411"/> + <Point x="3906" y="6405"/> + <Point x="3917" y="6405"/> + <Point x="3927" y="6410"/> + <Point x="3943" y="6410"/> + <Point x="3945" y="6401"/> + <Point x="3958" y="6401"/> + <Point x="3971" y="6408"/> + <Point x="3987" y="6408"/> + <Point x="3999" y="6399"/> + <Point x="4006" y="6399"/> + <Point x="4009" y="6407"/> + <Point x="4023" y="6407"/> + <Point x="4025" y="6402"/> + <Point x="4035" y="6402"/> + <Point x="4037" y="6401"/> + <Point x="4048" y="6401"/> + <Point x="4049" y="6406"/> + <Point x="4062" y="6406"/> + <Point x="4064" y="6405"/> + <Point x="4076" y="6405"/> + <Point x="4088" y="6396"/> + <Point x="4103" y="6396"/> + <Point x="4106" y="6403"/> + <Point x="4122" y="6403"/> + <Point x="4123" y="6398"/> + <Point x="4132" y="6398"/> + <Point x="4135" y="6403"/> + <Point x="4148" y="6403"/> + <Point x="4150" y="6393"/> + <Point x="4166" y="6393"/> + <Point x="4180" y="6392"/> + <Point x="4194" y="6392"/> + <Point x="4204" y="6401"/> + <Point x="4205" y="6400"/> + <Point x="4248" y="6400"/> + <Point x="4264" y="6399"/> + <Point x="4280" y="6399"/> + <Point x="4281" y="6398"/> + <Point x="4298" y="6398"/> + <Point x="4311" y="6389"/> + <Point x="4328" y="6389"/> + <Point x="4329" y="6397"/> + <Point x="4361" y="6397"/> + <Point x="4363" y="6396"/> + <Point x="4374" y="6396"/> + <Point x="4375" y="6387"/> + <Point x="4433" y="6387"/> + <Point x="4435" y="6394"/> + <Point x="4449" y="6394"/> + <Point x="4457" y="6384"/> + <Point x="4485" y="6384"/> + <Point x="4487" y="6394"/> + <Point x="4498" y="6394"/> + <Point x="4498" y="6384"/> + <Point x="4508" y="6384"/> + <Point x="4509" y="6393"/> + <Point x="4526" y="6393"/> + <Point x="4529" y="6398"/> + <Point x="4540" y="6398"/> + <Point x="4529" y="6398"/> + <Point x="4540" y="6398"/> + <Point x="4543" y="6401"/> + <Point x="4543" y="6408"/> + <Point x="4540" y="6411"/> + <Point x="4529" y="6411"/> + <Point x="4540" y="6411"/> + <Point x="4529" y="6411"/> + <Point x="4543" y="6431"/> + <Point x="4543" y="6447"/> + <Point x="4529" y="6460"/> + <Point x="4546" y="6460"/> + <Point x="4546" y="6479"/> + <Point x="4534" y="6503"/> + <Point x="4539" y="6503"/> + <Point x="4534" y="6503"/> + <Point x="4539" y="6503"/> + <Point x="4542" y="6506"/> + <Point x="4542" y="6512"/> + <Point x="4539" y="6515"/> + <Point x="4534" y="6515"/> + <Point x="4539" y="6515"/> + <Point x="4534" y="6515"/> + <Point x="4546" y="6524"/> + <Point x="4546" y="6612"/> + <Point x="4545" y="6647"/> + <Point x="4419" y="6646"/> + <Point x="4223" y="6651"/> + <Point x="4205" y="6652"/> + <Point x="4196" y="6684"/> + <Point x="4094" y="6685"/> + <Point x="3907" y="6691"/> + <Point x="3844" y="6693"/> + <Point x="3838" y="6697"/> + <Point x="3832" y="6696"/> + <Point x="3830" y="6693"/> + <Point x="3772" y="6697"/> + <Point x="3772" y="6606"/> + <Point x="3796" y="6599"/> + <Point x="3774" y="6599"/> + <Point x="3771" y="6596"/> + <Point x="3771" y="6581"/> + <Point x="3772" y="6564"/> + <Point x="3772" y="6541"/> + <Point x="3786" y="6536"/> + <Point x="3772" y="6536"/> + <Point x="3771" y="6533"/> + <Point x="3771" y="6518"/> + <Point x="3782" y="6505"/> + <Point x="3771" y="6505"/> + <Point x="3766" y="6449"/> + <Point x="3785" y="6449"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>Extract of a letter dated from on board the Prin- +cess Charlotte, Marmorice Bay, Dec. 13. 1840:—“I am +sorry to inform you that the Zebra was driven on shore +and totally wrecked, with the loss of three of her crew. +The Bellerophon was nearly lost, and the Pique lost her +masts. Dreadſul weather on the coast. We, thank God, +have escaped, but most miraculously; four anchors ahead. +I never saw worse weather. We have 12 sail of the line +here, and a host of small craft.”</Unicode></TextEquiv></TextRegion> + <TextRegion id="r395" type="paragraph"> + <Coords> + <Point x="3806" y="6698"/> + <Point x="3832" y="6698"/> + <Point x="3834" y="6703"/> + <Point x="3854" y="6704"/> + <Point x="3859" y="6703"/> + <Point x="3876" y="6703"/> + <Point x="3890" y="6694"/> + <Point x="3913" y="6694"/> + <Point x="3918" y="6701"/> + <Point x="3950" y="6701"/> + <Point x="3954" y="6700"/> + <Point x="3973" y="6700"/> + <Point x="3977" y="6699"/> + <Point x="4013" y="6699"/> + <Point x="4017" y="6698"/> + <Point x="4054" y="6698"/> + <Point x="4058" y="6697"/> + <Point x="4075" y="6697"/> + <Point x="4089" y="6688"/> + <Point x="4110" y="6688"/> + <Point x="4115" y="6694"/> + <Point x="4132" y="6694"/> + <Point x="4136" y="6695"/> + <Point x="4154" y="6695"/> + <Point x="4157" y="6694"/> + <Point x="4174" y="6694"/> + <Point x="4179" y="6693"/> + <Point x="4198" y="6693"/> + <Point x="4217" y="6692"/> + <Point x="4229" y="6700"/> + <Point x="4259" y="6700"/> + <Point x="4262" y="6683"/> + <Point x="4312" y="6683"/> + <Point x="4313" y="6691"/> + <Point x="4346" y="6691"/> + <Point x="4348" y="6690"/> + <Point x="4361" y="6681"/> + <Point x="4405" y="6681"/> + <Point x="4405" y="6689"/> + <Point x="4504" y="6689"/> + <Point x="4506" y="6688"/> + <Point x="4544" y="6688"/> + <Point x="4526" y="6688"/> + <Point x="4544" y="6688"/> + <Point x="4547" y="6691"/> + <Point x="4547" y="6711"/> + <Point x="4527" y="6726"/> + <Point x="4549" y="6726"/> + <Point x="4547" y="6745"/> + <Point x="4530" y="6755"/> + <Point x="4540" y="6755"/> + <Point x="4550" y="6771"/> + <Point x="4549" y="6784"/> + <Point x="4551" y="6795"/> + <Point x="4551" y="6815"/> + <Point x="4536" y="6815"/> + <Point x="4550" y="6828"/> + <Point x="4550" y="6849"/> + <Point x="4534" y="6849"/> + <Point x="4547" y="6849"/> + <Point x="4534" y="6849"/> + <Point x="4532" y="6848"/> + <Point x="4520" y="6848"/> + <Point x="4518" y="6849"/> + <Point x="4504" y="6849"/> + <Point x="4502" y="6850"/> + <Point x="4441" y="6850"/> + <Point x="4438" y="6858"/> + <Point x="4424" y="6858"/> + <Point x="4418" y="6849"/> + <Point x="4414" y="6850"/> + <Point x="4329" y="6850"/> + <Point x="4328" y="6851"/> + <Point x="4314" y="6851"/> + <Point x="4305" y="6883"/> + <Point x="4267" y="6883"/> + <Point x="4264" y="6884"/> + <Point x="4210" y="6884"/> + <Point x="4209" y="6885"/> + <Point x="4178" y="6885"/> + <Point x="4173" y="6886"/> + <Point x="4119" y="6886"/> + <Point x="4116" y="6887"/> + <Point x="4094" y="6887"/> + <Point x="4091" y="6888"/> + <Point x="4049" y="6888"/> + <Point x="4047" y="6889"/> + <Point x="4013" y="6889"/> + <Point x="4010" y="6890"/> + <Point x="3984" y="6890"/> + <Point x="3977" y="6891"/> + <Point x="3957" y="6891"/> + <Point x="3956" y="6892"/> + <Point x="3900" y="6892"/> + <Point x="3896" y="6893"/> + <Point x="3882" y="6893"/> + <Point x="3865" y="6894"/> + <Point x="3850" y="6894"/> + <Point x="3847" y="6895"/> + <Point x="3836" y="6895"/> + <Point x="3834" y="6894"/> + <Point x="3823" y="6894"/> + <Point x="3821" y="6895"/> + <Point x="3809" y="6895"/> + <Point x="3806" y="6896"/> + <Point x="3797" y="6905"/> + <Point x="3778" y="6899"/> + <Point x="3778" y="6878"/> + <Point x="3793" y="6870"/> + <Point x="3775" y="6870"/> + <Point x="3775" y="6811"/> + <Point x="3791" y="6798"/> + <Point x="3774" y="6797"/> + <Point x="3774" y="6743"/> + <Point x="3803" y="6743"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>THE KIRKCALDY BURGHS.—Colonel FERGUSON +arrived in this city on Monday, and is no doubt now +among his constituents. Of his success there is no doubt, +and the Tory gentleman who has been reconnoitring the +ground is now satisfied, we presame, that he might have +spared himself the trouble.—Scotsman.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r396" type="paragraph"> + <Coords> + <Point x="3810" y="6897"/> + <Point x="3835" y="6897"/> + <Point x="3838" y="6904"/> + <Point x="3859" y="6904"/> + <Point x="3862" y="6903"/> + <Point x="3880" y="6903"/> + <Point x="3894" y="6894"/> + <Point x="3922" y="6894"/> + <Point x="3930" y="6899"/> + <Point x="3937" y="6901"/> + <Point x="3941" y="6902"/> + <Point x="3956" y="6902"/> + <Point x="3959" y="6901"/> + <Point x="3989" y="6901"/> + <Point x="3991" y="6900"/> + <Point x="4031" y="6900"/> + <Point x="4033" y="6899"/> + <Point x="4053" y="6899"/> + <Point x="4072" y="6898"/> + <Point x="4090" y="6898"/> + <Point x="4095" y="6897"/> + <Point x="4135" y="6897"/> + <Point x="4147" y="6896"/> + <Point x="4164" y="6896"/> + <Point x="4166" y="6895"/> + <Point x="4208" y="6895"/> + <Point x="4225" y="6887"/> + <Point x="4251" y="6887"/> + <Point x="4252" y="6894"/> + <Point x="4287" y="6894"/> + <Point x="4290" y="6893"/> + <Point x="4300" y="6893"/> + <Point x="4303" y="6894"/> + <Point x="4319" y="6894"/> + <Point x="4323" y="6893"/> + <Point x="4340" y="6893"/> + <Point x="4352" y="6901"/> + <Point x="4380" y="6901"/> + <Point x="4382" y="6885"/> + <Point x="4426" y="6885"/> + <Point x="4427" y="6894"/> + <Point x="4487" y="6894"/> + <Point x="4489" y="6893"/> + <Point x="4504" y="6893"/> + <Point x="4506" y="6886"/> + <Point x="4515" y="6887"/> + <Point x="4531" y="6883"/> + <Point x="4547" y="6883"/> + <Point x="4551" y="6888"/> + <Point x="4551" y="6912"/> + <Point x="4539" y="6927"/> + <Point x="4549" y="6927"/> + <Point x="4539" y="6927"/> + <Point x="4549" y="6927"/> + <Point x="4552" y="6930"/> + <Point x="4552" y="6947"/> + <Point x="4544" y="6952"/> + <Point x="4553" y="6952"/> + <Point x="4544" y="6952"/> + <Point x="4553" y="6952"/> + <Point x="4556" y="6955"/> + <Point x="4556" y="6980"/> + <Point x="4553" y="6983"/> + <Point x="4544" y="6983"/> + <Point x="4553" y="6983"/> + <Point x="4544" y="6983"/> + <Point x="4555" y="7004"/> + <Point x="4555" y="7082"/> + <Point x="4547" y="7082"/> + <Point x="4550" y="7082"/> + <Point x="4547" y="7082"/> + <Point x="4552" y="7092"/> + <Point x="4556" y="7124"/> + <Point x="4556" y="7140"/> + <Point x="4548" y="7164"/> + <Point x="4554" y="7164"/> + <Point x="4548" y="7164"/> + <Point x="4554" y="7164"/> + <Point x="4557" y="7167"/> + <Point x="4557" y="7177"/> + <Point x="4554" y="7180"/> + <Point x="4548" y="7180"/> + <Point x="4554" y="7180"/> + <Point x="4548" y="7180"/> + <Point x="4557" y="7190"/> + <Point x="4557" y="7206"/> + <Point x="4554" y="7209"/> + <Point x="4544" y="7209"/> + <Point x="4554" y="7209"/> + <Point x="4544" y="7209"/> + <Point x="4556" y="7223"/> + <Point x="4556" y="7240"/> + <Point x="4540" y="7254"/> + <Point x="4554" y="7254"/> + <Point x="4540" y="7254"/> + <Point x="4554" y="7254"/> + <Point x="4557" y="7257"/> + <Point x="4557" y="7273"/> + <Point x="4545" y="7295"/> + <Point x="4554" y="7295"/> + <Point x="4545" y="7295"/> + <Point x="4554" y="7295"/> + <Point x="4557" y="7298"/> + <Point x="4557" y="7303"/> + <Point x="4554" y="7306"/> + <Point x="4545" y="7306"/> + <Point x="4554" y="7306"/> + <Point x="4545" y="7306"/> + <Point x="4558" y="7324"/> + <Point x="4558" y="7339"/> + <Point x="4555" y="7364"/> + <Point x="4558" y="7367"/> + <Point x="4558" y="7377"/> + <Point x="4555" y="7380"/> + <Point x="4559" y="7389"/> + <Point x="4559" y="7406"/> + <Point x="4547" y="7425"/> + <Point x="4556" y="7425"/> + <Point x="4547" y="7425"/> + <Point x="4556" y="7425"/> + <Point x="4559" y="7428"/> + <Point x="4559" y="7434"/> + <Point x="4558" y="7447"/> + <Point x="4559" y="7450"/> + <Point x="4560" y="7471"/> + <Point x="4550" y="7492"/> + <Point x="4558" y="7492"/> + <Point x="4550" y="7492"/> + <Point x="4561" y="7492"/> + <Point x="4561" y="7544"/> + <Point x="4562" y="7574"/> + <Point x="4549" y="7574"/> + <Point x="4559" y="7574"/> + <Point x="4549" y="7574"/> + <Point x="4562" y="7586"/> + <Point x="4562" y="7677"/> + <Point x="4492" y="7677"/> + <Point x="4472" y="7678"/> + <Point x="4458" y="7678"/> + <Point x="4456" y="7679"/> + <Point x="4418" y="7679"/> + <Point x="4415" y="7680"/> + <Point x="4402" y="7680"/> + <Point x="4400" y="7681"/> + <Point x="4386" y="7681"/> + <Point x="4366" y="7682"/> + <Point x="4329" y="7682"/> + <Point x="4326" y="7684"/> + <Point x="4277" y="7684"/> + <Point x="4274" y="7685"/> + <Point x="4266" y="7685"/> + <Point x="4264" y="7686"/> + <Point x="4235" y="7686"/> + <Point x="4211" y="7691"/> + <Point x="4206" y="7691"/> + <Point x="4193" y="7686"/> + <Point x="4159" y="7693"/> + <Point x="4145" y="7693"/> + <Point x="4110" y="7716"/> + <Point x="4106" y="7716"/> + <Point x="4105" y="7718"/> + <Point x="4085" y="7718"/> + <Point x="4084" y="7717"/> + <Point x="4071" y="7717"/> + <Point x="4072" y="7718"/> + <Point x="4046" y="7718"/> + <Point x="4031" y="7724"/> + <Point x="4016" y="7724"/> + <Point x="4009" y="7719"/> + <Point x="4007" y="7718"/> + <Point x="3995" y="7718"/> + <Point x="3993" y="7719"/> + <Point x="3967" y="7719"/> + <Point x="3932" y="7721"/> + <Point x="3926" y="7721"/> + <Point x="3925" y="7720"/> + <Point x="3903" y="7720"/> + <Point x="3901" y="7721"/> + <Point x="3797" y="7721"/> + <Point x="3794" y="7718"/> + <Point x="3794" y="7697"/> + <Point x="3809" y="7688"/> + <Point x="3795" y="7688"/> + <Point x="3792" y="7685"/> + <Point x="3792" y="7596"/> + <Point x="3791" y="7584"/> + <Point x="3791" y="7559"/> + <Point x="3790" y="7551"/> + <Point x="3790" y="7527"/> + <Point x="3788" y="7517"/> + <Point x="3788" y="7468"/> + <Point x="3787" y="7451"/> + <Point x="3787" y="7395"/> + <Point x="3786" y="7386"/> + <Point x="3786" y="7337"/> + <Point x="3785" y="7321"/> + <Point x="3785" y="7237"/> + <Point x="3799" y="7223"/> + <Point x="3787" y="7223"/> + <Point x="3784" y="7220"/> + <Point x="3784" y="7205"/> + <Point x="3800" y="7190"/> + <Point x="3785" y="7190"/> + <Point x="3782" y="7187"/> + <Point x="3782" y="7170"/> + <Point x="3783" y="7154"/> + <Point x="3783" y="7139"/> + <Point x="3798" y="7125"/> + <Point x="3785" y="7125"/> + <Point x="3782" y="7122"/> + <Point x="3782" y="7106"/> + <Point x="3798" y="7092"/> + <Point x="3784" y="7092"/> + <Point x="3782" y="7089"/> + <Point x="3782" y="7073"/> + <Point x="3797" y="7060"/> + <Point x="3779" y="7060"/> + <Point x="3779" y="7006"/> + <Point x="3778" y="6997"/> + <Point x="3778" y="6942"/> + <Point x="3810" y="6942"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>THE MILITARY AND THE POLICE.—The watch +committee and the magistrates have taken into their +consideration the application of Colonel MOLYNEUX, of +the 8th Hussars, as to the police of the city having a ge- +neral order to salute him when they meet him in the street, +and though it is the wish of the mayor and magistrates, +and also of the watch committee, that a proper courtesy +should be shown to the gallant colonel and to the officers +of the regiment by the police force (and they think that, +as the colonel wishes it, the courtesy of lifting their hats +might be extended), yet they feel that no “order” can +be made to that effect; such as would go to exclude a +man from the force who should not comply with the de- +mand of the colonel. There can be no doubt but the +extraordinary manner in which the complaint was made, +has subjected the gentleman who could make it to the +sport of the citizens during the merry‑makings at Christ- +mas, for they seem in a universal titter about it; but +the individual desire of the magistrates is unquestiona- +bly that the deference should be shown. No doubt they +feel that to make an order in the business would subject +them also to no small share of public ridicule. The +policemen who have been branded by the gallant Colonel +as “a set of d—d bl—kg—s,” determine net to move +their hats.—Bury Post.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r398" type="paragraph"> + <Coords> + <Point x="4521" y="2712"/> + <Point x="4565" y="2712"/> + <Point x="4566" y="2720"/> + <Point x="4581" y="2720"/> + <Point x="4594" y="2712"/> + <Point x="4647" y="2712"/> + <Point x="4651" y="2720"/> + <Point x="4667" y="2720"/> + <Point x="4670" y="2715"/> + <Point x="4682" y="2710"/> + <Point x="4698" y="2710"/> + <Point x="4701" y="2719"/> + <Point x="4716" y="2719"/> + <Point x="4718" y="2718"/> + <Point x="4757" y="2718"/> + <Point x="4760" y="2709"/> + <Point x="4772" y="2709"/> + <Point x="4789" y="2708"/> + <Point x="4814" y="2708"/> + <Point x="4816" y="2717"/> + <Point x="4828" y="2717"/> + <Point x="4831" y="2707"/> + <Point x="4848" y="2707"/> + <Point x="4831" y="2707"/> + <Point x="4848" y="2707"/> + <Point x="4851" y="2716"/> + <Point x="4864" y="2716"/> + <Point x="4866" y="2715"/> + <Point x="4879" y="2715"/> + <Point x="4881" y="2710"/> + <Point x="4894" y="2706"/> + <Point x="4901" y="2706"/> + <Point x="4903" y="2714"/> + <Point x="4936" y="2714"/> + <Point x="4940" y="2713"/> + <Point x="4994" y="2713"/> + <Point x="5006" y="2706"/> + <Point x="5018" y="2703"/> + <Point x="5035" y="2703"/> + <Point x="5038" y="2711"/> + <Point x="5053" y="2711"/> + <Point x="5066" y="2702"/> + <Point x="5087" y="2702"/> + <Point x="5090" y="2710"/> + <Point x="5105" y="2710"/> + <Point x="5107" y="2709"/> + <Point x="5119" y="2709"/> + <Point x="5121" y="2708"/> + <Point x="5147" y="2708"/> + <Point x="5149" y="2707"/> + <Point x="5200" y="2707"/> + <Point x="5210" y="2697"/> + <Point x="5233" y="2697"/> + <Point x="5246" y="2704"/> + <Point x="5292" y="2704"/> + <Point x="5276" y="2704"/> + <Point x="5310" y="2704"/> + <Point x="5310" y="2773"/> + <Point x="5309" y="2779"/> + <Point x="5309" y="2797"/> + <Point x="5307" y="2800"/> + <Point x="5296" y="2800"/> + <Point x="5307" y="2800"/> + <Point x="5296" y="2800"/> + <Point x="5308" y="2821"/> + <Point x="5308" y="2827"/> + <Point x="5305" y="2830"/> + <Point x="5294" y="2830"/> + <Point x="5305" y="2830"/> + <Point x="5294" y="2830"/> + <Point x="5308" y="2852"/> + <Point x="5308" y="2868"/> + <Point x="5299" y="2895"/> + <Point x="5305" y="2895"/> + <Point x="5299" y="2895"/> + <Point x="5305" y="2895"/> + <Point x="5308" y="2898"/> + <Point x="5308" y="2909"/> + <Point x="5305" y="2912"/> + <Point x="5299" y="2912"/> + <Point x="5305" y="2912"/> + <Point x="5299" y="2912"/> + <Point x="5306" y="2919"/> + <Point x="5306" y="2940"/> + <Point x="5313" y="2948"/> + <Point x="5313" y="2961"/> + <Point x="5309" y="2976"/> + <Point x="5307" y="2979"/> + <Point x="5300" y="2979"/> + <Point x="5307" y="2979"/> + <Point x="5300" y="2979"/> + <Point x="5310" y="2995"/> + <Point x="5310" y="3052"/> + <Point x="5294" y="3052"/> + <Point x="5308" y="3052"/> + <Point x="5294" y="3052"/> + <Point x="5309" y="3068"/> + <Point x="5309" y="3086"/> + <Point x="5299" y="3098"/> + <Point x="5313" y="3098"/> + <Point x="5313" y="3125"/> + <Point x="5299" y="3125"/> + <Point x="5311" y="3141"/> + <Point x="5311" y="3159"/> + <Point x="5300" y="3172"/> + <Point x="5313" y="3172"/> + <Point x="5313" y="3198"/> + <Point x="5300" y="3198"/> + <Point x="5312" y="3212"/> + <Point x="5311" y="3232"/> + <Point x="5311" y="3341"/> + <Point x="5312" y="3370"/> + <Point x="5312" y="3389"/> + <Point x="5303" y="3388"/> + <Point x="5313" y="3399"/> + <Point x="5312" y="3449"/> + <Point x="5313" y="3482"/> + <Point x="5299" y="3482"/> + <Point x="5295" y="3488"/> + <Point x="5290" y="3488"/> + <Point x="5313" y="3502"/> + <Point x="5313" y="3525"/> + <Point x="5283" y="3525"/> + <Point x="5268" y="3526"/> + <Point x="5257" y="3526"/> + <Point x="5252" y="3561"/> + <Point x="5207" y="3561"/> + <Point x="5195" y="3562"/> + <Point x="5143" y="3562"/> + <Point x="5141" y="3563"/> + <Point x="5114" y="3563"/> + <Point x="5102" y="3564"/> + <Point x="5088" y="3564"/> + <Point x="5087" y="3565"/> + <Point x="5030" y="3565"/> + <Point x="5028" y="3566"/> + <Point x="5012" y="3566"/> + <Point x="5010" y="3567"/> + <Point x="4979" y="3567"/> + <Point x="4963" y="3565"/> + <Point x="4954" y="3573"/> + <Point x="4949" y="3573"/> + <Point x="4948" y="3567"/> + <Point x="4935" y="3567"/> + <Point x="4933" y="3568"/> + <Point x="4904" y="3568"/> + <Point x="4892" y="3569"/> + <Point x="4863" y="3569"/> + <Point x="4865" y="3570"/> + <Point x="4816" y="3570"/> + <Point x="4814" y="3571"/> + <Point x="4799" y="3571"/> + <Point x="4797" y="3570"/> + <Point x="4780" y="3570"/> + <Point x="4766" y="3578"/> + <Point x="4748" y="3578"/> + <Point x="4748" y="3571"/> + <Point x="4733" y="3571"/> + <Point x="4732" y="3572"/> + <Point x="4681" y="3572"/> + <Point x="4668" y="3577"/> + <Point x="4650" y="3577"/> + <Point x="4577" y="3573"/> + <Point x="4575" y="3574"/> + <Point x="4537" y="3574"/> + <Point x="4534" y="3571"/> + <Point x="4534" y="3545"/> + <Point x="4549" y="3539"/> + <Point x="4536" y="3539"/> + <Point x="4533" y="3536"/> + <Point x="4533" y="3478"/> + <Point x="4534" y="3464"/> + <Point x="4532" y="3440"/> + <Point x="4532" y="3411"/> + <Point x="4551" y="3397"/> + <Point x="4534" y="3397"/> + <Point x="4531" y="3394"/> + <Point x="4531" y="3375"/> + <Point x="4532" y="3356"/> + <Point x="4532" y="3298"/> + <Point x="4546" y="3287"/> + <Point x="4533" y="3287"/> + <Point x="4530" y="3284"/> + <Point x="4530" y="3193"/> + <Point x="4549" y="3179"/> + <Point x="4532" y="3179"/> + <Point x="4529" y="3176"/> + <Point x="4529" y="3157"/> + <Point x="4530" y="3138"/> + <Point x="4530" y="3120"/> + <Point x="4546" y="3105"/> + <Point x="4530" y="3105"/> + <Point x="4527" y="3102"/> + <Point x="4527" y="3039"/> + <Point x="4528" y="3029"/> + <Point x="4528" y="3007"/> + <Point x="4545" y="2996"/> + <Point x="4528" y="2996"/> + <Point x="4525" y="2993"/> + <Point x="4525" y="2829"/> + <Point x="4534" y="2818"/> + <Point x="4522" y="2818"/> + <Point x="4522" y="2758"/> + <Point x="4521" y="2748"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>The “Author of Reflections on the Currency” says +that our correspondent treats the averages as if pub- +lished for twelve weeks “when they really are for +thirteen.” As this is a matter of fact easily ascer- +tained, it is but right we should notice that the +period embraced by the Gazette returns is 84 days, +or precisely twelve weeks. From 28 April to 21 +July, 1840, for instance, is exactly that period of +time. Therefore the “Author of Reflections on the +Currency” is wrong in asserting that the tables were +obtained “by multiplying the averege of thirteen +weeks by three.” The preceding calculations sent +us by our correspondent show that the multiplication +was the average of twelve weeks by three; and that +besides the Gazette returns are not the basis of the +calculation, but only employed as an adjunct until +the weekly statements are again made public. If, +however, the committee on banks of issue should +not call for the continuance of those weekly returns, +or should they be discontinued after they have fulfil- +led the object of their appointment, the Gazette re- +turns would be again necessary to carry on the cal- +culations, and it rests with our correspondent in +Coventry to say how far they could be relied on.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r399" type="paragraph"> + <Coords> + <Point x="4565" y="3576"/> + <Point x="4591" y="3576"/> + <Point x="4594" y="3578"/> + <Point x="4608" y="3578"/> + <Point x="4610" y="3585"/> + <Point x="4625" y="3585"/> + <Point x="4647" y="3578"/> + <Point x="4698" y="3578"/> + <Point x="4704" y="3584"/> + <Point x="4720" y="3584"/> + <Point x="4722" y="3579"/> + <Point x="4735" y="3575"/> + <Point x="4738" y="3575"/> + <Point x="4752" y="3583"/> + <Point x="4781" y="3583"/> + <Point x="4804" y="3582"/> + <Point x="4819" y="3582"/> + <Point x="4821" y="3572"/> + <Point x="4876" y="3572"/> + <Point x="4877" y="3582"/> + <Point x="4890" y="3582"/> + <Point x="4892" y="3571"/> + <Point x="4910" y="3571"/> + <Point x="4892" y="3571"/> + <Point x="4910" y="3571"/> + <Point x="4913" y="3580"/> + <Point x="4941" y="3580"/> + <Point x="4945" y="3576"/> + <Point x="4953" y="3575"/> + <Point x="4958" y="3571"/> + <Point x="4962" y="3571"/> + <Point x="4980" y="3578"/> + <Point x="4982" y="3577"/> + <Point x="4997" y="3577"/> + <Point x="5001" y="3578"/> + <Point x="5013" y="3578"/> + <Point x="5035" y="3576"/> + <Point x="5070" y="3576"/> + <Point x="5091" y="3571"/> + <Point x="5101" y="3566"/> + <Point x="5119" y="3566"/> + <Point x="5122" y="3575"/> + <Point x="5136" y="3575"/> + <Point x="5157" y="3565"/> + <Point x="5179" y="3565"/> + <Point x="5180" y="3573"/> + <Point x="5198" y="3573"/> + <Point x="5199" y="3572"/> + <Point x="5211" y="3572"/> + <Point x="5212" y="3573"/> + <Point x="5224" y="3573"/> + <Point x="5225" y="3572"/> + <Point x="5257" y="3572"/> + <Point x="5259" y="3571"/> + <Point x="5294" y="3562"/> + <Point x="5311" y="3562"/> + <Point x="5314" y="3575"/> + <Point x="5313" y="3603"/> + <Point x="5316" y="3606"/> + <Point x="5316" y="3627"/> + <Point x="5313" y="3630"/> + <Point x="5302" y="3630"/> + <Point x="5313" y="3630"/> + <Point x="5302" y="3630"/> + <Point x="5316" y="3646"/> + <Point x="5316" y="3664"/> + <Point x="5315" y="3667"/> + <Point x="5316" y="3688"/> + <Point x="5294" y="3695"/> + <Point x="5294" y="3702"/> + <Point x="5299" y="3716"/> + <Point x="5313" y="3716"/> + <Point x="5299" y="3716"/> + <Point x="5313" y="3716"/> + <Point x="5316" y="3719"/> + <Point x="5316" y="3737"/> + <Point x="5313" y="3740"/> + <Point x="5299" y="3740"/> + <Point x="5313" y="3740"/> + <Point x="5299" y="3740"/> + <Point x="5315" y="3754"/> + <Point x="5316" y="3772"/> + <Point x="5299" y="3789"/> + <Point x="5314" y="3789"/> + <Point x="5299" y="3789"/> + <Point x="5314" y="3789"/> + <Point x="5317" y="3792"/> + <Point x="5317" y="3808"/> + <Point x="5301" y="3825"/> + <Point x="5315" y="3825"/> + <Point x="5301" y="3825"/> + <Point x="5315" y="3825"/> + <Point x="5317" y="3828"/> + <Point x="5317" y="3845"/> + <Point x="5302" y="3866"/> + <Point x="5313" y="3866"/> + <Point x="5302" y="3866"/> + <Point x="5313" y="3866"/> + <Point x="5316" y="3869"/> + <Point x="5316" y="3875"/> + <Point x="5317" y="3899"/> + <Point x="5317" y="3916"/> + <Point x="5315" y="3919"/> + <Point x="5302" y="3919"/> + <Point x="5315" y="3919"/> + <Point x="5302" y="3919"/> + <Point x="5317" y="3935"/> + <Point x="5317" y="3995"/> + <Point x="5306" y="3999"/> + <Point x="5316" y="3999"/> + <Point x="5306" y="3999"/> + <Point x="5316" y="3999"/> + <Point x="5317" y="4002"/> + <Point x="5317" y="4022"/> + <Point x="5316" y="4025"/> + <Point x="5306" y="4025"/> + <Point x="5316" y="4025"/> + <Point x="5306" y="4025"/> + <Point x="5317" y="4040"/> + <Point x="5317" y="4057"/> + <Point x="5316" y="4060"/> + <Point x="5305" y="4060"/> + <Point x="5316" y="4060"/> + <Point x="5305" y="4060"/> + <Point x="5317" y="4069"/> + <Point x="5317" y="4093"/> + <Point x="5304" y="4109"/> + <Point x="5315" y="4109"/> + <Point x="5304" y="4109"/> + <Point x="5315" y="4109"/> + <Point x="5317" y="4112"/> + <Point x="5317" y="4128"/> + <Point x="5315" y="4131"/> + <Point x="5304" y="4131"/> + <Point x="5315" y="4131"/> + <Point x="5304" y="4131"/> + <Point x="5316" y="4141"/> + <Point x="5316" y="4165"/> + <Point x="5302" y="4183"/> + <Point x="5316" y="4183"/> + <Point x="5302" y="4183"/> + <Point x="5316" y="4183"/> + <Point x="5317" y="4186"/> + <Point x="5317" y="4202"/> + <Point x="5316" y="4205"/> + <Point x="5302" y="4205"/> + <Point x="5316" y="4205"/> + <Point x="5302" y="4205"/> + <Point x="5318" y="4221"/> + <Point x="5318" y="4238"/> + <Point x="5304" y="4254"/> + <Point x="5321" y="4254"/> + <Point x="5321" y="4274"/> + <Point x="5323" y="4286"/> + <Point x="5323" y="4295"/> + <Point x="5321" y="4313"/> + <Point x="5311" y="4338"/> + <Point x="5319" y="4338"/> + <Point x="5319" y="4351"/> + <Point x="5311" y="4351"/> + <Point x="5306" y="4350"/> + <Point x="5281" y="4350"/> + <Point x="5279" y="4351"/> + <Point x="5264" y="4351"/> + <Point x="5263" y="4355"/> + <Point x="5243" y="4355"/> + <Point x="5237" y="4352"/> + <Point x="5180" y="4352"/> + <Point x="5168" y="4353"/> + <Point x="5117" y="4353"/> + <Point x="5115" y="4354"/> + <Point x="5075" y="4354"/> + <Point x="5072" y="4355"/> + <Point x="5058" y="4355"/> + <Point x="5055" y="4354"/> + <Point x="5038" y="4354"/> + <Point x="5036" y="4355"/> + <Point x="5021" y="4355"/> + <Point x="5020" y="4356"/> + <Point x="5006" y="4356"/> + <Point x="4994" y="4357"/> + <Point x="4897" y="4357"/> + <Point x="4893" y="4358"/> + <Point x="4887" y="4358"/> + <Point x="4874" y="4359"/> + <Point x="4845" y="4359"/> + <Point x="4843" y="4360"/> + <Point x="4808" y="4360"/> + <Point x="4795" y="4369"/> + <Point x="4778" y="4369"/> + <Point x="4763" y="4362"/> + <Point x="4760" y="4361"/> + <Point x="4744" y="4361"/> + <Point x="4743" y="4362"/> + <Point x="4707" y="4362"/> + <Point x="4706" y="4363"/> + <Point x="4664" y="4363"/> + <Point x="4661" y="4364"/> + <Point x="4603" y="4364"/> + <Point x="4598" y="4369"/> + <Point x="4584" y="4369"/> + <Point x="4583" y="4364"/> + <Point x="4568" y="4364"/> + <Point x="4563" y="4371"/> + <Point x="4547" y="4371"/> + <Point x="4546" y="4344"/> + <Point x="4544" y="4329"/> + <Point x="4541" y="4326"/> + <Point x="4541" y="4299"/> + <Point x="4542" y="4293"/> + <Point x="4539" y="4290"/> + <Point x="4539" y="4228"/> + <Point x="4553" y="4220"/> + <Point x="4541" y="4220"/> + <Point x="4538" y="4217"/> + <Point x="4538" y="4118"/> + <Point x="4547" y="4111"/> + <Point x="4540" y="4111"/> + <Point x="4537" y="4108"/> + <Point x="4537" y="4047"/> + <Point x="4538" y="4037"/> + <Point x="4538" y="4014"/> + <Point x="4556" y="4004"/> + <Point x="4540" y="4004"/> + <Point x="4537" y="4001"/> + <Point x="4537" y="3983"/> + <Point x="4555" y="3969"/> + <Point x="4539" y="3969"/> + <Point x="4536" y="3966"/> + <Point x="4536" y="3913"/> + <Point x="4538" y="3907"/> + <Point x="4536" y="3904"/> + <Point x="4535" y="3842"/> + <Point x="4537" y="3825"/> + <Point x="4537" y="3807"/> + <Point x="4539" y="3791"/> + <Point x="4536" y="3788"/> + <Point x="4536" y="3770"/> + <Point x="4537" y="3751"/> + <Point x="4534" y="3725"/> + <Point x="4533" y="3719"/> + <Point x="4533" y="3622"/> + <Point x="4548" y="3622"/> + <Point x="4550" y="3621"/> + <Point x="4565" y="3621"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>The “Author of Reflections on the Currency” +says his “own opinions” on the currency are, that +“it ought to be regulated by operating upon the rate +of interest, and not upon the amount of circulation.” +Without attempting to follow his reasonings, we +would briefly remark that they contain nothing new +upon the point, and that Mr. Tooke was unable to +support the same theory before the committee. The +questions and answers at pp. 356 and 357 of the Re- +port show that it would be impossible to arrest the +drain of bullion by means of any rational operation +on the rate of interest. Mr. Tooke, in attempting +to show that it could he done by such means without +diminishing the amount of notes in circulation, was +involved in a labyrinth of contradiction, from which +he could not escape, and the “Author of Reflections +on the Currency” does not make the theory, which +really belongs to Mr. Tooke, and not to him, one +iota stronger. It is in accordance with common +sense that in proportion as the bullion leaves the +Bank the directors ought to diminish the amount of +paper which they have in issue convertible into gold.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r400" type="paragraph"> + <Coords> + <Point x="4572" y="4370"/> + <Point x="4607" y="4370"/> + <Point x="4618" y="4376"/> + <Point x="4630" y="4376"/> + <Point x="4633" y="4375"/> + <Point x="4646" y="4375"/> + <Point x="4648" y="4376"/> + <Point x="4661" y="4376"/> + <Point x="4670" y="4375"/> + <Point x="4710" y="4375"/> + <Point x="4712" y="4374"/> + <Point x="4751" y="4374"/> + <Point x="4754" y="4373"/> + <Point x="4769" y="4373"/> + <Point x="4771" y="4370"/> + <Point x="4782" y="4370"/> + <Point x="4794" y="4372"/> + <Point x="4838" y="4372"/> + <Point x="4840" y="4371"/> + <Point x="4852" y="4362"/> + <Point x="4873" y="4362"/> + <Point x="4885" y="4361"/> + <Point x="4902" y="4361"/> + <Point x="4904" y="4369"/> + <Point x="4933" y="4369"/> + <Point x="4935" y="4360"/> + <Point x="4942" y="4360"/> + <Point x="4946" y="4368"/> + <Point x="4977" y="4368"/> + <Point x="4979" y="4367"/> + <Point x="5004" y="4367"/> + <Point x="5015" y="4359"/> + <Point x="5031" y="4359"/> + <Point x="5034" y="4367"/> + <Point x="5049" y="4367"/> + <Point x="5052" y="4359"/> + <Point x="5059" y="4359"/> + <Point x="5062" y="4366"/> + <Point x="5098" y="4366"/> + <Point x="5122" y="4357"/> + <Point x="5129" y="4357"/> + <Point x="5133" y="4365"/> + <Point x="5149" y="4365"/> + <Point x="5173" y="4360"/> + <Point x="5181" y="4357"/> + <Point x="5201" y="4357"/> + <Point x="5205" y="4364"/> + <Point x="5219" y="4364"/> + <Point x="5241" y="4356"/> + <Point x="5265" y="4356"/> + <Point x="5269" y="4362"/> + <Point x="5285" y="4362"/> + <Point x="5288" y="4363"/> + <Point x="5302" y="4363"/> + <Point x="5306" y="4368"/> + <Point x="5318" y="4368"/> + <Point x="5306" y="4368"/> + <Point x="5318" y="4368"/> + <Point x="5320" y="4371"/> + <Point x="5320" y="4377"/> + <Point x="5311" y="4410"/> + <Point x="5317" y="4410"/> + <Point x="5311" y="4410"/> + <Point x="5317" y="4410"/> + <Point x="5320" y="4413"/> + <Point x="5320" y="4420"/> + <Point x="5317" y="4423"/> + <Point x="5311" y="4423"/> + <Point x="5317" y="4423"/> + <Point x="5311" y="4423"/> + <Point x="5325" y="4437"/> + <Point x="5327" y="4463"/> + <Point x="5327" y="4488"/> + <Point x="5320" y="4494"/> + <Point x="5313" y="4494"/> + <Point x="5320" y="4494"/> + <Point x="5313" y="4494"/> + <Point x="5325" y="4510"/> + <Point x="5320" y="4531"/> + <Point x="5310" y="4531"/> + <Point x="5320" y="4531"/> + <Point x="5310" y="4531"/> + <Point x="5307" y="4532"/> + <Point x="5293" y="4532"/> + <Point x="5292" y="4531"/> + <Point x="5274" y="4540"/> + <Point x="5256" y="4540"/> + <Point x="5254" y="4533"/> + <Point x="5241" y="4533"/> + <Point x="5239" y="4532"/> + <Point x="5223" y="4532"/> + <Point x="5221" y="4533"/> + <Point x="5190" y="4533"/> + <Point x="5190" y="4568"/> + <Point x="5156" y="4568"/> + <Point x="5120" y="4570"/> + <Point x="5120" y="4577"/> + <Point x="5101" y="4577"/> + <Point x="5089" y="4572"/> + <Point x="5084" y="4572"/> + <Point x="5081" y="4571"/> + <Point x="5051" y="4571"/> + <Point x="5039" y="4572"/> + <Point x="5024" y="4572"/> + <Point x="5022" y="4571"/> + <Point x="5011" y="4571"/> + <Point x="4998" y="4574"/> + <Point x="4991" y="4574"/> + <Point x="4989" y="4573"/> + <Point x="4949" y="4569"/> + <Point x="4950" y="4578"/> + <Point x="4939" y="4580"/> + <Point x="4927" y="4577"/> + <Point x="4927" y="4574"/> + <Point x="4900" y="4574"/> + <Point x="4900" y="4575"/> + <Point x="4886" y="4575"/> + <Point x="4884" y="4576"/> + <Point x="4868" y="4576"/> + <Point x="4854" y="4582"/> + <Point x="4847" y="4582"/> + <Point x="4833" y="4576"/> + <Point x="4831" y="4577"/> + <Point x="4818" y="4577"/> + <Point x="4816" y="4576"/> + <Point x="4799" y="4576"/> + <Point x="4795" y="4584"/> + <Point x="4778" y="4584"/> + <Point x="4774" y="4577"/> + <Point x="4769" y="4578"/> + <Point x="4752" y="4578"/> + <Point x="4730" y="4579"/> + <Point x="4704" y="4579"/> + <Point x="4690" y="4581"/> + <Point x="4664" y="4581"/> + <Point x="4661" y="4580"/> + <Point x="4647" y="4580"/> + <Point x="4645" y="4581"/> + <Point x="4602" y="4581"/> + <Point x="4599" y="4580"/> + <Point x="4592" y="4580"/> + <Point x="4588" y="4581"/> + <Point x="4542" y="4581"/> + <Point x="4544" y="4515"/> + <Point x="4556" y="4510"/> + <Point x="4545" y="4510"/> + <Point x="4544" y="4507"/> + <Point x="4544" y="4483"/> + <Point x="4541" y="4472"/> + <Point x="4541" y="4403"/> + <Point x="4561" y="4403"/> + <Point x="4564" y="4413"/> + <Point x="4575" y="4413"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>There was not much business doing in the Eng- +lish Funds to‑day, but prices continue to improve. +Consols for the opening were quoted at 88 5/8 to ¾ in +the early part of the day, but towards the close of +business the price advanced to 88 ¾ to 7/8. Exchequer +Bills were 1s. higher, being 3s. to 5s. prem.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r401" type="paragraph"> + <Coords> + <Point x="4574" y="4584"/> + <Point x="4601" y="4584"/> + <Point x="4602" y="4585"/> + <Point x="4619" y="4585"/> + <Point x="4620" y="4593"/> + <Point x="4635" y="4593"/> + <Point x="4647" y="4583"/> + <Point x="4683" y="4583"/> + <Point x="4685" y="4591"/> + <Point x="4728" y="4591"/> + <Point x="4739" y="4581"/> + <Point x="4767" y="4581"/> + <Point x="4771" y="4591"/> + <Point x="4786" y="4591"/> + <Point x="4787" y="4590"/> + <Point x="4797" y="4590"/> + <Point x="4798" y="4581"/> + <Point x="4819" y="4579"/> + <Point x="4821" y="4588"/> + <Point x="4834" y="4588"/> + <Point x="4837" y="4584"/> + <Point x="4848" y="4584"/> + <Point x="4857" y="4587"/> + <Point x="4880" y="4587"/> + <Point x="4882" y="4586"/> + <Point x="4898" y="4586"/> + <Point x="4898" y="4587"/> + <Point x="4910" y="4587"/> + <Point x="4925" y="4578"/> + <Point x="4940" y="4581"/> + <Point x="4943" y="4585"/> + <Point x="4980" y="4585"/> + <Point x="5002" y="4584"/> + <Point x="5035" y="4584"/> + <Point x="5038" y="4575"/> + <Point x="5089" y="4574"/> + <Point x="5097" y="4577"/> + <Point x="5099" y="4583"/> + <Point x="5133" y="4583"/> + <Point x="5136" y="4578"/> + <Point x="5144" y="4575"/> + <Point x="5146" y="4574"/> + <Point x="5223" y="4573"/> + <Point x="5264" y="4573"/> + <Point x="5321" y="4580"/> + <Point x="5325" y="4580"/> + <Point x="5325" y="4641"/> + <Point x="5310" y="4640"/> + <Point x="5307" y="4641"/> + <Point x="5295" y="4641"/> + <Point x="5293" y="4649"/> + <Point x="5276" y="4649"/> + <Point x="5242" y="4642"/> + <Point x="5236" y="4642"/> + <Point x="5233" y="4641"/> + <Point x="5189" y="4641"/> + <Point x="5166" y="4642"/> + <Point x="5153" y="4642"/> + <Point x="5150" y="4643"/> + <Point x="5082" y="4643"/> + <Point x="5080" y="4644"/> + <Point x="5039" y="4644"/> + <Point x="5036" y="4645"/> + <Point x="4974" y="4645"/> + <Point x="4972" y="4655"/> + <Point x="4955" y="4655"/> + <Point x="4927" y="4646"/> + <Point x="4924" y="4645"/> + <Point x="4916" y="4645"/> + <Point x="4893" y="4648"/> + <Point x="4846" y="4648"/> + <Point x="4845" y="4649"/> + <Point x="4803" y="4649"/> + <Point x="4804" y="4650"/> + <Point x="4747" y="4650"/> + <Point x="4718" y="4652"/> + <Point x="4701" y="4652"/> + <Point x="4699" y="4653"/> + <Point x="4686" y="4653"/> + <Point x="4685" y="4654"/> + <Point x="4672" y="4654"/> + <Point x="4669" y="4653"/> + <Point x="4629" y="4653"/> + <Point x="4630" y="4654"/> + <Point x="4636" y="4690"/> + <Point x="4542" y="4690"/> + <Point x="4542" y="4630"/> + <Point x="4560" y="4630"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>The Share Market was firm, and South Westerns +experienced a further improvement of 10s. per +share.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r402" type="paragraph"> + <Coords> + <Point x="4579" y="4694"/> + <Point x="4629" y="4694"/> + <Point x="4632" y="4702"/> + <Point x="4644" y="4702"/> + <Point x="4667" y="4701"/> + <Point x="4690" y="4701"/> + <Point x="4693" y="4700"/> + <Point x="4707" y="4700"/> + <Point x="4709" y="4699"/> + <Point x="4750" y="4699"/> + <Point x="4751" y="4698"/> + <Point x="4765" y="4698"/> + <Point x="4766" y="4690"/> + <Point x="4791" y="4688"/> + <Point x="4809" y="4688"/> + <Point x="4812" y="4697"/> + <Point x="4826" y="4697"/> + <Point x="4829" y="4696"/> + <Point x="4848" y="4696"/> + <Point x="4869" y="4687"/> + <Point x="4885" y="4687"/> + <Point x="4888" y="4695"/> + <Point x="4922" y="4695"/> + <Point x="4945" y="4685"/> + <Point x="4952" y="4685"/> + <Point x="4955" y="4693"/> + <Point x="4972" y="4693"/> + <Point x="4997" y="4688"/> + <Point x="5007" y="4684"/> + <Point x="5026" y="4684"/> + <Point x="5029" y="4693"/> + <Point x="5043" y="4693"/> + <Point x="5073" y="4683"/> + <Point x="5094" y="4683"/> + <Point x="5096" y="4691"/> + <Point x="5124" y="4691"/> + <Point x="5126" y="4690"/> + <Point x="5139" y="4690"/> + <Point x="5139" y="4681"/> + <Point x="5150" y="4681"/> + <Point x="5152" y="4690"/> + <Point x="5168" y="4690"/> + <Point x="5170" y="4689"/> + <Point x="5187" y="4689"/> + <Point x="5218" y="4680"/> + <Point x="5248" y="4680"/> + <Point x="5249" y="4689"/> + <Point x="5282" y="4689"/> + <Point x="5285" y="4688"/> + <Point x="5296" y="4688"/> + <Point x="5297" y="4689"/> + <Point x="5312" y="4689"/> + <Point x="5315" y="4700"/> + <Point x="5321" y="4700"/> + <Point x="5315" y="4700"/> + <Point x="5321" y="4700"/> + <Point x="5324" y="4703"/> + <Point x="5324" y="4715"/> + <Point x="5325" y="4719"/> + <Point x="5325" y="4745"/> + <Point x="5310" y="4767"/> + <Point x="5321" y="4767"/> + <Point x="5310" y="4767"/> + <Point x="5321" y="4767"/> + <Point x="5324" y="4770"/> + <Point x="5324" y="4777"/> + <Point x="5312" y="4803"/> + <Point x="5322" y="4803"/> + <Point x="5312" y="4803"/> + <Point x="5322" y="4803"/> + <Point x="5325" y="4806"/> + <Point x="5325" y="4811"/> + <Point x="5322" y="4814"/> + <Point x="5312" y="4814"/> + <Point x="5322" y="4814"/> + <Point x="5312" y="4814"/> + <Point x="5325" y="4836"/> + <Point x="5325" y="4853"/> + <Point x="5309" y="4869"/> + <Point x="5323" y="4869"/> + <Point x="5309" y="4869"/> + <Point x="5323" y="4869"/> + <Point x="5326" y="4872"/> + <Point x="5326" y="4889"/> + <Point x="5311" y="4905"/> + <Point x="5325" y="4905"/> + <Point x="5311" y="4905"/> + <Point x="5325" y="4905"/> + <Point x="5328" y="4908"/> + <Point x="5328" y="4925"/> + <Point x="5318" y="4934"/> + <Point x="5325" y="4934"/> + <Point x="5318" y="4934"/> + <Point x="5325" y="4934"/> + <Point x="5328" y="4937"/> + <Point x="5328" y="4961"/> + <Point x="5325" y="4964"/> + <Point x="5318" y="4964"/> + <Point x="5325" y="4964"/> + <Point x="5318" y="4964"/> + <Point x="5327" y="4972"/> + <Point x="5327" y="4997"/> + <Point x="5324" y="5005"/> + <Point x="5327" y="5008"/> + <Point x="5327" y="5033"/> + <Point x="5312" y="5050"/> + <Point x="5326" y="5050"/> + <Point x="5312" y="5050"/> + <Point x="5326" y="5050"/> + <Point x="5329" y="5053"/> + <Point x="5329" y="5069"/> + <Point x="5326" y="5072"/> + <Point x="5327" y="5080"/> + <Point x="5327" y="5105"/> + <Point x="5312" y="5121"/> + <Point x="5326" y="5121"/> + <Point x="5312" y="5121"/> + <Point x="5326" y="5121"/> + <Point x="5329" y="5124"/> + <Point x="5329" y="5142"/> + <Point x="5316" y="5164"/> + <Point x="5326" y="5164"/> + <Point x="5316" y="5164"/> + <Point x="5326" y="5164"/> + <Point x="5329" y="5167"/> + <Point x="5329" y="5172"/> + <Point x="5326" y="5175"/> + <Point x="5316" y="5175"/> + <Point x="5326" y="5175"/> + <Point x="5316" y="5175"/> + <Point x="5329" y="5197"/> + <Point x="5329" y="5215"/> + <Point x="5316" y="5230"/> + <Point x="5328" y="5230"/> + <Point x="5316" y="5230"/> + <Point x="5328" y="5230"/> + <Point x="5329" y="5233"/> + <Point x="5329" y="5250"/> + <Point x="5328" y="5253"/> + <Point x="5316" y="5253"/> + <Point x="5328" y="5253"/> + <Point x="5316" y="5253"/> + <Point x="5329" y="5268"/> + <Point x="5329" y="5282"/> + <Point x="5321" y="5311"/> + <Point x="5327" y="5311"/> + <Point x="5321" y="5311"/> + <Point x="5327" y="5311"/> + <Point x="5329" y="5314"/> + <Point x="5329" y="5327"/> + <Point x="5327" y="5330"/> + <Point x="5321" y="5330"/> + <Point x="5327" y="5330"/> + <Point x="5321" y="5330"/> + <Point x="5331" y="5337"/> + <Point x="5332" y="5358"/> + <Point x="5318" y="5371"/> + <Point x="5332" y="5371"/> + <Point x="5332" y="5396"/> + <Point x="5329" y="5436"/> + <Point x="5329" y="5448"/> + <Point x="5332" y="5448"/> + <Point x="5332" y="5460"/> + <Point x="5317" y="5460"/> + <Point x="5329" y="5460"/> + <Point x="5317" y="5460"/> + <Point x="5316" y="5466"/> + <Point x="5304" y="5466"/> + <Point x="5292" y="5502"/> + <Point x="5286" y="5502"/> + <Point x="5283" y="5500"/> + <Point x="5273" y="5500"/> + <Point x="5270" y="5501"/> + <Point x="5184" y="5501"/> + <Point x="5175" y="5508"/> + <Point x="5140" y="5508"/> + <Point x="5121" y="5509"/> + <Point x="5106" y="5509"/> + <Point x="5105" y="5503"/> + <Point x="5068" y="5503"/> + <Point x="5065" y="5504"/> + <Point x="5033" y="5504"/> + <Point x="5025" y="5505"/> + <Point x="5013" y="5505"/> + <Point x="5011" y="5506"/> + <Point x="4929" y="5506"/> + <Point x="4926" y="5513"/> + <Point x="4906" y="5513"/> + <Point x="4898" y="5507"/> + <Point x="4878" y="5507"/> + <Point x="4877" y="5509"/> + <Point x="4811" y="5509"/> + <Point x="4809" y="5510"/> + <Point x="4792" y="5510"/> + <Point x="4789" y="5511"/> + <Point x="4749" y="5511"/> + <Point x="4746" y="5512"/> + <Point x="4714" y="5512"/> + <Point x="4713" y="5513"/> + <Point x="4681" y="5513"/> + <Point x="4673" y="5520"/> + <Point x="4664" y="5520"/> + <Point x="4662" y="5514"/> + <Point x="4627" y="5514"/> + <Point x="4616" y="5515"/> + <Point x="4570" y="5515"/> + <Point x="4569" y="5516"/> + <Point x="4558" y="5516"/> + <Point x="4555" y="5513"/> + <Point x="4555" y="5494"/> + <Point x="4570" y="5481"/> + <Point x="4557" y="5481"/> + <Point x="4554" y="5478"/> + <Point x="4554" y="5425"/> + <Point x="4568" y="5410"/> + <Point x="4556" y="5410"/> + <Point x="4553" y="5407"/> + <Point x="4553" y="5318"/> + <Point x="4555" y="5303"/> + <Point x="4552" y="5300"/> + <Point x="4552" y="5273"/> + <Point x="4555" y="5267"/> + <Point x="4555" y="5234"/> + <Point x="4552" y="5231"/> + <Point x="4552" y="5213"/> + <Point x="4572" y="5198"/> + <Point x="4554" y="5198"/> + <Point x="4572" y="5198"/> + <Point x="4554" y="5198"/> + <Point x="4551" y="5195"/> + <Point x="4551" y="5135"/> + <Point x="4571" y="5125"/> + <Point x="4553" y="5125"/> + <Point x="4550" y="5122"/> + <Point x="4550" y="5032"/> + <Point x="4567" y="5017"/> + <Point x="4551" y="5017"/> + <Point x="4549" y="5014"/> + <Point x="4549" y="4879"/> + <Point x="4561" y="4873"/> + <Point x="4551" y="4873"/> + <Point x="4549" y="4870"/> + <Point x="4549" y="4848"/> + <Point x="4562" y="4837"/> + <Point x="4547" y="4837"/> + <Point x="4546" y="4777"/> + <Point x="4572" y="4764"/> + <Point x="4544" y="4765"/> + <Point x="4544" y="4741"/> + <Point x="4569" y="4739"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>This was settling day in the Foreign House, +where money was in demand, the rates for which +varied from 6 to 8 per cent., according to the secu- +rity offered. Since the last settlement the fluctua- +tions have been somewhat extensive, particularly in +Peninsular securities. Spanish Actives, which were +then at 23 5/8 to ¾, advanced to 24 ½, when, on the +matters in dispute between Spain and Portugal +being made known, a rapid decline took +place to 22½, since which, however, a marked +improvement has taken place in the Active +Stock, which at one period of the day had advanced +to 25¼ for money. In Portuguese, the extreme +fluctuation was also considerable, amounting to up- +wards of 2 per cent., and in South American from +1½ to 2 per cent. Dutch Two‑and‑a‑Half per +Cents. have given way 1 per cent. within the same +period. At the opening of the market this morning, +Spanish Actives were quoted at 24¾ to 7/8, but on +some influential parties appearing as buyers, prices +gradually improved to 25 3/8 to ½, at which they +closed firm. In South American Securities, a fur- +ther improvement took place of nearly ½ per cent.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r403" type="paragraph"> + <Coords> + <Point x="4591" y="5519"/> + <Point x="4612" y="5519"/> + <Point x="4648" y="5526"/> + <Point x="4651" y="5525"/> + <Point x="4662" y="5525"/> + <Point x="4663" y="5526"/> + <Point x="4678" y="5526"/> + <Point x="4678" y="5518"/> + <Point x="4688" y="5518"/> + <Point x="4690" y="5524"/> + <Point x="4701" y="5524"/> + <Point x="4729" y="5514"/> + <Point x="4754" y="5514"/> + <Point x="4729" y="5514"/> + <Point x="4754" y="5514"/> + <Point x="4757" y="5523"/> + <Point x="4768" y="5523"/> + <Point x="4795" y="5518"/> + <Point x="4807" y="5513"/> + <Point x="4822" y="5513"/> + <Point x="4825" y="5520"/> + <Point x="4840" y="5520"/> + <Point x="4863" y="5519"/> + <Point x="4925" y="5519"/> + <Point x="4934" y="5509"/> + <Point x="4940" y="5509"/> + <Point x="4943" y="5518"/> + <Point x="4959" y="5518"/> + <Point x="4962" y="5517"/> + <Point x="5018" y="5517"/> + <Point x="5018" y="5508"/> + <Point x="5032" y="5508"/> + <Point x="5032" y="5516"/> + <Point x="5059" y="5516"/> + <Point x="5061" y="5515"/> + <Point x="5075" y="5515"/> + <Point x="5078" y="5507"/> + <Point x="5095" y="5507"/> + <Point x="5108" y="5515"/> + <Point x="5140" y="5513"/> + <Point x="5141" y="5511"/> + <Point x="5152" y="5511"/> + <Point x="5179" y="5510"/> + <Point x="5184" y="5506"/> + <Point x="5228" y="5506"/> + <Point x="5266" y="5509"/> + <Point x="5267" y="5512"/> + <Point x="5283" y="5512"/> + <Point x="5301" y="5506"/> + <Point x="5312" y="5506"/> + <Point x="5324" y="5514"/> + <Point x="5330" y="5514"/> + <Point x="5335" y="5513"/> + <Point x="5335" y="5606"/> + <Point x="5315" y="5607"/> + <Point x="5319" y="5644"/> + <Point x="5264" y="5644"/> + <Point x="5262" y="5643"/> + <Point x="5250" y="5643"/> + <Point x="5246" y="5650"/> + <Point x="5231" y="5650"/> + <Point x="5220" y="5644"/> + <Point x="5200" y="5644"/> + <Point x="5198" y="5643"/> + <Point x="5182" y="5643"/> + <Point x="5170" y="5645"/> + <Point x="5154" y="5645"/> + <Point x="5154" y="5644"/> + <Point x="5142" y="5644"/> + <Point x="5130" y="5646"/> + <Point x="5123" y="5646"/> + <Point x="5120" y="5645"/> + <Point x="5082" y="5643"/> + <Point x="5073" y="5652"/> + <Point x="5068" y="5652"/> + <Point x="5069" y="5646"/> + <Point x="5028" y="5646"/> + <Point x="5026" y="5647"/> + <Point x="5003" y="5647"/> + <Point x="4991" y="5648"/> + <Point x="4979" y="5648"/> + <Point x="4976" y="5649"/> + <Point x="4945" y="5649"/> + <Point x="4947" y="5655"/> + <Point x="4926" y="5655"/> + <Point x="4924" y="5649"/> + <Point x="4893" y="5649"/> + <Point x="4891" y="5650"/> + <Point x="4878" y="5650"/> + <Point x="4876" y="5651"/> + <Point x="4834" y="5651"/> + <Point x="4814" y="5660"/> + <Point x="4807" y="5660"/> + <Point x="4796" y="5653"/> + <Point x="4781" y="5653"/> + <Point x="4771" y="5654"/> + <Point x="4743" y="5654"/> + <Point x="4729" y="5658"/> + <Point x="4718" y="5658"/> + <Point x="4713" y="5655"/> + <Point x="4697" y="5655"/> + <Point x="4696" y="5656"/> + <Point x="4666" y="5656"/> + <Point x="4649" y="5664"/> + <Point x="4640" y="5664"/> + <Point x="4640" y="5657"/> + <Point x="4622" y="5657"/> + <Point x="4621" y="5658"/> + <Point x="4591" y="5658"/> + <Point x="4591" y="5659"/> + <Point x="4559" y="5659"/> + <Point x="4557" y="5656"/> + <Point x="4557" y="5629"/> + <Point x="4558" y="5623"/> + <Point x="4555" y="5623"/> + <Point x="4555" y="5602"/> + <Point x="4578" y="5586"/> + <Point x="4554" y="5587"/> + <Point x="4553" y="5554"/> + <Point x="4578" y="5554"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>Consols for the opening closed at 88¾ to 7/8; +Three per Cents. Reduced, 88 7/8 to 9; Three- +and‑a‑Half per Cent. Reduced, 97 3/8 to ½; Bank +Stock, 156½ to 7; Exchequer Bills, 3s. to 5s. prem.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r404" type="paragraph"> + <Coords> + <Point x="4590" y="5662"/> + <Point x="4612" y="5661"/> + <Point x="4615" y="5671"/> + <Point x="4631" y="5671"/> + <Point x="4634" y="5669"/> + <Point x="4666" y="5669"/> + <Point x="4668" y="5661"/> + <Point x="4676" y="5661"/> + <Point x="4678" y="5668"/> + <Point x="4687" y="5659"/> + <Point x="4744" y="5659"/> + <Point x="4752" y="5666"/> + <Point x="4765" y="5666"/> + <Point x="4767" y="5661"/> + <Point x="4780" y="5657"/> + <Point x="4786" y="5657"/> + <Point x="4788" y="5665"/> + <Point x="4804" y="5665"/> + <Point x="4806" y="5664"/> + <Point x="4819" y="5664"/> + <Point x="4821" y="5663"/> + <Point x="4833" y="5663"/> + <Point x="4842" y="5675"/> + <Point x="4864" y="5656"/> + <Point x="4913" y="5656"/> + <Point x="4932" y="5658"/> + <Point x="4943" y="5658"/> + <Point x="4944" y="5661"/> + <Point x="4960" y="5661"/> + <Point x="4981" y="5655"/> + <Point x="4989" y="5655"/> + <Point x="5002" y="5661"/> + <Point x="5009" y="5661"/> + <Point x="5030" y="5650"/> + <Point x="5057" y="5650"/> + <Point x="5060" y="5659"/> + <Point x="5073" y="5659"/> + <Point x="5078" y="5650"/> + <Point x="5091" y="5650"/> + <Point x="5125" y="5658"/> + <Point x="5126" y="5657"/> + <Point x="5139" y="5657"/> + <Point x="5142" y="5647"/> + <Point x="5156" y="5647"/> + <Point x="5160" y="5668"/> + <Point x="5168" y="5668"/> + <Point x="5196" y="5649"/> + <Point x="5217" y="5648"/> + <Point x="5240" y="5654"/> + <Point x="5255" y="5652"/> + <Point x="5259" y="5656"/> + <Point x="5274" y="5656"/> + <Point x="5295" y="5650"/> + <Point x="5309" y="5650"/> + <Point x="5327" y="5658"/> + <Point x="5333" y="5658"/> + <Point x="5327" y="5658"/> + <Point x="5333" y="5658"/> + <Point x="5336" y="5661"/> + <Point x="5336" y="5721"/> + <Point x="5337" y="5729"/> + <Point x="5339" y="5729"/> + <Point x="5338" y="5750"/> + <Point x="5330" y="5776"/> + <Point x="5336" y="5776"/> + <Point x="5330" y="5776"/> + <Point x="5336" y="5776"/> + <Point x="5338" y="5779"/> + <Point x="5338" y="5792"/> + <Point x="5341" y="5798"/> + <Point x="5341" y="5821"/> + <Point x="5340" y="5836"/> + <Point x="5341" y="5868"/> + <Point x="5333" y="5868"/> + <Point x="5321" y="5861"/> + <Point x="5305" y="5861"/> + <Point x="5300" y="5860"/> + <Point x="5291" y="5860"/> + <Point x="5270" y="5861"/> + <Point x="5241" y="5861"/> + <Point x="5215" y="5860"/> + <Point x="5199" y="5860"/> + <Point x="5194" y="5861"/> + <Point x="5184" y="5861"/> + <Point x="5151" y="5870"/> + <Point x="5144" y="5870"/> + <Point x="5139" y="5862"/> + <Point x="5099" y="5862"/> + <Point x="5095" y="5863"/> + <Point x="5081" y="5863"/> + <Point x="5079" y="5864"/> + <Point x="5063" y="5864"/> + <Point x="5061" y="5863"/> + <Point x="5049" y="5863"/> + <Point x="5046" y="5864"/> + <Point x="5009" y="5864"/> + <Point x="4983" y="5873"/> + <Point x="4977" y="5873"/> + <Point x="4962" y="5871"/> + <Point x="4953" y="5871"/> + <Point x="4929" y="5866"/> + <Point x="4901" y="5866"/> + <Point x="4887" y="5899"/> + <Point x="4858" y="5907"/> + <Point x="4848" y="5907"/> + <Point x="4842" y="5904"/> + <Point x="4817" y="5904"/> + <Point x="4779" y="5902"/> + <Point x="4775" y="5910"/> + <Point x="4764" y="5910"/> + <Point x="4758" y="5906"/> + <Point x="4711" y="5906"/> + <Point x="4706" y="5913"/> + <Point x="4698" y="5914"/> + <Point x="4695" y="5907"/> + <Point x="4621" y="5907"/> + <Point x="4559" y="5909"/> + <Point x="4559" y="5850"/> + <Point x="4560" y="5838"/> + <Point x="4557" y="5698"/> + <Point x="4584" y="5698"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>Spanish Actives, 25 3/8 to ½; Deferred, 13 to ¼; +Passive, 6 3/8 to ½; Portuguese Five per Cents., 32¼ +to ¾; ditto Three per Cents., 21 to ½; Dutch Five per +Cents., 97¼ to 3/4; ditto Two‑and‑a‑Half per Cents., +51 1/8 to 1/8; Belgian, 97 to 8; Colombian, 24 +to ½; Mexican, 29 to ½; Peruvian, 15 to 16; +Brazilian, 70½ to 1½.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r406" type="paragraph"> + <Coords> + <Point x="4595" y="5913"/> + <Point x="4632" y="5913"/> + <Point x="4635" y="5921"/> + <Point x="4674" y="5921"/> + <Point x="4677" y="5912"/> + <Point x="4684" y="5912"/> + <Point x="4687" y="5920"/> + <Point x="4702" y="5920"/> + <Point x="4705" y="5919"/> + <Point x="4723" y="5910"/> + <Point x="4739" y="5910"/> + <Point x="4742" y="5918"/> + <Point x="4758" y="5918"/> + <Point x="4759" y="5917"/> + <Point x="4785" y="5917"/> + <Point x="4791" y="5909"/> + <Point x="4801" y="5909"/> + <Point x="4822" y="5907"/> + <Point x="4849" y="5909"/> + <Point x="4855" y="5910"/> + <Point x="4862" y="5910"/> + <Point x="4866" y="5927"/> + <Point x="4872" y="5927"/> + <Point x="4884" y="5908"/> + <Point x="4900" y="5908"/> + <Point x="4905" y="5907"/> + <Point x="4916" y="5907"/> + <Point x="4927" y="5908"/> + <Point x="4938" y="5908"/> + <Point x="4938" y="5913"/> + <Point x="4955" y="5913"/> + <Point x="4963" y="5906"/> + <Point x="4979" y="5906"/> + <Point x="4981" y="5903"/> + <Point x="4997" y="5903"/> + <Point x="5003" y="5912"/> + <Point x="5033" y="5912"/> + <Point x="5035" y="5913"/> + <Point x="5048" y="5913"/> + <Point x="5050" y="5911"/> + <Point x="5076" y="5911"/> + <Point x="5081" y="5922"/> + <Point x="5087" y="5922"/> + <Point x="5095" y="5912"/> + <Point x="5102" y="5912"/> + <Point x="5114" y="5903"/> + <Point x="5130" y="5903"/> + <Point x="5133" y="5900"/> + <Point x="5144" y="5900"/> + <Point x="5143" y="5906"/> + <Point x="5154" y="5906"/> + <Point x="5155" y="5905"/> + <Point x="5166" y="5905"/> + <Point x="5167" y="5909"/> + <Point x="5183" y="5909"/> + <Point x="5198" y="5901"/> + <Point x="5207" y="5901"/> + <Point x="5211" y="5904"/> + <Point x="5222" y="5904"/> + <Point x="5231" y="5909"/> + <Point x="5239" y="5900"/> + <Point x="5261" y="5900"/> + <Point x="5263" y="5909"/> + <Point x="5290" y="5909"/> + <Point x="5292" y="5908"/> + <Point x="5318" y="5908"/> + <Point x="5317" y="5898"/> + <Point x="5332" y="5898"/> + <Point x="5334" y="5920"/> + <Point x="5341" y="5920"/> + <Point x="5334" y="5920"/> + <Point x="5341" y="5920"/> + <Point x="5344" y="5923"/> + <Point x="5344" y="5937"/> + <Point x="5335" y="5946"/> + <Point x="5341" y="5946"/> + <Point x="5335" y="5946"/> + <Point x="5341" y="5946"/> + <Point x="5344" y="5949"/> + <Point x="5344" y="5972"/> + <Point x="5345" y="5977"/> + <Point x="5345" y="6001"/> + <Point x="5336" y="6028"/> + <Point x="5343" y="6028"/> + <Point x="5336" y="6028"/> + <Point x="5343" y="6028"/> + <Point x="5345" y="6031"/> + <Point x="5345" y="6045"/> + <Point x="5338" y="6057"/> + <Point x="5345" y="6057"/> + <Point x="5338" y="6057"/> + <Point x="5345" y="6057"/> + <Point x="5345" y="6089"/> + <Point x="5338" y="6089"/> + <Point x="5345" y="6089"/> + <Point x="5338" y="6089"/> + <Point x="5345" y="6093"/> + <Point x="5345" y="6113"/> + <Point x="5344" y="6118"/> + <Point x="5344" y="6143"/> + <Point x="5341" y="6146"/> + <Point x="5327" y="6146"/> + <Point x="5341" y="6146"/> + <Point x="5291" y="6146"/> + <Point x="5267" y="6144"/> + <Point x="5233" y="6144"/> + <Point x="5229" y="6143"/> + <Point x="5195" y="6143"/> + <Point x="5194" y="6144"/> + <Point x="5156" y="6144"/> + <Point x="5118" y="6152"/> + <Point x="5111" y="6152"/> + <Point x="5096" y="6145"/> + <Point x="5048" y="6145"/> + <Point x="5024" y="6146"/> + <Point x="5008" y="6146"/> + <Point x="4985" y="6181"/> + <Point x="4900" y="6181"/> + <Point x="4889" y="6182"/> + <Point x="4877" y="6182"/> + <Point x="4874" y="6183"/> + <Point x="4861" y="6183"/> + <Point x="4854" y="6187"/> + <Point x="4816" y="6187"/> + <Point x="4802" y="6184"/> + <Point x="4774" y="6184"/> + <Point x="4763" y="6185"/> + <Point x="4739" y="6187"/> + <Point x="4726" y="6189"/> + <Point x="4719" y="6185"/> + <Point x="4564" y="6189"/> + <Point x="4566" y="6095"/> + <Point x="4569" y="6088"/> + <Point x="4569" y="6065"/> + <Point x="4568" y="6053"/> + <Point x="4568" y="6025"/> + <Point x="4566" y="6015"/> + <Point x="4566" y="5989"/> + <Point x="4582" y="5983"/> + <Point x="4562" y="5984"/> + <Point x="4562" y="5952"/> + <Point x="4582" y="5952"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>Birmingham (old), 81 to 83 prem.; ditto (¼ shares), +22 to 4; South Western, 56 to 7 per share; +Great Western, 25½ to 6½ prem.; Manchester and +Leeds, 6 to 8 prem.; Manchester and Birmingham, +15 to 13 dis.; Birmingham and Derby, 28 to 6 dis.; +Gosport Junction, 5 to 6 prem.; Brighton, 6 to +5½ dis.; Blackwall, 4½ to 4 dis.; London and +Greenwich, 8 to ½ per share.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r407" type="paragraph"> + <Coords> + <Point x="4600" y="6192"/> + <Point x="4623" y="6191"/> + <Point x="4625" y="6192"/> + <Point x="4640" y="6192"/> + <Point x="4643" y="6200"/> + <Point x="4658" y="6200"/> + <Point x="4669" y="6190"/> + <Point x="4683" y="6190"/> + <Point x="4697" y="6191"/> + <Point x="4703" y="6191"/> + <Point x="4707" y="6190"/> + <Point x="4714" y="6190"/> + <Point x="4716" y="6198"/> + <Point x="4755" y="6198"/> + <Point x="4758" y="6190"/> + <Point x="4765" y="6190"/> + <Point x="4768" y="6196"/> + <Point x="4804" y="6196"/> + <Point x="4817" y="6195"/> + <Point x="4855" y="6195"/> + <Point x="4857" y="6194"/> + <Point x="4885" y="6194"/> + <Point x="4908" y="6189"/> + <Point x="4919" y="6189"/> + <Point x="4921" y="6186"/> + <Point x="4936" y="6186"/> + <Point x="4939" y="6192"/> + <Point x="4953" y="6192"/> + <Point x="4976" y="6191"/> + <Point x="4991" y="6191"/> + <Point x="4993" y="6182"/> + <Point x="5021" y="6182"/> + <Point x="5037" y="6180"/> + <Point x="5060" y="6180"/> + <Point x="5072" y="6181"/> + <Point x="5080" y="6189"/> + <Point x="5114" y="6189"/> + <Point x="5116" y="6188"/> + <Point x="5132" y="6188"/> + <Point x="5132" y="6179"/> + <Point x="5146" y="6180"/> + <Point x="5146" y="6188"/> + <Point x="5161" y="6188"/> + <Point x="5162" y="6178"/> + <Point x="5185" y="6180"/> + <Point x="5217" y="6188"/> + <Point x="5220" y="6189"/> + <Point x="5250" y="6181"/> + <Point x="5260" y="6181"/> + <Point x="5259" y="6188"/> + <Point x="5276" y="6188"/> + <Point x="5300" y="6180"/> + <Point x="5324" y="6180"/> + <Point x="5325" y="6189"/> + <Point x="5342" y="6189"/> + <Point x="5342" y="6213"/> + <Point x="5325" y="6214"/> + <Point x="5323" y="6213"/> + <Point x="5306" y="6213"/> + <Point x="5305" y="6214"/> + <Point x="5259" y="6214"/> + <Point x="5257" y="6213"/> + <Point x="5184" y="6213"/> + <Point x="5181" y="6212"/> + <Point x="5175" y="6212"/> + <Point x="5174" y="6213"/> + <Point x="5146" y="6213"/> + <Point x="5144" y="6212"/> + <Point x="5134" y="6212"/> + <Point x="5132" y="6213"/> + <Point x="5104" y="6241"/> + <Point x="5069" y="6242"/> + <Point x="5066" y="6249"/> + <Point x="5060" y="6249"/> + <Point x="5045" y="6252"/> + <Point x="5026" y="6252"/> + <Point x="5012" y="6248"/> + <Point x="5009" y="6249"/> + <Point x="4937" y="6249"/> + <Point x="4928" y="6252"/> + <Point x="4910" y="6252"/> + <Point x="4908" y="6250"/> + <Point x="4881" y="6250"/> + <Point x="4881" y="6251"/> + <Point x="4851" y="6251"/> + <Point x="4847" y="6252"/> + <Point x="4832" y="6252"/> + <Point x="4820" y="6253"/> + <Point x="4797" y="6253"/> + <Point x="4794" y="6254"/> + <Point x="4619" y="6255"/> + <Point x="4567" y="6257"/> + <Point x="4566" y="6228"/> + <Point x="4596" y="6227"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>The following were the official quotations in the +different markets during the day:—</Unicode></TextEquiv></TextRegion> + <TextRegion id="r408" type="heading"> + <Coords> + <Point x="4822" y="6254"/> + <Point x="4951" y="6253"/> + <Point x="5051" y="6253"/> + <Point x="5056" y="6259"/> + <Point x="5059" y="6263"/> + <Point x="5064" y="6270"/> + <Point x="5060" y="6272"/> + <Point x="5020" y="6272"/> + <Point x="5014" y="6270"/> + <Point x="5003" y="6270"/> + <Point x="4999" y="6271"/> + <Point x="4995" y="6273"/> + <Point x="4987" y="6274"/> + <Point x="4982" y="6273"/> + <Point x="4977" y="6274"/> + <Point x="4962" y="6274"/> + <Point x="4958" y="6270"/> + <Point x="4949" y="6270"/> + <Point x="4942" y="6276"/> + <Point x="4926" y="6277"/> + <Point x="4924" y="6278"/> + <Point x="4846" y="6278"/> + <Point x="4842" y="6280"/> + <Point x="4822" y="6280"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>ENGLISH FUNDS.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r409" type="paragraph"> + <Coords> + <Point x="4962" y="6275"/> + <Point x="4977" y="6275"/> + <Point x="4991" y="6279"/> + <Point x="4994" y="6278"/> + <Point x="5005" y="6278"/> + <Point x="5006" y="6272"/> + <Point x="5044" y="6274"/> + <Point x="5047" y="6276"/> + <Point x="5053" y="6276"/> + <Point x="5057" y="6278"/> + <Point x="5075" y="6278"/> + <Point x="5079" y="6271"/> + <Point x="5119" y="6271"/> + <Point x="5123" y="6276"/> + <Point x="5125" y="6277"/> + <Point x="5134" y="6277"/> + <Point x="5144" y="6272"/> + <Point x="5156" y="6272"/> + <Point x="5161" y="6277"/> + <Point x="5170" y="6277"/> + <Point x="5172" y="6276"/> + <Point x="5190" y="6276"/> + <Point x="5193" y="6284"/> + <Point x="5199" y="6284"/> + <Point x="5209" y="6274"/> + <Point x="5240" y="6274"/> + <Point x="5230" y="6274"/> + <Point x="5240" y="6274"/> + <Point x="5243" y="6277"/> + <Point x="5243" y="6293"/> + <Point x="5258" y="6294"/> + <Point x="5277" y="6294"/> + <Point x="5278" y="6299"/> + <Point x="5279" y="6317"/> + <Point x="5301" y="6318"/> + <Point x="5312" y="6318"/> + <Point x="5344" y="6317"/> + <Point x="5344" y="6339"/> + <Point x="5337" y="6339"/> + <Point x="5340" y="6339"/> + <Point x="5337" y="6339"/> + <Point x="5312" y="6341"/> + <Point x="5266" y="6341"/> + <Point x="5248" y="6344"/> + <Point x="5242" y="6344"/> + <Point x="5232" y="6379"/> + <Point x="5200" y="6409"/> + <Point x="5044" y="6406"/> + <Point x="4963" y="6406"/> + <Point x="4964" y="6338"/> + <Point x="4964" y="6320"/> + <Point x="4963" y="6318"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>Bank Stock for Acc., 158 +Consols for op., 88¾ 5/8 ¾ 7/8 +Exc�e�uer Billis. £1,000, 2 5 3 pm. +Ditto £500, 4 2 5 3 pm. +Ditto Small, 4 6 pm.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r412" type="heading"> + <Coords> + <Point x="5443" y="1401"/> + <Point x="5466" y="1401"/> + <Point x="5471" y="1400"/> + <Point x="5496" y="1400"/> + <Point x="5500" y="1397"/> + <Point x="5560" y="1397"/> + <Point x="5565" y="1395"/> + <Point x="5590" y="1395"/> + <Point x="5593" y="1392"/> + <Point x="5625" y="1392"/> + <Point x="5643" y="1390"/> + <Point x="5667" y="1390"/> + <Point x="5667" y="1389"/> + <Point x="5728" y="1386"/> + <Point x="5875" y="1385"/> + <Point x="5970" y="1385"/> + <Point x="5976" y="1402"/> + <Point x="5976" y="1418"/> + <Point x="5971" y="1423"/> + <Point x="5966" y="1423"/> + <Point x="5945" y="1420"/> + <Point x="5942" y="1419"/> + <Point x="5757" y="1419"/> + <Point x="5753" y="1420"/> + <Point x="5725" y="1420"/> + <Point x="5718" y="1421"/> + <Point x="5698" y="1421"/> + <Point x="5695" y="1422"/> + <Point x="5667" y="1422"/> + <Point x="5667" y="1424"/> + <Point x="5643" y="1424"/> + <Point x="5625" y="1426"/> + <Point x="5593" y="1426"/> + <Point x="5590" y="1428"/> + <Point x="5565" y="1428"/> + <Point x="5560" y="1429"/> + <Point x="5534" y="1429"/> + <Point x="5530" y="1430"/> + <Point x="5438" y="1435"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>LONDON TRADE REPORT.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r413" type="paragraph"> + <Coords> + <Point x="5350" y="1466"/> + <Point x="5376" y="1467"/> + <Point x="5379" y="1475"/> + <Point x="5394" y="1475"/> + <Point x="5399" y="1473"/> + <Point x="5413" y="1473"/> + <Point x="5417" y="1472"/> + <Point x="5430" y="1472"/> + <Point x="5433" y="1471"/> + <Point x="5484" y="1469"/> + <Point x="5500" y="1469"/> + <Point x="5520" y="1460"/> + <Point x="5538" y="1460"/> + <Point x="5542" y="1466"/> + <Point x="5556" y="1466"/> + <Point x="5559" y="1465"/> + <Point x="5591" y="1465"/> + <Point x="5595" y="1464"/> + <Point x="5602" y="1464"/> + <Point x="5605" y="1463"/> + <Point x="5621" y="1463"/> + <Point x="5623" y="1462"/> + <Point x="5638" y="1462"/> + <Point x="5641" y="1473"/> + <Point x="5646" y="1473"/> + <Point x="5653" y="1466"/> + <Point x="5679" y="1466"/> + <Point x="5681" y="1451"/> + <Point x="5708" y="1450"/> + <Point x="5709" y="1454"/> + <Point x="5723" y="1454"/> + <Point x="5726" y="1458"/> + <Point x="5739" y="1458"/> + <Point x="5763" y="1447"/> + <Point x="5780" y="1447"/> + <Point x="5778" y="1456"/> + <Point x="5845" y="1456"/> + <Point x="5848" y="1448"/> + <Point x="5891" y="1448"/> + <Point x="5929" y="1447"/> + <Point x="5945" y="1449"/> + <Point x="5950" y="1447"/> + <Point x="5966" y="1447"/> + <Point x="5996" y="1452"/> + <Point x="5999" y="1453"/> + <Point x="6006" y="1451"/> + <Point x="6022" y="1454"/> + <Point x="6032" y="1455"/> + <Point x="6036" y="1466"/> + <Point x="6052" y="1471"/> + <Point x="6062" y="1462"/> + <Point x="6074" y="1462"/> + <Point x="6074" y="1504"/> + <Point x="6073" y="1531"/> + <Point x="6021" y="1529"/> + <Point x="6022" y="1520"/> + <Point x="6010" y="1520"/> + <Point x="6008" y="1526"/> + <Point x="5998" y="1526"/> + <Point x="5991" y="1517"/> + <Point x="5972" y="1517"/> + <Point x="5969" y="1516"/> + <Point x="5957" y="1516"/> + <Point x="5955" y="1514"/> + <Point x="5945" y="1514"/> + <Point x="5942" y="1515"/> + <Point x="5930" y="1515"/> + <Point x="5909" y="1514"/> + <Point x="5887" y="1514"/> + <Point x="5867" y="1517"/> + <Point x="5781" y="1517"/> + <Point x="5764" y="1545"/> + <Point x="5759" y="1545"/> + <Point x="5753" y="1546"/> + <Point x="5741" y="1546"/> + <Point x="5737" y="1547"/> + <Point x="5727" y="1547"/> + <Point x="5726" y="1548"/> + <Point x="5712" y="1548"/> + <Point x="5709" y="1549"/> + <Point x="5686" y="1549"/> + <Point x="5683" y="1550"/> + <Point x="5658" y="1550"/> + <Point x="5646" y="1552"/> + <Point x="5609" y="1552"/> + <Point x="5598" y="1554"/> + <Point x="5585" y="1554"/> + <Point x="5583" y="1561"/> + <Point x="5568" y="1561"/> + <Point x="5552" y="1555"/> + <Point x="5550" y="1556"/> + <Point x="5537" y="1556"/> + <Point x="5534" y="1557"/> + <Point x="5523" y="1557"/> + <Point x="5511" y="1558"/> + <Point x="5479" y="1558"/> + <Point x="5476" y="1559"/> + <Point x="5459" y="1559"/> + <Point x="5456" y="1560"/> + <Point x="5448" y="1560"/> + <Point x="5432" y="1561"/> + <Point x="5320" y="1565"/> + <Point x="5318" y="1549"/> + <Point x="5317" y="1538"/> + <Point x="5317" y="1511"/> + <Point x="5349" y="1511"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>THURSDAY EVENING.—The demand for all kinds of +produce is still almost suspended; and, in consequence, +we have little scope for remark.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r415" type="paragraph"> + <Coords> + <Point x="5358" y="1733"/> + <Point x="5380" y="1732"/> + <Point x="5383" y="1733"/> + <Point x="5397" y="1733"/> + <Point x="5400" y="1739"/> + <Point x="5412" y="1739"/> + <Point x="5426" y="1729"/> + <Point x="5446" y="1729"/> + <Point x="5480" y="1735"/> + <Point x="5483" y="1736"/> + <Point x="5491" y="1736"/> + <Point x="5498" y="1733"/> + <Point x="5529" y="1733"/> + <Point x="5541" y="1732"/> + <Point x="5565" y="1732"/> + <Point x="5568" y="1731"/> + <Point x="5592" y="1731"/> + <Point x="5590" y="1722"/> + <Point x="5609" y="1722"/> + <Point x="5612" y="1729"/> + <Point x="5624" y="1729"/> + <Point x="5627" y="1725"/> + <Point x="5638" y="1725"/> + <Point x="5657" y="1728"/> + <Point x="5667" y="1728"/> + <Point x="5668" y="1719"/> + <Point x="5680" y="1719"/> + <Point x="5681" y="1726"/> + <Point x="5707" y="1726"/> + <Point x="5729" y="1725"/> + <Point x="5740" y="1725"/> + <Point x="5742" y="1724"/> + <Point x="5779" y="1724"/> + <Point x="5795" y="1715"/> + <Point x="5799" y="1715"/> + <Point x="5851" y="1712"/> + <Point x="5963" y="1722"/> + <Point x="5965" y="1724"/> + <Point x="5977" y="1724"/> + <Point x="5993" y="1722"/> + <Point x="6010" y="1722"/> + <Point x="6010" y="1726"/> + <Point x="6023" y="1726"/> + <Point x="6020" y="1728"/> + <Point x="6038" y="1728"/> + <Point x="6035" y="1728"/> + <Point x="6067" y="1728"/> + <Point x="6035" y="1728"/> + <Point x="6067" y="1728"/> + <Point x="6035" y="1728"/> + <Point x="6071" y="1728"/> + <Point x="6069" y="1761"/> + <Point x="6070" y="1799"/> + <Point x="6070" y="1819"/> + <Point x="6071" y="1833"/> + <Point x="6071" y="1861"/> + <Point x="6073" y="1890"/> + <Point x="6029" y="1890"/> + <Point x="6026" y="1883"/> + <Point x="6016" y="1883"/> + <Point x="6014" y="1881"/> + <Point x="6007" y="1881"/> + <Point x="6004" y="1880"/> + <Point x="5995" y="1880"/> + <Point x="5994" y="1887"/> + <Point x="5980" y="1887"/> + <Point x="5980" y="1877"/> + <Point x="5968" y="1877"/> + <Point x="5950" y="1875"/> + <Point x="5943" y="1875"/> + <Point x="5943" y="1909"/> + <Point x="5910" y="1909"/> + <Point x="5908" y="1908"/> + <Point x="5877" y="1908"/> + <Point x="5874" y="1916"/> + <Point x="5860" y="1916"/> + <Point x="5847" y="1909"/> + <Point x="5824" y="1909"/> + <Point x="5812" y="1910"/> + <Point x="5799" y="1910"/> + <Point x="5796" y="1917"/> + <Point x="5782" y="1917"/> + <Point x="5779" y="1911"/> + <Point x="5751" y="1911"/> + <Point x="5748" y="1912"/> + <Point x="5734" y="1912"/> + <Point x="5730" y="1913"/> + <Point x="5684" y="1913"/> + <Point x="5683" y="1915"/> + <Point x="5644" y="1915"/> + <Point x="5633" y="1917"/> + <Point x="5602" y="1917"/> + <Point x="5599" y="1918"/> + <Point x="5565" y="1918"/> + <Point x="5563" y="1919"/> + <Point x="5550" y="1919"/> + <Point x="5548" y="1920"/> + <Point x="5536" y="1920"/> + <Point x="5533" y="1921"/> + <Point x="5519" y="1921"/> + <Point x="5515" y="1922"/> + <Point x="5501" y="1922"/> + <Point x="5499" y="1923"/> + <Point x="5473" y="1923"/> + <Point x="5471" y="1930"/> + <Point x="5453" y="1930"/> + <Point x="5447" y="1925"/> + <Point x="5404" y="1925"/> + <Point x="5390" y="1926"/> + <Point x="5377" y="1926"/> + <Point x="5374" y="1925"/> + <Point x="5361" y="1925"/> + <Point x="5359" y="1927"/> + <Point x="5325" y="1927"/> + <Point x="5323" y="1898"/> + <Point x="5327" y="1895"/> + <Point x="5323" y="1895"/> + <Point x="5322" y="1810"/> + <Point x="5337" y="1796"/> + <Point x="5321" y="1796"/> + <Point x="5321" y="1775"/> + <Point x="5337" y="1774"/> + <Point x="5338" y="1769"/> + <Point x="5346" y="1769"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>The COFFEE market also remains in a very tranquil +state; the merchants refuse to offer their stock at pre- +sent, while the trade appear disposed to hold back until +they can ascertain what quantity of Coffee is yet to come +from the Cape of Good Hope; and the few operations +have not produced the least change in prices.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r416" type="paragraph"> + <Coords> + <Point x="5357" y="1929"/> + <Point x="5382" y="1929"/> + <Point x="5384" y="1936"/> + <Point x="5397" y="1936"/> + <Point x="5400" y="1937"/> + <Point x="5416" y="1937"/> + <Point x="5429" y="1935"/> + <Point x="5468" y="1935"/> + <Point x="5470" y="1934"/> + <Point x="5483" y="1934"/> + <Point x="5485" y="1931"/> + <Point x="5493" y="1931"/> + <Point x="5497" y="1933"/> + <Point x="5507" y="1933"/> + <Point x="5519" y="1932"/> + <Point x="5539" y="1932"/> + <Point x="5542" y="1924"/> + <Point x="5548" y="1924"/> + <Point x="5551" y="1929"/> + <Point x="5559" y="1929"/> + <Point x="5563" y="1923"/> + <Point x="5577" y="1923"/> + <Point x="5590" y="1928"/> + <Point x="5626" y="1928"/> + <Point x="5629" y="1926"/> + <Point x="5638" y="1926"/> + <Point x="5640" y="1927"/> + <Point x="5668" y="1927"/> + <Point x="5670" y="1917"/> + <Point x="5683" y="1917"/> + <Point x="5687" y="1925"/> + <Point x="5701" y="1925"/> + <Point x="5712" y="1916"/> + <Point x="5727" y="1916"/> + <Point x="5729" y="1923"/> + <Point x="5743" y="1923"/> + <Point x="5745" y="1922"/> + <Point x="5784" y="1922"/> + <Point x="5786" y="1921"/> + <Point x="5800" y="1921"/> + <Point x="5803" y="1913"/> + <Point x="5841" y="1912"/> + <Point x="5848" y="1918"/> + <Point x="5902" y="1917"/> + <Point x="5903" y="1917"/> + <Point x="5910" y="1912"/> + <Point x="5927" y="1912"/> + <Point x="5929" y="1920"/> + <Point x="5941" y="1920"/> + <Point x="5952" y="1912"/> + <Point x="5967" y="1912"/> + <Point x="5989" y="1915"/> + <Point x="6000" y="1915"/> + <Point x="6007" y="1924"/> + <Point x="6009" y="1925"/> + <Point x="6016" y="1925"/> + <Point x="6018" y="1926"/> + <Point x="6026" y="1926"/> + <Point x="6040" y="1929"/> + <Point x="6051" y="1929"/> + <Point x="6056" y="1925"/> + <Point x="6069" y="1925"/> + <Point x="6056" y="1925"/> + <Point x="6075" y="1925"/> + <Point x="6075" y="2023"/> + <Point x="6049" y="2023"/> + <Point x="6072" y="2023"/> + <Point x="6049" y="2023"/> + <Point x="6042" y="2018"/> + <Point x="6031" y="2015"/> + <Point x="6014" y="2015"/> + <Point x="6003" y="2019"/> + <Point x="5996" y="2019"/> + <Point x="5984" y="2011"/> + <Point x="5981" y="2010"/> + <Point x="5957" y="2010"/> + <Point x="5955" y="2009"/> + <Point x="5943" y="2009"/> + <Point x="5611" y="2023"/> + <Point x="5575" y="2051"/> + <Point x="5568" y="2051"/> + <Point x="5566" y="2052"/> + <Point x="5539" y="2052"/> + <Point x="5538" y="2053"/> + <Point x="5496" y="2053"/> + <Point x="5491" y="2060"/> + <Point x="5481" y="2060"/> + <Point x="5481" y="2054"/> + <Point x="5466" y="2054"/> + <Point x="5455" y="2055"/> + <Point x="5444" y="2055"/> + <Point x="5441" y="2056"/> + <Point x="5414" y="2056"/> + <Point x="5412" y="2057"/> + <Point x="5324" y="2059"/> + <Point x="5323" y="1963"/> + <Point x="5354" y="1963"/> + <Point x="5357" y="1961"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>TEA meets with a steady demand from the dealers, and +full prices are paid. Company’s Congou is now held +for 2s 1½d to 2s 1¾d per 1b cash. The tendency of the +market is upward.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r418" type="heading"> + <Coords> + <Point x="5332" y="2149"/> + <Point x="5360" y="2149"/> + <Point x="5363" y="2148"/> + <Point x="5391" y="2148"/> + <Point x="5393" y="2147"/> + <Point x="5418" y="2147"/> + <Point x="5419" y="2146"/> + <Point x="5446" y="2146"/> + <Point x="5450" y="2145"/> + <Point x="5477" y="2145"/> + <Point x="5480" y="2144"/> + <Point x="5552" y="2144"/> + <Point x="5576" y="2143"/> + <Point x="5584" y="2142"/> + <Point x="5622" y="2142"/> + <Point x="5661" y="2140"/> + <Point x="5684" y="2140"/> + <Point x="5713" y="2139"/> + <Point x="5718" y="2137"/> + <Point x="5784" y="2135"/> + <Point x="6029" y="2130"/> + <Point x="6027" y="2139"/> + <Point x="6041" y="2139"/> + <Point x="6041" y="2144"/> + <Point x="6073" y="2144"/> + <Point x="6041" y="2144"/> + <Point x="6073" y="2144"/> + <Point x="6041" y="2144"/> + <Point x="6080" y="2144"/> + <Point x="6073" y="2180"/> + <Point x="6041" y="2180"/> + <Point x="6073" y="2180"/> + <Point x="6041" y="2180"/> + <Point x="6073" y="2180"/> + <Point x="6041" y="2180"/> + <Point x="6041" y="2175"/> + <Point x="6027" y="2175"/> + <Point x="5997" y="2202"/> + <Point x="5919" y="2202"/> + <Point x="5919" y="2201"/> + <Point x="5902" y="2201"/> + <Point x="5903" y="2201"/> + <Point x="5876" y="2201"/> + <Point x="5878" y="2202"/> + <Point x="5852" y="2202"/> + <Point x="5808" y="2203"/> + <Point x="5785" y="2203"/> + <Point x="5784" y="2204"/> + <Point x="5759" y="2204"/> + <Point x="5758" y="2205"/> + <Point x="5727" y="2205"/> + <Point x="5725" y="2206"/> + <Point x="5702" y="2206"/> + <Point x="5701" y="2207"/> + <Point x="5676" y="2207"/> + <Point x="5677" y="2208"/> + <Point x="5599" y="2208"/> + <Point x="5592" y="2209"/> + <Point x="5435" y="2213"/> + <Point x="5440" y="2187"/> + <Point x="5446" y="2179"/> + <Point x="5419" y="2179"/> + <Point x="5418" y="2182"/> + <Point x="5393" y="2182"/> + <Point x="5391" y="2181"/> + <Point x="5363" y="2181"/> + <Point x="5360" y="2182"/> + <Point x="5327" y="2183"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>DECREE OF THE GERMAN DIET +AGAINST TRADES UNIONS.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r419" type="paragraph"> + <Coords> + <Point x="5783" y="2232"/> + <Point x="5804" y="2232"/> + <Point x="5805" y="2237"/> + <Point x="5820" y="2237"/> + <Point x="5824" y="2239"/> + <Point x="5838" y="2239"/> + <Point x="5841" y="2237"/> + <Point x="5856" y="2237"/> + <Point x="5873" y="2236"/> + <Point x="5878" y="2237"/> + <Point x="5906" y="2237"/> + <Point x="5909" y="2236"/> + <Point x="5937" y="2236"/> + <Point x="5940" y="2249"/> + <Point x="5945" y="2249"/> + <Point x="5961" y="2231"/> + <Point x="5977" y="2231"/> + <Point x="5984" y="2239"/> + <Point x="6040" y="2239"/> + <Point x="6040" y="2242"/> + <Point x="6058" y="2242"/> + <Point x="6056" y="2272"/> + <Point x="6028" y="2268"/> + <Point x="6005" y="2267"/> + <Point x="5984" y="2264"/> + <Point x="5962" y="2261"/> + <Point x="5945" y="2263"/> + <Point x="5940" y="2263"/> + <Point x="5937" y="2260"/> + <Point x="5924" y="2260"/> + <Point x="5922" y="2259"/> + <Point x="5892" y="2259"/> + <Point x="5886" y="2260"/> + <Point x="5824" y="2260"/> + <Point x="5820" y="2261"/> + <Point x="5783" y="2261"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>FRANKFORT, DEC. 24.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r421" type="heading"> + <Coords> + <Point x="5604" y="2501"/> + <Point x="5653" y="2500"/> + <Point x="5691" y="2500"/> + <Point x="5698" y="2498"/> + <Point x="5720" y="2498"/> + <Point x="5726" y="2496"/> + <Point x="5841" y="2494"/> + <Point x="5855" y="2514"/> + <Point x="5855" y="2524"/> + <Point x="5823" y="2524"/> + <Point x="5818" y="2525"/> + <Point x="5799" y="2525"/> + <Point x="5794" y="2526"/> + <Point x="5750" y="2526"/> + <Point x="5744" y="2527"/> + <Point x="5603" y="2530"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>THE DECREE.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r422" type="paragraph"> + <Coords> + <Point x="5334" y="2539"/> + <Point x="5353" y="2540"/> + <Point x="5366" y="2546"/> + <Point x="5381" y="2546"/> + <Point x="5385" y="2545"/> + <Point x="5431" y="2544"/> + <Point x="5455" y="2544"/> + <Point x="5458" y="2545"/> + <Point x="5463" y="2545"/> + <Point x="5467" y="2544"/> + <Point x="5500" y="2544"/> + <Point x="5526" y="2543"/> + <Point x="5555" y="2543"/> + <Point x="5583" y="2541"/> + <Point x="5617" y="2541"/> + <Point x="5621" y="2540"/> + <Point x="5635" y="2540"/> + <Point x="5663" y="2538"/> + <Point x="5678" y="2538"/> + <Point x="5682" y="2539"/> + <Point x="5707" y="2539"/> + <Point x="5710" y="2537"/> + <Point x="5745" y="2537"/> + <Point x="5748" y="2538"/> + <Point x="5759" y="2538"/> + <Point x="5786" y="2535"/> + <Point x="5906" y="2534"/> + <Point x="6000" y="2536"/> + <Point x="6026" y="2536"/> + <Point x="6082" y="2535"/> + <Point x="6083" y="2566"/> + <Point x="6083" y="2603"/> + <Point x="6067" y="2604"/> + <Point x="6069" y="2602"/> + <Point x="6051" y="2600"/> + <Point x="6050" y="2598"/> + <Point x="6036" y="2598"/> + <Point x="6039" y="2598"/> + <Point x="6028" y="2598"/> + <Point x="6026" y="2595"/> + <Point x="6012" y="2595"/> + <Point x="6011" y="2594"/> + <Point x="5982" y="2594"/> + <Point x="5980" y="2593"/> + <Point x="5971" y="2593"/> + <Point x="5938" y="2592"/> + <Point x="5911" y="2592"/> + <Point x="5904" y="2589"/> + <Point x="5894" y="2589"/> + <Point x="5890" y="2590"/> + <Point x="5826" y="2590"/> + <Point x="5821" y="2591"/> + <Point x="5786" y="2591"/> + <Point x="5760" y="2598"/> + <Point x="5754" y="2598"/> + <Point x="5719" y="2593"/> + <Point x="5715" y="2594"/> + <Point x="5684" y="2594"/> + <Point x="5680" y="2595"/> + <Point x="5649" y="2595"/> + <Point x="5644" y="2596"/> + <Point x="5631" y="2596"/> + <Point x="5627" y="2597"/> + <Point x="5562" y="2597"/> + <Point x="5559" y="2598"/> + <Point x="5545" y="2598"/> + <Point x="5552" y="2632"/> + <Point x="5381" y="2634"/> + <Point x="5366" y="2568"/> + <Point x="5353" y="2558"/> + <Point x="5333" y="2559"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>“ABOLITION OF THE UNIONS EXISTING AMONG GER- +MAN WORKING TRADESMEN, AND ABUSES CONNECTED +THEREWITH.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r423" type="paragraph"> + <Coords> + <Point x="5370" y="2641"/> + <Point x="5386" y="2641"/> + <Point x="5399" y="2638"/> + <Point x="5420" y="2638"/> + <Point x="5423" y="2640"/> + <Point x="5437" y="2640"/> + <Point x="5440" y="2646"/> + <Point x="5453" y="2646"/> + <Point x="5466" y="2645"/> + <Point x="5500" y="2638"/> + <Point x="5506" y="2638"/> + <Point x="5510" y="2643"/> + <Point x="5516" y="2643"/> + <Point x="5519" y="2644"/> + <Point x="5532" y="2644"/> + <Point x="5534" y="2636"/> + <Point x="5549" y="2636"/> + <Point x="5570" y="2643"/> + <Point x="5585" y="2643"/> + <Point x="5587" y="2642"/> + <Point x="5644" y="2642"/> + <Point x="5647" y="2641"/> + <Point x="5660" y="2641"/> + <Point x="5664" y="2640"/> + <Point x="5701" y="2640"/> + <Point x="5704" y="2639"/> + <Point x="5717" y="2639"/> + <Point x="5721" y="2634"/> + <Point x="5729" y="2634"/> + <Point x="5732" y="2639"/> + <Point x="5743" y="2639"/> + <Point x="5766" y="2638"/> + <Point x="5792" y="2638"/> + <Point x="5795" y="2637"/> + <Point x="5873" y="2637"/> + <Point x="5874" y="2636"/> + <Point x="5886" y="2636"/> + <Point x="5889" y="2637"/> + <Point x="5900" y="2637"/> + <Point x="5902" y="2628"/> + <Point x="5920" y="2628"/> + <Point x="5936" y="2638"/> + <Point x="5948" y="2638"/> + <Point x="5953" y="2639"/> + <Point x="5964" y="2639"/> + <Point x="5974" y="2638"/> + <Point x="5992" y="2638"/> + <Point x="6005" y="2639"/> + <Point x="6013" y="2639"/> + <Point x="6030" y="2641"/> + <Point x="6035" y="2641"/> + <Point x="6038" y="2639"/> + <Point x="6085" y="2639"/> + <Point x="6085" y="2798"/> + <Point x="6058" y="2798"/> + <Point x="6051" y="2797"/> + <Point x="6046" y="2797"/> + <Point x="6025" y="2796"/> + <Point x="6015" y="2796"/> + <Point x="6016" y="2796"/> + <Point x="6000" y="2796"/> + <Point x="6000" y="2795"/> + <Point x="5992" y="2795"/> + <Point x="5981" y="2793"/> + <Point x="5940" y="2793"/> + <Point x="5937" y="2792"/> + <Point x="5920" y="2792"/> + <Point x="5917" y="2793"/> + <Point x="5865" y="2793"/> + <Point x="5862" y="2794"/> + <Point x="5849" y="2794"/> + <Point x="5845" y="2793"/> + <Point x="5814" y="2793"/> + <Point x="5812" y="2794"/> + <Point x="5776" y="2794"/> + <Point x="5774" y="2795"/> + <Point x="5759" y="2802"/> + <Point x="5743" y="2802"/> + <Point x="5671" y="2796"/> + <Point x="5668" y="2797"/> + <Point x="5655" y="2797"/> + <Point x="5651" y="2798"/> + <Point x="5640" y="2798"/> + <Point x="5641" y="2797"/> + <Point x="5622" y="2797"/> + <Point x="5641" y="2797"/> + <Point x="5622" y="2797"/> + <Point x="5619" y="2798"/> + <Point x="5605" y="2798"/> + <Point x="5588" y="2799"/> + <Point x="5575" y="2799"/> + <Point x="5573" y="2835"/> + <Point x="5563" y="2835"/> + <Point x="5562" y="2832"/> + <Point x="5514" y="2833"/> + <Point x="5511" y="2834"/> + <Point x="5455" y="2834"/> + <Point x="5452" y="2833"/> + <Point x="5424" y="2833"/> + <Point x="5386" y="2837"/> + <Point x="5380" y="2837"/> + <Point x="5376" y="2842"/> + <Point x="5361" y="2842"/> + <Point x="5360" y="2837"/> + <Point x="5336" y="2837"/> + <Point x="5336" y="2673"/> + <Point x="5345" y="2673"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>“The united governments are agreed upon carrying +into effect uniform measures with respect to such handi- +craftsmen as by participation in illicit unions of journey- +men, jurisdictions of journeymen, strike, and the like +malpractices, have offended against the laws of the coun- +try. Wherefore,</Unicode></TextEquiv></TextRegion> + <TextRegion id="r424" type="paragraph"> + <Coords> + <Point x="5367" y="2844"/> + <Point x="5384" y="2844"/> + <Point x="5401" y="2838"/> + <Point x="5409" y="2838"/> + <Point x="5439" y="2837"/> + <Point x="5456" y="2837"/> + <Point x="5459" y="2846"/> + <Point x="5468" y="2846"/> + <Point x="5470" y="2845"/> + <Point x="5483" y="2845"/> + <Point x="5487" y="2844"/> + <Point x="5533" y="2844"/> + <Point x="5535" y="2843"/> + <Point x="5563" y="2837"/> + <Point x="5579" y="2837"/> + <Point x="5593" y="2834"/> + <Point x="5608" y="2834"/> + <Point x="5611" y="2842"/> + <Point x="5624" y="2842"/> + <Point x="5627" y="2841"/> + <Point x="5640" y="2841"/> + <Point x="5643" y="2833"/> + <Point x="5658" y="2833"/> + <Point x="5660" y="2834"/> + <Point x="5666" y="2834"/> + <Point x="5712" y="2833"/> + <Point x="5720" y="2833"/> + <Point x="5729" y="2836"/> + <Point x="5731" y="2839"/> + <Point x="5767" y="2839"/> + <Point x="5770" y="2838"/> + <Point x="5826" y="2838"/> + <Point x="5825" y="2837"/> + <Point x="5838" y="2837"/> + <Point x="5849" y="2836"/> + <Point x="5872" y="2836"/> + <Point x="5874" y="2837"/> + <Point x="5902" y="2837"/> + <Point x="5913" y="2830"/> + <Point x="5928" y="2830"/> + <Point x="5931" y="2837"/> + <Point x="5967" y="2837"/> + <Point x="5970" y="2838"/> + <Point x="5982" y="2838"/> + <Point x="5982" y="2830"/> + <Point x="6002" y="2830"/> + <Point x="6007" y="2836"/> + <Point x="6030" y="2842"/> + <Point x="6039" y="2833"/> + <Point x="6050" y="2833"/> + <Point x="6086" y="2844"/> + <Point x="6086" y="2913"/> + <Point x="6088" y="2932"/> + <Point x="6088" y="3020"/> + <Point x="6089" y="3098"/> + <Point x="6048" y="3095"/> + <Point x="6042" y="3095"/> + <Point x="6048" y="3095"/> + <Point x="6042" y="3095"/> + <Point x="6043" y="3094"/> + <Point x="6033" y="3094"/> + <Point x="6020" y="3091"/> + <Point x="5999" y="3091"/> + <Point x="5996" y="3090"/> + <Point x="5965" y="3090"/> + <Point x="5961" y="3091"/> + <Point x="5941" y="3091"/> + <Point x="5937" y="3092"/> + <Point x="5908" y="3092"/> + <Point x="5890" y="3093"/> + <Point x="5860" y="3093"/> + <Point x="5856" y="3094"/> + <Point x="5847" y="3094"/> + <Point x="5834" y="3095"/> + <Point x="5806" y="3095"/> + <Point x="5782" y="3094"/> + <Point x="5756" y="3094"/> + <Point x="5753" y="3091"/> + <Point x="5748" y="3091"/> + <Point x="5746" y="3094"/> + <Point x="5730" y="3094"/> + <Point x="5727" y="3095"/> + <Point x="5672" y="3095"/> + <Point x="5669" y="3096"/> + <Point x="5655" y="3096"/> + <Point x="5659" y="3130"/> + <Point x="5618" y="3130"/> + <Point x="5614" y="3131"/> + <Point x="5588" y="3130"/> + <Point x="5585" y="3136"/> + <Point x="5570" y="3136"/> + <Point x="5571" y="3132"/> + <Point x="5559" y="3133"/> + <Point x="5545" y="3133"/> + <Point x="5542" y="3132"/> + <Point x="5532" y="3132"/> + <Point x="5528" y="3133"/> + <Point x="5498" y="3133"/> + <Point x="5492" y="3138"/> + <Point x="5486" y="3139"/> + <Point x="5475" y="3134"/> + <Point x="5463" y="3134"/> + <Point x="5460" y="3132"/> + <Point x="5449" y="3132"/> + <Point x="5445" y="3134"/> + <Point x="5439" y="3134"/> + <Point x="5433" y="3133"/> + <Point x="5413" y="3133"/> + <Point x="5411" y="3135"/> + <Point x="5398" y="3135"/> + <Point x="5390" y="3141"/> + <Point x="5379" y="3141"/> + <Point x="5379" y="3135"/> + <Point x="5354" y="3135"/> + <Point x="5352" y="3136"/> + <Point x="5342" y="3136"/> + <Point x="5339" y="3133"/> + <Point x="5339" y="3066"/> + <Point x="5338" y="2982"/> + <Point x="5337" y="2950"/> + <Point x="5336" y="2934"/> + <Point x="5334" y="2904"/> + <Point x="5334" y="2879"/> + <Point x="5353" y="2880"/> + <Point x="5355" y="2873"/> + <Point x="5365" y="2873"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>“1. From such handicraftsmen as may be guilty of any +of the said offences in one of the confederate states to +which they do not belong by domicile shall be taken, after +trial and punishment, their wanderbücher* or travelling +passes, in which the committed violation of the law cor- +rectly described shall be noted, with the allotted pubish- +ment, and the said wanderbücher and travelling passes +shall be sent to the authorities of the domiciles of the +respective journeymen.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r425" type="paragraph"> + <Coords> + <Point x="5371" y="3142"/> + <Point x="5394" y="3142"/> + <Point x="5403" y="3138"/> + <Point x="5417" y="3138"/> + <Point x="5446" y="3137"/> + <Point x="5463" y="3137"/> + <Point x="5466" y="3145"/> + <Point x="5494" y="3145"/> + <Point x="5496" y="3137"/> + <Point x="5512" y="3137"/> + <Point x="5525" y="3136"/> + <Point x="5540" y="3136"/> + <Point x="5543" y="3144"/> + <Point x="5556" y="3144"/> + <Point x="5558" y="3143"/> + <Point x="5572" y="3143"/> + <Point x="5581" y="3137"/> + <Point x="5599" y="3137"/> + <Point x="5600" y="3142"/> + <Point x="5640" y="3142"/> + <Point x="5643" y="3135"/> + <Point x="5651" y="3135"/> + <Point x="5660" y="3138"/> + <Point x="5676" y="3140"/> + <Point x="5732" y="3140"/> + <Point x="5746" y="3141"/> + <Point x="5754" y="3134"/> + <Point x="5772" y="3134"/> + <Point x="5790" y="3131"/> + <Point x="5796" y="3131"/> + <Point x="5800" y="3132"/> + <Point x="5810" y="3132"/> + <Point x="5841" y="3131"/> + <Point x="5851" y="3131"/> + <Point x="5858" y="3135"/> + <Point x="5861" y="3138"/> + <Point x="5873" y="3138"/> + <Point x="5876" y="3137"/> + <Point x="5887" y="3137"/> + <Point x="5900" y="3135"/> + <Point x="5915" y="3135"/> + <Point x="5915" y="3134"/> + <Point x="5939" y="3127"/> + <Point x="5948" y="3127"/> + <Point x="5949" y="3135"/> + <Point x="5961" y="3135"/> + <Point x="5962" y="3134"/> + <Point x="5974" y="3134"/> + <Point x="5974" y="3135"/> + <Point x="6000" y="3127"/> + <Point x="6016" y="3128"/> + <Point x="6084" y="3131"/> + <Point x="6093" y="3138"/> + <Point x="6089" y="3171"/> + <Point x="6089" y="3196"/> + <Point x="6091" y="3211"/> + <Point x="6090" y="3229"/> + <Point x="6069" y="3241"/> + <Point x="6081" y="3241"/> + <Point x="6078" y="3241"/> + <Point x="6092" y="3241"/> + <Point x="6091" y="3297"/> + <Point x="6092" y="3330"/> + <Point x="6092" y="3431"/> + <Point x="6081" y="3430"/> + <Point x="6056" y="3429"/> + <Point x="6052" y="3461"/> + <Point x="6046" y="3461"/> + <Point x="6044" y="3460"/> + <Point x="6039" y="3460"/> + <Point x="6035" y="3461"/> + <Point x="6022" y="3459"/> + <Point x="6007" y="3460"/> + <Point x="6000" y="3459"/> + <Point x="5983" y="3459"/> + <Point x="5971" y="3461"/> + <Point x="5961" y="3461"/> + <Point x="5958" y="3460"/> + <Point x="5915" y="3460"/> + <Point x="5912" y="3461"/> + <Point x="5863" y="3461"/> + <Point x="5864" y="3462"/> + <Point x="5820" y="3462"/> + <Point x="5817" y="3463"/> + <Point x="5806" y="3463"/> + <Point x="5801" y="3468"/> + <Point x="5759" y="3468"/> + <Point x="5756" y="3463"/> + <Point x="5722" y="3464"/> + <Point x="5719" y="3465"/> + <Point x="5707" y="3465"/> + <Point x="5703" y="3464"/> + <Point x="5692" y="3464"/> + <Point x="5689" y="3466"/> + <Point x="5663" y="3466"/> + <Point x="5658" y="3465"/> + <Point x="5651" y="3465"/> + <Point x="5639" y="3466"/> + <Point x="5589" y="3466"/> + <Point x="5586" y="3467"/> + <Point x="5339" y="3469"/> + <Point x="5338" y="3434"/> + <Point x="5338" y="3237"/> + <Point x="5339" y="3180"/> + <Point x="5356" y="3180"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>“2. Such handicraftsmen shall, after undergoing their +punishment, be transferred, by prescribed routes, to the +states wherein they have their domiciles, and shall there +be detained under strict inspection, in order that they +may not be permitted to obtain employment in any other +state of the confederacy. Exceptions from this decision +shall only take place when the government of the domi- +cile. in consequence of the continued good conduct of a +returned handicraftsman, shall be induced to give him a +new wanderbücher or travelling pass for other states.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r426" type="paragraph"> + <Coords> + <Point x="5412" y="3474"/> + <Point x="5419" y="3471"/> + <Point x="5460" y="3471"/> + <Point x="5463" y="3473"/> + <Point x="5476" y="3473"/> + <Point x="5480" y="3478"/> + <Point x="5525" y="3478"/> + <Point x="5527" y="3477"/> + <Point x="5540" y="3477"/> + <Point x="5544" y="3478"/> + <Point x="5556" y="3478"/> + <Point x="5559" y="3477"/> + <Point x="5585" y="3477"/> + <Point x="5586" y="3476"/> + <Point x="5658" y="3476"/> + <Point x="5662" y="3474"/> + <Point x="5670" y="3474"/> + <Point x="5673" y="3476"/> + <Point x="5709" y="3476"/> + <Point x="5712" y="3475"/> + <Point x="5738" y="3475"/> + <Point x="5757" y="3471"/> + <Point x="5763" y="3471"/> + <Point x="5768" y="3473"/> + <Point x="5829" y="3473"/> + <Point x="5830" y="3472"/> + <Point x="5844" y="3472"/> + <Point x="5847" y="3473"/> + <Point x="5858" y="3473"/> + <Point x="5862" y="3465"/> + <Point x="5886" y="3465"/> + <Point x="5887" y="3472"/> + <Point x="5900" y="3472"/> + <Point x="5912" y="3469"/> + <Point x="5919" y="3464"/> + <Point x="5930" y="3464"/> + <Point x="5939" y="3467"/> + <Point x="5942" y="3471"/> + <Point x="5978" y="3471"/> + <Point x="5981" y="3472"/> + <Point x="5990" y="3472"/> + <Point x="5992" y="3471"/> + <Point x="6003" y="3471"/> + <Point x="6002" y="3463"/> + <Point x="6012" y="3463"/> + <Point x="6068" y="3464"/> + <Point x="6093" y="3464"/> + <Point x="6092" y="3530"/> + <Point x="6092" y="3594"/> + <Point x="6065" y="3594"/> + <Point x="6089" y="3594"/> + <Point x="6065" y="3594"/> + <Point x="6092" y="3604"/> + <Point x="6092" y="3627"/> + <Point x="6057" y="3627"/> + <Point x="6057" y="3625"/> + <Point x="6029" y="3625"/> + <Point x="6008" y="3624"/> + <Point x="5996" y="3624"/> + <Point x="5992" y="3623"/> + <Point x="5985" y="3623"/> + <Point x="5965" y="3624"/> + <Point x="5916" y="3624"/> + <Point x="5911" y="3625"/> + <Point x="5881" y="3625"/> + <Point x="5878" y="3624"/> + <Point x="5868" y="3624"/> + <Point x="5865" y="3626"/> + <Point x="5852" y="3626"/> + <Point x="5850" y="3633"/> + <Point x="5835" y="3633"/> + <Point x="5807" y="3626"/> + <Point x="5793" y="3626"/> + <Point x="5791" y="3627"/> + <Point x="5781" y="3627"/> + <Point x="5779" y="3628"/> + <Point x="5765" y="3628"/> + <Point x="5737" y="3632"/> + <Point x="5731" y="3632"/> + <Point x="5715" y="3628"/> + <Point x="5712" y="3629"/> + <Point x="5691" y="3629"/> + <Point x="5686" y="3628"/> + <Point x="5679" y="3628"/> + <Point x="5676" y="3637"/> + <Point x="5662" y="3637"/> + <Point x="5615" y="3630"/> + <Point x="5612" y="3632"/> + <Point x="5599" y="3632"/> + <Point x="5573" y="3631"/> + <Point x="5548" y="3631"/> + <Point x="5522" y="3664"/> + <Point x="5343" y="3666"/> + <Point x="5341" y="3615"/> + <Point x="5340" y="3576"/> + <Point x="5340" y="3505"/> + <Point x="5344" y="3506"/> + <Point x="5358" y="3506"/> + <Point x="5370" y="3474"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>“3. The governments are to provide themselves with +descriptions of the handicraftsmen who, on account +of the aforesaid offence, have been sent home, as well as +to make reciprocal communications respecting those +who, by way of exception, are permitted to resume +their travels.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r427" type="paragraph"> + <Coords> + <Point x="5361" y="3670"/> + <Point x="5417" y="3670"/> + <Point x="5425" y="3668"/> + <Point x="5467" y="3668"/> + <Point x="5469" y="3670"/> + <Point x="5483" y="3670"/> + <Point x="5485" y="3676"/> + <Point x="5554" y="3676"/> + <Point x="5556" y="3675"/> + <Point x="5582" y="3675"/> + <Point x="5585" y="3667"/> + <Point x="5608" y="3667"/> + <Point x="5611" y="3675"/> + <Point x="5623" y="3675"/> + <Point x="5627" y="3674"/> + <Point x="5695" y="3674"/> + <Point x="5700" y="3673"/> + <Point x="5716" y="3664"/> + <Point x="5757" y="3664"/> + <Point x="5761" y="3671"/> + <Point x="5773" y="3671"/> + <Point x="5776" y="3672"/> + <Point x="5790" y="3672"/> + <Point x="5793" y="3671"/> + <Point x="5803" y="3671"/> + <Point x="5815" y="3670"/> + <Point x="5825" y="3661"/> + <Point x="5843" y="3661"/> + <Point x="5855" y="3659"/> + <Point x="5905" y="3659"/> + <Point x="5906" y="3667"/> + <Point x="6012" y="3667"/> + <Point x="6022" y="3660"/> + <Point x="6031" y="3660"/> + <Point x="6041" y="3669"/> + <Point x="6051" y="3667"/> + <Point x="6085" y="3667"/> + <Point x="6085" y="3676"/> + <Point x="6090" y="3676"/> + <Point x="6085" y="3676"/> + <Point x="6090" y="3676"/> + <Point x="6092" y="3679"/> + <Point x="6092" y="3687"/> + <Point x="6090" y="3690"/> + <Point x="6085" y="3690"/> + <Point x="6090" y="3690"/> + <Point x="6085" y="3690"/> + <Point x="6085" y="3692"/> + <Point x="6070" y="3692"/> + <Point x="6095" y="3700"/> + <Point x="6095" y="3723"/> + <Point x="6072" y="3734"/> + <Point x="6089" y="3734"/> + <Point x="6072" y="3734"/> + <Point x="6089" y="3734"/> + <Point x="6092" y="3737"/> + <Point x="6092" y="3756"/> + <Point x="6089" y="3759"/> + <Point x="6072" y="3759"/> + <Point x="6089" y="3759"/> + <Point x="6072" y="3759"/> + <Point x="6097" y="3767"/> + <Point x="6097" y="3826"/> + <Point x="6037" y="3825"/> + <Point x="6053" y="3825"/> + <Point x="6037" y="3825"/> + <Point x="6028" y="3823"/> + <Point x="6021" y="3823"/> + <Point x="6018" y="3824"/> + <Point x="5961" y="3824"/> + <Point x="5958" y="3825"/> + <Point x="5938" y="3833"/> + <Point x="5924" y="3833"/> + <Point x="5842" y="3826"/> + <Point x="5830" y="3827"/> + <Point x="5779" y="3827"/> + <Point x="5777" y="3829"/> + <Point x="5765" y="3829"/> + <Point x="5763" y="3828"/> + <Point x="5736" y="3828"/> + <Point x="5733" y="3829"/> + <Point x="5704" y="3829"/> + <Point x="5702" y="3830"/> + <Point x="5677" y="3830"/> + <Point x="5664" y="3838"/> + <Point x="5650" y="3838"/> + <Point x="5638" y="3831"/> + <Point x="5568" y="3831"/> + <Point x="5583" y="3831"/> + <Point x="5552" y="3831"/> + <Point x="5540" y="3866"/> + <Point x="5533" y="3866"/> + <Point x="5529" y="3865"/> + <Point x="5500" y="3865"/> + <Point x="5498" y="3866"/> + <Point x="5429" y="3866"/> + <Point x="5427" y="3865"/> + <Point x="5407" y="3865"/> + <Point x="5393" y="3870"/> + <Point x="5378" y="3870"/> + <Point x="5378" y="3866"/> + <Point x="5342" y="3866"/> + <Point x="5340" y="3767"/> + <Point x="5340" y="3711"/> + <Point x="5367" y="3711"/> + <Point x="5371" y="3712"/> + <Point x="5385" y="3712"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>“4. The preceding regulations shall be expressly com- +municated to every handicraftsman on the commencement +of his travelling period, before his wanderbücher, or tra- +velling pass, be delivered to him; and that this has been +done, must be officially recorded in the register of travel- +ling workmen.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r428" type="paragraph"> + <Coords> + <Point x="5373" y="3873"/> + <Point x="5393" y="3873"/> + <Point x="5404" y="3869"/> + <Point x="5421" y="3869"/> + <Point x="5449" y="3868"/> + <Point x="5470" y="3868"/> + <Point x="5473" y="3871"/> + <Point x="5487" y="3871"/> + <Point x="5489" y="3875"/> + <Point x="5603" y="3866"/> + <Point x="5608" y="3866"/> + <Point x="5628" y="3873"/> + <Point x="5641" y="3873"/> + <Point x="5643" y="3870"/> + <Point x="5651" y="3870"/> + <Point x="5655" y="3866"/> + <Point x="5660" y="3866"/> + <Point x="5663" y="3873"/> + <Point x="5676" y="3873"/> + <Point x="5679" y="3872"/> + <Point x="5694" y="3872"/> + <Point x="5706" y="3873"/> + <Point x="5720" y="3873"/> + <Point x="5722" y="3864"/> + <Point x="5776" y="3864"/> + <Point x="5779" y="3871"/> + <Point x="5792" y="3871"/> + <Point x="5814" y="3870"/> + <Point x="5857" y="3870"/> + <Point x="5859" y="3869"/> + <Point x="5903" y="3864"/> + <Point x="5914" y="3864"/> + <Point x="5932" y="3861"/> + <Point x="5947" y="3861"/> + <Point x="5948" y="3868"/> + <Point x="5959" y="3868"/> + <Point x="5962" y="3867"/> + <Point x="6024" y="3867"/> + <Point x="6030" y="3859"/> + <Point x="6083" y="3859"/> + <Point x="6083" y="3865"/> + <Point x="6096" y="3865"/> + <Point x="6095" y="3871"/> + <Point x="6095" y="3885"/> + <Point x="6096" y="3921"/> + <Point x="6091" y="3923"/> + <Point x="6083" y="3923"/> + <Point x="6091" y="3923"/> + <Point x="6083" y="3923"/> + <Point x="6100" y="3935"/> + <Point x="6100" y="3988"/> + <Point x="6081" y="3989"/> + <Point x="6073" y="3987"/> + <Point x="6059" y="3987"/> + <Point x="6059" y="3988"/> + <Point x="6031" y="3988"/> + <Point x="6010" y="3987"/> + <Point x="5996" y="3987"/> + <Point x="5992" y="3986"/> + <Point x="5976" y="3986"/> + <Point x="5972" y="3987"/> + <Point x="5963" y="3987"/> + <Point x="5950" y="3988"/> + <Point x="5936" y="3988"/> + <Point x="5932" y="3987"/> + <Point x="5929" y="3987"/> + <Point x="5924" y="3988"/> + <Point x="5898" y="3988"/> + <Point x="5894" y="3989"/> + <Point x="5842" y="3989"/> + <Point x="5840" y="3990"/> + <Point x="5796" y="3990"/> + <Point x="5774" y="3991"/> + <Point x="5733" y="3991"/> + <Point x="5712" y="3992"/> + <Point x="5686" y="3992"/> + <Point x="5674" y="3993"/> + <Point x="5660" y="3993"/> + <Point x="5658" y="3992"/> + <Point x="5659" y="4013"/> + <Point x="5644" y="4013"/> + <Point x="5638" y="4026"/> + <Point x="5629" y="4026"/> + <Point x="5342" y="4028"/> + <Point x="5343" y="3909"/> + <Point x="5371" y="3909"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>“5. The promulgation of the present decree shall be +made in each state of the confederacy, according to its +constitutional forms, and, certification of the same being +done, shall be returned to the Diet within tow months +from the date hereof.”</Unicode></TextEquiv></TextRegion> + <TextRegion id="r429" type="paragraph"> + <Coords> + <Point x="5372" y="4040"/> + <Point x="5389" y="4040"/> + <Point x="5405" y="4041"/> + <Point x="5426" y="4041"/> + <Point x="5443" y="4039"/> + <Point x="5453" y="4039"/> + <Point x="5525" y="4045"/> + <Point x="5583" y="4044"/> + <Point x="5597" y="4044"/> + <Point x="5618" y="4038"/> + <Point x="5624" y="4038"/> + <Point x="5667" y="4036"/> + <Point x="5682" y="4035"/> + <Point x="5706" y="4035"/> + <Point x="5705" y="4043"/> + <Point x="5718" y="4043"/> + <Point x="5720" y="4042"/> + <Point x="5731" y="4042"/> + <Point x="5734" y="4034"/> + <Point x="5774" y="4034"/> + <Point x="5787" y="4041"/> + <Point x="5801" y="4033"/> + <Point x="5817" y="4033"/> + <Point x="5818" y="4041"/> + <Point x="5844" y="4041"/> + <Point x="5869" y="4032"/> + <Point x="5904" y="4032"/> + <Point x="5925" y="4039"/> + <Point x="5935" y="4038"/> + <Point x="5950" y="4038"/> + <Point x="5965" y="4039"/> + <Point x="5976" y="4039"/> + <Point x="5979" y="4038"/> + <Point x="6003" y="4038"/> + <Point x="6003" y="4032"/> + <Point x="6076" y="4032"/> + <Point x="6089" y="4040"/> + <Point x="6101" y="4044"/> + <Point x="6101" y="4060"/> + <Point x="6100" y="4074"/> + <Point x="6099" y="4114"/> + <Point x="6099" y="4132"/> + <Point x="6100" y="4152"/> + <Point x="6100" y="4213"/> + <Point x="6072" y="4213"/> + <Point x="6072" y="4214"/> + <Point x="6044" y="4214"/> + <Point x="6045" y="4215"/> + <Point x="6034" y="4215"/> + <Point x="6029" y="4214"/> + <Point x="6014" y="4214"/> + <Point x="6014" y="4215"/> + <Point x="6005" y="4215"/> + <Point x="6007" y="4216"/> + <Point x="5991" y="4216"/> + <Point x="5977" y="4215"/> + <Point x="5932" y="4215"/> + <Point x="5930" y="4216"/> + <Point x="5915" y="4216"/> + <Point x="5913" y="4217"/> + <Point x="5898" y="4217"/> + <Point x="5895" y="4213"/> + <Point x="5888" y="4213"/> + <Point x="5887" y="4214"/> + <Point x="5877" y="4214"/> + <Point x="5875" y="4213"/> + <Point x="5865" y="4213"/> + <Point x="5864" y="4214"/> + <Point x="5850" y="4214"/> + <Point x="5849" y="4220"/> + <Point x="5833" y="4220"/> + <Point x="5823" y="4215"/> + <Point x="5812" y="4215"/> + <Point x="5810" y="4214"/> + <Point x="5782" y="4214"/> + <Point x="5780" y="4215"/> + <Point x="5730" y="4215"/> + <Point x="5729" y="4216"/> + <Point x="5698" y="4216"/> + <Point x="5684" y="4217"/> + <Point x="5653" y="4217"/> + <Point x="5652" y="4216"/> + <Point x="5647" y="4216"/> + <Point x="5645" y="4217"/> + <Point x="5616" y="4217"/> + <Point x="5605" y="4218"/> + <Point x="5595" y="4218"/> + <Point x="5593" y="4219"/> + <Point x="5529" y="4219"/> + <Point x="5527" y="4218"/> + <Point x="5518" y="4249"/> + <Point x="5459" y="4249"/> + <Point x="5445" y="4250"/> + <Point x="5401" y="4250"/> + <Point x="5396" y="4258"/> + <Point x="5371" y="4258"/> + <Point x="5355" y="4251"/> + <Point x="5351" y="4249"/> + <Point x="5343" y="4249"/> + <Point x="5343" y="4099"/> + <Point x="5341" y="4069"/> + <Point x="5358" y="4069"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>* A journeyman is obliged to travel for a certain num- +ber of years, and find work in different states, before he can +set up at home as a master of his own trade. On the termi- +nation of his apprenticeship his wander�ahrs (travelling +years) commence, and the a wanderbücher (travelling +book), in which his same and other particulars are entered +is given him.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r449" type="heading"> + <Coords> + <Point x="5550" y="4281"/> + <Point x="5608" y="4279"/> + <Point x="5928" y="4275"/> + <Point x="5942" y="4298"/> + <Point x="5941" y="4311"/> + <Point x="5843" y="4309"/> + <Point x="5817" y="4309"/> + <Point x="5815" y="4310"/> + <Point x="5759" y="4310"/> + <Point x="5757" y="4309"/> + <Point x="5739" y="4309"/> + <Point x="5738" y="4310"/> + <Point x="5550" y="4314"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>COURT CIRCULAR.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r451" type="paragraph"> + <Coords> + <Point x="5383" y="4487"/> + <Point x="5411" y="4487"/> + <Point x="5411" y="4496"/> + <Point x="5422" y="4496"/> + <Point x="5426" y="4494"/> + <Point x="5435" y="4494"/> + <Point x="5451" y="4485"/> + <Point x="5475" y="4485"/> + <Point x="5478" y="4493"/> + <Point x="5503" y="4493"/> + <Point x="5509" y="4494"/> + <Point x="5520" y="4485"/> + <Point x="5531" y="4485"/> + <Point x="5544" y="4484"/> + <Point x="5564" y="4484"/> + <Point x="5567" y="4485"/> + <Point x="5606" y="4485"/> + <Point x="5609" y="4492"/> + <Point x="5623" y="4492"/> + <Point x="5626" y="4491"/> + <Point x="5651" y="4491"/> + <Point x="5653" y="4490"/> + <Point x="5663" y="4490"/> + <Point x="5674" y="4486"/> + <Point x="5684" y="4486"/> + <Point x="5686" y="4482"/> + <Point x="5701" y="4482"/> + <Point x="5705" y="4489"/> + <Point x="5717" y="4489"/> + <Point x="5733" y="4484"/> + <Point x="5753" y="4484"/> + <Point x="5758" y="4491"/> + <Point x="5771" y="4491"/> + <Point x="5773" y="4490"/> + <Point x="5788" y="4483"/> + <Point x="5804" y="4483"/> + <Point x="5806" y="4490"/> + <Point x="5872" y="4483"/> + <Point x="5881" y="4483"/> + <Point x="5894" y="4482"/> + <Point x="5914" y="4482"/> + <Point x="5948" y="4485"/> + <Point x="5956" y="4485"/> + <Point x="5976" y="4488"/> + <Point x="5989" y="4482"/> + <Point x="6012" y="4482"/> + <Point x="6012" y="4488"/> + <Point x="6035" y="4488"/> + <Point x="6040" y="4477"/> + <Point x="6103" y="4477"/> + <Point x="6106" y="4487"/> + <Point x="6096" y="4516"/> + <Point x="6089" y="4516"/> + <Point x="6096" y="4516"/> + <Point x="6089" y="4516"/> + <Point x="6071" y="4507"/> + <Point x="6066" y="4507"/> + <Point x="6064" y="4541"/> + <Point x="6055" y="4540"/> + <Point x="6053" y="4541"/> + <Point x="6044" y="4541"/> + <Point x="6042" y="4542"/> + <Point x="6004" y="4542"/> + <Point x="6001" y="4543"/> + <Point x="5975" y="4543"/> + <Point x="5971" y="4544"/> + <Point x="5959" y="4544"/> + <Point x="5940" y="4545"/> + <Point x="5860" y="4545"/> + <Point x="5856" y="4546"/> + <Point x="5783" y="4546"/> + <Point x="5772" y="4547"/> + <Point x="5761" y="4547"/> + <Point x="5758" y="4546"/> + <Point x="5729" y="4546"/> + <Point x="5714" y="4545"/> + <Point x="5700" y="4545"/> + <Point x="5696" y="4546"/> + <Point x="5667" y="4546"/> + <Point x="5665" y="4547"/> + <Point x="5655" y="4547"/> + <Point x="5643" y="4552"/> + <Point x="5637" y="4552"/> + <Point x="5634" y="4547"/> + <Point x="5609" y="4547"/> + <Point x="5607" y="4548"/> + <Point x="5593" y="4548"/> + <Point x="5590" y="4546"/> + <Point x="5572" y="4546"/> + <Point x="5568" y="4548"/> + <Point x="5532" y="4548"/> + <Point x="5515" y="4554"/> + <Point x="5501" y="4554"/> + <Point x="5497" y="4548"/> + <Point x="5420" y="4549"/> + <Point x="5415" y="4555"/> + <Point x="5406" y="4554"/> + <Point x="5404" y="4550"/> + <Point x="5391" y="4550"/> + <Point x="5390" y="4551"/> + <Point x="5352" y="4551"/> + <Point x="5351" y="4519"/> + <Point x="5374" y="4520"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>Her Royal Highness the Duchess of Kent, attended by +Lady Fanny Howard, took her accustomed exercise.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r452" type="paragraph"> + <Coords> + <Point x="5384" y="4555"/> + <Point x="5407" y="4555"/> + <Point x="5412" y="4561"/> + <Point x="5437" y="4561"/> + <Point x="5450" y="4553"/> + <Point x="5476" y="4553"/> + <Point x="5477" y="4560"/> + <Point x="5490" y="4560"/> + <Point x="5489" y="4553"/> + <Point x="5498" y="4553"/> + <Point x="5502" y="4560"/> + <Point x="5514" y="4560"/> + <Point x="5517" y="4559"/> + <Point x="5527" y="4559"/> + <Point x="5529" y="4555"/> + <Point x="5537" y="4555"/> + <Point x="5540" y="4559"/> + <Point x="5553" y="4559"/> + <Point x="5566" y="4558"/> + <Point x="5577" y="4558"/> + <Point x="5579" y="4560"/> + <Point x="5591" y="4560"/> + <Point x="5596" y="4552"/> + <Point x="5609" y="4552"/> + <Point x="5611" y="4558"/> + <Point x="5658" y="4558"/> + <Point x="5662" y="4557"/> + <Point x="5675" y="4557"/> + <Point x="5678" y="4554"/> + <Point x="5688" y="4554"/> + <Point x="5706" y="4555"/> + <Point x="5715" y="4555"/> + <Point x="5715" y="4551"/> + <Point x="5743" y="4551"/> + <Point x="5745" y="4558"/> + <Point x="5755" y="4558"/> + <Point x="5766" y="4557"/> + <Point x="5780" y="4557"/> + <Point x="5781" y="4549"/> + <Point x="5793" y="4550"/> + <Point x="5799" y="4556"/> + <Point x="5802" y="4557"/> + <Point x="5876" y="4557"/> + <Point x="5880" y="4556"/> + <Point x="5894" y="4556"/> + <Point x="5911" y="4549"/> + <Point x="5924" y="4549"/> + <Point x="5923" y="4556"/> + <Point x="5937" y="4556"/> + <Point x="5954" y="4555"/> + <Point x="6023" y="4552"/> + <Point x="6037" y="4553"/> + <Point x="6047" y="4553"/> + <Point x="6062" y="4552"/> + <Point x="6098" y="4552"/> + <Point x="6090" y="4552"/> + <Point x="6104" y="4552"/> + <Point x="6105" y="4560"/> + <Point x="6103" y="4584"/> + <Point x="6103" y="4605"/> + <Point x="6102" y="4625"/> + <Point x="6102" y="4637"/> + <Point x="6088" y="4648"/> + <Point x="6081" y="4648"/> + <Point x="6074" y="4641"/> + <Point x="6074" y="4640"/> + <Point x="6064" y="4640"/> + <Point x="6048" y="4643"/> + <Point x="6034" y="4643"/> + <Point x="6036" y="4643"/> + <Point x="6028" y="4643"/> + <Point x="6033" y="4644"/> + <Point x="6022" y="4644"/> + <Point x="6027" y="4644"/> + <Point x="6015" y="4644"/> + <Point x="6016" y="4644"/> + <Point x="6004" y="4644"/> + <Point x="6007" y="4650"/> + <Point x="5989" y="4650"/> + <Point x="5979" y="4645"/> + <Point x="5974" y="4645"/> + <Point x="5976" y="4647"/> + <Point x="5955" y="4647"/> + <Point x="5941" y="4645"/> + <Point x="5911" y="4645"/> + <Point x="5909" y="4646"/> + <Point x="5895" y="4646"/> + <Point x="5877" y="4651"/> + <Point x="5871" y="4651"/> + <Point x="5854" y="4646"/> + <Point x="5850" y="4647"/> + <Point x="5838" y="4647"/> + <Point x="5836" y="4646"/> + <Point x="5831" y="4646"/> + <Point x="5828" y="4647"/> + <Point x="5746" y="4647"/> + <Point x="5723" y="4651"/> + <Point x="5716" y="4651"/> + <Point x="5705" y="4646"/> + <Point x="5701" y="4679"/> + <Point x="5677" y="4679"/> + <Point x="5675" y="4680"/> + <Point x="5350" y="4682"/> + <Point x="5350" y="4596"/> + <Point x="5371" y="4587"/> + <Point x="5385" y="4587"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>Her Majesty rode out this afternoon in an open pony +phaeton, which was driven by his Royal Highness Prince +Albert. Colonel Wemyss, Mr. Rich, and Captain Sey- +mour were in attendance.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r453" type="paragraph"> + <Coords> + <Point x="5384" y="4686"/> + <Point x="5409" y="4686"/> + <Point x="5412" y="4687"/> + <Point x="5417" y="4687"/> + <Point x="5421" y="4694"/> + <Point x="5430" y="4694"/> + <Point x="5445" y="4686"/> + <Point x="5464" y="4686"/> + <Point x="5479" y="4693"/> + <Point x="5482" y="4694"/> + <Point x="5495" y="4694"/> + <Point x="5498" y="4693"/> + <Point x="5508" y="4685"/> + <Point x="5519" y="4685"/> + <Point x="5533" y="4684"/> + <Point x="5552" y="4684"/> + <Point x="5556" y="4685"/> + <Point x="5594" y="4685"/> + <Point x="5598" y="4692"/> + <Point x="5639" y="4692"/> + <Point x="5641" y="4691"/> + <Point x="5651" y="4691"/> + <Point x="5658" y="4684"/> + <Point x="5681" y="4684"/> + <Point x="5696" y="4683"/> + <Point x="5702" y="4683"/> + <Point x="5706" y="4691"/> + <Point x="5750" y="4691"/> + <Point x="5762" y="4683"/> + <Point x="5807" y="4683"/> + <Point x="5809" y="4691"/> + <Point x="5834" y="4691"/> + <Point x="5833" y="4685"/> + <Point x="5854" y="4682"/> + <Point x="5868" y="4682"/> + <Point x="5872" y="4690"/> + <Point x="5919" y="4690"/> + <Point x="5922" y="4689"/> + <Point x="5956" y="4689"/> + <Point x="5965" y="4681"/> + <Point x="5978" y="4681"/> + <Point x="5991" y="4680"/> + <Point x="6009" y="4680"/> + <Point x="6036" y="4677"/> + <Point x="6056" y="4677"/> + <Point x="6065" y="4676"/> + <Point x="6093" y="4676"/> + <Point x="6092" y="4679"/> + <Point x="6103" y="4683"/> + <Point x="6102" y="4706"/> + <Point x="6102" y="4740"/> + <Point x="6079" y="4741"/> + <Point x="6082" y="4741"/> + <Point x="6068" y="4741"/> + <Point x="6062" y="4742"/> + <Point x="6050" y="4743"/> + <Point x="6052" y="4743"/> + <Point x="6032" y="4743"/> + <Point x="6024" y="4745"/> + <Point x="5980" y="4745"/> + <Point x="5973" y="4777"/> + <Point x="5932" y="4777"/> + <Point x="5931" y="4779"/> + <Point x="5918" y="4779"/> + <Point x="5915" y="4778"/> + <Point x="5903" y="4778"/> + <Point x="5900" y="4780"/> + <Point x="5877" y="4780"/> + <Point x="5866" y="4779"/> + <Point x="5853" y="4779"/> + <Point x="5850" y="4780"/> + <Point x="5836" y="4780"/> + <Point x="5833" y="4779"/> + <Point x="5808" y="4779"/> + <Point x="5800" y="4785"/> + <Point x="5794" y="4785"/> + <Point x="5792" y="4779"/> + <Point x="5782" y="4780"/> + <Point x="5758" y="4780"/> + <Point x="5754" y="4787"/> + <Point x="5746" y="4787"/> + <Point x="5741" y="4780"/> + <Point x="5707" y="4780"/> + <Point x="5695" y="4781"/> + <Point x="5651" y="4781"/> + <Point x="5643" y="4780"/> + <Point x="5618" y="4780"/> + <Point x="5605" y="4781"/> + <Point x="5532" y="4781"/> + <Point x="5529" y="4782"/> + <Point x="5476" y="4782"/> + <Point x="5474" y="4783"/> + <Point x="5435" y="4783"/> + <Point x="5433" y="4782"/> + <Point x="5424" y="4782"/> + <Point x="5420" y="4783"/> + <Point x="5407" y="4783"/> + <Point x="5401" y="4782"/> + <Point x="5396" y="4782"/> + <Point x="5392" y="4783"/> + <Point x="5372" y="4783"/> + <Point x="5371" y="4792"/> + <Point x="5352" y="4791"/> + <Point x="5353" y="4729"/> + <Point x="5374" y="4729"/> + <Point x="5374" y="4720"/> + <Point x="5383" y="4720"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>His Royal Highness Prince Albert honoured Mr. Fowler +with an interview this morning, and inspected a finished +picture and sketch of her Majesty the Queen.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r454" type="paragraph"> + <Coords> + <Point x="5383" y="4786"/> + <Point x="5407" y="4786"/> + <Point x="5411" y="4794"/> + <Point x="5423" y="4794"/> + <Point x="5426" y="4793"/> + <Point x="5436" y="4793"/> + <Point x="5438" y="4785"/> + <Point x="5453" y="4785"/> + <Point x="5465" y="4792"/> + <Point x="5494" y="4792"/> + <Point x="5497" y="4785"/> + <Point x="5512" y="4785"/> + <Point x="5533" y="4783"/> + <Point x="5551" y="4783"/> + <Point x="5554" y="4792"/> + <Point x="5567" y="4792"/> + <Point x="5569" y="4784"/> + <Point x="5583" y="4784"/> + <Point x="5620" y="4783"/> + <Point x="5675" y="4783"/> + <Point x="5679" y="4791"/> + <Point x="5708" y="4791"/> + <Point x="5711" y="4784"/> + <Point x="5730" y="4784"/> + <Point x="5738" y="4791"/> + <Point x="5752" y="4791"/> + <Point x="5754" y="4790"/> + <Point x="5768" y="4790"/> + <Point x="5770" y="4783"/> + <Point x="5788" y="4783"/> + <Point x="5795" y="4798"/> + <Point x="5808" y="4783"/> + <Point x="5830" y="4783"/> + <Point x="5834" y="4790"/> + <Point x="5845" y="4790"/> + <Point x="5857" y="4783"/> + <Point x="5881" y="4783"/> + <Point x="5883" y="4791"/> + <Point x="5895" y="4791"/> + <Point x="5896" y="4790"/> + <Point x="5910" y="4790"/> + <Point x="5912" y="4789"/> + <Point x="5938" y="4789"/> + <Point x="5940" y="4788"/> + <Point x="5953" y="4788"/> + <Point x="5968" y="4780"/> + <Point x="5991" y="4780"/> + <Point x="6024" y="4786"/> + <Point x="6057" y="4786"/> + <Point x="6058" y="4785"/> + <Point x="6081" y="4781"/> + <Point x="6098" y="4782"/> + <Point x="6098" y="4805"/> + <Point x="6079" y="4806"/> + <Point x="6074" y="4806"/> + <Point x="6066" y="4808"/> + <Point x="6050" y="4808"/> + <Point x="6048" y="4809"/> + <Point x="6037" y="4809"/> + <Point x="6025" y="4817"/> + <Point x="6011" y="4816"/> + <Point x="5966" y="4810"/> + <Point x="5953" y="4812"/> + <Point x="5940" y="4812"/> + <Point x="5938" y="4818"/> + <Point x="5924" y="4818"/> + <Point x="5891" y="4844"/> + <Point x="5752" y="4845"/> + <Point x="5745" y="4846"/> + <Point x="5739" y="4851"/> + <Point x="5725" y="4851"/> + <Point x="5720" y="4850"/> + <Point x="5671" y="4848"/> + <Point x="5638" y="4847"/> + <Point x="5604" y="4847"/> + <Point x="5497" y="4849"/> + <Point x="5445" y="4854"/> + <Point x="5438" y="4857"/> + <Point x="5352" y="4858"/> + <Point x="5351" y="4828"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>Lord and Lady Holland and Sir George Grey are ex +pected to arrive this evening on a visit.</Unicode></TextEquiv></TextRegion> + <SeparatorRegion id="r456"> + <Coords> + <Point x="5715" y="4853"/> + <Point x="5757" y="4853"/> + <Point x="5755" y="4853"/> + <Point x="5765" y="4853"/> + <Point x="5764" y="4853"/> + <Point x="5774" y="4853"/> + <Point x="5771" y="4853"/> + <Point x="5788" y="4853"/> + <Point x="5788" y="4881"/> + <Point x="5715" y="4881"/></Coords></SeparatorRegion> + <TextRegion id="r457" type="paragraph"> + <Coords> + <Point x="5387" y="4884"/> + <Point x="5421" y="4884"/> + <Point x="5421" y="4894"/> + <Point x="5431" y="4894"/> + <Point x="5443" y="4886"/> + <Point x="5462" y="4886"/> + <Point x="5464" y="4894"/> + <Point x="5478" y="4894"/> + <Point x="5481" y="4893"/> + <Point x="5506" y="4893"/> + <Point x="5506" y="4885"/> + <Point x="5593" y="4885"/> + <Point x="5596" y="4892"/> + <Point x="5624" y="4892"/> + <Point x="5627" y="4893"/> + <Point x="5637" y="4893"/> + <Point x="5640" y="4891"/> + <Point x="5652" y="4891"/> + <Point x="5665" y="4884"/> + <Point x="5706" y="4884"/> + <Point x="5709" y="4892"/> + <Point x="5723" y="4892"/> + <Point x="5726" y="4890"/> + <Point x="5754" y="4890"/> + <Point x="5779" y="4883"/> + <Point x="5800" y="4883"/> + <Point x="5803" y="4890"/> + <Point x="5907" y="4890"/> + <Point x="5910" y="4882"/> + <Point x="5957" y="4882"/> + <Point x="5960" y="4890"/> + <Point x="5973" y="4890"/> + <Point x="5976" y="4889"/> + <Point x="5988" y="4889"/> + <Point x="5997" y="4880"/> + <Point x="6105" y="4880"/> + <Point x="6106" y="4928"/> + <Point x="6106" y="5043"/> + <Point x="6089" y="5043"/> + <Point x="6102" y="5043"/> + <Point x="6067" y="5043"/> + <Point x="6065" y="5045"/> + <Point x="6056" y="5045"/> + <Point x="6054" y="5046"/> + <Point x="6038" y="5046"/> + <Point x="6035" y="5047"/> + <Point x="6023" y="5047"/> + <Point x="5997" y="5052"/> + <Point x="5984" y="5052"/> + <Point x="5960" y="5044"/> + <Point x="5957" y="5045"/> + <Point x="5943" y="5045"/> + <Point x="5941" y="5046"/> + <Point x="5928" y="5046"/> + <Point x="5924" y="5045"/> + <Point x="5914" y="5045"/> + <Point x="5910" y="5046"/> + <Point x="5897" y="5046"/> + <Point x="5875" y="5047"/> + <Point x="5845" y="5047"/> + <Point x="5842" y="5048"/> + <Point x="5750" y="5048"/> + <Point x="5732" y="5047"/> + <Point x="5730" y="5046"/> + <Point x="5716" y="5046"/> + <Point x="5694" y="5051"/> + <Point x="5688" y="5051"/> + <Point x="5672" y="5047"/> + <Point x="5621" y="5047"/> + <Point x="5618" y="5048"/> + <Point x="5607" y="5048"/> + <Point x="5604" y="5079"/> + <Point x="5497" y="5079"/> + <Point x="5353" y="5080"/> + <Point x="5356" y="5055"/> + <Point x="5352" y="4983"/> + <Point x="5352" y="4927"/> + <Point x="5363" y="4926"/> + <Point x="5365" y="4920"/> + <Point x="5374" y="4920"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>His Royal Highness Prince George of Cambridge ar- +rived at Cambridge‑house, Piccadilly at a quarter before +four o’clock yesterday afternoon, from the continent. +His Royal Highness after his arrival paid a vis�� to the +Duchess of Gloucester, and in the evening dined at +Gloucester‑house.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r458" type="paragraph"> + <Coords> + <Point x="5390" y="5084"/> + <Point x="5411" y="5084"/> + <Point x="5427" y="5088"/> + <Point x="5430" y="5092"/> + <Point x="5443" y="5092"/> + <Point x="5458" y="5084"/> + <Point x="5477" y="5084"/> + <Point x="5480" y="5085"/> + <Point x="5485" y="5085"/> + <Point x="5487" y="5091"/> + <Point x="5501" y="5091"/> + <Point x="5504" y="5084"/> + <Point x="5518" y="5084"/> + <Point x="5521" y="5088"/> + <Point x="5531" y="5088"/> + <Point x="5546" y="5083"/> + <Point x="5566" y="5083"/> + <Point x="5568" y="5091"/> + <Point x="5582" y="5091"/> + <Point x="5584" y="5090"/> + <Point x="5598" y="5090"/> + <Point x="5623" y="5081"/> + <Point x="5687" y="5081"/> + <Point x="5713" y="5085"/> + <Point x="5735" y="5085"/> + <Point x="5801" y="5083"/> + <Point x="5807" y="5083"/> + <Point x="5811" y="5091"/> + <Point x="5840" y="5091"/> + <Point x="5852" y="5083"/> + <Point x="5867" y="5083"/> + <Point x="5870" y="5090"/> + <Point x="5921" y="5090"/> + <Point x="5923" y="5089"/> + <Point x="5946" y="5081"/> + <Point x="5959" y="5081"/> + <Point x="5969" y="5088"/> + <Point x="5977" y="5092"/> + <Point x="5987" y="5092"/> + <Point x="5991" y="5080"/> + <Point x="6062" y="5080"/> + <Point x="6107" y="5073"/> + <Point x="6107" y="5142"/> + <Point x="6081" y="5141"/> + <Point x="6083" y="5144"/> + <Point x="6063" y="5144"/> + <Point x="6065" y="5146"/> + <Point x="6041" y="5146"/> + <Point x="6043" y="5147"/> + <Point x="6028" y="5147"/> + <Point x="6030" y="5148"/> + <Point x="6012" y="5148"/> + <Point x="6008" y="5147"/> + <Point x="5996" y="5147"/> + <Point x="5972" y="5148"/> + <Point x="5957" y="5148"/> + <Point x="5950" y="5146"/> + <Point x="5856" y="5146"/> + <Point x="5853" y="5147"/> + <Point x="5839" y="5147"/> + <Point x="5837" y="5148"/> + <Point x="5825" y="5148"/> + <Point x="5823" y="5147"/> + <Point x="5784" y="5147"/> + <Point x="5761" y="5149"/> + <Point x="5676" y="5149"/> + <Point x="5672" y="5148"/> + <Point x="5568" y="5148"/> + <Point x="5545" y="5152"/> + <Point x="5539" y="5152"/> + <Point x="5520" y="5180"/> + <Point x="5355" y="5182"/> + <Point x="5355" y="5118"/> + <Point x="5363" y="5118"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>The Right Hon. T. B. Macaulay has arrived at Broad- +lands, Hants, on a visit to Viscount and Viscountess +Palmerston.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r459" type="paragraph"> + <Coords> + <Point x="5392" y="5185"/> + <Point x="5523" y="5185"/> + <Point x="5546" y="5193"/> + <Point x="5559" y="5193"/> + <Point x="5562" y="5185"/> + <Point x="5610" y="5185"/> + <Point x="5613" y="5186"/> + <Point x="5619" y="5186"/> + <Point x="5648" y="5189"/> + <Point x="5650" y="5194"/> + <Point x="5665" y="5194"/> + <Point x="5683" y="5185"/> + <Point x="5698" y="5185"/> + <Point x="5701" y="5193"/> + <Point x="5714" y="5193"/> + <Point x="5716" y="5194"/> + <Point x="5727" y="5194"/> + <Point x="5744" y="5184"/> + <Point x="5788" y="5184"/> + <Point x="5815" y="5187"/> + <Point x="5824" y="5187"/> + <Point x="5826" y="5191"/> + <Point x="5840" y="5191"/> + <Point x="5844" y="5192"/> + <Point x="5863" y="5192"/> + <Point x="5866" y="5191"/> + <Point x="5880" y="5191"/> + <Point x="5904" y="5181"/> + <Point x="5918" y="5181"/> + <Point x="5930" y="5190"/> + <Point x="5945" y="5193"/> + <Point x="5967" y="5185"/> + <Point x="5989" y="5185"/> + <Point x="6060" y="5183"/> + <Point x="6108" y="5182"/> + <Point x="6108" y="5208"/> + <Point x="6093" y="5207"/> + <Point x="6104" y="5207"/> + <Point x="6093" y="5207"/> + <Point x="6082" y="5211"/> + <Point x="6052" y="5211"/> + <Point x="6050" y="5213"/> + <Point x="6040" y="5213"/> + <Point x="6038" y="5214"/> + <Point x="6030" y="5214"/> + <Point x="6027" y="5213"/> + <Point x="6018" y="5213"/> + <Point x="6002" y="5215"/> + <Point x="5992" y="5215"/> + <Point x="5989" y="5214"/> + <Point x="5984" y="5214"/> + <Point x="5981" y="5216"/> + <Point x="5933" y="5216"/> + <Point x="5930" y="5215"/> + <Point x="5914" y="5215"/> + <Point x="5914" y="5214"/> + <Point x="5866" y="5214"/> + <Point x="5863" y="5215"/> + <Point x="5815" y="5215"/> + <Point x="5792" y="5216"/> + <Point x="5758" y="5216"/> + <Point x="5755" y="5215"/> + <Point x="5749" y="5215"/> + <Point x="5727" y="5216"/> + <Point x="5623" y="5216"/> + <Point x="5619" y="5217"/> + <Point x="5613" y="5217"/> + <Point x="5610" y="5216"/> + <Point x="5562" y="5216"/> + <Point x="5559" y="5217"/> + <Point x="5546" y="5217"/> + <Point x="5523" y="5215"/> + <Point x="5516" y="5215"/> + <Point x="5514" y="5216"/> + <Point x="5489" y="5216"/> + <Point x="5485" y="5215"/> + <Point x="5474" y="5215"/> + <Point x="5472" y="5248"/> + <Point x="5359" y="5248"/> + <Point x="5359" y="5220"/> + <Point x="5381" y="5220"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>The Earl of Minto has left town for his seat near +Hawick.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r460" type="paragraph"> + <Coords> + <Point x="5387" y="5251"/> + <Point x="5418" y="5251"/> + <Point x="5416" y="5259"/> + <Point x="5475" y="5254"/> + <Point x="5483" y="5254"/> + <Point x="5500" y="5251"/> + <Point x="5515" y="5251"/> + <Point x="5518" y="5258"/> + <Point x="5530" y="5258"/> + <Point x="5563" y="5251"/> + <Point x="5572" y="5251"/> + <Point x="5578" y="5255"/> + <Point x="5599" y="5259"/> + <Point x="5619" y="5255"/> + <Point x="5626" y="5252"/> + <Point x="5644" y="5252"/> + <Point x="5647" y="5258"/> + <Point x="5660" y="5258"/> + <Point x="5674" y="5251"/> + <Point x="5695" y="5251"/> + <Point x="5699" y="5259"/> + <Point x="5728" y="5259"/> + <Point x="5731" y="5258"/> + <Point x="5743" y="5258"/> + <Point x="5746" y="5259"/> + <Point x="5756" y="5259"/> + <Point x="5759" y="5258"/> + <Point x="5789" y="5258"/> + <Point x="5791" y="5257"/> + <Point x="5800" y="5248"/> + <Point x="5818" y="5248"/> + <Point x="5832" y="5250"/> + <Point x="5884" y="5250"/> + <Point x="5923" y="5249"/> + <Point x="5923" y="5257"/> + <Point x="5954" y="5257"/> + <Point x="5975" y="5258"/> + <Point x="6033" y="5258"/> + <Point x="6042" y="5257"/> + <Point x="6064" y="5248"/> + <Point x="6110" y="5241"/> + <Point x="6110" y="5270"/> + <Point x="6093" y="5273"/> + <Point x="6086" y="5273"/> + <Point x="6093" y="5273"/> + <Point x="6086" y="5273"/> + <Point x="6076" y="5274"/> + <Point x="6047" y="5277"/> + <Point x="6011" y="5278"/> + <Point x="6008" y="5279"/> + <Point x="5996" y="5279"/> + <Point x="5993" y="5278"/> + <Point x="5975" y="5278"/> + <Point x="5954" y="5279"/> + <Point x="5914" y="5279"/> + <Point x="5910" y="5285"/> + <Point x="5897" y="5285"/> + <Point x="5834" y="5278"/> + <Point x="5841" y="5310"/> + <Point x="5787" y="5310"/> + <Point x="5790" y="5310"/> + <Point x="5771" y="5310"/> + <Point x="5768" y="5311"/> + <Point x="5754" y="5311"/> + <Point x="5752" y="5308"/> + <Point x="5743" y="5308"/> + <Point x="5741" y="5311"/> + <Point x="5735" y="5311"/> + <Point x="5731" y="5310"/> + <Point x="5726" y="5310"/> + <Point x="5718" y="5311"/> + <Point x="5678" y="5311"/> + <Point x="5676" y="5312"/> + <Point x="5590" y="5312"/> + <Point x="5584" y="5311"/> + <Point x="5578" y="5311"/> + <Point x="5565" y="5312"/> + <Point x="5514" y="5312"/> + <Point x="5513" y="5311"/> + <Point x="5504" y="5311"/> + <Point x="5493" y="5318"/> + <Point x="5471" y="5318"/> + <Point x="5403" y="5312"/> + <Point x="5400" y="5313"/> + <Point x="5391" y="5313"/> + <Point x="5387" y="5312"/> + <Point x="5369" y="5319"/> + <Point x="5357" y="5319"/> + <Point x="5357" y="5289"/> + <Point x="5387" y="5289"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>Despatches for the Governor of Ceylon were sent off +yesterday, from the Colonial‑office.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r461" type="paragraph"> + <Coords> + <Point x="4568" y="6281"/> + <Point x="4584" y="6282"/> + <Point x="4586" y="6287"/> + <Point x="4597" y="6287"/> + <Point x="4599" y="6286"/> + <Point x="4610" y="6286"/> + <Point x="4612" y="6281"/> + <Point x="4657" y="6281"/> + <Point x="4658" y="6285"/> + <Point x="4669" y="6285"/> + <Point x="4668" y="6284"/> + <Point x="4679" y="6281"/> + <Point x="4680" y="6279"/> + <Point x="4692" y="6279"/> + <Point x="4697" y="6292"/> + <Point x="4702" y="6292"/> + <Point x="4712" y="6280"/> + <Point x="4765" y="6279"/> + <Point x="4800" y="6298"/> + <Point x="4870" y="6298"/> + <Point x="4872" y="6303"/> + <Point x="4872" y="6318"/> + <Point x="4874" y="6341"/> + <Point x="4889" y="6341"/> + <Point x="4883" y="6341"/> + <Point x="4889" y="6341"/> + <Point x="4892" y="6344"/> + <Point x="4892" y="6351"/> + <Point x="4911" y="6344"/> + <Point x="4934" y="6344"/> + <Point x="4945" y="6353"/> + <Point x="4946" y="6384"/> + <Point x="4946" y="6408"/> + <Point x="4892" y="6412"/> + <Point x="4803" y="6411"/> + <Point x="4747" y="6414"/> + <Point x="4688" y="6415"/> + <Point x="4687" y="6434"/> + <Point x="4584" y="6439"/> + <Point x="4567" y="6407"/> + <Point x="4565" y="6337"/> + <Point x="4567" y="6312"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>Bank Stock, 157½ +3 per Cent. Red., 88 3/8 7/8 9 +3½ per Ct. Red., 97 3/8 ½ +3½ per Cent. New, 97 1/8 ¼ ex. +div. for opening +Long Anns., exp. Jan. 5, 1860, 12 15 16 13</Unicode></TextEquiv></TextRegion> + <TextRegion id="r464" type="paragraph"> + <Coords> + <Point x="4572" y="6457"/> + <Point x="4589" y="6457"/> + <Point x="4602" y="6456"/> + <Point x="4628" y="6456"/> + <Point x="4655" y="6460"/> + <Point x="4667" y="6457"/> + <Point x="4677" y="6457"/> + <Point x="4683" y="6460"/> + <Point x="4694" y="6460"/> + <Point x="4695" y="6459"/> + <Point x="4705" y="6459"/> + <Point x="4709" y="6458"/> + <Point x="4717" y="6458"/> + <Point x="4726" y="6454"/> + <Point x="4775" y="6454"/> + <Point x="4783" y="6465"/> + <Point x="4787" y="6464"/> + <Point x="4792" y="6464"/> + <Point x="4802" y="6452"/> + <Point x="4832" y="6452"/> + <Point x="4845" y="6453"/> + <Point x="4846" y="6454"/> + <Point x="4846" y="6474"/> + <Point x="4848" y="6484"/> + <Point x="4853" y="6484"/> + <Point x="4865" y="6472"/> + <Point x="4880" y="6472"/> + <Point x="4882" y="6475"/> + <Point x="4910" y="6475"/> + <Point x="4913" y="6483"/> + <Point x="4919" y="6483"/> + <Point x="4927" y="6472"/> + <Point x="4937" y="6472"/> + <Point x="4938" y="6473"/> + <Point x="4943" y="6472"/> + <Point x="4949" y="6473"/> + <Point x="4949" y="6494"/> + <Point x="4938" y="6495"/> + <Point x="4927" y="6495"/> + <Point x="4919" y="6498"/> + <Point x="4913" y="6498"/> + <Point x="4910" y="6496"/> + <Point x="4865" y="6496"/> + <Point x="4853" y="6500"/> + <Point x="4858" y="6518"/> + <Point x="4868" y="6519"/> + <Point x="4885" y="6519"/> + <Point x="4917" y="6516"/> + <Point x="4946" y="6516"/> + <Point x="4930" y="6516"/> + <Point x="4946" y="6516"/> + <Point x="4948" y="6520"/> + <Point x="4948" y="6540"/> + <Point x="4930" y="6540"/> + <Point x="4946" y="6540"/> + <Point x="4930" y="6540"/> + <Point x="4926" y="6538"/> + <Point x="4917" y="6538"/> + <Point x="4919" y="6538"/> + <Point x="4906" y="6538"/> + <Point x="4894" y="6542"/> + <Point x="4888" y="6542"/> + <Point x="4868" y="6538"/> + <Point x="4867" y="6539"/> + <Point x="4857" y="6539"/> + <Point x="4854" y="6540"/> + <Point x="4839" y="6540"/> + <Point x="4836" y="6542"/> + <Point x="4830" y="6542"/> + <Point x="4828" y="6541"/> + <Point x="4822" y="6541"/> + <Point x="4821" y="6540"/> + <Point x="4813" y="6562"/> + <Point x="4814" y="6582"/> + <Point x="4811" y="6585"/> + <Point x="4795" y="6585"/> + <Point x="4811" y="6585"/> + <Point x="4795" y="6585"/> + <Point x="4790" y="6584"/> + <Point x="4784" y="6584"/> + <Point x="4781" y="6583"/> + <Point x="4772" y="6583"/> + <Point x="4761" y="6587"/> + <Point x="4755" y="6587"/> + <Point x="4752" y="6585"/> + <Point x="4749" y="6585"/> + <Point x="4754" y="6606"/> + <Point x="4763" y="6606"/> + <Point x="4766" y="6603"/> + <Point x="4825" y="6603"/> + <Point x="4838" y="6602"/> + <Point x="4844" y="6602"/> + <Point x="4856" y="6603"/> + <Point x="4867" y="6602"/> + <Point x="4896" y="6601"/> + <Point x="4908" y="6602"/> + <Point x="4920" y="6601"/> + <Point x="4920" y="6627"/> + <Point x="4908" y="6628"/> + <Point x="4907" y="6627"/> + <Point x="4900" y="6627"/> + <Point x="4886" y="6629"/> + <Point x="4841" y="6629"/> + <Point x="4825" y="6630"/> + <Point x="4809" y="6630"/> + <Point x="4805" y="6627"/> + <Point x="4795" y="6627"/> + <Point x="4783" y="6630"/> + <Point x="4772" y="6630"/> + <Point x="4766" y="6629"/> + <Point x="4763" y="6628"/> + <Point x="4754" y="6628"/> + <Point x="4743" y="6629"/> + <Point x="4733" y="6629"/> + <Point x="4722" y="6633"/> + <Point x="4702" y="6633"/> + <Point x="4702" y="6632"/> + <Point x="4681" y="6632"/> + <Point x="4668" y="6634"/> + <Point x="4661" y="6634"/> + <Point x="4660" y="6632"/> + <Point x="4649" y="6632"/> + <Point x="4642" y="6636"/> + <Point x="4576" y="6636"/> + <Point x="4575" y="6632"/> + <Point x="4574" y="6609"/> + <Point x="4574" y="6591"/> + <Point x="4575" y="6586"/> + <Point x="4575" y="6547"/> + <Point x="4574" y="6543"/> + <Point x="4574" y="6525"/> + <Point x="4572" y="6522"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>Belgian 5 per Cent., 97½ +Colombian 6 per Ct. 1824, Acc., 24 +Mexican 1837 Acc., 29 +Portuguese 5 per Cent. New, 32¼ +Ditto Acc., 32½ 5/8 +Ditto 3 per Cent., 21¼ +Ditto Acc., 21 2/8 +Spanish, 24¾ 5 4 7/8 5¼ 1/8 3/8 ¼</Unicode></TextEquiv></TextRegion> + <TextRegion id="r465" type="heading"> + <Coords> + <Point x="4892" y="6632"/> + <Point x="5038" y="6631"/> + <Point x="5040" y="6642"/> + <Point x="5049" y="6643"/> + <Point x="5048" y="6652"/> + <Point x="5043" y="6654"/> + <Point x="5029" y="6653"/> + <Point x="4963" y="6653"/> + <Point x="4893" y="6654"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>RAILWAYS.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r467" type="paragraph"> + <Coords> + <Point x="4967" y="6450"/> + <Point x="4982" y="6450"/> + <Point x="4984" y="6453"/> + <Point x="5008" y="6453"/> + <Point x="5009" y="6452"/> + <Point x="5021" y="6452"/> + <Point x="5022" y="6450"/> + <Point x="5028" y="6450"/> + <Point x="5032" y="6453"/> + <Point x="5037" y="6450"/> + <Point x="5083" y="6450"/> + <Point x="5108" y="6451"/> + <Point x="5123" y="6461"/> + <Point x="5140" y="6448"/> + <Point x="5231" y="6447"/> + <Point x="5281" y="6448"/> + <Point x="5345" y="6448"/> + <Point x="5344" y="6456"/> + <Point x="5345" y="6555"/> + <Point x="5232" y="6628"/> + <Point x="5037" y="6626"/> + <Point x="4969" y="6625"/> + <Point x="4967" y="6546"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>Spanish Acc., 24 7/8 5 1/8 5 3/8 ¼ ¾ ½ 3/8 +Ditto Passive. 6¼ ¾ +Fr. Rentes, 4½ per Cts., 101f. 50c., ex. 25f. 40c. +Dutch 2½ per Cent., 51¾ 1/8 +Ditto Acc., 51¼ +Ditto 5 per Cent., 97 1/8</Unicode></TextEquiv></TextRegion> + <TextRegion id="r474" type="heading"> + <Coords> + <Point x="4745" y="6912"/> + <Point x="4775" y="6915"/> + <Point x="4780" y="6914"/> + <Point x="4804" y="6914"/> + <Point x="4808" y="6913"/> + <Point x="4917" y="6911"/> + <Point x="4987" y="6911"/> + <Point x="5181" y="6910"/> + <Point x="5180" y="6931"/> + <Point x="5190" y="6932"/> + <Point x="5190" y="6945"/> + <Point x="5180" y="6945"/> + <Point x="5178" y="6943"/> + <Point x="5157" y="6943"/> + <Point x="5155" y="6944"/> + <Point x="5096" y="6944"/> + <Point x="5093" y="6945"/> + <Point x="5069" y="6945"/> + <Point x="5064" y="6943"/> + <Point x="5038" y="6943"/> + <Point x="5021" y="6944"/> + <Point x="4942" y="6944"/> + <Point x="4943" y="6945"/> + <Point x="4744" y="6948"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>PORTUGUESE BONDS.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r475" type="heading"> + <Coords> + <Point x="4580" y="6981"/> + <Point x="4606" y="6981"/> + <Point x="4607" y="6989"/> + <Point x="4645" y="6988"/> + <Point x="4649" y="6987"/> + <Point x="4682" y="6987"/> + <Point x="4701" y="6979"/> + <Point x="4745" y="6979"/> + <Point x="4752" y="6978"/> + <Point x="4807" y="6978"/> + <Point x="4812" y="6977"/> + <Point x="4831" y="6977"/> + <Point x="4847" y="6984"/> + <Point x="4863" y="6984"/> + <Point x="4866" y="6983"/> + <Point x="4909" y="6983"/> + <Point x="4913" y="6982"/> + <Point x="4946" y="6982"/> + <Point x="4960" y="6975"/> + <Point x="4982" y="6975"/> + <Point x="4988" y="6976"/> + <Point x="5009" y="6976"/> + <Point x="5014" y="6975"/> + <Point x="5342" y="6971"/> + <Point x="5348" y="6993"/> + <Point x="5355" y="6993"/> + <Point x="5355" y="7004"/> + <Point x="5264" y="7004"/> + <Point x="5259" y="7003"/> + <Point x="5240" y="7003"/> + <Point x="5235" y="7004"/> + <Point x="5062" y="7004"/> + <Point x="5056" y="7005"/> + <Point x="5037" y="7005"/> + <Point x="5033" y="7004"/> + <Point x="5014" y="7004"/> + <Point x="5009" y="7005"/> + <Point x="4933" y="7005"/> + <Point x="4929" y="7006"/> + <Point x="4895" y="7006"/> + <Point x="4878" y="7007"/> + <Point x="4812" y="7007"/> + <Point x="4807" y="7008"/> + <Point x="4581" y="7010"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>TO THE EDITOR OF THE MORNING CHRONICLE.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r477" type="paragraph"> + <Coords> + <Point x="4579" y="7054"/> + <Point x="4597" y="7054"/> + <Point x="4599" y="7045"/> + <Point x="4609" y="7045"/> + <Point x="4615" y="7014"/> + <Point x="4650" y="7014"/> + <Point x="4701" y="7012"/> + <Point x="4807" y="7012"/> + <Point x="4845" y="7010"/> + <Point x="4906" y="7009"/> + <Point x="4995" y="7008"/> + <Point x="5066" y="7006"/> + <Point x="5110" y="7007"/> + <Point x="5163" y="7007"/> + <Point x="5251" y="7012"/> + <Point x="5293" y="7012"/> + <Point x="5326" y="7009"/> + <Point x="5357" y="7009"/> + <Point x="5357" y="7045"/> + <Point x="5353" y="7047"/> + <Point x="5356" y="7050"/> + <Point x="5356" y="7065"/> + <Point x="5346" y="7086"/> + <Point x="5354" y="7086"/> + <Point x="5346" y="7086"/> + <Point x="5354" y="7086"/> + <Point x="5357" y="7089"/> + <Point x="5357" y="7095"/> + <Point x="5347" y="7120"/> + <Point x="5355" y="7120"/> + <Point x="5347" y="7120"/> + <Point x="5355" y="7120"/> + <Point x="5358" y="7123"/> + <Point x="5358" y="7128"/> + <Point x="5355" y="7131"/> + <Point x="5347" y="7131"/> + <Point x="5355" y="7131"/> + <Point x="5347" y="7131"/> + <Point x="5359" y="7149"/> + <Point x="5359" y="7165"/> + <Point x="5347" y="7178"/> + <Point x="5356" y="7178"/> + <Point x="5347" y="7178"/> + <Point x="5356" y="7178"/> + <Point x="5359" y="7181"/> + <Point x="5359" y="7198"/> + <Point x="5358" y="7223"/> + <Point x="5358" y="7229"/> + <Point x="5355" y="7232"/> + <Point x="5347" y="7232"/> + <Point x="5355" y="7232"/> + <Point x="5347" y="7232"/> + <Point x="5359" y="7250"/> + <Point x="5359" y="7266"/> + <Point x="5352" y="7274"/> + <Point x="5361" y="7274"/> + <Point x="5352" y="7274"/> + <Point x="5361" y="7274"/> + <Point x="5364" y="7277"/> + <Point x="5364" y="7299"/> + <Point x="5361" y="7302"/> + <Point x="5352" y="7302"/> + <Point x="5361" y="7302"/> + <Point x="5352" y="7302"/> + <Point x="5360" y="7314"/> + <Point x="5360" y="7333"/> + <Point x="5349" y="7355"/> + <Point x="5357" y="7355"/> + <Point x="5349" y="7355"/> + <Point x="5357" y="7355"/> + <Point x="5360" y="7358"/> + <Point x="5360" y="7363"/> + <Point x="5357" y="7366"/> + <Point x="5349" y="7366"/> + <Point x="5357" y="7366"/> + <Point x="5349" y="7366"/> + <Point x="5360" y="7377"/> + <Point x="5360" y="7399"/> + <Point x="5354" y="7406"/> + <Point x="5363" y="7406"/> + <Point x="5354" y="7406"/> + <Point x="5363" y="7406"/> + <Point x="5364" y="7409"/> + <Point x="5364" y="7432"/> + <Point x="5363" y="7461"/> + <Point x="5363" y="7471"/> + <Point x="5360" y="7474"/> + <Point x="5354" y="7474"/> + <Point x="5360" y="7474"/> + <Point x="5354" y="7474"/> + <Point x="5363" y="7485"/> + <Point x="5363" y="7501"/> + <Point x="5360" y="7504"/> + <Point x="5351" y="7504"/> + <Point x="5360" y="7504"/> + <Point x="5351" y="7504"/> + <Point x="5364" y="7511"/> + <Point x="5364" y="7568"/> + <Point x="5348" y="7583"/> + <Point x="5361" y="7583"/> + <Point x="5348" y="7583"/> + <Point x="5361" y="7583"/> + <Point x="5364" y="7586"/> + <Point x="5364" y="7603"/> + <Point x="5354" y="7612"/> + <Point x="5366" y="7612"/> + <Point x="5366" y="7710"/> + <Point x="5321" y="7710"/> + <Point x="5319" y="7709"/> + <Point x="5288" y="7709"/> + <Point x="5277" y="7712"/> + <Point x="5270" y="7712"/> + <Point x="5181" y="7714"/> + <Point x="5165" y="7714"/> + <Point x="5116" y="7707"/> + <Point x="5117" y="7708"/> + <Point x="5108" y="7708"/> + <Point x="5097" y="7707"/> + <Point x="5083" y="7707"/> + <Point x="5082" y="7708"/> + <Point x="5019" y="7708"/> + <Point x="5010" y="7707"/> + <Point x="4999" y="7707"/> + <Point x="4998" y="7708"/> + <Point x="4942" y="7708"/> + <Point x="4938" y="7715"/> + <Point x="4893" y="7715"/> + <Point x="4886" y="7708"/> + <Point x="4876" y="7708"/> + <Point x="4875" y="7709"/> + <Point x="4861" y="7709"/> + <Point x="4850" y="7708"/> + <Point x="4812" y="7708"/> + <Point x="4809" y="7707"/> + <Point x="4801" y="7707"/> + <Point x="4798" y="7715"/> + <Point x="4780" y="7715"/> + <Point x="4780" y="7708"/> + <Point x="4758" y="7708"/> + <Point x="4755" y="7707"/> + <Point x="4730" y="7707"/> + <Point x="4727" y="7708"/> + <Point x="4703" y="7708"/> + <Point x="4693" y="7709"/> + <Point x="4666" y="7709"/> + <Point x="4667" y="7710"/> + <Point x="4607" y="7710"/> + <Point x="4605" y="7709"/> + <Point x="4592" y="7709"/> + <Point x="4589" y="7706"/> + <Point x="4589" y="7650"/> + <Point x="4603" y="7641"/> + <Point x="4591" y="7641"/> + <Point x="4588" y="7638"/> + <Point x="4588" y="7579"/> + <Point x="4590" y="7572"/> + <Point x="4587" y="7569"/> + <Point x="4587" y="7552"/> + <Point x="4589" y="7539"/> + <Point x="4584" y="7536"/> + <Point x="4584" y="7420"/> + <Point x="4596" y="7405"/> + <Point x="4588" y="7405"/> + <Point x="4585" y="7402"/> + <Point x="4585" y="7384"/> + <Point x="4601" y="7373"/> + <Point x="4587" y="7373"/> + <Point x="4584" y="7370"/> + <Point x="4584" y="7255"/> + <Point x="4595" y="7240"/> + <Point x="4582" y="7240"/> + <Point x="4581" y="7184"/> + <Point x="4607" y="7173"/> + <Point x="4581" y="7173"/> + <Point x="4581" y="7121"/> + <Point x="4591" y="7107"/> + <Point x="4579" y="7107"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>SIR—I have read with much satisfaction your remarks +of Tuesday on the subject of the meeting to be held on +the 6th of January, and being an interested party, I can- +not but repudiate the language in which the same is sum- +moned as much more likely to defeat than benefit the +welfare of the stockholders. It is confessedly notorious +that Portugal is poor, labouring under the usual disad- +vantage of a restoration, and it is rather too hasty to tax +her with dishonour or dishonesty because she finds herself +temporarily compelled to forego her payments, without +dispassionately looking to the circumstances of her posi- +tion. Just immerged out of revolution, with a disquieted +people, and charter ill‑defined—checked in progress of +improvement by repeated outrages of popular violence, +and her finances expended by necessary measures for +consolidating the public peace and security—threatened +on one side for a settlement of British claims, and menaced +by Spain on the other upon the Douro question, she +claims our forbearance rather than censure, at the present +time more especially. I have carefully perused the de- +cree for resumption of payment of the foreign debt, and I</Unicode></TextEquiv></TextRegion> + <TextRegion id="r478" type="paragraph"> + <Coords> + <Point x="5392" y="5346"/> + <Point x="5433" y="5346"/> + <Point x="5436" y="5354"/> + <Point x="5449" y="5354"/> + <Point x="5455" y="5343"/> + <Point x="5493" y="5344"/> + <Point x="5543" y="5353"/> + <Point x="5544" y="5354"/> + <Point x="5633" y="5343"/> + <Point x="5689" y="5344"/> + <Point x="5842" y="5351"/> + <Point x="5854" y="5343"/> + <Point x="5874" y="5343"/> + <Point x="5877" y="5352"/> + <Point x="5893" y="5352"/> + <Point x="5894" y="5353"/> + <Point x="5958" y="5353"/> + <Point x="5957" y="5346"/> + <Point x="5972" y="5346"/> + <Point x="6049" y="5344"/> + <Point x="6078" y="5340"/> + <Point x="6109" y="5341"/> + <Point x="6106" y="5412"/> + <Point x="6062" y="5416"/> + <Point x="6049" y="5412"/> + <Point x="5990" y="5412"/> + <Point x="5988" y="5411"/> + <Point x="5975" y="5411"/> + <Point x="5973" y="5410"/> + <Point x="5961" y="5410"/> + <Point x="5960" y="5411"/> + <Point x="5945" y="5411"/> + <Point x="5944" y="5410"/> + <Point x="5921" y="5410"/> + <Point x="5918" y="5411"/> + <Point x="5892" y="5411"/> + <Point x="5878" y="5410"/> + <Point x="5834" y="5410"/> + <Point x="5832" y="5409"/> + <Point x="5774" y="5409"/> + <Point x="5746" y="5410"/> + <Point x="5650" y="5410"/> + <Point x="5648" y="5411"/> + <Point x="5485" y="5412"/> + <Point x="5470" y="5443"/> + <Point x="5358" y="5444"/> + <Point x="5356" y="5412"/> + <Point x="5356" y="5387"/> + <Point x="5369" y="5387"/> + <Point x="5372" y="5391"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>The Marquess of NORMANBY has returned from +town to his residence in Eastern‑terrace. — Brighton +Gazette.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r479" type="paragraph"> + <Coords> + <Point x="5393" y="5447"/> + <Point x="5422" y="5446"/> + <Point x="5423" y="5456"/> + <Point x="5440" y="5456"/> + <Point x="5453" y="5453"/> + <Point x="5460" y="5453"/> + <Point x="5463" y="5447"/> + <Point x="5482" y="5446"/> + <Point x="5484" y="5455"/> + <Point x="5523" y="5455"/> + <Point x="5524" y="5454"/> + <Point x="5568" y="5454"/> + <Point x="5571" y="5455"/> + <Point x="5586" y="5455"/> + <Point x="5590" y="5450"/> + <Point x="5601" y="5447"/> + <Point x="5610" y="5445"/> + <Point x="5631" y="5445"/> + <Point x="5644" y="5455"/> + <Point x="5647" y="5454"/> + <Point x="5672" y="5454"/> + <Point x="5671" y="5444"/> + <Point x="5687" y="5445"/> + <Point x="5685" y="5453"/> + <Point x="5711" y="5453"/> + <Point x="5733" y="5455"/> + <Point x="5748" y="5455"/> + <Point x="5747" y="5445"/> + <Point x="5803" y="5445"/> + <Point x="5800" y="5454"/> + <Point x="5829" y="5454"/> + <Point x="5830" y="5443"/> + <Point x="5896" y="5444"/> + <Point x="5899" y="5454"/> + <Point x="5958" y="5454"/> + <Point x="5954" y="5454"/> + <Point x="5984" y="5454"/> + <Point x="6008" y="5455"/> + <Point x="6014" y="5454"/> + <Point x="6015" y="5450"/> + <Point x="6024" y="5449"/> + <Point x="6043" y="5456"/> + <Point x="6050" y="5451"/> + <Point x="6061" y="5438"/> + <Point x="6108" y="5437"/> + <Point x="6109" y="5465"/> + <Point x="6108" y="5503"/> + <Point x="6108" y="5562"/> + <Point x="6079" y="5571"/> + <Point x="6063" y="5571"/> + <Point x="6062" y="5573"/> + <Point x="6057" y="5573"/> + <Point x="6054" y="5583"/> + <Point x="6046" y="5583"/> + <Point x="6044" y="5586"/> + <Point x="6020" y="5586"/> + <Point x="6012" y="5585"/> + <Point x="5996" y="5585"/> + <Point x="5973" y="5581"/> + <Point x="5969" y="5582"/> + <Point x="5944" y="5582"/> + <Point x="5941" y="5583"/> + <Point x="5914" y="5583"/> + <Point x="5915" y="5583"/> + <Point x="5857" y="5583"/> + <Point x="5860" y="5577"/> + <Point x="5799" y="5577"/> + <Point x="5801" y="5576"/> + <Point x="5763" y="5577"/> + <Point x="5759" y="5609"/> + <Point x="5738" y="5609"/> + <Point x="5734" y="5608"/> + <Point x="5722" y="5608"/> + <Point x="5720" y="5609"/> + <Point x="5706" y="5609"/> + <Point x="5706" y="5614"/> + <Point x="5690" y="5614"/> + <Point x="5681" y="5608"/> + <Point x="5563" y="5608"/> + <Point x="5560" y="5609"/> + <Point x="5535" y="5609"/> + <Point x="5522" y="5615"/> + <Point x="5506" y="5615"/> + <Point x="5507" y="5609"/> + <Point x="5479" y="5609"/> + <Point x="5476" y="5610"/> + <Point x="5461" y="5610"/> + <Point x="5457" y="5609"/> + <Point x="5410" y="5607"/> + <Point x="5396" y="5615"/> + <Point x="5387" y="5615"/> + <Point x="5364" y="5610"/> + <Point x="5362" y="5607"/> + <Point x="5362" y="5556"/> + <Point x="5371" y="5544"/> + <Point x="5358" y="5544"/> + <Point x="5357" y="5490"/> + <Point x="5372" y="5490"/> + <Point x="5374" y="5489"/> + <Point x="5387" y="5489"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>By the recent demise of Lord BRUCE, the eldest +son of Lord ELGIN, his sister, Lady MARY CHRISTOPHER, +the lady of the member for North Linco�shire, has become +the next in succession to an immens� fortune, approach- +ing to thirty thousand a year.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r480" type="paragraph"> + <Coords> + <Point x="5398" y="5616"/> + <Point x="5401" y="5614"/> + <Point x="5440" y="5614"/> + <Point x="5441" y="5621"/> + <Point x="5455" y="5621"/> + <Point x="5466" y="5612"/> + <Point x="5491" y="5612"/> + <Point x="5491" y="5620"/> + <Point x="5552" y="5620"/> + <Point x="5577" y="5611"/> + <Point x="5602" y="5611"/> + <Point x="5603" y="5619"/> + <Point x="5622" y="5619"/> + <Point x="5627" y="5620"/> + <Point x="5644" y="5620"/> + <Point x="5649" y="5619"/> + <Point x="5810" y="5619"/> + <Point x="5831" y="5615"/> + <Point x="5839" y="5615"/> + <Point x="5850" y="5625"/> + <Point x="5853" y="5627"/> + <Point x="5881" y="5627"/> + <Point x="5904" y="5626"/> + <Point x="5941" y="5621"/> + <Point x="5952" y="5621"/> + <Point x="5966" y="5626"/> + <Point x="5986" y="5615"/> + <Point x="6001" y="5611"/> + <Point x="6017" y="5612"/> + <Point x="6053" y="5608"/> + <Point x="6064" y="5606"/> + <Point x="6106" y="5594"/> + <Point x="6110" y="5617"/> + <Point x="6115" y="5736"/> + <Point x="6114" y="5763"/> + <Point x="6071" y="5779"/> + <Point x="6063" y="5781"/> + <Point x="6045" y="5779"/> + <Point x="6032" y="5779"/> + <Point x="6032" y="5780"/> + <Point x="6012" y="5780"/> + <Point x="6012" y="5781"/> + <Point x="5996" y="5781"/> + <Point x="6012" y="5781"/> + <Point x="5996" y="5781"/> + <Point x="5996" y="5782"/> + <Point x="5951" y="5782"/> + <Point x="5949" y="5783"/> + <Point x="5941" y="5815"/> + <Point x="5705" y="5815"/> + <Point x="5685" y="5809"/> + <Point x="5672" y="5809"/> + <Point x="5668" y="5810"/> + <Point x="5651" y="5810"/> + <Point x="5648" y="5809"/> + <Point x="5630" y="5809"/> + <Point x="5625" y="5810"/> + <Point x="5617" y="5810"/> + <Point x="5613" y="5809"/> + <Point x="5601" y="5809"/> + <Point x="5598" y="5810"/> + <Point x="5584" y="5810"/> + <Point x="5581" y="5809"/> + <Point x="5574" y="5809"/> + <Point x="5570" y="5810"/> + <Point x="5531" y="5810"/> + <Point x="5528" y="5809"/> + <Point x="5516" y="5809"/> + <Point x="5514" y="5811"/> + <Point x="5501" y="5811"/> + <Point x="5498" y="5810"/> + <Point x="5482" y="5810"/> + <Point x="5471" y="5808"/> + <Point x="5463" y="5808"/> + <Point x="5461" y="5811"/> + <Point x="5386" y="5811"/> + <Point x="5384" y="5812"/> + <Point x="5370" y="5812"/> + <Point x="5362" y="5811"/> + <Point x="5365" y="5776"/> + <Point x="5360" y="5656"/> + <Point x="5377" y="5658"/> + <Point x="5380" y="5657"/> + <Point x="5392" y="5657"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>The LORD CHAMBERLAIN has extended the li- +cence of the Haymarket Theatre, by which act of justice +the spirited and able manager of this favourite place of +amusement will be enabled �� continue his present suc- +cessful season beyond the 15th proximo, at which period +he must have otherwise closed his doors.</Unicode></TextEquiv></TextRegion> + <SeparatorRegion id="r515"> + <Coords> + <Point x="492" y="475"/> + <Point x="921" y="465"/> + <Point x="1272" y="457"/> + <Point x="1576" y="447"/> + <Point x="1727" y="440"/> + <Point x="1851" y="431"/> + <Point x="1936" y="429"/> + <Point x="2052" y="427"/> + <Point x="2146" y="422"/> + <Point x="2560" y="411"/> + <Point x="2861" y="401"/> + <Point x="2940" y="397"/> + <Point x="3062" y="391"/> + <Point x="3171" y="386"/> + <Point x="3305" y="381"/> + <Point x="3372" y="382"/> + <Point x="3459" y="377"/> + <Point x="3632" y="372"/> + <Point x="3777" y="367"/> + <Point x="3932" y="363"/> + <Point x="4335" y="342"/> + <Point x="4883" y="319"/> + <Point x="5310" y="297"/> + <Point x="5662" y="275"/> + <Point x="6063" y="277"/> + <Point x="6062" y="305"/> + <Point x="6053" y="311"/> + <Point x="5997" y="297"/> + <Point x="5815" y="294"/> + <Point x="5694" y="300"/> + <Point x="5589" y="305"/> + <Point x="5411" y="316"/> + <Point x="5261" y="320"/> + <Point x="4990" y="334"/> + <Point x="4786" y="341"/> + <Point x="4565" y="354"/> + <Point x="4231" y="366"/> + <Point x="3790" y="383"/> + <Point x="3498" y="390"/> + <Point x="3372" y="396"/> + <Point x="2988" y="408"/> + <Point x="2773" y="417"/> + <Point x="2408" y="430"/> + <Point x="2065" y="439"/> + <Point x="1773" y="453"/> + <Point x="1522" y="463"/> + <Point x="1252" y="472"/> + <Point x="492" y="495"/> + <Point x="492" y="473"/></Coords></SeparatorRegion> + <SeparatorRegion id="r516"> + <Coords> + <Point x="477" y="569"/> + <Point x="714" y="565"/> + <Point x="875" y="560"/> + <Point x="974" y="560"/> + <Point x="1080" y="558"/> + <Point x="1142" y="557"/> + <Point x="1201" y="553"/> + <Point x="1259" y="552"/> + <Point x="1258" y="573"/> + <Point x="1089" y="578"/> + <Point x="900" y="583"/> + <Point x="742" y="584"/> + <Point x="649" y="590"/> + <Point x="475" y="592"/></Coords></SeparatorRegion> + <SeparatorRegion id="r517"> + <Coords> + <Point x="475" y="681"/> + <Point x="745" y="679"/> + <Point x="901" y="678"/> + <Point x="1032" y="674"/> + <Point x="1108" y="671"/> + <Point x="1194" y="668"/> + <Point x="1265" y="666"/> + <Point x="1267" y="687"/> + <Point x="1112" y="693"/> + <Point x="925" y="700"/> + <Point x="751" y="701"/> + <Point x="597" y="703"/> + <Point x="475" y="705"/></Coords></SeparatorRegion> + <SeparatorRegion id="r518"> + <Coords> + <Point x="801" y="775"/> + <Point x="947" y="772"/> + <Point x="945" y="789"/> + <Point x="877" y="794"/> + <Point x="801" y="791"/></Coords></SeparatorRegion> + <SeparatorRegion id="r520"> + <Coords> + <Point x="804" y="852"/> + <Point x="847" y="851"/> + <Point x="858" y="850"/> + <Point x="866" y="849"/> + <Point x="872" y="847"/> + <Point x="891" y="848"/> + <Point x="910" y="848"/> + <Point x="946" y="850"/> + <Point x="948" y="857"/> + <Point x="927" y="861"/> + <Point x="906" y="861"/> + <Point x="886" y="866"/> + <Point x="871" y="867"/> + <Point x="853" y="862"/> + <Point x="808" y="864"/></Coords></SeparatorRegion> + <TextRegion id="r527" type="paragraph"> + <Coords> + <Point x="514" y="1048"/> + <Point x="514" y="1010"/> + <Point x="559" y="1011"/> + <Point x="560" y="1019"/> + <Point x="618" y="1019"/> + <Point x="619" y="1010"/> + <Point x="638" y="1010"/> + <Point x="638" y="1018"/> + <Point x="658" y="1018"/> + <Point x="658" y="1007"/> + <Point x="672" y="1008"/> + <Point x="673" y="1018"/> + <Point x="733" y="1012"/> + <Point x="747" y="1008"/> + <Point x="756" y="1013"/> + <Point x="806" y="1012"/> + <Point x="808" y="1006"/> + <Point x="820" y="1007"/> + <Point x="824" y="1012"/> + <Point x="858" y="1013"/> + <Point x="859" y="1005"/> + <Point x="873" y="1005"/> + <Point x="875" y="1012"/> + <Point x="1012" y="1009"/> + <Point x="1011" y="1000"/> + <Point x="1028" y="1000"/> + <Point x="1028" y="1008"/> + <Point x="1123" y="1007"/> + <Point x="1123" y="1000"/> + <Point x="1138" y="1000"/> + <Point x="1138" y="1006"/> + <Point x="1164" y="1004"/> + <Point x="1164" y="1000"/> + <Point x="1230" y="1000"/> + <Point x="1231" y="996"/> + <Point x="1246" y="995"/> + <Point x="1247" y="1000"/> + <Point x="1271" y="1001"/> + <Point x="1273" y="1199"/> + <Point x="1276" y="1230"/> + <Point x="1271" y="1259"/> + <Point x="1271" y="1456"/> + <Point x="1275" y="1619"/> + <Point x="1274" y="1722"/> + <Point x="1255" y="1731"/> + <Point x="1225" y="1732"/> + <Point x="1224" y="1739"/> + <Point x="1203" y="1739"/> + <Point x="1197" y="1733"/> + <Point x="742" y="1745"/> + <Point x="739" y="1785"/> + <Point x="485" y="1791"/> + <Point x="489" y="1635"/> + <Point x="487" y="1472"/> + <Point x="487" y="1224"/> + <Point x="486" y="1058"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>The wind to‑day having veered round to the +north west, several vessels which had been +detained in the channel made their way into +port, and amongst them the Independence, +the New York packet ship of the 10th +instant. She has brought a New York paper of +a day later than those received by the Great +Western, namely, to the evening of the 10th, but it +does not contain the expected message from the +President; in consequence of the great snow +storm, a sufficient number of members hat not +assembled to form a quorum on the usual +day of meeting, the (7th), but as the roads +were expected to be more passable in a few +days, it may be expected by the next arrival; the +houses would continue to adjourn from day to day, +until a majority of the whole enabled them to pro‐ +ceed to business.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r528" type="heading"> + <Coords> + <Point x="572" y="2793"/> + <Point x="604" y="2792"/> + <Point x="628" y="2787"/> + <Point x="1192" y="2778"/> + <Point x="1200" y="2808"/> + <Point x="1184" y="2810"/> + <Point x="1069" y="2812"/> + <Point x="872" y="2814"/> + <Point x="660" y="2819"/> + <Point x="572" y="2820"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>SALES AT THE STOCK EXCHANGE.</Unicode></TextEquiv></TextRegion> + <TableRegion id="r529"> + <Coords> + <Point x="493" y="2828"/> + <Point x="548" y="2825"/> + <Point x="598" y="2824"/> + <Point x="640" y="2823"/> + <Point x="662" y="2822"/> + <Point x="707" y="2821"/> + <Point x="758" y="2820"/> + <Point x="785" y="2819"/> + <Point x="871" y="2817"/> + <Point x="910" y="2816"/> + <Point x="1078" y="2816"/> + <Point x="1146" y="2814"/> + <Point x="1273" y="2810"/> + <Point x="1270" y="2869"/> + <Point x="1283" y="2880"/> + <Point x="1286" y="3040"/> + <Point x="1274" y="3044"/> + <Point x="1273" y="3065"/> + <Point x="1284" y="3069"/> + <Point x="1287" y="3088"/> + <Point x="1287" y="3105"/> + <Point x="1275" y="3108"/> + <Point x="1274" y="3263"/> + <Point x="1287" y="3270"/> + <Point x="1289" y="3290"/> + <Point x="1293" y="3437"/> + <Point x="1281" y="3441"/> + <Point x="1280" y="3464"/> + <Point x="1292" y="3479"/> + <Point x="1292" y="3633"/> + <Point x="1278" y="3638"/> + <Point x="1279" y="3659"/> + <Point x="1291" y="3663"/> + <Point x="1291" y="3697"/> + <Point x="1280" y="3705"/> + <Point x="1278" y="3752"/> + <Point x="1288" y="3763"/> + <Point x="1292" y="3783"/> + <Point x="1291" y="3830"/> + <Point x="919" y="3830"/> + <Point x="916" y="3836"/> + <Point x="904" y="3839"/> + <Point x="892" y="3832"/> + <Point x="720" y="3838"/> + <Point x="547" y="3843"/> + <Point x="556" y="3725"/> + <Point x="563" y="3684"/> + <Point x="543" y="3674"/> + <Point x="542" y="3577"/> + <Point x="568" y="3569"/> + <Point x="571" y="3517"/> + <Point x="555" y="3502"/> + <Point x="551" y="3388"/> + <Point x="538" y="3376"/> + <Point x="537" y="3348"/> + <Point x="554" y="3336"/> + <Point x="552" y="3258"/> + <Point x="536" y="3240"/> + <Point x="536" y="3089"/> + <Point x="550" y="3075"/> + <Point x="550" y="2993"/> + <Point x="540" y="2980"/> + <Point x="541" y="2930"/> + <Point x="497" y="2929"/></Coords></TableRegion> + <TextRegion id="r530" type="heading"> + <Coords> + <Point x="796" y="3845"/> + <Point x="879" y="3842"/> + <Point x="901" y="3841"/> + <Point x="907" y="3842"/> + <Point x="918" y="3839"/> + <Point x="1010" y="3838"/> + <Point x="1011" y="3861"/> + <Point x="795" y="3867"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>SECOND BOARD.</Unicode></TextEquiv></TextRegion> + <TableRegion id="r531"> + <Coords> + <Point x="497" y="3882"/> + <Point x="618" y="3876"/> + <Point x="694" y="3872"/> + <Point x="765" y="3880"/> + <Point x="818" y="3875"/> + <Point x="822" y="3870"/> + <Point x="855" y="3870"/> + <Point x="873" y="3867"/> + <Point x="900" y="3868"/> + <Point x="943" y="3867"/> + <Point x="962" y="3865"/> + <Point x="1004" y="3865"/> + <Point x="1048" y="3863"/> + <Point x="1101" y="3860"/> + <Point x="1208" y="3859"/> + <Point x="1292" y="3856"/> + <Point x="1296" y="3995"/> + <Point x="1283" y="3993"/> + <Point x="1283" y="4014"/> + <Point x="1178" y="4020"/> + <Point x="926" y="4026"/> + <Point x="920" y="4037"/> + <Point x="910" y="4041"/> + <Point x="910" y="4061"/> + <Point x="499" y="4075"/></Coords></TableRegion> + <SeparatorRegion id="r532"> + <Coords> + <Point x="705" y="4077"/> + <Point x="785" y="4075"/> + <Point x="868" y="4072"/> + <Point x="960" y="4069"/> + <Point x="1033" y="4067"/> + <Point x="1100" y="4065"/> + <Point x="1100" y="4089"/> + <Point x="929" y="4094"/> + <Point x="704" y="4101"/></Coords></SeparatorRegion> + <SeparatorRegion id="r533"> + <Coords> + <Point x="861" y="4150"/> + <Point x="861" y="4172"/> + <Point x="953" y="4172"/> + <Point x="953" y="4150"/></Coords></SeparatorRegion> + <TextRegion id="r534" type="paragraph"> + <Coords> + <Point x="546" y="5242"/> + <Point x="556" y="5227"/> + <Point x="606" y="5222"/> + <Point x="648" y="5218"/> + <Point x="686" y="5218"/> + <Point x="705" y="5215"/> + <Point x="793" y="5212"/> + <Point x="815" y="5213"/> + <Point x="947" y="5214"/> + <Point x="1115" y="5207"/> + <Point x="1133" y="5199"/> + <Point x="1149" y="5202"/> + <Point x="1221" y="5202"/> + <Point x="1237" y="5195"/> + <Point x="1308" y="5195"/> + <Point x="1312" y="5383"/> + <Point x="1318" y="5670"/> + <Point x="1317" y="5749"/> + <Point x="1137" y="5756"/> + <Point x="1129" y="5783"/> + <Point x="1079" y="5785"/> + <Point x="1075" y="5789"/> + <Point x="1069" y="5791"/> + <Point x="1062" y="5792"/> + <Point x="1057" y="5787"/> + <Point x="879" y="5793"/> + <Point x="666" y="5804"/> + <Point x="527" y="5812"/> + <Point x="523" y="5562"/> + <Point x="517" y="5258"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>“On the first of the new year, as soon as the provincial +deputations are installed in office, the proceedings prepa‐ +ratory to the election of senators and deputies are to be +commenced. The accompanying order of the Provisional +Regency of the kingdom will inform you of the measures +which they have adopted for carrying the electoral law +into effect; and if the nation was never con‐ +sulted in more critical circumstances than the present, +it is the more necessary that the people should have the +most complete freedom in exercising their electoral rights. +It is but right and necessary that a Cortes called to de‐ +cide upon questions of vital importance to the country +should fairly represent it; for without this the govern‐ +ment can neither acquire strength, proceed in a firm +course of policy, or effect the good of the people, as their +present situation and the errors of their former rulers re‐ +quire. Without the most complete freedom of election it +would be in vain to seek these advantages.”</Unicode></TextEquiv></TextRegion> + <TextRegion id="r535" type="paragraph"> + <Coords> + <Point x="560" y="5840"/> + <Point x="567" y="5814"/> + <Point x="581" y="5813"/> + <Point x="649" y="5812"/> + <Point x="653" y="5809"/> + <Point x="667" y="5809"/> + <Point x="669" y="5812"/> + <Point x="713" y="5810"/> + <Point x="718" y="5805"/> + <Point x="724" y="5805"/> + <Point x="728" y="5811"/> + <Point x="835" y="5804"/> + <Point x="836" y="5798"/> + <Point x="845" y="5798"/> + <Point x="848" y="5802"/> + <Point x="884" y="5801"/> + <Point x="887" y="5796"/> + <Point x="962" y="5793"/> + <Point x="965" y="5797"/> + <Point x="1069" y="5796"/> + <Point x="1070" y="5793"/> + <Point x="1078" y="5789"/> + <Point x="1081" y="5793"/> + <Point x="1103" y="5794"/> + <Point x="1103" y="5788"/> + <Point x="1114" y="5789"/> + <Point x="1114" y="5793"/> + <Point x="1167" y="5793"/> + <Point x="1167" y="5786"/> + <Point x="1212" y="5785"/> + <Point x="1213" y="5789"/> + <Point x="1275" y="5789"/> + <Point x="1275" y="5782"/> + <Point x="1290" y="5782"/> + <Point x="1289" y="5787"/> + <Point x="1318" y="5787"/> + <Point x="1324" y="6035"/> + <Point x="1322" y="6199"/> + <Point x="1328" y="6260"/> + <Point x="1332" y="6358"/> + <Point x="1339" y="6658"/> + <Point x="1344" y="6814"/> + <Point x="1267" y="6819"/> + <Point x="1029" y="6832"/> + <Point x="1022" y="6864"/> + <Point x="887" y="6873"/> + <Point x="884" y="6881"/> + <Point x="874" y="6881"/> + <Point x="869" y="6875"/> + <Point x="743" y="6879"/> + <Point x="662" y="6881"/> + <Point x="657" y="6886"/> + <Point x="648" y="6886"/> + <Point x="644" y="6884"/> + <Point x="559" y="6888"/> + <Point x="544" y="6601"/> + <Point x="540" y="6452"/> + <Point x="540" y="6352"/> + <Point x="538" y="6243"/> + <Point x="532" y="6084"/> + <Point x="529" y="5931"/> + <Point x="528" y="5859"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>I need not proceed with the remainder of these in‐ +structions, which are totally free from those objections so +often witnessed and complained of in former documents +of this description. If we are to judge from the elections +of corporations and provincial deputations which have +just terminated, the contest cannot be very great, or +doubtful; I mean, of course, as to the majority +being of the liberal party. While alluding to elec‐ +tions, I may observe that you will see in the +opposition papers of Madrid much noise made +about the paucity of electors in the municipal and depu‐ +tational elections. Some of them, indeed, go so far as to +infer from this fact, that the persons elected cannot re‐ +present the opinions of the people, because the whole +population did not turn out and put themselves to the +very absurd trouble of voting where there was no +contest. If I have not been too long out of England to +forget its usages in these matters, no one there, I +believe, would say that a member of Parliament +did not represent his constituents because there was no +contest to induce the whole or a majority to go through +the form of giving their votes. On the contrary, the ab‐ +sence of a contest, or of actual voting, would be taken as +a proof of the unanimity of popular suffrage, and the com‐ +pleteness of popular representation. Yet you will find +that the Absolutist statistical gentlemen of the Madrid +and Paris opposition press will assume exactly the con‐ +trary, and declare that the new deputies will not represent +the people, should there be no contests. At all events it +vests with writers of this school to show good reason why +their political friends or party do not take part in these +elections. I have given the true reasons of this in former +letters, and need not repeat them.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r536" type="paragraph"> + <Coords> + <Point x="593" y="6916"/> + <Point x="597" y="6890"/> + <Point x="618" y="6888"/> + <Point x="623" y="6892"/> + <Point x="666" y="6892"/> + <Point x="667" y="6884"/> + <Point x="718" y="6885"/> + <Point x="721" y="6884"/> + <Point x="747" y="6882"/> + <Point x="753" y="6884"/> + <Point x="839" y="6884"/> + <Point x="845" y="6879"/> + <Point x="856" y="6879"/> + <Point x="857" y="6884"/> + <Point x="925" y="6883"/> + <Point x="927" y="6874"/> + <Point x="952" y="6873"/> + <Point x="955" y="6877"/> + <Point x="988" y="6871"/> + <Point x="1032" y="6872"/> + <Point x="1036" y="6864"/> + <Point x="1049" y="6867"/> + <Point x="1092" y="6868"/> + <Point x="1097" y="6861"/> + <Point x="1126" y="6861"/> + <Point x="1134" y="6867"/> + <Point x="1231" y="6862"/> + <Point x="1244" y="6856"/> + <Point x="1300" y="6857"/> + <Point x="1306" y="6853"/> + <Point x="1344" y="6853"/> + <Point x="1345" y="6894"/> + <Point x="1352" y="7063"/> + <Point x="1354" y="7087"/> + <Point x="1353" y="7173"/> + <Point x="1354" y="7273"/> + <Point x="1360" y="7411"/> + <Point x="1196" y="7413"/> + <Point x="1192" y="7422"/> + <Point x="984" y="7427"/> + <Point x="981" y="7450"/> + <Point x="952" y="7450"/> + <Point x="947" y="7456"/> + <Point x="937" y="7458"/> + <Point x="928" y="7450"/> + <Point x="862" y="7454"/> + <Point x="783" y="7457"/> + <Point x="769" y="7460"/> + <Point x="766" y="7470"/> + <Point x="754" y="7472"/> + <Point x="743" y="7465"/> + <Point x="690" y="7467"/> + <Point x="682" y="7473"/> + <Point x="674" y="7472"/> + <Point x="667" y="7468"/> + <Point x="580" y="7471"/> + <Point x="575" y="7219"/> + <Point x="564" y="7022"/> + <Point x="562" y="6919"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>Our intelligence from Portugal, with respect to the +Douro question, continues to be sufficiently warlike and +ridiculous. The noise about levies and mounting old +cannon is truly appalling and absurd. But these good +people would appear to have gained in national pride and +soreness what they have lost of ancient and solid +greatness. It would be hard to say, indeed, whether +the absurdity of the imprudent threats of +Spain, or of the idle preparations of defence +of Portugal, be the greatest. From Badajos +we have news that the Portuguese hat actually ceased to +visit that place, and that forts were being repaired at +Elvas and along the frontier. I presume there is much +village alarm and misrepresentation in all we hear about +the matter; just as there is about a few regiments being +cantoned in Toledo and Talavera—a measure which I +believe has no connection whatever with any intention of +sending troops into Portugal.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r537" type="paragraph"> + <Coords> + <Point x="618" y="7485"/> + <Point x="620" y="7473"/> + <Point x="644" y="7471"/> + <Point x="653" y="7472"/> + <Point x="654" y="7476"/> + <Point x="683" y="7477"/> + <Point x="691" y="7470"/> + <Point x="714" y="7469"/> + <Point x="717" y="7472"/> + <Point x="750" y="7477"/> + <Point x="769" y="7473"/> + <Point x="794" y="7472"/> + <Point x="795" y="7465"/> + <Point x="806" y="7465"/> + <Point x="807" y="7471"/> + <Point x="821" y="7471"/> + <Point x="826" y="7459"/> + <Point x="850" y="7458"/> + <Point x="852" y="7464"/> + <Point x="880" y="7462"/> + <Point x="884" y="7458"/> + <Point x="892" y="7463"/> + <Point x="923" y="7463"/> + <Point x="923" y="7455"/> + <Point x="930" y="7454"/> + <Point x="936" y="7460"/> + <Point x="966" y="7460"/> + <Point x="1052" y="7458"/> + <Point x="1052" y="7450"/> + <Point x="1062" y="7451"/> + <Point x="1063" y="7457"/> + <Point x="1093" y="7457"/> + <Point x="1093" y="7449"/> + <Point x="1106" y="7449"/> + <Point x="1105" y="7455"/> + <Point x="1129" y="7455"/> + <Point x="1130" y="7446"/> + <Point x="1149" y="7447"/> + <Point x="1150" y="7452"/> + <Point x="1183" y="7452"/> + <Point x="1184" y="7444"/> + <Point x="1196" y="7445"/> + <Point x="1197" y="7449"/> + <Point x="1254" y="7449"/> + <Point x="1256" y="7444"/> + <Point x="1268" y="7444"/> + <Point x="1268" y="7448"/> + <Point x="1316" y="7448"/> + <Point x="1327" y="7444"/> + <Point x="1338" y="7444"/> + <Point x="1341" y="7449"/> + <Point x="1362" y="7449"/> + <Point x="1367" y="7536"/> + <Point x="1329" y="7538"/> + <Point x="1033" y="7548"/> + <Point x="1028" y="7554"/> + <Point x="1016" y="7554"/> + <Point x="1010" y="7548"/> + <Point x="958" y="7550"/> + <Point x="951" y="7552"/> + <Point x="921" y="7553"/> + <Point x="917" y="7559"/> + <Point x="585" y="7572"/> + <Point x="582" y="7516"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>The Five per Cents. have again declined to‑day, the +selling price being 28½ cash. Some operations were +even effected lower after the regular business had closed.</Unicode></TextEquiv></TextRegion> + <SeparatorRegion id="r538"> + <Coords> + <Point x="788" y="7575"/> + <Point x="990" y="7565"/> + <Point x="990" y="7561"/> + <Point x="1173" y="7557"/> + <Point x="1172" y="7575"/> + <Point x="1105" y="7580"/> + <Point x="1021" y="7585"/> + <Point x="939" y="7591"/> + <Point x="839" y="7592"/> + <Point x="789" y="7591"/></Coords></SeparatorRegion> + <TextRegion id="r539" type="heading"> + <Coords> + <Point x="1287" y="476"/> + <Point x="1328" y="475"/> + <Point x="1383" y="473"/> + <Point x="1426" y="472"/> + <Point x="1464" y="470"/> + <Point x="1511" y="468"/> + <Point x="1562" y="466"/> + <Point x="1600" y="464"/> + <Point x="1634" y="463"/> + <Point x="1664" y="461"/> + <Point x="1713" y="460"/> + <Point x="1755" y="458"/> + <Point x="1795" y="456"/> + <Point x="1877" y="451"/> + <Point x="1912" y="449"/> + <Point x="1974" y="447"/> + <Point x="2016" y="446"/> + <Point x="2039" y="445"/> + <Point x="2062" y="444"/> + <Point x="2063" y="469"/> + <Point x="1759" y="484"/> + <Point x="1751" y="507"/> + <Point x="1618" y="513"/> + <Point x="1607" y="491"/> + <Point x="1288" y="503"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>TO THE INDEPENDENT ELECTORS OF THE BOROUGH OF +WALSALL.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r542" type="paragraph"> + <Coords> + <Point x="1328" y="519"/> + <Point x="1350" y="519"/> + <Point x="1351" y="522"/> + <Point x="1482" y="518"/> + <Point x="1482" y="526"/> + <Point x="1489" y="527"/> + <Point x="1492" y="538"/> + <Point x="1486" y="539"/> + <Point x="1483" y="539"/> + <Point x="1481" y="537"/> + <Point x="1466" y="538"/> + <Point x="1419" y="539"/> + <Point x="1386" y="540"/> + <Point x="1337" y="541"/> + <Point x="1329" y="535"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>GENTLEMEN,</Unicode></TextEquiv></TextRegion> + <TextRegion id="r543" type="drop-capital"> + <Coords> + <Point x="1290" y="543"/> + <Point x="1350" y="543"/> + <Point x="1362" y="542"/> + <Point x="1375" y="542"/> + <Point x="1375" y="548"/> + <Point x="1368" y="550"/> + <Point x="1351" y="600"/> + <Point x="1344" y="600"/> + <Point x="1335" y="581"/> + <Point x="1325" y="602"/> + <Point x="1319" y="601"/> + <Point x="1299" y="551"/> + <Point x="1289" y="550"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>W</Unicode></TextEquiv></TextRegion> + <TextRegion id="r545" type="paragraph"> + <Coords> + <Point x="1376" y="542"/> + <Point x="1388" y="542"/> + <Point x="1396" y="541"/> + <Point x="1418" y="541"/> + <Point x="1441" y="540"/> + <Point x="1467" y="540"/> + <Point x="1473" y="539"/> + <Point x="1482" y="539"/> + <Point x="1483" y="540"/> + <Point x="1487" y="542"/> + <Point x="1493" y="542"/> + <Point x="1496" y="537"/> + <Point x="1504" y="538"/> + <Point x="1506" y="540"/> + <Point x="1535" y="540"/> + <Point x="1538" y="534"/> + <Point x="1546" y="534"/> + <Point x="1551" y="538"/> + <Point x="1570" y="536"/> + <Point x="1572" y="532"/> + <Point x="1581" y="532"/> + <Point x="1583" y="537"/> + <Point x="1613" y="538"/> + <Point x="1617" y="530"/> + <Point x="1625" y="530"/> + <Point x="1628" y="535"/> + <Point x="1743" y="531"/> + <Point x="1747" y="523"/> + <Point x="1781" y="522"/> + <Point x="1784" y="527"/> + <Point x="1807" y="527"/> + <Point x="1810" y="520"/> + <Point x="1879" y="514"/> + <Point x="1886" y="518"/> + <Point x="1934" y="518"/> + <Point x="1936" y="511"/> + <Point x="1947" y="511"/> + <Point x="1951" y="517"/> + <Point x="2061" y="516"/> + <Point x="2062" y="549"/> + <Point x="2066" y="601"/> + <Point x="2066" y="678"/> + <Point x="2069" y="840"/> + <Point x="2071" y="947"/> + <Point x="1906" y="950"/> + <Point x="1904" y="972"/> + <Point x="1896" y="973"/> + <Point x="1892" y="971"/> + <Point x="1850" y="972"/> + <Point x="1834" y="970"/> + <Point x="1790" y="970"/> + <Point x="1788" y="972"/> + <Point x="1775" y="972"/> + <Point x="1773" y="970"/> + <Point x="1769" y="970"/> + <Point x="1768" y="971"/> + <Point x="1764" y="970"/> + <Point x="1724" y="971"/> + <Point x="1692" y="972"/> + <Point x="1645" y="972"/> + <Point x="1643" y="973"/> + <Point x="1637" y="973"/> + <Point x="1620" y="974"/> + <Point x="1609" y="975"/> + <Point x="1422" y="988"/> + <Point x="1400" y="988"/> + <Point x="1394" y="989"/> + <Point x="1394" y="993"/> + <Point x="1372" y="994"/> + <Point x="1369" y="992"/> + <Point x="1298" y="994"/> + <Point x="1297" y="923"/> + <Point x="1296" y="872"/> + <Point x="1296" y="832"/> + <Point x="1294" y="700"/> + <Point x="1292" y="601"/> + <Point x="1303" y="601"/> + <Point x="1306" y="604"/> + <Point x="1323" y="605"/> + <Point x="1328" y="601"/> + <Point x="1331" y="599"/> + <Point x="1339" y="599"/> + <Point x="1344" y="603"/> + <Point x="1364" y="603"/> + <Point x="1389" y="592"/> + <Point x="1389" y="574"/> + <Point x="1376" y="574"/> + <Point x="1374" y="564"/> + <Point x="1378" y="557"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>WHEN I had the honour of first addressing you, +offering myself a CANDIDATE to represent this Borough +in the Commons House of Parliament, I calculated with confidence +on the undivided and zealous support of every class of the Liberal +party. I have now completed a personal canvass of the electors, and +I regret to say, that in many instances where I had every reason to +expect prompt and cordial support, I have met with either lukewarm +neutrality, or decided opposition. In addition to those discouraging +circumstances. I have had to encounter the avowed hostility of the +agents from the Anti‑Corn law League deputed to oppose me, and +whose opposition has destroyed my chance of being returned as your +Representative, by dividing the Liberal interest. Nothing but a firm +conviction of the hopelessness of success, founded upon these ob‐ +stacles, would have induced me to relinquish my prospects of repre‐ +senting your Borough, but I am now persuaded, that any continuance +of this struggle in the present state of parties, would only injure the +cause to which I am pledged. In retiring from the present contest I +beg to return my most sincere and heartfelt thanks to those honest +and consistent Liberals who have rendered me eir able assistance +and support. I have the honour to be, gent men,</Unicode></TextEquiv></TextRegion> + <TextRegion id="r547" type="paragraph"> + <Coords> + <Point x="1750" y="994"/> + <Point x="1787" y="994"/> + <Point x="1809" y="993"/> + <Point x="1885" y="993"/> + <Point x="1887" y="992"/> + <Point x="1955" y="991"/> + <Point x="1955" y="992"/> + <Point x="1968" y="991"/> + <Point x="1971" y="990"/> + <Point x="2042" y="988"/> + <Point x="2042" y="1000"/> + <Point x="2053" y="1000"/> + <Point x="2051" y="1012"/> + <Point x="1750" y="1016"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>SPENCER LYTTELTON.</Unicode></TextEquiv></TextRegion> + <SeparatorRegion id="r548"> + <Coords> + <Point x="1268" y="480"/> + <Point x="1276" y="756"/> + <Point x="1279" y="1004"/> + <Point x="1280" y="1229"/> + <Point x="1279" y="1249"/> + <Point x="1278" y="1302"/> + <Point x="1277" y="1374"/> + <Point x="1278" y="1487"/> + <Point x="1282" y="1696"/> + <Point x="1284" y="1923"/> + <Point x="1285" y="2163"/> + <Point x="1286" y="2409"/> + <Point x="1295" y="3147"/> + <Point x="1298" y="3395"/> + <Point x="1300" y="3887"/> + <Point x="1301" y="4132"/> + <Point x="1306" y="4484"/> + <Point x="1307" y="4539"/> + <Point x="1308" y="4558"/> + <Point x="1309" y="4581"/> + <Point x="1309" y="4671"/> + <Point x="1311" y="4899"/> + <Point x="1314" y="5143"/> + <Point x="1318" y="5390"/> + <Point x="1325" y="5881"/> + <Point x="1345" y="6621"/> + <Point x="1360" y="7116"/> + <Point x="1364" y="7359"/> + <Point x="1382" y="7787"/> + <Point x="1395" y="7785"/> + <Point x="1393" y="7745"/> + <Point x="1387" y="7589"/> + <Point x="1385" y="7521"/> + <Point x="1377" y="7380"/> + <Point x="1371" y="7180"/> + <Point x="1359" y="6727"/> + <Point x="1344" y="6255"/> + <Point x="1335" y="5782"/> + <Point x="1333" y="5642"/> + <Point x="1329" y="5426"/> + <Point x="1326" y="5181"/> + <Point x="1320" y="4695"/> + <Point x="1314" y="3958"/> + <Point x="1310" y="3466"/> + <Point x="1307" y="3222"/> + <Point x="1302" y="2732"/> + <Point x="1300" y="2485"/> + <Point x="1295" y="1992"/> + <Point x="1294" y="1745"/> + <Point x="1289" y="1499"/> + <Point x="1289" y="1252"/> + <Point x="1292" y="1007"/> + <Point x="1283" y="515"/> + <Point x="1282" y="481"/> + <Point x="1267" y="480"/></Coords></SeparatorRegion> + <SeparatorRegion id="r549"> + <Coords> + <Point x="1299" y="1045"/> + <Point x="1333" y="1045"/> + <Point x="1411" y="1041"/> + <Point x="1471" y="1035"/> + <Point x="1549" y="1031"/> + <Point x="1624" y="1026"/> + <Point x="1698" y="1024"/> + <Point x="1769" y="1023"/> + <Point x="1849" y="1020"/> + <Point x="1932" y="1021"/> + <Point x="1986" y="1019"/> + <Point x="2023" y="1018"/> + <Point x="2071" y="1017"/> + <Point x="2070" y="1042"/> + <Point x="2030" y="1043"/> + <Point x="1874" y="1048"/> + <Point x="1757" y="1050"/> + <Point x="1662" y="1051"/> + <Point x="1446" y="1063"/> + <Point x="1304" y="1073"/> + <Point x="1298" y="1071"/></Coords></SeparatorRegion> + <TextRegion id="r550" type="heading"> + <Coords> + <Point x="1457" y="1075"/> + <Point x="1499" y="1070"/> + <Point x="1533" y="1067"/> + <Point x="1582" y="1064"/> + <Point x="1638" y="1062"/> + <Point x="1675" y="1060"/> + <Point x="1721" y="1059"/> + <Point x="1779" y="1059"/> + <Point x="1850" y="1058"/> + <Point x="1925" y="1059"/> + <Point x="1924" y="1094"/> + <Point x="1901" y="1096"/> + <Point x="1773" y="1098"/> + <Point x="1691" y="1099"/> + <Point x="1621" y="1099"/> + <Point x="1561" y="1101"/> + <Point x="1452" y="1109"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>PUBLIC AMUSEMENTS.</Unicode></TextEquiv></TextRegion> + <SeparatorRegion id="r551"> + <Coords> + <Point x="1633" y="1111"/> + <Point x="1661" y="1110"/> + <Point x="1678" y="1108"/> + <Point x="1688" y="1110"/> + <Point x="1711" y="1113"/> + <Point x="1711" y="1120"/> + <Point x="1692" y="1121"/> + <Point x="1678" y="1123"/> + <Point x="1668" y="1124"/> + <Point x="1662" y="1122"/> + <Point x="1633" y="1122"/></Coords></SeparatorRegion> + <TextRegion id="r552" type="paragraph"> + <Coords> + <Point x="1325" y="1150"/> + <Point x="1333" y="1142"/> + <Point x="1533" y="1128"/> + <Point x="1612" y="1128"/> + <Point x="1644" y="1127"/> + <Point x="1673" y="1127"/> + <Point x="1758" y="1125"/> + <Point x="1833" y="1123"/> + <Point x="1994" y="1119"/> + <Point x="2054" y="1119"/> + <Point x="2056" y="1129"/> + <Point x="2069" y="1128"/> + <Point x="2072" y="1147"/> + <Point x="2073" y="1194"/> + <Point x="2072" y="1286"/> + <Point x="1830" y="1297"/> + <Point x="1827" y="1314"/> + <Point x="1709" y="1317"/> + <Point x="1707" y="1319"/> + <Point x="1704" y="1319"/> + <Point x="1701" y="1320"/> + <Point x="1696" y="1320"/> + <Point x="1691" y="1317"/> + <Point x="1657" y="1319"/> + <Point x="1655" y="1321"/> + <Point x="1653" y="1322"/> + <Point x="1650" y="1321"/> + <Point x="1647" y="1319"/> + <Point x="1607" y="1320"/> + <Point x="1605" y="1323"/> + <Point x="1601" y="1322"/> + <Point x="1598" y="1321"/> + <Point x="1563" y="1321"/> + <Point x="1496" y="1322"/> + <Point x="1407" y="1325"/> + <Point x="1298" y="1331"/> + <Point x="1294" y="1317"/> + <Point x="1297" y="1248"/> + <Point x="1297" y="1178"/> + <Point x="1323" y="1175"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>THE INFANT SAPPHO.—COSMORAMA‐ +ROOMS, 209. REGENT‑STREET, under the immediate Patronage +of her MAJESTY.—The Nobility, Gentry, and Public are most +respectfully informed, the highly‑gifted child, LOUISA VINNING. +four years of age, will have the honour of giving TWO EVENING +CONCERTS, viz. THIS EVENING, Jan. 1, and Monday, Jan. 4, at +the above rooms. Admittance 1s. Reserved seats, 2s. each, to be had +at Mesrs. Cramer and Co.’s, 201, Regent‑street.</Unicode></TextEquiv></TextRegion> + <SeparatorRegion id="r553"> + <Coords> + <Point x="1491" y="1324"/> + <Point x="1601" y="1324"/> + <Point x="1605" y="1325"/> + <Point x="1610" y="1324"/> + <Point x="1642" y="1323"/> + <Point x="1649" y="1322"/> + <Point x="1650" y="1323"/> + <Point x="1657" y="1323"/> + <Point x="1663" y="1322"/> + <Point x="1690" y="1321"/> + <Point x="1694" y="1321"/> + <Point x="1699" y="1322"/> + <Point x="1721" y="1319"/> + <Point x="1832" y="1317"/> + <Point x="1879" y="1315"/> + <Point x="1878" y="1324"/> + <Point x="1746" y="1326"/> + <Point x="1704" y="1326"/> + <Point x="1651" y="1329"/> + <Point x="1613" y="1331"/> + <Point x="1581" y="1331"/> + <Point x="1542" y="1332"/> + <Point x="1491" y="1333"/></Coords></SeparatorRegion> + <TextRegion id="r554" type="paragraph"> + <Coords> + <Point x="1345" y="1370"/> + <Point x="1345" y="1341"/> + <Point x="1379" y="1341"/> + <Point x="1383" y="1346"/> + <Point x="1428" y="1345"/> + <Point x="1429" y="1340"/> + <Point x="1480" y="1338"/> + <Point x="1525" y="1337"/> + <Point x="1627" y="1337"/> + <Point x="1683" y="1334"/> + <Point x="1733" y="1332"/> + <Point x="1759" y="1331"/> + <Point x="1812" y="1329"/> + <Point x="1878" y="1328"/> + <Point x="1893" y="1329"/> + <Point x="1943" y="1331"/> + <Point x="2003" y="1328"/> + <Point x="2003" y="1321"/> + <Point x="2025" y="1321"/> + <Point x="2028" y="1325"/> + <Point x="2071" y="1327"/> + <Point x="2072" y="1345"/> + <Point x="2074" y="1391"/> + <Point x="2073" y="1415"/> + <Point x="2077" y="1615"/> + <Point x="2060" y="1616"/> + <Point x="2044" y="1616"/> + <Point x="1699" y="1631"/> + <Point x="1697" y="1649"/> + <Point x="1680" y="1650"/> + <Point x="1657" y="1650"/> + <Point x="1656" y="1652"/> + <Point x="1655" y="1654"/> + <Point x="1650" y="1652"/> + <Point x="1648" y="1651"/> + <Point x="1625" y="1653"/> + <Point x="1622" y="1655"/> + <Point x="1619" y="1657"/> + <Point x="1611" y="1656"/> + <Point x="1607" y="1654"/> + <Point x="1543" y="1656"/> + <Point x="1478" y="1660"/> + <Point x="1470" y="1660"/> + <Point x="1392" y="1662"/> + <Point x="1330" y="1664"/> + <Point x="1299" y="1667"/> + <Point x="1296" y="1530"/> + <Point x="1294" y="1454"/> + <Point x="1294" y="1387"/> + <Point x="1300" y="1375"/> + <Point x="1343" y="1370"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>The EVENING EXHIBITIONS, as well as +MORNING, of the ROYAL POLYTECHNIC INSTITUTION. during +the Christmas holidays, are adapted for the younger class. The ad‐ +ditional Theatre, Apartments, and Galleries extend to the number +of TWENTY‑SEVEN, in which are deposited SIXTEEN HUNDRED +WORKS, displaying the most eminent art, science, and ingenuity, +one‑third of which are new to the visitors; the Lecture, the varied +and beautiful experiments, and the Microscope. Open from Half‑past +Ten to Five o’clock; Evening: from Seven to Half‑past Ten o’clock. +—Admission 1s. A Band of Music. Annual Subscriptions are from the +1st January. The extensive laboratory is open to pupils. The Chemist +conducts assays and analyses. A Prospectus of the School for the +Practical Education of Engine Drivers can be had of the Secretary. +A new edition of the Catalogue, 1s.</Unicode></TextEquiv></TextRegion> + <SeparatorRegion id="r555"> + <Coords> + <Point x="1514" y="1662"/> + <Point x="1526" y="1661"/> + <Point x="1567" y="1659"/> + <Point x="1601" y="1657"/> + <Point x="1609" y="1657"/> + <Point x="1614" y="1658"/> + <Point x="1622" y="1658"/> + <Point x="1624" y="1657"/> + <Point x="1652" y="1655"/> + <Point x="1656" y="1656"/> + <Point x="1657" y="1655"/> + <Point x="1707" y="1652"/> + <Point x="1764" y="1648"/> + <Point x="1879" y="1643"/> + <Point x="1877" y="1652"/> + <Point x="1825" y="1654"/> + <Point x="1638" y="1664"/> + <Point x="1608" y="1665"/> + <Point x="1560" y="1667"/> + <Point x="1496" y="1670"/> + <Point x="1495" y="1662"/></Coords></SeparatorRegion> + <TextRegion id="r556" type="paragraph"> + <Coords> + <Point x="1332" y="1710"/> + <Point x="1334" y="1682"/> + <Point x="1387" y="1680"/> + <Point x="1492" y="1676"/> + <Point x="1550" y="1675"/> + <Point x="1568" y="1674"/> + <Point x="1611" y="1673"/> + <Point x="1635" y="1672"/> + <Point x="1679" y="1670"/> + <Point x="1728" y="1666"/> + <Point x="1784" y="1663"/> + <Point x="1865" y="1658"/> + <Point x="1953" y="1655"/> + <Point x="2075" y="1652"/> + <Point x="2077" y="1730"/> + <Point x="2077" y="1846"/> + <Point x="2080" y="1938"/> + <Point x="1704" y="1947"/> + <Point x="1700" y="1967"/> + <Point x="1685" y="1967"/> + <Point x="1683" y="1970"/> + <Point x="1677" y="1969"/> + <Point x="1673" y="1966"/> + <Point x="1523" y="1972"/> + <Point x="1498" y="1974"/> + <Point x="1483" y="1975"/> + <Point x="1435" y="1977"/> + <Point x="1434" y="1981"/> + <Point x="1426" y="1981"/> + <Point x="1419" y="1977"/> + <Point x="1301" y="1986"/> + <Point x="1300" y="1796"/> + <Point x="1300" y="1721"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>SPLENDID EXHIBITION.‑The ROYAL +GALLERY OF PRACTICAL SCIENCE, ADELAIDE‑STREET, +West Strand.—During the week the PYR‑EIDOTROPE, the BI‐ +SCENASCOPE, the Scenic Metamorphoses, the Microscope, and +other novelties; Electrical Experiments, Glass‑blowing, Combustion +of Steel, Steam Gun, will be repeated as frequently as possible during +the day for the accommodation of the visitors; the Polariscope will +be shown by E. M. Clarke, and a double Fire Cloud will be exhibited +at four o’clock in the Long Room; the Electrical Eel, Walton’s +Card‑making Machine, Stevens’ Gas‑making Apparatus, Braithwaite’s +new Cooking Stove, Ackermann’s Gallery of Prints, Pictures, Statu‐ +ary, Music, Models, &amp;c. &amp;c.—Admission, 1s. Catalogues, 6d. Open +from Half‑past Ten till Four daily.</Unicode></TextEquiv></TextRegion> + <SeparatorRegion id="r557"> + <Coords> + <Point x="1497" y="1977"/> + <Point x="1535" y="1975"/> + <Point x="1566" y="1973"/> + <Point x="1644" y="1971"/> + <Point x="1673" y="1970"/> + <Point x="1676" y="1970"/> + <Point x="1678" y="1971"/> + <Point x="1687" y="1971"/> + <Point x="1691" y="1969"/> + <Point x="1881" y="1964"/> + <Point x="1882" y="1971"/> + <Point x="1876" y="1974"/> + <Point x="1657" y="1978"/> + <Point x="1496" y="1983"/> + <Point x="1496" y="1977"/></Coords></SeparatorRegion> + <TextRegion id="r559" type="paragraph"> + <Coords> + <Point x="1336" y="2028"/> + <Point x="1343" y="2003"/> + <Point x="1403" y="1995"/> + <Point x="1447" y="1993"/> + <Point x="1481" y="1992"/> + <Point x="1519" y="1989"/> + <Point x="1554" y="1988"/> + <Point x="1606" y="1985"/> + <Point x="1659" y="1984"/> + <Point x="1686" y="1985"/> + <Point x="1694" y="1989"/> + <Point x="1849" y="1985"/> + <Point x="1849" y="1980"/> + <Point x="1926" y="1976"/> + <Point x="1975" y="1974"/> + <Point x="2007" y="1975"/> + <Point x="2049" y="1972"/> + <Point x="2080" y="1974"/> + <Point x="2080" y="2234"/> + <Point x="1889" y="2241"/> + <Point x="1744" y="2245"/> + <Point x="1688" y="2249"/> + <Point x="1684" y="2265"/> + <Point x="1670" y="2266"/> + <Point x="1666" y="2268"/> + <Point x="1661" y="2266"/> + <Point x="1566" y="2268"/> + <Point x="1563" y="2271"/> + <Point x="1561" y="2272"/> + <Point x="1556" y="2271"/> + <Point x="1552" y="2269"/> + <Point x="1479" y="2274"/> + <Point x="1305" y="2282"/> + <Point x="1304" y="2156"/> + <Point x="1305" y="2040"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>APOLLONICON.—TO‑MORROW Mr. Purkis will +perform a SELECTION of MUSIC on the APOLLONICON, in which +will be introduced‑Overtures, “Agnese” and “Seige of Rochelle;” +Cavatina, “Di Placer;” Duet, “Ah, Perdona;” Glee, “The Chough +and Crow;” Polacca, “I Puritani;” Song, “Auld Robin Gray;” Ballad, +“The Hunter of Tyrol;” a Selection of German Waltzes, and “God +save the Queen.” The mechanical powers of the Instrument will +commence the performace with Mozart’s Overture to “Figaro,” and +conclude with Weber’s Overture to “Der Freyschutz.—At the Rooms +of Robson and Son, Organ‑builders, 101, St. Martin’s‑lane. Com‐ +mencing at Two o’clock. Admittance, 1s.—N.B. The Performances +will be continued every Saturday.</Unicode></TextEquiv></TextRegion> + <SeparatorRegion id="r560"> + <Coords> + <Point x="1505" y="2274"/> + <Point x="1511" y="2273"/> + <Point x="1538" y="2273"/> + <Point x="1551" y="2271"/> + <Point x="1554" y="2272"/> + <Point x="1558" y="2273"/> + <Point x="1564" y="2273"/> + <Point x="1568" y="2272"/> + <Point x="1660" y="2268"/> + <Point x="1664" y="2269"/> + <Point x="1670" y="2269"/> + <Point x="1674" y="2268"/> + <Point x="1692" y="2267"/> + <Point x="1881" y="2259"/> + <Point x="1882" y="2270"/> + <Point x="1725" y="2275"/> + <Point x="1571" y="2279"/> + <Point x="1505" y="2282"/></Coords></SeparatorRegion> + <TextRegion id="r561" type="paragraph"> + <Coords> + <Point x="1341" y="2324"/> + <Point x="1343" y="2295"/> + <Point x="1484" y="2290"/> + <Point x="1507" y="2288"/> + <Point x="1551" y="2285"/> + <Point x="1610" y="2283"/> + <Point x="1684" y="2280"/> + <Point x="1750" y="2279"/> + <Point x="1809" y="2276"/> + <Point x="1891" y="2274"/> + <Point x="2078" y="2266"/> + <Point x="2084" y="2438"/> + <Point x="2083" y="2524"/> + <Point x="1875" y="2529"/> + <Point x="1679" y="2535"/> + <Point x="1594" y="2538"/> + <Point x="1592" y="2557"/> + <Point x="1457" y="2563"/> + <Point x="1361" y="2567"/> + <Point x="1307" y="2569"/> + <Point x="1307" y="2330"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>HOLIDAY AMUSEMENTS in the EGYPTIAN +HALL.—The NORTH AMERICAN INDIAN MUSEUM, Open Day +and Evening.—On THIS EVENING Jan 1, and To‑morrow Evening, +at Eight o’clock, GROUPS and TABLEAUX VIVANTES of INDIAN +DANCES, COUNCILS, WAR‑PARADES, &amp;c., formed by TWENTY +LIVING FIGURES in FULL INDIAN COSTUMES.—N.B. Mr. +CATLIN is compelled to announce that, although these exhibitions +of the Groups and Tableaux are nightly crowding his rooms with +visitors, they must cease after a few evenings more, on account of +the injury which is nightly done to his Indian wardrobe, which con‐ +stitutes so important a part of his collection.—Admission, 1s. Stoves +are in use in both rooms.</Unicode></TextEquiv></TextRegion> + <SeparatorRegion id="r562"> + <Coords> + <Point x="1512" y="2563"/> + <Point x="1521" y="2562"/> + <Point x="1533" y="2562"/> + <Point x="1543" y="2561"/> + <Point x="1558" y="2560"/> + <Point x="1573" y="2560"/> + <Point x="1592" y="2559"/> + <Point x="1723" y="2555"/> + <Point x="1787" y="2553"/> + <Point x="1887" y="2550"/> + <Point x="1886" y="2558"/> + <Point x="1871" y="2559"/> + <Point x="1779" y="2561"/> + <Point x="1671" y="2563"/> + <Point x="1589" y="2566"/> + <Point x="1508" y="2569"/> + <Point x="1508" y="2563"/></Coords></SeparatorRegion> + <TextRegion id="r563" type="paragraph"> + <Coords> + <Point x="1341" y="2613"/> + <Point x="1343" y="2583"/> + <Point x="1411" y="2579"/> + <Point x="1485" y="2577"/> + <Point x="1550" y="2575"/> + <Point x="1596" y="2572"/> + <Point x="1697" y="2568"/> + <Point x="1819" y="2565"/> + <Point x="1913" y="2562"/> + <Point x="2067" y="2559"/> + <Point x="2083" y="2570"/> + <Point x="2086" y="2731"/> + <Point x="2087" y="2776"/> + <Point x="2033" y="2776"/> + <Point x="2031" y="2797"/> + <Point x="1901" y="2799"/> + <Point x="1679" y="2807"/> + <Point x="1558" y="2810"/> + <Point x="1310" y="2821"/> + <Point x="1310" y="2716"/> + <Point x="1308" y="2620"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>PANORAMA, LEICESTER, SQUARE.—PA‐ +NORAMA of DAMASCUS. LEICESTER‑SQUARE.—Now OPEN +a splendid VIEW of DAMASCUS, one of the most ancient cities of +the East. It embraces every object of importance in the city; also +the Plain; the Scene of the Conversion of St. Paul; the Street called +Straight, where the Apostle remained during his blindness; with an +extensive view of the surrounding country. Also open the VIEW of +MACAO, in China, with the Bay of the Ty‑pa, her Majesty’s ships +Volage and Hyacinth, Chinese Junks, &amp;c.—Admittance to each View, +1s. Books 6d. each.—N.B. The circles are warmed for the season.</Unicode></TextEquiv></TextRegion> + <SeparatorRegion id="r564"> + <Coords> + <Point x="1482" y="2821"/> + <Point x="1517" y="2821"/> + <Point x="1603" y="2818"/> + <Point x="1672" y="2816"/> + <Point x="1835" y="2812"/> + <Point x="1893" y="2811"/> + <Point x="1894" y="2818"/> + <Point x="1891" y="2820"/> + <Point x="1666" y="2824"/> + <Point x="1500" y="2829"/> + <Point x="1482" y="2829"/></Coords></SeparatorRegion> + <TextRegion id="r565" type="paragraph"> + <Coords> + <Point x="1345" y="2871"/> + <Point x="1346" y="2843"/> + <Point x="1475" y="2839"/> + <Point x="1600" y="2834"/> + <Point x="1672" y="2832"/> + <Point x="1785" y="2828"/> + <Point x="1902" y="2824"/> + <Point x="1984" y="2821"/> + <Point x="2036" y="2819"/> + <Point x="2087" y="2820"/> + <Point x="2090" y="2967"/> + <Point x="2052" y="2969"/> + <Point x="2010" y="2970"/> + <Point x="1842" y="2974"/> + <Point x="1843" y="2993"/> + <Point x="1815" y="2994"/> + <Point x="1749" y="2997"/> + <Point x="1683" y="2998"/> + <Point x="1610" y="3002"/> + <Point x="1577" y="3002"/> + <Point x="1575" y="3005"/> + <Point x="1570" y="3005"/> + <Point x="1566" y="3002"/> + <Point x="1544" y="3004"/> + <Point x="1540" y="3006"/> + <Point x="1537" y="3005"/> + <Point x="1314" y="3014"/> + <Point x="1311" y="2884"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>MAGIC CAVE.—FIVE NEW VIEWS.—The +only Subterraneous Exhibition in London, in which may be seen +SIXTEEN beautiful COSMORAMIC VIEWS, by eminent artists, +which are so well arranged that they give the spectator a better idea +of the scenes before him than anything short of nature can possibly +produce.—Open from Eleven in the morning until Ten at night, at +the Lowther Bazaar, 35, Strand. Admission 6d.</Unicode></TextEquiv></TextRegion> + <SeparatorRegion id="r567"> + <Coords> + <Point x="1528" y="3008"/> + <Point x="1539" y="3008"/> + <Point x="1556" y="3007"/> + <Point x="1575" y="3007"/> + <Point x="1607" y="3006"/> + <Point x="1651" y="3003"/> + <Point x="1694" y="3002"/> + <Point x="1737" y="3000"/> + <Point x="1798" y="2999"/> + <Point x="1883" y="2996"/> + <Point x="1883" y="3005"/> + <Point x="1856" y="3006"/> + <Point x="1748" y="3008"/> + <Point x="1665" y="3011"/> + <Point x="1557" y="3015"/> + <Point x="1508" y="3016"/> + <Point x="1507" y="3009"/></Coords></SeparatorRegion> + <TextRegion id="r568" type="paragraph"> + <Coords> + <Point x="1351" y="3063"/> + <Point x="1350" y="3029"/> + <Point x="1512" y="3022"/> + <Point x="1654" y="3017"/> + <Point x="1847" y="3011"/> + <Point x="1943" y="3007"/> + <Point x="2088" y="3005"/> + <Point x="2090" y="3044"/> + <Point x="2091" y="3086"/> + <Point x="2091" y="3145"/> + <Point x="2092" y="3278"/> + <Point x="2092" y="3376"/> + <Point x="1866" y="3382"/> + <Point x="1773" y="3387"/> + <Point x="1752" y="3388"/> + <Point x="1735" y="3387"/> + <Point x="1647" y="3389"/> + <Point x="1635" y="3391"/> + <Point x="1622" y="3389"/> + <Point x="1500" y="3396"/> + <Point x="1495" y="3416"/> + <Point x="1480" y="3418"/> + <Point x="1476" y="3419"/> + <Point x="1470" y="3419"/> + <Point x="1459" y="3417"/> + <Point x="1397" y="3420"/> + <Point x="1395" y="3422"/> + <Point x="1387" y="3423"/> + <Point x="1381" y="3421"/> + <Point x="1359" y="3420"/> + <Point x="1356" y="3425"/> + <Point x="1345" y="3424"/> + <Point x="1340" y="3422"/> + <Point x="1315" y="3424"/> + <Point x="1315" y="3065"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>THEATRE ROYAL DRURY‑LANE.—CON‐ +CERTS D’HIVER.—Conductor, Mr. Eliason.—Programme for THIS +EVENING.—PART I. Overture to Goethe’s celebrated Tragedy of +“Faust;” Lindpaintner. “Aurora,” Valses; Labitzky. Quadrille. +“Le Gothique;” Musard. Medley Scotch Overture, “Guy Manner‐ +ing;” Bishop. Second Grand Fantasia from the Opera “Les Hugue‐ +nots,” Meyerbeer. Lecke’s celebrated Music to “Macbeth.”—PART II. +Overture, “Der Freyschutz;” C.M. Von Weber. The Telegraph, or +Musical Gleanings; being a Grand Pot‑pourri, by Strauss. Swiss Air, +with variations, Concertina, Mr. Case. Overture, “Le Cheval de +Bronze;” Auber. Vaises, “Brussler Spitzen;” Strauss. Quadrille, +“I Puritani; ” Musard. Gallop, “Camille, ” Trumpet Solo, Herr +Muller; Musard.—Prices of admission: to the Promenade, 1s.; +Dress Circle, 2s. 6d.; Upper Boxes, 1s. 6d.; Lower Gallery 1s. Visit‐ +ers to the Boxes have the privilege of passing to and from the Prome‐ +nade.—Doors open at Half‑past Seven, performance to commence at +Eight precisely.</Unicode></TextEquiv></TextRegion> + <SeparatorRegion id="r569"> + <Coords> + <Point x="1512" y="3414"/> + <Point x="1590" y="3413"/> + <Point x="1684" y="3410"/> + <Point x="1807" y="3407"/> + <Point x="1898" y="3408"/> + <Point x="1898" y="3417"/> + <Point x="1864" y="3417"/> + <Point x="1726" y="3419"/> + <Point x="1680" y="3422"/> + <Point x="1573" y="3423"/> + <Point x="1513" y="3424"/></Coords></SeparatorRegion> + <TextRegion id="r570" type="paragraph"> + <Coords> + <Point x="1349" y="3437"/> + <Point x="1519" y="3430"/> + <Point x="1609" y="3428"/> + <Point x="1671" y="3426"/> + <Point x="1737" y="3424"/> + <Point x="1826" y="3422"/> + <Point x="1875" y="3422"/> + <Point x="1992" y="3417"/> + <Point x="2055" y="3415"/> + <Point x="2060" y="3427"/> + <Point x="2090" y="3429"/> + <Point x="2092" y="3458"/> + <Point x="2093" y="3538"/> + <Point x="1964" y="3544"/> + <Point x="1924" y="3545"/> + <Point x="1907" y="3545"/> + <Point x="1906" y="3564"/> + <Point x="1900" y="3564"/> + <Point x="1880" y="3565"/> + <Point x="1851" y="3566"/> + <Point x="1792" y="3566"/> + <Point x="1791" y="3568"/> + <Point x="1783" y="3567"/> + <Point x="1774" y="3568"/> + <Point x="1733" y="3568"/> + <Point x="1731" y="3570"/> + <Point x="1730" y="3570"/> + <Point x="1728" y="3571"/> + <Point x="1724" y="3569"/> + <Point x="1717" y="3571"/> + <Point x="1713" y="3571"/> + <Point x="1711" y="3568"/> + <Point x="1696" y="3569"/> + <Point x="1659" y="3569"/> + <Point x="1656" y="3571"/> + <Point x="1653" y="3573"/> + <Point x="1650" y="3573"/> + <Point x="1646" y="3570"/> + <Point x="1620" y="3572"/> + <Point x="1605" y="3571"/> + <Point x="1580" y="3572"/> + <Point x="1572" y="3572"/> + <Point x="1450" y="3576"/> + <Point x="1406" y="3578"/> + <Point x="1382" y="3579"/> + <Point x="1380" y="3581"/> + <Point x="1376" y="3581"/> + <Point x="1373" y="3579"/> + <Point x="1363" y="3580"/> + <Point x="1360" y="3582"/> + <Point x="1353" y="3581"/> + <Point x="1349" y="3579"/> + <Point x="1331" y="3579"/> + <Point x="1330" y="3581"/> + <Point x="1319" y="3581"/> + <Point x="1315" y="3474"/> + <Point x="1325" y="3472"/> + <Point x="1349" y="3471"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>THEATRE ROYAL, COVENT‑GARDEN.— +THIS EVENING will be presented THE MERRY WIVES OF +WINDSOR. Sir John Falstaff, Mr. Bartley; Justice Shallow, Mr. +F. Matthews; Master Slender, Mr. C. Mathews; Mr. Ford, Mr. +Cooper; Mrs. Ford. Mrs. Nisbett; Mrs. Page, Madame Vestris; Ann +Page, Miss Rainforth; Mrs. Quickly, Mrs. C. Jones.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r572" type="paragraph"> + <Coords> + <Point x="1339" y="3601"/> + <Point x="1339" y="3582"/> + <Point x="1341" y="3581"/> + <Point x="1350" y="3581"/> + <Point x="1355" y="3583"/> + <Point x="1359" y="3583"/> + <Point x="1359" y="3584"/> + <Point x="1371" y="3585"/> + <Point x="1384" y="3583"/> + <Point x="1431" y="3582"/> + <Point x="1432" y="3579"/> + <Point x="1433" y="3578"/> + <Point x="1439" y="3578"/> + <Point x="1440" y="3580"/> + <Point x="1459" y="3579"/> + <Point x="1460" y="3577"/> + <Point x="1467" y="3577"/> + <Point x="1467" y="3579"/> + <Point x="1506" y="3579"/> + <Point x="1506" y="3576"/> + <Point x="1507" y="3575"/> + <Point x="1516" y="3576"/> + <Point x="1524" y="3576"/> + <Point x="1524" y="3575"/> + <Point x="1530" y="3575"/> + <Point x="1531" y="3577"/> + <Point x="1554" y="3575"/> + <Point x="1555" y="3575"/> + <Point x="1556" y="3574"/> + <Point x="1563" y="3574"/> + <Point x="1564" y="3576"/> + <Point x="1591" y="3574"/> + <Point x="1593" y="3573"/> + <Point x="1607" y="3573"/> + <Point x="1611" y="3575"/> + <Point x="1652" y="3574"/> + <Point x="1653" y="3574"/> + <Point x="1659" y="3572"/> + <Point x="1671" y="3571"/> + <Point x="1682" y="3570"/> + <Point x="1690" y="3570"/> + <Point x="1691" y="3572"/> + <Point x="1708" y="3572"/> + <Point x="1708" y="3570"/> + <Point x="1711" y="3570"/> + <Point x="1713" y="3572"/> + <Point x="1766" y="3572"/> + <Point x="1790" y="3570"/> + <Point x="1792" y="3568"/> + <Point x="1806" y="3568"/> + <Point x="1807" y="3570"/> + <Point x="1833" y="3569"/> + <Point x="1835" y="3568"/> + <Point x="1841" y="3568"/> + <Point x="1847" y="3570"/> + <Point x="1877" y="3569"/> + <Point x="1877" y="3567"/> + <Point x="1883" y="3567"/> + <Point x="1883" y="3569"/> + <Point x="1966" y="3566"/> + <Point x="1968" y="3562"/> + <Point x="2025" y="3561"/> + <Point x="2093" y="3559"/> + <Point x="2092" y="3630"/> + <Point x="2004" y="3629"/> + <Point x="2002" y="3634"/> + <Point x="1999" y="3636"/> + <Point x="1991" y="3635"/> + <Point x="1980" y="3629"/> + <Point x="1971" y="3629"/> + <Point x="1968" y="3631"/> + <Point x="1963" y="3632"/> + <Point x="1958" y="3630"/> + <Point x="1882" y="3632"/> + <Point x="1773" y="3636"/> + <Point x="1731" y="3638"/> + <Point x="1727" y="3656"/> + <Point x="1725" y="3656"/> + <Point x="1666" y="3658"/> + <Point x="1630" y="3658"/> + <Point x="1623" y="3659"/> + <Point x="1585" y="3660"/> + <Point x="1383" y="3667"/> + <Point x="1382" y="3669"/> + <Point x="1378" y="3669"/> + <Point x="1374" y="3667"/> + <Point x="1363" y="3667"/> + <Point x="1357" y="3670"/> + <Point x="1354" y="3669"/> + <Point x="1353" y="3668"/> + <Point x="1326" y="3668"/> + <Point x="1317" y="3635"/> + <Point x="1318" y="3604"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>To conclude with the Grand Christmas Pantomime, entitled THE +CASTLE OF OTRANTO; or Harlequin and the Giant Helmet. Har‐ +lequin, Mr. C. J. Smith; Pantaloon, Mr. Morelli; Clown, Mr. Ridg‐ +way; Columbine, Miss Farebrother.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r573" type="paragraph"> + <Coords> + <Point x="1339" y="3676"/> + <Point x="1340" y="3670"/> + <Point x="1354" y="3670"/> + <Point x="1357" y="3672"/> + <Point x="1381" y="3672"/> + <Point x="1384" y="3671"/> + <Point x="1481" y="3669"/> + <Point x="1485" y="3665"/> + <Point x="1496" y="3664"/> + <Point x="1519" y="3663"/> + <Point x="1526" y="3663"/> + <Point x="1529" y="3666"/> + <Point x="1622" y="3664"/> + <Point x="1624" y="3661"/> + <Point x="1627" y="3660"/> + <Point x="1663" y="3660"/> + <Point x="1664" y="3659"/> + <Point x="1672" y="3659"/> + <Point x="1690" y="3658"/> + <Point x="1694" y="3659"/> + <Point x="1710" y="3658"/> + <Point x="1730" y="3657"/> + <Point x="1830" y="3655"/> + <Point x="1862" y="3652"/> + <Point x="1901" y="3651"/> + <Point x="1945" y="3650"/> + <Point x="1993" y="3649"/> + <Point x="2032" y="3653"/> + <Point x="2033" y="3670"/> + <Point x="2029" y="3673"/> + <Point x="1924" y="3675"/> + <Point x="1802" y="3678"/> + <Point x="1793" y="3679"/> + <Point x="1791" y="3682"/> + <Point x="1787" y="3682"/> + <Point x="1782" y="3679"/> + <Point x="1665" y="3681"/> + <Point x="1664" y="3683"/> + <Point x="1662" y="3684"/> + <Point x="1651" y="3684"/> + <Point x="1646" y="3682"/> + <Point x="1635" y="3682"/> + <Point x="1480" y="3688"/> + <Point x="1339" y="3691"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>To‑morrow. Midsummer Night’s Dream, and the Pantomime.</Unicode></TextEquiv></TextRegion> + <SeparatorRegion id="r574"> + <Coords> + <Point x="1506" y="3701"/> + <Point x="1511" y="3695"/> + <Point x="1537" y="3694"/> + <Point x="1585" y="3693"/> + <Point x="1638" y="3692"/> + <Point x="1716" y="3690"/> + <Point x="1779" y="3690"/> + <Point x="1833" y="3689"/> + <Point x="1906" y="3688"/> + <Point x="1905" y="3694"/> + <Point x="1893" y="3696"/> + <Point x="1797" y="3696"/> + <Point x="1687" y="3698"/> + <Point x="1574" y="3702"/></Coords></SeparatorRegion> + <TextRegion id="r575" type="paragraph"> + <Coords> + <Point x="1358" y="3747"/> + <Point x="1357" y="3716"/> + <Point x="1452" y="3712"/> + <Point x="1529" y="3710"/> + <Point x="1627" y="3707"/> + <Point x="1684" y="3705"/> + <Point x="1814" y="3702"/> + <Point x="1887" y="3700"/> + <Point x="2006" y="3696"/> + <Point x="2093" y="3702"/> + <Point x="2095" y="3750"/> + <Point x="2095" y="3866"/> + <Point x="2059" y="3869"/> + <Point x="2060" y="3888"/> + <Point x="2047" y="3888"/> + <Point x="2040" y="3885"/> + <Point x="2037" y="3886"/> + <Point x="2031" y="3886"/> + <Point x="1968" y="3888"/> + <Point x="1965" y="3889"/> + <Point x="1958" y="3889"/> + <Point x="1935" y="3888"/> + <Point x="1928" y="3888"/> + <Point x="1883" y="3889"/> + <Point x="1876" y="3890"/> + <Point x="1873" y="3892"/> + <Point x="1870" y="3892"/> + <Point x="1868" y="3890"/> + <Point x="1838" y="3890"/> + <Point x="1834" y="3894"/> + <Point x="1826" y="3894"/> + <Point x="1824" y="3891"/> + <Point x="1771" y="3891"/> + <Point x="1768" y="3893"/> + <Point x="1715" y="3893"/> + <Point x="1709" y="3888"/> + <Point x="1702" y="3888"/> + <Point x="1702" y="3897"/> + <Point x="1694" y="3895"/> + <Point x="1681" y="3895"/> + <Point x="1508" y="3899"/> + <Point x="1505" y="3898"/> + <Point x="1500" y="3902"/> + <Point x="1497" y="3901"/> + <Point x="1492" y="3899"/> + <Point x="1488" y="3901"/> + <Point x="1484" y="3902"/> + <Point x="1481" y="3899"/> + <Point x="1453" y="3901"/> + <Point x="1446" y="3897"/> + <Point x="1443" y="3900"/> + <Point x="1437" y="3900"/> + <Point x="1392" y="3903"/> + <Point x="1388" y="3905"/> + <Point x="1385" y="3907"/> + <Point x="1378" y="3906"/> + <Point x="1375" y="3903"/> + <Point x="1353" y="3905"/> + <Point x="1321" y="3906"/> + <Point x="1321" y="3749"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>THEATRE ROYAL, HAYMARKET.—THIS +EVENING will be performed the new and original Comedy +called MONEY. Lord Glossmore, Mr. F. Vining; Sir John Vesey, +Bart., Mr. Strickland; Sir Frederick Blount, Mr. W. Lacy: Mr. +Benjamin Stout, M. P., Mr. D. Rees; Evelyn, Mr. Macready; Graves, +Mr. We�ster; Captain Dudley Smooth, Mr. Wrench; Sharpe, Mr. +Waldron; Toke, Mr. Oxberry; Lady Franklin, Mrs. Glover; Miss +Georgina Vesey, Miss P. Horton; Clara Douglas, Miss H. Faucit.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r579" type="paragraph"> + <Coords> + <Point x="1339" y="3925"/> + <Point x="1348" y="3907"/> + <Point x="1368" y="3905"/> + <Point x="1377" y="3907"/> + <Point x="1383" y="3910"/> + <Point x="1392" y="3908"/> + <Point x="1423" y="3905"/> + <Point x="1425" y="3903"/> + <Point x="1436" y="3903"/> + <Point x="1440" y="3902"/> + <Point x="1445" y="3902"/> + <Point x="1454" y="3903"/> + <Point x="1456" y="3902"/> + <Point x="1479" y="3902"/> + <Point x="1483" y="3903"/> + <Point x="1501" y="3903"/> + <Point x="1505" y="3900"/> + <Point x="1555" y="3900"/> + <Point x="1578" y="3899"/> + <Point x="1598" y="3898"/> + <Point x="1650" y="3898"/> + <Point x="1658" y="3897"/> + <Point x="1695" y="3897"/> + <Point x="1703" y="3899"/> + <Point x="1705" y="3895"/> + <Point x="1742" y="3895"/> + <Point x="1770" y="3894"/> + <Point x="1772" y="3892"/> + <Point x="1822" y="3893"/> + <Point x="1825" y="3897"/> + <Point x="1835" y="3897"/> + <Point x="1838" y="3892"/> + <Point x="1865" y="3892"/> + <Point x="1872" y="3894"/> + <Point x="1883" y="3893"/> + <Point x="1929" y="3891"/> + <Point x="1932" y="3891"/> + <Point x="1938" y="3890"/> + <Point x="1958" y="3891"/> + <Point x="1965" y="3891"/> + <Point x="1972" y="3890"/> + <Point x="1980" y="3890"/> + <Point x="1982" y="3889"/> + <Point x="2026" y="3889"/> + <Point x="2031" y="3888"/> + <Point x="2038" y="3888"/> + <Point x="2039" y="3887"/> + <Point x="2044" y="3888"/> + <Point x="2050" y="3890"/> + <Point x="2063" y="3890"/> + <Point x="2068" y="3886"/> + <Point x="2096" y="3888"/> + <Point x="2094" y="3911"/> + <Point x="1975" y="3913"/> + <Point x="1958" y="3930"/> + <Point x="1955" y="3935"/> + <Point x="1945" y="3933"/> + <Point x="1944" y="3935"/> + <Point x="1936" y="3935"/> + <Point x="1931" y="3932"/> + <Point x="1846" y="3934"/> + <Point x="1800" y="3934"/> + <Point x="1799" y="3936"/> + <Point x="1795" y="3936"/> + <Point x="1790" y="3934"/> + <Point x="1763" y="3936"/> + <Point x="1761" y="3939"/> + <Point x="1754" y="3938"/> + <Point x="1750" y="3936"/> + <Point x="1699" y="3937"/> + <Point x="1648" y="3938"/> + <Point x="1619" y="3938"/> + <Point x="1617" y="3939"/> + <Point x="1616" y="3941"/> + <Point x="1611" y="3940"/> + <Point x="1607" y="3939"/> + <Point x="1572" y="3939"/> + <Point x="1570" y="3941"/> + <Point x="1569" y="3942"/> + <Point x="1566" y="3942"/> + <Point x="1563" y="3939"/> + <Point x="1555" y="3940"/> + <Point x="1550" y="3940"/> + <Point x="1544" y="3941"/> + <Point x="1536" y="3941"/> + <Point x="1517" y="3942"/> + <Point x="1488" y="3942"/> + <Point x="1476" y="3941"/> + <Point x="1472" y="3944"/> + <Point x="1469" y="3943"/> + <Point x="1461" y="3943"/> + <Point x="1428" y="3944"/> + <Point x="1418" y="3944"/> + <Point x="1416" y="3947"/> + <Point x="1412" y="3948"/> + <Point x="1408" y="3946"/> + <Point x="1405" y="3949"/> + <Point x="1399" y="3946"/> + <Point x="1326" y="3948"/> + <Point x="1319" y="3933"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>After which THE LADIES’ CLUB. Mrs. Fitzsmyth (the Chair‐ +woman), Mrs. Glover; Captain Fitzsmyth, Mr. Oxberry.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r577" type="paragraph"> + <Coords> + <Point x="1339" y="3967"/> + <Point x="1340" y="3950"/> + <Point x="1361" y="3949"/> + <Point x="1363" y="3952"/> + <Point x="1401" y="3951"/> + <Point x="1408" y="3950"/> + <Point x="1430" y="3950"/> + <Point x="1429" y="3946"/> + <Point x="1439" y="3946"/> + <Point x="1439" y="3950"/> + <Point x="1457" y="3948"/> + <Point x="1457" y="3945"/> + <Point x="1466" y="3945"/> + <Point x="1467" y="3948"/> + <Point x="1505" y="3948"/> + <Point x="1505" y="3944"/> + <Point x="1511" y="3944"/> + <Point x="1511" y="3946"/> + <Point x="1522" y="3945"/> + <Point x="1522" y="3943"/> + <Point x="1563" y="3942"/> + <Point x="1565" y="3943"/> + <Point x="1571" y="3943"/> + <Point x="1572" y="3941"/> + <Point x="1611" y="3941"/> + <Point x="1614" y="3942"/> + <Point x="1619" y="3941"/> + <Point x="1622" y="3940"/> + <Point x="1663" y="3940"/> + <Point x="1681" y="3939"/> + <Point x="1702" y="3939"/> + <Point x="1735" y="3938"/> + <Point x="1749" y="3938"/> + <Point x="1758" y="3941"/> + <Point x="1764" y="3941"/> + <Point x="1769" y="3939"/> + <Point x="1777" y="3938"/> + <Point x="1783" y="3937"/> + <Point x="1792" y="3936"/> + <Point x="1795" y="3938"/> + <Point x="1800" y="3938"/> + <Point x="1801" y="3936"/> + <Point x="1878" y="3936"/> + <Point x="1881" y="3935"/> + <Point x="1900" y="3935"/> + <Point x="1905" y="3936"/> + <Point x="1927" y="3935"/> + <Point x="1931" y="3934"/> + <Point x="1935" y="3937"/> + <Point x="1954" y="3937"/> + <Point x="1961" y="3934"/> + <Point x="1966" y="3930"/> + <Point x="2096" y="3929"/> + <Point x="2095" y="3954"/> + <Point x="2071" y="3953"/> + <Point x="2040" y="3953"/> + <Point x="2022" y="3952"/> + <Point x="1987" y="3952"/> + <Point x="1985" y="3953"/> + <Point x="1982" y="3953"/> + <Point x="1978" y="3952"/> + <Point x="1955" y="3953"/> + <Point x="1899" y="3953"/> + <Point x="1870" y="3955"/> + <Point x="1869" y="3956"/> + <Point x="1864" y="3956"/> + <Point x="1861" y="3954"/> + <Point x="1846" y="3955"/> + <Point x="1821" y="3955"/> + <Point x="1812" y="3956"/> + <Point x="1753" y="3956"/> + <Point x="1750" y="3958"/> + <Point x="1728" y="3958"/> + <Point x="1713" y="3957"/> + <Point x="1710" y="3959"/> + <Point x="1705" y="3958"/> + <Point x="1702" y="3958"/> + <Point x="1652" y="3961"/> + <Point x="1605" y="3961"/> + <Point x="1587" y="3962"/> + <Point x="1570" y="3963"/> + <Point x="1477" y="3963"/> + <Point x="1476" y="3965"/> + <Point x="1459" y="3965"/> + <Point x="1421" y="3966"/> + <Point x="1411" y="3967"/> + <Point x="1395" y="3968"/> + <Point x="1379" y="3968"/> + <Point x="1338" y="3967"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>To conclude with TOM THUMB. Tom Thumb, Master G. Webster.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r578" type="paragraph"> + <Coords> + <Point x="1339" y="3973"/> + <Point x="1341" y="3969"/> + <Point x="1362" y="3969"/> + <Point x="1376" y="3971"/> + <Point x="1425" y="3971"/> + <Point x="1455" y="3969"/> + <Point x="1474" y="3970"/> + <Point x="1480" y="3966"/> + <Point x="1487" y="3965"/> + <Point x="1586" y="3965"/> + <Point x="1591" y="3964"/> + <Point x="1603" y="3964"/> + <Point x="1607" y="3963"/> + <Point x="1619" y="3963"/> + <Point x="1627" y="3964"/> + <Point x="1630" y="3963"/> + <Point x="1658" y="3962"/> + <Point x="1671" y="3963"/> + <Point x="1680" y="3962"/> + <Point x="1685" y="3961"/> + <Point x="1708" y="3961"/> + <Point x="1714" y="3960"/> + <Point x="1715" y="3958"/> + <Point x="1722" y="3959"/> + <Point x="1729" y="3960"/> + <Point x="1750" y="3960"/> + <Point x="1754" y="3959"/> + <Point x="1761" y="3958"/> + <Point x="1874" y="3958"/> + <Point x="1876" y="3956"/> + <Point x="1897" y="3956"/> + <Point x="1927" y="3955"/> + <Point x="1999" y="3955"/> + <Point x="2002" y="3954"/> + <Point x="2011" y="3954"/> + <Point x="2025" y="3963"/> + <Point x="2025" y="3974"/> + <Point x="2016" y="3976"/> + <Point x="1947" y="3977"/> + <Point x="1342" y="3993"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>To‑morrow, Money, with The Ladies’ Club, and Tom Thumb.</Unicode></TextEquiv></TextRegion> + <SeparatorRegion id="r580"> + <Coords> + <Point x="1513" y="3994"/> + <Point x="1591" y="3994"/> + <Point x="1640" y="3992"/> + <Point x="1687" y="3991"/> + <Point x="1735" y="3989"/> + <Point x="1782" y="3988"/> + <Point x="1811" y="3988"/> + <Point x="1847" y="3986"/> + <Point x="1900" y="3987"/> + <Point x="1900" y="3993"/> + <Point x="1888" y="3997"/> + <Point x="1859" y="3996"/> + <Point x="1808" y="3997"/> + <Point x="1740" y="3998"/> + <Point x="1688" y="4000"/> + <Point x="1641" y="4000"/> + <Point x="1608" y="4002"/> + <Point x="1565" y="4004"/> + <Point x="1512" y="4004"/></Coords></SeparatorRegion> + <TextRegion id="r581" type="paragraph"> + <Coords> + <Point x="1353" y="4016"/> + <Point x="1536" y="4011"/> + <Point x="1583" y="4009"/> + <Point x="1699" y="4006"/> + <Point x="1753" y="4004"/> + <Point x="1830" y="4003"/> + <Point x="1912" y="4000"/> + <Point x="1976" y="4000"/> + <Point x="2097" y="3998"/> + <Point x="2098" y="4128"/> + <Point x="2098" y="4241"/> + <Point x="2101" y="4323"/> + <Point x="2094" y="4328"/> + <Point x="1884" y="4330"/> + <Point x="1880" y="4332"/> + <Point x="1874" y="4332"/> + <Point x="1868" y="4328"/> + <Point x="1714" y="4333"/> + <Point x="1710" y="4334"/> + <Point x="1704" y="4335"/> + <Point x="1699" y="4332"/> + <Point x="1665" y="4333"/> + <Point x="1658" y="4336"/> + <Point x="1653" y="4336"/> + <Point x="1649" y="4333"/> + <Point x="1645" y="4334"/> + <Point x="1642" y="4336"/> + <Point x="1639" y="4336"/> + <Point x="1636" y="4333"/> + <Point x="1439" y="4341"/> + <Point x="1435" y="4361"/> + <Point x="1418" y="4361"/> + <Point x="1402" y="4362"/> + <Point x="1397" y="4365"/> + <Point x="1385" y="4365"/> + <Point x="1379" y="4363"/> + <Point x="1325" y="4365"/> + <Point x="1324" y="4259"/> + <Point x="1323" y="4165"/> + <Point x="1335" y="4162"/> + <Point x="1322" y="4158"/> + <Point x="1322" y="4099"/> + <Point x="1334" y="4098"/> + <Point x="1321" y="4088"/> + <Point x="1322" y="4052"/> + <Point x="1353" y="4052"/> + <Point x="1354" y="4047"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>THEATRE ROYAL, ENGLISH OPERA‐ +HOUSE.— “SOIREES MUSICALES”.—THIS EVENING—Overture, +“Masaniello;” Chorus, “Semiramide;” Duet, “Whence this soft +and pleasing flame” (Miss Nunn and Mr. Frazer); Ballad, “The one +we love” (Mr. Frazer); Aria, “Il Postiglione” (Sig. Paltoni); Chorus, +“Viva Henrico;” Overture, “Gazza Ladra;” Aria, “Non piu +Andrai” (Signor Giubilei and Chorus); Duo, “Dunque‑io‑sen” (Miss +Nunn and Signor Paltoni); Song “Young Soldiers” (Mr. Frazer); +Romance on the Cornet à Pistons, Laurent, jun.; Ballad, “The Old +Oak Tree” (Miss Nunn); Trio, “Papataci” (Frazer, Paltoni, and +Giubelei); Quadrilles, “La Victoria” and “Gais Loisirs;” Galop. +Solo on the Oboe by Mr. Keating. Eighty Vocal and Instrumental +Performers, under the direction of Signor Negri.—Admission to the +Parterre, 1s.; to the Balcony, 2s.; Private Boxes, £11s. Commences +at Eight.</Unicode></TextEquiv></TextRegion> + <SeparatorRegion id="r582"> + <Coords> + <Point x="1515" y="4358"/> + <Point x="1550" y="4358"/> + <Point x="1571" y="4357"/> + <Point x="1599" y="4356"/> + <Point x="1613" y="4355"/> + <Point x="1649" y="4355"/> + <Point x="1675" y="4354"/> + <Point x="1710" y="4354"/> + <Point x="1738" y="4352"/> + <Point x="1788" y="4352"/> + <Point x="1827" y="4351"/> + <Point x="1860" y="4351"/> + <Point x="1884" y="4350"/> + <Point x="1904" y="4350"/> + <Point x="1904" y="4357"/> + <Point x="1895" y="4358"/> + <Point x="1863" y="4359"/> + <Point x="1836" y="4359"/> + <Point x="1806" y="4360"/> + <Point x="1763" y="4360"/> + <Point x="1728" y="4362"/> + <Point x="1699" y="4363"/> + <Point x="1626" y="4363"/> + <Point x="1602" y="4364"/> + <Point x="1541" y="4366"/> + <Point x="1514" y="4365"/> + <Point x="1515" y="4357"/></Coords></SeparatorRegion> + <TextRegion id="r583" type="paragraph"> + <Coords> + <Point x="1356" y="4409"/> + <Point x="1355" y="4377"/> + <Point x="1404" y="4377"/> + <Point x="1452" y="4376"/> + <Point x="1484" y="4373"/> + <Point x="1533" y="4373"/> + <Point x="1564" y="4372"/> + <Point x="1605" y="4371"/> + <Point x="1655" y="4370"/> + <Point x="1721" y="4369"/> + <Point x="1754" y="4369"/> + <Point x="1799" y="4366"/> + <Point x="1833" y="4365"/> + <Point x="1883" y="4365"/> + <Point x="1938" y="4363"/> + <Point x="2100" y="4363"/> + <Point x="2105" y="4424"/> + <Point x="2103" y="4463"/> + <Point x="2103" y="4494"/> + <Point x="2102" y="4560"/> + <Point x="1947" y="4561"/> + <Point x="1934" y="4561"/> + <Point x="1926" y="4562"/> + <Point x="1913" y="4561"/> + <Point x="1858" y="4562"/> + <Point x="1854" y="4579"/> + <Point x="1849" y="4581"/> + <Point x="1785" y="4581"/> + <Point x="1766" y="4582"/> + <Point x="1746" y="4582"/> + <Point x="1733" y="4583"/> + <Point x="1712" y="4583"/> + <Point x="1661" y="4584"/> + <Point x="1622" y="4585"/> + <Point x="1579" y="4585"/> + <Point x="1575" y="4588"/> + <Point x="1570" y="4588"/> + <Point x="1564" y="4587"/> + <Point x="1561" y="4588"/> + <Point x="1550" y="4590"/> + <Point x="1539" y="4588"/> + <Point x="1453" y="4589"/> + <Point x="1450" y="4592"/> + <Point x="1444" y="4593"/> + <Point x="1439" y="4591"/> + <Point x="1399" y="4592"/> + <Point x="1359" y="4595"/> + <Point x="1328" y="4597"/> + <Point x="1326" y="4589"/> + <Point x="1325" y="4549"/> + <Point x="1323" y="4505"/> + <Point x="1322" y="4453"/> + <Point x="1322" y="4427"/> + <Point x="1327" y="4418"/> + <Point x="1333" y="4415"/> + <Point x="1346" y="4416"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>THEATRE ROYAL, ADELPHI.—New Grand +Comic Christmas Pantomime, Tower of London, and Burlesque +Boggar’s Opera.—THIS EVENING will be performed the Drama of +THE TOWER OF LONDON; or, Og, Gog, and Magog. Queen Mary. +Mrs. Yates.—After which, The Burlesque of THE BEGGAR’S +OPERA.—To conclude with the Grand Comic Christmas Pantomime, +called HARLEQUIN AND THE ENCHANTED FISH; or, the Geni +of the Branzen Bottle. Clown, Mr. Wieland; Harlequin, Mr. Ellar; +Pantaloon, Mr. King; Columbine. Miss Bullin.</Unicode></TextEquiv></TextRegion> + <SeparatorRegion id="r584"> + <Coords> + <Point x="1326" y="4603"/> + <Point x="1342" y="4603"/> + <Point x="1431" y="4600"/> + <Point x="1508" y="4596"/> + <Point x="1574" y="4595"/> + <Point x="1638" y="4593"/> + <Point x="1712" y="4591"/> + <Point x="1859" y="4588"/> + <Point x="1936" y="4587"/> + <Point x="2008" y="4586"/> + <Point x="2055" y="4585"/> + <Point x="2100" y="4585"/> + <Point x="2099" y="4607"/> + <Point x="2094" y="4608"/> + <Point x="2084" y="4610"/> + <Point x="1980" y="4610"/> + <Point x="1938" y="4611"/> + <Point x="1905" y="4613"/> + <Point x="1836" y="4613"/> + <Point x="1766" y="4615"/> + <Point x="1690" y="4616"/> + <Point x="1640" y="4617"/> + <Point x="1600" y="4617"/> + <Point x="1553" y="4620"/> + <Point x="1509" y="4621"/> + <Point x="1463" y="4623"/> + <Point x="1407" y="4624"/> + <Point x="1366" y="4627"/> + <Point x="1325" y="4627"/></Coords></SeparatorRegion> + <SeparatorRegion id="r585"> + <Coords> + <Point x="1327" y="4704"/> + <Point x="1358" y="4704"/> + <Point x="1384" y="4702"/> + <Point x="1436" y="4700"/> + <Point x="1487" y="4697"/> + <Point x="1528" y="4696"/> + <Point x="1569" y="4694"/> + <Point x="1599" y="4694"/> + <Point x="1644" y="4691"/> + <Point x="1711" y="4691"/> + <Point x="1736" y="4689"/> + <Point x="1801" y="4689"/> + <Point x="1863" y="4688"/> + <Point x="1911" y="4687"/> + <Point x="1969" y="4686"/> + <Point x="2008" y="4685"/> + <Point x="2058" y="4684"/> + <Point x="2096" y="4683"/> + <Point x="2096" y="4710"/> + <Point x="2070" y="4711"/> + <Point x="1966" y="4713"/> + <Point x="1876" y="4713"/> + <Point x="1705" y="4717"/> + <Point x="1592" y="4718"/> + <Point x="1522" y="4719"/> + <Point x="1444" y="4722"/> + <Point x="1376" y="4727"/> + <Point x="1328" y="4727"/></Coords></SeparatorRegion> + <SeparatorRegion id="r586"> + <Coords> + <Point x="1646" y="4788"/> + <Point x="1784" y="4788"/> + <Point x="1785" y="4800"/> + <Point x="1735" y="4803"/> + <Point x="1722" y="4806"/> + <Point x="1711" y="4806"/> + <Point x="1698" y="4802"/> + <Point x="1647" y="4800"/></Coords></SeparatorRegion> + <SeparatorRegion id="r587"> + <Coords> + <Point x="1645" y="4916"/> + <Point x="1645" y="4934"/> + <Point x="1788" y="4934"/> + <Point x="1788" y="4916"/></Coords></SeparatorRegion> + <SeparatorRegion id="r588"> + <Coords> + <Point x="1592" y="5738"/> + <Point x="1865" y="5733"/> + <Point x="1866" y="5747"/> + <Point x="1823" y="5757"/> + <Point x="1787" y="5757"/> + <Point x="1752" y="5759"/> + <Point x="1704" y="5761"/> + <Point x="1697" y="5759"/> + <Point x="1671" y="5759"/> + <Point x="1635" y="5761"/> + <Point x="1593" y="5755"/></Coords></SeparatorRegion> + <SeparatorRegion id="r589"> + <Coords> + <Point x="2071" y="447"/> + <Point x="2072" y="534"/> + <Point x="2077" y="749"/> + <Point x="2077" y="803"/> + <Point x="2080" y="1044"/> + <Point x="2081" y="1291"/> + <Point x="2081" y="1537"/> + <Point x="2083" y="1783"/> + <Point x="2085" y="2028"/> + <Point x="2090" y="2522"/> + <Point x="2097" y="3013"/> + <Point x="2098" y="3261"/> + <Point x="2099" y="3508"/> + <Point x="2102" y="3998"/> + <Point x="2109" y="4494"/> + <Point x="2114" y="4982"/> + <Point x="2119" y="5228"/> + <Point x="2123" y="5471"/> + <Point x="2130" y="5963"/> + <Point x="2143" y="6454"/> + <Point x="2156" y="6944"/> + <Point x="2169" y="7438"/> + <Point x="2175" y="7762"/> + <Point x="2189" y="7761"/> + <Point x="2186" y="7651"/> + <Point x="2178" y="7328"/> + <Point x="2175" y="7167"/> + <Point x="2167" y="6942"/> + <Point x="2161" y="6694"/> + <Point x="2156" y="6465"/> + <Point x="2141" y="5977"/> + <Point x="2140" y="5731"/> + <Point x="2136" y="5484"/> + <Point x="2132" y="5238"/> + <Point x="2128" y="4991"/> + <Point x="2124" y="4745"/> + <Point x="2121" y="4498"/> + <Point x="2120" y="4251"/> + <Point x="2116" y="4004"/> + <Point x="2114" y="3757"/> + <Point x="2113" y="3511"/> + <Point x="2111" y="3266"/> + <Point x="2110" y="3019"/> + <Point x="2107" y="2772"/> + <Point x="2104" y="2526"/> + <Point x="2102" y="2279"/> + <Point x="2099" y="2032"/> + <Point x="2097" y="1785"/> + <Point x="2093" y="1538"/> + <Point x="2092" y="1291"/> + <Point x="2091" y="1044"/> + <Point x="2088" y="798"/> + <Point x="2084" y="551"/> + <Point x="2083" y="446"/></Coords></SeparatorRegion> + <TextRegion id="r590" type="paragraph"> + <Coords> + <Point x="2088" y="461"/> + <Point x="2090" y="450"/> + <Point x="2134" y="450"/> + <Point x="2134" y="442"/> + <Point x="2151" y="442"/> + <Point x="2150" y="448"/> + <Point x="2290" y="447"/> + <Point x="2290" y="438"/> + <Point x="2319" y="438"/> + <Point x="2319" y="443"/> + <Point x="2415" y="440"/> + <Point x="2415" y="434"/> + <Point x="2448" y="433"/> + <Point x="2478" y="431"/> + <Point x="2543" y="430"/> + <Point x="2590" y="430"/> + <Point x="2637" y="427"/> + <Point x="2706" y="425"/> + <Point x="2710" y="424"/> + <Point x="2725" y="423"/> + <Point x="2832" y="420"/> + <Point x="2847" y="418"/> + <Point x="2867" y="418"/> + <Point x="2868" y="490"/> + <Point x="2871" y="573"/> + <Point x="2870" y="672"/> + <Point x="2874" y="798"/> + <Point x="2874" y="882"/> + <Point x="2873" y="975"/> + <Point x="2875" y="1055"/> + <Point x="2875" y="1106"/> + <Point x="2876" y="1252"/> + <Point x="2877" y="1332"/> + <Point x="2880" y="1442"/> + <Point x="2884" y="1508"/> + <Point x="2878" y="1556"/> + <Point x="2881" y="1640"/> + <Point x="2882" y="1723"/> + <Point x="2873" y="1729"/> + <Point x="2870" y="1773"/> + <Point x="2306" y="1787"/> + <Point x="2293" y="1786"/> + <Point x="2285" y="1795"/> + <Point x="2275" y="1794"/> + <Point x="2266" y="1788"/> + <Point x="2102" y="1791"/> + <Point x="2101" y="1763"/> + <Point x="2115" y="1752"/> + <Point x="2101" y="1741"/> + <Point x="2101" y="1716"/> + <Point x="2116" y="1708"/> + <Point x="2100" y="1697"/> + <Point x="2099" y="1658"/> + <Point x="2100" y="1615"/> + <Point x="2100" y="1577"/> + <Point x="2099" y="1485"/> + <Point x="2099" y="1410"/> + <Point x="2098" y="1266"/> + <Point x="2097" y="1173"/> + <Point x="2096" y="1016"/> + <Point x="2095" y="933"/> + <Point x="2093" y="769"/> + <Point x="2090" y="557"/> + <Point x="2089" y="498"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>such a convention, or if they did, that they could +execute it. The day has gone by when provinces +and population on the Rhine can be bargained away +or sold. The Rhenish provinces are at this moment +strongly German and Prussian, and under the pro‐ +tection of the united patriotism of the German race, +which will not see its patrimony or its importance +in Europe diminished. The French, we will be +bound to say, are not able to wrest a rood of land +from the Germans, now that the Germans +have got, like the French, popular senti‐ +ment, and a national feeling. Therefore Russia +has not the power to give away the Rhine. +Neither has France the power, any more than the +will, to give away Constantinople. Alliances of the +kind, therefore (alliances of conquest and partition), +are out of date, and out of possibility; and so are +coalition, except in defence of rights, and in opposi‐ +tion to absurd and arrogant pretensions. When +Count MOLE’S small coterie, and smaller organs, +then, menace us with Franco‑Russian alliance, we +know full well it is merely words they utter. When +the opposition papers of France tell us that the +Court and King of the FRENCH are leaning to +Russia, and that England had better take care of +itself, we laugh at the shallow manœuvre. We wish +sincerely to see a better understanding between +France and Russia, as between France and Europe; +but we cannot be in the least either jealous or +alarmed even at a whole volume of benevolent notes +addressed by Count NESSELRODE to the Tuile ries.</Unicode></TextEquiv></TextRegion> + <SeparatorRegion id="r591"> + <Coords> + <Point x="2352" y="1804"/> + <Point x="2435" y="1801"/> + <Point x="2518" y="1798"/> + <Point x="2628" y="1796"/> + <Point x="2627" y="1816"/> + <Point x="2616" y="1819"/> + <Point x="2599" y="1821"/> + <Point x="2553" y="1822"/> + <Point x="2508" y="1825"/> + <Point x="2458" y="1825"/> + <Point x="2411" y="1828"/> + <Point x="2356" y="1826"/></Coords></SeparatorRegion> + <SeparatorRegion id="r592"> + <Coords> + <Point x="2443" y="7464"/> + <Point x="2505" y="7465"/> + <Point x="2535" y="7466"/> + <Point x="2565" y="7464"/> + <Point x="2619" y="7463"/> + <Point x="2677" y="7460"/> + <Point x="2713" y="7460"/> + <Point x="2715" y="7483"/> + <Point x="2703" y="7484"/> + <Point x="2666" y="7486"/> + <Point x="2633" y="7488"/> + <Point x="2599" y="7487"/> + <Point x="2568" y="7488"/> + <Point x="2536" y="7487"/> + <Point x="2499" y="7487"/> + <Point x="2444" y="7486"/></Coords></SeparatorRegion> + <SeparatorRegion id="r593"> + <Coords> + <Point x="2872" y="417"/> + <Point x="2875" y="488"/> + <Point x="2876" y="568"/> + <Point x="2877" y="654"/> + <Point x="2877" y="724"/> + <Point x="2878" y="850"/> + <Point x="2880" y="947"/> + <Point x="2881" y="1114"/> + <Point x="2882" y="1266"/> + <Point x="2886" y="1494"/> + <Point x="2887" y="1506"/> + <Point x="2886" y="1524"/> + <Point x="2886" y="1580"/> + <Point x="2888" y="1821"/> + <Point x="2889" y="1866"/> + <Point x="2889" y="2066"/> + <Point x="2891" y="2128"/> + <Point x="2892" y="2167"/> + <Point x="2894" y="2179"/> + <Point x="2893" y="2202"/> + <Point x="2893" y="2221"/> + <Point x="2891" y="2283"/> + <Point x="2892" y="2342"/> + <Point x="2894" y="2432"/> + <Point x="2896" y="2572"/> + <Point x="2897" y="2659"/> + <Point x="2899" y="2836"/> + <Point x="2902" y="2977"/> + <Point x="2904" y="3180"/> + <Point x="2905" y="3231"/> + <Point x="2907" y="3271"/> + <Point x="2906" y="3283"/> + <Point x="2907" y="3498"/> + <Point x="2908" y="3592"/> + <Point x="2909" y="3838"/> + <Point x="2911" y="4043"/> + <Point x="2911" y="4090"/> + <Point x="2914" y="4276"/> + <Point x="2917" y="4466"/> + <Point x="2921" y="4742"/> + <Point x="2922" y="4936"/> + <Point x="2923" y="5008"/> + <Point x="2928" y="5276"/> + <Point x="2930" y="5556"/> + <Point x="2936" y="5818"/> + <Point x="2939" y="6002"/> + <Point x="2939" y="6155"/> + <Point x="2947" y="6425"/> + <Point x="2954" y="6686"/> + <Point x="2961" y="6993"/> + <Point x="2971" y="7326"/> + <Point x="2977" y="7712"/> + <Point x="2977" y="7736"/> + <Point x="2992" y="7737"/> + <Point x="2988" y="7700"/> + <Point x="2983" y="7424"/> + <Point x="2977" y="7229"/> + <Point x="2975" y="7095"/> + <Point x="2972" y="6959"/> + <Point x="2968" y="6822"/> + <Point x="2965" y="6662"/> + <Point x="2962" y="6519"/> + <Point x="2957" y="6321"/> + <Point x="2952" y="6182"/> + <Point x="2949" y="6015"/> + <Point x="2947" y="5863"/> + <Point x="2944" y="5669"/> + <Point x="2942" y="5527"/> + <Point x="2938" y="5288"/> + <Point x="2938" y="5194"/> + <Point x="2935" y="4921"/> + <Point x="2931" y="4662"/> + <Point x="2926" y="4391"/> + <Point x="2922" y="4082"/> + <Point x="2919" y="3793"/> + <Point x="2916" y="3472"/> + <Point x="2915" y="3158"/> + <Point x="2910" y="2841"/> + <Point x="2905" y="2524"/> + <Point x="2903" y="2203"/> + <Point x="2900" y="1891"/> + <Point x="2897" y="1594"/> + <Point x="2894" y="1277"/> + <Point x="2894" y="1035"/> + <Point x="2891" y="689"/> + <Point x="2886" y="419"/></Coords></SeparatorRegion> + <SeparatorRegion id="r594"> + <Coords> + <Point x="3207" y="6077"/> + <Point x="3293" y="6075"/> + <Point x="3415" y="6073"/> + <Point x="3482" y="6071"/> + <Point x="3482" y="6096"/> + <Point x="3467" y="6098"/> + <Point x="3443" y="6099"/> + <Point x="3421" y="6099"/> + <Point x="3387" y="6101"/> + <Point x="3321" y="6101"/> + <Point x="3294" y="6102"/> + <Point x="3255" y="6103"/> + <Point x="3220" y="6105"/> + <Point x="3208" y="6101"/></Coords></SeparatorRegion> + <TextRegion id="r595" type="paragraph"> + <Coords> + <Point x="2999" y="6536"/> + <Point x="3002" y="6530"/> + <Point x="3036" y="6530"/> + <Point x="3087" y="6529"/> + <Point x="3096" y="6529"/> + <Point x="3103" y="6533"/> + <Point x="3128" y="6532"/> + <Point x="3146" y="6531"/> + <Point x="3151" y="6531"/> + <Point x="3158" y="6530"/> + <Point x="3165" y="6529"/> + <Point x="3191" y="6526"/> + <Point x="3219" y="6526"/> + <Point x="3233" y="6525"/> + <Point x="3243" y="6529"/> + <Point x="3327" y="6530"/> + <Point x="3328" y="6528"/> + <Point x="3338" y="6528"/> + <Point x="3343" y="6531"/> + <Point x="3367" y="6530"/> + <Point x="3369" y="6527"/> + <Point x="3378" y="6527"/> + <Point x="3383" y="6530"/> + <Point x="3418" y="6530"/> + <Point x="3419" y="6526"/> + <Point x="3430" y="6526"/> + <Point x="3433" y="6529"/> + <Point x="3446" y="6526"/> + <Point x="3467" y="6525"/> + <Point x="3471" y="6522"/> + <Point x="3502" y="6522"/> + <Point x="3503" y="6525"/> + <Point x="3594" y="6521"/> + <Point x="3602" y="6515"/> + <Point x="3611" y="6516"/> + <Point x="3613" y="6519"/> + <Point x="3675" y="6519"/> + <Point x="3681" y="6513"/> + <Point x="3698" y="6513"/> + <Point x="3703" y="6515"/> + <Point x="3741" y="6516"/> + <Point x="3745" y="6533"/> + <Point x="3746" y="6565"/> + <Point x="3749" y="6582"/> + <Point x="3746" y="6595"/> + <Point x="3748" y="6699"/> + <Point x="3744" y="6704"/> + <Point x="3655" y="6707"/> + <Point x="3653" y="6738"/> + <Point x="3594" y="6739"/> + <Point x="3592" y="6747"/> + <Point x="3585" y="6746"/> + <Point x="3579" y="6741"/> + <Point x="3508" y="6742"/> + <Point x="3460" y="6744"/> + <Point x="3429" y="6748"/> + <Point x="3396" y="6749"/> + <Point x="3355" y="6752"/> + <Point x="3257" y="6749"/> + <Point x="3133" y="6749"/> + <Point x="3130" y="6753"/> + <Point x="3127" y="6755"/> + <Point x="3122" y="6755"/> + <Point x="3118" y="6750"/> + <Point x="3079" y="6751"/> + <Point x="3043" y="6751"/> + <Point x="3020" y="6752"/> + <Point x="3005" y="6753"/> + <Point x="2975" y="6753"/> + <Point x="2970" y="6565"/> + <Point x="2996" y="6552"/> + <Point x="2999" y="6535"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>The Austrian Observer, in its intelligence from Con‐ +stantinople of the 8th ult., states that the Porte, as well as +Admiral Stopford, had refused to ratify the convention of +Commodore Napier, who was considered to have gone +too far. At that date, however, the despatch from Lord +Palmerston, which was forwarded by Admiral Stopford to +Alexandria, was not known in the Turkish capital.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r597" type="paragraph"> + <Coords> + <Point x="3029" y="7725"/> + <Point x="3035" y="7708"/> + <Point x="3049" y="7707"/> + <Point x="3089" y="7706"/> + <Point x="3102" y="7705"/> + <Point x="3144" y="7705"/> + <Point x="3147" y="7704"/> + <Point x="3168" y="7704"/> + <Point x="3246" y="7705"/> + <Point x="3311" y="7708"/> + <Point x="3326" y="7703"/> + <Point x="3382" y="7703"/> + <Point x="3495" y="7701"/> + <Point x="3505" y="7694"/> + <Point x="3564" y="7693"/> + <Point x="3691" y="7693"/> + <Point x="3693" y="7688"/> + <Point x="3764" y="7695"/> + <Point x="3764" y="7721"/> + <Point x="3752" y="7722"/> + <Point x="3521" y="7731"/> + <Point x="3334" y="7737"/> + <Point x="3276" y="7737"/> + <Point x="3266" y="7742"/> + <Point x="3255" y="7741"/> + <Point x="3249" y="7737"/> + <Point x="3022" y="7738"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>Another letter says—“The storm of the 1st caused nu‐</Unicode></TextEquiv></TextRegion> + <SeparatorRegion id="r598"> + <Coords> + <Point x="3771" y="7723"/> + <Point x="3771" y="7595"/> + <Point x="3769" y="7435"/> + <Point x="3765" y="7263"/> + <Point x="3765" y="7175"/> + <Point x="3762" y="7025"/> + <Point x="3759" y="6941"/> + <Point x="3755" y="6753"/> + <Point x="3752" y="6641"/> + <Point x="3749" y="6421"/> + <Point x="3745" y="6253"/> + <Point x="3744" y="6119"/> + <Point x="3741" y="5907"/> + <Point x="3737" y="5702"/> + <Point x="3733" y="5438"/> + <Point x="3729" y="5196"/> + <Point x="3726" y="4962"/> + <Point x="3724" y="4737"/> + <Point x="3722" y="4499"/> + <Point x="3718" y="4231"/> + <Point x="3715" y="4013"/> + <Point x="3711" y="3718"/> + <Point x="3711" y="3464"/> + <Point x="3707" y="3272"/> + <Point x="3702" y="2971"/> + <Point x="3699" y="2670"/> + <Point x="3694" y="2387"/> + <Point x="3691" y="2086"/> + <Point x="3688" y="1880"/> + <Point x="3686" y="1741"/> + <Point x="3682" y="1408"/> + <Point x="3678" y="1078"/> + <Point x="3678" y="791"/> + <Point x="3676" y="450"/> + <Point x="3676" y="393"/> + <Point x="3686" y="396"/> + <Point x="3688" y="412"/> + <Point x="3688" y="642"/> + <Point x="3693" y="1276"/> + <Point x="3695" y="1550"/> + <Point x="3697" y="1778"/> + <Point x="3702" y="2090"/> + <Point x="3706" y="2356"/> + <Point x="3713" y="2967"/> + <Point x="3719" y="3355"/> + <Point x="3723" y="3618"/> + <Point x="3724" y="3883"/> + <Point x="3733" y="4450"/> + <Point x="3738" y="5052"/> + <Point x="3744" y="5488"/> + <Point x="3751" y="5866"/> + <Point x="3758" y="6392"/> + <Point x="3766" y="6756"/> + <Point x="3776" y="7172"/> + <Point x="3778" y="7418"/> + <Point x="3783" y="7666"/> + <Point x="3785" y="7725"/></Coords></SeparatorRegion> + <TextRegion id="r604" type="paragraph"> + <Coords> + <Point x="3752" y="6788"/> + <Point x="3750" y="6833"/> + <Point x="3751" y="6833"/> + <Point x="3751" y="6918"/> + <Point x="3752" y="6918"/> + <Point x="3752" y="6945"/> + <Point x="3753" y="6945"/> + <Point x="3753" y="6971"/> + <Point x="3754" y="6971"/> + <Point x="3754" y="6991"/> + <Point x="3755" y="6991"/> + <Point x="3755" y="7011"/> + <Point x="3756" y="7011"/> + <Point x="3756" y="7030"/> + <Point x="3757" y="7030"/> + <Point x="3757" y="7063"/> + <Point x="3758" y="7063"/> + <Point x="3758" y="7096"/> + <Point x="3759" y="7096"/> + <Point x="3759" y="7129"/> + <Point x="3760" y="7129"/> + <Point x="3760" y="7162"/> + <Point x="3761" y="7162"/> + <Point x="3760" y="7162"/> + <Point x="3760" y="7341"/> + <Point x="3761" y="7341"/> + <Point x="3760" y="7341"/> + <Point x="3760" y="7397"/> + <Point x="3761" y="7397"/> + <Point x="3761" y="7407"/> + <Point x="3762" y="7407"/> + <Point x="3762" y="7416"/> + <Point x="3763" y="7416"/> + <Point x="3763" y="7433"/> + <Point x="3764" y="7433"/> + <Point x="3764" y="7554"/> + <Point x="3765" y="7554"/> + <Point x="3765" y="7618"/> + <Point x="3766" y="7618"/> + <Point x="3766" y="7655"/> + <Point x="3712" y="7655"/> + <Point x="3712" y="7656"/> + <Point x="3673" y="7656"/> + <Point x="3673" y="7657"/> + <Point x="3634" y="7657"/> + <Point x="3634" y="7658"/> + <Point x="3595" y="7658"/> + <Point x="3595" y="7659"/> + <Point x="3574" y="7659"/> + <Point x="3574" y="7660"/> + <Point x="3554" y="7660"/> + <Point x="3554" y="7661"/> + <Point x="3533" y="7661"/> + <Point x="3533" y="7662"/> + <Point x="3513" y="7662"/> + <Point x="3513" y="7663"/> + <Point x="3492" y="7663"/> + <Point x="3492" y="7664"/> + <Point x="3472" y="7664"/> + <Point x="3472" y="7665"/> + <Point x="3452" y="7665"/> + <Point x="3452" y="7666"/> + <Point x="3414" y="7666"/> + <Point x="3414" y="7667"/> + <Point x="3376" y="7667"/> + <Point x="3376" y="7668"/> + <Point x="3338" y="7668"/> + <Point x="3338" y="7669"/> + <Point x="3337" y="7669"/> + <Point x="3337" y="7672"/> + <Point x="3336" y="7672"/> + <Point x="3336" y="7674"/> + <Point x="3335" y="7674"/> + <Point x="3335" y="7676"/> + <Point x="3334" y="7676"/> + <Point x="3334" y="7678"/> + <Point x="3334" y="7677"/> + <Point x="3328" y="7677"/> + <Point x="3328" y="7676"/> + <Point x="3322" y="7676"/> + <Point x="3322" y="7675"/> + <Point x="3317" y="7675"/> + <Point x="3317" y="7674"/> + <Point x="3314" y="7674"/> + <Point x="3314" y="7673"/> + <Point x="3312" y="7673"/> + <Point x="3312" y="7672"/> + <Point x="3309" y="7672"/> + <Point x="3309" y="7671"/> + <Point x="3307" y="7671"/> + <Point x="3307" y="7670"/> + <Point x="3304" y="7670"/> + <Point x="3304" y="7669"/> + <Point x="3274" y="7669"/> + <Point x="3274" y="7670"/> + <Point x="3247" y="7670"/> + <Point x="3247" y="7671"/> + <Point x="3245" y="7671"/> + <Point x="3245" y="7672"/> + <Point x="3244" y="7672"/> + <Point x="3244" y="7673"/> + <Point x="3243" y="7673"/> + <Point x="3243" y="7674"/> + <Point x="3241" y="7674"/> + <Point x="3241" y="7675"/> + <Point x="3240" y="7675"/> + <Point x="3240" y="7676"/> + <Point x="3239" y="7676"/> + <Point x="3239" y="7677"/> + <Point x="3228" y="7677"/> + <Point x="3228" y="7678"/> + <Point x="3227" y="7678"/> + <Point x="3227" y="7680"/> + <Point x="3226" y="7680"/> + <Point x="3226" y="7682"/> + <Point x="3225" y="7682"/> + <Point x="3225" y="7684"/> + <Point x="3224" y="7684"/> + <Point x="3224" y="7686"/> + <Point x="3223" y="7686"/> + <Point x="3223" y="7688"/> + <Point x="3222" y="7688"/> + <Point x="3222" y="7690"/> + <Point x="3221" y="7690"/> + <Point x="3221" y="7692"/> + <Point x="3218" y="7692"/> + <Point x="3218" y="7693"/> + <Point x="3216" y="7693"/> + <Point x="3216" y="7694"/> + <Point x="3213" y="7694"/> + <Point x="3213" y="7695"/> + <Point x="3211" y="7695"/> + <Point x="3211" y="7696"/> + <Point x="3208" y="7696"/> + <Point x="3208" y="7697"/> + <Point x="3206" y="7697"/> + <Point x="3206" y="7698"/> + <Point x="3205" y="7698"/> + <Point x="3205" y="7699"/> + <Point x="3187" y="7699"/> + <Point x="3187" y="7700"/> + <Point x="3083" y="7700"/> + <Point x="3083" y="7701"/> + <Point x="3054" y="7701"/> + <Point x="3054" y="7702"/> + <Point x="3040" y="7702"/> + <Point x="3040" y="7703"/> + <Point x="3026" y="7703"/> + <Point x="3026" y="7704"/> + <Point x="3012" y="7704"/> + <Point x="3012" y="7705"/> + <Point x="3012" y="7704"/> + <Point x="3005" y="7704"/> + <Point x="3005" y="7703"/> + <Point x="2999" y="7703"/> + <Point x="2999" y="7702"/> + <Point x="2993" y="7702"/> + <Point x="2993" y="7509"/> + <Point x="2992" y="7509"/> + <Point x="2992" y="7461"/> + <Point x="2991" y="7461"/> + <Point x="2991" y="7413"/> + <Point x="2990" y="7413"/> + <Point x="2990" y="7365"/> + <Point x="2989" y="7365"/> + <Point x="2989" y="7313"/> + <Point x="2988" y="7313"/> + <Point x="2988" y="7261"/> + <Point x="2987" y="7261"/> + <Point x="2987" y="7225"/> + <Point x="2986" y="7225"/> + <Point x="2986" y="7189"/> + <Point x="2985" y="7189"/> + <Point x="2985" y="7153"/> + <Point x="2984" y="7153"/> + <Point x="2984" y="7133"/> + <Point x="2983" y="7133"/> + <Point x="2983" y="7114"/> + <Point x="2982" y="7114"/> + <Point x="2982" y="7094"/> + <Point x="2981" y="7094"/> + <Point x="2981" y="7075"/> + <Point x="2980" y="7075"/> + <Point x="2980" y="6944"/> + <Point x="2979" y="6944"/> + <Point x="2979" y="6903"/> + <Point x="2978" y="6903"/> + <Point x="2978" y="6862"/> + <Point x="2977" y="6862"/> + <Point x="2977" y="6822"/> + <Point x="2976" y="6822"/> + <Point x="2978" y="6822"/> + <Point x="2978" y="6821"/> + <Point x="2980" y="6821"/> + <Point x="2980" y="6820"/> + <Point x="2981" y="6820"/> + <Point x="2981" y="6819"/> + <Point x="2983" y="6819"/> + <Point x="2983" y="6818"/> + <Point x="2985" y="6818"/> + <Point x="2985" y="6817"/> + <Point x="2986" y="6817"/> + <Point x="2986" y="6816"/> + <Point x="2988" y="6816"/> + <Point x="2988" y="6815"/> + <Point x="2989" y="6815"/> + <Point x="2989" y="6814"/> + <Point x="2991" y="6814"/> + <Point x="2991" y="6813"/> + <Point x="2993" y="6813"/> + <Point x="2993" y="6812"/> + <Point x="2994" y="6812"/> + <Point x="2994" y="6811"/> + <Point x="2996" y="6811"/> + <Point x="2996" y="6810"/> + <Point x="2997" y="6810"/> + <Point x="2997" y="6809"/> + <Point x="2998" y="6809"/> + <Point x="2998" y="6806"/> + <Point x="2999" y="6806"/> + <Point x="2999" y="6803"/> + <Point x="3000" y="6803"/> + <Point x="3000" y="6800"/> + <Point x="3001" y="6800"/> + <Point x="3002" y="6797"/> + <Point x="3001" y="6800"/> + <Point x="3011" y="6789"/> + <Point x="3014" y="6791"/> + <Point x="3017" y="6792"/> + <Point x="3031" y="6790"/> + <Point x="3038" y="6789"/> + <Point x="3043" y="6786"/> + <Point x="3043" y="6787"/> + <Point x="3065" y="6787"/> + <Point x="3085" y="6786"/> + <Point x="3091" y="6787"/> + <Point x="3103" y="6788"/> + <Point x="3112" y="6789"/> + <Point x="3160" y="6789"/> + <Point x="3170" y="6784"/> + <Point x="3168" y="6787"/> + <Point x="3222" y="6785"/> + <Point x="3226" y="6786"/> + <Point x="3256" y="6784"/> + <Point x="3256" y="6783"/> + <Point x="3259" y="6786"/> + <Point x="3260" y="6787"/> + <Point x="3263" y="6784"/> + <Point x="3263" y="6785"/> + <Point x="3267" y="6785"/> + <Point x="3267" y="6786"/> + <Point x="3277" y="6786"/> + <Point x="3277" y="6785"/> + <Point x="3285" y="6785"/> + <Point x="3285" y="6784"/> + <Point x="3296" y="6784"/> + <Point x="3294" y="6788"/> + <Point x="3309" y="6785"/> + <Point x="3309" y="6786"/> + <Point x="3325" y="6786"/> + <Point x="3325" y="6787"/> + <Point x="3340" y="6787"/> + <Point x="3340" y="6788"/> + <Point x="3356" y="6788"/> + <Point x="3356" y="6787"/> + <Point x="3370" y="6787"/> + <Point x="3370" y="6786"/> + <Point x="3384" y="6786"/> + <Point x="3384" y="6785"/> + <Point x="3398" y="6785"/> + <Point x="3398" y="6784"/> + <Point x="3412" y="6784"/> + <Point x="3412" y="6783"/> + <Point x="3426" y="6783"/> + <Point x="3426" y="6782"/> + <Point x="3440" y="6782"/> + <Point x="3440" y="6781"/> + <Point x="3501" y="6781"/> + <Point x="3501" y="6780"/> + <Point x="3509" y="6780"/> + <Point x="3509" y="6779"/> + <Point x="3517" y="6779"/> + <Point x="3517" y="6778"/> + <Point x="3525" y="6778"/> + <Point x="3525" y="6777"/> + <Point x="3532" y="6777"/> + <Point x="3532" y="6776"/> + <Point x="3532" y="6777"/> + <Point x="3533" y="6777"/> + <Point x="3533" y="6778"/> + <Point x="3534" y="6778"/> + <Point x="3534" y="6779"/> + <Point x="3536" y="6779"/> + <Point x="3536" y="6780"/> + <Point x="3537" y="6780"/> + <Point x="3537" y="6781"/> + <Point x="3538" y="6781"/> + <Point x="3538" y="6782"/> + <Point x="3549" y="6782"/> + <Point x="3549" y="6781"/> + <Point x="3550" y="6781"/> + <Point x="3550" y="6780"/> + <Point x="3551" y="6780"/> + <Point x="3551" y="6779"/> + <Point x="3552" y="6779"/> + <Point x="3552" y="6778"/> + <Point x="3553" y="6778"/> + <Point x="3553" y="6777"/> + <Point x="3570" y="6777"/> + <Point x="3570" y="6778"/> + <Point x="3572" y="6778"/> + <Point x="3572" y="6779"/> + <Point x="3574" y="6779"/> + <Point x="3574" y="6780"/> + <Point x="3576" y="6780"/> + <Point x="3576" y="6781"/> + <Point x="3577" y="6781"/> + <Point x="3577" y="6782"/> + <Point x="3581" y="6782"/> + <Point x="3581" y="6781"/> + <Point x="3583" y="6781"/> + <Point x="3583" y="6780"/> + <Point x="3585" y="6780"/> + <Point x="3585" y="6779"/> + <Point x="3587" y="6779"/> + <Point x="3587" y="6778"/> + <Point x="3602" y="6778"/> + <Point x="3602" y="6777"/> + <Point x="3617" y="6777"/> + <Point x="3617" y="6776"/> + <Point x="3632" y="6776"/> + <Point x="3632" y="6775"/> + <Point x="3747" y="6775"/> + <Point x="3752" y="6789"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>“We had a dreadful gale here on the 1st inst. Among +the known losses are the barque Emma, Captain Hudson, +loaded at Odessa with linseed and tallow, captain and all +hands perished; the schooner Robert Symms, of Ply‐ +mouth, loaded at Odessa with tallow, captain and three +men saved, four lost; the Russian commercial steamer +Neva or Emperor Nicholas, Captain Rogers, from Odessa, +with passengers and cargo, 13 of the crew and six pas‐ +sengers lost, the captain, first engineer, and four or the +crew, with four male and two female passengers +saved—these went on shore to the west and last of +the Boghaz. The Seri Pervas, Austrian commercial +steamer, left Constantinople just before the gale set in, +with 525 Turkish soldiers, for Beyrout. She drifted out +of her course, and was wrecked near the entrance of the +Gulf of Moudania: two soldiers washed off the deck, six +or eight frozen to death, and all the rest, including several +Austrian officers going to join the army in Syria, with the +crew, saved. Several ships are lost in the Bosphorus. +The Tahiri Bahiri is just put in from Syria, but there is +no time to learn what she brings before the departure of +the present. The Turks are displeased with the officious +interference of Commodore Napier. The Crescent +steamer, on her passage from Trebisond, was struck by a +sea, which carried twelve deck passengers overboard. +The Turkish steamer Zibaishi Zidgeiret, also from Tre‐ +bisond, had three passengers carried overboard and seven +frozen to death.”</Unicode></TextEquiv></TextRegion> + <TextRegion id="r605" type="paragraph"> + <Coords> + <Point x="3006" y="6757"/> + <Point x="3033" y="6758"/> + <Point x="3041" y="6764"/> + <Point x="3049" y="6758"/> + <Point x="3058" y="6758"/> + <Point x="3065" y="6761"/> + <Point x="3102" y="6759"/> + <Point x="3105" y="6757"/> + <Point x="3113" y="6757"/> + <Point x="3127" y="6759"/> + <Point x="3143" y="6757"/> + <Point x="3149" y="6752"/> + <Point x="3162" y="6755"/> + <Point x="3163" y="6759"/> + <Point x="3204" y="6759"/> + <Point x="3200" y="6752"/> + <Point x="3215" y="6753"/> + <Point x="3221" y="6755"/> + <Point x="3297" y="6756"/> + <Point x="3302" y="6754"/> + <Point x="3311" y="6756"/> + <Point x="3317" y="6759"/> + <Point x="3379" y="6758"/> + <Point x="3385" y="6755"/> + <Point x="3406" y="6755"/> + <Point x="3492" y="6750"/> + <Point x="3499" y="6747"/> + <Point x="3512" y="6747"/> + <Point x="3516" y="6750"/> + <Point x="3551" y="6749"/> + <Point x="3555" y="6745"/> + <Point x="3567" y="6745"/> + <Point x="3569" y="6749"/> + <Point x="3587" y="6752"/> + <Point x="3595" y="6752"/> + <Point x="3605" y="6744"/> + <Point x="3619" y="6741"/> + <Point x="3641" y="6742"/> + <Point x="3670" y="6745"/> + <Point x="3675" y="6738"/> + <Point x="3685" y="6736"/> + <Point x="3704" y="6736"/> + <Point x="3719" y="6743"/> + <Point x="3750" y="6751"/> + <Point x="3750" y="6761"/> + <Point x="3718" y="6764"/> + <Point x="3716" y="6770"/> + <Point x="3708" y="6770"/> + <Point x="3680" y="6772"/> + <Point x="3652" y="6771"/> + <Point x="3623" y="6772"/> + <Point x="3590" y="6773"/> + <Point x="3585" y="6776"/> + <Point x="3579" y="6778"/> + <Point x="3573" y="6773"/> + <Point x="3550" y="6773"/> + <Point x="3549" y="6778"/> + <Point x="3548" y="6779"/> + <Point x="3546" y="6780"/> + <Point x="3539" y="6780"/> + <Point x="3535" y="6775"/> + <Point x="3522" y="6775"/> + <Point x="3488" y="6777"/> + <Point x="3458" y="6777"/> + <Point x="3438" y="6779"/> + <Point x="3404" y="6781"/> + <Point x="3384" y="6782"/> + <Point x="3349" y="6785"/> + <Point x="3328" y="6784"/> + <Point x="3306" y="6783"/> + <Point x="3295" y="6782"/> + <Point x="3277" y="6782"/> + <Point x="3266" y="6783"/> + <Point x="3256" y="6782"/> + <Point x="3235" y="6782"/> + <Point x="3174" y="6783"/> + <Point x="3164" y="6782"/> + <Point x="3141" y="6783"/> + <Point x="3102" y="6785"/> + <Point x="3077" y="6784"/> + <Point x="3050" y="6784"/> + <Point x="3037" y="6785"/> + <Point x="3014" y="6787"/> + <Point x="3005" y="6783"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>Extract of a letter from Constantinople, 8th ult:—</Unicode></TextEquiv></TextRegion> + <TextRegion id="r612" type="paragraph"> + <Coords> + <Point x="4472" y="2315"/> + <Point x="4472" y="2318"/> + <Point x="4473" y="2320"/> + <Point x="4474" y="2320"/> + <Point x="4474" y="2322"/> + <Point x="4487" y="2322"/> + <Point x="4487" y="2323"/> + <Point x="4488" y="2323"/> + <Point x="4488" y="2324"/> + <Point x="4489" y="2324"/> + <Point x="4489" y="2325"/> + <Point x="4490" y="2325"/> + <Point x="4490" y="2342"/> + <Point x="4489" y="2342"/> + <Point x="4489" y="2343"/> + <Point x="4488" y="2343"/> + <Point x="4488" y="2344"/> + <Point x="4487" y="2344"/> + <Point x="4491" y="2349"/> + <Point x="4491" y="2404"/> + <Point x="4490" y="2404"/> + <Point x="4490" y="2405"/> + <Point x="4489" y="2405"/> + <Point x="4489" y="2406"/> + <Point x="4488" y="2406"/> + <Point x="4488" y="2407"/> + <Point x="4487" y="2407"/> + <Point x="4487" y="2408"/> + <Point x="4475" y="2408"/> + <Point x="4475" y="2410"/> + <Point x="4476" y="2410"/> + <Point x="4476" y="2411"/> + <Point x="4477" y="2411"/> + <Point x="4477" y="2412"/> + <Point x="4478" y="2412"/> + <Point x="4478" y="2413"/> + <Point x="4479" y="2413"/> + <Point x="4479" y="2414"/> + <Point x="4480" y="2414"/> + <Point x="4480" y="2415"/> + <Point x="4481" y="2415"/> + <Point x="4481" y="2416"/> + <Point x="4483" y="2416"/> + <Point x="4483" y="2417"/> + <Point x="4484" y="2417"/> + <Point x="4484" y="2418"/> + <Point x="4485" y="2418"/> + <Point x="4485" y="2419"/> + <Point x="4486" y="2419"/> + <Point x="4486" y="2420"/> + <Point x="4487" y="2420"/> + <Point x="4487" y="2421"/> + <Point x="4488" y="2421"/> + <Point x="4488" y="2422"/> + <Point x="4489" y="2422"/> + <Point x="4489" y="2437"/> + <Point x="4488" y="2437"/> + <Point x="4488" y="2439"/> + <Point x="4487" y="2439"/> + <Point x="4487" y="2440"/> + <Point x="4486" y="2440"/> + <Point x="4486" y="2441"/> + <Point x="4485" y="2441"/> + <Point x="4485" y="2442"/> + <Point x="4484" y="2442"/> + <Point x="4484" y="2443"/> + <Point x="4483" y="2443"/> + <Point x="4483" y="2445"/> + <Point x="4482" y="2445"/> + <Point x="4482" y="2446"/> + <Point x="4481" y="2446"/> + <Point x="4481" y="2447"/> + <Point x="4480" y="2447"/> + <Point x="4480" y="2448"/> + <Point x="4479" y="2448"/> + <Point x="4479" y="2450"/> + <Point x="4494" y="2449"/> + <Point x="4493" y="2470"/> + <Point x="4493" y="2503"/> + <Point x="4497" y="2542"/> + <Point x="4494" y="2569"/> + <Point x="4366" y="2573"/> + <Point x="4361" y="2606"/> + <Point x="4279" y="2607"/> + <Point x="4054" y="2618"/> + <Point x="4038" y="2618"/> + <Point x="4032" y="2625"/> + <Point x="4019" y="2625"/> + <Point x="4015" y="2619"/> + <Point x="3715" y="2630"/> + <Point x="3713" y="2514"/> + <Point x="3713" y="2464"/> + <Point x="3714" y="2414"/> + <Point x="3714" y="2371"/> + <Point x="3719" y="2367"/> + <Point x="3722" y="2367"/> + <Point x="3722" y="2366"/> + <Point x="3723" y="2366"/> + <Point x="3723" y="2365"/> + <Point x="3724" y="2365"/> + <Point x="3724" y="2364"/> + <Point x="3725" y="2364"/> + <Point x="3725" y="2363"/> + <Point x="3726" y="2363"/> + <Point x="3726" y="2362"/> + <Point x="3727" y="2362"/> + <Point x="3727" y="2361"/> + <Point x="3728" y="2361"/> + <Point x="3728" y="2360"/> + <Point x="3729" y="2360"/> + <Point x="3729" y="2359"/> + <Point x="3730" y="2359"/> + <Point x="3730" y="2358"/> + <Point x="3731" y="2358"/> + <Point x="3731" y="2357"/> + <Point x="3732" y="2357"/> + <Point x="3732" y="2356"/> + <Point x="3733" y="2356"/> + <Point x="3733" y="2355"/> + <Point x="3734" y="2355"/> + <Point x="3734" y="2354"/> + <Point x="3736" y="2354"/> + <Point x="3736" y="2353"/> + <Point x="3737" y="2353"/> + <Point x="3737" y="2352"/> + <Point x="3738" y="2352"/> + <Point x="3738" y="2351"/> + <Point x="3739" y="2351"/> + <Point x="3739" y="2350"/> + <Point x="3740" y="2350"/> + <Point x="3740" y="2349"/> + <Point x="3741" y="2349"/> + <Point x="3741" y="2348"/> + <Point x="3742" y="2348"/> + <Point x="3742" y="2347"/> + <Point x="3743" y="2347"/> + <Point x="3743" y="2346"/> + <Point x="3744" y="2346"/> + <Point x="3744" y="2345"/> + <Point x="3745" y="2345"/> + <Point x="3745" y="2344"/> + <Point x="3746" y="2344"/> + <Point x="3746" y="2343"/> + <Point x="3747" y="2343"/> + <Point x="3747" y="2342"/> + <Point x="3748" y="2342"/> + <Point x="3748" y="2338"/> + <Point x="3783" y="2338"/> + <Point x="3816" y="2346"/> + <Point x="3816" y="2345"/> + <Point x="3829" y="2345"/> + <Point x="3829" y="2344"/> + <Point x="3830" y="2344"/> + <Point x="3830" y="2343"/> + <Point x="3831" y="2343"/> + <Point x="3831" y="2340"/> + <Point x="3832" y="2340"/> + <Point x="3834" y="2336"/> + <Point x="3855" y="2336"/> + <Point x="3873" y="2343"/> + <Point x="3873" y="2344"/> + <Point x="3896" y="2344"/> + <Point x="3896" y="2334"/> + <Point x="3926" y="2334"/> + <Point x="3945" y="2339"/> + <Point x="3962" y="2339"/> + <Point x="3962" y="2338"/> + <Point x="3964" y="2338"/> + <Point x="3964" y="2337"/> + <Point x="3966" y="2337"/> + <Point x="3966" y="2336"/> + <Point x="3968" y="2336"/> + <Point x="3968" y="2335"/> + <Point x="3971" y="2335"/> + <Point x="3971" y="2334"/> + <Point x="3973" y="2334"/> + <Point x="3973" y="2333"/> + <Point x="3975" y="2333"/> + <Point x="3975" y="2332"/> + <Point x="3977" y="2332"/> + <Point x="3977" y="2331"/> + <Point x="3992" y="2331"/> + <Point x="3992" y="2334"/> + <Point x="3993" y="2334"/> + <Point x="3993" y="2336"/> + <Point x="3994" y="2336"/> + <Point x="3994" y="2338"/> + <Point x="4009" y="2338"/> + <Point x="4009" y="2334"/> + <Point x="4010" y="2334"/> + <Point x="4010" y="2330"/> + <Point x="4024" y="2330"/> + <Point x="4024" y="2331"/> + <Point x="4028" y="2331"/> + <Point x="4028" y="2332"/> + <Point x="4031" y="2332"/> + <Point x="4031" y="2333"/> + <Point x="4034" y="2333"/> + <Point x="4034" y="2334"/> + <Point x="4038" y="2334"/> + <Point x="4038" y="2335"/> + <Point x="4041" y="2335"/> + <Point x="4041" y="2336"/> + <Point x="4044" y="2336"/> + <Point x="4044" y="2337"/> + <Point x="4059" y="2337"/> + <Point x="4059" y="2336"/> + <Point x="4074" y="2336"/> + <Point x="4074" y="2335"/> + <Point x="4090" y="2327"/> + <Point x="4096" y="2327"/> + <Point x="4097" y="2331"/> + <Point x="4147" y="2334"/> + <Point x="4147" y="2331"/> + <Point x="4148" y="2331"/> + <Point x="4148" y="2328"/> + <Point x="4149" y="2328"/> + <Point x="4149" y="2326"/> + <Point x="4164" y="2326"/> + <Point x="4164" y="2327"/> + <Point x="4191" y="2327"/> + <Point x="4193" y="2325"/> + <Point x="4194" y="2324"/> + <Point x="4221" y="2324"/> + <Point x="4240" y="2331"/> + <Point x="4240" y="2330"/> + <Point x="4256" y="2330"/> + <Point x="4256" y="2329"/> + <Point x="4284" y="2329"/> + <Point x="4284" y="2328"/> + <Point x="4305" y="2328"/> + <Point x="4305" y="2327"/> + <Point x="4331" y="2327"/> + <Point x="4331" y="2326"/> + <Point x="4346" y="2326"/> + <Point x="4346" y="2323"/> + <Point x="4347" y="2323"/> + <Point x="4347" y="2320"/> + <Point x="4348" y="2320"/> + <Point x="4348" y="2318"/> + <Point x="4358" y="2318"/> + <Point x="4358" y="2319"/> + <Point x="4362" y="2319"/> + <Point x="4362" y="2320"/> + <Point x="4377" y="2317"/> + <Point x="4393" y="2317"/> + <Point x="4393" y="2321"/> + <Point x="4394" y="2321"/> + <Point x="4394" y="2324"/> + <Point x="4410" y="2324"/> + <Point x="4410" y="2323"/> + <Point x="4412" y="2323"/> + <Point x="4412" y="2322"/> + <Point x="4414" y="2322"/> + <Point x="4414" y="2321"/> + <Point x="4415" y="2321"/> + <Point x="4415" y="2320"/> + <Point x="4417" y="2320"/> + <Point x="4417" y="2319"/> + <Point x="4419" y="2319"/> + <Point x="4419" y="2316"/> + <Point x="4439" y="2316"/> + <Point x="4457" y="2315"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>After the King had reviewed the crews of the Belle +Poule and Favourite at the Tuileries, on Saturday, his +Majesty gave to the commander of the Favourite 3,000f. +to be distributed amongst the men of the two ships. +Each sailor will have 7f. 50c. for his share. The Prince +de Joinville, after the reception, informed the men, that +each of them, without distinction, would receive a gold +medal to be struck in commemoration of the transfer of +the remains of the Emperor from Saint Helena.</Unicode></TextEquiv></TextRegion> + <SeparatorRegion id="r615"> + <Coords> + <Point x="4081" y="3070"/> + <Point x="4081" y="3082"/> + <Point x="4151" y="3082"/> + <Point x="4151" y="3070"/></Coords></SeparatorRegion> + <TextRegion id="r617" type="heading"> + <Coords> + <Point x="4307" y="3083"/> + <Point x="4306" y="3085"/> + <Point x="4307" y="3085"/> + <Point x="4307" y="3086"/> + <Point x="4308" y="3086"/> + <Point x="4308" y="3087"/> + <Point x="4309" y="3087"/> + <Point x="4309" y="3088"/> + <Point x="4327" y="3088"/> + <Point x="4327" y="3087"/> + <Point x="4358" y="3087"/> + <Point x="4358" y="3086"/> + <Point x="4364" y="3086"/> + <Point x="4364" y="3085"/> + <Point x="4367" y="3081"/> + <Point x="4401" y="3081"/> + <Point x="4406" y="3097"/> + <Point x="4406" y="3098"/> + <Point x="4407" y="3099"/> + <Point x="4408" y="3099"/> + <Point x="4408" y="3100"/> + <Point x="4409" y="3100"/> + <Point x="4409" y="3107"/> + <Point x="4408" y="3107"/> + <Point x="4408" y="3109"/> + <Point x="4407" y="3109"/> + <Point x="4407" y="3110"/> + <Point x="4341" y="3110"/> + <Point x="4341" y="3111"/> + <Point x="4273" y="3111"/> + <Point x="4273" y="3112"/> + <Point x="4272" y="3112"/> + <Point x="4272" y="3114"/> + <Point x="4271" y="3114"/> + <Point x="4271" y="3116"/> + <Point x="4270" y="3116"/> + <Point x="4270" y="3117"/> + <Point x="4261" y="3117"/> + <Point x="4261" y="3113"/> + <Point x="4256" y="3113"/> + <Point x="4256" y="3114"/> + <Point x="4219" y="3114"/> + <Point x="4219" y="3115"/> + <Point x="4181" y="3115"/> + <Point x="4181" y="3116"/> + <Point x="4143" y="3116"/> + <Point x="4143" y="3117"/> + <Point x="4105" y="3117"/> + <Point x="4105" y="3118"/> + <Point x="4067" y="3118"/> + <Point x="4067" y="3119"/> + <Point x="4066" y="3119"/> + <Point x="4066" y="3120"/> + <Point x="4064" y="3121"/> + <Point x="4060" y="3123"/> + <Point x="4054" y="3123"/> + <Point x="4054" y="3122"/> + <Point x="4053" y="3122"/> + <Point x="4053" y="3121"/> + <Point x="4052" y="3121"/> + <Point x="4052" y="3120"/> + <Point x="4049" y="3120"/> + <Point x="4049" y="3121"/> + <Point x="4009" y="3121"/> + <Point x="4009" y="3122"/> + <Point x="3969" y="3122"/> + <Point x="3969" y="3123"/> + <Point x="3929" y="3123"/> + <Point x="3929" y="3124"/> + <Point x="3889" y="3124"/> + <Point x="3889" y="3125"/> + <Point x="3849" y="3125"/> + <Point x="3849" y="3126"/> + <Point x="3811" y="3126"/> + <Point x="3811" y="3125"/> + <Point x="3810" y="3125"/> + <Point x="3810" y="3124"/> + <Point x="3809" y="3124"/> + <Point x="3809" y="3123"/> + <Point x="3804" y="3123"/> + <Point x="3804" y="3122"/> + <Point x="3803" y="3122"/> + <Point x="3803" y="3121"/> + <Point x="3804" y="3121"/> + <Point x="3804" y="3119"/> + <Point x="3805" y="3119"/> + <Point x="3805" y="3116"/> + <Point x="3806" y="3116"/> + <Point x="3806" y="3114"/> + <Point x="3807" y="3114"/> + <Point x="3807" y="3111"/> + <Point x="3808" y="3111"/> + <Point x="3808" y="3109"/> + <Point x="3809" y="3109"/> + <Point x="3809" y="3106"/> + <Point x="3810" y="3106"/> + <Point x="3810" y="3104"/> + <Point x="3811" y="3104"/> + <Point x="3811" y="3101"/> + <Point x="3812" y="3101"/> + <Point x="3812" y="3099"/> + <Point x="3813" y="3099"/> + <Point x="3813" y="3097"/> + <Point x="3834" y="3097"/> + <Point x="3834" y="3096"/> + <Point x="3919" y="3095"/> + <Point x="3921" y="3095"/> + <Point x="3921" y="3094"/> + <Point x="3940" y="3094"/> + <Point x="3940" y="3105"/> + <Point x="3971" y="3094"/> + <Point x="3989" y="3094"/> + <Point x="3989" y="3096"/> + <Point x="3990" y="3096"/> + <Point x="3990" y="3097"/> + <Point x="3991" y="3097"/> + <Point x="3991" y="3098"/> + <Point x="4031" y="3098"/> + <Point x="4031" y="3097"/> + <Point x="4040" y="3097"/> + <Point x="4040" y="3098"/> + <Point x="4058" y="3096"/> + <Point x="4056" y="3101"/> + <Point x="4057" y="3107"/> + <Point x="4066" y="3107"/> + <Point x="4066" y="3105"/> + <Point x="4067" y="3105"/> + <Point x="4067" y="3104"/> + <Point x="4068" y="3104"/> + <Point x="4068" y="3103"/> + <Point x="4069" y="3103"/> + <Point x="4069" y="3102"/> + <Point x="4070" y="3102"/> + <Point x="4070" y="3101"/> + <Point x="4071" y="3101"/> + <Point x="4071" y="3100"/> + <Point x="4072" y="3100"/> + <Point x="4072" y="3099"/> + <Point x="4073" y="3099"/> + <Point x="4073" y="3097"/> + <Point x="4074" y="3097"/> + <Point x="4074" y="3096"/> + <Point x="4075" y="3096"/> + <Point x="4075" y="3095"/> + <Point x="4076" y="3095"/> + <Point x="4076" y="3094"/> + <Point x="4077" y="3094"/> + <Point x="4077" y="3093"/> + <Point x="4078" y="3093"/> + <Point x="4078" y="3092"/> + <Point x="4079" y="3092"/> + <Point x="4079" y="3091"/> + <Point x="4080" y="3091"/> + <Point x="4080" y="3090"/> + <Point x="4106" y="3090"/> + <Point x="4106" y="3091"/> + <Point x="4107" y="3091"/> + <Point x="4107" y="3092"/> + <Point x="4108" y="3092"/> + <Point x="4108" y="3093"/> + <Point x="4109" y="3093"/> + <Point x="4109" y="3094"/> + <Point x="4110" y="3094"/> + <Point x="4110" y="3095"/> + <Point x="4130" y="3095"/> + <Point x="4130" y="3094"/> + <Point x="4171" y="3094"/> + <Point x="4171" y="3093"/> + <Point x="4205" y="3093"/> + <Point x="4205" y="3092"/> + <Point x="4224" y="3092"/> + <Point x="4224" y="3091"/> + <Point x="4242" y="3091"/> + <Point x="4242" y="3090"/> + <Point x="4259" y="3090"/> + <Point x="4259" y="3093"/> + <Point x="4260" y="3093"/> + <Point x="4260" y="3096"/> + <Point x="4261" y="3096"/> + <Point x="4261" y="3099"/> + <Point x="4262" y="3099"/> + <Point x="4262" y="3101"/> + <Point x="4270" y="3101"/> + <Point x="4270" y="3099"/> + <Point x="4271" y="3099"/> + <Point x="4271" y="3098"/> + <Point x="4272" y="3098"/> + <Point x="4272" y="3097"/> + <Point x="4273" y="3097"/> + <Point x="4273" y="3096"/> + <Point x="4274" y="3096"/> + <Point x="4274" y="3095"/> + <Point x="4275" y="3095"/> + <Point x="4275" y="3094"/> + <Point x="4276" y="3094"/> + <Point x="4276" y="3093"/> + <Point x="4277" y="3093"/> + <Point x="4277" y="3092"/> + <Point x="4278" y="3092"/> + <Point x="4278" y="3091"/> + <Point x="4279" y="3091"/> + <Point x="4279" y="3090"/> + <Point x="4280" y="3090"/> + <Point x="4280" y="3089"/> + <Point x="4281" y="3089"/> + <Point x="4279" y="3088"/> + <Point x="4283" y="3083"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>BOURSE—PARIS, WEDNESDAY, DEC. 30.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r642" type="paragraph"> + <Coords> + <Point x="3751" y="3156"/> + <Point x="3751" y="3129"/> + <Point x="3920" y="3132"/> + <Point x="3928" y="3126"/> + <Point x="3951" y="3126"/> + <Point x="3950" y="3131"/> + <Point x="4055" y="3129"/> + <Point x="4060" y="3125"/> + <Point x="4067" y="3122"/> + <Point x="4094" y="3122"/> + <Point x="4188" y="3119"/> + <Point x="4242" y="3117"/> + <Point x="4248" y="3117"/> + <Point x="4249" y="3122"/> + <Point x="4291" y="3121"/> + <Point x="4293" y="3114"/> + <Point x="4306" y="3114"/> + <Point x="4306" y="3120"/> + <Point x="4424" y="3116"/> + <Point x="4426" y="3109"/> + <Point x="4504" y="3110"/> + <Point x="4505" y="3210"/> + <Point x="4509" y="3450"/> + <Point x="4508" y="3528"/> + <Point x="4329" y="3534"/> + <Point x="4324" y="3560"/> + <Point x="4322" y="3562"/> + <Point x="4195" y="3564"/> + <Point x="4177" y="3565"/> + <Point x="4166" y="3566"/> + <Point x="4093" y="3567"/> + <Point x="4083" y="3566"/> + <Point x="4078" y="3573"/> + <Point x="4077" y="3575"/> + <Point x="4069" y="3574"/> + <Point x="4065" y="3569"/> + <Point x="3809" y="3576"/> + <Point x="3729" y="3577"/> + <Point x="3726" y="3477"/> + <Point x="3726" y="3381"/> + <Point x="3723" y="3276"/> + <Point x="3723" y="3166"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>HALF PAST THREE.—The market has been very brisk, +and much business done. Public opinion seems to strengthen +towards expectations of continuance of peace. For the Ac- +count, the Three per Cents. opened at 76f. 60c., at which +they close, after having been 76f. 90c.; a rise of 10c. The +Five per Cents. opened at 110f. 70c., advanced to 110f. 90c., +dropped to 110f. 60c., and close at 110f. 70c.; a rise of +20c. For Money, the Three per Cents. and Five per Cents. +are 35c. higher. Bank of France, and Belgian Bank Shares, +and Belgian Five per Cents. are as yesterday. Belgian New +Loan † lower. Belgian Three per Cents. for the Account, +69f. 35c., and 69f. 15c. Spanish Active, from 25f. declined +to 24�f., with little business done; a fall of 1/8. Passive as +yesterday. Neapolitan Bonds are 30c. higher. Roman +have not altered. Railway Shares unaltered.</Unicode></TextEquiv></TextRegion> + <TableRegion id="r644"> + <Coords> + <Point x="4067" y="3627"/> + <Point x="4079" y="3576"/> + <Point x="4083" y="3570"/> + <Point x="4183" y="3569"/> + <Point x="4184" y="3567"/> + <Point x="4275" y="3567"/> + <Point x="4327" y="3565"/> + <Point x="4443" y="3560"/> + <Point x="4492" y="3560"/> + <Point x="4509" y="3617"/> + <Point x="4510" y="3620"/> + <Point x="4509" y="3682"/> + <Point x="4508" y="3687"/> + <Point x="4477" y="3696"/> + <Point x="4478" y="3735"/> + <Point x="4495" y="3739"/> + <Point x="4498" y="3761"/> + <Point x="4510" y="3767"/> + <Point x="4510" y="3790"/> + <Point x="4492" y="3794"/> + <Point x="4496" y="3814"/> + <Point x="4495" y="3947"/> + <Point x="4260" y="3952"/> + <Point x="4061" y="3957"/> + <Point x="3832" y="3963"/> + <Point x="3734" y="3964"/> + <Point x="3731" y="3834"/> + <Point x="3818" y="3832"/> + <Point x="3824" y="3763"/> + <Point x="3730" y="3764"/> + <Point x="3730" y="3705"/> + <Point x="3818" y="3705"/> + <Point x="3818" y="3656"/> + <Point x="3727" y="3657"/> + <Point x="3730" y="3627"/></Coords></TableRegion> + <TableRegion id="r645"> + <Coords> + <Point x="3735" y="3995"/> + <Point x="3909" y="3994"/> + <Point x="4068" y="3992"/> + <Point x="4075" y="3989"/> + <Point x="4109" y="3988"/> + <Point x="4195" y="3985"/> + <Point x="4227" y="3985"/> + <Point x="4312" y="3984"/> + <Point x="4318" y="3981"/> + <Point x="4476" y="3977"/> + <Point x="4478" y="3999"/> + <Point x="4510" y="4003"/> + <Point x="4510" y="4028"/> + <Point x="4478" y="4028"/> + <Point x="4475" y="4130"/> + <Point x="4400" y="4134"/> + <Point x="4272" y="4137"/> + <Point x="4076" y="4141"/> + <Point x="4054" y="4143"/> + <Point x="3923" y="4146"/> + <Point x="3736" y="4150"/> + <Point x="3735" y="4055"/> + <Point x="3734" y="4013"/></Coords></TableRegion> + <TableRegion id="r646"> + <Coords> + <Point x="3736" y="4183"/> + <Point x="3916" y="4180"/> + <Point x="4070" y="4178"/> + <Point x="4076" y="4177"/> + <Point x="4126" y="4176"/> + <Point x="4141" y="4175"/> + <Point x="4147" y="4175"/> + <Point x="4193" y="4174"/> + <Point x="4198" y="4172"/> + <Point x="4280" y="4172"/> + <Point x="4369" y="4167"/> + <Point x="4509" y="4165"/> + <Point x="4511" y="4173"/> + <Point x="4510" y="4188"/> + <Point x="4510" y="4190"/> + <Point x="4478" y="4191"/> + <Point x="4477" y="4268"/> + <Point x="4438" y="4271"/> + <Point x="4280" y="4274"/> + <Point x="4067" y="4279"/> + <Point x="3938" y="4285"/> + <Point x="3850" y="4284"/> + <Point x="3848" y="4291"/> + <Point x="3833" y="4290"/> + <Point x="3829" y="4285"/> + <Point x="3736" y="4288"/> + <Point x="3735" y="4198"/></Coords></TableRegion> + <SeparatorRegion id="r647"> + <Coords> + <Point x="3990" y="4289"/> + <Point x="3990" y="4310"/> + <Point x="4258" y="4305"/> + <Point x="4259" y="4282"/> + <Point x="4203" y="4283"/></Coords></SeparatorRegion> + <SeparatorRegion id="r648"> + <Coords> + <Point x="3994" y="4631"/> + <Point x="3994" y="4652"/> + <Point x="4125" y="4650"/> + <Point x="4266" y="4647"/> + <Point x="4265" y="4622"/></Coords></SeparatorRegion> + <SeparatorRegion id="r649"> + <Coords> + <Point x="3996" y="4844"/> + <Point x="3996" y="4868"/> + <Point x="4266" y="4868"/> + <Point x="4267" y="4840"/></Coords></SeparatorRegion> + <SeparatorRegion id="r650"> + <Coords> + <Point x="4479" y="362"/> + <Point x="4481" y="580"/> + <Point x="4481" y="693"/> + <Point x="4483" y="938"/> + <Point x="4484" y="1213"/> + <Point x="4484" y="1361"/> + <Point x="4487" y="1621"/> + <Point x="4489" y="1779"/> + <Point x="4494" y="2068"/> + <Point x="4496" y="2201"/> + <Point x="4500" y="2504"/> + <Point x="4503" y="2605"/> + <Point x="4505" y="2879"/> + <Point x="4509" y="3025"/> + <Point x="4513" y="3341"/> + <Point x="4512" y="3432"/> + <Point x="4514" y="3558"/> + <Point x="4516" y="3641"/> + <Point x="4517" y="3792"/> + <Point x="4516" y="3838"/> + <Point x="4519" y="4062"/> + <Point x="4519" y="4187"/> + <Point x="4524" y="4495"/> + <Point x="4525" y="4756"/> + <Point x="4531" y="4987"/> + <Point x="4532" y="5065"/> + <Point x="4533" y="5152"/> + <Point x="4536" y="5439"/> + <Point x="4537" y="5573"/> + <Point x="4542" y="5872"/> + <Point x="4547" y="6154"/> + <Point x="4547" y="6301"/> + <Point x="4554" y="6545"/> + <Point x="4556" y="6705"/> + <Point x="4562" y="6995"/> + <Point x="4563" y="7093"/> + <Point x="4565" y="7417"/> + <Point x="4570" y="7713"/> + <Point x="4583" y="7707"/> + <Point x="4579" y="7441"/> + <Point x="4577" y="7376"/> + <Point x="4573" y="6986"/> + <Point x="4566" y="6587"/> + <Point x="4560" y="6296"/> + <Point x="4558" y="6166"/> + <Point x="4561" y="6073"/> + <Point x="4556" y="5915"/> + <Point x="4552" y="5760"/> + <Point x="4548" y="5446"/> + <Point x="4546" y="5341"/> + <Point x="4542" y="4941"/> + <Point x="4536" y="4539"/> + <Point x="4531" y="4152"/> + <Point x="4529" y="3764"/> + <Point x="4525" y="3385"/> + <Point x="4519" y="3006"/> + <Point x="4515" y="2630"/> + <Point x="4509" y="2250"/> + <Point x="4501" y="1856"/> + <Point x="4498" y="1445"/> + <Point x="4494" y="1038"/> + <Point x="4492" y="631"/> + <Point x="4494" y="363"/></Coords></SeparatorRegion> + <TextRegion id="r651" type="heading"> + <Coords> + <Point x="4529" y="360"/> + <Point x="4605" y="355"/> + <Point x="4766" y="347"/> + <Point x="4887" y="341"/> + <Point x="5114" y="332"/> + <Point x="5240" y="326"/> + <Point x="5248" y="328"/> + <Point x="5249" y="360"/> + <Point x="5017" y="369"/> + <Point x="4863" y="375"/> + <Point x="4660" y="388"/> + <Point x="4529" y="395"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>MONEY MARKET AND CITY NEWS.</Unicode></TextEquiv></TextRegion> + <SeparatorRegion id="r652"> + <Coords> + <Point x="4853" y="383"/> + <Point x="4853" y="400"/> + <Point x="4932" y="400"/> + <Point x="4932" y="383"/></Coords></SeparatorRegion> + <TextRegion id="r654" type="heading"> + <Coords> + <Point x="4995" y="404"/> + <Point x="4998" y="425"/> + <Point x="5003" y="425"/> + <Point x="5000" y="428"/> + <Point x="5002" y="429"/> + <Point x="5001" y="434"/> + <Point x="5000" y="434"/> + <Point x="5000" y="440"/> + <Point x="4973" y="440"/> + <Point x="4973" y="441"/> + <Point x="4943" y="441"/> + <Point x="4943" y="442"/> + <Point x="4914" y="442"/> + <Point x="4914" y="443"/> + <Point x="4884" y="443"/> + <Point x="4884" y="444"/> + <Point x="4855" y="444"/> + <Point x="4855" y="445"/> + <Point x="4825" y="445"/> + <Point x="4825" y="446"/> + <Point x="4796" y="446"/> + <Point x="4796" y="447"/> + <Point x="4772" y="447"/> + <Point x="4773" y="447"/> + <Point x="4773" y="443"/> + <Point x="4774" y="443"/> + <Point x="4774" y="440"/> + <Point x="4775" y="440"/> + <Point x="4775" y="436"/> + <Point x="4776" y="436"/> + <Point x="4776" y="433"/> + <Point x="4777" y="433"/> + <Point x="4777" y="429"/> + <Point x="4776" y="416"/> + <Point x="4804" y="416"/> + <Point x="4804" y="415"/> + <Point x="4806" y="415"/> + <Point x="4806" y="414"/> + <Point x="4833" y="414"/> + <Point x="4833" y="413"/> + <Point x="4835" y="413"/> + <Point x="4835" y="412"/> + <Point x="4865" y="412"/> + <Point x="4865" y="411"/> + <Point x="4890" y="410"/> + <Point x="4912" y="409"/> + <Point x="4941" y="409"/> + <Point x="4941" y="408"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>THURSDAY.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r657" type="paragraph"> + <Coords> + <Point x="4530" y="496"/> + <Point x="4533" y="460"/> + <Point x="4771" y="452"/> + <Point x="4860" y="449"/> + <Point x="4903" y="446"/> + <Point x="4920" y="446"/> + <Point x="5023" y="443"/> + <Point x="5084" y="435"/> + <Point x="5285" y="430"/> + <Point x="5287" y="533"/> + <Point x="5289" y="636"/> + <Point x="5290" y="821"/> + <Point x="5290" y="951"/> + <Point x="5291" y="1132"/> + <Point x="5290" y="1312"/> + <Point x="5283" y="1328"/> + <Point x="5262" y="1325"/> + <Point x="5259" y="1357"/> + <Point x="5257" y="1360"/> + <Point x="5175" y="1364"/> + <Point x="4929" y="1375"/> + <Point x="4730" y="1383"/> + <Point x="4608" y="1388"/> + <Point x="4601" y="1398"/> + <Point x="4591" y="1398"/> + <Point x="4586" y="1389"/> + <Point x="4501" y="1391"/> + <Point x="4501" y="1253"/> + <Point x="4500" y="1116"/> + <Point x="4499" y="880"/> + <Point x="4498" y="615"/> + <Point x="4497" y="500"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>Our correspondent in Coventry will no doubt +reply to the letter we have published to‑day, on the +subject of the Bank averages and exchanges, from +the “Author of Reflections on the Currency.” We +suspect, however, that the latter will discover that +he has mistaken the principles on which he supposes +that our Coventry correspondent founded his calcu- +lations. Had the “Author of Reflections on the +Currency” paid proper attention to the short ex- +planation which we gave of the matter, he must +have seen that in the first instance our correspondent’s +results were not deduced from the averages pub- +lished in the Gazette, but that they were derived +from the “Weekly Statements,” published in the +Appendix to the report of the committee on banks +of issue. These very important tables are given +under two separate forms, the first entitled “Amount +of Notes, from 6 March, 1832, to 31 March, 1840.” +afterwards carried down “to 30 June, 1840,” and +the other as “weekly statement of the liabilities +and assets” from March, 1832, ending at March, +1840. It is only after the period when these tables +terminate, that the aid of the Gazette returns seems +to have been required. Thus the averages for the +months of May and June were obtained from the +weekly returns for these two months as follows:—</Unicode></TextEquiv></TextRegion> + <TableRegion id="r658"> + <Coords> + <Point x="4504" y="1416"/> + <Point x="4734" y="1416"/> + <Point x="4734" y="1386"/> + <Point x="4759" y="1385"/> + <Point x="4804" y="1383"/> + <Point x="4891" y="1380"/> + <Point x="4981" y="1376"/> + <Point x="5055" y="1373"/> + <Point x="5125" y="1369"/> + <Point x="5196" y="1366"/> + <Point x="5265" y="1362"/> + <Point x="5284" y="1362"/> + <Point x="5277" y="1389"/> + <Point x="5264" y="1391"/> + <Point x="5268" y="1602"/> + <Point x="5270" y="1635"/> + <Point x="5281" y="1637"/> + <Point x="5279" y="1652"/> + <Point x="5268" y="1652"/> + <Point x="5270" y="1831"/> + <Point x="5268" y="1919"/> + <Point x="5176" y="1923"/> + <Point x="5014" y="1929"/> + <Point x="5013" y="1931"/> + <Point x="4917" y="1934"/> + <Point x="4776" y="1939"/> + <Point x="4775" y="1916"/> + <Point x="4565" y="1922"/> + <Point x="4558" y="1814"/> + <Point x="4577" y="1717"/> + <Point x="4505" y="1717"/> + <Point x="4507" y="1685"/> + <Point x="4554" y="1682"/> + <Point x="4565" y="1594"/> + <Point x="4573" y="1452"/> + <Point x="4503" y="1450"/></Coords></TableRegion> + <TableRegion id="r662"> + <Coords> + <Point x="4639" y="2445"/> + <Point x="4780" y="2446"/> + <Point x="4857" y="2439"/> + <Point x="5164" y="2428"/> + <Point x="5306" y="2423"/> + <Point x="5310" y="2527"/> + <Point x="5309" y="2587"/> + <Point x="5311" y="2675"/> + <Point x="5208" y="2679"/> + <Point x="5051" y="2685"/> + <Point x="4874" y="2690"/> + <Point x="4669" y="2694"/> + <Point x="4664" y="2703"/> + <Point x="4640" y="2702"/> + <Point x="4637" y="2708"/> + <Point x="4625" y="2708"/> + <Point x="4625" y="2703"/> + <Point x="4546" y="2704"/> + <Point x="4546" y="2650"/></Coords></TableRegion> + <SeparatorRegion id="r663"> + <Coords> + <Point x="4947" y="6274"/> + <Point x="4950" y="6428"/> + <Point x="4960" y="6428"/> + <Point x="4957" y="6287"/> + <Point x="4957" y="6273"/></Coords></SeparatorRegion> + <TextRegion id="r664" type="heading"> + <Coords> + <Point x="4840" y="6428"/> + <Point x="4948" y="6427"/> + <Point x="4950" y="6429"/> + <Point x="4962" y="6429"/> + <Point x="4963" y="6427"/> + <Point x="5062" y="6427"/> + <Point x="5069" y="6441"/> + <Point x="5068" y="6448"/> + <Point x="5067" y="6449"/> + <Point x="4967" y="6449"/> + <Point x="4869" y="6452"/> + <Point x="4842" y="6452"/> + <Point x="4841" y="6450"/> + <Point x="4839" y="6434"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>FOREIGN FUNDS.</Unicode></TextEquiv></TextRegion> + <SeparatorRegion id="r665"> + <Coords> + <Point x="4954" y="6451"/> + <Point x="4954" y="6581"/> + <Point x="4955" y="6625"/> + <Point x="4964" y="6625"/> + <Point x="4963" y="6570"/> + <Point x="4964" y="6495"/> + <Point x="4963" y="6470"/> + <Point x="4962" y="6451"/></Coords></SeparatorRegion> + <TextRegion id="r667" type="paragraph"> + <Coords> + <Point x="4952" y="6655"/> + <Point x="4952" y="6677"/> + <Point x="4951" y="6677"/> + <Point x="4951" y="6678"/> + <Point x="4950" y="6678"/> + <Point x="4950" y="6679"/> + <Point x="4949" y="6679"/> + <Point x="4949" y="6680"/> + <Point x="4932" y="6680"/> + <Point x="4932" y="6679"/> + <Point x="4912" y="6679"/> + <Point x="4912" y="6680"/> + <Point x="4906" y="6680"/> + <Point x="4906" y="6681"/> + <Point x="4901" y="6681"/> + <Point x="4899" y="6680"/> + <Point x="4868" y="6679"/> + <Point x="4868" y="6678"/> + <Point x="4851" y="6678"/> + <Point x="4851" y="6679"/> + <Point x="4842" y="6679"/> + <Point x="4842" y="6680"/> + <Point x="4817" y="6680"/> + <Point x="4817" y="6678"/> + <Point x="4804" y="6678"/> + <Point x="4804" y="6679"/> + <Point x="4803" y="6679"/> + <Point x="4803" y="6680"/> + <Point x="4800" y="6682"/> + <Point x="4800" y="6701"/> + <Point x="4801" y="6701"/> + <Point x="4801" y="6703"/> + <Point x="4802" y="6703"/> + <Point x="4802" y="6704"/> + <Point x="4803" y="6704"/> + <Point x="4803" y="6706"/> + <Point x="4804" y="6706"/> + <Point x="4804" y="6708"/> + <Point x="4805" y="6708"/> + <Point x="4805" y="6709"/> + <Point x="4806" y="6709"/> + <Point x="4806" y="6711"/> + <Point x="4807" y="6711"/> + <Point x="4807" y="6713"/> + <Point x="4808" y="6713"/> + <Point x="4808" y="6714"/> + <Point x="4809" y="6714"/> + <Point x="4809" y="6716"/> + <Point x="4810" y="6716"/> + <Point x="4810" y="6718"/> + <Point x="4811" y="6718"/> + <Point x="4811" y="6719"/> + <Point x="4812" y="6719"/> + <Point x="4812" y="6721"/> + <Point x="4813" y="6721"/> + <Point x="4813" y="6722"/> + <Point x="4840" y="6722"/> + <Point x="4840" y="6723"/> + <Point x="4841" y="6723"/> + <Point x="4841" y="6724"/> + <Point x="4842" y="6724"/> + <Point x="4846" y="6747"/> + <Point x="4828" y="6746"/> + <Point x="4828" y="6748"/> + <Point x="4829" y="6748"/> + <Point x="4829" y="6749"/> + <Point x="4830" y="6749"/> + <Point x="4830" y="6764"/> + <Point x="4829" y="6764"/> + <Point x="4829" y="6768"/> + <Point x="4860" y="6768"/> + <Point x="4860" y="6764"/> + <Point x="4905" y="6765"/> + <Point x="4949" y="6765"/> + <Point x="4949" y="6766"/> + <Point x="4950" y="6766"/> + <Point x="4950" y="6767"/> + <Point x="4951" y="6767"/> + <Point x="4951" y="6768"/> + <Point x="4952" y="6768"/> + <Point x="4952" y="6788"/> + <Point x="4951" y="6788"/> + <Point x="4951" y="6789"/> + <Point x="4950" y="6789"/> + <Point x="4950" y="6790"/> + <Point x="4949" y="6790"/> + <Point x="4949" y="6791"/> + <Point x="4934" y="6791"/> + <Point x="4934" y="6824"/> + <Point x="4933" y="6824"/> + <Point x="4933" y="6825"/> + <Point x="4930" y="6825"/> + <Point x="4927" y="6826"/> + <Point x="4924" y="6827"/> + <Point x="4924" y="6828"/> + <Point x="4921" y="6828"/> + <Point x="4921" y="6829"/> + <Point x="4918" y="6829"/> + <Point x="4918" y="6830"/> + <Point x="4915" y="6830"/> + <Point x="4915" y="6831"/> + <Point x="4878" y="6832"/> + <Point x="4869" y="6832"/> + <Point x="4868" y="6833"/> + <Point x="4860" y="6833"/> + <Point x="4812" y="6834"/> + <Point x="4812" y="6836"/> + <Point x="4811" y="6836"/> + <Point x="4811" y="6838"/> + <Point x="4810" y="6838"/> + <Point x="4810" y="6839"/> + <Point x="4800" y="6839"/> + <Point x="4800" y="6837"/> + <Point x="4799" y="6837"/> + <Point x="4799" y="6836"/> + <Point x="4798" y="6836"/> + <Point x="4798" y="6835"/> + <Point x="4775" y="6835"/> + <Point x="4775" y="6836"/> + <Point x="4735" y="6836"/> + <Point x="4735" y="6837"/> + <Point x="4696" y="6837"/> + <Point x="4696" y="6838"/> + <Point x="4662" y="6838"/> + <Point x="4662" y="6839"/> + <Point x="4648" y="6839"/> + <Point x="4648" y="6840"/> + <Point x="4637" y="6840"/> + <Point x="4637" y="6839"/> + <Point x="4621" y="6839"/> + <Point x="4621" y="6840"/> + <Point x="4608" y="6840"/> + <Point x="4608" y="6841"/> + <Point x="4596" y="6841"/> + <Point x="4596" y="6842"/> + <Point x="4583" y="6842"/> + <Point x="4583" y="6841"/> + <Point x="4582" y="6841"/> + <Point x="4582" y="6840"/> + <Point x="4581" y="6840"/> + <Point x="4581" y="6839"/> + <Point x="4580" y="6839"/> + <Point x="4580" y="6817"/> + <Point x="4579" y="6817"/> + <Point x="4579" y="6816"/> + <Point x="4578" y="6816"/> + <Point x="4578" y="6754"/> + <Point x="4576" y="6728"/> + <Point x="4576" y="6660"/> + <Point x="4594" y="6661"/> + <Point x="4595" y="6663"/> + <Point x="4607" y="6665"/> + <Point x="4607" y="6666"/> + <Point x="4617" y="6666"/> + <Point x="4617" y="6664"/> + <Point x="4618" y="6664"/> + <Point x="4618" y="6662"/> + <Point x="4626" y="6662"/> + <Point x="4626" y="6664"/> + <Point x="4627" y="6664"/> + <Point x="4627" y="6665"/> + <Point x="4639" y="6665"/> + <Point x="4639" y="6664"/> + <Point x="4663" y="6664"/> + <Point x="4663" y="6663"/> + <Point x="4665" y="6663"/> + <Point x="4665" y="6662"/> + <Point x="4666" y="6662"/> + <Point x="4666" y="6661"/> + <Point x="4668" y="6661"/> + <Point x="4668" y="6660"/> + <Point x="4670" y="6660"/> + <Point x="4670" y="6659"/> + <Point x="4671" y="6659"/> + <Point x="4671" y="6658"/> + <Point x="4687" y="6658"/> + <Point x="4701" y="6663"/> + <Point x="4701" y="6662"/> + <Point x="4728" y="6662"/> + <Point x="4728" y="6660"/> + <Point x="4729" y="6660"/> + <Point x="4729" y="6658"/> + <Point x="4739" y="6657"/> + <Point x="4743" y="6657"/> + <Point x="4744" y="6660"/> + <Point x="4757" y="6662"/> + <Point x="4757" y="6661"/> + <Point x="4769" y="6661"/> + <Point x="4769" y="6660"/> + <Point x="4771" y="6660"/> + <Point x="4771" y="6659"/> + <Point x="4772" y="6656"/> + <Point x="4790" y="6656"/> + <Point x="4792" y="6659"/> + <Point x="4793" y="6659"/> + <Point x="4793" y="6660"/> + <Point x="4803" y="6656"/> + <Point x="4816" y="6656"/> + <Point x="4817" y="6659"/> + <Point x="4828" y="6659"/> + <Point x="4828" y="6660"/> + <Point x="4843" y="6660"/> + <Point x="4844" y="6659"/> + <Point x="4844" y="6658"/> + <Point x="4842" y="6655"/> + <Point x="4853" y="6656"/> + <Point x="4853" y="6659"/> + <Point x="4898" y="6659"/> + <Point x="4898" y="6662"/> + <Point x="4899" y="6662"/> + <Point x="4899" y="6665"/> + <Point x="4900" y="6665"/> + <Point x="4900" y="6667"/> + <Point x="4908" y="6667"/> + <Point x="4908" y="6666"/> + <Point x="4909" y="6666"/> + <Point x="4909" y="6665"/> + <Point x="4910" y="6665"/> + <Point x="4910" y="6664"/> + <Point x="4911" y="6664"/> + <Point x="4911" y="6663"/> + <Point x="4912" y="6663"/> + <Point x="4912" y="6662"/> + <Point x="4913" y="6662"/> + <Point x="4913" y="6661"/> + <Point x="4915" y="6661"/> + <Point x="4915" y="6660"/> + <Point x="4916" y="6660"/> + <Point x="4916" y="6659"/> + <Point x="4917" y="6659"/> + <Point x="4917" y="6658"/> + <Point x="4918" y="6658"/> + <Point x="4918" y="6657"/> + <Point x="4919" y="6657"/> + <Point x="4919" y="6656"/> + <Point x="4920" y="6656"/> + <Point x="4920" y="6655"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>Eastern Counties Debentures, 4 7/8 +Great Western, 9231 +Ditto New, 52 +Ditto Fihs, 10 7/8 ¾ 11 +Hull and Solby, 42½ 3 +Lond. and Brighton, 44 3¾ 4½ ¼ +London and Blackwall, 18¼ ½ +London and Birmingham, 171</Unicode></TextEquiv></TextRegion> + <TextRegion id="r669" type="paragraph"> + <Coords> + <Point x="4984" y="6829"/> + <Point x="5021" y="6829"/> + <Point x="5021" y="6828"/> + <Point x="5036" y="6828"/> + <Point x="5036" y="6829"/> + <Point x="5050" y="6829"/> + <Point x="5050" y="6828"/> + <Point x="5074" y="6828"/> + <Point x="5073" y="6842"/> + <Point x="5083" y="6842"/> + <Point x="5082" y="6852"/> + <Point x="5058" y="6852"/> + <Point x="5057" y="6851"/> + <Point x="4920" y="6853"/> + <Point x="4849" y="6853"/> + <Point x="4845" y="6835"/> + <Point x="4865" y="6834"/> + <Point x="4873" y="6833"/> + <Point x="4917" y="6833"/> + <Point x="4917" y="6832"/> + <Point x="4958" y="6832"/> + <Point x="4963" y="6840"/> + <Point x="4972" y="6830"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>MISCELLANEOUS.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r671" type="paragraph"> + <Coords> + <Point x="4826" y="6854"/> + <Point x="4826" y="6857"/> + <Point x="4827" y="6857"/> + <Point x="4827" y="6859"/> + <Point x="4853" y="6859"/> + <Point x="4853" y="6855"/> + <Point x="4864" y="6855"/> + <Point x="4864" y="6858"/> + <Point x="4865" y="6858"/> + <Point x="4865" y="6860"/> + <Point x="4866" y="6860"/> + <Point x="4866" y="6862"/> + <Point x="4867" y="6862"/> + <Point x="4867" y="6864"/> + <Point x="4868" y="6864"/> + <Point x="4868" y="6866"/> + <Point x="4877" y="6866"/> + <Point x="4877" y="6865"/> + <Point x="4879" y="6865"/> + <Point x="4879" y="6864"/> + <Point x="4881" y="6864"/> + <Point x="4881" y="6863"/> + <Point x="4882" y="6863"/> + <Point x="4882" y="6862"/> + <Point x="4884" y="6862"/> + <Point x="4884" y="6861"/> + <Point x="4886" y="6861"/> + <Point x="4886" y="6860"/> + <Point x="4887" y="6860"/> + <Point x="4887" y="6859"/> + <Point x="4889" y="6859"/> + <Point x="4889" y="6858"/> + <Point x="4891" y="6858"/> + <Point x="4891" y="6857"/> + <Point x="4892" y="6857"/> + <Point x="4892" y="6856"/> + <Point x="4914" y="6856"/> + <Point x="4914" y="6876"/> + <Point x="4875" y="6881"/> + <Point x="4875" y="6882"/> + <Point x="4869" y="6882"/> + <Point x="4869" y="6880"/> + <Point x="4868" y="6880"/> + <Point x="4868" y="6879"/> + <Point x="4867" y="6879"/> + <Point x="4867" y="6878"/> + <Point x="4852" y="6878"/> + <Point x="4852" y="6879"/> + <Point x="4826" y="6879"/> + <Point x="4826" y="6880"/> + <Point x="4783" y="6880"/> + <Point x="4783" y="6881"/> + <Point x="4751" y="6881"/> + <Point x="4751" y="6882"/> + <Point x="4699" y="6882"/> + <Point x="4699" y="6883"/> + <Point x="4578" y="6885"/> + <Point x="4577" y="6861"/> + <Point x="4589" y="6861"/> + <Point x="4596" y="6865"/> + <Point x="4623" y="6865"/> + <Point x="4623" y="6862"/> + <Point x="4624" y="6862"/> + <Point x="4624" y="6859"/> + <Point x="4635" y="6859"/> + <Point x="4666" y="6862"/> + <Point x="4668" y="6861"/> + <Point x="4670" y="6860"/> + <Point x="4674" y="6859"/> + <Point x="4674" y="6858"/> + <Point x="4706" y="6858"/> + <Point x="4706" y="6860"/> + <Point x="4707" y="6860"/> + <Point x="4707" y="6861"/> + <Point x="4708" y="6861"/> + <Point x="4708" y="6862"/> + <Point x="4721" y="6862"/> + <Point x="4721" y="6861"/> + <Point x="4722" y="6861"/> + <Point x="4722" y="6860"/> + <Point x="4723" y="6860"/> + <Point x="4723" y="6859"/> + <Point x="4731" y="6859"/> + <Point x="4731" y="6860"/> + <Point x="4737" y="6860"/> + <Point x="4737" y="6861"/> + <Point x="4752" y="6861"/> + <Point x="4752" y="6859"/> + <Point x="4753" y="6859"/> + <Point x="4753" y="6858"/> + <Point x="4760" y="6858"/> + <Point x="4760" y="6860"/> + <Point x="4773" y="6860"/> + <Point x="4773" y="6861"/> + <Point x="4784" y="6861"/> + <Point x="4784" y="6859"/> + <Point x="4785" y="6859"/> + <Point x="4785" y="6857"/> + <Point x="4786" y="6857"/> + <Point x="4786" y="6855"/> + <Point x="4811" y="6855"/> + <Point x="4811" y="6854"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>London Joint stock Bank, 13</Unicode></TextEquiv></TextRegion> + <TextRegion id="r675" type="paragraph"> + <Coords> + <Point x="5021" y="6854"/> + <Point x="5017" y="6856"/> + <Point x="5047" y="6857"/> + <Point x="5047" y="6856"/> + <Point x="5051" y="6856"/> + <Point x="5051" y="6853"/> + <Point x="5108" y="6853"/> + <Point x="5115" y="6855"/> + <Point x="5115" y="6856"/> + <Point x="5133" y="6856"/> + <Point x="5133" y="6852"/> + <Point x="5179" y="6852"/> + <Point x="5178" y="6856"/> + <Point x="5179" y="6856"/> + <Point x="5179" y="6857"/> + <Point x="5192" y="6857"/> + <Point x="5192" y="6856"/> + <Point x="5193" y="6856"/> + <Point x="5193" y="6855"/> + <Point x="5194" y="6855"/> + <Point x="5195" y="6852"/> + <Point x="5207" y="6852"/> + <Point x="5233" y="6857"/> + <Point x="5233" y="6859"/> + <Point x="5234" y="6859"/> + <Point x="5234" y="6861"/> + <Point x="5235" y="6861"/> + <Point x="5235" y="6863"/> + <Point x="5236" y="6863"/> + <Point x="5236" y="6865"/> + <Point x="5242" y="6865"/> + <Point x="5242" y="6864"/> + <Point x="5243" y="6864"/> + <Point x="5243" y="6863"/> + <Point x="5244" y="6863"/> + <Point x="5244" y="6862"/> + <Point x="5245" y="6862"/> + <Point x="5245" y="6861"/> + <Point x="5246" y="6861"/> + <Point x="5246" y="6860"/> + <Point x="5247" y="6860"/> + <Point x="5247" y="6859"/> + <Point x="5248" y="6859"/> + <Point x="5248" y="6858"/> + <Point x="5249" y="6858"/> + <Point x="5249" y="6857"/> + <Point x="5250" y="6853"/> + <Point x="5274" y="6853"/> + <Point x="5274" y="6878"/> + <Point x="5261" y="6878"/> + <Point x="5261" y="6877"/> + <Point x="5248" y="6877"/> + <Point x="5248" y="6878"/> + <Point x="5244" y="6878"/> + <Point x="5244" y="6879"/> + <Point x="5241" y="6879"/> + <Point x="5241" y="6880"/> + <Point x="5237" y="6880"/> + <Point x="5237" y="6879"/> + <Point x="5235" y="6879"/> + <Point x="5235" y="6878"/> + <Point x="5194" y="6878"/> + <Point x="5194" y="6877"/> + <Point x="5178" y="6877"/> + <Point x="5178" y="6878"/> + <Point x="5151" y="6878"/> + <Point x="5151" y="6877"/> + <Point x="5069" y="6877"/> + <Point x="5069" y="6876"/> + <Point x="5043" y="6876"/> + <Point x="5043" y="6877"/> + <Point x="4993" y="6877"/> + <Point x="4993" y="6878"/> + <Point x="4975" y="6878"/> + <Point x="4975" y="6866"/> + <Point x="4974" y="6866"/> + <Point x="4973" y="6854"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>Union Bank of London, 10</Unicode></TextEquiv></TextRegion> + <SeparatorRegion id="r677"> + <Coords> + <Point x="4969" y="6879"/> + <Point x="4961" y="6879"/> + <Point x="4961" y="6854"/> + <Point x="4969" y="6854"/></Coords></SeparatorRegion> + <TextRegion id="r679" type="paragraph"> + <Coords> + <Point x="4985" y="6654"/> + <Point x="4985" y="6656"/> + <Point x="4986" y="6656"/> + <Point x="4986" y="6657"/> + <Point x="4987" y="6657"/> + <Point x="4987" y="6658"/> + <Point x="5003" y="6658"/> + <Point x="5003" y="6657"/> + <Point x="5015" y="6657"/> + <Point x="5015" y="6656"/> + <Point x="5016" y="6656"/> + <Point x="5016" y="6655"/> + <Point x="5017" y="6655"/> + <Point x="5017" y="6654"/> + <Point x="5029" y="6654"/> + <Point x="5029" y="6655"/> + <Point x="5038" y="6655"/> + <Point x="5038" y="6656"/> + <Point x="5059" y="6656"/> + <Point x="5059" y="6657"/> + <Point x="5073" y="6657"/> + <Point x="5073" y="6655"/> + <Point x="5074" y="6655"/> + <Point x="5074" y="6652"/> + <Point x="5116" y="6652"/> + <Point x="5118" y="6655"/> + <Point x="5148" y="6656"/> + <Point x="5150" y="6661"/> + <Point x="5151" y="6663"/> + <Point x="5159" y="6665"/> + <Point x="5159" y="6664"/> + <Point x="5160" y="6664"/> + <Point x="5160" y="6663"/> + <Point x="5161" y="6663"/> + <Point x="5161" y="6662"/> + <Point x="5162" y="6662"/> + <Point x="5162" y="6661"/> + <Point x="5163" y="6661"/> + <Point x="5163" y="6660"/> + <Point x="5164" y="6660"/> + <Point x="5164" y="6659"/> + <Point x="5165" y="6659"/> + <Point x="5165" y="6658"/> + <Point x="5167" y="6652"/> + <Point x="5223" y="6652"/> + <Point x="5223" y="6655"/> + <Point x="5224" y="6655"/> + <Point x="5224" y="6656"/> + <Point x="5236" y="6656"/> + <Point x="5236" y="6657"/> + <Point x="5247" y="6657"/> + <Point x="5249" y="6654"/> + <Point x="5305" y="6654"/> + <Point x="5308" y="6657"/> + <Point x="5308" y="6674"/> + <Point x="5307" y="6674"/> + <Point x="5307" y="6675"/> + <Point x="5306" y="6675"/> + <Point x="5306" y="6676"/> + <Point x="5305" y="6676"/> + <Point x="5305" y="6677"/> + <Point x="5295" y="6677"/> + <Point x="5295" y="6676"/> + <Point x="5281" y="6676"/> + <Point x="5281" y="6677"/> + <Point x="5279" y="6677"/> + <Point x="5279" y="6678"/> + <Point x="5277" y="6678"/> + <Point x="5277" y="6679"/> + <Point x="5275" y="6679"/> + <Point x="5275" y="6680"/> + <Point x="5270" y="6680"/> + <Point x="5270" y="6678"/> + <Point x="5269" y="6678"/> + <Point x="5269" y="6677"/> + <Point x="5247" y="6677"/> + <Point x="5232" y="6686"/> + <Point x="5232" y="6696"/> + <Point x="5259" y="6696"/> + <Point x="5328" y="6697"/> + <Point x="5328" y="6696"/> + <Point x="5329" y="6696"/> + <Point x="5329" y="6695"/> + <Point x="5349" y="6695"/> + <Point x="5349" y="6723"/> + <Point x="5329" y="6723"/> + <Point x="5329" y="6722"/> + <Point x="5328" y="6722"/> + <Point x="5328" y="6721"/> + <Point x="5302" y="6721"/> + <Point x="5302" y="6722"/> + <Point x="5298" y="6722"/> + <Point x="5298" y="6723"/> + <Point x="5291" y="6723"/> + <Point x="5290" y="6720"/> + <Point x="5290" y="6719"/> + <Point x="5270" y="6719"/> + <Point x="5270" y="6720"/> + <Point x="5232" y="6720"/> + <Point x="5232" y="6721"/> + <Point x="5207" y="6721"/> + <Point x="5207" y="6720"/> + <Point x="5200" y="6720"/> + <Point x="5200" y="6719"/> + <Point x="5178" y="6719"/> + <Point x="5178" y="6720"/> + <Point x="5164" y="6720"/> + <Point x="5164" y="6721"/> + <Point x="5154" y="6721"/> + <Point x="5154" y="6720"/> + <Point x="5147" y="6720"/> + <Point x="5151" y="6740"/> + <Point x="5177" y="6740"/> + <Point x="5185" y="6745"/> + <Point x="5185" y="6746"/> + <Point x="5191" y="6746"/> + <Point x="5191" y="6744"/> + <Point x="5190" y="6744"/> + <Point x="5190" y="6743"/> + <Point x="5189" y="6743"/> + <Point x="5189" y="6742"/> + <Point x="5188" y="6742"/> + <Point x="5204" y="6742"/> + <Point x="5204" y="6744"/> + <Point x="5205" y="6744"/> + <Point x="5205" y="6745"/> + <Point x="5240" y="6745"/> + <Point x="5240" y="6748"/> + <Point x="5241" y="6748"/> + <Point x="5241" y="6750"/> + <Point x="5242" y="6750"/> + <Point x="5242" y="6752"/> + <Point x="5243" y="6752"/> + <Point x="5243" y="6754"/> + <Point x="5251" y="6754"/> + <Point x="5251" y="6752"/> + <Point x="5252" y="6752"/> + <Point x="5252" y="6751"/> + <Point x="5253" y="6751"/> + <Point x="5253" y="6750"/> + <Point x="5254" y="6750"/> + <Point x="5254" y="6749"/> + <Point x="5255" y="6749"/> + <Point x="5255" y="6747"/> + <Point x="5256" y="6747"/> + <Point x="5256" y="6746"/> + <Point x="5257" y="6746"/> + <Point x="5257" y="6745"/> + <Point x="5258" y="6745"/> + <Point x="5258" y="6744"/> + <Point x="5259" y="6744"/> + <Point x="5259" y="6743"/> + <Point x="5282" y="6743"/> + <Point x="5282" y="6742"/> + <Point x="5284" y="6742"/> + <Point x="5284" y="6741"/> + <Point x="5335" y="6741"/> + <Point x="5335" y="6768"/> + <Point x="5323" y="6768"/> + <Point x="5323" y="6789"/> + <Point x="5322" y="6789"/> + <Point x="5322" y="6790"/> + <Point x="5321" y="6790"/> + <Point x="5321" y="6791"/> + <Point x="5320" y="6791"/> + <Point x="5320" y="6792"/> + <Point x="5311" y="6811"/> + <Point x="5308" y="6810"/> + <Point x="5288" y="6811"/> + <Point x="5278" y="6806"/> + <Point x="5276" y="6807"/> + <Point x="5276" y="6808"/> + <Point x="5274" y="6808"/> + <Point x="5274" y="6809"/> + <Point x="5272" y="6809"/> + <Point x="5272" y="6810"/> + <Point x="5270" y="6810"/> + <Point x="5269" y="6812"/> + <Point x="5261" y="6812"/> + <Point x="5247" y="6809"/> + <Point x="5247" y="6810"/> + <Point x="5215" y="6810"/> + <Point x="5215" y="6809"/> + <Point x="5189" y="6809"/> + <Point x="5189" y="6810"/> + <Point x="5170" y="6810"/> + <Point x="5170" y="6809"/> + <Point x="5134" y="6809"/> + <Point x="5134" y="6810"/> + <Point x="5113" y="6810"/> + <Point x="5113" y="6809"/> + <Point x="5067" y="6809"/> + <Point x="5067" y="6810"/> + <Point x="5043" y="6810"/> + <Point x="5043" y="6809"/> + <Point x="5005" y="6809"/> + <Point x="5005" y="6810"/> + <Point x="4975" y="6810"/> + <Point x="4971" y="6786"/> + <Point x="4971" y="6654"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>Lond. and Birm. ¼ Shares, 27 +Ditto New Shares, 49½ +London and Greenwich New, 16¾ +Ditto Scrip, 3¾ +Lond. &amp; South Western, 56¼ ½ +South‑Eastern and Dover. 12¼ +York and North Midland, 68</Unicode></TextEquiv></TextRegion> + <SeparatorRegion id="r682"> + <Coords> + <Point x="4959" y="6830"/> + <Point x="4961" y="6834"/> + <Point x="4967" y="6834"/> + <Point x="4965" y="6655"/> + <Point x="4956" y="6655"/> + <Point x="4958" y="6828"/></Coords></SeparatorRegion> + <SeparatorRegion id="r683"> + <Coords> + <Point x="5103" y="6901"/> + <Point x="5103" y="6883"/> + <Point x="4847" y="6886"/> + <Point x="4847" y="6901"/></Coords></SeparatorRegion> + <SeparatorRegion id="r684"> + <Coords> + <Point x="4940" y="6957"/> + <Point x="4970" y="6951"/> + <Point x="4993" y="6958"/> + <Point x="4992" y="6967"/> + <Point x="4971" y="6973"/> + <Point x="4938" y="6969"/></Coords></SeparatorRegion> + <SeparatorRegion id="r686"> + <Coords> + <Point x="5291" y="338"/> + <Point x="5294" y="542"/> + <Point x="5295" y="788"/> + <Point x="5296" y="1036"/> + <Point x="5296" y="1286"/> + <Point x="5299" y="1534"/> + <Point x="5304" y="1783"/> + <Point x="5307" y="2030"/> + <Point x="5311" y="2276"/> + <Point x="5317" y="2588"/> + <Point x="5317" y="2751"/> + <Point x="5318" y="2885"/> + <Point x="5319" y="3146"/> + <Point x="5321" y="3468"/> + <Point x="5324" y="3810"/> + <Point x="5325" y="4110"/> + <Point x="5329" y="4380"/> + <Point x="5334" y="4652"/> + <Point x="5334" y="4886"/> + <Point x="5335" y="5001"/> + <Point x="5337" y="5256"/> + <Point x="5340" y="5502"/> + <Point x="5344" y="5678"/> + <Point x="5350" y="5912"/> + <Point x="5354" y="6106"/> + <Point x="5350" y="6176"/> + <Point x="5350" y="6434"/> + <Point x="5357" y="6733"/> + <Point x="5364" y="7022"/> + <Point x="5367" y="7319"/> + <Point x="5372" y="7602"/> + <Point x="5375" y="7728"/> + <Point x="5388" y="7726"/> + <Point x="5383" y="7503"/> + <Point x="5378" y="7256"/> + <Point x="5376" y="7011"/> + <Point x="5371" y="6765"/> + <Point x="5363" y="6518"/> + <Point x="5361" y="6266"/> + <Point x="5370" y="6016"/> + <Point x="5365" y="6012"/> + <Point x="5357" y="5760"/> + <Point x="5352" y="5514"/> + <Point x="5346" y="5024"/> + <Point x="5344" y="4697"/> + <Point x="5341" y="4344"/> + <Point x="5337" y="4008"/> + <Point x="5333" y="3664"/> + <Point x="5332" y="3322"/> + <Point x="5330" y="3002"/> + <Point x="5329" y="2678"/> + <Point x="5324" y="2374"/> + <Point x="5319" y="2047"/> + <Point x="5315" y="1707"/> + <Point x="5309" y="1350"/> + <Point x="5308" y="1033"/> + <Point x="5306" y="708"/> + <Point x="5302" y="390"/> + <Point x="5304" y="337"/></Coords></SeparatorRegion> + <TextRegion id="r690" type="paragraph"> + <Coords> + <Point x="5668" y="1004"/> + <Point x="5669" y="1033"/> + <Point x="5642" y="1033"/> + <Point x="5642" y="1034"/> + <Point x="5629" y="1034"/> + <Point x="5629" y="1033"/> + <Point x="5610" y="1033"/> + <Point x="5610" y="1034"/> + <Point x="5608" y="1034"/> + <Point x="5608" y="1035"/> + <Point x="5596" y="1035"/> + <Point x="5596" y="1036"/> + <Point x="5592" y="1036"/> + <Point x="5592" y="1037"/> + <Point x="5588" y="1037"/> + <Point x="5588" y="1038"/> + <Point x="5583" y="1038"/> + <Point x="5583" y="1036"/> + <Point x="5582" y="1036"/> + <Point x="5582" y="1035"/> + <Point x="5581" y="1035"/> + <Point x="5581" y="1034"/> + <Point x="5563" y="1034"/> + <Point x="5563" y="1037"/> + <Point x="5564" y="1037"/> + <Point x="5541" y="1037"/> + <Point x="5541" y="1038"/> + <Point x="5534" y="1038"/> + <Point x="5534" y="1039"/> + <Point x="5512" y="1039"/> + <Point x="5512" y="1040"/> + <Point x="5511" y="1040"/> + <Point x="5511" y="1041"/> + <Point x="5496" y="1041"/> + <Point x="5496" y="1042"/> + <Point x="5471" y="1042"/> + <Point x="5471" y="1043"/> + <Point x="5469" y="1043"/> + <Point x="5469" y="1044"/> + <Point x="5466" y="1044"/> + <Point x="5466" y="1045"/> + <Point x="5464" y="1045"/> + <Point x="5464" y="1046"/> + <Point x="5462" y="1046"/> + <Point x="5462" y="1047"/> + <Point x="5456" y="1047"/> + <Point x="5456" y="1046"/> + <Point x="5455" y="1046"/> + <Point x="5455" y="1045"/> + <Point x="5454" y="1045"/> + <Point x="5454" y="1044"/> + <Point x="5453" y="1044"/> + <Point x="5453" y="1043"/> + <Point x="5421" y="1043"/> + <Point x="5421" y="1044"/> + <Point x="5410" y="1044"/> + <Point x="5410" y="1045"/> + <Point x="5396" y="1045"/> + <Point x="5396" y="1046"/> + <Point x="5383" y="1046"/> + <Point x="5383" y="1047"/> + <Point x="5349" y="1048"/> + <Point x="5349" y="1016"/> + <Point x="5370" y="1016"/> + <Point x="5370" y="1020"/> + <Point x="5371" y="1020"/> + <Point x="5371" y="1024"/> + <Point x="5384" y="1024"/> + <Point x="5384" y="1023"/> + <Point x="5399" y="1023"/> + <Point x="5399" y="1022"/> + <Point x="5411" y="1022"/> + <Point x="5411" y="1019"/> + <Point x="5412" y="1019"/> + <Point x="5412" y="1017"/> + <Point x="5421" y="1017"/> + <Point x="5421" y="1019"/> + <Point x="5422" y="1019"/> + <Point x="5422" y="1021"/> + <Point x="5440" y="1021"/> + <Point x="5440" y="1020"/> + <Point x="5452" y="1020"/> + <Point x="5452" y="1023"/> + <Point x="5453" y="1023"/> + <Point x="5453" y="1026"/> + <Point x="5454" y="1026"/> + <Point x="5454" y="1029"/> + <Point x="5455" y="1029"/> + <Point x="5455" y="1031"/> + <Point x="5463" y="1031"/> + <Point x="5463" y="1027"/> + <Point x="5464" y="1027"/> + <Point x="5464" y="1023"/> + <Point x="5465" y="1023"/> + <Point x="5465" y="1019"/> + <Point x="5466" y="1019"/> + <Point x="5466" y="1015"/> + <Point x="5467" y="1015"/> + <Point x="5467" y="1012"/> + <Point x="5468" y="1012"/> + <Point x="5468" y="1008"/> + <Point x="5469" y="1008"/> + <Point x="5469" y="1007"/> + <Point x="5534" y="1007"/> + <Point x="5534" y="1008"/> + <Point x="5535" y="1008"/> + <Point x="5535" y="1009"/> + <Point x="5536" y="1009"/> + <Point x="5536" y="1011"/> + <Point x="5537" y="1011"/> + <Point x="5537" y="1012"/> + <Point x="5538" y="1012"/> + <Point x="5538" y="1013"/> + <Point x="5542" y="1013"/> + <Point x="5544" y="1014"/> + <Point x="5553" y="1007"/> + <Point x="5590" y="1007"/> + <Point x="5590" y="1008"/> + <Point x="5596" y="1008"/> + <Point x="5600" y="1006"/> + <Point x="5649" y="1005"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>Preston, Dec. 30, 1840.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r702" type="paragraph"> + <Coords> + <Point x="5719" y="970"/> + <Point x="5719" y="974"/> + <Point x="5720" y="974"/> + <Point x="5720" y="977"/> + <Point x="5734" y="977"/> + <Point x="5734" y="973"/> + <Point x="5735" y="973"/> + <Point x="5735" y="970"/> + <Point x="5759" y="970"/> + <Point x="5790" y="976"/> + <Point x="5790" y="974"/> + <Point x="5791" y="974"/> + <Point x="5791" y="973"/> + <Point x="5792" y="973"/> + <Point x="5792" y="972"/> + <Point x="5801" y="967"/> + <Point x="5810" y="967"/> + <Point x="5812" y="972"/> + <Point x="5853" y="975"/> + <Point x="5853" y="974"/> + <Point x="5883" y="974"/> + <Point x="5883" y="975"/> + <Point x="5914" y="975"/> + <Point x="5909" y="983"/> + <Point x="5909" y="987"/> + <Point x="5915" y="987"/> + <Point x="5915" y="988"/> + <Point x="5916" y="988"/> + <Point x="5916" y="989"/> + <Point x="5917" y="989"/> + <Point x="5917" y="990"/> + <Point x="5918" y="990"/> + <Point x="5918" y="996"/> + <Point x="5917" y="996"/> + <Point x="5917" y="998"/> + <Point x="5916" y="998"/> + <Point x="5916" y="999"/> + <Point x="5845" y="999"/> + <Point x="5845" y="1000"/> + <Point x="5843" y="1000"/> + <Point x="5843" y="1001"/> + <Point x="5806" y="1001"/> + <Point x="5806" y="1000"/> + <Point x="5784" y="1000"/> + <Point x="5784" y="999"/> + <Point x="5603" y="999"/> + <Point x="5603" y="1000"/> + <Point x="5602" y="1000"/> + <Point x="5602" y="1001"/> + <Point x="5601" y="1001"/> + <Point x="5601" y="1002"/> + <Point x="5600" y="1002"/> + <Point x="5600" y="1003"/> + <Point x="5599" y="1003"/> + <Point x="5599" y="1004"/> + <Point x="5598" y="1004"/> + <Point x="5598" y="1005"/> + <Point x="5597" y="1005"/> + <Point x="5597" y="1006"/> + <Point x="5592" y="1006"/> + <Point x="5592" y="1005"/> + <Point x="5551" y="1005"/> + <Point x="5551" y="1006"/> + <Point x="5550" y="1006"/> + <Point x="5550" y="1007"/> + <Point x="5547" y="1007"/> + <Point x="5547" y="1008"/> + <Point x="5539" y="1008"/> + <Point x="5539" y="1007"/> + <Point x="5537" y="1007"/> + <Point x="5537" y="1006"/> + <Point x="5536" y="1006"/> + <Point x="5536" y="1005"/> + <Point x="5471" y="1005"/> + <Point x="5471" y="1004"/> + <Point x="5469" y="1004"/> + <Point x="5470" y="1004"/> + <Point x="5470" y="1000"/> + <Point x="5471" y="1000"/> + <Point x="5471" y="996"/> + <Point x="5472" y="996"/> + <Point x="5472" y="993"/> + <Point x="5473" y="993"/> + <Point x="5473" y="989"/> + <Point x="5474" y="989"/> + <Point x="5474" y="985"/> + <Point x="5475" y="985"/> + <Point x="5475" y="981"/> + <Point x="5476" y="981"/> + <Point x="5476" y="978"/> + <Point x="5487" y="978"/> + <Point x="5487" y="979"/> + <Point x="5489" y="979"/> + <Point x="5489" y="980"/> + <Point x="5491" y="980"/> + <Point x="5491" y="981"/> + <Point x="5493" y="981"/> + <Point x="5493" y="982"/> + <Point x="5494" y="982"/> + <Point x="5494" y="983"/> + <Point x="5496" y="983"/> + <Point x="5496" y="984"/> + <Point x="5498" y="984"/> + <Point x="5498" y="985"/> + <Point x="5516" y="985"/> + <Point x="5516" y="984"/> + <Point x="5549" y="984"/> + <Point x="5549" y="983"/> + <Point x="5560" y="983"/> + <Point x="5560" y="982"/> + <Point x="5567" y="982"/> + <Point x="5567" y="981"/> + <Point x="5568" y="981"/> + <Point x="5568" y="978"/> + <Point x="5569" y="978"/> + <Point x="5569" y="975"/> + <Point x="5578" y="975"/> + <Point x="5578" y="977"/> + <Point x="5579" y="977"/> + <Point x="5579" y="978"/> + <Point x="5580" y="978"/> + <Point x="5580" y="980"/> + <Point x="5581" y="980"/> + <Point x="5581" y="981"/> + <Point x="5592" y="981"/> + <Point x="5592" y="985"/> + <Point x="5593" y="985"/> + <Point x="5593" y="988"/> + <Point x="5594" y="988"/> + <Point x="5594" y="991"/> + <Point x="5602" y="991"/> + <Point x="5602" y="990"/> + <Point x="5603" y="990"/> + <Point x="5603" y="989"/> + <Point x="5604" y="989"/> + <Point x="5604" y="988"/> + <Point x="5605" y="988"/> + <Point x="5605" y="987"/> + <Point x="5607" y="987"/> + <Point x="5607" y="985"/> + <Point x="5608" y="985"/> + <Point x="5608" y="983"/> + <Point x="5609" y="983"/> + <Point x="5609" y="981"/> + <Point x="5610" y="981"/> + <Point x="5610" y="980"/> + <Point x="5638" y="980"/> + <Point x="5638" y="979"/> + <Point x="5666" y="979"/> + <Point x="5666" y="977"/> + <Point x="5667" y="977"/> + <Point x="5667" y="976"/> + <Point x="5668" y="976"/> + <Point x="5668" y="975"/> + <Point x="5677" y="975"/> + <Point x="5677" y="976"/> + <Point x="5683" y="976"/> + <Point x="5704" y="970"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>I am, sir, most obediently yours.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r706" type="paragraph"> + <Coords> + <Point x="5932" y="1001"/> + <Point x="5932" y="1002"/> + <Point x="5976" y="1002"/> + <Point x="5976" y="1003"/> + <Point x="5979" y="1003"/> + <Point x="5979" y="1004"/> + <Point x="6016" y="1003"/> + <Point x="6045" y="1003"/> + <Point x="6044" y="1042"/> + <Point x="6013" y="1037"/> + <Point x="6013" y="1036"/> + <Point x="6004" y="1036"/> + <Point x="6004" y="1035"/> + <Point x="5981" y="1035"/> + <Point x="5981" y="1034"/> + <Point x="5978" y="1034"/> + <Point x="5978" y="1033"/> + <Point x="5961" y="1033"/> + <Point x="5961" y="1032"/> + <Point x="5937" y="1032"/> + <Point x="5937" y="1031"/> + <Point x="5914" y="1031"/> + <Point x="5914" y="1030"/> + <Point x="5889" y="1030"/> + <Point x="5889" y="1029"/> + <Point x="5860" y="1029"/> + <Point x="5860" y="1030"/> + <Point x="5839" y="1030"/> + <Point x="5839" y="1029"/> + <Point x="5796" y="1029"/> + <Point x="5796" y="1030"/> + <Point x="5772" y="1030"/> + <Point x="5782" y="1002"/> + <Point x="5847" y="1002"/> + <Point x="5847" y="1001"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>A BONDHOLDER.</Unicode></TextEquiv></TextRegion> + <SeparatorRegion id="r709"> + <Coords> + <Point x="5543" y="1043"/> + <Point x="5588" y="1041"/> + <Point x="5716" y="1035"/> + <Point x="5861" y="1034"/> + <Point x="5883" y="1034"/> + <Point x="5880" y="1058"/> + <Point x="5746" y="1058"/> + <Point x="5629" y="1061"/> + <Point x="5543" y="1066"/></Coords></SeparatorRegion> + <SeparatorRegion id="r710"> + <Coords> + <Point x="5683" y="1106"/> + <Point x="5683" y="1127"/> + <Point x="5741" y="1127"/> + <Point x="5741" y="1106"/></Coords></SeparatorRegion> + <SeparatorRegion id="r711"> + <Coords> + <Point x="5575" y="1368"/> + <Point x="5657" y="1363"/> + <Point x="5714" y="1361"/> + <Point x="5852" y="1360"/> + <Point x="5850" y="1382"/> + <Point x="5730" y="1382"/> + <Point x="5654" y="1385"/> + <Point x="5573" y="1386"/></Coords></SeparatorRegion> + <SeparatorRegion id="r712"> + <Coords> + <Point x="5664" y="1434"/> + <Point x="5705" y="1428"/> + <Point x="5745" y="1434"/> + <Point x="5745" y="1445"/> + <Point x="5704" y="1449"/> + <Point x="5662" y="1446"/></Coords></SeparatorRegion> + <TextRegion id="r718" type="paragraph"> + <Coords> + <Point x="5862" y="1547"/> + <Point x="5862" y="1555"/> + <Point x="5878" y="1555"/> + <Point x="5878" y="1554"/> + <Point x="5882" y="1554"/> + <Point x="5882" y="1553"/> + <Point x="5886" y="1553"/> + <Point x="5886" y="1552"/> + <Point x="5890" y="1552"/> + <Point x="5890" y="1551"/> + <Point x="5893" y="1551"/> + <Point x="5893" y="1550"/> + <Point x="5902" y="1550"/> + <Point x="5902" y="1552"/> + <Point x="5903" y="1552"/> + <Point x="5903" y="1554"/> + <Point x="5904" y="1554"/> + <Point x="5904" y="1555"/> + <Point x="5915" y="1555"/> + <Point x="5915" y="1556"/> + <Point x="5943" y="1556"/> + <Point x="5943" y="1557"/> + <Point x="5968" y="1557"/> + <Point x="5968" y="1558"/> + <Point x="5980" y="1558"/> + <Point x="5980" y="1556"/> + <Point x="5981" y="1556"/> + <Point x="5981" y="1555"/> + <Point x="5982" y="1555"/> + <Point x="5982" y="1554"/> + <Point x="5983" y="1554"/> + <Point x="5983" y="1553"/> + <Point x="5984" y="1553"/> + <Point x="5984" y="1552"/> + <Point x="5985" y="1552"/> + <Point x="5985" y="1551"/> + <Point x="6001" y="1551"/> + <Point x="6000" y="1551"/> + <Point x="6000" y="1556"/> + <Point x="5999" y="1556"/> + <Point x="5999" y="1560"/> + <Point x="6009" y="1560"/> + <Point x="6009" y="1561"/> + <Point x="6010" y="1561"/> + <Point x="6010" y="1562"/> + <Point x="6032" y="1562"/> + <Point x="6032" y="1561"/> + <Point x="6039" y="1559"/> + <Point x="6046" y="1560"/> + <Point x="6046" y="1561"/> + <Point x="6049" y="1561"/> + <Point x="6049" y="1562"/> + <Point x="6051" y="1562"/> + <Point x="6051" y="1563"/> + <Point x="6053" y="1563"/> + <Point x="6053" y="1564"/> + <Point x="6055" y="1564"/> + <Point x="6055" y="1565"/> + <Point x="6057" y="1565"/> + <Point x="6057" y="1566"/> + <Point x="6060" y="1566"/> + <Point x="6060" y="1567"/> + <Point x="6062" y="1567"/> + <Point x="6062" y="1568"/> + <Point x="6064" y="1568"/> + <Point x="6064" y="1569"/> + <Point x="6066" y="1569"/> + <Point x="6066" y="1570"/> + <Point x="6071" y="1570"/> + <Point x="6071" y="1594"/> + <Point x="6072" y="1633"/> + <Point x="6070" y="1702"/> + <Point x="6048" y="1722"/> + <Point x="6044" y="1722"/> + <Point x="6044" y="1721"/> + <Point x="6036" y="1721"/> + <Point x="6036" y="1720"/> + <Point x="6034" y="1720"/> + <Point x="6034" y="1719"/> + <Point x="6025" y="1719"/> + <Point x="6025" y="1718"/> + <Point x="6023" y="1718"/> + <Point x="6023" y="1717"/> + <Point x="6022" y="1717"/> + <Point x="6013" y="1716"/> + <Point x="6013" y="1715"/> + <Point x="6002" y="1715"/> + <Point x="6002" y="1714"/> + <Point x="6001" y="1714"/> + <Point x="6001" y="1713"/> + <Point x="6000" y="1713"/> + <Point x="5985" y="1712"/> + <Point x="5985" y="1711"/> + <Point x="5979" y="1711"/> + <Point x="5979" y="1710"/> + <Point x="5954" y="1710"/> + <Point x="5954" y="1711"/> + <Point x="5943" y="1711"/> + <Point x="5943" y="1709"/> + <Point x="5931" y="1709"/> + <Point x="5931" y="1710"/> + <Point x="5927" y="1710"/> + <Point x="5927" y="1711"/> + <Point x="5924" y="1711"/> + <Point x="5924" y="1712"/> + <Point x="5911" y="1712"/> + <Point x="5911" y="1711"/> + <Point x="5906" y="1711"/> + <Point x="5906" y="1710"/> + <Point x="5902" y="1710"/> + <Point x="5902" y="1709"/> + <Point x="5847" y="1709"/> + <Point x="5847" y="1710"/> + <Point x="5821" y="1710"/> + <Point x="5821" y="1711"/> + <Point x="5788" y="1711"/> + <Point x="5788" y="1712"/> + <Point x="5764" y="1712"/> + <Point x="5764" y="1713"/> + <Point x="5731" y="1713"/> + <Point x="5731" y="1714"/> + <Point x="5709" y="1714"/> + <Point x="5709" y="1715"/> + <Point x="5704" y="1715"/> + <Point x="5704" y="1714"/> + <Point x="5692" y="1714"/> + <Point x="5692" y="1715"/> + <Point x="5674" y="1715"/> + <Point x="5674" y="1716"/> + <Point x="5661" y="1716"/> + <Point x="5661" y="1717"/> + <Point x="5630" y="1717"/> + <Point x="5630" y="1718"/> + <Point x="5607" y="1718"/> + <Point x="5607" y="1719"/> + <Point x="5605" y="1719"/> + <Point x="5605" y="1720"/> + <Point x="5592" y="1720"/> + <Point x="5592" y="1719"/> + <Point x="5575" y="1719"/> + <Point x="5575" y="1720"/> + <Point x="5574" y="1720"/> + <Point x="5574" y="1721"/> + <Point x="5546" y="1721"/> + <Point x="5546" y="1725"/> + <Point x="5545" y="1725"/> + <Point x="5545" y="1729"/> + <Point x="5531" y="1729"/> + <Point x="5531" y="1727"/> + <Point x="5530" y="1727"/> + <Point x="5530" y="1726"/> + <Point x="5529" y="1726"/> + <Point x="5529" y="1724"/> + <Point x="5528" y="1724"/> + <Point x="5528" y="1723"/> + <Point x="5502" y="1723"/> + <Point x="5502" y="1724"/> + <Point x="5468" y="1724"/> + <Point x="5468" y="1725"/> + <Point x="5443" y="1725"/> + <Point x="5443" y="1726"/> + <Point x="5428" y="1726"/> + <Point x="5428" y="1727"/> + <Point x="5406" y="1727"/> + <Point x="5406" y="1728"/> + <Point x="5392" y="1728"/> + <Point x="5392" y="1727"/> + <Point x="5378" y="1727"/> + <Point x="5378" y="1728"/> + <Point x="5363" y="1728"/> + <Point x="5363" y="1729"/> + <Point x="5356" y="1729"/> + <Point x="5356" y="1736"/> + <Point x="5346" y="1736"/> + <Point x="5346" y="1737"/> + <Point x="5346" y="1729"/> + <Point x="5337" y="1729"/> + <Point x="5337" y="1730"/> + <Point x="5330" y="1730"/> + <Point x="5330" y="1731"/> + <Point x="5323" y="1731"/> + <Point x="5323" y="1732"/> + <Point x="5323" y="1697"/> + <Point x="5322" y="1697"/> + <Point x="5322" y="1670"/> + <Point x="5321" y="1670"/> + <Point x="5321" y="1644"/> + <Point x="5320" y="1644"/> + <Point x="5320" y="1617"/> + <Point x="5319" y="1617"/> + <Point x="5319" y="1604"/> + <Point x="5318" y="1604"/> + <Point x="5318" y="1603"/> + <Point x="5319" y="1603"/> + <Point x="5319" y="1604"/> + <Point x="5332" y="1604"/> + <Point x="5332" y="1602"/> + <Point x="5333" y="1602"/> + <Point x="5333" y="1600"/> + <Point x="5334" y="1600"/> + <Point x="5334" y="1599"/> + <Point x="5335" y="1599"/> + <Point x="5335" y="1597"/> + <Point x="5336" y="1597"/> + <Point x="5336" y="1595"/> + <Point x="5337" y="1595"/> + <Point x="5337" y="1594"/> + <Point x="5338" y="1594"/> + <Point x="5338" y="1592"/> + <Point x="5339" y="1592"/> + <Point x="5339" y="1590"/> + <Point x="5340" y="1590"/> + <Point x="5340" y="1589"/> + <Point x="5341" y="1589"/> + <Point x="5341" y="1587"/> + <Point x="5342" y="1587"/> + <Point x="5342" y="1585"/> + <Point x="5343" y="1585"/> + <Point x="5343" y="1584"/> + <Point x="5344" y="1584"/> + <Point x="5344" y="1582"/> + <Point x="5345" y="1582"/> + <Point x="5345" y="1580"/> + <Point x="5346" y="1580"/> + <Point x="5346" y="1579"/> + <Point x="5347" y="1579"/> + <Point x="5347" y="1577"/> + <Point x="5348" y="1577"/> + <Point x="5348" y="1575"/> + <Point x="5349" y="1575"/> + <Point x="5349" y="1574"/> + <Point x="5350" y="1574"/> + <Point x="5350" y="1572"/> + <Point x="5351" y="1572"/> + <Point x="5351" y="1570"/> + <Point x="5352" y="1570"/> + <Point x="5352" y="1569"/> + <Point x="5353" y="1569"/> + <Point x="5353" y="1567"/> + <Point x="5354" y="1567"/> + <Point x="5354" y="1566"/> + <Point x="5368" y="1566"/> + <Point x="5368" y="1571"/> + <Point x="5369" y="1571"/> + <Point x="5369" y="1575"/> + <Point x="5388" y="1575"/> + <Point x="5388" y="1574"/> + <Point x="5393" y="1574"/> + <Point x="5393" y="1573"/> + <Point x="5397" y="1573"/> + <Point x="5397" y="1572"/> + <Point x="5402" y="1572"/> + <Point x="5402" y="1571"/> + <Point x="5406" y="1571"/> + <Point x="5406" y="1570"/> + <Point x="5416" y="1570"/> + <Point x="5416" y="1568"/> + <Point x="5417" y="1568"/> + <Point x="5417" y="1567"/> + <Point x="5418" y="1567"/> + <Point x="5418" y="1566"/> + <Point x="5419" y="1566"/> + <Point x="5419" y="1565"/> + <Point x="5433" y="1565"/> + <Point x="5433" y="1567"/> + <Point x="5434" y="1567"/> + <Point x="5434" y="1569"/> + <Point x="5435" y="1569"/> + <Point x="5435" y="1571"/> + <Point x="5452" y="1571"/> + <Point x="5452" y="1570"/> + <Point x="5455" y="1570"/> + <Point x="5455" y="1569"/> + <Point x="5458" y="1569"/> + <Point x="5458" y="1568"/> + <Point x="5461" y="1568"/> + <Point x="5461" y="1567"/> + <Point x="5464" y="1567"/> + <Point x="5464" y="1566"/> + <Point x="5467" y="1566"/> + <Point x="5467" y="1565"/> + <Point x="5470" y="1565"/> + <Point x="5470" y="1564"/> + <Point x="5473" y="1564"/> + <Point x="5473" y="1563"/> + <Point x="5475" y="1563"/> + <Point x="5475" y="1562"/> + <Point x="5491" y="1562"/> + <Point x="5491" y="1564"/> + <Point x="5492" y="1564"/> + <Point x="5492" y="1565"/> + <Point x="5493" y="1565"/> + <Point x="5493" y="1567"/> + <Point x="5494" y="1567"/> + <Point x="5494" y="1568"/> + <Point x="5507" y="1568"/> + <Point x="5507" y="1569"/> + <Point x="5530" y="1569"/> + <Point x="5530" y="1568"/> + <Point x="5546" y="1568"/> + <Point x="5546" y="1567"/> + <Point x="5548" y="1567"/> + <Point x="5548" y="1566"/> + <Point x="5573" y="1566"/> + <Point x="5573" y="1565"/> + <Point x="5583" y="1565"/> + <Point x="5583" y="1564"/> + <Point x="5624" y="1564"/> + <Point x="5624" y="1563"/> + <Point x="5626" y="1563"/> + <Point x="5626" y="1562"/> + <Point x="5628" y="1562"/> + <Point x="5628" y="1561"/> + <Point x="5629" y="1561"/> + <Point x="5629" y="1560"/> + <Point x="5631" y="1560"/> + <Point x="5631" y="1559"/> + <Point x="5633" y="1559"/> + <Point x="5633" y="1558"/> + <Point x="5634" y="1558"/> + <Point x="5634" y="1557"/> + <Point x="5636" y="1557"/> + <Point x="5636" y="1556"/> + <Point x="5637" y="1556"/> + <Point x="5637" y="1555"/> + <Point x="5651" y="1555"/> + <Point x="5651" y="1558"/> + <Point x="5652" y="1558"/> + <Point x="5652" y="1560"/> + <Point x="5653" y="1560"/> + <Point x="5653" y="1562"/> + <Point x="5657" y="1562"/> + <Point x="5657" y="1561"/> + <Point x="5660" y="1561"/> + <Point x="5660" y="1560"/> + <Point x="5663" y="1560"/> + <Point x="5663" y="1559"/> + <Point x="5666" y="1559"/> + <Point x="5666" y="1558"/> + <Point x="5669" y="1558"/> + <Point x="5669" y="1557"/> + <Point x="5677" y="1557"/> + <Point x="5677" y="1558"/> + <Point x="5689" y="1558"/> + <Point x="5689" y="1559"/> + <Point x="5719" y="1559"/> + <Point x="5719" y="1558"/> + <Point x="5723" y="1558"/> + <Point x="5723" y="1557"/> + <Point x="5726" y="1557"/> + <Point x="5726" y="1556"/> + <Point x="5730" y="1556"/> + <Point x="5730" y="1555"/> + <Point x="5733" y="1555"/> + <Point x="5733" y="1554"/> + <Point x="5736" y="1554"/> + <Point x="5736" y="1553"/> + <Point x="5745" y="1553"/> + <Point x="5745" y="1554"/> + <Point x="5752" y="1554"/> + <Point x="5752" y="1555"/> + <Point x="5758" y="1555"/> + <Point x="5758" y="1556"/> + <Point x="5801" y="1556"/> + <Point x="5801" y="1555"/> + <Point x="5803" y="1555"/> + <Point x="5803" y="1554"/> + <Point x="5804" y="1554"/> + <Point x="5804" y="1553"/> + <Point x="5805" y="1553"/> + <Point x="5805" y="1552"/> + <Point x="5807" y="1552"/> + <Point x="5807" y="1551"/> + <Point x="5808" y="1551"/> + <Point x="5808" y="1550"/> + <Point x="5809" y="1550"/> + <Point x="5809" y="1549"/> + <Point x="5810" y="1549"/> + <Point x="5810" y="1548"/> + <Point x="5825" y="1548"/> + <Point x="5824" y="1548"/> + <Point x="5824" y="1550"/> + <Point x="5823" y="1550"/> + <Point x="5823" y="1552"/> + <Point x="5822" y="1552"/> + <Point x="5822" y="1554"/> + <Point x="5821" y="1554"/> + <Point x="5821" y="1556"/> + <Point x="5850" y="1556"/> + <Point x="5850" y="1547"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>In the SUGAR market not a single transaction has +taken place since Thursday last, and prices remain quite +nominal; but, with so small a stock on hand, it cannot +be supposed a further decline will take place. We anti- +cipate some improvement in the course of a few weeks.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r724" type="paragraph"> + <Coords> + <Point x="5806" y="2045"/> + <Point x="5818" y="2048"/> + <Point x="5818" y="2049"/> + <Point x="5823" y="2049"/> + <Point x="5823" y="2050"/> + <Point x="5829" y="2050"/> + <Point x="5829" y="2051"/> + <Point x="5861" y="2051"/> + <Point x="5861" y="2049"/> + <Point x="5862" y="2044"/> + <Point x="5886" y="2044"/> + <Point x="5887" y="2049"/> + <Point x="5888" y="2049"/> + <Point x="5888" y="2050"/> + <Point x="5889" y="2050"/> + <Point x="5889" y="2051"/> + <Point x="5919" y="2051"/> + <Point x="5919" y="2050"/> + <Point x="5923" y="2050"/> + <Point x="5923" y="2049"/> + <Point x="5928" y="2049"/> + <Point x="5930" y="2044"/> + <Point x="5940" y="2044"/> + <Point x="5956" y="2051"/> + <Point x="5956" y="2052"/> + <Point x="5986" y="2052"/> + <Point x="5986" y="2053"/> + <Point x="5996" y="2053"/> + <Point x="5996" y="2054"/> + <Point x="6000" y="2054"/> + <Point x="6000" y="2055"/> + <Point x="6003" y="2055"/> + <Point x="6003" y="2056"/> + <Point x="6006" y="2056"/> + <Point x="6006" y="2057"/> + <Point x="6012" y="2053"/> + <Point x="6066" y="2053"/> + <Point x="6073" y="2077"/> + <Point x="6072" y="2088"/> + <Point x="6018" y="2086"/> + <Point x="6018" y="2087"/> + <Point x="6012" y="2087"/> + <Point x="6012" y="2086"/> + <Point x="6010" y="2086"/> + <Point x="6010" y="2085"/> + <Point x="6008" y="2085"/> + <Point x="6008" y="2084"/> + <Point x="6006" y="2084"/> + <Point x="6006" y="2083"/> + <Point x="6004" y="2083"/> + <Point x="6004" y="2082"/> + <Point x="6002" y="2082"/> + <Point x="6002" y="2081"/> + <Point x="6000" y="2081"/> + <Point x="6000" y="2080"/> + <Point x="5998" y="2080"/> + <Point x="5998" y="2079"/> + <Point x="5984" y="2079"/> + <Point x="5984" y="2078"/> + <Point x="5972" y="2078"/> + <Point x="5972" y="2077"/> + <Point x="5932" y="2077"/> + <Point x="5932" y="2076"/> + <Point x="5926" y="2076"/> + <Point x="5926" y="2075"/> + <Point x="5920" y="2075"/> + <Point x="5920" y="2074"/> + <Point x="5901" y="2074"/> + <Point x="5901" y="2075"/> + <Point x="5890" y="2075"/> + <Point x="5890" y="2074"/> + <Point x="5888" y="2074"/> + <Point x="5888" y="2073"/> + <Point x="5871" y="2073"/> + <Point x="5871" y="2074"/> + <Point x="5860" y="2074"/> + <Point x="5860" y="2075"/> + <Point x="5812" y="2075"/> + <Point x="5812" y="2076"/> + <Point x="5782" y="2076"/> + <Point x="5782" y="2077"/> + <Point x="5780" y="2077"/> + <Point x="5780" y="2079"/> + <Point x="5783" y="2079"/> + <Point x="5783" y="2080"/> + <Point x="5786" y="2080"/> + <Point x="5785" y="2080"/> + <Point x="5785" y="2081"/> + <Point x="5783" y="2081"/> + <Point x="5783" y="2082"/> + <Point x="5780" y="2082"/> + <Point x="5780" y="2083"/> + <Point x="5761" y="2083"/> + <Point x="5761" y="2084"/> + <Point x="5735" y="2084"/> + <Point x="5735" y="2085"/> + <Point x="5709" y="2085"/> + <Point x="5709" y="2099"/> + <Point x="5708" y="2099"/> + <Point x="5708" y="2112"/> + <Point x="5705" y="2112"/> + <Point x="5705" y="2113"/> + <Point x="5683" y="2113"/> + <Point x="5683" y="2114"/> + <Point x="5662" y="2114"/> + <Point x="5662" y="2120"/> + <Point x="5650" y="2120"/> + <Point x="5650" y="2116"/> + <Point x="5611" y="2116"/> + <Point x="5611" y="2117"/> + <Point x="5571" y="2117"/> + <Point x="5571" y="2118"/> + <Point x="5553" y="2118"/> + <Point x="5553" y="2119"/> + <Point x="5534" y="2119"/> + <Point x="5534" y="2120"/> + <Point x="5528" y="2120"/> + <Point x="5528" y="2121"/> + <Point x="5486" y="2121"/> + <Point x="5486" y="2122"/> + <Point x="5472" y="2122"/> + <Point x="5472" y="2123"/> + <Point x="5427" y="2123"/> + <Point x="5427" y="2124"/> + <Point x="5420" y="2124"/> + <Point x="5420" y="2125"/> + <Point x="5374" y="2125"/> + <Point x="5374" y="2126"/> + <Point x="5329" y="2126"/> + <Point x="5329" y="2127"/> + <Point x="5329" y="2094"/> + <Point x="5329" y="2095"/> + <Point x="5340" y="2095"/> + <Point x="5340" y="2096"/> + <Point x="5351" y="2096"/> + <Point x="5351" y="2091"/> + <Point x="5352" y="2091"/> + <Point x="5352" y="2087"/> + <Point x="5353" y="2087"/> + <Point x="5353" y="2082"/> + <Point x="5354" y="2082"/> + <Point x="5354" y="2078"/> + <Point x="5355" y="2078"/> + <Point x="5355" y="2074"/> + <Point x="5356" y="2074"/> + <Point x="5356" y="2069"/> + <Point x="5357" y="2069"/> + <Point x="5357" y="2065"/> + <Point x="5358" y="2065"/> + <Point x="5358" y="2061"/> + <Point x="5382" y="2061"/> + <Point x="5382" y="2063"/> + <Point x="5383" y="2063"/> + <Point x="5383" y="2065"/> + <Point x="5384" y="2065"/> + <Point x="5384" y="2067"/> + <Point x="5385" y="2067"/> + <Point x="5385" y="2069"/> + <Point x="5402" y="2069"/> + <Point x="5402" y="2068"/> + <Point x="5404" y="2068"/> + <Point x="5404" y="2067"/> + <Point x="5421" y="2067"/> + <Point x="5421" y="2066"/> + <Point x="5421" y="2067"/> + <Point x="5494" y="2067"/> + <Point x="5494" y="2059"/> + <Point x="5511" y="2059"/> + <Point x="5511" y="2061"/> + <Point x="5512" y="2061"/> + <Point x="5512" y="2063"/> + <Point x="5513" y="2063"/> + <Point x="5513" y="2064"/> + <Point x="5543" y="2064"/> + <Point x="5543" y="2063"/> + <Point x="5546" y="2063"/> + <Point x="5546" y="2062"/> + <Point x="5549" y="2062"/> + <Point x="5549" y="2061"/> + <Point x="5551" y="2061"/> + <Point x="5551" y="2060"/> + <Point x="5554" y="2060"/> + <Point x="5554" y="2059"/> + <Point x="5557" y="2059"/> + <Point x="5557" y="2058"/> + <Point x="5560" y="2058"/> + <Point x="5560" y="2057"/> + <Point x="5562" y="2057"/> + <Point x="5562" y="2056"/> + <Point x="5567" y="2056"/> + <Point x="5567" y="2057"/> + <Point x="5572" y="2057"/> + <Point x="5572" y="2058"/> + <Point x="5577" y="2058"/> + <Point x="5577" y="2059"/> + <Point x="5582" y="2059"/> + <Point x="5582" y="2060"/> + <Point x="5587" y="2060"/> + <Point x="5587" y="2061"/> + <Point x="5593" y="2061"/> + <Point x="5593" y="2060"/> + <Point x="5624" y="2060"/> + <Point x="5624" y="2059"/> + <Point x="5649" y="2059"/> + <Point x="5649" y="2058"/> + <Point x="5666" y="2058"/> + <Point x="5666" y="2057"/> + <Point x="5669" y="2057"/> + <Point x="5669" y="2056"/> + <Point x="5672" y="2056"/> + <Point x="5672" y="2055"/> + <Point x="5675" y="2055"/> + <Point x="5675" y="2054"/> + <Point x="5678" y="2054"/> + <Point x="5678" y="2053"/> + <Point x="5681" y="2053"/> + <Point x="5681" y="2052"/> + <Point x="5684" y="2052"/> + <Point x="5684" y="2051"/> + <Point x="5686" y="2051"/> + <Point x="5686" y="2050"/> + <Point x="5692" y="2050"/> + <Point x="5692" y="2048"/> + <Point x="5699" y="2048"/> + <Point x="5720" y="2052"/> + <Point x="5728" y="2052"/> + <Point x="5729" y="2060"/> + <Point x="5729" y="2067"/> + <Point x="5738" y="2067"/> + <Point x="5738" y="2066"/> + <Point x="5739" y="2066"/> + <Point x="5739" y="2065"/> + <Point x="5741" y="2065"/> + <Point x="5741" y="2064"/> + <Point x="5742" y="2064"/> + <Point x="5742" y="2063"/> + <Point x="5743" y="2063"/> + <Point x="5743" y="2062"/> + <Point x="5745" y="2062"/> + <Point x="5745" y="2061"/> + <Point x="5746" y="2061"/> + <Point x="5746" y="2060"/> + <Point x="5748" y="2060"/> + <Point x="5748" y="2059"/> + <Point x="5749" y="2059"/> + <Point x="5749" y="2058"/> + <Point x="5750" y="2058"/> + <Point x="5750" y="2048"/> + <Point x="5786" y="2047"/> + <Point x="5796" y="2045"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>TALLOW has become flat, with rather lower prices. +P. Y. C. 47s 3d on the spot.</Unicode></TextEquiv></TextRegion> + <SeparatorRegion id="r727"> + <Coords> + <Point x="5529" y="2142"/> + <Point x="5565" y="2142"/> + <Point x="5580" y="2141"/> + <Point x="5584" y="2141"/> + <Point x="5635" y="2140"/> + <Point x="5657" y="2139"/> + <Point x="5713" y="2137"/> + <Point x="5717" y="2136"/> + <Point x="5721" y="2136"/> + <Point x="5758" y="2135"/> + <Point x="5797" y="2134"/> + <Point x="5873" y="2132"/> + <Point x="5918" y="2131"/> + <Point x="5923" y="2131"/> + <Point x="5921" y="2112"/> + <Point x="5753" y="2114"/> + <Point x="5668" y="2118"/> + <Point x="5665" y="2121"/> + <Point x="5655" y="2122"/> + <Point x="5644" y="2122"/> + <Point x="5531" y="2125"/></Coords></SeparatorRegion> + <SeparatorRegion id="r728"> + <Coords> + <Point x="5694" y="2211"/> + <Point x="5694" y="2233"/> + <Point x="5755" y="2233"/> + <Point x="5755" y="2211"/></Coords></SeparatorRegion> + <TextRegion id="r744" type="heading"> + <Coords> + <Point x="5499" y="2272"/> + <Point x="5775" y="2262"/> + <Point x="5779" y="2264"/> + <Point x="5842" y="2263"/> + <Point x="5914" y="2262"/> + <Point x="5936" y="2262"/> + <Point x="5942" y="2268"/> + <Point x="5952" y="2275"/> + <Point x="5950" y="2294"/> + <Point x="5852" y="2292"/> + <Point x="5756" y="2294"/> + <Point x="5690" y="2296"/> + <Point x="5596" y="2300"/> + <Point x="5537" y="2302"/> + <Point x="5498" y="2303"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>OFFICIAL NOTIFICATION.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r746" type="paragraph"> + <Coords> + <Point x="5828" y="2298"/> + <Point x="5828" y="2299"/> + <Point x="5896" y="2299"/> + <Point x="5964" y="2297"/> + <Point x="5976" y="2306"/> + <Point x="5976" y="2307"/> + <Point x="5978" y="2307"/> + <Point x="5978" y="2308"/> + <Point x="6007" y="2308"/> + <Point x="6007" y="2310"/> + <Point x="6008" y="2310"/> + <Point x="6008" y="2311"/> + <Point x="6019" y="2311"/> + <Point x="6019" y="2312"/> + <Point x="6037" y="2312"/> + <Point x="6037" y="2311"/> + <Point x="6040" y="2311"/> + <Point x="6040" y="2310"/> + <Point x="6044" y="2310"/> + <Point x="6044" y="2309"/> + <Point x="6047" y="2309"/> + <Point x="6047" y="2308"/> + <Point x="6050" y="2308"/> + <Point x="6050" y="2307"/> + <Point x="6080" y="2307"/> + <Point x="6078" y="2404"/> + <Point x="6064" y="2404"/> + <Point x="6064" y="2403"/> + <Point x="6062" y="2403"/> + <Point x="6062" y="2402"/> + <Point x="6057" y="2402"/> + <Point x="6057" y="2401"/> + <Point x="6046" y="2401"/> + <Point x="6046" y="2400"/> + <Point x="6034" y="2400"/> + <Point x="6034" y="2399"/> + <Point x="6033" y="2399"/> + <Point x="6033" y="2398"/> + <Point x="6022" y="2398"/> + <Point x="6022" y="2401"/> + <Point x="6021" y="2401"/> + <Point x="6021" y="2404"/> + <Point x="6009" y="2404"/> + <Point x="6009" y="2403"/> + <Point x="6007" y="2403"/> + <Point x="6007" y="2402"/> + <Point x="6005" y="2402"/> + <Point x="6005" y="2401"/> + <Point x="6004" y="2401"/> + <Point x="6004" y="2400"/> + <Point x="6002" y="2400"/> + <Point x="6002" y="2399"/> + <Point x="6000" y="2399"/> + <Point x="6000" y="2398"/> + <Point x="5999" y="2398"/> + <Point x="5999" y="2397"/> + <Point x="5997" y="2397"/> + <Point x="5997" y="2396"/> + <Point x="5995" y="2396"/> + <Point x="5995" y="2395"/> + <Point x="5985" y="2395"/> + <Point x="5985" y="2396"/> + <Point x="5972" y="2396"/> + <Point x="5972" y="2395"/> + <Point x="5958" y="2395"/> + <Point x="5958" y="2393"/> + <Point x="5930" y="2393"/> + <Point x="5930" y="2392"/> + <Point x="5920" y="2392"/> + <Point x="5920" y="2391"/> + <Point x="5883" y="2391"/> + <Point x="5883" y="2424"/> + <Point x="5855" y="2424"/> + <Point x="5855" y="2425"/> + <Point x="5825" y="2425"/> + <Point x="5825" y="2426"/> + <Point x="5794" y="2426"/> + <Point x="5794" y="2427"/> + <Point x="5786" y="2427"/> + <Point x="5786" y="2428"/> + <Point x="5778" y="2428"/> + <Point x="5778" y="2429"/> + <Point x="5770" y="2429"/> + <Point x="5770" y="2430"/> + <Point x="5762" y="2430"/> + <Point x="5762" y="2431"/> + <Point x="5754" y="2431"/> + <Point x="5754" y="2432"/> + <Point x="5650" y="2432"/> + <Point x="5650" y="2433"/> + <Point x="5613" y="2433"/> + <Point x="5613" y="2434"/> + <Point x="5575" y="2434"/> + <Point x="5575" y="2435"/> + <Point x="5537" y="2435"/> + <Point x="5537" y="2436"/> + <Point x="5499" y="2436"/> + <Point x="5499" y="2437"/> + <Point x="5461" y="2437"/> + <Point x="5461" y="2438"/> + <Point x="5420" y="2438"/> + <Point x="5420" y="2439"/> + <Point x="5378" y="2439"/> + <Point x="5378" y="2440"/> + <Point x="5375" y="2441"/> + <Point x="5366" y="2441"/> + <Point x="5364" y="2439"/> + <Point x="5364" y="2437"/> + <Point x="5348" y="2437"/> + <Point x="5348" y="2438"/> + <Point x="5333" y="2438"/> + <Point x="5330" y="2405"/> + <Point x="5330" y="2341"/> + <Point x="5348" y="2342"/> + <Point x="5349" y="2345"/> + <Point x="5349" y="2348"/> + <Point x="5350" y="2348"/> + <Point x="5350" y="2350"/> + <Point x="5363" y="2350"/> + <Point x="5363" y="2312"/> + <Point x="5364" y="2312"/> + <Point x="5364" y="2311"/> + <Point x="5365" y="2311"/> + <Point x="5365" y="2310"/> + <Point x="5366" y="2310"/> + <Point x="5366" y="2309"/> + <Point x="5387" y="2309"/> + <Point x="5387" y="2310"/> + <Point x="5403" y="2310"/> + <Point x="5403" y="2312"/> + <Point x="5404" y="2312"/> + <Point x="5404" y="2314"/> + <Point x="5405" y="2314"/> + <Point x="5405" y="2315"/> + <Point x="5423" y="2315"/> + <Point x="5423" y="2314"/> + <Point x="5426" y="2314"/> + <Point x="5426" y="2313"/> + <Point x="5429" y="2313"/> + <Point x="5429" y="2312"/> + <Point x="5431" y="2312"/> + <Point x="5431" y="2311"/> + <Point x="5434" y="2311"/> + <Point x="5434" y="2310"/> + <Point x="5437" y="2310"/> + <Point x="5437" y="2309"/> + <Point x="5439" y="2309"/> + <Point x="5439" y="2308"/> + <Point x="5449" y="2308"/> + <Point x="5448" y="2308"/> + <Point x="5463" y="2307"/> + <Point x="5478" y="2307"/> + <Point x="5479" y="2312"/> + <Point x="5495" y="2316"/> + <Point x="5495" y="2312"/> + <Point x="5496" y="2312"/> + <Point x="5496" y="2308"/> + <Point x="5565" y="2308"/> + <Point x="5565" y="2306"/> + <Point x="5571" y="2306"/> + <Point x="5571" y="2305"/> + <Point x="5586" y="2305"/> + <Point x="5586" y="2304"/> + <Point x="5628" y="2304"/> + <Point x="5628" y="2303"/> + <Point x="5655" y="2303"/> + <Point x="5655" y="2302"/> + <Point x="5682" y="2302"/> + <Point x="5682" y="2301"/> + <Point x="5708" y="2301"/> + <Point x="5708" y="2299"/> + <Point x="5735" y="2299"/> + <Point x="5735" y="2298"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>The following decree of the Supreme German Fe- +deral Diet of the 3d of December, 1840, is, on the autho- +rity of the hon. Senate, hereby brought under general +cognizance.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r748" type="paragraph"> + <Coords> + <Point x="5883" y="2426"/> + <Point x="5883" y="2430"/> + <Point x="5884" y="2430"/> + <Point x="5884" y="2435"/> + <Point x="5900" y="2435"/> + <Point x="5900" y="2434"/> + <Point x="5912" y="2434"/> + <Point x="5912" y="2438"/> + <Point x="5913" y="2438"/> + <Point x="5913" y="2441"/> + <Point x="5914" y="2441"/> + <Point x="5914" y="2444"/> + <Point x="5915" y="2444"/> + <Point x="5915" y="2447"/> + <Point x="5921" y="2447"/> + <Point x="5921" y="2448"/> + <Point x="5922" y="2448"/> + <Point x="5922" y="2449"/> + <Point x="5923" y="2449"/> + <Point x="5923" y="2450"/> + <Point x="5924" y="2450"/> + <Point x="5924" y="2456"/> + <Point x="5923" y="2456"/> + <Point x="5923" y="2461"/> + <Point x="5912" y="2461"/> + <Point x="5909" y="2458"/> + <Point x="5898" y="2456"/> + <Point x="5898" y="2457"/> + <Point x="5875" y="2457"/> + <Point x="5875" y="2458"/> + <Point x="5832" y="2458"/> + <Point x="5832" y="2450"/> + <Point x="5822" y="2450"/> + <Point x="5822" y="2453"/> + <Point x="5821" y="2453"/> + <Point x="5821" y="2455"/> + <Point x="5820" y="2455"/> + <Point x="5820" y="2457"/> + <Point x="5819" y="2457"/> + <Point x="5819" y="2459"/> + <Point x="5807" y="2459"/> + <Point x="5807" y="2458"/> + <Point x="5786" y="2458"/> + <Point x="5786" y="2459"/> + <Point x="5777" y="2459"/> + <Point x="5777" y="2458"/> + <Point x="5775" y="2458"/> + <Point x="5775" y="2457"/> + <Point x="5773" y="2457"/> + <Point x="5773" y="2456"/> + <Point x="5764" y="2456"/> + <Point x="5764" y="2458"/> + <Point x="5763" y="2458"/> + <Point x="5767" y="2492"/> + <Point x="5678" y="2494"/> + <Point x="5677" y="2498"/> + <Point x="5668" y="2499"/> + <Point x="5665" y="2495"/> + <Point x="5613" y="2497"/> + <Point x="5601" y="2499"/> + <Point x="5584" y="2499"/> + <Point x="5554" y="2500"/> + <Point x="5554" y="2473"/> + <Point x="5551" y="2473"/> + <Point x="5539" y="2467"/> + <Point x="5539" y="2468"/> + <Point x="5511" y="2468"/> + <Point x="5511" y="2467"/> + <Point x="5494" y="2467"/> + <Point x="5494" y="2468"/> + <Point x="5493" y="2468"/> + <Point x="5493" y="2469"/> + <Point x="5463" y="2469"/> + <Point x="5463" y="2468"/> + <Point x="5437" y="2468"/> + <Point x="5437" y="2469"/> + <Point x="5435" y="2469"/> + <Point x="5435" y="2470"/> + <Point x="5433" y="2470"/> + <Point x="5433" y="2471"/> + <Point x="5430" y="2471"/> + <Point x="5430" y="2472"/> + <Point x="5428" y="2472"/> + <Point x="5428" y="2473"/> + <Point x="5426" y="2473"/> + <Point x="5426" y="2474"/> + <Point x="5410" y="2475"/> + <Point x="5389" y="2469"/> + <Point x="5389" y="2470"/> + <Point x="5368" y="2470"/> + <Point x="5368" y="2469"/> + <Point x="5367" y="2469"/> + <Point x="5367" y="2468"/> + <Point x="5366" y="2468"/> + <Point x="5366" y="2467"/> + <Point x="5365" y="2467"/> + <Point x="5365" y="2445"/> + <Point x="5368" y="2445"/> + <Point x="5381" y="2440"/> + <Point x="5422" y="2441"/> + <Point x="5422" y="2440"/> + <Point x="5438" y="2439"/> + <Point x="5501" y="2439"/> + <Point x="5501" y="2438"/> + <Point x="5539" y="2438"/> + <Point x="5539" y="2437"/> + <Point x="5577" y="2437"/> + <Point x="5577" y="2436"/> + <Point x="5615" y="2436"/> + <Point x="5615" y="2435"/> + <Point x="5652" y="2435"/> + <Point x="5652" y="2434"/> + <Point x="5756" y="2434"/> + <Point x="5756" y="2433"/> + <Point x="5764" y="2433"/> + <Point x="5764" y="2432"/> + <Point x="5772" y="2432"/> + <Point x="5772" y="2431"/> + <Point x="5780" y="2431"/> + <Point x="5780" y="2430"/> + <Point x="5788" y="2430"/> + <Point x="5788" y="2429"/> + <Point x="5796" y="2429"/> + <Point x="5796" y="2428"/> + <Point x="5827" y="2428"/> + <Point x="5827" y="2427"/> + <Point x="5857" y="2427"/> + <Point x="5857" y="2426"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>City Chancery, Frankkort‑on‑the‑Maine, +Dec. 22, 1840.</Unicode></TextEquiv></TextRegion> + <SeparatorRegion id="r751"> + <Coords> + <Point x="5599" y="4245"/> + <Point x="5599" y="4271"/> + <Point x="5881" y="4271"/> + <Point x="5881" y="4245"/></Coords></SeparatorRegion> + <SeparatorRegion id="r752"> + <Coords> + <Point x="5712" y="4317"/> + <Point x="5712" y="4342"/> + <Point x="5772" y="4342"/> + <Point x="5772" y="4317"/></Coords></SeparatorRegion> + <TextRegion id="r754" type="heading"> + <Coords> + <Point x="5730" y="4349"/> + <Point x="5730" y="4363"/> + <Point x="5760" y="4362"/> + <Point x="5762" y="4348"/> + <Point x="5786" y="4348"/> + <Point x="5805" y="4354"/> + <Point x="5805" y="4355"/> + <Point x="5917" y="4355"/> + <Point x="5917" y="4366"/> + <Point x="5921" y="4366"/> + <Point x="5921" y="4367"/> + <Point x="5922" y="4367"/> + <Point x="5922" y="4368"/> + <Point x="5923" y="4368"/> + <Point x="5923" y="4377"/> + <Point x="5918" y="4378"/> + <Point x="5918" y="4379"/> + <Point x="5907" y="4379"/> + <Point x="5907" y="4380"/> + <Point x="5898" y="4380"/> + <Point x="5898" y="4379"/> + <Point x="5845" y="4379"/> + <Point x="5845" y="4378"/> + <Point x="5791" y="4378"/> + <Point x="5791" y="4377"/> + <Point x="5735" y="4377"/> + <Point x="5735" y="4378"/> + <Point x="5731" y="4378"/> + <Point x="5731" y="4379"/> + <Point x="5726" y="4379"/> + <Point x="5726" y="4380"/> + <Point x="5723" y="4380"/> + <Point x="5723" y="4379"/> + <Point x="5666" y="4379"/> + <Point x="5666" y="4378"/> + <Point x="5557" y="4378"/> + <Point x="5559" y="4371"/> + <Point x="5559" y="4369"/> + <Point x="5560" y="4369"/> + <Point x="5560" y="4366"/> + <Point x="5561" y="4366"/> + <Point x="5561" y="4363"/> + <Point x="5562" y="4363"/> + <Point x="5562" y="4360"/> + <Point x="5563" y="4360"/> + <Point x="5564" y="4348"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>WINDSOR—THURSDAY.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r756" type="paragraph"> + <Coords> + <Point x="5607" y="4379"/> + <Point x="5607" y="4380"/> + <Point x="5664" y="4380"/> + <Point x="5664" y="4381"/> + <Point x="5721" y="4381"/> + <Point x="5721" y="4382"/> + <Point x="5728" y="4382"/> + <Point x="5728" y="4381"/> + <Point x="5733" y="4381"/> + <Point x="5733" y="4380"/> + <Point x="5737" y="4380"/> + <Point x="5737" y="4379"/> + <Point x="5789" y="4379"/> + <Point x="5789" y="4380"/> + <Point x="5843" y="4380"/> + <Point x="5843" y="4381"/> + <Point x="5896" y="4381"/> + <Point x="5896" y="4382"/> + <Point x="5909" y="4382"/> + <Point x="5909" y="4381"/> + <Point x="5920" y="4381"/> + <Point x="5920" y="4380"/> + <Point x="5943" y="4379"/> + <Point x="5943" y="4380"/> + <Point x="5991" y="4380"/> + <Point x="6003" y="4386"/> + <Point x="6031" y="4386"/> + <Point x="6031" y="4385"/> + <Point x="6034" y="4385"/> + <Point x="6034" y="4384"/> + <Point x="6037" y="4384"/> + <Point x="6037" y="4383"/> + <Point x="6040" y="4383"/> + <Point x="6040" y="4382"/> + <Point x="6043" y="4382"/> + <Point x="6043" y="4381"/> + <Point x="6046" y="4381"/> + <Point x="6046" y="4376"/> + <Point x="6104" y="4376"/> + <Point x="6104" y="4442"/> + <Point x="6087" y="4442"/> + <Point x="6087" y="4441"/> + <Point x="6036" y="4441"/> + <Point x="6036" y="4442"/> + <Point x="6023" y="4442"/> + <Point x="6023" y="4443"/> + <Point x="5938" y="4443"/> + <Point x="5938" y="4444"/> + <Point x="5925" y="4444"/> + <Point x="5925" y="4443"/> + <Point x="5905" y="4443"/> + <Point x="5905" y="4444"/> + <Point x="5845" y="4444"/> + <Point x="5845" y="4445"/> + <Point x="5843" y="4445"/> + <Point x="5843" y="4446"/> + <Point x="5841" y="4446"/> + <Point x="5841" y="4447"/> + <Point x="5839" y="4447"/> + <Point x="5839" y="4448"/> + <Point x="5837" y="4448"/> + <Point x="5837" y="4449"/> + <Point x="5835" y="4449"/> + <Point x="5835" y="4450"/> + <Point x="5834" y="4450"/> + <Point x="5834" y="4451"/> + <Point x="5820" y="4451"/> + <Point x="5814" y="4443"/> + <Point x="5644" y="4444"/> + <Point x="5644" y="4445"/> + <Point x="5594" y="4445"/> + <Point x="5594" y="4446"/> + <Point x="5533" y="4446"/> + <Point x="5533" y="4447"/> + <Point x="5455" y="4447"/> + <Point x="5455" y="4450"/> + <Point x="5454" y="4450"/> + <Point x="5454" y="4453"/> + <Point x="5453" y="4453"/> + <Point x="5453" y="4456"/> + <Point x="5452" y="4456"/> + <Point x="5452" y="4458"/> + <Point x="5451" y="4458"/> + <Point x="5451" y="4461"/> + <Point x="5450" y="4461"/> + <Point x="5450" y="4464"/> + <Point x="5447" y="4482"/> + <Point x="5352" y="4482"/> + <Point x="5347" y="4429"/> + <Point x="5372" y="4429"/> + <Point x="5372" y="4427"/> + <Point x="5373" y="4427"/> + <Point x="5373" y="4426"/> + <Point x="5374" y="4426"/> + <Point x="5374" y="4424"/> + <Point x="5375" y="4424"/> + <Point x="5375" y="4423"/> + <Point x="5376" y="4423"/> + <Point x="5376" y="4422"/> + <Point x="5377" y="4422"/> + <Point x="5377" y="4420"/> + <Point x="5378" y="4420"/> + <Point x="5378" y="4419"/> + <Point x="5379" y="4419"/> + <Point x="5379" y="4418"/> + <Point x="5380" y="4418"/> + <Point x="5380" y="4416"/> + <Point x="5381" y="4416"/> + <Point x="5381" y="4415"/> + <Point x="5382" y="4415"/> + <Point x="5381" y="4385"/> + <Point x="5408" y="4385"/> + <Point x="5409" y="4394"/> + <Point x="5436" y="4394"/> + <Point x="5436" y="4393"/> + <Point x="5437" y="4393"/> + <Point x="5437" y="4392"/> + <Point x="5438" y="4392"/> + <Point x="5438" y="4391"/> + <Point x="5440" y="4391"/> + <Point x="5440" y="4390"/> + <Point x="5441" y="4390"/> + <Point x="5441" y="4389"/> + <Point x="5442" y="4389"/> + <Point x="5442" y="4388"/> + <Point x="5443" y="4388"/> + <Point x="5443" y="4387"/> + <Point x="5445" y="4387"/> + <Point x="5445" y="4386"/> + <Point x="5446" y="4386"/> + <Point x="5446" y="4385"/> + <Point x="5447" y="4385"/> + <Point x="5447" y="4384"/> + <Point x="5448" y="4384"/> + <Point x="5448" y="4383"/> + <Point x="5473" y="4383"/> + <Point x="5485" y="4384"/> + <Point x="5498" y="4384"/> + <Point x="5497" y="4384"/> + <Point x="5524" y="4385"/> + <Point x="5535" y="4385"/> + <Point x="5552" y="4391"/> + <Point x="5563" y="4390"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>Her Majesty and his Royal Highness Prince Albert +walked for some time this morning on the terrace of the +Castle.</Unicode></TextEquiv></TextRegion> + <SeparatorRegion id="r757"> + <Coords> + <Point x="5890" y="5337"/> + <Point x="5890" y="5315"/> + <Point x="5612" y="5315"/> + <Point x="5612" y="5337"/></Coords></SeparatorRegion> + <TextRegion id="r759" type="paragraph"> + <Coords> + <Point x="5446" y="5819"/> + <Point x="5447" y="5819"/> + <Point x="5469" y="5820"/> + <Point x="5471" y="5819"/> + <Point x="5472" y="5819"/> + <Point x="5472" y="5818"/> + <Point x="5474" y="5817"/> + <Point x="5475" y="5815"/> + <Point x="5473" y="5813"/> + <Point x="5507" y="5813"/> + <Point x="5501" y="5818"/> + <Point x="5502" y="5818"/> + <Point x="5503" y="5820"/> + <Point x="5545" y="5821"/> + <Point x="5562" y="5821"/> + <Point x="5586" y="5822"/> + <Point x="5589" y="5821"/> + <Point x="5589" y="5820"/> + <Point x="5593" y="5819"/> + <Point x="5598" y="5813"/> + <Point x="5617" y="5813"/> + <Point x="5619" y="5818"/> + <Point x="5620" y="5818"/> + <Point x="5620" y="5819"/> + <Point x="5621" y="5819"/> + <Point x="5621" y="5820"/> + <Point x="5622" y="5820"/> + <Point x="5622" y="5821"/> + <Point x="5650" y="5821"/> + <Point x="5686" y="5822"/> + <Point x="5783" y="5819"/> + <Point x="5801" y="5827"/> + <Point x="5845" y="5827"/> + <Point x="5845" y="5823"/> + <Point x="5846" y="5823"/> + <Point x="5849" y="5818"/> + <Point x="5864" y="5818"/> + <Point x="5867" y="5821"/> + <Point x="5870" y="5821"/> + <Point x="5995" y="5816"/> + <Point x="6000" y="5816"/> + <Point x="6092" y="5799"/> + <Point x="6122" y="5800"/> + <Point x="6121" y="5866"/> + <Point x="6116" y="5928"/> + <Point x="6115" y="5928"/> + <Point x="6115" y="5929"/> + <Point x="6114" y="5929"/> + <Point x="6114" y="5930"/> + <Point x="6113" y="5930"/> + <Point x="6113" y="5931"/> + <Point x="6082" y="5938"/> + <Point x="6083" y="5940"/> + <Point x="6084" y="5940"/> + <Point x="6084" y="5941"/> + <Point x="6085" y="5941"/> + <Point x="6085" y="5943"/> + <Point x="6086" y="5943"/> + <Point x="6086" y="5944"/> + <Point x="6087" y="5944"/> + <Point x="6087" y="5946"/> + <Point x="6088" y="5946"/> + <Point x="6088" y="5947"/> + <Point x="6089" y="5947"/> + <Point x="6089" y="5949"/> + <Point x="6090" y="5949"/> + <Point x="6090" y="5950"/> + <Point x="6091" y="5950"/> + <Point x="6091" y="5952"/> + <Point x="6092" y="5952"/> + <Point x="6092" y="5953"/> + <Point x="6093" y="5953"/> + <Point x="6093" y="5955"/> + <Point x="6094" y="5955"/> + <Point x="6040" y="5955"/> + <Point x="6040" y="5956"/> + <Point x="5968" y="5956"/> + <Point x="5968" y="5957"/> + <Point x="5897" y="5957"/> + <Point x="5897" y="5958"/> + <Point x="5825" y="5958"/> + <Point x="5825" y="5959"/> + <Point x="5754" y="5959"/> + <Point x="5754" y="5960"/> + <Point x="5682" y="5960"/> + <Point x="5682" y="5961"/> + <Point x="5611" y="5961"/> + <Point x="5611" y="5962"/> + <Point x="5540" y="5962"/> + <Point x="5540" y="5963"/> + <Point x="5539" y="5963"/> + <Point x="5539" y="5965"/> + <Point x="5538" y="5965"/> + <Point x="5538" y="5967"/> + <Point x="5537" y="5967"/> + <Point x="5537" y="5968"/> + <Point x="5536" y="5968"/> + <Point x="5536" y="5970"/> + <Point x="5535" y="5970"/> + <Point x="5535" y="5972"/> + <Point x="5534" y="5972"/> + <Point x="5534" y="5973"/> + <Point x="5533" y="5973"/> + <Point x="5533" y="5975"/> + <Point x="5532" y="5975"/> + <Point x="5532" y="5977"/> + <Point x="5531" y="5977"/> + <Point x="5531" y="5979"/> + <Point x="5530" y="5979"/> + <Point x="5530" y="5980"/> + <Point x="5529" y="5980"/> + <Point x="5529" y="5982"/> + <Point x="5528" y="5982"/> + <Point x="5528" y="5984"/> + <Point x="5527" y="5984"/> + <Point x="5527" y="5985"/> + <Point x="5526" y="5985"/> + <Point x="5526" y="5987"/> + <Point x="5525" y="5987"/> + <Point x="5525" y="5989"/> + <Point x="5524" y="5989"/> + <Point x="5524" y="5990"/> + <Point x="5513" y="5990"/> + <Point x="5513" y="5989"/> + <Point x="5501" y="5989"/> + <Point x="5501" y="5988"/> + <Point x="5489" y="5988"/> + <Point x="5489" y="5987"/> + <Point x="5477" y="5987"/> + <Point x="5477" y="5986"/> + <Point x="5465" y="5986"/> + <Point x="5465" y="5985"/> + <Point x="5453" y="5985"/> + <Point x="5453" y="5984"/> + <Point x="5447" y="5984"/> + <Point x="5447" y="5983"/> + <Point x="5441" y="5983"/> + <Point x="5441" y="5982"/> + <Point x="5434" y="5982"/> + <Point x="5434" y="5981"/> + <Point x="5428" y="5981"/> + <Point x="5428" y="5980"/> + <Point x="5419" y="5980"/> + <Point x="5419" y="5981"/> + <Point x="5417" y="5981"/> + <Point x="5417" y="5982"/> + <Point x="5414" y="5982"/> + <Point x="5414" y="5983"/> + <Point x="5411" y="5983"/> + <Point x="5411" y="5984"/> + <Point x="5408" y="5984"/> + <Point x="5408" y="5985"/> + <Point x="5408" y="5982"/> + <Point x="5400" y="5982"/> + <Point x="5400" y="5983"/> + <Point x="5386" y="5983"/> + <Point x="5386" y="5982"/> + <Point x="5377" y="5982"/> + <Point x="5377" y="5981"/> + <Point x="5369" y="5981"/> + <Point x="5369" y="5933"/> + <Point x="5368" y="5933"/> + <Point x="5368" y="5885"/> + <Point x="5367" y="5885"/> + <Point x="5367" y="5859"/> + <Point x="5385" y="5859"/> + <Point x="5385" y="5858"/> + <Point x="5393" y="5858"/> + <Point x="5393" y="5849"/> + <Point x="5394" y="5849"/> + <Point x="5394" y="5840"/> + <Point x="5395" y="5840"/> + <Point x="5395" y="5831"/> + <Point x="5396" y="5831"/> + <Point x="5396" y="5822"/> + <Point x="5397" y="5822"/> + <Point x="5397" y="5814"/> + <Point x="5446" y="5814"/> + <Point x="5446" y="5813"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>The QUEEN has been pleased to appoint Sir NI- +CHOLAS HARRIS NICOLAS, Chancellor and Senior Knight +Commander of the Most Distinguished Order of St. Mi- +chael and St. George, to be a Knight Grand Cross of the +said order.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r767" type="paragraph"> + <Coords> + <Point x="6095" y="5957"/> + <Point x="6095" y="5958"/> + <Point x="6096" y="5958"/> + <Point x="6096" y="5959"/> + <Point x="6097" y="5959"/> + <Point x="6097" y="5961"/> + <Point x="6098" y="5961"/> + <Point x="6098" y="5962"/> + <Point x="6099" y="5962"/> + <Point x="6099" y="5964"/> + <Point x="6100" y="5964"/> + <Point x="6100" y="5965"/> + <Point x="6101" y="5965"/> + <Point x="6101" y="5967"/> + <Point x="6102" y="5967"/> + <Point x="6102" y="5968"/> + <Point x="6103" y="5968"/> + <Point x="6103" y="5970"/> + <Point x="6104" y="5970"/> + <Point x="6104" y="5971"/> + <Point x="6119" y="5971"/> + <Point x="6119" y="6018"/> + <Point x="6120" y="6018"/> + <Point x="6120" y="6019"/> + <Point x="6121" y="6019"/> + <Point x="6121" y="6196"/> + <Point x="6122" y="6196"/> + <Point x="6122" y="6231"/> + <Point x="6123" y="6231"/> + <Point x="6122" y="6231"/> + <Point x="6122" y="6315"/> + <Point x="6123" y="6315"/> + <Point x="6123" y="6332"/> + <Point x="6124" y="6332"/> + <Point x="6124" y="6377"/> + <Point x="6125" y="6377"/> + <Point x="6125" y="6421"/> + <Point x="6126" y="6421"/> + <Point x="6127" y="6450"/> + <Point x="6126" y="6465"/> + <Point x="6127" y="6465"/> + <Point x="6126" y="6465"/> + <Point x="6127" y="6512"/> + <Point x="6128" y="6552"/> + <Point x="6126" y="6591"/> + <Point x="6127" y="6591"/> + <Point x="6127" y="6592"/> + <Point x="6126" y="6592"/> + <Point x="6126" y="6591"/> + <Point x="6129" y="6671"/> + <Point x="6129" y="6715"/> + <Point x="6128" y="6740"/> + <Point x="6123" y="6739"/> + <Point x="6123" y="6741"/> + <Point x="6122" y="6741"/> + <Point x="6122" y="6743"/> + <Point x="6121" y="6743"/> + <Point x="6121" y="6744"/> + <Point x="6120" y="6744"/> + <Point x="6119" y="6746"/> + <Point x="6119" y="6748"/> + <Point x="6118" y="6748"/> + <Point x="6117" y="6749"/> + <Point x="6130" y="6750"/> + <Point x="6124" y="6775"/> + <Point x="6116" y="6775"/> + <Point x="6116" y="6777"/> + <Point x="6117" y="6777"/> + <Point x="6117" y="6779"/> + <Point x="6118" y="6779"/> + <Point x="6118" y="6781"/> + <Point x="6119" y="6781"/> + <Point x="6120" y="6783"/> + <Point x="6120" y="6785"/> + <Point x="6121" y="6785"/> + <Point x="6121" y="6787"/> + <Point x="6122" y="6787"/> + <Point x="6122" y="6789"/> + <Point x="6123" y="6789"/> + <Point x="6124" y="6791"/> + <Point x="6129" y="6840"/> + <Point x="6116" y="6840"/> + <Point x="6116" y="6842"/> + <Point x="6117" y="6842"/> + <Point x="6117" y="6843"/> + <Point x="6119" y="6843"/> + <Point x="6119" y="6844"/> + <Point x="6130" y="6844"/> + <Point x="6128" y="6873"/> + <Point x="6122" y="6874"/> + <Point x="6121" y="6874"/> + <Point x="6121" y="6875"/> + <Point x="6120" y="6875"/> + <Point x="6120" y="6877"/> + <Point x="6119" y="6877"/> + <Point x="6119" y="6878"/> + <Point x="6118" y="6878"/> + <Point x="6118" y="6879"/> + <Point x="6117" y="6879"/> + <Point x="6117" y="6881"/> + <Point x="6116" y="6881"/> + <Point x="6116" y="6882"/> + <Point x="6115" y="6882"/> + <Point x="6131" y="6882"/> + <Point x="6128" y="6914"/> + <Point x="6124" y="6945"/> + <Point x="6125" y="6944"/> + <Point x="6125" y="6950"/> + <Point x="6126" y="6950"/> + <Point x="6126" y="6956"/> + <Point x="6131" y="7037"/> + <Point x="6137" y="7098"/> + <Point x="6134" y="7230"/> + <Point x="6135" y="7275"/> + <Point x="6135" y="7360"/> + <Point x="6141" y="7465"/> + <Point x="6142" y="7528"/> + <Point x="6143" y="7584"/> + <Point x="6142" y="7652"/> + <Point x="6140" y="7679"/> + <Point x="6134" y="7682"/> + <Point x="5912" y="7706"/> + <Point x="5912" y="7707"/> + <Point x="5887" y="7712"/> + <Point x="5878" y="7712"/> + <Point x="5857" y="7709"/> + <Point x="5857" y="7710"/> + <Point x="5839" y="7710"/> + <Point x="5839" y="7711"/> + <Point x="5820" y="7711"/> + <Point x="5820" y="7712"/> + <Point x="5802" y="7712"/> + <Point x="5802" y="7713"/> + <Point x="5783" y="7713"/> + <Point x="5783" y="7714"/> + <Point x="5765" y="7714"/> + <Point x="5765" y="7715"/> + <Point x="5746" y="7715"/> + <Point x="5746" y="7716"/> + <Point x="5728" y="7717"/> + <Point x="5560" y="7718"/> + <Point x="5537" y="7719"/> + <Point x="5536" y="7712"/> + <Point x="5419" y="7712"/> + <Point x="5392" y="7713"/> + <Point x="5392" y="7689"/> + <Point x="5391" y="7647"/> + <Point x="5389" y="7598"/> + <Point x="5388" y="7513"/> + <Point x="5386" y="7421"/> + <Point x="5386" y="7333"/> + <Point x="5385" y="7293"/> + <Point x="5386" y="7243"/> + <Point x="5385" y="7243"/> + <Point x="5385" y="7198"/> + <Point x="5384" y="7198"/> + <Point x="5384" y="7153"/> + <Point x="5383" y="7153"/> + <Point x="5383" y="7109"/> + <Point x="5382" y="7109"/> + <Point x="5382" y="7064"/> + <Point x="5381" y="7064"/> + <Point x="5381" y="7019"/> + <Point x="5380" y="7019"/> + <Point x="5380" y="6975"/> + <Point x="5379" y="6975"/> + <Point x="5380" y="6975"/> + <Point x="5380" y="6973"/> + <Point x="5381" y="6973"/> + <Point x="5379" y="6843"/> + <Point x="5380" y="6834"/> + <Point x="5380" y="6833"/> + <Point x="5379" y="6833"/> + <Point x="5379" y="6832"/> + <Point x="5378" y="6832"/> + <Point x="5378" y="6808"/> + <Point x="5379" y="6808"/> + <Point x="5378" y="6804"/> + <Point x="5378" y="6770"/> + <Point x="5379" y="6765"/> + <Point x="5378" y="6765"/> + <Point x="5376" y="6664"/> + <Point x="5375" y="6664"/> + <Point x="5375" y="6649"/> + <Point x="5376" y="6649"/> + <Point x="5374" y="6616"/> + <Point x="5372" y="6548"/> + <Point x="5379" y="6544"/> + <Point x="5380" y="6544"/> + <Point x="5381" y="6543"/> + <Point x="5381" y="6542"/> + <Point x="5382" y="6541"/> + <Point x="5384" y="6540"/> + <Point x="5384" y="6539"/> + <Point x="5385" y="6539"/> + <Point x="5385" y="6538"/> + <Point x="5373" y="6535"/> + <Point x="5373" y="6534"/> + <Point x="5372" y="6534"/> + <Point x="5372" y="6533"/> + <Point x="5371" y="6533"/> + <Point x="5371" y="6518"/> + <Point x="5370" y="6514"/> + <Point x="5378" y="6514"/> + <Point x="5378" y="6513"/> + <Point x="5379" y="6513"/> + <Point x="5379" y="6512"/> + <Point x="5380" y="6512"/> + <Point x="5380" y="6511"/> + <Point x="5382" y="6511"/> + <Point x="5382" y="6510"/> + <Point x="5383" y="6510"/> + <Point x="5383" y="6509"/> + <Point x="5384" y="6509"/> + <Point x="5384" y="6508"/> + <Point x="5386" y="6508"/> + <Point x="5386" y="6507"/> + <Point x="5387" y="6507"/> + <Point x="5388" y="6506"/> + <Point x="5388" y="6504"/> + <Point x="5369" y="6505"/> + <Point x="5368" y="6483"/> + <Point x="5367" y="6453"/> + <Point x="5372" y="6448"/> + <Point x="5391" y="6448"/> + <Point x="5391" y="6447"/> + <Point x="5392" y="6447"/> + <Point x="5392" y="6446"/> + <Point x="5393" y="6446"/> + <Point x="5394" y="6445"/> + <Point x="5394" y="6444"/> + <Point x="5395" y="6444"/> + <Point x="5395" y="6443"/> + <Point x="5396" y="6443"/> + <Point x="5397" y="6441"/> + <Point x="5397" y="6440"/> + <Point x="5398" y="6440"/> + <Point x="5398" y="6439"/> + <Point x="5399" y="6439"/> + <Point x="5399" y="6438"/> + <Point x="5400" y="6438"/> + <Point x="5400" y="6437"/> + <Point x="5401" y="6437"/> + <Point x="5368" y="6438"/> + <Point x="5370" y="6413"/> + <Point x="5402" y="6406"/> + <Point x="5402" y="6405"/> + <Point x="5383" y="6405"/> + <Point x="5383" y="6406"/> + <Point x="5368" y="6407"/> + <Point x="5368" y="6384"/> + <Point x="5375" y="6384"/> + <Point x="5375" y="6383"/> + <Point x="5376" y="6383"/> + <Point x="5376" y="6382"/> + <Point x="5377" y="6382"/> + <Point x="5377" y="6381"/> + <Point x="5378" y="6381"/> + <Point x="5378" y="6380"/> + <Point x="5379" y="6380"/> + <Point x="5379" y="6379"/> + <Point x="5380" y="6379"/> + <Point x="5380" y="6378"/> + <Point x="5381" y="6378"/> + <Point x="5381" y="6377"/> + <Point x="5382" y="6377"/> + <Point x="5382" y="6376"/> + <Point x="5383" y="6376"/> + <Point x="5383" y="6375"/> + <Point x="5384" y="6375"/> + <Point x="5384" y="6373"/> + <Point x="5368" y="6373"/> + <Point x="5367" y="6350"/> + <Point x="5376" y="6349"/> + <Point x="5377" y="6349"/> + <Point x="5377" y="6348"/> + <Point x="5378" y="6348"/> + <Point x="5378" y="6347"/> + <Point x="5380" y="6347"/> + <Point x="5380" y="6346"/> + <Point x="5381" y="6346"/> + <Point x="5381" y="6345"/> + <Point x="5382" y="6345"/> + <Point x="5382" y="6344"/> + <Point x="5383" y="6344"/> + <Point x="5383" y="6343"/> + <Point x="5384" y="6343"/> + <Point x="5384" y="6342"/> + <Point x="5385" y="6342"/> + <Point x="5385" y="6340"/> + <Point x="5367" y="6340"/> + <Point x="5368" y="6223"/> + <Point x="5368" y="6183"/> + <Point x="5370" y="6151"/> + <Point x="5369" y="6131"/> + <Point x="5373" y="6046"/> + <Point x="5372" y="6046"/> + <Point x="5372" y="6036"/> + <Point x="5371" y="6036"/> + <Point x="5394" y="6036"/> + <Point x="5394" y="6031"/> + <Point x="5395" y="6031"/> + <Point x="5395" y="6027"/> + <Point x="5396" y="6027"/> + <Point x="5396" y="6023"/> + <Point x="5397" y="6023"/> + <Point x="5397" y="6020"/> + <Point x="5398" y="6020"/> + <Point x="5398" y="6017"/> + <Point x="5399" y="6017"/> + <Point x="5399" y="6014"/> + <Point x="5400" y="6014"/> + <Point x="5400" y="6010"/> + <Point x="5401" y="6010"/> + <Point x="5401" y="6007"/> + <Point x="5402" y="6007"/> + <Point x="5402" y="6004"/> + <Point x="5403" y="6004"/> + <Point x="5403" y="6001"/> + <Point x="5404" y="6001"/> + <Point x="5404" y="5997"/> + <Point x="5405" y="5997"/> + <Point x="5405" y="5994"/> + <Point x="5406" y="5994"/> + <Point x="5406" y="5991"/> + <Point x="5407" y="5991"/> + <Point x="5407" y="5988"/> + <Point x="5408" y="5988"/> + <Point x="5408" y="5987"/> + <Point x="5410" y="5987"/> + <Point x="5410" y="5986"/> + <Point x="5413" y="5986"/> + <Point x="5413" y="5985"/> + <Point x="5416" y="5985"/> + <Point x="5416" y="5984"/> + <Point x="5419" y="5984"/> + <Point x="5419" y="5983"/> + <Point x="5421" y="5983"/> + <Point x="5421" y="5982"/> + <Point x="5426" y="5982"/> + <Point x="5426" y="5983"/> + <Point x="5432" y="5983"/> + <Point x="5432" y="5984"/> + <Point x="5439" y="5984"/> + <Point x="5439" y="5985"/> + <Point x="5445" y="5985"/> + <Point x="5445" y="5986"/> + <Point x="5451" y="5986"/> + <Point x="5451" y="5987"/> + <Point x="5463" y="5987"/> + <Point x="5463" y="5988"/> + <Point x="5475" y="5988"/> + <Point x="5475" y="5989"/> + <Point x="5487" y="5989"/> + <Point x="5487" y="5990"/> + <Point x="5499" y="5990"/> + <Point x="5499" y="5991"/> + <Point x="5511" y="5991"/> + <Point x="5511" y="5992"/> + <Point x="5522" y="5992"/> + <Point x="5522" y="5993"/> + <Point x="5525" y="5993"/> + <Point x="5525" y="5992"/> + <Point x="5526" y="5992"/> + <Point x="5526" y="5991"/> + <Point x="5527" y="5991"/> + <Point x="5527" y="5989"/> + <Point x="5528" y="5989"/> + <Point x="5528" y="5987"/> + <Point x="5529" y="5987"/> + <Point x="5529" y="5986"/> + <Point x="5530" y="5986"/> + <Point x="5530" y="5984"/> + <Point x="5531" y="5984"/> + <Point x="5531" y="5982"/> + <Point x="5532" y="5982"/> + <Point x="5532" y="5981"/> + <Point x="5533" y="5981"/> + <Point x="5533" y="5979"/> + <Point x="5534" y="5979"/> + <Point x="5534" y="5977"/> + <Point x="5535" y="5977"/> + <Point x="5535" y="5975"/> + <Point x="5536" y="5975"/> + <Point x="5536" y="5974"/> + <Point x="5537" y="5974"/> + <Point x="5537" y="5972"/> + <Point x="5538" y="5972"/> + <Point x="5538" y="5970"/> + <Point x="5539" y="5970"/> + <Point x="5539" y="5969"/> + <Point x="5540" y="5969"/> + <Point x="5540" y="5967"/> + <Point x="5541" y="5967"/> + <Point x="5541" y="5965"/> + <Point x="5542" y="5965"/> + <Point x="5542" y="5964"/> + <Point x="5613" y="5964"/> + <Point x="5613" y="5963"/> + <Point x="5684" y="5963"/> + <Point x="5684" y="5962"/> + <Point x="5756" y="5962"/> + <Point x="5756" y="5961"/> + <Point x="5827" y="5961"/> + <Point x="5827" y="5960"/> + <Point x="5899" y="5960"/> + <Point x="5899" y="5959"/> + <Point x="5970" y="5959"/> + <Point x="5970" y="5958"/> + <Point x="6042" y="5958"/> + <Point x="6042" y="5957"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>A CHANGELING.—On Tuesday last, an occurrence +of an extraordinary nature came to the knowledge of the +inhabitants of Whiddon, near Rainhill. In the course of +the day a plain‑looking woman, with a child in her arms, +walked into the Hanging Birch, a small beer‑shop at +Whiddon, and called for a glass of ale. This request was +addressed to the female who kept the house, who, at the +time, was busily employed preparing a batch of bread for +the oven. She immediately abandoned her then occupa- +tion to wait upon her customer, and went down stairs to +draw the beer, leaving her own infant in the cradle fast +asleep. On her return from the cellar, the landlady’s +surprise may be conceived at finding her customer had +vanished, without waiting for the liquor she had been +put to the trouble of drawing. The abrupt departure +of her guest caused no suspicion at the moment of +anything being wrong, as everything, on her re- +turn from below stairs, appeared just as she had left +it. In a little while, however, a discovery took place +which nearly deprived the poor woman of her reason, +and might have led to consequences not easily for�seen. +The child in the cradle having become restless, and +notifying by loud screams that the attention of a parent +would be desirable, the mother stooped to take it in +her arms, when—who can describe the state of her +feelings—she found the infant quite black in the face. +Thinking it was labouring under strong convulsions, she +posted off for medical assistance in a state of mind +bordering on distraction. The medical man, on being +consulted, declared that nothing on earth was the +matter with the child, it being as healthy a +babe as had lately come under his inspection; and +as for the darkness of its face, it was produced +by natural causes, the fact being that the child was +born black, for no other reason than because its pro- +genitor must have been of the same colour. The truth +of the matter instantly flashed across the mind of the +unhappy woman, and the conclusion was, that her own +“sweet babe” had been carried off by the stranger wo- +man, who had substituted this precious pie caniny of +ebony huc—a black child, on the principle chat “ex- +change is no robbery.” The hue and cry was instantly +raised, but without leading to the discovery of the per- +petrator of this wanton and cruel outrage. It is thought +that a sense of shame induced by an illicit commu- +nion of the female with a man of co�our must have been +the cause of her practising th�s “ingenious device.” +The young “darky,” who was �� the genuine “double +smut,” and would rival in ustre Morison’s famous +Japan, was immediately packed off to the workhouse, +where, we believe, the “nigger” still remains, with but +slender hopes of paternity.—Liverpool Times.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r769" type="paragraph"> + <Coords> + <Point x="4418" y="590"/> + <Point x="4418" y="591"/> + <Point x="4422" y="591"/> + <Point x="4422" y="592"/> + <Point x="4425" y="592"/> + <Point x="4425" y="593"/> + <Point x="4432" y="593"/> + <Point x="4432" y="592"/> + <Point x="4438" y="592"/> + <Point x="4438" y="591"/> + <Point x="4454" y="591"/> + <Point x="4454" y="593"/> + <Point x="4455" y="593"/> + <Point x="4455" y="595"/> + <Point x="4456" y="595"/> + <Point x="4456" y="597"/> + <Point x="4474" y="597"/> + <Point x="4474" y="636"/> + <Point x="4441" y="636"/> + <Point x="4441" y="637"/> + <Point x="4407" y="637"/> + <Point x="4407" y="638"/> + <Point x="4373" y="638"/> + <Point x="4373" y="639"/> + <Point x="4338" y="639"/> + <Point x="4338" y="640"/> + <Point x="4304" y="640"/> + <Point x="4304" y="641"/> + <Point x="4270" y="641"/> + <Point x="4270" y="642"/> + <Point x="4236" y="642"/> + <Point x="4236" y="643"/> + <Point x="4201" y="643"/> + <Point x="4201" y="644"/> + <Point x="4167" y="644"/> + <Point x="4167" y="645"/> + <Point x="4133" y="645"/> + <Point x="4133" y="646"/> + <Point x="4099" y="646"/> + <Point x="4099" y="649"/> + <Point x="4098" y="649"/> + <Point x="4098" y="652"/> + <Point x="4097" y="652"/> + <Point x="4097" y="655"/> + <Point x="4096" y="655"/> + <Point x="4096" y="658"/> + <Point x="4095" y="658"/> + <Point x="4095" y="661"/> + <Point x="4094" y="661"/> + <Point x="4094" y="664"/> + <Point x="4093" y="664"/> + <Point x="4093" y="667"/> + <Point x="4092" y="667"/> + <Point x="4092" y="668"/> + <Point x="4091" y="668"/> + <Point x="4091" y="669"/> + <Point x="4087" y="669"/> + <Point x="4087" y="670"/> + <Point x="4082" y="670"/> + <Point x="4082" y="671"/> + <Point x="4078" y="671"/> + <Point x="4078" y="672"/> + <Point x="4073" y="672"/> + <Point x="4073" y="673"/> + <Point x="4069" y="673"/> + <Point x="4069" y="674"/> + <Point x="4005" y="674"/> + <Point x="4005" y="675"/> + <Point x="4004" y="675"/> + <Point x="4004" y="677"/> + <Point x="4003" y="677"/> + <Point x="4003" y="679"/> + <Point x="4002" y="679"/> + <Point x="4002" y="681"/> + <Point x="4001" y="681"/> + <Point x="4001" y="682"/> + <Point x="4000" y="682"/> + <Point x="4000" y="683"/> + <Point x="3983" y="683"/> + <Point x="3983" y="682"/> + <Point x="3981" y="682"/> + <Point x="3981" y="681"/> + <Point x="3978" y="681"/> + <Point x="3978" y="680"/> + <Point x="3975" y="680"/> + <Point x="3975" y="679"/> + <Point x="3972" y="679"/> + <Point x="3972" y="678"/> + <Point x="3930" y="678"/> + <Point x="3930" y="679"/> + <Point x="3883" y="679"/> + <Point x="3883" y="680"/> + <Point x="3826" y="680"/> + <Point x="3826" y="681"/> + <Point x="3825" y="681"/> + <Point x="3825" y="683"/> + <Point x="3824" y="683"/> + <Point x="3824" y="685"/> + <Point x="3823" y="685"/> + <Point x="3823" y="687"/> + <Point x="3822" y="687"/> + <Point x="3822" y="688"/> + <Point x="3821" y="688"/> + <Point x="3821" y="689"/> + <Point x="3820" y="689"/> + <Point x="3820" y="690"/> + <Point x="3802" y="690"/> + <Point x="3802" y="689"/> + <Point x="3801" y="689"/> + <Point x="3801" y="688"/> + <Point x="3800" y="688"/> + <Point x="3800" y="687"/> + <Point x="3799" y="687"/> + <Point x="3799" y="686"/> + <Point x="3798" y="686"/> + <Point x="3798" y="685"/> + <Point x="3797" y="685"/> + <Point x="3797" y="684"/> + <Point x="3796" y="684"/> + <Point x="3796" y="683"/> + <Point x="3774" y="683"/> + <Point x="3774" y="684"/> + <Point x="3756" y="684"/> + <Point x="3756" y="685"/> + <Point x="3737" y="685"/> + <Point x="3737" y="686"/> + <Point x="3719" y="686"/> + <Point x="3719" y="687"/> + <Point x="3718" y="687"/> + <Point x="3718" y="688"/> + <Point x="3717" y="688"/> + <Point x="3717" y="689"/> + <Point x="3716" y="689"/> + <Point x="3716" y="690"/> + <Point x="3715" y="690"/> + <Point x="3715" y="691"/> + <Point x="3714" y="691"/> + <Point x="3714" y="692"/> + <Point x="3713" y="692"/> + <Point x="3713" y="693"/> + <Point x="3712" y="693"/> + <Point x="3712" y="694"/> + <Point x="3711" y="694"/> + <Point x="3711" y="695"/> + <Point x="3710" y="695"/> + <Point x="3710" y="696"/> + <Point x="3709" y="696"/> + <Point x="3709" y="697"/> + <Point x="3708" y="697"/> + <Point x="3708" y="698"/> + <Point x="3707" y="698"/> + <Point x="3707" y="699"/> + <Point x="3706" y="699"/> + <Point x="3706" y="700"/> + <Point x="3705" y="700"/> + <Point x="3705" y="701"/> + <Point x="3704" y="701"/> + <Point x="3704" y="702"/> + <Point x="3703" y="702"/> + <Point x="3703" y="703"/> + <Point x="3702" y="703"/> + <Point x="3702" y="704"/> + <Point x="3701" y="704"/> + <Point x="3701" y="705"/> + <Point x="3700" y="705"/> + <Point x="3700" y="706"/> + <Point x="3699" y="706"/> + <Point x="3699" y="707"/> + <Point x="3698" y="707"/> + <Point x="3698" y="708"/> + <Point x="3695" y="708"/> + <Point x="3695" y="640"/> + <Point x="3696" y="640"/> + <Point x="3696" y="633"/> + <Point x="3697" y="633"/> + <Point x="3697" y="626"/> + <Point x="3698" y="626"/> + <Point x="3698" y="620"/> + <Point x="3764" y="620"/> + <Point x="3764" y="624"/> + <Point x="3784" y="624"/> + <Point x="3784" y="623"/> + <Point x="3785" y="623"/> + <Point x="3785" y="621"/> + <Point x="3786" y="621"/> + <Point x="3786" y="619"/> + <Point x="3787" y="619"/> + <Point x="3787" y="617"/> + <Point x="3788" y="617"/> + <Point x="3788" y="616"/> + <Point x="3829" y="616"/> + <Point x="3829" y="615"/> + <Point x="3870" y="615"/> + <Point x="3870" y="614"/> + <Point x="3908" y="614"/> + <Point x="3908" y="613"/> + <Point x="3959" y="613"/> + <Point x="3959" y="614"/> + <Point x="3961" y="614"/> + <Point x="3961" y="615"/> + <Point x="3963" y="615"/> + <Point x="3963" y="616"/> + <Point x="3965" y="616"/> + <Point x="3965" y="617"/> + <Point x="3966" y="617"/> + <Point x="3966" y="618"/> + <Point x="3968" y="618"/> + <Point x="3968" y="619"/> + <Point x="3970" y="619"/> + <Point x="3970" y="620"/> + <Point x="3986" y="620"/> + <Point x="3986" y="618"/> + <Point x="3987" y="618"/> + <Point x="3987" y="616"/> + <Point x="3988" y="616"/> + <Point x="3988" y="614"/> + <Point x="3989" y="614"/> + <Point x="3989" y="612"/> + <Point x="4011" y="612"/> + <Point x="4011" y="611"/> + <Point x="4024" y="611"/> + <Point x="4024" y="610"/> + <Point x="4039" y="610"/> + <Point x="4039" y="613"/> + <Point x="4040" y="613"/> + <Point x="4040" y="615"/> + <Point x="4041" y="615"/> + <Point x="4041" y="617"/> + <Point x="4056" y="617"/> + <Point x="4056" y="616"/> + <Point x="4057" y="616"/> + <Point x="4057" y="615"/> + <Point x="4059" y="615"/> + <Point x="4059" y="614"/> + <Point x="4060" y="614"/> + <Point x="4060" y="613"/> + <Point x="4061" y="613"/> + <Point x="4061" y="612"/> + <Point x="4063" y="612"/> + <Point x="4063" y="611"/> + <Point x="4064" y="611"/> + <Point x="4064" y="610"/> + <Point x="4066" y="610"/> + <Point x="4066" y="609"/> + <Point x="4067" y="609"/> + <Point x="4067" y="608"/> + <Point x="4068" y="608"/> + <Point x="4068" y="607"/> + <Point x="4081" y="607"/> + <Point x="4081" y="606"/> + <Point x="4108" y="606"/> + <Point x="4108" y="605"/> + <Point x="4124" y="605"/> + <Point x="4124" y="606"/> + <Point x="4126" y="606"/> + <Point x="4126" y="607"/> + <Point x="4127" y="607"/> + <Point x="4127" y="608"/> + <Point x="4129" y="608"/> + <Point x="4129" y="609"/> + <Point x="4130" y="609"/> + <Point x="4130" y="610"/> + <Point x="4132" y="610"/> + <Point x="4132" y="611"/> + <Point x="4133" y="611"/> + <Point x="4133" y="612"/> + <Point x="4135" y="612"/> + <Point x="4135" y="613"/> + <Point x="4136" y="613"/> + <Point x="4136" y="614"/> + <Point x="4138" y="614"/> + <Point x="4138" y="613"/> + <Point x="4140" y="613"/> + <Point x="4140" y="612"/> + <Point x="4142" y="612"/> + <Point x="4142" y="611"/> + <Point x="4144" y="611"/> + <Point x="4144" y="610"/> + <Point x="4145" y="610"/> + <Point x="4145" y="609"/> + <Point x="4147" y="609"/> + <Point x="4147" y="608"/> + <Point x="4149" y="608"/> + <Point x="4149" y="607"/> + <Point x="4151" y="607"/> + <Point x="4151" y="606"/> + <Point x="4152" y="606"/> + <Point x="4152" y="605"/> + <Point x="4159" y="605"/> + <Point x="4159" y="606"/> + <Point x="4161" y="606"/> + <Point x="4161" y="607"/> + <Point x="4162" y="607"/> + <Point x="4162" y="608"/> + <Point x="4163" y="608"/> + <Point x="4163" y="609"/> + <Point x="4180" y="609"/> + <Point x="4180" y="610"/> + <Point x="4186" y="610"/> + <Point x="4186" y="611"/> + <Point x="4206" y="611"/> + <Point x="4206" y="610"/> + <Point x="4223" y="610"/> + <Point x="4223" y="609"/> + <Point x="4238" y="609"/> + <Point x="4238" y="608"/> + <Point x="4240" y="608"/> + <Point x="4240" y="607"/> + <Point x="4242" y="607"/> + <Point x="4242" y="606"/> + <Point x="4244" y="606"/> + <Point x="4244" y="605"/> + <Point x="4246" y="605"/> + <Point x="4246" y="604"/> + <Point x="4248" y="604"/> + <Point x="4248" y="603"/> + <Point x="4250" y="603"/> + <Point x="4250" y="602"/> + <Point x="4252" y="602"/> + <Point x="4252" y="601"/> + <Point x="4254" y="601"/> + <Point x="4254" y="600"/> + <Point x="4255" y="600"/> + <Point x="4255" y="599"/> + <Point x="4271" y="599"/> + <Point x="4271" y="600"/> + <Point x="4274" y="600"/> + <Point x="4274" y="601"/> + <Point x="4276" y="601"/> + <Point x="4276" y="602"/> + <Point x="4278" y="602"/> + <Point x="4278" y="603"/> + <Point x="4280" y="603"/> + <Point x="4280" y="604"/> + <Point x="4282" y="604"/> + <Point x="4282" y="605"/> + <Point x="4284" y="605"/> + <Point x="4284" y="606"/> + <Point x="4286" y="606"/> + <Point x="4286" y="607"/> + <Point x="4288" y="607"/> + <Point x="4288" y="606"/> + <Point x="4304" y="606"/> + <Point x="4304" y="605"/> + <Point x="4310" y="605"/> + <Point x="4310" y="604"/> + <Point x="4316" y="604"/> + <Point x="4316" y="603"/> + <Point x="4333" y="603"/> + <Point x="4333" y="602"/> + <Point x="4349" y="602"/> + <Point x="4349" y="601"/> + <Point x="4355" y="601"/> + <Point x="4355" y="600"/> + <Point x="4360" y="600"/> + <Point x="4360" y="599"/> + <Point x="4363" y="599"/> + <Point x="4363" y="598"/> + <Point x="4366" y="598"/> + <Point x="4366" y="597"/> + <Point x="4369" y="597"/> + <Point x="4369" y="596"/> + <Point x="4372" y="596"/> + <Point x="4372" y="595"/> + <Point x="4375" y="595"/> + <Point x="4375" y="594"/> + <Point x="4378" y="594"/> + <Point x="4378" y="593"/> + <Point x="4395" y="593"/> + <Point x="4395" y="592"/> + <Point x="4399" y="592"/> + <Point x="4399" y="591"/> + <Point x="4403" y="591"/> + <Point x="4403" y="590"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>The Malta Times of the 17th ult. supplies us with the +following naval intelligence:</Unicode></TextEquiv></TextRegion> + <TextRegion id="r771" type="paragraph"> + <Coords> + <Point x="4474" y="638"/> + <Point x="4474" y="772"/> + <Point x="4475" y="772"/> + <Point x="4475" y="883"/> + <Point x="4474" y="883"/> + <Point x="4474" y="1045"/> + <Point x="4455" y="1045"/> + <Point x="4455" y="1046"/> + <Point x="4437" y="1046"/> + <Point x="4437" y="1047"/> + <Point x="4419" y="1047"/> + <Point x="4419" y="1048"/> + <Point x="4401" y="1048"/> + <Point x="4401" y="1049"/> + <Point x="4383" y="1049"/> + <Point x="4383" y="1050"/> + <Point x="4365" y="1050"/> + <Point x="4365" y="1051"/> + <Point x="4346" y="1051"/> + <Point x="4346" y="1052"/> + <Point x="4328" y="1052"/> + <Point x="4328" y="1053"/> + <Point x="4310" y="1053"/> + <Point x="4310" y="1054"/> + <Point x="4292" y="1054"/> + <Point x="4292" y="1055"/> + <Point x="4274" y="1055"/> + <Point x="4274" y="1056"/> + <Point x="4256" y="1056"/> + <Point x="4256" y="1057"/> + <Point x="4238" y="1057"/> + <Point x="4238" y="1058"/> + <Point x="4208" y="1058"/> + <Point x="4208" y="1059"/> + <Point x="4188" y="1059"/> + <Point x="4188" y="1060"/> + <Point x="4168" y="1060"/> + <Point x="4168" y="1061"/> + <Point x="4148" y="1061"/> + <Point x="4148" y="1062"/> + <Point x="4128" y="1062"/> + <Point x="4128" y="1063"/> + <Point x="4108" y="1063"/> + <Point x="4108" y="1064"/> + <Point x="4088" y="1064"/> + <Point x="4088" y="1065"/> + <Point x="4069" y="1065"/> + <Point x="4069" y="1066"/> + <Point x="4068" y="1066"/> + <Point x="4068" y="1068"/> + <Point x="4067" y="1068"/> + <Point x="4067" y="1070"/> + <Point x="4066" y="1070"/> + <Point x="4066" y="1071"/> + <Point x="4065" y="1071"/> + <Point x="4065" y="1073"/> + <Point x="4064" y="1073"/> + <Point x="4064" y="1074"/> + <Point x="4063" y="1074"/> + <Point x="4063" y="1076"/> + <Point x="4062" y="1076"/> + <Point x="4062" y="1078"/> + <Point x="4061" y="1078"/> + <Point x="4061" y="1079"/> + <Point x="4060" y="1079"/> + <Point x="4060" y="1081"/> + <Point x="4059" y="1081"/> + <Point x="4059" y="1082"/> + <Point x="4058" y="1082"/> + <Point x="4058" y="1084"/> + <Point x="4057" y="1084"/> + <Point x="4057" y="1086"/> + <Point x="4056" y="1086"/> + <Point x="4056" y="1087"/> + <Point x="4055" y="1087"/> + <Point x="4055" y="1089"/> + <Point x="4054" y="1089"/> + <Point x="4054" y="1090"/> + <Point x="4053" y="1090"/> + <Point x="4053" y="1092"/> + <Point x="4052" y="1092"/> + <Point x="4052" y="1094"/> + <Point x="4051" y="1094"/> + <Point x="4051" y="1095"/> + <Point x="4050" y="1095"/> + <Point x="4050" y="1097"/> + <Point x="4049" y="1097"/> + <Point x="4049" y="1098"/> + <Point x="4023" y="1098"/> + <Point x="4023" y="1099"/> + <Point x="3997" y="1099"/> + <Point x="3997" y="1100"/> + <Point x="3971" y="1100"/> + <Point x="3971" y="1101"/> + <Point x="3945" y="1101"/> + <Point x="3945" y="1102"/> + <Point x="3909" y="1102"/> + <Point x="3909" y="1103"/> + <Point x="3874" y="1103"/> + <Point x="3874" y="1104"/> + <Point x="3839" y="1104"/> + <Point x="3839" y="1105"/> + <Point x="3804" y="1105"/> + <Point x="3804" y="1106"/> + <Point x="3803" y="1106"/> + <Point x="3803" y="1108"/> + <Point x="3802" y="1108"/> + <Point x="3802" y="1110"/> + <Point x="3801" y="1110"/> + <Point x="3801" y="1112"/> + <Point x="3800" y="1112"/> + <Point x="3800" y="1114"/> + <Point x="3787" y="1114"/> + <Point x="3787" y="1106"/> + <Point x="3756" y="1106"/> + <Point x="3756" y="1107"/> + <Point x="3726" y="1107"/> + <Point x="3726" y="1108"/> + <Point x="3697" y="1108"/> + <Point x="3697" y="1109"/> + <Point x="3697" y="972"/> + <Point x="3696" y="972"/> + <Point x="3696" y="835"/> + <Point x="3695" y="835"/> + <Point x="3696" y="835"/> + <Point x="3696" y="778"/> + <Point x="3697" y="778"/> + <Point x="3697" y="721"/> + <Point x="3711" y="721"/> + <Point x="3711" y="720"/> + <Point x="3715" y="720"/> + <Point x="3715" y="719"/> + <Point x="3719" y="719"/> + <Point x="3719" y="718"/> + <Point x="3723" y="718"/> + <Point x="3723" y="717"/> + <Point x="3727" y="717"/> + <Point x="3727" y="716"/> + <Point x="3731" y="716"/> + <Point x="3731" y="715"/> + <Point x="3735" y="715"/> + <Point x="3735" y="714"/> + <Point x="3739" y="714"/> + <Point x="3739" y="713"/> + <Point x="3743" y="713"/> + <Point x="3743" y="712"/> + <Point x="3747" y="712"/> + <Point x="3747" y="711"/> + <Point x="3751" y="711"/> + <Point x="3751" y="708"/> + <Point x="3701" y="708"/> + <Point x="3702" y="708"/> + <Point x="3702" y="707"/> + <Point x="3703" y="707"/> + <Point x="3703" y="706"/> + <Point x="3704" y="706"/> + <Point x="3704" y="705"/> + <Point x="3705" y="705"/> + <Point x="3705" y="704"/> + <Point x="3706" y="704"/> + <Point x="3706" y="703"/> + <Point x="3707" y="703"/> + <Point x="3707" y="702"/> + <Point x="3708" y="702"/> + <Point x="3708" y="701"/> + <Point x="3709" y="701"/> + <Point x="3709" y="700"/> + <Point x="3710" y="700"/> + <Point x="3710" y="699"/> + <Point x="3711" y="699"/> + <Point x="3711" y="698"/> + <Point x="3712" y="698"/> + <Point x="3712" y="697"/> + <Point x="3713" y="697"/> + <Point x="3713" y="696"/> + <Point x="3714" y="696"/> + <Point x="3714" y="695"/> + <Point x="3715" y="695"/> + <Point x="3715" y="694"/> + <Point x="3716" y="694"/> + <Point x="3716" y="693"/> + <Point x="3717" y="693"/> + <Point x="3717" y="692"/> + <Point x="3718" y="692"/> + <Point x="3718" y="691"/> + <Point x="3719" y="691"/> + <Point x="3719" y="690"/> + <Point x="3720" y="690"/> + <Point x="3720" y="689"/> + <Point x="3721" y="689"/> + <Point x="3721" y="688"/> + <Point x="3739" y="688"/> + <Point x="3739" y="687"/> + <Point x="3758" y="687"/> + <Point x="3758" y="686"/> + <Point x="3776" y="686"/> + <Point x="3776" y="685"/> + <Point x="3794" y="685"/> + <Point x="3794" y="686"/> + <Point x="3795" y="686"/> + <Point x="3795" y="687"/> + <Point x="3796" y="687"/> + <Point x="3796" y="688"/> + <Point x="3797" y="688"/> + <Point x="3797" y="689"/> + <Point x="3798" y="689"/> + <Point x="3798" y="690"/> + <Point x="3799" y="690"/> + <Point x="3799" y="691"/> + <Point x="3800" y="691"/> + <Point x="3800" y="692"/> + <Point x="3822" y="692"/> + <Point x="3822" y="691"/> + <Point x="3823" y="691"/> + <Point x="3823" y="690"/> + <Point x="3824" y="690"/> + <Point x="3824" y="689"/> + <Point x="3825" y="689"/> + <Point x="3825" y="687"/> + <Point x="3826" y="687"/> + <Point x="3826" y="685"/> + <Point x="3827" y="685"/> + <Point x="3827" y="683"/> + <Point x="3828" y="683"/> + <Point x="3828" y="682"/> + <Point x="3885" y="682"/> + <Point x="3885" y="681"/> + <Point x="3932" y="681"/> + <Point x="3932" y="680"/> + <Point x="3970" y="680"/> + <Point x="3970" y="681"/> + <Point x="3973" y="681"/> + <Point x="3973" y="682"/> + <Point x="3976" y="682"/> + <Point x="3976" y="683"/> + <Point x="3979" y="683"/> + <Point x="3979" y="684"/> + <Point x="3981" y="684"/> + <Point x="3981" y="685"/> + <Point x="4002" y="685"/> + <Point x="4002" y="684"/> + <Point x="4003" y="684"/> + <Point x="4003" y="683"/> + <Point x="4004" y="683"/> + <Point x="4004" y="681"/> + <Point x="4005" y="681"/> + <Point x="4005" y="679"/> + <Point x="4006" y="679"/> + <Point x="4006" y="677"/> + <Point x="4007" y="677"/> + <Point x="4007" y="676"/> + <Point x="4071" y="676"/> + <Point x="4071" y="675"/> + <Point x="4075" y="675"/> + <Point x="4075" y="674"/> + <Point x="4080" y="674"/> + <Point x="4080" y="673"/> + <Point x="4084" y="673"/> + <Point x="4084" y="672"/> + <Point x="4089" y="672"/> + <Point x="4089" y="671"/> + <Point x="4093" y="671"/> + <Point x="4093" y="670"/> + <Point x="4094" y="670"/> + <Point x="4094" y="669"/> + <Point x="4095" y="669"/> + <Point x="4095" y="666"/> + <Point x="4096" y="666"/> + <Point x="4096" y="663"/> + <Point x="4097" y="663"/> + <Point x="4097" y="660"/> + <Point x="4098" y="660"/> + <Point x="4098" y="657"/> + <Point x="4099" y="657"/> + <Point x="4099" y="654"/> + <Point x="4100" y="654"/> + <Point x="4100" y="651"/> + <Point x="4101" y="651"/> + <Point x="4101" y="648"/> + <Point x="4135" y="648"/> + <Point x="4135" y="647"/> + <Point x="4169" y="647"/> + <Point x="4169" y="646"/> + <Point x="4203" y="646"/> + <Point x="4203" y="645"/> + <Point x="4238" y="645"/> + <Point x="4238" y="644"/> + <Point x="4272" y="644"/> + <Point x="4272" y="643"/> + <Point x="4306" y="643"/> + <Point x="4306" y="642"/> + <Point x="4340" y="642"/> + <Point x="4340" y="641"/> + <Point x="4375" y="641"/> + <Point x="4375" y="640"/> + <Point x="4409" y="640"/> + <Point x="4409" y="639"/> + <Point x="4443" y="639"/> + <Point x="4443" y="638"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>“The ships of the line, Thunderer, Implacable, and +Edinburgh, and Dido corvette, were lying in Marmorice +Bay on the 24th ult., where were expected the Princess +Charlotte from Beyrout, and the Calcutta, Britannia, and +Howe, from Malta. The Britannia, 120, Capt. Drake, +with the flag of Rear‑Admiral Sir J. A. Ommaney, and +Howe, 120, Captain Sir W. O. Pell, arrived in port last +night from England. Sir Woodbine Parish arrived here +on the 11th in the Great Liverpool steam‑ship, accom- +panied by his two daughters and son, and by Majer +Charters, R. A., appointed secretary to the commission. +They will proceed to Naples to‑morrow in the French +steam‑packet Scamandre.”</Unicode></TextEquiv></TextRegion> + <TextRegion id="r345" type="paragraph"> + <Coords> + <Point x="1950" y="969"/> + <Point x="1957" y="969"/> + <Point x="1957" y="972"/> + <Point x="1958" y="972"/> + <Point x="1958" y="975"/> + <Point x="1959" y="975"/> + <Point x="1959" y="978"/> + <Point x="1960" y="978"/> + <Point x="1960" y="979"/> + <Point x="1968" y="979"/> + <Point x="1967" y="979"/> + <Point x="1967" y="984"/> + <Point x="1966" y="984"/> + <Point x="1966" y="989"/> + <Point x="1963" y="989"/> + <Point x="1963" y="990"/> + <Point x="1957" y="990"/> + <Point x="1957" y="989"/> + <Point x="1899" y="989"/> + <Point x="1899" y="990"/> + <Point x="1842" y="990"/> + <Point x="1842" y="991"/> + <Point x="1785" y="991"/> + <Point x="1785" y="992"/> + <Point x="1728" y="992"/> + <Point x="1728" y="993"/> + <Point x="1727" y="993"/> + <Point x="1727" y="997"/> + <Point x="1727" y="996"/> + <Point x="1717" y="996"/> + <Point x="1717" y="995"/> + <Point x="1690" y="995"/> + <Point x="1690" y="996"/> + <Point x="1668" y="996"/> + <Point x="1668" y="997"/> + <Point x="1646" y="997"/> + <Point x="1646" y="998"/> + <Point x="1624" y="998"/> + <Point x="1624" y="1001"/> + <Point x="1622" y="1001"/> + <Point x="1622" y="1000"/> + <Point x="1614" y="1000"/> + <Point x="1614" y="999"/> + <Point x="1606" y="999"/> + <Point x="1606" y="998"/> + <Point x="1597" y="998"/> + <Point x="1597" y="997"/> + <Point x="1580" y="997"/> + <Point x="1577" y="999"/> + <Point x="1577" y="1000"/> + <Point x="1570" y="1000"/> + <Point x="1571" y="1001"/> + <Point x="1523" y="1001"/> + <Point x="1523" y="1002"/> + <Point x="1522" y="1002"/> + <Point x="1522" y="1004"/> + <Point x="1521" y="1004"/> + <Point x="1521" y="1005"/> + <Point x="1520" y="1005"/> + <Point x="1520" y="1006"/> + <Point x="1494" y="1006"/> + <Point x="1493" y="1005"/> + <Point x="1479" y="1005"/> + <Point x="1479" y="1006"/> + <Point x="1474" y="1006"/> + <Point x="1474" y="1007"/> + <Point x="1468" y="1007"/> + <Point x="1468" y="1008"/> + <Point x="1417" y="1008"/> + <Point x="1417" y="1010"/> + <Point x="1411" y="1010"/> + <Point x="1411" y="1009"/> + <Point x="1407" y="1009"/> + <Point x="1407" y="1008"/> + <Point x="1403" y="1008"/> + <Point x="1403" y="1007"/> + <Point x="1399" y="1007"/> + <Point x="1399" y="1006"/> + <Point x="1398" y="1006"/> + <Point x="1398" y="1004"/> + <Point x="1399" y="1004"/> + <Point x="1399" y="1000"/> + <Point x="1400" y="1000"/> + <Point x="1400" y="990"/> + <Point x="1410" y="990"/> + <Point x="1410" y="989"/> + <Point x="1422" y="989"/> + <Point x="1422" y="992"/> + <Point x="1436" y="992"/> + <Point x="1436" y="991"/> + <Point x="1449" y="991"/> + <Point x="1449" y="990"/> + <Point x="1462" y="990"/> + <Point x="1462" y="989"/> + <Point x="1475" y="989"/> + <Point x="1475" y="988"/> + <Point x="1488" y="988"/> + <Point x="1488" y="987"/> + <Point x="1501" y="987"/> + <Point x="1501" y="986"/> + <Point x="1513" y="986"/> + <Point x="1513" y="985"/> + <Point x="1514" y="985"/> + <Point x="1514" y="984"/> + <Point x="1515" y="984"/> + <Point x="1515" y="983"/> + <Point x="1531" y="983"/> + <Point x="1531" y="982"/> + <Point x="1555" y="982"/> + <Point x="1555" y="981"/> + <Point x="1562" y="981"/> + <Point x="1562" y="980"/> + <Point x="1569" y="980"/> + <Point x="1569" y="979"/> + <Point x="1593" y="979"/> + <Point x="1593" y="978"/> + <Point x="1601" y="978"/> + <Point x="1601" y="977"/> + <Point x="1611" y="977"/> + <Point x="1611" y="976"/> + <Point x="1634" y="976"/> + <Point x="1634" y="975"/> + <Point x="1639" y="975"/> + <Point x="1639" y="974"/> + <Point x="1639" y="975"/> + <Point x="1665" y="975"/> + <Point x="1665" y="973"/> + <Point x="1673" y="973"/> + <Point x="1673" y="974"/> + <Point x="1765" y="974"/> + <Point x="1765" y="973"/> + <Point x="1767" y="973"/> + <Point x="1767" y="972"/> + <Point x="1774" y="972"/> + <Point x="1774" y="973"/> + <Point x="1775" y="973"/> + <Point x="1775" y="974"/> + <Point x="1776" y="974"/> + <Point x="1776" y="975"/> + <Point x="1780" y="975"/> + <Point x="1780" y="973"/> + <Point x="1789" y="973"/> + <Point x="1789" y="974"/> + <Point x="1832" y="974"/> + <Point x="1832" y="972"/> + <Point x="1840" y="972"/> + <Point x="1840" y="974"/> + <Point x="1841" y="974"/> + <Point x="1841" y="975"/> + <Point x="1888" y="975"/> + <Point x="1888" y="974"/> + <Point x="1894" y="974"/> + <Point x="1894" y="975"/> + <Point x="1914" y="975"/> + <Point x="1914" y="974"/> + <Point x="1931" y="974"/> + <Point x="1931" y="973"/> + <Point x="1947" y="973"/> + <Point x="1947" y="972"/> + <Point x="1948" y="972"/> + <Point x="1948" y="970"/> + <Point x="1949" y="970"/> + <Point x="1949" y="969"/> + <Point x="1950" y="969"/> + <Point x="1950" y="968"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>Your most faithful, obedient, and humble servant,</Unicode></TextEquiv></TextRegion> + <TextRegion id="r347" type="paragraph"> + <Coords> + <Point x="1595" y="999"/> + <Point x="1595" y="1000"/> + <Point x="1604" y="1000"/> + <Point x="1604" y="1001"/> + <Point x="1612" y="1001"/> + <Point x="1620" y="1002"/> + <Point x="1620" y="1003"/> + <Point x="1624" y="1003"/> + <Point x="1624" y="1020"/> + <Point x="1616" y="1020"/> + <Point x="1616" y="1021"/> + <Point x="1608" y="1022"/> + <Point x="1601" y="1022"/> + <Point x="1601" y="1023"/> + <Point x="1601" y="1022"/> + <Point x="1598" y="1022"/> + <Point x="1598" y="1021"/> + <Point x="1595" y="1021"/> + <Point x="1595" y="1020"/> + <Point x="1582" y="1020"/> + <Point x="1582" y="1021"/> + <Point x="1572" y="1021"/> + <Point x="1572" y="1022"/> + <Point x="1562" y="1022"/> + <Point x="1562" y="1023"/> + <Point x="1551" y="1023"/> + <Point x="1551" y="1024"/> + <Point x="1541" y="1024"/> + <Point x="1541" y="1025"/> + <Point x="1531" y="1025"/> + <Point x="1531" y="1026"/> + <Point x="1520" y="1026"/> + <Point x="1520" y="1027"/> + <Point x="1510" y="1027"/> + <Point x="1510" y="1028"/> + <Point x="1500" y="1028"/> + <Point x="1500" y="1029"/> + <Point x="1474" y="1029"/> + <Point x="1474" y="1030"/> + <Point x="1449" y="1030"/> + <Point x="1449" y="1031"/> + <Point x="1424" y="1031"/> + <Point x="1424" y="1032"/> + <Point x="1419" y="1032"/> + <Point x="1419" y="1033"/> + <Point x="1415" y="1033"/> + <Point x="1415" y="1034"/> + <Point x="1411" y="1034"/> + <Point x="1411" y="1035"/> + <Point x="1379" y="1035"/> + <Point x="1379" y="1036"/> + <Point x="1347" y="1036"/> + <Point x="1347" y="1037"/> + <Point x="1316" y="1037"/> + <Point x="1316" y="1038"/> + <Point x="1316" y="1012"/> + <Point x="1351" y="1012"/> + <Point x="1351" y="1011"/> + <Point x="1367" y="1011"/> + <Point x="1367" y="1010"/> + <Point x="1382" y="1010"/> + <Point x="1382" y="1009"/> + <Point x="1397" y="1009"/> + <Point x="1397" y="1008"/> + <Point x="1397" y="1009"/> + <Point x="1401" y="1009"/> + <Point x="1401" y="1010"/> + <Point x="1409" y="1010"/> + <Point x="1409" y="1012"/> + <Point x="1419" y="1012"/> + <Point x="1419" y="1009"/> + <Point x="1443" y="1009"/> + <Point x="1470" y="1010"/> + <Point x="1470" y="1009"/> + <Point x="1476" y="1009"/> + <Point x="1476" y="1008"/> + <Point x="1481" y="1008"/> + <Point x="1482" y="1006"/> + <Point x="1491" y="1006"/> + <Point x="1491" y="1008"/> + <Point x="1522" y="1008"/> + <Point x="1522" y="1007"/> + <Point x="1523" y="1007"/> + <Point x="1523" y="1006"/> + <Point x="1524" y="1004"/> + <Point x="1524" y="1002"/> + <Point x="1574" y="1002"/> + <Point x="1573" y="1002"/> + <Point x="1579" y="1002"/> + <Point x="1579" y="999"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>Wallsall, Tuesday Evening.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r159" type="heading"> + <Coords> + <Point x="762" y="4177"/> + <Point x="792" y="4177"/> + <Point x="792" y="4178"/> + <Point x="1055" y="4178"/> + <Point x="1055" y="4216"/> + <Point x="1149" y="4216"/> + <Point x="1149" y="4255"/> + <Point x="1135" y="4255"/> + <Point x="1135" y="4253"/> + <Point x="1134" y="4253"/> + <Point x="1134" y="4252"/> + <Point x="1133" y="4252"/> + <Point x="1133" y="4251"/> + <Point x="1132" y="4251"/> + <Point x="1132" y="4250"/> + <Point x="991" y="4250"/> + <Point x="991" y="4251"/> + <Point x="941" y="4251"/> + <Point x="941" y="4252"/> + <Point x="940" y="4252"/> + <Point x="940" y="4253"/> + <Point x="897" y="4253"/> + <Point x="897" y="4254"/> + <Point x="892" y="4254"/> + <Point x="892" y="4255"/> + <Point x="853" y="4255"/> + <Point x="853" y="4256"/> + <Point x="832" y="4256"/> + <Point x="832" y="4257"/> + <Point x="828" y="4257"/> + <Point x="828" y="4258"/> + <Point x="823" y="4258"/> + <Point x="823" y="4259"/> + <Point x="819" y="4259"/> + <Point x="819" y="4260"/> + <Point x="785" y="4260"/> + <Point x="785" y="4261"/> + <Point x="784" y="4261"/> + <Point x="784" y="4262"/> + <Point x="761" y="4262"/> + <Point x="761" y="4263"/> + <Point x="755" y="4263"/> + <Point x="755" y="4264"/> + <Point x="749" y="4264"/> + <Point x="749" y="4265"/> + <Point x="728" y="4265"/> + <Point x="728" y="4266"/> + <Point x="712" y="4266"/> + <Point x="712" y="4269"/> + <Point x="710" y="4269"/> + <Point x="710" y="4270"/> + <Point x="709" y="4270"/> + <Point x="709" y="4271"/> + <Point x="708" y="4271"/> + <Point x="708" y="4272"/> + <Point x="707" y="4272"/> + <Point x="707" y="4273"/> + <Point x="706" y="4273"/> + <Point x="706" y="4274"/> + <Point x="705" y="4274"/> + <Point x="705" y="4275"/> + <Point x="680" y="4275"/> + <Point x="680" y="4274"/> + <Point x="665" y="4274"/> + <Point x="665" y="4234"/> + <Point x="762" y="4234"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>MADRID, DEC. 22. +[FROM OUR OWN CORRESPONDENT.]</Unicode></TextEquiv></TextRegion> + <TextRegion id="r341" type="heading"> + <Coords> + <Point x="1235" y="868"/> + <Point x="1235" y="899"/> + <Point x="1236" y="899"/> + <Point x="1235" y="899"/> + <Point x="1235" y="946"/> + <Point x="1180" y="946"/> + <Point x="1180" y="947"/> + <Point x="1115" y="947"/> + <Point x="1115" y="948"/> + <Point x="1050" y="948"/> + <Point x="1050" y="949"/> + <Point x="986" y="949"/> + <Point x="986" y="950"/> + <Point x="921" y="950"/> + <Point x="921" y="951"/> + <Point x="856" y="951"/> + <Point x="856" y="952"/> + <Point x="792" y="952"/> + <Point x="792" y="953"/> + <Point x="727" y="953"/> + <Point x="727" y="954"/> + <Point x="687" y="954"/> + <Point x="687" y="915"/> + <Point x="568" y="915"/> + <Point x="568" y="916"/> + <Point x="511" y="916"/> + <Point x="511" y="917"/> + <Point x="510" y="917"/> + <Point x="510" y="916"/> + <Point x="511" y="916"/> + <Point x="511" y="907"/> + <Point x="512" y="907"/> + <Point x="512" y="898"/> + <Point x="513" y="898"/> + <Point x="513" y="888"/> + <Point x="514" y="888"/> + <Point x="514" y="879"/> + <Point x="514" y="880"/> + <Point x="734" y="880"/> + <Point x="734" y="879"/> + <Point x="768" y="879"/> + <Point x="768" y="878"/> + <Point x="802" y="878"/> + <Point x="802" y="877"/> + <Point x="835" y="877"/> + <Point x="835" y="876"/> + <Point x="927" y="876"/> + <Point x="927" y="875"/> + <Point x="959" y="875"/> + <Point x="959" y="874"/> + <Point x="991" y="874"/> + <Point x="991" y="873"/> + <Point x="1023" y="873"/> + <Point x="1023" y="872"/> + <Point x="1102" y="872"/> + <Point x="1102" y="871"/> + <Point x="1131" y="871"/> + <Point x="1131" y="870"/> + <Point x="1160" y="870"/> + <Point x="1160" y="869"/> + <Point x="1188" y="869"/> + <Point x="1188" y="868"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>ONE DAY LATER FROM THE UNITED +STATES.</Unicode></TextEquiv></TextRegion> + <TextRegion id="r343" type="heading"> + <Coords> + <Point x="1235" y="948"/> + <Point x="1235" y="987"/> + <Point x="1190" y="987"/> + <Point x="1190" y="988"/> + <Point x="1146" y="988"/> + <Point x="1146" y="989"/> + <Point x="1101" y="989"/> + <Point x="1101" y="990"/> + <Point x="1057" y="990"/> + <Point x="1057" y="991"/> + <Point x="1013" y="991"/> + <Point x="1013" y="992"/> + <Point x="968" y="992"/> + <Point x="968" y="993"/> + <Point x="924" y="993"/> + <Point x="924" y="994"/> + <Point x="880" y="994"/> + <Point x="880" y="995"/> + <Point x="879" y="995"/> + <Point x="879" y="997"/> + <Point x="878" y="997"/> + <Point x="878" y="999"/> + <Point x="877" y="999"/> + <Point x="877" y="1001"/> + <Point x="876" y="1001"/> + <Point x="876" y="1002"/> + <Point x="865" y="1002"/> + <Point x="865" y="1001"/> + <Point x="863" y="1001"/> + <Point x="863" y="1000"/> + <Point x="862" y="1000"/> + <Point x="862" y="999"/> + <Point x="861" y="999"/> + <Point x="861" y="998"/> + <Point x="688" y="998"/> + <Point x="688" y="999"/> + <Point x="687" y="999"/> + <Point x="687" y="956"/> + <Point x="729" y="956"/> + <Point x="729" y="955"/> + <Point x="794" y="955"/> + <Point x="794" y="954"/> + <Point x="858" y="954"/> + <Point x="858" y="953"/> + <Point x="923" y="953"/> + <Point x="923" y="952"/> + <Point x="988" y="952"/> + <Point x="988" y="951"/> + <Point x="1052" y="951"/> + <Point x="1052" y="950"/> + <Point x="1117" y="950"/> + <Point x="1117" y="949"/> + <Point x="1182" y="949"/> + <Point x="1182" y="948"/></Coords> + <TextEquiv> + <PlainText></PlainText> + <Unicode>LIVERPOOL, THURSDAY EVENING.</Unicode></TextEquiv></TextRegion></Page></PcGts> diff --git a/qurator/dinglehopper/tests/test_integ_bigger_texts.py b/qurator/dinglehopper/tests/test_integ_bigger_texts.py new file mode 100644 index 0000000..e069485 --- /dev/null +++ b/qurator/dinglehopper/tests/test_integ_bigger_texts.py @@ -0,0 +1,29 @@ +from __future__ import division, print_function + +import os + +import pytest +from lxml import etree as ET +from uniseg.graphemecluster import grapheme_clusters + +from .. import character_error_rate, page_text, alto_text + +data_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)), "data") + + +@pytest.mark.integration +def test_bigger_texts(): + gt = page_text( + ET.parse(os.path.join(data_dir, "bigger-texts", "00008228", "00008228.gt.xml")) + ) + ocr = alto_text( + ET.parse( + os.path.join( + data_dir, "bigger-texts", "00008228", "00008228-00236534.gt4hist.xml" + ) + ) + ) + + # Only interested in a result here: In earlier versions this would have used + # tens of GB of RAM and should now not break a sweat. + assert character_error_rate(gt, ocr) >= 0.0 From 833efa37da63dfff70dd9cebec7eb112d54f79b1 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Tue, 14 Mar 2023 12:44:22 +0100 Subject: [PATCH 04/82] =?UTF-8?q?=F0=9F=90=9B=20Remove=20deprecated=20decl?= =?UTF-8?q?are=5Fnamespace=20call?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove depecreated declare_namespace call and use implicit namespace (PEP-0420). Fixes gh-76. --- qurator/__init__.py | 1 - 1 file changed, 1 deletion(-) delete mode 100644 qurator/__init__.py diff --git a/qurator/__init__.py b/qurator/__init__.py deleted file mode 100644 index 5284146..0000000 --- a/qurator/__init__.py +++ /dev/null @@ -1 +0,0 @@ -__import__("pkg_resources").declare_namespace(__name__) From 2a090c9b5a148e8c6362108b13fb04726b3c370a Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Tue, 14 Mar 2023 12:49:02 +0100 Subject: [PATCH 05/82] =?UTF-8?q?=E2=9C=94=20CircleCI:=20Explicitly=20inst?= =?UTF-8?q?all=20binary=20opencv-python-headless=20(dep=20of=20OCR-D=3F)?= =?UTF-8?q?=20to=20avoid=20compilation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .circleci/config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9910485..3ac6a49 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -10,6 +10,7 @@ jobs: steps: - checkout - run: pip3 install --upgrade pip + - run: if python3 --version | grep -q "Python 3.6"; then pip install --prefer-binary -U opencv-python-headless numpy; fi # to avoid compilation - run: pip3 install -r requirements.txt - run: pip3 install pytest - run: pytest From b4ac24ac9dc3f95fbb719d9eac1c1eeb904435c0 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Tue, 14 Mar 2023 12:59:10 +0100 Subject: [PATCH 06/82] =?UTF-8?q?=F0=9F=94=A7=20Remove=20explicit=20namesp?= =?UTF-8?q?ace=5Fpackages?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes gh-76. --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index 646a50f..93f5311 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,6 @@ setup( long_description_content_type="text/markdown", keywords="qurator ocr", license="Apache", - namespace_packages=["qurator"], packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]), install_requires=install_requires, tests_require=tests_require, From c4ab7c9a7cb7039817669d1896f18393fabe46ea Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Tue, 14 Mar 2023 13:16:09 +0100 Subject: [PATCH 07/82] =?UTF-8?q?=F0=9F=95=B8Do=20not=20use=20deprecated?= =?UTF-8?q?=20ID,=20pageId=20options?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See gh-75. --- qurator/dinglehopper/ocrd_cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qurator/dinglehopper/ocrd_cli.py b/qurator/dinglehopper/ocrd_cli.py index 9578a0a..c5f79cd 100644 --- a/qurator/dinglehopper/ocrd_cli.py +++ b/qurator/dinglehopper/ocrd_cli.py @@ -66,9 +66,9 @@ class OcrdDinglehopperEvaluate(Processor): [".json", "application/json"], ]: self.workspace.add_file( - ID=file_id + report_suffix, + file_id=file_id + report_suffix, file_grp=self.output_file_grp, - pageId=page_id, + page_id=page_id, mimetype=mimetype, local_filename=report_prefix + report_suffix, ) From f668963a2e1fa2f83e44c9dcca666cb98c9a80af Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Mon, 27 Mar 2023 14:34:52 +0200 Subject: [PATCH 08/82] =?UTF-8?q?=F0=9F=90=9B=20Fix=20installing=20by=20ca?= =?UTF-8?q?lling=20find=5Fnamespace=5Fpackages=20in=20setup.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Turns out just removing __init__.py is not enough for native namespace packages. We also need to (explicitly) call setuptools.find_namespace_packages() for setup.py to find the package... https://packaging.python.org/en/latest/guides/packaging-namespace-packages/#native-namespace-packages Fixes gh-77. --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 93f5311..6a4f57a 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ from io import open -from setuptools import find_packages, setup +from setuptools import find_namespace_packages, find_packages, setup with open("requirements.txt") as fp: install_requires = fp.read() @@ -16,7 +16,8 @@ setup( long_description_content_type="text/markdown", keywords="qurator ocr", license="Apache", - packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]), + packages=find_namespace_packages(include=["qurator.*"]) + + find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]), install_requires=install_requires, tests_require=tests_require, package_data={ From f1fc3f18805708083258f08fb0a641972702f4df Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Mon, 27 Mar 2023 18:25:39 +0200 Subject: [PATCH 09/82] =?UTF-8?q?=F0=9F=A7=B9=20Remove=20qurator.=20namesp?= =?UTF-8?q?ace=20prefix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README-DEV.md | 4 ++-- {qurator/dinglehopper => dinglehopper}/__init__.py | 0 {qurator/dinglehopper => dinglehopper}/align.py | 0 .../character_error_rate.py | 0 {qurator/dinglehopper => dinglehopper}/cli.py | 0 .../dinglehopper => dinglehopper}/cli_extract.py | 0 .../dinglehopper => dinglehopper}/cli_line_dirs.py | 0 {qurator/dinglehopper => dinglehopper}/config.py | 0 .../dinglehopper => dinglehopper}/edit_distance.py | 0 .../dinglehopper => dinglehopper}/extracted_text.py | 0 .../notebooks/Levenshtein.ipynb | 0 ...e normalization and Character segmentation.ipynb | 0 {qurator/dinglehopper => dinglehopper}/ocr_files.py | 0 .../dinglehopper => dinglehopper}/ocrd-tool.json | 0 {qurator/dinglehopper => dinglehopper}/ocrd_cli.py | 0 .../templates/report.html.j2 | 0 .../templates/report.html.js | 0 .../templates/report.json.j2 | 0 .../dinglehopper => dinglehopper}/tests/__init__.py | 0 .../tests/data/00000119.tif | Bin .../OCR-D-GT-PAGE/00000024.page.xml | 0 .../OCR-D-OCR-CALAMARI/OCR-D-OCR-CALAMARI_0001.xml | 0 .../OCR-D-OCR-TESS/OCR-D-OCR-TESS_0001.xml | 0 .../tests/data/actevedef_718448162/mets.xml | 0 .../00008228/00008228-00236534.gt4hist.xml | 0 .../data/bigger-texts/00008228/00008228.gt.xml | 0 .../data/brochrnx_73075507X/00000139.gt.page.xml | 0 .../00000139.ocrd-tess.ocr.page.xml | 0 .../tests/data/levels-are-different.page.xml | 0 .../lorem-ipsum/lorem-ipsum-scan-bad.gt.page.xml | 0 .../lorem-ipsum-scan-bad.ocr.tesseract.alto.xml | 0 .../tests/data/lorem-ipsum/lorem-ipsum-scan-bad.pdf | Bin .../tests/data/lorem-ipsum/lorem-ipsum-scan-bad.tif | Bin .../data/lorem-ipsum/lorem-ipsum-scan.gt.page.xml | 0 .../lorem-ipsum-scan.ocr.tesseract.alto.xml | 0 .../tests/data/lorem-ipsum/lorem-ipsum-scan.pdf | Bin .../tests/data/lorem-ipsum/lorem-ipsum-scan.tif | Bin .../tests/data/lorem-ipsum/lorem-ipsum.odt | Bin .../tests/data/mixed-regions.page.xml | 0 .../tests/data/order.page.xml | 0 .../data/table-order/table-no-reading-order.xml | 0 .../tests/data/table-order/table-order-0001.xml | 0 .../tests/data/table-order/table-order-0002.xml | 0 .../tests/data/table-order/table-region.xml | 0 .../tests/data/table-order/table-unordered.xml | 0 .../tests/data/test-fake-ocr.page2018.xml | 0 .../tests/data/test-gt.page2018.xml | 0 .../tests/data/test.alto1.xml | 0 .../tests/data/test.alto2.xml | 0 .../tests/data/test.alto3.xml | 0 .../tests/data/test.page2018.xml | 0 .../tests/data/test.txt | 0 .../462875_0008.jpg | Bin .../OCR-D-GT_0008.xml | 0 .../OCR-D-OCR-TESS_0008.xml | 0 .../tests/extracted_text_test.py | 0 .../tests/test_align.py | 0 .../tests/test_character_error_rate.py | 0 .../tests/test_edit_distance.py | 0 .../tests/test_editops.py | 0 .../tests/test_integ_align.py | 0 .../tests/test_integ_bigger_texts.py | 0 .../tests/test_integ_character_error_rate_ocr.py | 0 .../tests/test_integ_cli_valid_json.py | 0 .../tests/test_integ_edit_distance_ocr.py | 0 .../tests/test_integ_ocrd_cli.py | 0 .../tests/test_integ_table_extraction.py | 0 .../tests/test_integ_word_error_rate_ocr.py | 0 .../tests/test_ocr_files.py | 0 .../tests/test_word_error_rate.py | 0 .../dinglehopper => dinglehopper}/tests/util.py | 0 .../word_error_rate.py | 0 ocrd-tool.json | 2 +- setup.py | 11 +++++------ 74 files changed, 8 insertions(+), 9 deletions(-) rename {qurator/dinglehopper => dinglehopper}/__init__.py (100%) rename {qurator/dinglehopper => dinglehopper}/align.py (100%) rename {qurator/dinglehopper => dinglehopper}/character_error_rate.py (100%) rename {qurator/dinglehopper => dinglehopper}/cli.py (100%) rename {qurator/dinglehopper => dinglehopper}/cli_extract.py (100%) rename {qurator/dinglehopper => dinglehopper}/cli_line_dirs.py (100%) rename {qurator/dinglehopper => dinglehopper}/config.py (100%) rename {qurator/dinglehopper => dinglehopper}/edit_distance.py (100%) rename {qurator/dinglehopper => dinglehopper}/extracted_text.py (100%) rename {qurator/dinglehopper => dinglehopper}/notebooks/Levenshtein.ipynb (100%) rename {qurator/dinglehopper => dinglehopper}/notebooks/Unicode normalization and Character segmentation.ipynb (100%) rename {qurator/dinglehopper => dinglehopper}/ocr_files.py (100%) rename {qurator/dinglehopper => dinglehopper}/ocrd-tool.json (100%) rename {qurator/dinglehopper => dinglehopper}/ocrd_cli.py (100%) rename {qurator/dinglehopper => dinglehopper}/templates/report.html.j2 (100%) rename {qurator/dinglehopper => dinglehopper}/templates/report.html.js (100%) rename {qurator/dinglehopper => dinglehopper}/templates/report.json.j2 (100%) rename {qurator/dinglehopper => dinglehopper}/tests/__init__.py (100%) rename {qurator/dinglehopper => dinglehopper}/tests/data/00000119.tif (100%) rename {qurator/dinglehopper => dinglehopper}/tests/data/actevedef_718448162/OCR-D-GT-PAGE/00000024.page.xml (100%) rename {qurator/dinglehopper => dinglehopper}/tests/data/actevedef_718448162/OCR-D-OCR-CALAMARI/OCR-D-OCR-CALAMARI_0001.xml (100%) rename {qurator/dinglehopper => dinglehopper}/tests/data/actevedef_718448162/OCR-D-OCR-TESS/OCR-D-OCR-TESS_0001.xml (100%) rename {qurator/dinglehopper => dinglehopper}/tests/data/actevedef_718448162/mets.xml (100%) rename {qurator/dinglehopper => dinglehopper}/tests/data/bigger-texts/00008228/00008228-00236534.gt4hist.xml (100%) rename {qurator/dinglehopper => dinglehopper}/tests/data/bigger-texts/00008228/00008228.gt.xml (100%) rename {qurator/dinglehopper => dinglehopper}/tests/data/brochrnx_73075507X/00000139.gt.page.xml (100%) rename {qurator/dinglehopper => dinglehopper}/tests/data/brochrnx_73075507X/00000139.ocrd-tess.ocr.page.xml (100%) rename {qurator/dinglehopper => dinglehopper}/tests/data/levels-are-different.page.xml (100%) rename {qurator/dinglehopper => dinglehopper}/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.gt.page.xml (100%) rename {qurator/dinglehopper => dinglehopper}/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.ocr.tesseract.alto.xml (100%) rename {qurator/dinglehopper => dinglehopper}/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.pdf (100%) rename {qurator/dinglehopper => dinglehopper}/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.tif (100%) rename {qurator/dinglehopper => dinglehopper}/tests/data/lorem-ipsum/lorem-ipsum-scan.gt.page.xml (100%) rename {qurator/dinglehopper => dinglehopper}/tests/data/lorem-ipsum/lorem-ipsum-scan.ocr.tesseract.alto.xml (100%) rename {qurator/dinglehopper => dinglehopper}/tests/data/lorem-ipsum/lorem-ipsum-scan.pdf (100%) rename {qurator/dinglehopper => dinglehopper}/tests/data/lorem-ipsum/lorem-ipsum-scan.tif (100%) rename {qurator/dinglehopper => dinglehopper}/tests/data/lorem-ipsum/lorem-ipsum.odt (100%) rename {qurator/dinglehopper => dinglehopper}/tests/data/mixed-regions.page.xml (100%) rename {qurator/dinglehopper => dinglehopper}/tests/data/order.page.xml (100%) rename {qurator/dinglehopper => dinglehopper}/tests/data/table-order/table-no-reading-order.xml (100%) rename {qurator/dinglehopper => dinglehopper}/tests/data/table-order/table-order-0001.xml (100%) rename {qurator/dinglehopper => dinglehopper}/tests/data/table-order/table-order-0002.xml (100%) rename {qurator/dinglehopper => dinglehopper}/tests/data/table-order/table-region.xml (100%) rename {qurator/dinglehopper => dinglehopper}/tests/data/table-order/table-unordered.xml (100%) rename {qurator/dinglehopper => dinglehopper}/tests/data/test-fake-ocr.page2018.xml (100%) rename {qurator/dinglehopper => dinglehopper}/tests/data/test-gt.page2018.xml (100%) rename {qurator/dinglehopper => dinglehopper}/tests/data/test.alto1.xml (100%) rename {qurator/dinglehopper => dinglehopper}/tests/data/test.alto2.xml (100%) rename {qurator/dinglehopper => dinglehopper}/tests/data/test.alto3.xml (100%) rename {qurator/dinglehopper => dinglehopper}/tests/data/test.page2018.xml (100%) rename {qurator/dinglehopper => dinglehopper}/tests/data/test.txt (100%) rename {qurator/dinglehopper => dinglehopper}/tests/data/unused-larex-indexed-textequiv-jkamlah/462875_0008.jpg (100%) rename {qurator/dinglehopper => dinglehopper}/tests/data/unused-larex-indexed-textequiv-jkamlah/OCR-D-GT_0008.xml (100%) rename {qurator/dinglehopper => dinglehopper}/tests/data/unused-larex-indexed-textequiv-jkamlah/OCR-D-OCR-TESS_0008.xml (100%) rename {qurator/dinglehopper => dinglehopper}/tests/extracted_text_test.py (100%) rename {qurator/dinglehopper => dinglehopper}/tests/test_align.py (100%) rename {qurator/dinglehopper => dinglehopper}/tests/test_character_error_rate.py (100%) rename {qurator/dinglehopper => dinglehopper}/tests/test_edit_distance.py (100%) rename {qurator/dinglehopper => dinglehopper}/tests/test_editops.py (100%) rename {qurator/dinglehopper => dinglehopper}/tests/test_integ_align.py (100%) rename {qurator/dinglehopper => dinglehopper}/tests/test_integ_bigger_texts.py (100%) rename {qurator/dinglehopper => dinglehopper}/tests/test_integ_character_error_rate_ocr.py (100%) rename {qurator/dinglehopper => dinglehopper}/tests/test_integ_cli_valid_json.py (100%) rename {qurator/dinglehopper => dinglehopper}/tests/test_integ_edit_distance_ocr.py (100%) rename {qurator/dinglehopper => dinglehopper}/tests/test_integ_ocrd_cli.py (100%) rename {qurator/dinglehopper => dinglehopper}/tests/test_integ_table_extraction.py (100%) rename {qurator/dinglehopper => dinglehopper}/tests/test_integ_word_error_rate_ocr.py (100%) rename {qurator/dinglehopper => dinglehopper}/tests/test_ocr_files.py (100%) rename {qurator/dinglehopper => dinglehopper}/tests/test_word_error_rate.py (100%) rename {qurator/dinglehopper => dinglehopper}/tests/util.py (100%) rename {qurator/dinglehopper => dinglehopper}/word_error_rate.py (100%) diff --git a/README-DEV.md b/README-DEV.md index 219d125..d7b0a3f 100644 --- a/README-DEV.md +++ b/README-DEV.md @@ -1,6 +1,6 @@ Testing ======= -Use `pytest` to run the tests in [the tests directory](qurator/dinglehopper/tests): +Use `pytest` to run the tests in [the tests directory](dinglehopper/tests): ```bash virtualenv -p /usr/bin/python3 venv . venv/bin/activate @@ -27,7 +27,7 @@ pytest All tests with code coverage: ```bash -pytest --cov=qurator --cov-report=html +pytest --cov=dinglehopper --cov-report=html ``` Static code analysis: diff --git a/qurator/dinglehopper/__init__.py b/dinglehopper/__init__.py similarity index 100% rename from qurator/dinglehopper/__init__.py rename to dinglehopper/__init__.py diff --git a/qurator/dinglehopper/align.py b/dinglehopper/align.py similarity index 100% rename from qurator/dinglehopper/align.py rename to dinglehopper/align.py diff --git a/qurator/dinglehopper/character_error_rate.py b/dinglehopper/character_error_rate.py similarity index 100% rename from qurator/dinglehopper/character_error_rate.py rename to dinglehopper/character_error_rate.py diff --git a/qurator/dinglehopper/cli.py b/dinglehopper/cli.py similarity index 100% rename from qurator/dinglehopper/cli.py rename to dinglehopper/cli.py diff --git a/qurator/dinglehopper/cli_extract.py b/dinglehopper/cli_extract.py similarity index 100% rename from qurator/dinglehopper/cli_extract.py rename to dinglehopper/cli_extract.py diff --git a/qurator/dinglehopper/cli_line_dirs.py b/dinglehopper/cli_line_dirs.py similarity index 100% rename from qurator/dinglehopper/cli_line_dirs.py rename to dinglehopper/cli_line_dirs.py diff --git a/qurator/dinglehopper/config.py b/dinglehopper/config.py similarity index 100% rename from qurator/dinglehopper/config.py rename to dinglehopper/config.py diff --git a/qurator/dinglehopper/edit_distance.py b/dinglehopper/edit_distance.py similarity index 100% rename from qurator/dinglehopper/edit_distance.py rename to dinglehopper/edit_distance.py diff --git a/qurator/dinglehopper/extracted_text.py b/dinglehopper/extracted_text.py similarity index 100% rename from qurator/dinglehopper/extracted_text.py rename to dinglehopper/extracted_text.py diff --git a/qurator/dinglehopper/notebooks/Levenshtein.ipynb b/dinglehopper/notebooks/Levenshtein.ipynb similarity index 100% rename from qurator/dinglehopper/notebooks/Levenshtein.ipynb rename to dinglehopper/notebooks/Levenshtein.ipynb diff --git a/qurator/dinglehopper/notebooks/Unicode normalization and Character segmentation.ipynb b/dinglehopper/notebooks/Unicode normalization and Character segmentation.ipynb similarity index 100% rename from qurator/dinglehopper/notebooks/Unicode normalization and Character segmentation.ipynb rename to dinglehopper/notebooks/Unicode normalization and Character segmentation.ipynb diff --git a/qurator/dinglehopper/ocr_files.py b/dinglehopper/ocr_files.py similarity index 100% rename from qurator/dinglehopper/ocr_files.py rename to dinglehopper/ocr_files.py diff --git a/qurator/dinglehopper/ocrd-tool.json b/dinglehopper/ocrd-tool.json similarity index 100% rename from qurator/dinglehopper/ocrd-tool.json rename to dinglehopper/ocrd-tool.json diff --git a/qurator/dinglehopper/ocrd_cli.py b/dinglehopper/ocrd_cli.py similarity index 100% rename from qurator/dinglehopper/ocrd_cli.py rename to dinglehopper/ocrd_cli.py diff --git a/qurator/dinglehopper/templates/report.html.j2 b/dinglehopper/templates/report.html.j2 similarity index 100% rename from qurator/dinglehopper/templates/report.html.j2 rename to dinglehopper/templates/report.html.j2 diff --git a/qurator/dinglehopper/templates/report.html.js b/dinglehopper/templates/report.html.js similarity index 100% rename from qurator/dinglehopper/templates/report.html.js rename to dinglehopper/templates/report.html.js diff --git a/qurator/dinglehopper/templates/report.json.j2 b/dinglehopper/templates/report.json.j2 similarity index 100% rename from qurator/dinglehopper/templates/report.json.j2 rename to dinglehopper/templates/report.json.j2 diff --git a/qurator/dinglehopper/tests/__init__.py b/dinglehopper/tests/__init__.py similarity index 100% rename from qurator/dinglehopper/tests/__init__.py rename to dinglehopper/tests/__init__.py diff --git a/qurator/dinglehopper/tests/data/00000119.tif b/dinglehopper/tests/data/00000119.tif similarity index 100% rename from qurator/dinglehopper/tests/data/00000119.tif rename to dinglehopper/tests/data/00000119.tif diff --git a/qurator/dinglehopper/tests/data/actevedef_718448162/OCR-D-GT-PAGE/00000024.page.xml b/dinglehopper/tests/data/actevedef_718448162/OCR-D-GT-PAGE/00000024.page.xml similarity index 100% rename from qurator/dinglehopper/tests/data/actevedef_718448162/OCR-D-GT-PAGE/00000024.page.xml rename to dinglehopper/tests/data/actevedef_718448162/OCR-D-GT-PAGE/00000024.page.xml diff --git a/qurator/dinglehopper/tests/data/actevedef_718448162/OCR-D-OCR-CALAMARI/OCR-D-OCR-CALAMARI_0001.xml b/dinglehopper/tests/data/actevedef_718448162/OCR-D-OCR-CALAMARI/OCR-D-OCR-CALAMARI_0001.xml similarity index 100% rename from qurator/dinglehopper/tests/data/actevedef_718448162/OCR-D-OCR-CALAMARI/OCR-D-OCR-CALAMARI_0001.xml rename to dinglehopper/tests/data/actevedef_718448162/OCR-D-OCR-CALAMARI/OCR-D-OCR-CALAMARI_0001.xml diff --git a/qurator/dinglehopper/tests/data/actevedef_718448162/OCR-D-OCR-TESS/OCR-D-OCR-TESS_0001.xml b/dinglehopper/tests/data/actevedef_718448162/OCR-D-OCR-TESS/OCR-D-OCR-TESS_0001.xml similarity index 100% rename from qurator/dinglehopper/tests/data/actevedef_718448162/OCR-D-OCR-TESS/OCR-D-OCR-TESS_0001.xml rename to dinglehopper/tests/data/actevedef_718448162/OCR-D-OCR-TESS/OCR-D-OCR-TESS_0001.xml diff --git a/qurator/dinglehopper/tests/data/actevedef_718448162/mets.xml b/dinglehopper/tests/data/actevedef_718448162/mets.xml similarity index 100% rename from qurator/dinglehopper/tests/data/actevedef_718448162/mets.xml rename to dinglehopper/tests/data/actevedef_718448162/mets.xml diff --git a/qurator/dinglehopper/tests/data/bigger-texts/00008228/00008228-00236534.gt4hist.xml b/dinglehopper/tests/data/bigger-texts/00008228/00008228-00236534.gt4hist.xml similarity index 100% rename from qurator/dinglehopper/tests/data/bigger-texts/00008228/00008228-00236534.gt4hist.xml rename to dinglehopper/tests/data/bigger-texts/00008228/00008228-00236534.gt4hist.xml diff --git a/qurator/dinglehopper/tests/data/bigger-texts/00008228/00008228.gt.xml b/dinglehopper/tests/data/bigger-texts/00008228/00008228.gt.xml similarity index 100% rename from qurator/dinglehopper/tests/data/bigger-texts/00008228/00008228.gt.xml rename to dinglehopper/tests/data/bigger-texts/00008228/00008228.gt.xml diff --git a/qurator/dinglehopper/tests/data/brochrnx_73075507X/00000139.gt.page.xml b/dinglehopper/tests/data/brochrnx_73075507X/00000139.gt.page.xml similarity index 100% rename from qurator/dinglehopper/tests/data/brochrnx_73075507X/00000139.gt.page.xml rename to dinglehopper/tests/data/brochrnx_73075507X/00000139.gt.page.xml diff --git a/qurator/dinglehopper/tests/data/brochrnx_73075507X/00000139.ocrd-tess.ocr.page.xml b/dinglehopper/tests/data/brochrnx_73075507X/00000139.ocrd-tess.ocr.page.xml similarity index 100% rename from qurator/dinglehopper/tests/data/brochrnx_73075507X/00000139.ocrd-tess.ocr.page.xml rename to dinglehopper/tests/data/brochrnx_73075507X/00000139.ocrd-tess.ocr.page.xml diff --git a/qurator/dinglehopper/tests/data/levels-are-different.page.xml b/dinglehopper/tests/data/levels-are-different.page.xml similarity index 100% rename from qurator/dinglehopper/tests/data/levels-are-different.page.xml rename to dinglehopper/tests/data/levels-are-different.page.xml diff --git a/qurator/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.gt.page.xml b/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.gt.page.xml similarity index 100% rename from qurator/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.gt.page.xml rename to dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.gt.page.xml diff --git a/qurator/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.ocr.tesseract.alto.xml b/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.ocr.tesseract.alto.xml similarity index 100% rename from qurator/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.ocr.tesseract.alto.xml rename to dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.ocr.tesseract.alto.xml diff --git a/qurator/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.pdf b/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.pdf similarity index 100% rename from qurator/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.pdf rename to dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.pdf diff --git a/qurator/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.tif b/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.tif similarity index 100% rename from qurator/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.tif rename to dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.tif diff --git a/qurator/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan.gt.page.xml b/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan.gt.page.xml similarity index 100% rename from qurator/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan.gt.page.xml rename to dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan.gt.page.xml diff --git a/qurator/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan.ocr.tesseract.alto.xml b/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan.ocr.tesseract.alto.xml similarity index 100% rename from qurator/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan.ocr.tesseract.alto.xml rename to dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan.ocr.tesseract.alto.xml diff --git a/qurator/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan.pdf b/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan.pdf similarity index 100% rename from qurator/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan.pdf rename to dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan.pdf diff --git a/qurator/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan.tif b/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan.tif similarity index 100% rename from qurator/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan.tif rename to dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan.tif diff --git a/qurator/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum.odt b/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum.odt similarity index 100% rename from qurator/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum.odt rename to dinglehopper/tests/data/lorem-ipsum/lorem-ipsum.odt diff --git a/qurator/dinglehopper/tests/data/mixed-regions.page.xml b/dinglehopper/tests/data/mixed-regions.page.xml similarity index 100% rename from qurator/dinglehopper/tests/data/mixed-regions.page.xml rename to dinglehopper/tests/data/mixed-regions.page.xml diff --git a/qurator/dinglehopper/tests/data/order.page.xml b/dinglehopper/tests/data/order.page.xml similarity index 100% rename from qurator/dinglehopper/tests/data/order.page.xml rename to dinglehopper/tests/data/order.page.xml diff --git a/qurator/dinglehopper/tests/data/table-order/table-no-reading-order.xml b/dinglehopper/tests/data/table-order/table-no-reading-order.xml similarity index 100% rename from qurator/dinglehopper/tests/data/table-order/table-no-reading-order.xml rename to dinglehopper/tests/data/table-order/table-no-reading-order.xml diff --git a/qurator/dinglehopper/tests/data/table-order/table-order-0001.xml b/dinglehopper/tests/data/table-order/table-order-0001.xml similarity index 100% rename from qurator/dinglehopper/tests/data/table-order/table-order-0001.xml rename to dinglehopper/tests/data/table-order/table-order-0001.xml diff --git a/qurator/dinglehopper/tests/data/table-order/table-order-0002.xml b/dinglehopper/tests/data/table-order/table-order-0002.xml similarity index 100% rename from qurator/dinglehopper/tests/data/table-order/table-order-0002.xml rename to dinglehopper/tests/data/table-order/table-order-0002.xml diff --git a/qurator/dinglehopper/tests/data/table-order/table-region.xml b/dinglehopper/tests/data/table-order/table-region.xml similarity index 100% rename from qurator/dinglehopper/tests/data/table-order/table-region.xml rename to dinglehopper/tests/data/table-order/table-region.xml diff --git a/qurator/dinglehopper/tests/data/table-order/table-unordered.xml b/dinglehopper/tests/data/table-order/table-unordered.xml similarity index 100% rename from qurator/dinglehopper/tests/data/table-order/table-unordered.xml rename to dinglehopper/tests/data/table-order/table-unordered.xml diff --git a/qurator/dinglehopper/tests/data/test-fake-ocr.page2018.xml b/dinglehopper/tests/data/test-fake-ocr.page2018.xml similarity index 100% rename from qurator/dinglehopper/tests/data/test-fake-ocr.page2018.xml rename to dinglehopper/tests/data/test-fake-ocr.page2018.xml diff --git a/qurator/dinglehopper/tests/data/test-gt.page2018.xml b/dinglehopper/tests/data/test-gt.page2018.xml similarity index 100% rename from qurator/dinglehopper/tests/data/test-gt.page2018.xml rename to dinglehopper/tests/data/test-gt.page2018.xml diff --git a/qurator/dinglehopper/tests/data/test.alto1.xml b/dinglehopper/tests/data/test.alto1.xml similarity index 100% rename from qurator/dinglehopper/tests/data/test.alto1.xml rename to dinglehopper/tests/data/test.alto1.xml diff --git a/qurator/dinglehopper/tests/data/test.alto2.xml b/dinglehopper/tests/data/test.alto2.xml similarity index 100% rename from qurator/dinglehopper/tests/data/test.alto2.xml rename to dinglehopper/tests/data/test.alto2.xml diff --git a/qurator/dinglehopper/tests/data/test.alto3.xml b/dinglehopper/tests/data/test.alto3.xml similarity index 100% rename from qurator/dinglehopper/tests/data/test.alto3.xml rename to dinglehopper/tests/data/test.alto3.xml diff --git a/qurator/dinglehopper/tests/data/test.page2018.xml b/dinglehopper/tests/data/test.page2018.xml similarity index 100% rename from qurator/dinglehopper/tests/data/test.page2018.xml rename to dinglehopper/tests/data/test.page2018.xml diff --git a/qurator/dinglehopper/tests/data/test.txt b/dinglehopper/tests/data/test.txt similarity index 100% rename from qurator/dinglehopper/tests/data/test.txt rename to dinglehopper/tests/data/test.txt diff --git a/qurator/dinglehopper/tests/data/unused-larex-indexed-textequiv-jkamlah/462875_0008.jpg b/dinglehopper/tests/data/unused-larex-indexed-textequiv-jkamlah/462875_0008.jpg similarity index 100% rename from qurator/dinglehopper/tests/data/unused-larex-indexed-textequiv-jkamlah/462875_0008.jpg rename to dinglehopper/tests/data/unused-larex-indexed-textequiv-jkamlah/462875_0008.jpg diff --git a/qurator/dinglehopper/tests/data/unused-larex-indexed-textequiv-jkamlah/OCR-D-GT_0008.xml b/dinglehopper/tests/data/unused-larex-indexed-textequiv-jkamlah/OCR-D-GT_0008.xml similarity index 100% rename from qurator/dinglehopper/tests/data/unused-larex-indexed-textequiv-jkamlah/OCR-D-GT_0008.xml rename to dinglehopper/tests/data/unused-larex-indexed-textequiv-jkamlah/OCR-D-GT_0008.xml diff --git a/qurator/dinglehopper/tests/data/unused-larex-indexed-textequiv-jkamlah/OCR-D-OCR-TESS_0008.xml b/dinglehopper/tests/data/unused-larex-indexed-textequiv-jkamlah/OCR-D-OCR-TESS_0008.xml similarity index 100% rename from qurator/dinglehopper/tests/data/unused-larex-indexed-textequiv-jkamlah/OCR-D-OCR-TESS_0008.xml rename to dinglehopper/tests/data/unused-larex-indexed-textequiv-jkamlah/OCR-D-OCR-TESS_0008.xml diff --git a/qurator/dinglehopper/tests/extracted_text_test.py b/dinglehopper/tests/extracted_text_test.py similarity index 100% rename from qurator/dinglehopper/tests/extracted_text_test.py rename to dinglehopper/tests/extracted_text_test.py diff --git a/qurator/dinglehopper/tests/test_align.py b/dinglehopper/tests/test_align.py similarity index 100% rename from qurator/dinglehopper/tests/test_align.py rename to dinglehopper/tests/test_align.py diff --git a/qurator/dinglehopper/tests/test_character_error_rate.py b/dinglehopper/tests/test_character_error_rate.py similarity index 100% rename from qurator/dinglehopper/tests/test_character_error_rate.py rename to dinglehopper/tests/test_character_error_rate.py diff --git a/qurator/dinglehopper/tests/test_edit_distance.py b/dinglehopper/tests/test_edit_distance.py similarity index 100% rename from qurator/dinglehopper/tests/test_edit_distance.py rename to dinglehopper/tests/test_edit_distance.py diff --git a/qurator/dinglehopper/tests/test_editops.py b/dinglehopper/tests/test_editops.py similarity index 100% rename from qurator/dinglehopper/tests/test_editops.py rename to dinglehopper/tests/test_editops.py diff --git a/qurator/dinglehopper/tests/test_integ_align.py b/dinglehopper/tests/test_integ_align.py similarity index 100% rename from qurator/dinglehopper/tests/test_integ_align.py rename to dinglehopper/tests/test_integ_align.py diff --git a/qurator/dinglehopper/tests/test_integ_bigger_texts.py b/dinglehopper/tests/test_integ_bigger_texts.py similarity index 100% rename from qurator/dinglehopper/tests/test_integ_bigger_texts.py rename to dinglehopper/tests/test_integ_bigger_texts.py diff --git a/qurator/dinglehopper/tests/test_integ_character_error_rate_ocr.py b/dinglehopper/tests/test_integ_character_error_rate_ocr.py similarity index 100% rename from qurator/dinglehopper/tests/test_integ_character_error_rate_ocr.py rename to dinglehopper/tests/test_integ_character_error_rate_ocr.py diff --git a/qurator/dinglehopper/tests/test_integ_cli_valid_json.py b/dinglehopper/tests/test_integ_cli_valid_json.py similarity index 100% rename from qurator/dinglehopper/tests/test_integ_cli_valid_json.py rename to dinglehopper/tests/test_integ_cli_valid_json.py diff --git a/qurator/dinglehopper/tests/test_integ_edit_distance_ocr.py b/dinglehopper/tests/test_integ_edit_distance_ocr.py similarity index 100% rename from qurator/dinglehopper/tests/test_integ_edit_distance_ocr.py rename to dinglehopper/tests/test_integ_edit_distance_ocr.py diff --git a/qurator/dinglehopper/tests/test_integ_ocrd_cli.py b/dinglehopper/tests/test_integ_ocrd_cli.py similarity index 100% rename from qurator/dinglehopper/tests/test_integ_ocrd_cli.py rename to dinglehopper/tests/test_integ_ocrd_cli.py diff --git a/qurator/dinglehopper/tests/test_integ_table_extraction.py b/dinglehopper/tests/test_integ_table_extraction.py similarity index 100% rename from qurator/dinglehopper/tests/test_integ_table_extraction.py rename to dinglehopper/tests/test_integ_table_extraction.py diff --git a/qurator/dinglehopper/tests/test_integ_word_error_rate_ocr.py b/dinglehopper/tests/test_integ_word_error_rate_ocr.py similarity index 100% rename from qurator/dinglehopper/tests/test_integ_word_error_rate_ocr.py rename to dinglehopper/tests/test_integ_word_error_rate_ocr.py diff --git a/qurator/dinglehopper/tests/test_ocr_files.py b/dinglehopper/tests/test_ocr_files.py similarity index 100% rename from qurator/dinglehopper/tests/test_ocr_files.py rename to dinglehopper/tests/test_ocr_files.py diff --git a/qurator/dinglehopper/tests/test_word_error_rate.py b/dinglehopper/tests/test_word_error_rate.py similarity index 100% rename from qurator/dinglehopper/tests/test_word_error_rate.py rename to dinglehopper/tests/test_word_error_rate.py diff --git a/qurator/dinglehopper/tests/util.py b/dinglehopper/tests/util.py similarity index 100% rename from qurator/dinglehopper/tests/util.py rename to dinglehopper/tests/util.py diff --git a/qurator/dinglehopper/word_error_rate.py b/dinglehopper/word_error_rate.py similarity index 100% rename from qurator/dinglehopper/word_error_rate.py rename to dinglehopper/word_error_rate.py diff --git a/ocrd-tool.json b/ocrd-tool.json index f45153c..f871ff0 120000 --- a/ocrd-tool.json +++ b/ocrd-tool.json @@ -1 +1 @@ -qurator/dinglehopper/ocrd-tool.json \ No newline at end of file +dinglehopper/ocrd-tool.json \ No newline at end of file diff --git a/setup.py b/setup.py index 6a4f57a..d7a3776 100644 --- a/setup.py +++ b/setup.py @@ -16,8 +16,7 @@ setup( long_description_content_type="text/markdown", keywords="qurator ocr", license="Apache", - packages=find_namespace_packages(include=["qurator.*"]) - + find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]), + packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]), install_requires=install_requires, tests_require=tests_require, package_data={ @@ -25,10 +24,10 @@ setup( }, entry_points={ "console_scripts": [ - "dinglehopper=qurator.dinglehopper.cli:main", - "dinglehopper-line-dirs=qurator.dinglehopper.cli_line_dirs:main", - "dinglehopper-extract=qurator.dinglehopper.cli_extract:main", - "ocrd-dinglehopper=qurator.dinglehopper.ocrd_cli:ocrd_dinglehopper", + "dinglehopper=dinglehopper.cli:main", + "dinglehopper-line-dirs=dinglehopper.cli_line_dirs:main", + "dinglehopper-extract=dinglehopper.cli_extract:main", + "ocrd-dinglehopper=dinglehopper.ocrd_cli:ocrd_dinglehopper", ] }, ) From dd9303b4292c929b55fac6f3e46f6cb07cdd22bd Mon Sep 17 00:00:00 2001 From: neingeist <neingeist@bl0rg.net> Date: Thu, 20 Apr 2023 20:15:44 +0200 Subject: [PATCH 10/82] =?UTF-8?q?=F0=9F=A7=B9=20.gitignore=20.python-versi?= =?UTF-8?q?on=20(for=20pyenv)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index c6ff1e0..2291cd6 100644 --- a/.gitignore +++ b/.gitignore @@ -16,6 +16,7 @@ htmlcov/ .venv env/ venv/ +.python-version # mypy .mypy_cache/ From 89814cbe4bf92f69a1c7833ee7de1ded2564683f Mon Sep 17 00:00:00 2001 From: CircleCI Config Suggestions Bot <131677722+CircleCI-config-suggestions-bot@users.noreply.github.com> Date: Fri, 5 May 2023 14:21:14 -0400 Subject: [PATCH 11/82] Upload test results to CircleCI --- .circleci/config.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3ac6a49..f023c83 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -13,7 +13,10 @@ jobs: - run: if python3 --version | grep -q "Python 3.6"; then pip install --prefer-binary -U opencv-python-headless numpy; fi # to avoid compilation - run: pip3 install -r requirements.txt - run: pip3 install pytest - - run: pytest + - run: mkdir -p test-results + - run: pytest --junitxml=test-results/junit.xml -o junit_family=legacy + - store_test_results: + path: test-results workflows: all-tests: From 207804e6a6b52f4c28c638bd3439263b33beacf6 Mon Sep 17 00:00:00 2001 From: Ruud de Jong <ruud.dejong@ivdnt.org> Date: Fri, 12 May 2023 09:55:00 +0200 Subject: [PATCH 12/82] Add batch processing and report summaries --- README.md | 58 +- dinglehopper/cli.py | 88 +- dinglehopper/cli_summarize.py | 101 + dinglehopper/templates/report.html.j2 | 42 + dinglehopper/templates/report.html.js | 24 + dinglehopper/templates/report.json.j2 | 6 + dinglehopper/templates/summary.html.j2 | 136 + dinglehopper/templates/summary.json.j2 | 15 + .../tests/data/directory-test/gt/1.xml | 3394 +++++++++++++++++ .../tests/data/directory-test/gt/2.xml | 3394 +++++++++++++++++ .../tests/data/directory-test/ocr/1.xml | 3394 +++++++++++++++++ .../tests/data/directory-test/ocr/2.xml | 3394 +++++++++++++++++ .../data/directory-test/ocr/3-has-no-gt.xml | 3394 +++++++++++++++++ dinglehopper/tests/test_integ_cli_dir.py | 41 + dinglehopper/tests/test_integ_differences.py | 27 + dinglehopper/tests/test_integ_summarize.py | 101 + setup.py | 1 + 17 files changed, 17584 insertions(+), 26 deletions(-) create mode 100644 dinglehopper/cli_summarize.py create mode 100644 dinglehopper/templates/summary.html.j2 create mode 100644 dinglehopper/templates/summary.json.j2 create mode 100644 dinglehopper/tests/data/directory-test/gt/1.xml create mode 100644 dinglehopper/tests/data/directory-test/gt/2.xml create mode 100644 dinglehopper/tests/data/directory-test/ocr/1.xml create mode 100644 dinglehopper/tests/data/directory-test/ocr/2.xml create mode 100644 dinglehopper/tests/data/directory-test/ocr/3-has-no-gt.xml create mode 100644 dinglehopper/tests/test_integ_cli_dir.py create mode 100644 dinglehopper/tests/test_integ_differences.py create mode 100644 dinglehopper/tests/test_integ_summarize.py diff --git a/README.md b/README.md index e7b3c7b..240f017 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,8 @@ dinglehopper is an OCR evaluation tool and reads [ALTO](https://github.com/altoxml), [PAGE](https://github.com/PRImA-Research-Lab/PAGE-XML) and text files. It compares a ground truth (GT) document page with a OCR result page to compute -metrics and a word/character differences report. +metrics and a word/character differences report. It also supports batch processing by +generating, aggregating and summarizing multiple reports. [![Build Status](https://circleci.com/gh/qurator-spk/dinglehopper.svg?style=svg)](https://circleci.com/gh/qurator-spk/dinglehopper) @@ -27,7 +28,7 @@ sudo pip install . Usage ----- ~~~ -Usage: dinglehopper [OPTIONS] GT OCR [REPORT_PREFIX] +Usage: dinglehopper [OPTIONS] GT OCR [REPORT_PREFIX] [REPORTS_FOLDER] Compare the PAGE/ALTO/text document GT against the document OCR. @@ -35,19 +36,23 @@ Usage: dinglehopper [OPTIONS] GT OCR [REPORT_PREFIX] their text and falls back to plain text if no ALTO or PAGE is detected. The files GT and OCR are usually a ground truth document and the result of - an OCR software, but you may use dinglehopper to compare two OCR results. - In that case, use --no-metrics to disable the then meaningless metrics and - also change the color scheme from green/red to blue. + an OCR software, but you may use dinglehopper to compare two OCR results. In + that case, use --no-metrics to disable the then meaningless metrics and also + change the color scheme from green/red to blue. - The comparison report will be written to $REPORT_PREFIX.{html,json}, where - $REPORT_PREFIX defaults to "report". The reports include the character - error rate (CER) and the word error rate (WER). + The comparison report will be written to + $REPORTS_FOLDER/$REPORT_PREFIX.{html,json}, where $REPORTS_FOLDER defaults + to the current working directory and $REPORT_PREFIX defaults to "report". + The reports include the character error rate (CER) and the word error rate + (WER). By default, the text of PAGE files is extracted on 'region' level. You may use "--textequiv-level line" to extract from the level of TextLine tags. Options: --metrics / --no-metrics Enable/disable metrics and green/red + --differences BOOLEAN Enable reporting character and word level + differences --textequiv-level LEVEL PAGE TextEquiv level to extract text from --progress Show progress bar --help Show this message and exit. @@ -61,6 +66,43 @@ This generates `report.html` and `report.json`. ![dinglehopper displaying metrics and character differences](.screenshots/dinglehopper.png?raw=true) +Batch comparison between folders of GT and OCR files can be done by simply providing +folders: +~~~ +dinglehopper gt/ ocr/ report output_folder/ +~~~ +This assumes that you have files with the same name in both folders, e.g. +`gt/00000001.page.xml` and `ocr/00000001.alto.xml`. + +The example generates reports for each set of files, with the prefix `report`, in the +(automatically created) folder `output_folder/`. + +By default, the JSON report does not contain the character and word differences, only +the calculated metrics. If you want to include the differences, use the +`--differences` flag: + +~~~ +dinglehopper gt/ ocr/ report output_folder/ --differences +~~~ + +### dinglehopper-summarize +A set of (JSON) reports can be summarized into a single set of +reports. This is useful after having generated reports in batch. +Example: +~~~ +dinglehopper-summarize output_folder/ +~~~ +This generates `summary.html` and `summary.json` in the same `output_folder`. + +If you are summarizing many reports and have used the `--differences` flag while +generating them, it may be useful to limit the number of differences reported by using +the `--occurences-threshold` parameter. This will reduce the size of the generated HTML +report, making it easier to open and navigate. Note that the JSON report will still +contain all differences. Example: +~~~ +dinglehopper-summarize output_folder/ --occurences-threshold 10 +~~~ + ### dinglehopper-line-dirs You also may want to compare a directory of GT text files (i.e. `gt/line0001.gt.txt`) with a directory of OCR text files (i.e. `ocr/line0001.some-ocr.txt`) with a separate diff --git a/dinglehopper/cli.py b/dinglehopper/cli.py index 72d428d..b22aafc 100644 --- a/dinglehopper/cli.py +++ b/dinglehopper/cli.py @@ -1,4 +1,5 @@ import os +from collections import Counter import click from jinja2 import Environment, FileSystemLoader @@ -6,15 +7,15 @@ from markupsafe import escape from uniseg.graphemecluster import grapheme_clusters from ocrd_utils import initLogging -from .character_error_rate import character_error_rate_n -from .word_error_rate import word_error_rate_n, words_normalized -from .align import seq_align -from .extracted_text import ExtractedText -from .ocr_files import extract -from .config import Config +from dinglehopper.character_error_rate import character_error_rate_n +from dinglehopper.word_error_rate import word_error_rate_n, words_normalized +from dinglehopper.align import seq_align +from dinglehopper.extracted_text import ExtractedText +from dinglehopper.ocr_files import extract +from dinglehopper.config import Config -def gen_diff_report(gt_in, ocr_in, css_prefix, joiner, none): +def gen_diff_report(gt_in, ocr_in, css_prefix, joiner, none, differences=False): gtx = "" ocrx = "" @@ -54,6 +55,8 @@ def gen_diff_report(gt_in, ocr_in, css_prefix, joiner, none): g_pos = 0 o_pos = 0 + found_differences = [] + for k, (g, o) in enumerate(seq_align(gt_things, ocr_things)): css_classes = None gt_id = None @@ -66,6 +69,9 @@ def gen_diff_report(gt_in, ocr_in, css_prefix, joiner, none): # Deletions and inserts only produce one id + None, UI must # support this, i.e. display for the one id produced + if differences: + found_differences.append(f'{g} :: {o}') + gtx += joiner + format_thing(g, css_classes, gt_id) ocrx += joiner + format_thing(o, css_classes, ocr_id) @@ -74,6 +80,8 @@ def gen_diff_report(gt_in, ocr_in, css_prefix, joiner, none): if o is not None: o_pos += len(o) + found_differences = dict(Counter(elem for elem in found_differences)) + return """ <div class="row"> <div class="col-md-6 gt">{}</div> @@ -81,7 +89,7 @@ def gen_diff_report(gt_in, ocr_in, css_prefix, joiner, none): </div> """.format( gtx, ocrx - ) + ), found_differences def json_float(value): @@ -97,7 +105,8 @@ def json_float(value): return str(value) -def process(gt, ocr, report_prefix, *, metrics=True, textequiv_level="region"): +def process(gt, ocr, report_prefix, reports_folder='.', *, metrics=True, + differences=False, textequiv_level="region"): """Check OCR result against GT. The @click decorators change the signature of the decorated functions, so we keep this undecorated version and use @@ -110,14 +119,15 @@ def process(gt, ocr, report_prefix, *, metrics=True, textequiv_level="region"): cer, n_characters = character_error_rate_n(gt_text, ocr_text) wer, n_words = word_error_rate_n(gt_text, ocr_text) - char_diff_report = gen_diff_report( - gt_text, ocr_text, css_prefix="c", joiner="", none="·" - ) + char_diff_report, diff_c = gen_diff_report(gt_text, ocr_text, css_prefix="c", + joiner="", + none="·", differences=differences) gt_words = words_normalized(gt_text) ocr_words = words_normalized(ocr_text) - word_diff_report = gen_diff_report( - gt_words, ocr_words, css_prefix="w", joiner=" ", none="⋯" + word_diff_report, diff_w = gen_diff_report( + gt_words, ocr_words, css_prefix="w", joiner=" ", none="⋯", + differences=differences ) env = Environment( @@ -129,7 +139,11 @@ def process(gt, ocr, report_prefix, *, metrics=True, textequiv_level="region"): for report_suffix in (".html", ".json"): template_fn = "report" + report_suffix + ".j2" - out_fn = report_prefix + report_suffix + + if not os.path.isdir(reports_folder): + os.mkdir(reports_folder) + + out_fn = os.path.join(reports_folder, report_prefix + report_suffix) template = env.get_template(template_fn) template.stream( @@ -142,16 +156,42 @@ def process(gt, ocr, report_prefix, *, metrics=True, textequiv_level="region"): char_diff_report=char_diff_report, word_diff_report=word_diff_report, metrics=metrics, + differences=differences, + diff_c=diff_c, + diff_w=diff_w, ).dump(out_fn) +def process_dir(gt, ocr, report_prefix, reports_folder, metrics, differences, + textequiv_level): + for gt_file in os.listdir(gt): + gt_file_path = os.path.join(gt, gt_file) + ocr_file_path = os.path.join(ocr, gt_file) + + if os.path.isfile(gt_file_path) and os.path.isfile(ocr_file_path): + process(gt_file_path, ocr_file_path, + f"{gt_file}-{report_prefix}", + reports_folder=reports_folder, + metrics=metrics, + differences=differences, + textequiv_level=textequiv_level) + else: + print("Skipping {0} and {1}".format(gt_file_path, ocr_file_path)) + + @click.command() @click.argument("gt", type=click.Path(exists=True)) @click.argument("ocr", type=click.Path(exists=True)) @click.argument("report_prefix", type=click.Path(), default="report") +@click.argument("reports_folder", type=click.Path(), default=".") @click.option( "--metrics/--no-metrics", default=True, help="Enable/disable metrics and green/red" ) +@click.option( + "--differences", + default=False, + help="Enable reporting character and word level differences" +) @click.option( "--textequiv-level", default="region", @@ -159,7 +199,8 @@ def process(gt, ocr, report_prefix, *, metrics=True, textequiv_level="region"): metavar="LEVEL", ) @click.option("--progress", default=False, is_flag=True, help="Show progress bar") -def main(gt, ocr, report_prefix, metrics, textequiv_level, progress): +def main(gt, ocr, report_prefix, reports_folder, metrics, differences, textequiv_level, + progress): """ Compare the PAGE/ALTO/text document GT against the document OCR. @@ -171,7 +212,8 @@ def main(gt, ocr, report_prefix, metrics, textequiv_level, progress): that case, use --no-metrics to disable the then meaningless metrics and also change the color scheme from green/red to blue. - The comparison report will be written to $REPORT_PREFIX.{html,json}, where + The comparison report will be written to $REPORTS_FOLDER/$REPORT_PREFIX.{html,json}, + where $REPORTS_FOLDER defaults to the current working directory and $REPORT_PREFIX defaults to "report". The reports include the character error rate (CER) and the word error rate (WER). @@ -180,7 +222,17 @@ def main(gt, ocr, report_prefix, metrics, textequiv_level, progress): """ initLogging() Config.progress = progress - process(gt, ocr, report_prefix, metrics=metrics, textequiv_level=textequiv_level) + if os.path.isdir(gt): + if not os.path.isdir(ocr): + raise click.BadParameter( + "OCR must be a directory if GT is a directory", param_hint="ocr" + ) + else: + process_dir(gt, ocr, report_prefix, reports_folder, metrics, + differences, textequiv_level) + else: + process(gt, ocr, report_prefix, reports_folder, metrics=metrics, + differences=differences, textequiv_level=textequiv_level) if __name__ == "__main__": diff --git a/dinglehopper/cli_summarize.py b/dinglehopper/cli_summarize.py new file mode 100644 index 0000000..1cf1c91 --- /dev/null +++ b/dinglehopper/cli_summarize.py @@ -0,0 +1,101 @@ +import json +import os + +import click +from ocrd_utils import initLogging +from jinja2 import Environment, FileSystemLoader + +from dinglehopper.cli import json_float + + +def process(reports_folder, occurrences_threshold=1): + cer_list = [] + wer_list = [] + cer_sum = 0 + wer_sum = 0 + diff_c = {} + diff_w = {} + + for report in os.listdir(reports_folder): + if report.endswith(".json"): + with open(os.path.join(reports_folder, report), "r") as f: + report_data = json.load(f) + + if "cer" not in report_data or "wer" not in report_data: + click.echo( + f"Skipping {report} because it does not contain CER and WER") + continue + + cer = report_data["cer"] + wer = report_data["wer"] + cer_list.append(cer) + wer_list.append(wer) + cer_sum += cer + wer_sum += wer + + for key, value in report_data["differences"]["character_level"].items(): + diff_c[key] = diff_c.get(key, 0) + value + for key, value in report_data["differences"]["word_level"].items(): + diff_w[key] = diff_w.get(key, 0) + value + + if len(cer_list) == 0: + click.echo(f"No reports found in folder '{os.path.abspath(reports_folder)}'") + return + + cer_avg = cer_sum / len(cer_list) + wer_avg = wer_sum / len(wer_list) + + print(f"Number of reports: {len(cer_list)}") + print(f"Average CER: {cer_avg}") + print(f"Average WER: {wer_avg}") + print(f"Sum of common mistakes: {cer_sum}") + print(f"Sum of common mistakes: {wer_sum}") + + env = Environment( + loader=FileSystemLoader( + os.path.join(os.path.dirname(os.path.realpath(__file__)), "templates") + ) + ) + env.filters["json_float"] = json_float + for report_suffix in (".html", ".json"): + template_fn = "summary" + report_suffix + ".j2" + + out_fn = os.path.join(reports_folder, 'summary' + report_suffix) + template = env.get_template(template_fn) + template.stream( + num_reports=len(cer_list), + cer_avg=cer_avg, + wer_avg=wer_avg, + diff_c=diff_c, + diff_w=diff_w, + occurrences_threshold=occurrences_threshold, + ).dump(out_fn) + + +@click.command() +@click.argument("reports_folder", + type=click.Path(exists=True), + default="./reports" + ) +@click.option("--occurrences-threshold", + type=int, + default=1, + help="Only show differences that occur at least this many times.") +def main(reports_folder, occurrences_threshold): + """ + Summarize the results from multiple reports generated earlier by dinglehopper. + It calculates the average CER and WER, as well as a sum of common mistakes. + Reports include lists of mistakes and their occurrences. + + You may use a threshold to reduce the file size of the HTML report by only showing + mistakes whose number of occurrences is above the threshold. The JSON report will + always contain all mistakes. + + All JSON files in the provided folder will be gathered and summarized. + """ + initLogging() + process(reports_folder, occurrences_threshold) + + +if __name__ == "__main__": + main() diff --git a/dinglehopper/templates/report.html.j2 b/dinglehopper/templates/report.html.j2 index 0c2f464..435b98a 100644 --- a/dinglehopper/templates/report.html.j2 +++ b/dinglehopper/templates/report.html.j2 @@ -26,6 +26,22 @@ border: 2px solid; border-radius: 5px; } + + .row { + margin-bottom: 20px; + } + + table { + width: 100%; + } + + th { + cursor: pointer; + } + + th:hover { + background-color: #eee; + } </style> </head> <body> @@ -50,6 +66,32 @@ <h2>Word differences</h2> {{ word_diff_report }} +{%- if differences %} +{% set sections = [{'title': 'Found differences (character)', 'data': diff_c}, {'title': 'Found differences (word)', 'data': diff_w}] %} + +<div class="row"> +{% for section in sections %} + <div class="col-md-6"> + <h2>{{ section['title'] }}</h2> + <table> + <thead> + <tr> + <th>GT</th> + <th>OCR</th> + <th>Occurrences</th> + </tr> + {% for gt_ocr, occurrences in section['data'].items() %} + <tr> + <td>{{ gt_ocr.split("::")[0] }}</td> + <td>{{ gt_ocr.split("::")[1] }}</td> + <td>{{ occurrences }}</td> + </tr> + {% endfor %} + </table> + </div> +{% endfor %} +</div> +{%- endif %} </div> diff --git a/dinglehopper/templates/report.html.js b/dinglehopper/templates/report.html.js index 4c2ba28..f47cee7 100644 --- a/dinglehopper/templates/report.html.js +++ b/dinglehopper/templates/report.html.js @@ -12,4 +12,28 @@ $(document).ready(function() { $('.diff').mouseout(function() { find_diff_class($(this).attr('class')).removeClass('diff-highlight'); }); + + /* Sort this column of the table */ + $('th').click(function () { + var table = $(this).closest('table'); + var rows = table.find('tbody > tr').toArray().sort(compareRows($(this).index())); + this.asc = !this.asc; + if (!this.asc) { + rows = rows.reverse(); + } + for (var i = 0; i < rows.length; i++) { + table.children('tbody').append(rows[i]); + } + }); + + function compareRows(index) { + return function (row1, row2) { + var cell1 = $(row1).children('td').eq(index).text().toLowerCase(); + var cell2 = $(row2).children('td').eq(index).text().toLowerCase(); + return cell1.localeCompare(cell2, undefined, { + numeric: true, + sensitivity: 'base' + }); + } + } }); diff --git a/dinglehopper/templates/report.json.j2 b/dinglehopper/templates/report.json.j2 index 0e8af03..64dd8d4 100644 --- a/dinglehopper/templates/report.json.j2 +++ b/dinglehopper/templates/report.json.j2 @@ -4,6 +4,12 @@ {% if metrics %} "cer": {{ cer|json_float }}, "wer": {{ wer|json_float }}, +{% endif %} +{% if differences %} + "differences": { + "character_level": {{ diff_c|tojson }}, + "word_level": {{ diff_w|tojson }} + }, {% endif %} "n_characters": {{ n_characters }}, "n_words": {{ n_words }} diff --git a/dinglehopper/templates/summary.html.j2 b/dinglehopper/templates/summary.html.j2 new file mode 100644 index 0000000..e61e808 --- /dev/null +++ b/dinglehopper/templates/summary.html.j2 @@ -0,0 +1,136 @@ +<!doctype html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> + + <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> + <style type="text/css"> + {% if metrics %} + .gt .diff { + color: green; + } + .ocr .diff { + color: red; + } + {% else %} + .gt .diff, .ocr .diff { + color: blue; + } + {% endif %} + .ellipsis { + opacity: 0.5; + font-style: italic; + } + .diff-highlight { + border: 2px solid; + border-radius: 5px; + } + + .row { + margin-bottom: 20px; + } + + table { + width: 100%; + } + + .cer { + flex-direction: column; + } + + tr:hover { + background-color: #f5f5f5; + } + + th { + cursor: pointer; + } + + th:hover { + background-color: #eee; + } + + td { + min-width: 100px; + } + + td:hover { + background-color: #eee; + } + </style> +</head> +<body> + +<div class="container"> + +<div class="row"> + <h1>Summary of all reports</h1> +</div> + +<div class="row"> + <p>Number of reports: {{ num_reports }}</p> +</div> + +{% if cer_avg and wer_avg -%} +<div class="row"> + <h2>Metrics</h2> +</div> + +<div class="row cer"> + <p>Average CER: {{ cer_avg|round(4) }}</p> + <p>Average WER: {{ wer_avg|round(4) }}</p> +</div> +{% endif %} + +{%- if diff_c and diff_w %} +{%- set sections = [{'title': 'Found differences (character)', 'data': diff_c}, {'title': 'Found differences (word)', 'data': diff_w}] %} + +<div class="row"> +{%- for section in sections %} + <div class="col-md-6"> + <h2>{{ section['title'] }}</h2> + <table> + <thead> + <tr><th>GT</th><th>OCR</th><th>Occurrences</th></tr> + </thead> + {%- set num_omitted = namespace(value=0) -%} + {% for gt_ocr, occurrences in section['data'].items() -%} + {% if occurrences < occurrences_threshold -%} + {%- set num_omitted.value = num_omitted.value + 1 %} + {%- else -%} + {%- set gt = gt_ocr.split(" :: ")[0] %} + {%- set ocr = gt_ocr.split(" :: ")[1] %} + <tr> + <td title="{{ gt|urlencode }}">{{ gt }}</td>{# display the unicode character #} + <td title="{{ ocr|urlencode }}">{{ ocr }}</td > + <td>{{ occurrences }}</td> + </tr> + {%- endif %} + {%- endfor %} + + {% if num_omitted.value > 0 and occurrences_threshold > 1 -%} + <p>Skipped {{ num_omitted.value }} diffs with fewer than {{ occurrences_threshold }} occurrences. The complete list of diffs is available in the accompanying JSON file.</p> + {%- set num_omitted.value = 0 %} + {%- endif %} + </table> + </div> +{%- endfor %} +</div> +{%- endif %} + +</div> + + + +<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script> +<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script> +<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script> + +<script> +{% include 'report.html.js' %} +</script> + + +</body> +</html> diff --git a/dinglehopper/templates/summary.json.j2 b/dinglehopper/templates/summary.json.j2 new file mode 100644 index 0000000..bb45f4e --- /dev/null +++ b/dinglehopper/templates/summary.json.j2 @@ -0,0 +1,15 @@ +{ +"num_reports": {{ num_reports}} +{%- if cer_avg and wer_avg %} + , + "cer_avg": {{ cer_avg|json_float }}, + "wer_avg": {{ wer_avg|json_float }} +{%- endif %} +{%- if diff_c and wer_avg %} + , + "differences": { + "character_level": {{ diff_c|tojson }}, + "word_level": {{ diff_w|tojson }} + } +{%- endif %} +} diff --git a/dinglehopper/tests/data/directory-test/gt/1.xml b/dinglehopper/tests/data/directory-test/gt/1.xml new file mode 100644 index 0000000..c0dc183 --- /dev/null +++ b/dinglehopper/tests/data/directory-test/gt/1.xml @@ -0,0 +1,3394 @@ +<?xml version="1.0" encoding="UTF-8"?> +<PcGts xmlns="http://schema.primaresearch.org/PAGE/gts/pagecontent/2018-07-15" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://schema.primaresearch.org/PAGE/gts/pagecontent/2018-07-15 http://schema.primaresearch.org/PAGE/gts/pagecontent/2018-07-15/pagecontent.xsd" pcGtsId="backhart_768169569_0001_00000119"> + <Metadata> + <Creator>doculibtopagexml</Creator> + <Created>2019-01-08T10:25:36</Created> + <LastChange>2019-04-26T07:11:05</LastChange></Metadata> + <Page imageFilename="00000119.tif" imageXResolution="300.00000" imageYResolution="300.00000" imageWidth="1148" imageHeight="1852" type="content"> + <AlternativeImage filename="00000119_b.tif"/> + <PrintSpace> + <Coords points="93,136 93,1613 913,1613 913,136"/></PrintSpace> + <ReadingOrder> + <OrderedGroup id="ro357564684568544579089"> + <RegionRefIndexed regionRef="r0" index="1"/> + <RegionRefIndexed regionRef="r2" index="2"/> + </OrderedGroup></ReadingOrder> + <TextRegion id="r0" readingDirection="left-to-right" textLineOrder="top-to-bottom" type="paragraph" indented="false" align="justify" primaryLanguage="German"> + <Coords points="157,251 170,251 170,256 245,256 245,258 370,258 370,259 420,259 420,267 437,267 437,268 621,268 621,263 657,263 657,261 701,261 701,259 718,259 718,266 856,266 856,262 871,262 871,320 872,320 872,392 871,392 871,489 869,489 869,783 830,783 830,791 815,791 815,788 788,788 788,781 646,781 646,786 570,786 570,819 493,819 493,829 334,829 334,833 249,833 249,834 160,834 160,840 146,840 146,830 131,830 131,802 132,802 132,590 131,590 131,554 133,554 133,513 135,513 135,342 134,342 134,304 135,304 135,252 157,252"/> + <TextLine id="l5"> + <Coords points="157,251 170,251 170,256 245,256 245,258 370,258 370,259 420,259 420,267 437,267 437,268 621,268 621,263 657,263 657,261 701,261 701,259 718,259 718,266 856,266 856,262 871,262 871,297 821,297 821,291 682,291 682,295 575,295 575,297 560,297 560,296 455,296 455,289 386,289 386,288 283,288 283,287 219,287 219,285 188,285 188,284 174,284 174,283 135,283 135,252 157,252"/> + <Word id="w1663" language="German" readingDirection="left-to-right"> + <Coords points="157,251 170,251 170,261 185,261 185,263 199,263 199,285 188,285 188,284 174,284 174,283 135,283 135,252 157,252"/> + <Glyph id="c1665"> + <Coords points="135,252 155,252 155,283 135,283"/> + <TextEquiv conf="0.75285"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1667"> + <Coords points="157,251 170,251 170,283 157,283"/> + <TextEquiv conf="0.77841"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c1669"> + <Coords points="174,261 185,261 185,284 174,284"/> + <TextEquiv conf="0.84378"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1671"> + <Coords points="188,263 199,263 199,285 188,285"/> + <TextEquiv conf="0.75436"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75285"> + <Unicode>ber</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1673" language="German" readingDirection="left-to-right"> + <Coords points="236,256 245,256 245,264 260,264 260,287 219,287 219,257 236,257"/> + <Glyph id="c1675"> + <Coords points="219,257 233,257 233,287 219,287"/> + <TextEquiv conf="0.80770"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1677"> + <Coords points="236,256 245,256 245,287 236,287"/> + <TextEquiv conf="0.75232"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1679"> + <Coords points="248,264 260,264 260,287 248,287"/> + <TextEquiv conf="0.87596"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75232"> + <Unicode>die</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1681" language="German" readingDirection="left-to-right"> + <Coords points="329,258 370,258 370,288 283,288 283,264 304,264 304,259 329,259"/> + <Glyph id="c1683"> + <Coords points="283,264 299,264 299,288 283,288"/> + <TextEquiv conf="0.75082"> + <Unicode>v</Unicode></TextEquiv></Glyph> + <Glyph id="c1685"> + <Coords points="304,259 310,259 310,288 304,288"/> + <TextEquiv conf="0.68661"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1687"> + <Coords points="315,266 325,266 325,287 315,287"/> + <TextEquiv conf="0.72317"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1689"> + <Coords points="329,258 337,258 337,288 329,288"/> + <TextEquiv conf="0.83915"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1691"> + <Coords points="340,266 349,266 349,287 340,287"/> + <TextEquiv conf="0.79152"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1693"> + <Coords points="354,258 370,258 370,288 354,288"/> + <TextEquiv conf="0.67275"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.67275"> + <Unicode>vielen</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1695" language="German" readingDirection="left-to-right"> + <Coords points="386,259 420,259 420,267 437,267 437,268 452,268 452,269 503,269 503,289 469,289 469,296 455,296 455,289 386,289"/> + <Glyph id="c1697"> + <Coords points="386,259 420,259 420,289 386,289"/> + <TextEquiv conf="0.75776"> + <Unicode>S</Unicode></TextEquiv></Glyph> + <Glyph id="c1699"> + <Coords points="424,267 437,267 437,287 424,287"/> + <TextEquiv conf="0.81753"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1701"> + <Coords points="441,268 452,268 452,288 441,288"/> + <TextEquiv conf="0.85307"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1703"> + <Coords points="455,269 469,269 469,296 455,296"/> + <TextEquiv conf="0.81493"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c1705"> + <Coords points="473,269 482,269 482,289 473,289"/> + <TextEquiv conf="0.78034"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1707"> + <Coords points="487,269 503,269 503,289 487,289"/> + <TextEquiv conf="0.74845"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74845"> + <Unicode>Sorgen</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1709" language="German" readingDirection="left-to-right"> + <Coords points="518,268 542,268 542,269 608,269 608,289 589,289 589,290 575,290 575,297 560,297 560,289 546,289 546,288 518,288"/> + <Glyph id="c1711"> + <Coords points="518,268 542,268 542,288 518,288"/> + <TextEquiv conf="0.76983"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c1713"> + <Coords points="546,269 557,269 557,289 546,289"/> + <TextEquiv conf="0.69585"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1715"> + <Coords points="560,269 575,269 575,297 560,297"/> + <TextEquiv conf="0.80275"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c1717"> + <Coords points="579,269 589,269 589,290 579,290"/> + <TextEquiv conf="0.75463"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1719"> + <Coords points="592,269 608,269 608,289 592,289"/> + <TextEquiv conf="0.77872"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69585"> + <Unicode>wegen</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1721" language="German" readingDirection="left-to-right"> + <Coords points="701,259 718,259 718,268 750,268 750,291 682,291 682,295 657,295 657,290 621,290 621,263 657,263 657,261 701,261"/> + <Glyph id="c1723"> + <Coords points="621,263 640,263 640,290 621,290"/> + <TextEquiv conf="0.67731"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1725"> + <Coords points="644,268 653,268 653,289 644,289"/> + <TextEquiv conf="0.72582"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1727"> + <Coords points="657,261 682,261 682,295 657,295"/> + <TextEquiv conf="0.80586"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1729"> + <Coords points="676,268 688,268 688,290 676,290"/> + <TextEquiv conf="0.85827"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1731"> + <Coords points="691,261 698,261 698,291 691,291"/> + <TextEquiv conf="0.69996"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1733"> + <Coords points="701,259 718,259 718,291 701,291"/> + <TextEquiv conf="0.58348"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c1737"> + <Coords points="719,268 729,268 729,290 719,290"/> + <TextEquiv conf="0.72210"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1739"> + <Coords points="733,268 750,268 750,291 733,291"/> + <TextEquiv conf="0.78413"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.58348"> + <Unicode>deelben</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1741" language="German" readingDirection="left-to-right"> + <Coords points="856,262 871,262 871,297 821,297 821,291 807,291 807,290 774,290 774,266 856,266"/> + <Glyph id="c1743"> + <Coords points="774,266 789,266 789,290 774,290"/> + <TextEquiv conf="0.78911"> + <Unicode>v</Unicode></TextEquiv></Glyph> + <Glyph id="c1745"> + <Coords points="794,268 804,268 804,290 794,290"/> + <TextEquiv conf="0.83999"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1747"> + <Coords points="807,269 819,269 819,291 807,291"/> + <TextEquiv conf="0.73881"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1749"> + <Coords points="821,269 835,269 835,297 821,297"/> + <TextEquiv conf="0.88566"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c1751"> + <Coords points="838,267 854,267 854,290 838,290"/> + <TextEquiv conf="0.85102"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1753"> + <Coords points="856,262 871,262 871,297 856,297"/> + <TextEquiv conf="0.80438"> + <Unicode>ß</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.73881"> + <Unicode>vergaß</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>ber die vielen Sorgen wegen deelben vergaß</Unicode></TextEquiv></TextLine> + <TextLine id="l6"> + <Coords points="224,797 334,797 334,800 440,800 440,807 484,807 484,813 570,813 570,819 493,819 493,829 334,829 334,833 249,833 249,834 160,834 160,840 146,840 146,830 131,830 131,802 146,802 146,801 224,801"/> + <Word id="w1755" language="German" readingDirection="left-to-right"> + <Coords points="146,801 160,801 160,808 175,808 175,831 160,831 160,840 146,840 146,830 131,830 131,802 146,802"/> + <Glyph id="c1757"> + <Coords points="131,802 141,802 141,830 131,830"/> + <TextEquiv conf="0.77702"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1759"> + <Coords points="146,801 160,801 160,840 146,840"/> + <TextEquiv conf="0.69026"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c1761"> + <Coords points="164,808 175,808 175,831 164,831"/> + <TextEquiv conf="0.74867"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69026"> + <Unicode>ihr</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1763" language="German" readingDirection="left-to-right"> + <Coords points="224,797 249,797 249,834 224,834 224,830 190,830 190,803 224,803"/> + <Glyph id="c1765"> + <Coords points="190,803 203,803 203,830 190,830"/> + <TextEquiv conf="0.68484"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1767"> + <Coords points="207,809 220,809 220,828 207,828"/> + <TextEquiv conf="0.69132"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1769"> + <Coords points="224,797 249,797 249,834 224,834"/> + <TextEquiv conf="0.73594"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.68484"> + <Unicode>do</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1771" language="German" readingDirection="left-to-right"> + <Coords points="318,797 334,797 334,833 318,833 318,827 271,827 271,806 318,806"/> + <Glyph id="c1773"> + <Coords points="271,806 288,806 288,827 271,827"/> + <TextEquiv conf="0.70153"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1775"> + <Coords points="293,807 305,807 305,827 293,827"/> + <TextEquiv conf="0.74772"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1777"> + <Coords points="318,797 334,797 334,833 318,833 318,826 309,826 309,806 318,806"/> + <TextEquiv conf="0.72521"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69144"> + <Unicode>no</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1781" language="German" readingDirection="left-to-right"> + <Coords points="351,806 387,806 387,829 351,829"/> + <Glyph id="c1783"> + <Coords points="351,806 367,806 367,829 351,829"/> + <TextEquiv conf="0.83185"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1785"> + <Coords points="370,806 387,806 387,829 370,829"/> + <TextEquiv conf="0.80758"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.80758"> + <Unicode>an</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1787" language="German" readingDirection="left-to-right"> + <Coords points="433,800 440,800 440,807 484,807 484,815 493,815 493,829 424,829 424,828 405,828 405,807 424,807 424,801 433,801"/> + <Glyph id="c1789"> + <Coords points="405,807 420,807 420,828 405,828"/> + <TextEquiv conf="0.75325"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1791"> + <Coords points="433,800 440,800 440,829 424,829 424,801 433,801"/> + <TextEquiv conf="0.69836"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1795"> + <Coords points="444,807 454,807 454,829 444,829"/> + <TextEquiv conf="0.77285"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1797"> + <Coords points="457,807 484,807 484,829 457,829"/> + <TextEquiv conf="0.84281"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c1799"> + <Coords points="486,815 493,815 493,829 486,829"/> + <TextEquiv conf="0.56713"> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.56713"> + <Unicode>aem.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1801" language="German" readingDirection="left-to-right"> + <Coords points="520,813 570,813 570,819 520,819"/> + <Glyph id="c1803"> + <Coords points="520,813 570,813 570,819 520,819"/> + <TextEquiv conf="0.88040"> + <Unicode>—</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.86562"> + <Unicode>—</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>ihr do no an aem. —</Unicode></TextEquiv></TextLine> + <TextLine id="l7"> + <Coords points="134,304 163,304 163,308 252,308 252,309 324,309 324,310 436,310 436,309 457,309 457,311 634,311 634,307 648,307 648,312 699,312 699,313 759,313 759,315 795,315 795,318 835,318 835,319 864,319 864,320 872,320 872,339 864,339 864,342 852,342 852,341 762,341 762,340 745,340 745,339 560,339 560,341 457,341 457,343 283,343 283,337 163,337 163,342 134,342"/> + <Word id="w1807" language="German" readingDirection="left-to-right"> + <Coords points="134,304 163,304 163,308 252,308 252,309 324,309 324,329 337,329 337,343 283,343 283,337 163,337 163,342 134,342"/> + <Glyph id="c1809"> + <Coords points="134,304 163,304 163,342 134,342"/> + <TextEquiv conf="0.77424"> + <Unicode>H</Unicode></TextEquiv></Glyph> + <Glyph id="c1811"> + <Coords points="173,314 189,314 189,336 173,336"/> + <TextEquiv conf="0.83291"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1813"> + <Coords points="198,315 209,315 209,336 198,336"/> + <TextEquiv conf="0.75086"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1815"> + <Coords points="219,313 229,313 229,337 219,337"/> + <TextEquiv conf="0.80943"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c1817"> + <Coords points="240,308 252,308 252,337 240,337"/> + <TextEquiv conf="0.77207"> + <Unicode>k</Unicode></TextEquiv></Glyph> + <Glyph id="c1819"> + <Coords points="260,317 273,317 273,337 260,337"/> + <TextEquiv conf="0.84221"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1821"> + <Coords points="283,317 299,317 299,343 283,343"/> + <TextEquiv conf="0.79249"> + <Unicode>p</Unicode></TextEquiv></Glyph> + <Glyph id="c1823"> + <Coords points="310,309 324,309 324,343 310,343"/> + <TextEquiv conf="0.87079"> + <Unicode>f</Unicode></TextEquiv></Glyph> + <Glyph id="c1825"> + <Coords points="329,329 337,329 337,343 329,343"/> + <TextEquiv conf="0.97446"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75086"> + <Unicode>Hartkopf,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1827" language="German" readingDirection="left-to-right"> + <Coords points="368,310 381,310 381,316 412,316 412,337 385,337 385,336 368,336"/> + <Glyph id="c1829"> + <Coords points="368,310 381,310 381,336 368,336"/> + <TextEquiv conf="0.76508"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1831"> + <Coords points="385,316 396,316 396,337 385,337"/> + <TextEquiv conf="0.75896"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1833"> + <Coords points="399,316 412,316 412,337 399,337"/> + <TextEquiv conf="0.82288"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75896"> + <Unicode>der</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1835" language="German" readingDirection="left-to-right"> + <Coords points="436,309 457,309 457,317 490,317 490,318 510,318 510,339 457,339 457,343 436,343"/> + <Glyph id="c1837"> + <Coords points="436,309 457,309 457,343 436,343"/> + <TextEquiv conf="0.75319"> + <Unicode>F</Unicode></TextEquiv></Glyph> + <Glyph id="c1839"> + <Coords points="460,318 472,318 472,336 460,336"/> + <TextEquiv conf="0.77654"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1841"> + <Coords points="475,317 490,317 490,337 475,337"/> + <TextEquiv conf="0.83225"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1843"> + <Coords points="494,318 510,318 510,339 494,339"/> + <TextEquiv conf="0.80133"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75319"> + <Unicode>Frau</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1845" language="German" readingDirection="left-to-right"> + <Coords points="634,307 648,307 648,312 699,312 699,319 721,319 721,339 560,339 560,341 533,341 533,311 634,311"/> + <Glyph id="c1847"> + <Coords points="533,311 560,311 560,341 533,341"/> + <TextEquiv conf="0.73224"> + <Unicode>A</Unicode></TextEquiv></Glyph> + <Glyph id="c1849"> + <Coords points="563,319 587,319 587,339 563,339"/> + <TextEquiv conf="0.80570"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c1851"> + <Coords points="592,316 601,316 601,339 592,339"/> + <TextEquiv conf="0.68586"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c1853"> + <Coords points="605,319 629,319 629,339 605,339"/> + <TextEquiv conf="0.77963"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c1855"> + <Coords points="634,307 648,307 648,339 634,339"/> + <TextEquiv conf="0.79249"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1857"> + <Coords points="653,318 667,318 667,339 653,339"/> + <TextEquiv conf="0.85011"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1859"> + <Coords points="672,319 688,319 688,339 672,339"/> + <TextEquiv conf="0.82539"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1861"> + <Coords points="693,312 699,312 699,339 693,339"/> + <TextEquiv conf="0.88742"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1863"> + <Coords points="704,319 721,319 721,339 704,339"/> + <TextEquiv conf="0.85821"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.68586"> + <Unicode>Amtmnnin</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1865" language="German" readingDirection="left-to-right"> + <Coords points="745,313 759,313 759,315 795,315 795,340 778,340 778,341 762,341 762,340 745,340"/> + <Glyph id="c1867"> + <Coords points="745,313 759,313 759,340 745,340"/> + <TextEquiv conf="0.85237"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1869"> + <Coords points="762,320 778,320 778,341 762,341"/> + <TextEquiv conf="0.79818"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1871"> + <Coords points="780,315 795,315 795,340 780,340"/> + <TextEquiv conf="0.76413"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.76413"> + <Unicode>das</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w36" language="German" readingDirection="left-to-right"> + <Coords points="819,318 835,318 835,319 864,319 864,320 872,320 872,339 864,339 864,342 852,342 852,341 819,341"/> + <Glyph id="c1875"> + <Coords points="819,318 835,318 835,341 819,341"/> + <TextEquiv conf="0.84042"> + <Unicode>v</Unicode></TextEquiv></Glyph> + <Glyph id="c1877"> + <Coords points="839,320 849,320 849,341 839,341"/> + <TextEquiv conf="0.84113"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1879"> + <Coords points="852,319 864,319 864,342 852,342"/> + <TextEquiv conf="0.84949"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1881"> + <Coords points="865,320 872,320 872,339 865,339"/> + <TextEquiv conf="0.80870"> + <Unicode>⸗</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.80870"> + <Unicode>ver⸗</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>Hartkopf, der Frau Amtmnnin das ver⸗</Unicode></TextEquiv></TextLine> + <TextLine id="l9"> + <Coords points="135,356 147,356 147,358 221,358 221,366 363,366 363,357 397,357 397,359 438,359 438,360 478,360 478,367 489,367 489,368 522,368 522,375 651,375 651,358 760,358 760,363 850,363 850,370 872,370 872,392 850,392 850,395 777,395 777,391 761,391 761,390 651,390 651,380 522,380 522,382 532,382 532,388 478,388 478,394 465,394 465,387 430,387 430,386 312,386 312,394 302,394 302,392 146,392 146,391 135,391"/> + <Word id="w1883" language="German" readingDirection="left-to-right"> + <Coords points="135,356 147,356 147,358 221,358 221,366 271,366 271,386 236,386 236,387 221,387 221,392 146,392 146,391 135,391"/> + <Glyph id="c1885"> + <Coords points="135,356 147,356 147,391 135,391"/> + <TextEquiv conf="0.87327"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c1887"> + <Coords points="146,364 161,364 161,392 146,392"/> + <TextEquiv conf="0.84382"> + <Unicode>p</Unicode></TextEquiv></Glyph> + <Glyph id="c1889"> + <Coords points="165,366 177,366 177,387 165,387"/> + <TextEquiv conf="0.78667"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1891"> + <Coords points="180,365 192,365 192,386 180,386"/> + <TextEquiv conf="0.89583"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1893"> + <Coords points="197,358 221,358 221,392 197,392"/> + <TextEquiv conf="0.82985"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1895"> + <Coords points="225,367 236,367 236,387 225,387"/> + <TextEquiv conf="0.74928"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1897"> + <Coords points="240,367 256,367 256,386 240,386"/> + <TextEquiv conf="0.76381"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1899"> + <Coords points="259,366 271,366 271,386 259,386"/> + <TextEquiv conf="0.90333"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74928"> + <Unicode>ſproene</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1901" language="German" readingDirection="left-to-right"> + <Coords points="302,366 333,366 333,386 312,386 312,394 302,394"/> + <Glyph id="c1903"> + <Coords points="302,366 312,366 312,394 302,394"/> + <TextEquiv conf="0.77930"> + <Unicode>z</Unicode></TextEquiv></Glyph> + <Glyph id="c1905"> + <Coords points="316,366 333,366 333,386 316,386"/> + <TextEquiv conf="0.88518"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.77930"> + <Unicode>zu</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1907" language="German" readingDirection="left-to-right"> + <Coords points="363,357 397,357 397,359 438,359 438,360 478,360 478,367 489,367 489,368 522,368 522,382 532,382 532,388 478,388 478,394 465,394 465,387 430,387 430,386 363,386"/> + <Glyph id="c1909"> + <Coords points="363,357 379,357 379,386 363,386"/> + <TextEquiv conf="0.74149"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1911"> + <Coords points="384,357 397,357 397,386 384,386"/> + <TextEquiv conf="0.81591"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c1913"> + <Coords points="401,364 412,364 412,385 401,385"/> + <TextEquiv conf="0.79031"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1915"> + <Coords points="415,365 426,365 426,385 415,385"/> + <TextEquiv conf="0.73056"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1917"> + <Coords points="430,359 438,359 438,387 430,387"/> + <TextEquiv conf="0.90756"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1919"> + <Coords points="441,360 446,360 446,387 441,387"/> + <TextEquiv conf="0.77904"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1921"> + <Coords points="451,366 461,366 461,387 451,387"/> + <TextEquiv conf="0.80085"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1923"> + <Coords points="465,360 478,360 478,394 465,394"/> + <TextEquiv conf="0.69815"> + <Unicode>f</Unicode></TextEquiv></Glyph> + <Glyph id="c1925"> + <Coords points="476,367 489,367 489,387 476,387"/> + <TextEquiv conf="0.74520"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1974"> + <Coords points="493,368 502,368 502,387 493,387"/> + <TextEquiv> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1976"> + <Coords points="507,368 522,368 522,387 507,387"/> + <TextEquiv> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1977"> + <Coords points="527,382 532,382 532,388 527,388"/> + <TextEquiv> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69815"> + <Unicode>berliefern.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1929" language="German" readingDirection="left-to-right"> + <Coords points="561,375 610,375 610,380 561,380"/> + <Glyph id="c1931"> + <Coords points="561,375 610,375 610,380 561,380"/> + <TextEquiv conf="0.79675"> + <Unicode>—</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.77520"> + <Unicode>—</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1935" language="German" readingDirection="left-to-right"> + <Coords points="651,358 677,358 677,361 689,361 689,367 710,367 710,388 677,388 677,390 651,390"/> + <Glyph id="c1937"> + <Coords points="651,358 677,358 677,390 651,390"/> + <TextEquiv conf="0.80549"> + <Unicode>E</Unicode></TextEquiv></Glyph> + <Glyph id="c1939"> + <Coords points="682,361 689,361 689,388 682,388"/> + <TextEquiv conf="0.74066"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1941"> + <Coords points="692,367 710,367 710,388 692,388"/> + <TextEquiv conf="0.86004"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74066"> + <Unicode>Ein</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1943" language="German" readingDirection="left-to-right"> + <Coords points="732,358 760,358 760,363 850,363 850,370 872,370 872,392 850,392 850,395 777,395 777,391 761,391 761,389 732,389"/> + <Glyph id="c1945"> + <Coords points="732,358 760,358 760,389 732,389"/> + <TextEquiv conf="0.83324"> + <Unicode>E</Unicode></TextEquiv></Glyph> + <Glyph id="c1947"> + <Coords points="761,369 775,369 775,391 761,391"/> + <TextEquiv conf="0.64602"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1949"> + <Coords points="777,369 793,369 793,395 777,395"/> + <TextEquiv conf="0.91447"> + <Unicode>p</Unicode></TextEquiv></Glyph> + <Glyph id="c1953"> + <Coords points="824,363 850,363 850,395 824,395"/> + <TextEquiv conf="0.86339"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1955"> + <Coords points="845,371 855,371 855,391 845,391"/> + <TextEquiv conf="0.82644"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1957"> + <Coords points="858,370 872,370 872,392 858,392"/> + <TextEquiv conf="0.83229"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1978"> + <Coords points="793,364 808,364 808,389 793,389"/> + <TextEquiv> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1979"> + <Coords points="811,368 822,368 822,388 811,388"/> + <TextEquiv> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.64602"> + <Unicode>Erpreer</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>ſproene zu berliefern. — Ein Erpreer</Unicode></TextEquiv></TextLine> + <TextLine id="l10"> + <Coords points="319,407 403,407 403,408 449,408 449,409 482,409 482,410 508,410 508,416 521,416 521,417 638,417 638,409 666,409 666,412 791,412 791,409 820,409 820,412 831,412 831,417 871,417 871,440 820,440 820,446 791,446 791,439 666,439 666,446 651,446 651,439 538,439 538,444 447,444 447,443 333,443 333,445 319,445 319,435 211,435 211,436 135,436 135,413 198,413 198,410 306,410 306,409 319,409"/> + <Word id="w2" language="German" readingDirection="left-to-right"> + <Coords points="198,410 211,410 211,415 227,415 227,435 211,435 211,436 135,436 135,413 198,413"/> + <Glyph id="c3"> + <Coords points="135,413 160,413 160,436 135,436"/> + <TextEquiv conf="0.83926"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c6"> + <Coords points="198,410 211,410 211,436 198,436"/> + <TextEquiv conf="0.74741"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c7"> + <Coords points="214,415 227,415 227,435 214,435"/> + <TextEquiv conf="0.78431"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1980"> + <Coords points="164,415 178,415 178,436 164,436"/> + <TextEquiv> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c1981"> + <Coords points="182,415 193,415 193,435 182,435"/> + <TextEquiv> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69343"> + <Unicode>wurde</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w8" language="German" readingDirection="left-to-right"> + <Coords points="247,415 283,415 283,435 247,435"/> + <Glyph id="c9"> + <Coords points="247,415 263,415 263,435 247,435"/> + <TextEquiv conf="0.75804"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c10"> + <Coords points="267,415 283,415 283,435 267,435"/> + <TextEquiv conf="0.88661"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75804"> + <Unicode>an</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w11" language="German" readingDirection="left-to-right"> + <Coords points="319,407 333,407 333,413 354,413 354,434 333,434 333,445 319,445 319,435 306,435 306,409 319,409"/> + <Glyph id="c12"> + <Coords points="306,409 315,409 315,435 306,435"/> + <TextEquiv conf="0.75017"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c13"> + <Coords points="319,407 333,407 333,445 319,445"/> + <TextEquiv conf="0.80132"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c14"> + <Coords points="337,413 354,413 354,434 337,434"/> + <TextEquiv conf="0.81077"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75017"> + <Unicode>ihn</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w15" language="German" readingDirection="left-to-right"> + <Coords points="390,407 403,407 403,408 449,408 449,409 482,409 482,410 508,410 508,416 521,416 521,431 538,431 538,444 447,444 447,443 406,443 406,436 390,436 390,435 371,435 371,415 390,415"/> + <Glyph id="c16"> + <Coords points="371,415 385,415 385,435 371,435"/> + <TextEquiv conf="0.81903"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c17"> + <Coords points="390,407 403,407 403,436 390,436"/> + <TextEquiv conf="0.81509"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c18"> + <Coords points="406,416 420,416 420,443 406,443"/> + <TextEquiv conf="0.75122"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c19"> + <Coords points="423,415 434,415 434,436 423,436"/> + <TextEquiv conf="0.74691"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c20"> + <Coords points="437,408 449,408 449,443 437,443"/> + <TextEquiv conf="0.73492"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c21"> + <Coords points="447,409 471,409 471,444 447,444"/> + <TextEquiv conf="0.80440"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c22"> + <Coords points="475,409 482,409 482,437 475,437"/> + <TextEquiv conf="0.71763"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c23"> + <Coords points="495,410 508,410 508,438 486,438 486,416 495,416"/> + <TextEquiv conf="0.85116"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c25"> + <Coords points="511,416 521,416 521,439 511,439"/> + <TextEquiv conf="0.81059"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c26"> + <Coords points="530,431 538,431 538,444 530,444"/> + <TextEquiv conf="0.88635"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.71763"> + <Unicode>abgeſit,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w27" language="German" readingDirection="left-to-right"> + <Coords points="587,417 614,417 614,438 584,438 584,439 566,439 566,418 587,418"/> + <Glyph id="c28"> + <Coords points="566,418 584,418 584,439 566,439"/> + <TextEquiv conf="0.85187"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c29"> + <Coords points="587,417 614,417 614,438 587,438"/> + <TextEquiv conf="0.85970"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.85187"> + <Unicode>um</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w30" language="German" readingDirection="left-to-right"> + <Coords points="638,409 666,409 666,417 687,417 687,439 666,439 666,446 651,446 651,437 638,437"/> + <Glyph id="c31"> + <Coords points="638,409 647,409 647,437 638,437"/> + <TextEquiv conf="0.76901"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c32"> + <Coords points="651,409 666,409 666,446 651,446"/> + <TextEquiv conf="0.72665"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c33"> + <Coords points="671,417 687,417 687,439 671,439"/> + <TextEquiv conf="0.80526"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72665"> + <Unicode>ihn</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w34" language="German" readingDirection="left-to-right"> + <Coords points="764,412 778,412 778,439 764,439 764,438 714,438 714,417 764,417"/> + <Glyph id="c35"> + <Coords points="714,417 730,417 730,438 714,438"/> + <TextEquiv conf="0.80072"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c36"> + <Coords points="735,417 760,417 760,438 735,438"/> + <TextEquiv conf="0.82963"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c37"> + <Coords points="764,412 778,412 778,439 764,439"/> + <TextEquiv conf="0.69324"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69324"> + <Unicode>ums</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w38" language="German" readingDirection="left-to-right"> + <Coords points="791,409 820,409 820,412 831,412 831,417 871,417 871,440 820,440 820,446 791,446"/> + <Glyph id="c39"> + <Coords points="791,409 820,409 820,446 791,446"/> + <TextEquiv conf="0.76995"> + <Unicode>H</Unicode></TextEquiv></Glyph> + <Glyph id="c40"> + <Coords points="824,412 831,412 831,439 824,439"/> + <TextEquiv conf="0.79272"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c41"> + <Coords points="835,417 863,417 863,440 835,440"/> + <TextEquiv conf="0.86622"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c42"> + <Coords points="860,417 871,417 871,440 860,440"/> + <TextEquiv conf="0.69070"> + <Unicode>⸗</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69070"> + <Unicode>Him⸗</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>wurde an ihn abgeſit, um ihn ums Him⸗</Unicode></TextEquiv></TextLine> + <TextLine id="l11"> + <Coords points="245,456 263,456 263,463 367,463 367,457 379,457 379,464 492,464 492,462 528,462 528,460 822,460 822,467 871,467 871,489 822,489 822,494 736,494 736,489 675,489 675,487 542,487 542,494 528,494 528,493 453,493 453,492 367,492 367,491 319,491 319,485 135,485 135,464 180,464 180,460 235,460 235,458 245,458"/> + <Word id="w44" language="German" readingDirection="left-to-right"> + <Coords points="245,456 263,456 263,463 296,463 296,485 135,485 135,464 180,464 180,460 235,460 235,458 245,458"/> + <Glyph id="c46"> + <Coords points="135,464 162,464 162,485 135,485"/> + <TextEquiv conf="0.85319"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c48"> + <Coords points="167,465 177,465 177,485 167,485"/> + <TextEquiv conf="0.78682"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c50"> + <Coords points="180,460 186,460 186,485 180,485"/> + <TextEquiv conf="0.78644"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c52"> + <Coords points="189,460 202,460 202,484 189,484"/> + <TextEquiv conf="0.75733"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <Glyph id="c54"> + <Coords points="207,463 230,463 230,484 207,484"/> + <TextEquiv conf="0.78771"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c8"> + <Coords points="235,458 241,458 241,483 235,483"/> + <TextEquiv conf="0.81867"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c57"> + <Coords points="245,456 263,456 263,483 245,483"/> + <TextEquiv conf="0.78037"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c59"> + <Coords points="265,463 276,463 276,482 265,482"/> + <TextEquiv conf="0.83574"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c11"> + <Coords points="278,463 296,463 296,485 278,485"/> + <TextEquiv conf="0.76827"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75733"> + <Unicode>melswien</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w12" language="German" readingDirection="left-to-right"> + <Coords points="333,463 349,463 349,484 329,484 329,491 319,491 319,464 333,464"/> + <Glyph id="c62"> + <Coords points="319,464 329,464 329,491 319,491"/> + <TextEquiv conf="0.80147"> + <Unicode>z</Unicode></TextEquiv></Glyph> + <Glyph id="c64"> + <Coords points="333,463 349,463 349,484 333,484"/> + <TextEquiv conf="0.89003"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.80147"> + <Unicode>zu</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w66" language="German" readingDirection="left-to-right"> + <Coords points="367,457 379,457 379,464 409,464 409,465 424,465 424,466 443,466 443,480 462,480 462,493 453,493 453,492 367,492"/> + <Glyph id="c68"> + <Coords points="367,457 379,457 379,492 367,492"/> + <TextEquiv conf="0.69068"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c70"> + <Coords points="377,465 393,465 393,485 377,485"/> + <TextEquiv conf="0.80786"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c72"> + <Coords points="393,464 409,464 409,492 393,492"/> + <TextEquiv conf="0.76161"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c74"> + <Coords points="413,465 424,465 424,486 413,486"/> + <TextEquiv conf="0.70436"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c76"> + <Coords points="428,466 443,466 443,487 428,487"/> + <TextEquiv conf="0.79354"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c78"> + <Coords points="453,480 462,480 462,493 453,493"/> + <TextEquiv conf="0.93265"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69068"> + <Unicode>ſagen,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w22" language="German" readingDirection="left-to-right"> + <Coords points="528,460 542,460 542,494 528,494 528,488 492,488 492,462 528,462"/> + <Glyph id="c80"> + <Coords points="492,462 505,462 505,488 492,488"/> + <TextEquiv conf="0.78044"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c82"> + <Coords points="509,468 523,468 523,488 509,488"/> + <TextEquiv conf="0.63475"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c84"> + <Coords points="528,460 542,460 542,494 528,494"/> + <TextEquiv conf="0.81577"> + <Unicode>ß</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.63475"> + <Unicode>daß</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w26" language="German" readingDirection="left-to-right"> + <Coords points="564,466 575,466 575,467 590,467 590,487 564,487"/> + <Glyph id="c27"> + <Coords points="564,466 575,466 575,487 564,487"/> + <TextEquiv conf="0.81638"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c87"> + <Coords points="578,467 590,467 590,487 578,487"/> + <TextEquiv conf="0.83546"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.81638"> + <Unicode>er</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w29" language="German" readingDirection="left-to-right"> + <Coords points="608,460 622,460 622,462 658,462 658,487 608,487"/> + <Glyph id="c30"> + <Coords points="608,460 622,460 622,487 608,487"/> + <TextEquiv conf="0.85168"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c90"> + <Coords points="626,466 641,466 641,487 626,487"/> + <TextEquiv conf="0.62393"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c92"> + <Coords points="645,462 658,462 658,487 645,487"/> + <TextEquiv conf="0.76629"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.62393"> + <Unicode>das</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w33" language="German" readingDirection="left-to-right"> + <Coords points="675,460 822,460 822,467 871,467 871,489 822,489 822,494 736,494 736,489 675,489"/> + <Glyph id="c34"> + <Coords points="675,460 703,460 703,489 675,489"/> + <TextEquiv conf="0.69798"> + <Unicode>V</Unicode></TextEquiv></Glyph> + <Glyph id="c95"> + <Coords points="706,466 718,466 718,487 706,487"/> + <TextEquiv conf="0.76922"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c97"> + <Coords points="721,468 732,468 732,487 721,487"/> + <TextEquiv conf="0.82046"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c99"> + <Coords points="736,460 746,460 746,494 736,494"/> + <TextEquiv conf="0.71052"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c38"> + <Coords points="744,468 760,468 760,494 744,494"/> + <TextEquiv conf="0.85039"> + <Unicode>p</Unicode></TextEquiv></Glyph> + <Glyph id="c102"> + <Coords points="764,468 777,468 777,489 764,489"/> + <TextEquiv conf="0.78193"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c104"> + <Coords points="780,468 792,468 792,488 780,488"/> + <TextEquiv conf="0.89800"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c106"> + <Coords points="796,460 822,460 822,494 796,494"/> + <TextEquiv conf="0.82949"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c108"> + <Coords points="823,467 835,467 835,489 823,489"/> + <TextEquiv conf="0.78273"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c43"> + <Coords points="838,467 854,467 854,489 838,489"/> + <TextEquiv conf="0.80730"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c44"> + <Coords points="858,467 871,467 871,489 858,489"/> + <TextEquiv conf="0.82663"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69798"> + <Unicode>Verſproene</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>melswien zu ſagen, daß er das Verſproene</Unicode></TextEquiv></TextLine> + <TextLine id="l12"> + <Coords points="189,505 328,505 328,506 415,506 415,508 553,508 553,507 567,507 567,510 593,510 593,515 723,515 723,509 738,509 738,507 764,507 764,511 854,511 854,517 869,517 869,540 802,540 802,543 738,543 738,538 631,538 631,543 617,543 617,538 487,538 487,537 363,537 363,540 350,540 350,535 213,535 213,538 150,538 150,541 133,541 133,513 154,513 154,507 189,507"/> + <Word id="w112" language="German" readingDirection="left-to-right"> + <Coords points="189,505 213,505 213,538 150,538 150,541 133,541 133,513 154,513 154,507 189,507"/> + <Glyph id="c114"> + <Coords points="133,513 150,513 150,541 133,541"/> + <TextEquiv conf="0.77811"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c116"> + <Coords points="154,507 161,507 161,535 154,535"/> + <TextEquiv conf="0.90902"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c118"> + <Coords points="164,514 175,514 175,535 164,535"/> + <TextEquiv conf="0.86294"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c120"> + <Coords points="178,508 185,508 185,535 178,535"/> + <TextEquiv conf="0.87351"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c122"> + <Coords points="189,505 213,505 213,538 189,538"/> + <TextEquiv conf="0.84207"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.77811"> + <Unicode>glei</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w124" language="German" readingDirection="left-to-right"> + <Coords points="238,507 251,507 251,512 286,512 286,531 265,531 265,532 251,532 251,533 238,533"/> + <Glyph id="c126"> + <Coords points="238,507 251,507 251,533 238,533"/> + <TextEquiv conf="0.82464"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c128"> + <Coords points="256,513 265,513 265,532 256,532"/> + <TextEquiv conf="0.74946"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c130"> + <Coords points="269,512 286,512 286,531 269,531"/> + <TextEquiv conf="0.75693"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74946"> + <Unicode>den</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w132" language="German" readingDirection="left-to-right"> + <Coords points="301,505 328,505 328,506 415,506 415,508 463,508 463,537 363,537 363,540 350,540 350,535 301,535"/> + <Glyph id="c134"> + <Coords points="301,505 328,505 328,535 301,535"/> + <TextEquiv conf="0.74360"> + <Unicode>A</Unicode></TextEquiv></Glyph> + <Glyph id="c136"> + <Coords points="330,512 347,512 347,533 330,533"/> + <TextEquiv conf="0.86690"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c15"> + <Coords points="350,513 363,513 363,540 350,540"/> + <TextEquiv conf="0.83730"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c139"> + <Coords points="367,514 378,514 378,535 367,535"/> + <TextEquiv conf="0.78025"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c141"> + <Coords points="382,515 397,515 397,536 382,536"/> + <TextEquiv conf="0.85364"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c143"> + <Coords points="402,506 415,506 415,536 402,536"/> + <TextEquiv conf="0.82963"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c145"> + <Coords points="418,508 426,508 426,537 418,537"/> + <TextEquiv conf="0.76089"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c147"> + <Coords points="430,509 436,509 436,536 430,536"/> + <TextEquiv conf="0.75730"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c149"> + <Coords points="440,508 463,508 463,537 440,537"/> + <TextEquiv conf="0.75571"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74360"> + <Unicode>Augenbli</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w151" language="German" readingDirection="left-to-right"> + <Coords points="553,507 567,507 567,510 593,510 593,515 645,515 645,517 665,517 665,537 631,537 631,543 617,543 617,538 487,538 487,508 553,508"/> + <Glyph id="c153"> + <Coords points="487,508 503,508 503,538 487,538"/> + <TextEquiv conf="0.75665"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c155"> + <Coords points="507,508 520,508 520,538 507,538"/> + <TextEquiv conf="0.85321"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c157"> + <Coords points="524,517 536,517 536,537 524,537"/> + <TextEquiv conf="0.81267"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c159"> + <Coords points="538,516 551,516 551,537 538,537"/> + <TextEquiv conf="0.86010"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c161"> + <Coords points="553,507 567,507 567,537 553,537"/> + <TextEquiv conf="0.85329"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c163"> + <Coords points="571,516 583,516 583,537 571,537"/> + <TextEquiv conf="0.79465"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c165"> + <Coords points="586,510 593,510 593,537 586,537"/> + <TextEquiv conf="0.70828"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c167"> + <Coords points="597,516 613,516 613,537 597,537"/> + <TextEquiv conf="0.89573"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c169"> + <Coords points="617,516 631,516 631,543 617,543"/> + <TextEquiv conf="0.83986"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c171"> + <Coords points="634,515 645,515 645,536 634,536"/> + <TextEquiv conf="0.71743"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c173"> + <Coords points="650,517 665,517 665,537 650,537"/> + <TextEquiv conf="0.75062"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.70828"> + <Unicode>berbringen</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w175" language="German" readingDirection="left-to-right"> + <Coords points="738,507 764,507 764,515 777,515 777,517 792,517 792,531 802,531 802,543 738,543 738,538 693,538 693,517 723,517 723,509 738,509"/> + <Glyph id="c177"> + <Coords points="693,517 718,517 718,538 693,538"/> + <TextEquiv conf="0.83211"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c179"> + <Coords points="723,509 736,509 736,537 723,537"/> + <TextEquiv conf="0.74706"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c181"> + <Coords points="738,507 764,507 764,543 738,543"/> + <TextEquiv conf="0.75061"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c183"> + <Coords points="768,515 777,515 777,539 768,539"/> + <TextEquiv conf="0.86418"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c185"> + <Coords points="781,517 792,517 792,537 781,537"/> + <TextEquiv conf="0.81924"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c187"> + <Coords points="794,531 802,531 802,543 794,543"/> + <TextEquiv conf="0.96890"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74706"> + <Unicode>mte,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w41" language="German" readingDirection="left-to-right"> + <Coords points="847,511 854,511 854,517 869,517 869,540 858,540 858,539 829,539 829,512 847,512"/> + <Glyph id="c189"> + <Coords points="829,512 844,512 844,539 829,539"/> + <TextEquiv conf="0.88091"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c191"> + <Coords points="847,511 854,511 854,539 847,539"/> + <TextEquiv conf="0.81469"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c193"> + <Coords points="858,517 869,517 869,540 858,540"/> + <TextEquiv conf="0.84284"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.81469"> + <Unicode>die</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>glei den Augenbli berbringen mte, die</Unicode></TextEquiv></TextLine> + <TextLine id="l13"> + <Coords points="325,551 340,551 340,558 455,558 455,555 470,555 470,558 664,558 664,557 692,557 692,562 808,562 808,560 830,560 830,567 858,567 858,581 869,581 869,597 859,597 859,595 692,595 692,597 677,597 677,594 548,594 548,595 451,595 451,597 435,597 435,587 384,587 384,586 363,586 363,583 155,583 155,590 131,590 131,554 224,554 224,553 325,553"/> + <Word id="w195" language="German" readingDirection="left-to-right"> + <Coords points="131,554 155,554 155,561 207,561 207,582 155,582 155,590 131,590"/> + <Glyph id="c197"> + <Coords points="131,554 155,554 155,590 131,590"/> + <TextEquiv conf="0.81259"> + <Unicode>F</Unicode></TextEquiv></Glyph> + <Glyph id="c199"> + <Coords points="157,562 169,562 169,582 157,582"/> + <TextEquiv conf="0.82264"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c201"> + <Coords points="172,562 187,562 187,582 172,582"/> + <TextEquiv conf="0.81917"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c203"> + <Coords points="191,561 207,561 207,582 191,582"/> + <TextEquiv conf="0.82070"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.81259"> + <Unicode>Frau</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w7" language="German" readingDirection="left-to-right"> + <Coords points="325,551 340,551 340,558 392,558 392,565 412,565 412,586 392,586 392,587 384,587 384,586 363,586 363,583 224,583 224,553 325,553"/> + <Glyph id="c205"> + <Coords points="224,553 250,553 250,583 224,583"/> + <TextEquiv conf="0.72094"> + <Unicode>A</Unicode></TextEquiv></Glyph> + <Glyph id="c207"> + <Coords points="252,562 278,562 278,582 252,582"/> + <TextEquiv conf="0.80405"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c209"> + <Coords points="283,561 292,561 292,583 283,583"/> + <TextEquiv conf="0.81141"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c211"> + <Coords points="295,561 321,561 321,583 295,583"/> + <TextEquiv conf="0.82492"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c213"> + <Coords points="325,551 340,551 340,583 325,583"/> + <TextEquiv conf="0.78478"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c215"> + <Coords points="343,562 359,562 359,583 343,583"/> + <TextEquiv conf="0.83247"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c217"> + <Coords points="363,564 379,564 379,586 363,586"/> + <TextEquiv conf="0.86555"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c219"> + <Coords points="384,558 392,558 392,587 384,587"/> + <TextEquiv conf="0.79899"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c221"> + <Coords points="395,565 412,565 412,586 395,586"/> + <TextEquiv conf="0.86251"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72094"> + <Unicode>Amtmnnin</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w17" language="German" readingDirection="left-to-right"> + <Coords points="455,555 470,555 470,563 496,563 496,566 511,566 511,586 496,586 496,587 451,587 451,597 435,597 435,558 455,558"/> + <Glyph id="c223"> + <Coords points="435,558 451,558 451,597 435,597"/> + <TextEquiv conf="0.81524"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c225"> + <Coords points="455,555 470,555 470,587 455,587"/> + <TextEquiv conf="0.75016"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c227"> + <Coords points="474,563 484,563 484,587 474,587"/> + <TextEquiv conf="0.79488"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c229"> + <Coords points="487,563 496,563 496,587 487,587"/> + <TextEquiv conf="0.85811"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c231"> + <Coords points="499,566 511,566 511,586 499,586"/> + <TextEquiv conf="0.83136"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75016"> + <Unicode>htte</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w23" language="German" readingDirection="left-to-right"> + <Coords points="530,558 576,558 576,593 548,593 548,595 530,595"/> + <Glyph id="c233"> + <Coords points="530,558 548,558 548,595 530,595"/> + <TextEquiv conf="0.81399"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c235"> + <Coords points="550,558 576,558 576,593 550,593"/> + <TextEquiv conf="0.85105"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.81399"> + <Unicode></Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w237" language="German" readingDirection="left-to-right"> + <Coords points="638,559 651,559 651,594 638,594 638,587 599,587 599,565 638,565"/> + <Glyph id="c239"> + <Coords points="599,565 616,565 616,587 599,587"/> + <TextEquiv conf="0.86619"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c241"> + <Coords points="619,566 635,566 635,587 619,587"/> + <TextEquiv conf="0.85601"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c243"> + <Coords points="638,559 651,559 651,594 638,594"/> + <TextEquiv conf="0.90154"> + <Unicode>f</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.85601"> + <Unicode>auf</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w245" language="German" readingDirection="left-to-right"> + <Coords points="664,557 692,557 692,565 713,565 713,587 692,587 692,597 677,597 677,587 664,587"/> + <Glyph id="c247"> + <Coords points="664,557 673,557 673,587 664,587"/> + <TextEquiv conf="0.86188"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c249"> + <Coords points="677,557 692,557 692,597 677,597"/> + <TextEquiv conf="0.78219"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c251"> + <Coords points="696,565 713,565 713,587 696,587"/> + <TextEquiv conf="0.87377"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.78219"> + <Unicode>ihn</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w253" language="German" readingDirection="left-to-right"> + <Coords points="808,560 830,560 830,567 858,567 858,581 869,581 869,597 859,597 859,595 789,595 789,588 749,588 749,587 730,587 730,564 779,564 779,562 808,562"/> + <Glyph id="c255"> + <Coords points="730,564 745,564 745,587 730,587"/> + <TextEquiv conf="0.83469"> + <Unicode>v</Unicode></TextEquiv></Glyph> + <Glyph id="c257"> + <Coords points="749,566 760,566 760,588 749,588"/> + <TextEquiv conf="0.82584"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c259"> + <Coords points="763,567 775,567 775,588 763,588"/> + <TextEquiv conf="0.80972"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c261"> + <Coords points="779,562 785,562 785,588 779,588"/> + <TextEquiv conf="0.75773"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c263"> + <Coords points="789,568 805,568 805,595 789,595"/> + <TextEquiv conf="0.75762"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c265"> + <Coords points="808,560 830,560 830,594 808,594"/> + <TextEquiv conf="0.84869"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c267"> + <Coords points="827,567 838,567 838,588 827,588"/> + <TextEquiv conf="0.83288"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c269"> + <Coords points="841,567 858,567 858,588 841,588"/> + <TextEquiv conf="0.85809"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c271"> + <Coords points="859,581 869,581 869,597 859,597"/> + <TextEquiv conf="0.95823"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75762"> + <Unicode>verlaen,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>Frau Amtmnnin htte  auf ihn verlaen,</Unicode></TextEquiv></TextLine> + <TextLine id="l14"> + <Coords points="435,603 448,603 448,607 527,607 527,613 631,613 631,611 671,611 671,609 780,609 780,616 869,616 869,639 834,639 834,644 767,644 767,643 671,643 671,637 559,637 559,643 550,643 550,642 433,642 433,643 414,643 414,642 344,642 344,634 325,634 325,633 153,633 153,634 132,634 132,609 174,609 174,605 188,605 188,611 297,611 297,610 325,610 325,605 435,605"/> + <Word id="w273" language="German" readingDirection="left-to-right"> + <Coords points="174,605 188,605 188,632 153,632 153,634 132,634 132,609 174,609"/> + <Glyph id="c275"> + <Coords points="132,609 153,609 153,634 132,634"/> + <TextEquiv conf="0.69472"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c277"> + <Coords points="153,610 174,610 174,632 153,632"/> + <TextEquiv conf="0.79421"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c279"> + <Coords points="174,605 188,605 188,632 174,632"/> + <TextEquiv conf="0.85457"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69472"> + <Unicode>und</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w6" language="German" readingDirection="left-to-right"> + <Coords points="217,611 275,611 275,633 237,633 237,632 217,632"/> + <Glyph id="c281"> + <Coords points="217,611 233,611 233,632 217,632"/> + <TextEquiv conf="0.89967"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c283"> + <Coords points="237,612 253,612 253,633 237,633"/> + <TextEquiv conf="0.86568"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c285"> + <Coords points="257,611 275,611 275,633 257,633"/> + <TextEquiv conf="0.87952"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.86568"> + <Unicode>nun</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w10" language="German" readingDirection="left-to-right"> + <Coords points="325,605 341,605 341,606 358,606 358,613 370,613 370,615 385,615 385,636 358,636 358,642 344,642 344,634 325,634 325,633 297,633 297,610 325,610"/> + <Glyph id="c287"> + <Coords points="297,610 321,610 321,633 297,633"/> + <TextEquiv conf="0.88191"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c289"> + <Coords points="325,605 341,605 341,634 325,634"/> + <TextEquiv conf="0.62584"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c291"> + <Coords points="344,606 358,606 358,642 344,642"/> + <TextEquiv conf="0.81252"> + <Unicode>ß</Unicode></TextEquiv></Glyph> + <Glyph id="c293"> + <Coords points="362,613 370,613 370,636 362,636"/> + <TextEquiv conf="0.79687"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c295"> + <Coords points="374,615 385,615 385,636 374,636"/> + <TextEquiv conf="0.90548"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.62584"> + <Unicode>wßte</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w16" language="German" readingDirection="left-to-right"> + <Coords points="435,603 448,603 448,637 433,637 433,643 414,643 414,608 435,608"/> + <Glyph id="c297"> + <Coords points="414,608 433,608 433,643 414,643"/> + <TextEquiv conf="0.81184"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c299"> + <Coords points="435,603 448,603 448,637 435,637"/> + <TextEquiv conf="0.60769"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.60769"> + <Unicode>e</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w20" language="German" readingDirection="left-to-right"> + <Coords points="503,607 527,607 527,613 541,613 541,629 559,629 559,643 550,643 550,642 503,642 503,637 472,637 472,616 492,616 492,609 503,609"/> + <Glyph id="c303"> + <Coords points="472,616 489,616 489,637 472,637"/> + <TextEquiv conf="0.84956"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c305"> + <Coords points="492,609 500,609 500,637 492,637"/> + <TextEquiv conf="0.83295"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c307"> + <Coords points="503,607 527,607 527,642 503,642"/> + <TextEquiv conf="0.84246"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c309"> + <Coords points="531,613 541,613 541,636 531,636"/> + <TextEquiv conf="0.79185"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c311"> + <Coords points="550,629 559,629 559,643 550,643"/> + <TextEquiv conf="0.93453"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.79185"> + <Unicode>nit,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w313" language="German" readingDirection="left-to-right"> + <Coords points="631,611 646,611 646,636 629,636 629,637 613,637 613,636 585,636 585,613 631,613"/> + <Glyph id="c315"> + <Coords points="585,613 610,613 610,636 585,636"/> + <TextEquiv conf="0.86913"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c317"> + <Coords points="613,616 629,616 629,637 613,637"/> + <TextEquiv conf="0.89154"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c319"> + <Coords points="631,611 646,611 646,636 631,636"/> + <TextEquiv conf="0.77958"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.77958"> + <Unicode>was</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w321" language="German" readingDirection="left-to-right"> + <Coords points="671,609 688,609 688,615 702,615 702,637 688,637 688,643 671,643"/> + <Glyph id="c323"> + <Coords points="671,609 688,609 688,643 671,643"/> + <TextEquiv conf="0.79448"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c325"> + <Coords points="691,615 702,615 702,637 691,637"/> + <TextEquiv conf="0.91057"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.79448"> + <Unicode>e</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w327" language="German" readingDirection="left-to-right"> + <Coords points="767,609 780,609 780,616 869,616 869,639 834,639 834,644 767,644 767,637 747,637 747,636 727,636 727,615 767,615"/> + <Glyph id="c329"> + <Coords points="727,615 744,615 744,636 727,636"/> + <TextEquiv conf="0.86330"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c331"> + <Coords points="747,616 764,616 764,637 747,637"/> + <TextEquiv conf="0.81493"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c333"> + <Coords points="767,609 780,609 780,644 767,644"/> + <TextEquiv conf="0.83340"> + <Unicode>f</Unicode></TextEquiv></Glyph> + <Glyph id="c335"> + <Coords points="780,617 797,617 797,638 780,638"/> + <TextEquiv conf="0.80822"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c337"> + <Coords points="800,617 817,617 817,638 800,638"/> + <TextEquiv conf="0.63127"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c341"> + <Coords points="819,617 834,617 834,644 819,644"/> + <TextEquiv conf="0.83403"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c343"> + <Coords points="837,617 849,617 849,638 837,638"/> + <TextEquiv conf="0.83633"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c345"> + <Coords points="852,616 869,616 869,639 852,639"/> + <TextEquiv conf="0.86528"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.63127"> + <Unicode>anfangen</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>und nun wßte e nit, was e anfangen</Unicode></TextEquiv></TextLine> + <TextLine id="l15"> + <Coords points="132,653 145,653 145,654 177,654 177,659 188,659 188,662 290,662 290,655 323,655 323,657 489,657 489,656 503,656 503,657 594,657 594,658 625,658 625,663 737,663 737,657 750,657 750,666 822,666 822,667 858,667 858,679 868,679 868,693 859,693 859,688 827,688 827,687 594,687 594,692 580,692 580,686 451,686 451,691 437,691 437,685 387,685 387,683 214,683 214,686 145,686 145,689 132,689"/> + <Word id="w347" language="German" readingDirection="left-to-right"> + <Coords points="132,653 145,653 145,654 177,654 177,659 188,659 188,662 203,662 203,678 214,678 214,686 145,686 145,689 132,689"/> + <Glyph id="c349"> + <Coords points="132,653 145,653 145,689 132,689"/> + <TextEquiv conf="0.90107"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c351"> + <Coords points="143,662 156,662 156,683 143,683"/> + <TextEquiv conf="0.83153"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c353"> + <Coords points="160,654 177,654 177,684 160,684"/> + <TextEquiv conf="0.83913"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c355"> + <Coords points="180,659 188,659 188,683 180,683"/> + <TextEquiv conf="0.82032"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c357"> + <Coords points="192,662 203,662 203,683 192,683"/> + <TextEquiv conf="0.81250"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c359"> + <Coords points="206,678 214,678 214,686 206,686"/> + <TextEquiv conf="0.83006"> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.44962"> + <Unicode>ſote.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w363" language="German" readingDirection="left-to-right"> + <Coords points="290,655 323,655 323,662 337,662 337,663 358,663 358,683 290,683"/> + <Glyph id="c365"> + <Coords points="290,655 323,655 323,683 290,683"/> + <TextEquiv conf="0.77633"> + <Unicode>D</Unicode></TextEquiv></Glyph> + <Glyph id="c367"> + <Coords points="327,662 337,662 337,682 327,682"/> + <TextEquiv conf="0.75732"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c369"> + <Coords points="340,663 358,663 358,683 340,683"/> + <TextEquiv conf="0.83778"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75732"> + <Unicode>Den</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w14" language="German" readingDirection="left-to-right"> + <Coords points="489,656 503,656 503,657 551,657 551,685 514,685 514,686 451,686 451,691 437,691 437,685 387,685 387,657 489,657"/> + <Glyph id="c371"> + <Coords points="387,657 414,657 414,685 387,685"/> + <TextEquiv conf="0.76383"> + <Unicode>A</Unicode></TextEquiv></Glyph> + <Glyph id="c373"> + <Coords points="417,665 432,665 432,684 417,684"/> + <TextEquiv conf="0.82903"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c375"> + <Coords points="437,665 451,665 451,691 437,691"/> + <TextEquiv conf="0.79390"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c377"> + <Coords points="455,664 465,664 465,684 455,684"/> + <TextEquiv conf="0.87798"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c379"> + <Coords points="469,665 485,665 485,685 469,685"/> + <TextEquiv conf="0.80330"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c381"> + <Coords points="489,656 503,656 503,684 489,684"/> + <TextEquiv conf="0.88135"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c383"> + <Coords points="506,658 514,658 514,686 506,686"/> + <TextEquiv conf="0.90900"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c385"> + <Coords points="516,658 524,658 524,685 516,685"/> + <TextEquiv conf="0.81731"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c387"> + <Coords points="537,657 551,657 551,685 528,685 528,664 537,664"/> + <TextEquiv conf="0.87359"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74983"> + <Unicode>Augenbli</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w25" language="German" readingDirection="left-to-right"> + <Coords points="580,657 594,657 594,658 625,658 625,663 636,663 636,665 651,665 651,685 625,685 625,686 594,686 594,692 580,692"/> + <Glyph id="c393"> + <Coords points="580,657 594,657 594,692 580,692"/> + <TextEquiv conf="0.89818"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c395"> + <Coords points="591,666 603,666 603,685 591,685"/> + <TextEquiv conf="0.87966"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c397"> + <Coords points="608,658 625,658 625,686 608,686"/> + <TextEquiv conf="0.89074"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c399"> + <Coords points="627,663 636,663 636,685 627,685"/> + <TextEquiv conf="0.82771"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c401"> + <Coords points="639,665 651,665 651,685 639,685"/> + <TextEquiv conf="0.82185"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.70672"> + <Unicode>ſote</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w32" language="German" readingDirection="left-to-right"> + <Coords points="682,665 709,665 709,686 692,686 692,687 682,687"/> + <Glyph id="c403"> + <Coords points="682,665 692,665 692,687 682,687"/> + <TextEquiv conf="0.85040"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c405"> + <Coords points="696,665 709,665 709,686 696,686"/> + <TextEquiv conf="0.87954"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.85040"> + <Unicode>er</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w35" language="German" readingDirection="left-to-right"> + <Coords points="737,657 750,657 750,666 822,666 822,667 858,667 858,679 868,679 868,693 859,693 859,688 827,688 827,687 769,687 769,686 752,686 752,685 737,685"/> + <Glyph id="c407"> + <Coords points="737,657 750,657 750,685 737,685"/> + <TextEquiv conf="0.79499"> + <Unicode>k</Unicode></TextEquiv></Glyph> + <Glyph id="c409"> + <Coords points="752,669 765,669 765,686 752,686"/> + <TextEquiv conf="0.75371"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c411"> + <Coords points="769,666 794,666 794,687 769,687"/> + <TextEquiv conf="0.89726"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c413"> + <Coords points="798,666 822,666 822,687 798,687"/> + <TextEquiv conf="0.86998"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c415"> + <Coords points="827,667 838,667 838,688 827,688"/> + <TextEquiv conf="0.76112"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c417"> + <Coords points="841,667 858,667 858,688 841,688"/> + <TextEquiv conf="0.86190"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c419"> + <Coords points="859,679 868,679 868,693 859,693"/> + <TextEquiv conf="0.75547"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75371"> + <Unicode>kommen,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>ſote. Den Augenbli ſote er kommen,</Unicode></TextEquiv></TextLine> + <TextLine id="l16"> + <Coords points="289,700 296,700 296,704 391,704 391,706 500,706 500,705 610,705 610,706 670,706 670,717 810,717 810,706 843,706 843,708 853,708 853,714 869,714 869,734 810,734 810,725 670,725 670,727 679,727 679,734 670,734 670,738 632,738 632,732 515,732 515,737 500,737 500,731 388,731 388,736 200,736 200,738 132,738 132,703 145,703 145,705 289,705"/> + <Word id="w18" language="German" readingDirection="left-to-right"> + <Coords points="375,704 391,704 391,711 405,711 405,729 391,729 391,731 388,731 388,736 375,736"/> + <Glyph id="c453"> + <Coords points="375,704 391,704 391,731 388,731 388,736 375,736"/> + <TextEquiv conf="0.71967"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c457"> + <Coords points="395,711 405,711 405,729 395,729"/> + <TextEquiv conf="0.63427"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.59618"> + <Unicode>e</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w459" language="German" readingDirection="left-to-right"> + <Coords points="430,706 437,706 437,712 458,712 458,730 430,730"/> + <Glyph id="c461"> + <Coords points="430,706 437,706 437,730 430,730"/> + <TextEquiv conf="0.90932"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c463"> + <Coords points="443,712 458,712 458,730 443,730"/> + <TextEquiv conf="0.78817"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.78817"> + <Unicode>in</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w465" language="German" readingDirection="left-to-right"> + <Coords points="500,705 515,705 515,712 561,712 561,730 545,730 545,731 515,731 515,737 500,737 500,731 488,731 488,706 500,706"/> + <Glyph id="c467"> + <Coords points="488,706 500,706 500,731 488,731"/> + <TextEquiv conf="0.75617"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c469"> + <Coords points="500,705 515,705 515,737 500,737"/> + <TextEquiv conf="0.81226"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c471"> + <Coords points="519,712 531,712 531,731 519,731"/> + <TextEquiv conf="0.82490"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c473"> + <Coords points="534,712 545,712 545,731 534,731"/> + <TextEquiv conf="0.77567"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c475"> + <Coords points="549,712 561,712 561,730 549,730"/> + <TextEquiv conf="0.81074"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75617"> + <Unicode>ihrer</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w31" language="German" readingDirection="left-to-right"> + <Coords points="584,705 610,705 610,706 670,706 670,727 679,727 679,734 670,734 670,738 632,738 632,732 584,732"/> + <Glyph id="c477"> + <Coords points="584,705 610,705 610,732 584,732"/> + <TextEquiv conf="0.75753"> + <Unicode>A</Unicode></TextEquiv></Glyph> + <Glyph id="c479"> + <Coords points="612,712 628,712 628,731 612,731"/> + <TextEquiv conf="0.85713"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c481"> + <Coords points="632,713 646,713 646,738 632,738"/> + <TextEquiv conf="0.83868"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c483"> + <Coords points="651,706 670,706 670,738 651,738"/> + <TextEquiv conf="0.83102"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c485"> + <Coords points="672,727 679,727 679,734 672,734"/> + <TextEquiv conf="0.86399"> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75753"> + <Unicode>Ang.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w37" language="German" readingDirection="left-to-right"> + <Coords points="707,717 758,717 758,725 707,725"/> + <Glyph id="c489"> + <Coords points="707,717 758,717 758,725 707,725"/> + <TextEquiv conf="0.65354"> + <Unicode>—</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.34845"> + <Unicode>—</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w493" language="German" readingDirection="left-to-right"> + <Coords points="810,706 843,706 843,708 853,708 853,714 869,714 869,734 810,734"/> + <Glyph id="c495"> + <Coords points="810,706 843,706 843,734 810,734"/> + <TextEquiv conf="0.80822"> + <Unicode>D</Unicode></TextEquiv></Glyph> + <Glyph id="c497"> + <Coords points="846,708 853,708 853,734 846,734"/> + <TextEquiv conf="0.73804"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c499"> + <Coords points="856,714 869,714 869,734 856,734"/> + <TextEquiv conf="0.90323"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.73804"> + <Unicode>Die</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1958" language="German" readingDirection="left-to-right"> + <Coords points="132,703 145,703 145,705 200,705 200,738 132,738"/> + <Glyph id="c423"> + <Coords points="132,703 145,703 145,738 132,738"/> + <TextEquiv conf="0.90635"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c425"> + <Coords points="145,712 156,712 156,732 145,732"/> + <TextEquiv conf="0.82676"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c427"> + <Coords points="161,712 177,712 177,732 161,732"/> + <TextEquiv conf="0.75355"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c429"> + <Coords points="181,705 200,705 200,738 181,738"/> + <TextEquiv conf="0.82048"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>ſon</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1959" language="German" readingDirection="left-to-right"> + <Coords points="289,700 296,700 296,710 311,710 311,711 349,711 349,736 271,736 271,735 243,735 243,731 222,731 222,708 289,708"/> + <Glyph id="c435"> + <Coords points="222,708 238,708 238,731 222,731"/> + <TextEquiv conf="0.81159"> + <Unicode>v</Unicode></TextEquiv></Glyph> + <Glyph id="c437"> + <Coords points="243,710 253,710 253,735 243,735"/> + <TextEquiv conf="0.78373"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c439"> + <Coords points="256,709 270,709 270,730 256,730"/> + <TextEquiv conf="0.66507"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c443"> + <Coords points="271,710 285,710 285,736 271,736"/> + <TextEquiv conf="0.78970"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c445"> + <Coords points="289,700 296,700 296,730 289,730"/> + <TextEquiv conf="0.74451"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c447"> + <Coords points="300,710 311,710 311,728 300,728"/> + <TextEquiv conf="0.77809"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c449"> + <Coords points="315,711 330,711 330,730 315,730"/> + <TextEquiv conf="0.75578"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c451"> + <Coords points="335,711 349,711 349,736 335,736"/> + <TextEquiv conf="0.77976"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>vergieng</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>ſon vergieng e in ihrer Ang. — Die</Unicode></TextEquiv></TextLine> + <TextLine id="l17"> + <Coords points="267,747 282,747 282,750 362,750 362,751 381,751 381,757 507,757 507,751 518,751 518,757 710,757 710,753 788,753 788,752 800,752 800,753 830,753 830,754 842,754 842,758 854,758 854,760 869,760 869,783 830,783 830,791 815,791 815,788 788,788 788,781 646,781 646,786 636,786 636,779 612,779 612,778 489,778 489,785 475,785 475,784 358,784 358,783 348,783 348,778 226,778 226,779 203,779 203,786 190,786 190,781 135,781 135,751 172,751 172,749 267,749"/> + <Word id="w501" language="German" readingDirection="left-to-right"> + <Coords points="172,749 185,749 185,752 203,752 203,758 226,758 226,779 203,779 203,786 190,786 190,781 135,781 135,751 172,751"/> + <Glyph id="c503"> + <Coords points="135,751 167,751 167,781 135,781"/> + <TextEquiv conf="0.74674"> + <Unicode>G</Unicode></TextEquiv></Glyph> + <Glyph id="c505"> + <Coords points="172,749 185,749 185,780 172,780"/> + <TextEquiv conf="0.74037"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c507"> + <Coords points="190,752 203,752 203,759 208,759 208,778 203,778 203,786 190,786"/> + <TextEquiv conf="0.72476"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c511"> + <Coords points="211,758 226,758 226,779 211,779"/> + <TextEquiv conf="0.54722"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.54722"> + <Unicode>Ge</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w513" language="German" readingDirection="left-to-right"> + <Coords points="267,747 282,747 282,756 330,756 330,775 311,775 311,777 263,777 263,778 240,778 240,757 267,757"/> + <Glyph id="c515"> + <Coords points="240,757 263,757 263,778 240,778"/> + <TextEquiv conf="0.73661"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c517"> + <Coords points="267,747 282,747 282,776 267,776"/> + <TextEquiv conf="0.69234"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c519"> + <Coords points="285,757 297,757 297,776 285,776"/> + <TextEquiv conf="0.65563"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c521"> + <Coords points="300,759 311,759 311,777 300,777"/> + <TextEquiv conf="0.56312"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c523"> + <Coords points="314,756 330,756 330,775 314,775"/> + <TextEquiv conf="0.69455"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.56312"> + <Unicode>wren</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w525" language="German" readingDirection="left-to-right"> + <Coords points="348,750 362,750 362,751 381,751 381,757 420,757 420,777 381,777 381,784 358,784 358,783 348,783"/> + <Glyph id="c527"> + <Coords points="348,750 362,750 362,783 348,783"/> + <TextEquiv conf="0.66078"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c531"> + <Coords points="358,751 381,751 381,784 358,784"/> + <TextEquiv conf="0.66802"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c539"> + <Coords points="386,758 399,758 399,777 386,777"/> + <TextEquiv conf="0.73845"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c541"> + <Coords points="404,757 420,757 420,777 404,777"/> + <TextEquiv conf="0.77675"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.62291"> + <Unicode>ſon</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w543" language="German" readingDirection="left-to-right"> + <Coords points="507,751 518,751 518,757 628,757 628,770 646,770 646,786 636,786 636,779 612,779 612,778 489,778 489,785 475,785 475,777 437,777 437,758 507,758"/> + <Glyph id="c545"> + <Coords points="437,758 452,758 452,777 437,777"/> + <TextEquiv conf="0.72155"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c547"> + <Coords points="456,758 471,758 471,777 456,777"/> + <TextEquiv conf="0.79762"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c549"> + <Coords points="475,759 489,759 489,785 475,785"/> + <TextEquiv conf="0.79532"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c551"> + <Coords points="493,758 504,758 504,777 493,777"/> + <TextEquiv conf="0.80650"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c553"> + <Coords points="507,751 518,751 518,778 507,778"/> + <TextEquiv conf="0.81130"> + <Unicode>k</Unicode></TextEquiv></Glyph> + <Glyph id="c555"> + <Coords points="521,758 534,758 534,777 521,777"/> + <TextEquiv conf="0.87234"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c557"> + <Coords points="538,757 563,757 563,778 538,778"/> + <TextEquiv conf="0.86420"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c559"> + <Coords points="567,757 593,757 593,778 567,778"/> + <TextEquiv conf="0.82836"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c561"> + <Coords points="598,757 609,757 609,778 598,778"/> + <TextEquiv conf="0.85506"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c563"> + <Coords points="612,757 628,757 628,779 612,779"/> + <TextEquiv conf="0.82750"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c565"> + <Coords points="636,770 646,770 646,786 636,786"/> + <TextEquiv conf="0.92026"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72155"> + <Unicode>angekommen,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w567" language="German" readingDirection="left-to-right"> + <Coords points="710,753 725,753 725,781 710,781 710,780 669,780 669,758 710,758"/> + <Glyph id="c569"> + <Coords points="669,758 685,758 685,780 669,780"/> + <TextEquiv conf="0.83921"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c571"> + <Coords points="690,759 705,759 705,780 690,780"/> + <TextEquiv conf="0.78570"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c573"> + <Coords points="710,753 725,753 725,781 710,781"/> + <TextEquiv conf="0.85326"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.78570"> + <Unicode>und</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w39" language="German" readingDirection="left-to-right"> + <Coords points="756,755 771,755 771,780 742,780 742,759 756,759"/> + <Glyph id="c575"> + <Coords points="742,759 754,759 754,780 742,780"/> + <TextEquiv conf="0.83292"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c577"> + <Coords points="756,755 771,755 771,780 756,780"/> + <TextEquiv conf="0.74440"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74440"> + <Unicode>es</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w42" language="German" readingDirection="left-to-right"> + <Coords points="788,752 800,752 800,753 830,753 830,754 842,754 842,758 854,758 854,760 869,760 869,783 830,783 830,791 815,791 815,788 788,788"/> + <Glyph id="c579"> + <Coords points="788,752 800,752 800,788 788,788"/> + <TextEquiv conf="0.72874"> + <Unicode>f</Unicode></TextEquiv></Glyph> + <Glyph id="c581"> + <Coords points="801,760 812,760 812,781 801,781"/> + <TextEquiv conf="0.82842"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c45"> + <Coords points="815,753 830,753 830,791 815,791"/> + <TextEquiv conf="0.76562"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c584"> + <Coords points="835,754 842,754 842,782 835,782"/> + <TextEquiv conf="0.85813"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c47"> + <Coords points="845,758 854,758 854,783 845,783"/> + <TextEquiv conf="0.70176"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c587"> + <Coords points="856,760 869,760 869,783 856,783"/> + <TextEquiv conf="0.90020"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.70176"> + <Unicode>fehlte</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>Ge wren ſon angekommen, und es fehlte</Unicode></TextEquiv></TextLine> + <TextEquiv> + <Unicode>ber die vielen Sorgen wegen deelben vergaß +Hartkopf, der Frau Amtmnnin das ver⸗ +ſproene zu berliefern. — Ein Erpreer +wurde an ihn abgeſit, um ihn ums Him⸗ +melswien zu ſagen, daß er das Verſproene +glei den Augenbli berbringen mte, die +Frau Amtmnnin htte  auf ihn verlaen, +und nun wßte e nit, was e anfangen +ſote. Den Augenbli ſote er kommen, +ſon vergieng e in ihrer Ang. — Die +Ge wren ſon angekommen, und es fehlte +ihr do no an aem. —</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></TextRegion> + <TextRegion id="r2" readingDirection="left-to-right" textLineOrder="top-to-bottom" type="paragraph" indented="true" align="justify" primaryLanguage="German"> + <Coords points="289,871 300,871 300,874 532,874 532,873 650,873 650,872 664,872 664,874 699,874 699,882 854,882 854,878 868,878 868,928 870,928 870,1006 868,1006 868,1128 869,1128 869,1166 874,1166 874,1201 810,1201 810,1202 573,1202 573,1236 496,1236 496,1246 414,1246 414,1250 389,1250 389,1245 163,1245 163,1243 131,1243 131,1221 132,1221 132,1051 130,1051 130,980 131,980 131,930 166,930 166,924 179,924 179,873 289,873"/> + <TextLine id="l18"> + <Coords points="289,871 300,871 300,874 532,874 532,873 650,873 650,872 664,872 664,874 699,874 699,882 854,882 854,878 868,878 868,907 790,907 790,911 611,911 611,910 511,910 511,908 260,908 260,910 248,910 248,909 179,909 179,873 289,873"/> + <Word id="w589" language="German" readingDirection="left-to-right"> + <Coords points="289,871 300,871 300,874 369,874 369,907 347,907 347,908 260,908 260,910 248,910 248,909 179,909 179,873 289,873"/> + <Glyph id="c591"> + <Coords points="179,873 213,873 213,909 179,909"/> + <TextEquiv conf="0.65785"> + <Unicode>H</Unicode></TextEquiv></Glyph> + <Glyph id="c593"> + <Coords points="223,880 240,880 240,900 223,900"/> + <TextEquiv conf="0.62778"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c595"> + <Coords points="248,879 260,879 260,910 248,910"/> + <TextEquiv conf="0.56137"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c599"> + <Coords points="270,877 279,877 279,900 270,900"/> + <TextEquiv conf="0.62887"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c601"> + <Coords points="289,871 300,871 300,899 289,899"/> + <TextEquiv conf="0.84237"> + <Unicode>k</Unicode></TextEquiv></Glyph> + <Glyph id="c1982"> + <Coords points="310,880 321,880 321,899 310,899"/> + <TextEquiv> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1984"> + <Coords points="357,874 369,874 369,907 357,907"/> + <TextEquiv> + <Unicode>f</Unicode></TextEquiv></Glyph> + <Glyph id="c1985"> + <Coords points="333,882 347,882 347,908 333,908"/> + <TextEquiv> + <Unicode>p</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.56137"> + <Unicode>Hartkopf</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w605" language="German" readingDirection="left-to-right"> + <Coords points="446,874 460,874 460,879 471,879 471,880 487,880 487,902 460,902 460,908 446,908 446,903 396,903 396,882 446,882"/> + <Glyph id="c607"> + <Coords points="396,882 421,882 421,903 396,903"/> + <TextEquiv conf="0.78914"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c609"> + <Coords points="426,882 441,882 441,903 426,903"/> + <TextEquiv conf="0.80258"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c611"> + <Coords points="446,874 460,874 460,908 446,908"/> + <TextEquiv conf="0.74591"> + <Unicode>ß</Unicode></TextEquiv></Glyph> + <Glyph id="c613"> + <Coords points="465,879 471,879 471,902 465,902"/> + <TextEquiv conf="0.76057"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c615"> + <Coords points="475,880 487,880 487,902 475,902"/> + <TextEquiv conf="0.80505"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74591"> + <Unicode>mußte</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w617" language="German" readingDirection="left-to-right"> + <Coords points="532,873 557,873 557,910 511,910 511,874 532,874"/> + <Glyph id="c619"> + <Coords points="511,874 529,874 529,904 526,904 526,910 511,910"/> + <TextEquiv conf="0.81212"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c623"> + <Coords points="532,873 557,873 557,910 532,910"/> + <TextEquiv conf="0.78768"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74336"> + <Unicode></Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w625" language="German" readingDirection="left-to-right"> + <Coords points="611,875 630,875 630,911 611,911 611,903 581,903 581,881 611,881"/> + <Glyph id="c627"> + <Coords points="581,881 593,881 593,903 581,903"/> + <TextEquiv conf="0.78138"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c629"> + <Coords points="596,881 608,881 608,903 596,903"/> + <TextEquiv conf="0.77291"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c631"> + <Coords points="611,875 630,875 630,911 611,911"/> + <TextEquiv conf="0.77326"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.77291"> + <Unicode>er</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w24" language="German" readingDirection="left-to-right"> + <Coords points="650,872 664,872 664,874 699,874 699,882 754,882 754,883 773,883 773,897 790,897 790,911 682,911 682,903 650,903"/> + <Glyph id="c633"> + <Coords points="650,872 664,872 664,903 650,903"/> + <TextEquiv conf="0.80696"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c635"> + <Coords points="668,883 678,883 678,903 668,903"/> + <TextEquiv conf="0.68657"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c637"> + <Coords points="682,874 699,874 699,911 682,911"/> + <TextEquiv conf="0.79151"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c639"> + <Coords points="702,882 718,882 718,904 702,904"/> + <TextEquiv conf="0.78366"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c641"> + <Coords points="723,882 737,882 737,904 723,904"/> + <TextEquiv conf="0.67989"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c643"> + <Coords points="742,882 754,882 754,904 742,904"/> + <TextEquiv conf="0.78789"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c645"> + <Coords points="757,883 773,883 773,904 757,904"/> + <TextEquiv conf="0.81248"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c647"> + <Coords points="782,897 790,897 790,911 782,911"/> + <TextEquiv conf="0.96113"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.67989"> + <Unicode>bennen,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w649" language="German" readingDirection="left-to-right"> + <Coords points="854,878 868,878 868,907 854,907 854,906 814,906 814,884 834,884 834,883 854,883"/> + <Glyph id="c651"> + <Coords points="814,884 830,884 830,906 814,906"/> + <TextEquiv conf="0.86254"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c653"> + <Coords points="834,883 850,883 850,905 834,905"/> + <TextEquiv conf="0.82806"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c655"> + <Coords points="854,878 868,878 868,907 854,907"/> + <TextEquiv conf="0.82248"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.82248"> + <Unicode>und</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>Hartkopf mußte  er bennen, und</Unicode></TextEquiv></TextLine> + <TextLine id="l19"> + <Coords points="338,1213 352,1213 352,1215 414,1215 414,1218 486,1218 486,1228 573,1228 573,1236 486,1236 486,1238 496,1238 496,1246 414,1246 414,1250 389,1250 389,1245 163,1245 163,1243 131,1243 131,1221 163,1221 163,1216 270,1216 270,1215 338,1215"/> + <Word id="w657" language="German" readingDirection="left-to-right"> + <Coords points="163,1216 169,1216 169,1220 183,1220 183,1244 169,1244 169,1245 163,1245 163,1243 131,1243 131,1221 163,1221"/> + <Glyph id="c659"> + <Coords points="131,1221 157,1221 157,1243 131,1243"/> + <TextEquiv conf="0.86845"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c661"> + <Coords points="163,1216 169,1216 169,1245 163,1245"/> + <TextEquiv conf="0.80820"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c663"> + <Coords points="173,1220 183,1220 183,1244 173,1244"/> + <TextEquiv conf="0.83267"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.80820"> + <Unicode>mit</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w665" language="German" readingDirection="left-to-right"> + <Coords points="238,1218 253,1218 253,1245 238,1245 238,1244 198,1244 198,1223 238,1223"/> + <Glyph id="c667"> + <Coords points="198,1223 214,1223 214,1244 198,1244"/> + <TextEquiv conf="0.83648"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c669"> + <Coords points="218,1223 234,1223 234,1244 218,1244"/> + <TextEquiv conf="0.88806"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c671"> + <Coords points="238,1218 253,1218 253,1245 238,1245"/> + <TextEquiv conf="0.84604"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.83648"> + <Unicode>und</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w673" language="German" readingDirection="left-to-right"> + <Coords points="338,1213 352,1213 352,1215 414,1215 414,1220 427,1220 427,1223 441,1223 441,1244 414,1244 414,1250 389,1250 389,1245 291,1245 291,1244 270,1244 270,1215 338,1215"/> + <Glyph id="c675"> + <Coords points="270,1215 287,1215 287,1244 270,1244"/> + <TextEquiv conf="0.78567"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c677"> + <Coords points="291,1216 304,1216 304,1245 291,1245"/> + <TextEquiv conf="0.76636"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c679"> + <Coords points="309,1223 319,1223 319,1245 309,1245"/> + <TextEquiv conf="0.78462"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c681"> + <Coords points="322,1223 332,1223 332,1245 322,1245"/> + <TextEquiv conf="0.87348"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c683"> + <Coords points="338,1213 352,1213 352,1242 338,1242"/> + <TextEquiv conf="0.88542"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c685"> + <Coords points="355,1223 366,1223 366,1245 355,1245"/> + <TextEquiv conf="0.78417"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c687"> + <Coords points="370,1223 386,1223 386,1244 370,1244"/> + <TextEquiv conf="0.82808"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c689"> + <Coords points="389,1215 414,1215 414,1250 389,1250"/> + <TextEquiv conf="0.86601"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c691"> + <Coords points="419,1220 427,1220 427,1244 419,1244"/> + <TextEquiv conf="0.73453"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c693"> + <Coords points="431,1223 441,1223 441,1244 431,1244"/> + <TextEquiv conf="0.77437"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.67268"> + <Unicode>berbrate</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w697" language="German" readingDirection="left-to-right"> + <Coords points="473,1218 486,1218 486,1238 496,1238 496,1246 489,1246 489,1244 458,1244 458,1222 473,1222"/> + <Glyph id="c699"> + <Coords points="458,1222 469,1222 469,1244 458,1244"/> + <TextEquiv conf="0.87254"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c701"> + <Coords points="473,1218 486,1218 486,1244 473,1244"/> + <TextEquiv conf="0.71657"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <Glyph id="c703"> + <Coords points="489,1238 496,1238 496,1246 489,1246"/> + <TextEquiv conf="0.87608"> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.71657"> + <Unicode>es.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w705" language="German" readingDirection="left-to-right"> + <Coords points="523,1228 573,1228 573,1236 523,1236"/> + <Glyph id="c707"> + <Coords points="523,1228 573,1228 573,1236 523,1236"/> + <TextEquiv conf="0.80644"> + <Unicode>—</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.80644"> + <Unicode>—</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>mit und berbrate es. —</Unicode></TextEquiv></TextLine> + <TextLine id="l20"> + <Coords points="295,921 312,921 312,924 336,924 336,931 445,931 445,924 477,924 477,925 580,925 580,924 592,924 592,926 657,926 657,928 870,928 870,966 753,966 753,961 640,961 640,953 524,953 524,957 500,957 500,952 390,952 390,958 377,958 377,954 231,954 231,955 214,955 214,952 131,952 131,930 166,930 166,924 185,924 185,923 295,923"/> + <Word id="w735" language="German" readingDirection="left-to-right"> + <Coords points="328,924 336,924 336,931 405,931 405,932 434,932 434,951 390,951 390,958 377,958 377,951 338,951 338,950 328,950"/> + <Glyph id="c737"> + <Coords points="328,924 336,924 336,950 328,950"/> + <TextEquiv conf="0.90274"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c739"> + <Coords points="338,931 353,931 353,951 338,951"/> + <TextEquiv conf="0.78566"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c741"> + <Coords points="357,931 373,931 373,950 357,950"/> + <TextEquiv conf="0.79945"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c743"> + <Coords points="377,932 390,932 390,958 377,958"/> + <TextEquiv conf="0.71285"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c745"> + <Coords points="394,931 405,931 405,950 394,950"/> + <TextEquiv conf="0.79874"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c747"> + <Coords points="410,932 434,932 434,951 410,951"/> + <TextEquiv conf="0.82520"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.71285"> + <Unicode>langem</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w749" language="German" readingDirection="left-to-right"> + <Coords points="445,924 477,924 477,925 580,925 580,924 592,924 592,933 624,933 624,953 524,953 524,957 500,957 500,952 445,952"/> + <Glyph id="c751"> + <Coords points="445,924 477,924 477,952 445,952"/> + <TextEquiv conf="0.74283"> + <Unicode>N</Unicode></TextEquiv></Glyph> + <Glyph id="c753"> + <Coords points="481,932 496,932 496,952 481,952"/> + <TextEquiv conf="0.75699"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c755"> + <Coords points="500,925 524,925 524,957 500,957"/> + <TextEquiv conf="0.75184"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c757"> + <Coords points="528,928 542,928 542,953 528,953"/> + <TextEquiv conf="0.83750"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c759"> + <Coords points="546,932 556,932 556,953 546,953"/> + <TextEquiv conf="0.80128"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c761"> + <Coords points="561,933 576,933 576,953 561,953"/> + <TextEquiv conf="0.88134"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c763"> + <Coords points="580,924 592,924 592,953 580,953"/> + <TextEquiv conf="0.71210"> + <Unicode>k</Unicode></TextEquiv></Glyph> + <Glyph id="c765"> + <Coords points="594,933 604,933 604,952 594,952"/> + <TextEquiv conf="0.74491"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c767"> + <Coords points="608,933 624,933 624,953 608,953"/> + <TextEquiv conf="0.83860"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.71210"> + <Unicode>Nadenken</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w769" language="German" readingDirection="left-to-right"> + <Coords points="640,926 657,926 657,929 683,929 683,955 652,955 652,961 640,961"/> + <Glyph id="c771"> + <Coords points="640,926 657,926 657,954 652,954 652,961 640,961"/> + <TextEquiv conf="0.80072"> + <Unicode>fi</Unicode></TextEquiv></Glyph> + <Glyph id="c775"> + <Coords points="661,933 672,933 672,952 661,952"/> + <TextEquiv conf="0.66486"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c779"> + <Coords points="675,929 683,929 683,955 675,955"/> + <TextEquiv conf="0.77660"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.66486"> + <Unicode>fiel</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w781" language="German" readingDirection="left-to-right"> + <Coords points="718,930 731,930 731,955 714,955 714,956 703,956 703,935 718,935"/> + <Glyph id="c783"> + <Coords points="703,935 714,935 714,956 703,956"/> + <TextEquiv conf="0.75188"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c785"> + <Coords points="718,930 731,930 731,955 718,955"/> + <TextEquiv conf="0.75078"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75078"> + <Unicode>es</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w787" language="German" readingDirection="left-to-right"> + <Coords points="753,928 774,928 774,935 803,935 803,957 774,957 774,966 753,966 753,958 747,958 747,929 753,929"/> + <Glyph id="c789"> + <Coords points="747,929 756,929 756,958 747,958"/> + <TextEquiv conf="0.83834"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c791"> + <Coords points="753,928 774,928 774,966 753,966"/> + <TextEquiv conf="0.60499"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c793"> + <Coords points="778,935 803,935 803,957 778,957"/> + <TextEquiv conf="0.82357"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.60499"> + <Unicode>ihm</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w45" language="German" readingDirection="left-to-right"> + <Coords points="851,928 870,928 870,966 851,966 851,957 822,957 822,935 851,935"/> + <Glyph id="c795"> + <Coords points="822,935 833,935 833,957 822,957"/> + <TextEquiv conf="0.70980"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c797"> + <Coords points="836,935 848,935 848,956 836,956"/> + <TextEquiv conf="0.66756"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c799"> + <Coords points="851,928 870,928 870,966 851,966"/> + <TextEquiv conf="0.70778"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.66756"> + <Unicode>er</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w76" language="German" readingDirection="left-to-right"> + <Coords points="185,923 201,923 201,924 231,924 231,955 214,955 214,952 131,952 131,930 166,930 166,924 185,924"/> + <Glyph id="c711"> + <Coords points="131,930 143,930 143,952 131,952"/> + <TextEquiv conf="0.83869"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c713"> + <Coords points="147,930 162,930 162,952 147,952"/> + <TextEquiv conf="0.74228"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c715"> + <Coords points="166,924 180,924 180,952 166,952"/> + <TextEquiv conf="0.83162"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c717"> + <Coords points="185,923 191,923 191,950 185,950"/> + <TextEquiv conf="0.81493"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c719"> + <Coords points="196,923 201,923 201,950 196,950"/> + <TextEquiv conf="0.76423"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c721"> + <Coords points="214,924 231,924 231,955 214,955 214,951 206,951 206,929 214,929"/> + <TextEquiv conf="0.86288"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>endli</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w77" language="German" readingDirection="left-to-right"> + <Coords points="295,921 312,921 312,954 295,954 295,948 244,948 244,929 287,929 287,928 295,928"/> + <Glyph id="c727"> + <Coords points="244,929 265,929 265,948 244,948"/> + <TextEquiv conf="0.84252"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c729"> + <Coords points="268,929 284,929 284,948 268,948"/> + <TextEquiv conf="0.75510"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c731"> + <Coords points="295,921 312,921 312,954 295,954 295,948 287,948 287,928 295,928"/> + <TextEquiv conf="0.86161"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>na</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>endli na langem Nadenken fiel es ihm er</Unicode></TextEquiv></TextLine> + <TextLine id="l21"> + <Coords points="258,971 266,971 266,977 285,977 285,984 403,984 403,971 429,971 429,973 470,973 470,978 636,978 636,974 655,974 655,977 720,977 720,980 824,980 824,986 870,986 870,1006 636,1006 636,1002 525,1002 525,1006 511,1006 511,1001 403,1001 403,989 285,989 285,993 296,993 296,1001 289,1001 289,999 166,999 166,1000 156,1000 156,1001 130,1001 130,980 160,980 160,974 258,974"/> + <Word id="w801" language="German" readingDirection="left-to-right"> + <Coords points="160,974 197,974 197,978 227,978 227,999 166,999 166,1000 156,1000 156,1001 130,1001 130,980 160,980"/> + <Glyph id="c803"> + <Coords points="130,980 156,980 156,1001 130,1001"/> + <TextEquiv conf="0.76881"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c805"> + <Coords points="160,974 166,974 166,1000 160,1000"/> + <TextEquiv conf="0.90705"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c807"> + <Coords points="170,980 180,980 180,999 170,999"/> + <TextEquiv conf="0.79531"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c809"> + <Coords points="184,974 197,974 197,999 184,999"/> + <TextEquiv conf="0.72473"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c811"> + <Coords points="201,979 212,979 212,998 201,998"/> + <TextEquiv conf="0.81594"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c813"> + <Coords points="215,978 227,978 227,999 215,999"/> + <TextEquiv conf="0.77659"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72473"> + <Unicode>wieder</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w9" language="German" readingDirection="left-to-right"> + <Coords points="258,971 266,971 266,977 285,977 285,993 296,993 296,1001 289,1001 289,998 258,998 258,997 244,997 244,978 258,978"/> + <Glyph id="c815"> + <Coords points="244,978 255,978 255,997 244,997"/> + <TextEquiv conf="0.82000"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c817"> + <Coords points="258,971 266,971 266,998 258,998"/> + <TextEquiv conf="0.73086"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c819"> + <Coords points="270,977 285,977 285,998 270,998"/> + <TextEquiv conf="0.81816"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c821"> + <Coords points="289,993 296,993 296,1001 289,1001"/> + <TextEquiv conf="0.89747"> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.73086"> + <Unicode>ein.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w823" language="German" readingDirection="left-to-right"> + <Coords points="324,984 374,984 374,989 324,989"/> + <Glyph id="c825"> + <Coords points="324,984 374,984 374,989 324,989"/> + <TextEquiv conf="0.70254"> + <Unicode>—</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.70254"> + <Unicode>—</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w829" language="German" readingDirection="left-to-right"> + <Coords points="403,971 429,971 429,980 445,980 445,1000 429,1000 429,1001 403,1001"/> + <Glyph id="c831"> + <Coords points="403,971 429,971 429,1001 403,1001"/> + <TextEquiv conf="0.75595"> + <Unicode>E</Unicode></TextEquiv></Glyph> + <Glyph id="c833"> + <Coords points="433,980 445,980 445,1000 433,1000"/> + <TextEquiv conf="0.75214"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75214"> + <Unicode>Er</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w835" language="German" readingDirection="left-to-right"> + <Coords points="463,973 470,973 470,978 538,978 538,981 552,981 552,1000 525,1000 525,1006 511,1006 511,1001 492,1001 492,1000 463,1000"/> + <Glyph id="c837"> + <Coords points="463,973 470,973 470,1000 463,1000"/> + <TextEquiv conf="0.78663"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c839"> + <Coords points="473,980 489,980 489,1000 473,1000"/> + <TextEquiv conf="0.73961"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c841"> + <Coords points="492,981 508,981 508,1001 492,1001"/> + <TextEquiv conf="0.76240"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c843"> + <Coords points="511,982 525,982 525,1006 511,1006"/> + <TextEquiv conf="0.81754"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c845"> + <Coords points="530,978 538,978 538,1000 530,1000"/> + <TextEquiv conf="0.69569"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c847"> + <Coords points="541,981 552,981 552,1000 541,1000"/> + <TextEquiv conf="0.85047"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69569"> + <Unicode>langte</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w849" language="German" readingDirection="left-to-right"> + <Coords points="570,978 583,978 583,981 597,981 597,982 616,982 616,1002 601,1002 601,1001 570,1001"/> + <Glyph id="c851"> + <Coords points="570,978 583,978 583,1001 570,1001"/> + <TextEquiv conf="0.76386"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c853"> + <Coords points="586,981 597,981 597,1001 586,1001"/> + <TextEquiv conf="0.75878"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c855"> + <Coords points="601,982 616,982 616,1002 601,1002"/> + <TextEquiv conf="0.90114"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75878"> + <Unicode>den</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w857" language="German" readingDirection="left-to-right"> + <Coords points="636,974 655,974 655,977 720,977 720,1004 655,1004 655,1006 636,1006"/> + <Glyph id="c859"> + <Coords points="636,974 655,974 655,1006 636,1006"/> + <TextEquiv conf="0.81256"> + <Unicode>Z</Unicode></TextEquiv></Glyph> + <Glyph id="c861"> + <Coords points="659,983 668,983 668,1002 659,1002"/> + <TextEquiv conf="0.76173"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c863"> + <Coords points="673,981 682,981 682,1003 673,1003"/> + <TextEquiv conf="0.79860"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c865"> + <Coords points="686,981 694,981 694,1003 686,1003"/> + <TextEquiv conf="0.75493"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c867"> + <Coords points="698,984 708,984 708,1003 698,1003"/> + <TextEquiv conf="0.72446"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c869"> + <Coords points="712,977 720,977 720,1004 712,1004"/> + <TextEquiv conf="0.75684"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72446"> + <Unicode>Zettel</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w871" language="German" readingDirection="left-to-right"> + <Coords points="774,981 788,981 788,1006 756,1006 756,1005 736,1005 736,985 774,985"/> + <Glyph id="c873"> + <Coords points="736,985 751,985 751,1005 736,1005"/> + <TextEquiv conf="0.81969"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c875"> + <Coords points="756,985 771,985 771,1006 756,1006"/> + <TextEquiv conf="0.87030"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c877"> + <Coords points="774,981 788,981 788,1006 774,1006"/> + <TextEquiv conf="0.77499"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.77499"> + <Unicode>aus</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w879" language="German" readingDirection="left-to-right"> + <Coords points="810,980 824,980 824,986 870,986 870,1006 810,1006"/> + <Glyph id="c881"> + <Coords points="810,980 824,980 824,1006 810,1006"/> + <TextEquiv conf="0.85915"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c883"> + <Coords points="828,986 838,986 838,1006 828,1006"/> + <TextEquiv conf="0.70945"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c885"> + <Coords points="842,986 870,986 870,1006 842,1006"/> + <TextEquiv conf="0.89154"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.70945"> + <Unicode>dem</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>wieder ein. — Er langte den Zettel aus dem</Unicode></TextEquiv></TextLine> + <TextLine id="l23"> + <Coords points="251,1019 276,1019 276,1021 324,1021 324,1024 521,1024 521,1021 534,1021 534,1022 617,1022 617,1024 727,1024 727,1030 853,1030 853,1028 868,1028 868,1062 782,1062 782,1060 705,1060 705,1057 521,1057 521,1056 324,1056 324,1060 308,1060 308,1054 251,1054 251,1051 130,1051 130,1021 251,1021"/> + <Word id="w893" language="German" readingDirection="left-to-right"> + <Coords points="251,1019 276,1019 276,1026 291,1026 291,1047 276,1047 276,1054 251,1054 251,1051 130,1051 130,1021 251,1021"/> + <Glyph id="c895"> + <Coords points="130,1021 157,1021 157,1051 130,1051"/> + <TextEquiv conf="0.73639"> + <Unicode>A</Unicode></TextEquiv></Glyph> + <Glyph id="c897"> + <Coords points="161,1028 171,1028 171,1050 161,1050"/> + <TextEquiv conf="0.83724"> + <Unicode>c</Unicode></TextEquiv></Glyph> + <Glyph id="c899"> + <Coords points="174,1028 184,1028 184,1049 174,1049"/> + <TextEquiv conf="0.82264"> + <Unicode>c</Unicode></TextEquiv></Glyph> + <Glyph id="c901"> + <Coords points="187,1021 194,1021 194,1048 187,1048"/> + <TextEquiv conf="0.84643"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c905"> + <Coords points="251,1019 276,1019 276,1054 251,1054"/> + <TextEquiv conf="0.84438"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c907"> + <Coords points="281,1026 291,1026 291,1047 281,1047"/> + <TextEquiv conf="0.79417"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1986"> + <Coords points="197,1024 209,1024 209,1048 197,1048"/> + <TextEquiv> + <Unicode>s</Unicode></TextEquiv></Glyph> + <Glyph id="c1988"> + <Coords points="214,1021 226,1021 226,1047 214,1047"/> + <TextEquiv> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c1989"> + <Coords points="231,1027 246,1027 246,1047 231,1047"/> + <TextEquiv> + <Unicode>u</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.73639"> + <Unicode>Accisbue</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w909" language="German" readingDirection="left-to-right"> + <Coords points="308,1021 324,1021 324,1024 409,1024 409,1042 425,1042 425,1056 324,1056 324,1060 308,1060"/> + <Glyph id="c911"> + <Coords points="308,1021 324,1021 324,1060 308,1060"/> + <TextEquiv conf="0.75512"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c913"> + <Coords points="328,1030 338,1030 338,1048 328,1048"/> + <TextEquiv conf="0.70790"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c915"> + <Coords points="341,1028 352,1028 352,1049 341,1049"/> + <TextEquiv conf="0.76785"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c917"> + <Coords points="356,1029 371,1029 371,1049 356,1049"/> + <TextEquiv conf="0.79624"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c919"> + <Coords points="376,1029 391,1029 391,1048 376,1048"/> + <TextEquiv conf="0.67382"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c921"> + <Coords points="395,1024 409,1024 409,1049 395,1049"/> + <TextEquiv conf="0.65710"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <Glyph id="c923"> + <Coords points="417,1042 425,1042 425,1056 417,1056"/> + <TextEquiv conf="0.81870"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.65710"> + <Unicode>heraus,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w925" language="German" readingDirection="left-to-right"> + <Coords points="490,1024 503,1024 503,1051 490,1051 490,1049 469,1049 469,1048 449,1048 449,1028 469,1028 469,1026 490,1026"/> + <Glyph id="c927"> + <Coords points="449,1028 465,1028 465,1048 449,1048"/> + <TextEquiv conf="0.80640"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c929"> + <Coords points="469,1026 485,1026 485,1049 469,1049"/> + <TextEquiv conf="0.80131"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c931"> + <Coords points="490,1024 503,1024 503,1051 490,1051"/> + <TextEquiv conf="0.81827"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.80131"> + <Unicode>und</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w933" language="German" readingDirection="left-to-right"> + <Coords points="521,1021 534,1021 534,1027 576,1027 576,1029 590,1029 590,1050 564,1050 564,1057 521,1057"/> + <Glyph id="c935"> + <Coords points="521,1021 534,1021 534,1057 521,1057"/> + <TextEquiv conf="0.80597"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c937"> + <Coords points="531,1029 546,1029 546,1051 531,1051"/> + <TextEquiv conf="0.71182"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c939"> + <Coords points="549,1030 564,1030 564,1057 549,1057"/> + <TextEquiv conf="0.84189"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c941"> + <Coords points="567,1027 576,1027 576,1050 567,1050"/> + <TextEquiv conf="0.86008"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c943"> + <Coords points="579,1029 590,1029 590,1050 579,1050"/> + <TextEquiv conf="0.77111"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.71182"> + <Unicode>ſagte</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w28" language="German" readingDirection="left-to-right"> + <Coords points="607,1022 617,1022 617,1024 638,1024 638,1031 657,1031 657,1032 687,1032 687,1052 617,1052 617,1057 607,1057"/> + <Glyph id="c945"> + <Coords points="607,1022 617,1022 617,1057 607,1057"/> + <TextEquiv conf="0.81559"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c947"> + <Coords points="617,1030 628,1030 628,1050 617,1050"/> + <TextEquiv conf="0.88005"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c949"> + <Coords points="633,1024 638,1024 638,1050 633,1050"/> + <TextEquiv conf="0.74814"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c951"> + <Coords points="642,1031 657,1031 657,1051 642,1051"/> + <TextEquiv conf="0.72837"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c953"> + <Coords points="663,1032 672,1032 672,1051 663,1051"/> + <TextEquiv conf="0.79147"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c955"> + <Coords points="676,1032 687,1032 687,1052 676,1052"/> + <TextEquiv conf="0.81664"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72837"> + <Unicode>ſeiner</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w957" language="German" readingDirection="left-to-right"> + <Coords points="705,1024 727,1024 727,1034 780,1034 780,1048 790,1048 790,1062 782,1062 782,1060 705,1060"/> + <Glyph id="c959"> + <Coords points="705,1024 727,1024 727,1060 705,1060"/> + <TextEquiv conf="0.79451"> + <Unicode>F</Unicode></TextEquiv></Glyph> + <Glyph id="c961"> + <Coords points="730,1034 741,1034 741,1055 730,1055"/> + <TextEquiv conf="0.73184"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c963"> + <Coords points="745,1034 760,1034 760,1055 745,1055"/> + <TextEquiv conf="0.69758"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c965"> + <Coords points="765,1034 780,1034 780,1056 765,1056"/> + <TextEquiv conf="0.74120"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c967"> + <Coords points="782,1048 790,1048 790,1062 782,1062"/> + <TextEquiv conf="0.86141"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69758"> + <Unicode>Frau,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w969" language="German" readingDirection="left-to-right"> + <Coords points="853,1028 868,1028 868,1062 853,1062 853,1056 817,1056 817,1030 853,1030"/> + <Glyph id="c971"> + <Coords points="817,1030 831,1030 831,1056 817,1056"/> + <TextEquiv conf="0.80622"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c973"> + <Coords points="835,1035 850,1035 850,1056 835,1056"/> + <TextEquiv conf="0.73401"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c975"> + <Coords points="853,1028 868,1028 868,1062 853,1062"/> + <TextEquiv conf="0.79815"> + <Unicode>ß</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.73401"> + <Unicode>daß</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>Accisbue heraus, und ſagte ſeiner Frau, daß</Unicode></TextEquiv></TextLine> + <TextLine id="l24"> + <Coords points="443,1068 457,1068 457,1071 590,1071 590,1072 660,1072 660,1073 705,1073 705,1076 803,1076 803,1077 830,1077 830,1082 844,1082 844,1084 860,1084 860,1098 868,1098 868,1106 830,1106 830,1110 529,1110 529,1106 494,1106 494,1101 461,1101 461,1100 323,1100 323,1102 307,1102 307,1101 151,1101 151,1108 133,1108 133,1072 151,1072 151,1073 196,1073 196,1074 328,1074 328,1073 443,1073"/> + <Word id="w977" language="German" readingDirection="left-to-right"> + <Coords points="133,1072 151,1072 151,1078 165,1078 165,1099 151,1099 151,1108 133,1108"/> + <Glyph id="c979"> + <Coords points="133,1072 151,1072 151,1108 133,1108"/> + <TextEquiv conf="0.84813"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c981"> + <Coords points="155,1078 165,1078 165,1099 155,1099"/> + <TextEquiv conf="0.75703"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75703"> + <Unicode>e</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w5" language="German" readingDirection="left-to-right"> + <Coords points="184,1073 196,1073 196,1074 232,1074 232,1094 249,1094 249,1101 245,1101 245,1100 184,1100"/> + <Glyph id="c983"> + <Coords points="184,1073 196,1073 196,1100 184,1100"/> + <TextEquiv conf="0.70759"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c985"> + <Coords points="200,1079 215,1079 215,1100 200,1100"/> + <TextEquiv conf="0.74401"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c987"> + <Coords points="219,1074 232,1074 232,1100 219,1100"/> + <TextEquiv conf="0.74195"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <Glyph id="c989"> + <Coords points="245,1094 249,1094 249,1101 245,1101"/> + <TextEquiv conf="0.88051"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.70759"> + <Unicode>das,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w991" language="German" readingDirection="left-to-right"> + <Coords points="328,1073 340,1073 340,1098 323,1098 323,1102 307,1102 307,1101 279,1101 279,1078 328,1078"/> + <Glyph id="c993"> + <Coords points="279,1078 303,1078 303,1101 279,1101"/> + <TextEquiv conf="0.81205"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c995"> + <Coords points="307,1080 323,1080 323,1102 307,1102"/> + <TextEquiv conf="0.78334"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c997"> + <Coords points="328,1073 340,1073 340,1098 328,1098"/> + <TextEquiv conf="0.71925"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.71925"> + <Unicode>was</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w999" language="German" readingDirection="left-to-right"> + <Coords points="366,1073 378,1073 378,1079 399,1079 399,1100 366,1100"/> + <Glyph id="c1001"> + <Coords points="366,1073 378,1073 378,1100 366,1100"/> + <TextEquiv conf="0.76124"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1003"> + <Coords points="382,1079 399,1079 399,1100 382,1100"/> + <TextEquiv conf="0.75931"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75931"> + <Unicode>da</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1005" language="German" readingDirection="left-to-right"> + <Coords points="443,1068 457,1068 457,1079 488,1079 488,1093 501,1093 501,1106 494,1106 494,1101 461,1101 461,1100 415,1100 415,1079 443,1079"/> + <Glyph id="c1007"> + <Coords points="415,1079 439,1079 439,1100 415,1100"/> + <TextEquiv conf="0.76025"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c1009"> + <Coords points="443,1068 457,1068 457,1100 443,1100"/> + <TextEquiv conf="0.74663"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1011"> + <Coords points="461,1080 472,1080 472,1101 461,1101"/> + <TextEquiv conf="0.73019"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1013"> + <Coords points="476,1079 488,1079 488,1101 476,1101"/> + <TextEquiv conf="0.86440"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1015"> + <Coords points="494,1093 501,1093 501,1106 494,1106"/> + <TextEquiv conf="0.90284"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.73019"> + <Unicode>wre,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1017" language="German" readingDirection="left-to-right"> + <Coords points="529,1071 590,1071 590,1072 660,1072 660,1073 705,1073 705,1082 715,1082 715,1083 736,1083 736,1102 705,1102 705,1110 529,1110"/> + <Glyph id="c1019"> + <Coords points="529,1071 544,1071 544,1110 529,1110"/> + <TextEquiv conf="0.62055"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c1021"> + <Coords points="549,1080 559,1080 559,1100 549,1100"/> + <TextEquiv conf="0.73905"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1023"> + <Coords points="562,1080 573,1080 573,1101 562,1101"/> + <TextEquiv conf="0.76639"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1025"> + <Coords points="577,1071 590,1071 590,1101 577,1101"/> + <TextEquiv conf="0.83958"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c1027"> + <Coords points="595,1080 604,1080 604,1102 595,1102"/> + <TextEquiv conf="0.85026"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1029"> + <Coords points="609,1081 623,1081 623,1110 609,1110"/> + <TextEquiv conf="0.72177"> + <Unicode>y</Unicode></TextEquiv></Glyph> + <Glyph id="c1031"> + <Coords points="627,1073 637,1073 637,1107 627,1107"/> + <TextEquiv conf="0.74198"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c1033"> + <Coords points="637,1072 660,1072 660,1106 637,1106"/> + <TextEquiv conf="0.78442"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1035"> + <Coords points="665,1081 680,1081 680,1102 665,1102"/> + <TextEquiv conf="0.74563"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1037"> + <Coords points="684,1073 705,1073 705,1110 684,1110"/> + <TextEquiv conf="0.83982"> + <Unicode>ff</Unicode></TextEquiv></Glyph> + <Glyph id="c1990"> + <Coords points="706,1082 715,1082 715,1101 706,1101"/> + <TextEquiv> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1991"> + <Coords points="720,1083 736,1083 736,1102 720,1102"/> + <TextEquiv> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.62055"> + <Unicode>herbeyſaffen</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1041" language="German" readingDirection="left-to-right"> + <Coords points="789,1076 803,1076 803,1077 830,1077 830,1082 844,1082 844,1084 860,1084 860,1098 868,1098 868,1106 830,1106 830,1110 806,1110 806,1104 759,1104 759,1083 789,1083"/> + <Glyph id="c1043"> + <Coords points="759,1083 785,1083 785,1104 759,1104"/> + <TextEquiv conf="0.80051"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c1045"> + <Coords points="789,1076 803,1076 803,1104 789,1104"/> + <TextEquiv conf="0.76095"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1047"> + <Coords points="806,1077 830,1077 830,1110 806,1110"/> + <TextEquiv conf="0.79382"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1049"> + <Coords points="835,1082 844,1082 844,1105 835,1105"/> + <TextEquiv conf="0.71159"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c1051"> + <Coords points="847,1084 860,1084 860,1105 847,1105"/> + <TextEquiv conf="0.82929"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1053"> + <Coords points="861,1098 868,1098 868,1106 861,1106"/> + <TextEquiv conf="0.90931"> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.71159"> + <Unicode>mte.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>e das, was da wre, herbeyſaffen mte.</Unicode></TextEquiv></TextLine> + <TextLine id="l26"> + <Coords points="215,1113 235,1113 235,1125 357,1125 357,1118 364,1118 364,1119 471,1119 471,1118 540,1118 540,1119 764,1119 764,1122 853,1122 853,1128 869,1128 869,1147 853,1147 853,1149 842,1149 842,1150 797,1150 797,1154 790,1154 790,1148 756,1148 756,1147 590,1147 590,1154 575,1154 575,1149 471,1149 471,1148 339,1148 339,1154 325,1154 325,1153 132,1153 132,1116 215,1116"/> + <Word id="w1059" language="German" readingDirection="left-to-right"> + <Coords points="215,1113 235,1113 235,1153 132,1153 132,1116 215,1116"/> + <Glyph id="c1061"> + <Coords points="132,1116 159,1116 159,1153 132,1153"/> + <TextEquiv conf="0.80949"> + <Unicode>J</Unicode></TextEquiv></Glyph> + <Glyph id="c1063"> + <Coords points="163,1126 178,1126 178,1146 163,1146"/> + <TextEquiv conf="0.82919"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1065"> + <Coords points="182,1119 195,1119 195,1147 182,1147"/> + <TextEquiv conf="0.81147"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1067"> + <Coords points="200,1124 211,1124 211,1146 200,1146"/> + <TextEquiv conf="0.87336"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1069"> + <Coords points="215,1113 235,1113 235,1153 215,1153"/> + <TextEquiv conf="0.72395"> + <Unicode>ß</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72395"> + <Unicode>Jndeß</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1071" language="German" readingDirection="left-to-right"> + <Coords points="357,1118 364,1118 364,1124 376,1124 376,1125 411,1125 411,1146 364,1146 364,1147 339,1147 339,1154 325,1154 325,1147 284,1147 284,1145 254,1145 254,1125 357,1125"/> + <Glyph id="c1073"> + <Coords points="254,1125 280,1125 280,1145 254,1145"/> + <TextEquiv conf="0.87717"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c1075"> + <Coords points="284,1126 299,1126 299,1147 284,1147"/> + <TextEquiv conf="0.83118"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1077"> + <Coords points="304,1126 320,1126 320,1146 304,1146"/> + <TextEquiv conf="0.82834"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1079"> + <Coords points="325,1125 339,1125 339,1154 325,1154"/> + <TextEquiv conf="0.85393"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c1081"> + <Coords points="343,1125 353,1125 353,1146 343,1146"/> + <TextEquiv conf="0.82745"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1083"> + <Coords points="357,1118 364,1118 364,1147 357,1147"/> + <TextEquiv conf="0.83320"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1085"> + <Coords points="367,1124 376,1124 376,1146 367,1146"/> + <TextEquiv conf="0.80938"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c1087"> + <Coords points="379,1125 389,1125 389,1146 379,1146"/> + <TextEquiv conf="0.82412"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1089"> + <Coords points="394,1125 411,1125 411,1146 394,1146"/> + <TextEquiv conf="0.84363"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.80938"> + <Unicode>mangelten</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1133" language="German" readingDirection="left-to-right"> + <Coords points="846,1122 853,1122 853,1128 869,1128 869,1147 853,1147 853,1149 842,1149 842,1150 828,1150 828,1123 846,1123"/> + <Glyph id="c1135"> + <Coords points="828,1123 842,1123 842,1150 828,1150"/> + <TextEquiv conf="0.87171"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1137"> + <Coords points="846,1122 853,1122 853,1149 846,1149"/> + <TextEquiv conf="0.83263"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1139"> + <Coords points="857,1128 869,1128 869,1147 857,1147"/> + <TextEquiv conf="0.86775"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.83263"> + <Unicode>die</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1960" language="German" readingDirection="left-to-right"> + <Coords points="471,1118 496,1118 496,1149 471,1149 471,1148 434,1148 434,1119 471,1119"/> + <Glyph id="c1093"> + <Coords points="434,1119 448,1119 448,1148 434,1148"/> + <TextEquiv conf="0.78914"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1095"> + <Coords points="453,1125 467,1125 467,1148 453,1148"/> + <TextEquiv conf="0.88670"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1097"> + <Coords points="471,1118 496,1118 496,1149 471,1149"/> + <TextEquiv conf="0.77859"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>do</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1962" language="German" readingDirection="left-to-right"> + <Coords points="534,1118 540,1118 540,1119 573,1119 573,1126 605,1126 605,1147 590,1147 590,1154 575,1154 575,1148 544,1148 544,1147 518,1147 518,1125 534,1125"/> + <Glyph id="c1101"> + <Coords points="518,1125 529,1125 529,1147 518,1147"/> + <TextEquiv conf="0.86079"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1103"> + <Coords points="534,1118 540,1118 540,1147 534,1147"/> + <TextEquiv conf="0.83232"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1105"> + <Coords points="544,1126 561,1126 561,1148 544,1148"/> + <TextEquiv conf="0.81793"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1107"> + <Coords points="565,1119 573,1119 573,1147 565,1147"/> + <TextEquiv conf="0.78300"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1109"> + <Coords points="575,1127 590,1127 590,1154 575,1154"/> + <TextEquiv conf="0.77761"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c1111"> + <Coords points="594,1126 605,1126 605,1147 594,1147"/> + <TextEquiv conf="0.86677"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>einige</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1963" language="Latin" readingDirection="left-to-right"> + <Coords points="630,1119 764,1119 764,1130 782,1130 782,1141 797,1141 797,1154 790,1154 790,1148 756,1148 756,1147 658,1147 658,1146 630,1146"/> + <Glyph id="c1115"> + <Coords points="630,1119 656,1119 656,1146 630,1146"/> + <TextEquiv conf="0.82036"> + <Unicode>G</Unicode></TextEquiv></Glyph> + <Glyph id="c1117"> + <Coords points="658,1129 671,1129 671,1147 658,1147"/> + <TextEquiv conf="0.77833"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1119"> + <Coords points="675,1129 693,1129 693,1146 675,1146"/> + <TextEquiv conf="0.85051"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1121"> + <Coords points="697,1129 710,1129 710,1147 697,1147"/> + <TextEquiv conf="0.82972"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1125"> + <Coords points="746,1120 754,1120 754,1147 746,1147"/> + <TextEquiv conf="0.81277"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1127"> + <Coords points="756,1119 764,1119 764,1148 756,1148"/> + <TextEquiv conf="0.83589"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1129"> + <Coords points="767,1130 782,1130 782,1148 767,1148"/> + <TextEquiv conf="0.78757"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1131"> + <Coords points="790,1141 797,1141 797,1154 790,1154"/> + <TextEquiv conf="0.90190"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <Glyph id="c73"> + <Coords points="723,1130 723,1131 724,1131 724,1133 721,1133 721,1146 715,1146 715,1145 714,1145 714,1131 716,1131 716,1130"/> + <TextEquiv> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c75"> + <Coords points="737,1130 737,1131 738,1131 738,1132 739,1132 739,1144 740,1144 740,1145 741,1145 741,1146 729,1146 729,1135 728,1135 728,1134 729,1134 729,1133 730,1133 730,1132 731,1132 731,1131 733,1131 733,1130"/> + <TextEquiv> + <Unicode>a</Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>Generalia,</Unicode></TextEquiv> + <TextStyle fontFamily="Antiqua"/></Word> + <TextEquiv> + <Unicode>Jndeß mangelten do einige Generalia, die</Unicode></TextEquiv></TextLine> + <TextLine id="l27"> + <Coords points="819,1163 830,1163 830,1165 847,1165 847,1166 874,1166 874,1201 810,1201 810,1202 661,1202 661,1201 635,1201 635,1194 518,1194 518,1201 485,1201 485,1185 347,1185 347,1187 356,1187 356,1193 329,1193 329,1194 284,1194 284,1198 270,1198 270,1201 255,1201 255,1199 163,1199 163,1193 153,1193 153,1192 132,1192 132,1172 153,1172 153,1166 163,1166 163,1165 172,1165 172,1166 289,1166 289,1167 315,1167 315,1172 347,1172 347,1177 485,1177 485,1164 604,1164 604,1167 799,1167 799,1166 819,1166"/> + <Word id="w1141" language="German" readingDirection="left-to-right"> + <Coords points="163,1165 172,1165 172,1173 185,1173 185,1193 172,1193 172,1199 163,1199 163,1193 153,1193 153,1192 132,1192 132,1172 153,1172 153,1166 163,1166"/> + <Glyph id="c1143"> + <Coords points="132,1172 149,1172 149,1192 132,1192"/> + <TextEquiv conf="0.84728"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1145"> + <Coords points="153,1166 160,1166 160,1193 153,1193"/> + <TextEquiv conf="0.72710"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1147"> + <Coords points="163,1165 172,1165 172,1199 163,1199"/> + <TextEquiv conf="0.70061"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c1149"> + <Coords points="173,1173 185,1173 185,1193 173,1193"/> + <TextEquiv conf="0.90074"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.70061"> + <Unicode>alſo</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1151" language="German" readingDirection="left-to-right"> + <Coords points="273,1166 289,1166 289,1167 315,1167 315,1172 347,1172 347,1187 356,1187 356,1193 329,1193 329,1194 284,1194 284,1198 270,1198 270,1201 255,1201 255,1193 214,1193 214,1171 273,1171"/> + <Glyph id="c1153"> + <Coords points="214,1171 238,1171 238,1193 214,1193"/> + <TextEquiv conf="0.83780"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c1155"> + <Coords points="242,1172 253,1172 253,1193 242,1193"/> + <TextEquiv conf="0.81500"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1157"> + <Coords points="255,1174 270,1174 270,1201 255,1201"/> + <TextEquiv conf="0.80803"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c1159"> + <Coords points="273,1166 289,1166 289,1193 284,1193 284,1198 273,1198"/> + <TextEquiv conf="0.78080"> + <Unicode>fi</Unicode></TextEquiv></Glyph> + <Glyph id="c1163"> + <Coords points="294,1173 304,1173 304,1194 294,1194"/> + <TextEquiv conf="0.75474"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1165"> + <Coords points="308,1167 315,1167 315,1194 308,1194"/> + <TextEquiv conf="0.90229"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1167"> + <Coords points="318,1174 329,1174 329,1194 318,1194"/> + <TextEquiv conf="0.85984"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1992"> + <Coords points="332,1172 347,1172 347,1192 332,1192"/> + <TextEquiv> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1993"> + <Coords points="352,1187 356,1187 356,1193 352,1193"/> + <TextEquiv> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.60821"> + <Unicode>wegfielen.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1171" language="German" readingDirection="left-to-right"> + <Coords points="384,1177 435,1177 435,1185 384,1185"/> + <Glyph id="c1175"> + <Coords points="384,1177 435,1177 435,1185 384,1185"/> + <TextEquiv conf="0.51894"> + <Unicode>—</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.51894"> + <Unicode>—</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w21" language="German" readingDirection="left-to-right"> + <Coords points="485,1164 604,1164 604,1167 675,1167 675,1202 661,1202 661,1201 635,1201 635,1194 518,1194 518,1201 485,1201"/> + <Glyph id="c1179"> + <Coords points="485,1164 518,1164 518,1201 485,1201"/> + <TextEquiv conf="0.74039"> + <Unicode>H</Unicode></TextEquiv></Glyph> + <Glyph id="c1181"> + <Coords points="523,1173 539,1173 539,1194 523,1194"/> + <TextEquiv conf="0.89065"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1183"> + <Coords points="551,1172 563,1172 563,1193 551,1193"/> + <TextEquiv conf="0.80319"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1185"> + <Coords points="573,1170 582,1170 582,1193 573,1193"/> + <TextEquiv conf="0.84734"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c1187"> + <Coords points="592,1164 604,1164 604,1193 592,1193"/> + <TextEquiv conf="0.72920"> + <Unicode>k</Unicode></TextEquiv></Glyph> + <Glyph id="c1189"> + <Coords points="613,1173 626,1173 626,1194 613,1194"/> + <TextEquiv conf="0.90838"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1191"> + <Coords points="635,1173 652,1173 652,1201 635,1201"/> + <TextEquiv conf="0.85035"> + <Unicode>p</Unicode></TextEquiv></Glyph> + <Glyph id="c1193"> + <Coords points="661,1167 675,1167 675,1202 661,1202"/> + <TextEquiv conf="0.83784"> + <Unicode>f</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72920"> + <Unicode>Hartkopf</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w78" language="German" readingDirection="left-to-right"> + <Coords points="717,1167 725,1167 725,1174 739,1174 739,1175 777,1175 777,1201 714,1201 714,1202 699,1202 699,1174 717,1174"/> + <Glyph id="c1197"> + <Coords points="699,1174 714,1174 714,1202 699,1202"/> + <TextEquiv conf="0.84219"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c1199"> + <Coords points="717,1167 725,1167 725,1194 717,1194"/> + <TextEquiv conf="0.78589"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1201"> + <Coords points="728,1174 739,1174 739,1194 728,1194"/> + <TextEquiv conf="0.90891"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1203"> + <Coords points="743,1175 758,1175 758,1194 743,1194"/> + <TextEquiv conf="0.83234"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1205"> + <Coords points="762,1175 777,1175 777,1201 762,1201"/> + <TextEquiv conf="0.82998"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>gieng</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w79" language="German" readingDirection="left-to-right"> + <Coords points="819,1163 830,1163 830,1165 847,1165 847,1166 874,1166 874,1201 810,1201 810,1202 799,1202 799,1166 819,1166"/> + <Glyph id="c1209"> + <Coords points="799,1166 810,1166 810,1202 799,1202"/> + <TextEquiv conf="0.88437"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c1211"> + <Coords points="809,1173 819,1173 819,1194 809,1194"/> + <TextEquiv conf="0.79098"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1213"> + <Coords points="819,1163 830,1163 830,1195 819,1195"/> + <TextEquiv conf="0.73612"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1215"> + <Coords points="834,1165 847,1165 847,1194 834,1194"/> + <TextEquiv conf="0.82563"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c1217"> + <Coords points="851,1166 874,1166 874,1201 851,1201"/> + <TextEquiv conf="0.74729"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>ſelb</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>alſo wegfielen. — Hartkopf gieng ſelb</Unicode></TextEquiv></TextLine> + <TextEquiv> + <Unicode>Hartkopf mußte  er bennen, und +endli na langem Nadenken fiel es ihm er +wieder ein. — Er langte den Zettel aus dem +Accisbue heraus, und ſagte ſeiner Frau, daß +e das, was da wre, herbeyſaffen mte. +Jndeß mangelten do einige Generalia, die +alſo wegfielen. — Hartkopf gieng ſelb +mit und berbrate es. —</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur; Antiqua"/></TextRegion> + <GraphicRegion id="r5" type="decoration"> + <Coords points="382,166 636,166 636,203 382,203"/></GraphicRegion> + </Page></PcGts> diff --git a/dinglehopper/tests/data/directory-test/gt/2.xml b/dinglehopper/tests/data/directory-test/gt/2.xml new file mode 100644 index 0000000..c0dc183 --- /dev/null +++ b/dinglehopper/tests/data/directory-test/gt/2.xml @@ -0,0 +1,3394 @@ +<?xml version="1.0" encoding="UTF-8"?> +<PcGts xmlns="http://schema.primaresearch.org/PAGE/gts/pagecontent/2018-07-15" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://schema.primaresearch.org/PAGE/gts/pagecontent/2018-07-15 http://schema.primaresearch.org/PAGE/gts/pagecontent/2018-07-15/pagecontent.xsd" pcGtsId="backhart_768169569_0001_00000119"> + <Metadata> + <Creator>doculibtopagexml</Creator> + <Created>2019-01-08T10:25:36</Created> + <LastChange>2019-04-26T07:11:05</LastChange></Metadata> + <Page imageFilename="00000119.tif" imageXResolution="300.00000" imageYResolution="300.00000" imageWidth="1148" imageHeight="1852" type="content"> + <AlternativeImage filename="00000119_b.tif"/> + <PrintSpace> + <Coords points="93,136 93,1613 913,1613 913,136"/></PrintSpace> + <ReadingOrder> + <OrderedGroup id="ro357564684568544579089"> + <RegionRefIndexed regionRef="r0" index="1"/> + <RegionRefIndexed regionRef="r2" index="2"/> + </OrderedGroup></ReadingOrder> + <TextRegion id="r0" readingDirection="left-to-right" textLineOrder="top-to-bottom" type="paragraph" indented="false" align="justify" primaryLanguage="German"> + <Coords points="157,251 170,251 170,256 245,256 245,258 370,258 370,259 420,259 420,267 437,267 437,268 621,268 621,263 657,263 657,261 701,261 701,259 718,259 718,266 856,266 856,262 871,262 871,320 872,320 872,392 871,392 871,489 869,489 869,783 830,783 830,791 815,791 815,788 788,788 788,781 646,781 646,786 570,786 570,819 493,819 493,829 334,829 334,833 249,833 249,834 160,834 160,840 146,840 146,830 131,830 131,802 132,802 132,590 131,590 131,554 133,554 133,513 135,513 135,342 134,342 134,304 135,304 135,252 157,252"/> + <TextLine id="l5"> + <Coords points="157,251 170,251 170,256 245,256 245,258 370,258 370,259 420,259 420,267 437,267 437,268 621,268 621,263 657,263 657,261 701,261 701,259 718,259 718,266 856,266 856,262 871,262 871,297 821,297 821,291 682,291 682,295 575,295 575,297 560,297 560,296 455,296 455,289 386,289 386,288 283,288 283,287 219,287 219,285 188,285 188,284 174,284 174,283 135,283 135,252 157,252"/> + <Word id="w1663" language="German" readingDirection="left-to-right"> + <Coords points="157,251 170,251 170,261 185,261 185,263 199,263 199,285 188,285 188,284 174,284 174,283 135,283 135,252 157,252"/> + <Glyph id="c1665"> + <Coords points="135,252 155,252 155,283 135,283"/> + <TextEquiv conf="0.75285"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1667"> + <Coords points="157,251 170,251 170,283 157,283"/> + <TextEquiv conf="0.77841"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c1669"> + <Coords points="174,261 185,261 185,284 174,284"/> + <TextEquiv conf="0.84378"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1671"> + <Coords points="188,263 199,263 199,285 188,285"/> + <TextEquiv conf="0.75436"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75285"> + <Unicode>ber</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1673" language="German" readingDirection="left-to-right"> + <Coords points="236,256 245,256 245,264 260,264 260,287 219,287 219,257 236,257"/> + <Glyph id="c1675"> + <Coords points="219,257 233,257 233,287 219,287"/> + <TextEquiv conf="0.80770"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1677"> + <Coords points="236,256 245,256 245,287 236,287"/> + <TextEquiv conf="0.75232"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1679"> + <Coords points="248,264 260,264 260,287 248,287"/> + <TextEquiv conf="0.87596"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75232"> + <Unicode>die</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1681" language="German" readingDirection="left-to-right"> + <Coords points="329,258 370,258 370,288 283,288 283,264 304,264 304,259 329,259"/> + <Glyph id="c1683"> + <Coords points="283,264 299,264 299,288 283,288"/> + <TextEquiv conf="0.75082"> + <Unicode>v</Unicode></TextEquiv></Glyph> + <Glyph id="c1685"> + <Coords points="304,259 310,259 310,288 304,288"/> + <TextEquiv conf="0.68661"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1687"> + <Coords points="315,266 325,266 325,287 315,287"/> + <TextEquiv conf="0.72317"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1689"> + <Coords points="329,258 337,258 337,288 329,288"/> + <TextEquiv conf="0.83915"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1691"> + <Coords points="340,266 349,266 349,287 340,287"/> + <TextEquiv conf="0.79152"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1693"> + <Coords points="354,258 370,258 370,288 354,288"/> + <TextEquiv conf="0.67275"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.67275"> + <Unicode>vielen</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1695" language="German" readingDirection="left-to-right"> + <Coords points="386,259 420,259 420,267 437,267 437,268 452,268 452,269 503,269 503,289 469,289 469,296 455,296 455,289 386,289"/> + <Glyph id="c1697"> + <Coords points="386,259 420,259 420,289 386,289"/> + <TextEquiv conf="0.75776"> + <Unicode>S</Unicode></TextEquiv></Glyph> + <Glyph id="c1699"> + <Coords points="424,267 437,267 437,287 424,287"/> + <TextEquiv conf="0.81753"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1701"> + <Coords points="441,268 452,268 452,288 441,288"/> + <TextEquiv conf="0.85307"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1703"> + <Coords points="455,269 469,269 469,296 455,296"/> + <TextEquiv conf="0.81493"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c1705"> + <Coords points="473,269 482,269 482,289 473,289"/> + <TextEquiv conf="0.78034"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1707"> + <Coords points="487,269 503,269 503,289 487,289"/> + <TextEquiv conf="0.74845"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74845"> + <Unicode>Sorgen</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1709" language="German" readingDirection="left-to-right"> + <Coords points="518,268 542,268 542,269 608,269 608,289 589,289 589,290 575,290 575,297 560,297 560,289 546,289 546,288 518,288"/> + <Glyph id="c1711"> + <Coords points="518,268 542,268 542,288 518,288"/> + <TextEquiv conf="0.76983"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c1713"> + <Coords points="546,269 557,269 557,289 546,289"/> + <TextEquiv conf="0.69585"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1715"> + <Coords points="560,269 575,269 575,297 560,297"/> + <TextEquiv conf="0.80275"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c1717"> + <Coords points="579,269 589,269 589,290 579,290"/> + <TextEquiv conf="0.75463"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1719"> + <Coords points="592,269 608,269 608,289 592,289"/> + <TextEquiv conf="0.77872"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69585"> + <Unicode>wegen</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1721" language="German" readingDirection="left-to-right"> + <Coords points="701,259 718,259 718,268 750,268 750,291 682,291 682,295 657,295 657,290 621,290 621,263 657,263 657,261 701,261"/> + <Glyph id="c1723"> + <Coords points="621,263 640,263 640,290 621,290"/> + <TextEquiv conf="0.67731"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1725"> + <Coords points="644,268 653,268 653,289 644,289"/> + <TextEquiv conf="0.72582"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1727"> + <Coords points="657,261 682,261 682,295 657,295"/> + <TextEquiv conf="0.80586"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1729"> + <Coords points="676,268 688,268 688,290 676,290"/> + <TextEquiv conf="0.85827"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1731"> + <Coords points="691,261 698,261 698,291 691,291"/> + <TextEquiv conf="0.69996"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1733"> + <Coords points="701,259 718,259 718,291 701,291"/> + <TextEquiv conf="0.58348"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c1737"> + <Coords points="719,268 729,268 729,290 719,290"/> + <TextEquiv conf="0.72210"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1739"> + <Coords points="733,268 750,268 750,291 733,291"/> + <TextEquiv conf="0.78413"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.58348"> + <Unicode>deelben</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1741" language="German" readingDirection="left-to-right"> + <Coords points="856,262 871,262 871,297 821,297 821,291 807,291 807,290 774,290 774,266 856,266"/> + <Glyph id="c1743"> + <Coords points="774,266 789,266 789,290 774,290"/> + <TextEquiv conf="0.78911"> + <Unicode>v</Unicode></TextEquiv></Glyph> + <Glyph id="c1745"> + <Coords points="794,268 804,268 804,290 794,290"/> + <TextEquiv conf="0.83999"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1747"> + <Coords points="807,269 819,269 819,291 807,291"/> + <TextEquiv conf="0.73881"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1749"> + <Coords points="821,269 835,269 835,297 821,297"/> + <TextEquiv conf="0.88566"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c1751"> + <Coords points="838,267 854,267 854,290 838,290"/> + <TextEquiv conf="0.85102"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1753"> + <Coords points="856,262 871,262 871,297 856,297"/> + <TextEquiv conf="0.80438"> + <Unicode>ß</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.73881"> + <Unicode>vergaß</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>ber die vielen Sorgen wegen deelben vergaß</Unicode></TextEquiv></TextLine> + <TextLine id="l6"> + <Coords points="224,797 334,797 334,800 440,800 440,807 484,807 484,813 570,813 570,819 493,819 493,829 334,829 334,833 249,833 249,834 160,834 160,840 146,840 146,830 131,830 131,802 146,802 146,801 224,801"/> + <Word id="w1755" language="German" readingDirection="left-to-right"> + <Coords points="146,801 160,801 160,808 175,808 175,831 160,831 160,840 146,840 146,830 131,830 131,802 146,802"/> + <Glyph id="c1757"> + <Coords points="131,802 141,802 141,830 131,830"/> + <TextEquiv conf="0.77702"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1759"> + <Coords points="146,801 160,801 160,840 146,840"/> + <TextEquiv conf="0.69026"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c1761"> + <Coords points="164,808 175,808 175,831 164,831"/> + <TextEquiv conf="0.74867"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69026"> + <Unicode>ihr</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1763" language="German" readingDirection="left-to-right"> + <Coords points="224,797 249,797 249,834 224,834 224,830 190,830 190,803 224,803"/> + <Glyph id="c1765"> + <Coords points="190,803 203,803 203,830 190,830"/> + <TextEquiv conf="0.68484"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1767"> + <Coords points="207,809 220,809 220,828 207,828"/> + <TextEquiv conf="0.69132"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1769"> + <Coords points="224,797 249,797 249,834 224,834"/> + <TextEquiv conf="0.73594"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.68484"> + <Unicode>do</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1771" language="German" readingDirection="left-to-right"> + <Coords points="318,797 334,797 334,833 318,833 318,827 271,827 271,806 318,806"/> + <Glyph id="c1773"> + <Coords points="271,806 288,806 288,827 271,827"/> + <TextEquiv conf="0.70153"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1775"> + <Coords points="293,807 305,807 305,827 293,827"/> + <TextEquiv conf="0.74772"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1777"> + <Coords points="318,797 334,797 334,833 318,833 318,826 309,826 309,806 318,806"/> + <TextEquiv conf="0.72521"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69144"> + <Unicode>no</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1781" language="German" readingDirection="left-to-right"> + <Coords points="351,806 387,806 387,829 351,829"/> + <Glyph id="c1783"> + <Coords points="351,806 367,806 367,829 351,829"/> + <TextEquiv conf="0.83185"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1785"> + <Coords points="370,806 387,806 387,829 370,829"/> + <TextEquiv conf="0.80758"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.80758"> + <Unicode>an</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1787" language="German" readingDirection="left-to-right"> + <Coords points="433,800 440,800 440,807 484,807 484,815 493,815 493,829 424,829 424,828 405,828 405,807 424,807 424,801 433,801"/> + <Glyph id="c1789"> + <Coords points="405,807 420,807 420,828 405,828"/> + <TextEquiv conf="0.75325"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1791"> + <Coords points="433,800 440,800 440,829 424,829 424,801 433,801"/> + <TextEquiv conf="0.69836"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1795"> + <Coords points="444,807 454,807 454,829 444,829"/> + <TextEquiv conf="0.77285"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1797"> + <Coords points="457,807 484,807 484,829 457,829"/> + <TextEquiv conf="0.84281"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c1799"> + <Coords points="486,815 493,815 493,829 486,829"/> + <TextEquiv conf="0.56713"> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.56713"> + <Unicode>aem.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1801" language="German" readingDirection="left-to-right"> + <Coords points="520,813 570,813 570,819 520,819"/> + <Glyph id="c1803"> + <Coords points="520,813 570,813 570,819 520,819"/> + <TextEquiv conf="0.88040"> + <Unicode>—</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.86562"> + <Unicode>—</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>ihr do no an aem. —</Unicode></TextEquiv></TextLine> + <TextLine id="l7"> + <Coords points="134,304 163,304 163,308 252,308 252,309 324,309 324,310 436,310 436,309 457,309 457,311 634,311 634,307 648,307 648,312 699,312 699,313 759,313 759,315 795,315 795,318 835,318 835,319 864,319 864,320 872,320 872,339 864,339 864,342 852,342 852,341 762,341 762,340 745,340 745,339 560,339 560,341 457,341 457,343 283,343 283,337 163,337 163,342 134,342"/> + <Word id="w1807" language="German" readingDirection="left-to-right"> + <Coords points="134,304 163,304 163,308 252,308 252,309 324,309 324,329 337,329 337,343 283,343 283,337 163,337 163,342 134,342"/> + <Glyph id="c1809"> + <Coords points="134,304 163,304 163,342 134,342"/> + <TextEquiv conf="0.77424"> + <Unicode>H</Unicode></TextEquiv></Glyph> + <Glyph id="c1811"> + <Coords points="173,314 189,314 189,336 173,336"/> + <TextEquiv conf="0.83291"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1813"> + <Coords points="198,315 209,315 209,336 198,336"/> + <TextEquiv conf="0.75086"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1815"> + <Coords points="219,313 229,313 229,337 219,337"/> + <TextEquiv conf="0.80943"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c1817"> + <Coords points="240,308 252,308 252,337 240,337"/> + <TextEquiv conf="0.77207"> + <Unicode>k</Unicode></TextEquiv></Glyph> + <Glyph id="c1819"> + <Coords points="260,317 273,317 273,337 260,337"/> + <TextEquiv conf="0.84221"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1821"> + <Coords points="283,317 299,317 299,343 283,343"/> + <TextEquiv conf="0.79249"> + <Unicode>p</Unicode></TextEquiv></Glyph> + <Glyph id="c1823"> + <Coords points="310,309 324,309 324,343 310,343"/> + <TextEquiv conf="0.87079"> + <Unicode>f</Unicode></TextEquiv></Glyph> + <Glyph id="c1825"> + <Coords points="329,329 337,329 337,343 329,343"/> + <TextEquiv conf="0.97446"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75086"> + <Unicode>Hartkopf,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1827" language="German" readingDirection="left-to-right"> + <Coords points="368,310 381,310 381,316 412,316 412,337 385,337 385,336 368,336"/> + <Glyph id="c1829"> + <Coords points="368,310 381,310 381,336 368,336"/> + <TextEquiv conf="0.76508"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1831"> + <Coords points="385,316 396,316 396,337 385,337"/> + <TextEquiv conf="0.75896"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1833"> + <Coords points="399,316 412,316 412,337 399,337"/> + <TextEquiv conf="0.82288"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75896"> + <Unicode>der</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1835" language="German" readingDirection="left-to-right"> + <Coords points="436,309 457,309 457,317 490,317 490,318 510,318 510,339 457,339 457,343 436,343"/> + <Glyph id="c1837"> + <Coords points="436,309 457,309 457,343 436,343"/> + <TextEquiv conf="0.75319"> + <Unicode>F</Unicode></TextEquiv></Glyph> + <Glyph id="c1839"> + <Coords points="460,318 472,318 472,336 460,336"/> + <TextEquiv conf="0.77654"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1841"> + <Coords points="475,317 490,317 490,337 475,337"/> + <TextEquiv conf="0.83225"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1843"> + <Coords points="494,318 510,318 510,339 494,339"/> + <TextEquiv conf="0.80133"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75319"> + <Unicode>Frau</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1845" language="German" readingDirection="left-to-right"> + <Coords points="634,307 648,307 648,312 699,312 699,319 721,319 721,339 560,339 560,341 533,341 533,311 634,311"/> + <Glyph id="c1847"> + <Coords points="533,311 560,311 560,341 533,341"/> + <TextEquiv conf="0.73224"> + <Unicode>A</Unicode></TextEquiv></Glyph> + <Glyph id="c1849"> + <Coords points="563,319 587,319 587,339 563,339"/> + <TextEquiv conf="0.80570"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c1851"> + <Coords points="592,316 601,316 601,339 592,339"/> + <TextEquiv conf="0.68586"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c1853"> + <Coords points="605,319 629,319 629,339 605,339"/> + <TextEquiv conf="0.77963"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c1855"> + <Coords points="634,307 648,307 648,339 634,339"/> + <TextEquiv conf="0.79249"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1857"> + <Coords points="653,318 667,318 667,339 653,339"/> + <TextEquiv conf="0.85011"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1859"> + <Coords points="672,319 688,319 688,339 672,339"/> + <TextEquiv conf="0.82539"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1861"> + <Coords points="693,312 699,312 699,339 693,339"/> + <TextEquiv conf="0.88742"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1863"> + <Coords points="704,319 721,319 721,339 704,339"/> + <TextEquiv conf="0.85821"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.68586"> + <Unicode>Amtmnnin</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1865" language="German" readingDirection="left-to-right"> + <Coords points="745,313 759,313 759,315 795,315 795,340 778,340 778,341 762,341 762,340 745,340"/> + <Glyph id="c1867"> + <Coords points="745,313 759,313 759,340 745,340"/> + <TextEquiv conf="0.85237"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1869"> + <Coords points="762,320 778,320 778,341 762,341"/> + <TextEquiv conf="0.79818"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1871"> + <Coords points="780,315 795,315 795,340 780,340"/> + <TextEquiv conf="0.76413"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.76413"> + <Unicode>das</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w36" language="German" readingDirection="left-to-right"> + <Coords points="819,318 835,318 835,319 864,319 864,320 872,320 872,339 864,339 864,342 852,342 852,341 819,341"/> + <Glyph id="c1875"> + <Coords points="819,318 835,318 835,341 819,341"/> + <TextEquiv conf="0.84042"> + <Unicode>v</Unicode></TextEquiv></Glyph> + <Glyph id="c1877"> + <Coords points="839,320 849,320 849,341 839,341"/> + <TextEquiv conf="0.84113"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1879"> + <Coords points="852,319 864,319 864,342 852,342"/> + <TextEquiv conf="0.84949"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1881"> + <Coords points="865,320 872,320 872,339 865,339"/> + <TextEquiv conf="0.80870"> + <Unicode>⸗</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.80870"> + <Unicode>ver⸗</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>Hartkopf, der Frau Amtmnnin das ver⸗</Unicode></TextEquiv></TextLine> + <TextLine id="l9"> + <Coords points="135,356 147,356 147,358 221,358 221,366 363,366 363,357 397,357 397,359 438,359 438,360 478,360 478,367 489,367 489,368 522,368 522,375 651,375 651,358 760,358 760,363 850,363 850,370 872,370 872,392 850,392 850,395 777,395 777,391 761,391 761,390 651,390 651,380 522,380 522,382 532,382 532,388 478,388 478,394 465,394 465,387 430,387 430,386 312,386 312,394 302,394 302,392 146,392 146,391 135,391"/> + <Word id="w1883" language="German" readingDirection="left-to-right"> + <Coords points="135,356 147,356 147,358 221,358 221,366 271,366 271,386 236,386 236,387 221,387 221,392 146,392 146,391 135,391"/> + <Glyph id="c1885"> + <Coords points="135,356 147,356 147,391 135,391"/> + <TextEquiv conf="0.87327"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c1887"> + <Coords points="146,364 161,364 161,392 146,392"/> + <TextEquiv conf="0.84382"> + <Unicode>p</Unicode></TextEquiv></Glyph> + <Glyph id="c1889"> + <Coords points="165,366 177,366 177,387 165,387"/> + <TextEquiv conf="0.78667"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1891"> + <Coords points="180,365 192,365 192,386 180,386"/> + <TextEquiv conf="0.89583"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1893"> + <Coords points="197,358 221,358 221,392 197,392"/> + <TextEquiv conf="0.82985"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1895"> + <Coords points="225,367 236,367 236,387 225,387"/> + <TextEquiv conf="0.74928"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1897"> + <Coords points="240,367 256,367 256,386 240,386"/> + <TextEquiv conf="0.76381"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1899"> + <Coords points="259,366 271,366 271,386 259,386"/> + <TextEquiv conf="0.90333"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74928"> + <Unicode>ſproene</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1901" language="German" readingDirection="left-to-right"> + <Coords points="302,366 333,366 333,386 312,386 312,394 302,394"/> + <Glyph id="c1903"> + <Coords points="302,366 312,366 312,394 302,394"/> + <TextEquiv conf="0.77930"> + <Unicode>z</Unicode></TextEquiv></Glyph> + <Glyph id="c1905"> + <Coords points="316,366 333,366 333,386 316,386"/> + <TextEquiv conf="0.88518"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.77930"> + <Unicode>zu</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1907" language="German" readingDirection="left-to-right"> + <Coords points="363,357 397,357 397,359 438,359 438,360 478,360 478,367 489,367 489,368 522,368 522,382 532,382 532,388 478,388 478,394 465,394 465,387 430,387 430,386 363,386"/> + <Glyph id="c1909"> + <Coords points="363,357 379,357 379,386 363,386"/> + <TextEquiv conf="0.74149"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1911"> + <Coords points="384,357 397,357 397,386 384,386"/> + <TextEquiv conf="0.81591"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c1913"> + <Coords points="401,364 412,364 412,385 401,385"/> + <TextEquiv conf="0.79031"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1915"> + <Coords points="415,365 426,365 426,385 415,385"/> + <TextEquiv conf="0.73056"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1917"> + <Coords points="430,359 438,359 438,387 430,387"/> + <TextEquiv conf="0.90756"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1919"> + <Coords points="441,360 446,360 446,387 441,387"/> + <TextEquiv conf="0.77904"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1921"> + <Coords points="451,366 461,366 461,387 451,387"/> + <TextEquiv conf="0.80085"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1923"> + <Coords points="465,360 478,360 478,394 465,394"/> + <TextEquiv conf="0.69815"> + <Unicode>f</Unicode></TextEquiv></Glyph> + <Glyph id="c1925"> + <Coords points="476,367 489,367 489,387 476,387"/> + <TextEquiv conf="0.74520"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1974"> + <Coords points="493,368 502,368 502,387 493,387"/> + <TextEquiv> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1976"> + <Coords points="507,368 522,368 522,387 507,387"/> + <TextEquiv> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1977"> + <Coords points="527,382 532,382 532,388 527,388"/> + <TextEquiv> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69815"> + <Unicode>berliefern.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1929" language="German" readingDirection="left-to-right"> + <Coords points="561,375 610,375 610,380 561,380"/> + <Glyph id="c1931"> + <Coords points="561,375 610,375 610,380 561,380"/> + <TextEquiv conf="0.79675"> + <Unicode>—</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.77520"> + <Unicode>—</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1935" language="German" readingDirection="left-to-right"> + <Coords points="651,358 677,358 677,361 689,361 689,367 710,367 710,388 677,388 677,390 651,390"/> + <Glyph id="c1937"> + <Coords points="651,358 677,358 677,390 651,390"/> + <TextEquiv conf="0.80549"> + <Unicode>E</Unicode></TextEquiv></Glyph> + <Glyph id="c1939"> + <Coords points="682,361 689,361 689,388 682,388"/> + <TextEquiv conf="0.74066"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1941"> + <Coords points="692,367 710,367 710,388 692,388"/> + <TextEquiv conf="0.86004"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74066"> + <Unicode>Ein</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1943" language="German" readingDirection="left-to-right"> + <Coords points="732,358 760,358 760,363 850,363 850,370 872,370 872,392 850,392 850,395 777,395 777,391 761,391 761,389 732,389"/> + <Glyph id="c1945"> + <Coords points="732,358 760,358 760,389 732,389"/> + <TextEquiv conf="0.83324"> + <Unicode>E</Unicode></TextEquiv></Glyph> + <Glyph id="c1947"> + <Coords points="761,369 775,369 775,391 761,391"/> + <TextEquiv conf="0.64602"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1949"> + <Coords points="777,369 793,369 793,395 777,395"/> + <TextEquiv conf="0.91447"> + <Unicode>p</Unicode></TextEquiv></Glyph> + <Glyph id="c1953"> + <Coords points="824,363 850,363 850,395 824,395"/> + <TextEquiv conf="0.86339"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1955"> + <Coords points="845,371 855,371 855,391 845,391"/> + <TextEquiv conf="0.82644"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1957"> + <Coords points="858,370 872,370 872,392 858,392"/> + <TextEquiv conf="0.83229"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1978"> + <Coords points="793,364 808,364 808,389 793,389"/> + <TextEquiv> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1979"> + <Coords points="811,368 822,368 822,388 811,388"/> + <TextEquiv> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.64602"> + <Unicode>Erpreer</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>ſproene zu berliefern. — Ein Erpreer</Unicode></TextEquiv></TextLine> + <TextLine id="l10"> + <Coords points="319,407 403,407 403,408 449,408 449,409 482,409 482,410 508,410 508,416 521,416 521,417 638,417 638,409 666,409 666,412 791,412 791,409 820,409 820,412 831,412 831,417 871,417 871,440 820,440 820,446 791,446 791,439 666,439 666,446 651,446 651,439 538,439 538,444 447,444 447,443 333,443 333,445 319,445 319,435 211,435 211,436 135,436 135,413 198,413 198,410 306,410 306,409 319,409"/> + <Word id="w2" language="German" readingDirection="left-to-right"> + <Coords points="198,410 211,410 211,415 227,415 227,435 211,435 211,436 135,436 135,413 198,413"/> + <Glyph id="c3"> + <Coords points="135,413 160,413 160,436 135,436"/> + <TextEquiv conf="0.83926"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c6"> + <Coords points="198,410 211,410 211,436 198,436"/> + <TextEquiv conf="0.74741"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c7"> + <Coords points="214,415 227,415 227,435 214,435"/> + <TextEquiv conf="0.78431"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1980"> + <Coords points="164,415 178,415 178,436 164,436"/> + <TextEquiv> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c1981"> + <Coords points="182,415 193,415 193,435 182,435"/> + <TextEquiv> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69343"> + <Unicode>wurde</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w8" language="German" readingDirection="left-to-right"> + <Coords points="247,415 283,415 283,435 247,435"/> + <Glyph id="c9"> + <Coords points="247,415 263,415 263,435 247,435"/> + <TextEquiv conf="0.75804"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c10"> + <Coords points="267,415 283,415 283,435 267,435"/> + <TextEquiv conf="0.88661"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75804"> + <Unicode>an</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w11" language="German" readingDirection="left-to-right"> + <Coords points="319,407 333,407 333,413 354,413 354,434 333,434 333,445 319,445 319,435 306,435 306,409 319,409"/> + <Glyph id="c12"> + <Coords points="306,409 315,409 315,435 306,435"/> + <TextEquiv conf="0.75017"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c13"> + <Coords points="319,407 333,407 333,445 319,445"/> + <TextEquiv conf="0.80132"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c14"> + <Coords points="337,413 354,413 354,434 337,434"/> + <TextEquiv conf="0.81077"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75017"> + <Unicode>ihn</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w15" language="German" readingDirection="left-to-right"> + <Coords points="390,407 403,407 403,408 449,408 449,409 482,409 482,410 508,410 508,416 521,416 521,431 538,431 538,444 447,444 447,443 406,443 406,436 390,436 390,435 371,435 371,415 390,415"/> + <Glyph id="c16"> + <Coords points="371,415 385,415 385,435 371,435"/> + <TextEquiv conf="0.81903"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c17"> + <Coords points="390,407 403,407 403,436 390,436"/> + <TextEquiv conf="0.81509"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c18"> + <Coords points="406,416 420,416 420,443 406,443"/> + <TextEquiv conf="0.75122"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c19"> + <Coords points="423,415 434,415 434,436 423,436"/> + <TextEquiv conf="0.74691"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c20"> + <Coords points="437,408 449,408 449,443 437,443"/> + <TextEquiv conf="0.73492"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c21"> + <Coords points="447,409 471,409 471,444 447,444"/> + <TextEquiv conf="0.80440"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c22"> + <Coords points="475,409 482,409 482,437 475,437"/> + <TextEquiv conf="0.71763"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c23"> + <Coords points="495,410 508,410 508,438 486,438 486,416 495,416"/> + <TextEquiv conf="0.85116"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c25"> + <Coords points="511,416 521,416 521,439 511,439"/> + <TextEquiv conf="0.81059"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c26"> + <Coords points="530,431 538,431 538,444 530,444"/> + <TextEquiv conf="0.88635"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.71763"> + <Unicode>abgeſit,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w27" language="German" readingDirection="left-to-right"> + <Coords points="587,417 614,417 614,438 584,438 584,439 566,439 566,418 587,418"/> + <Glyph id="c28"> + <Coords points="566,418 584,418 584,439 566,439"/> + <TextEquiv conf="0.85187"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c29"> + <Coords points="587,417 614,417 614,438 587,438"/> + <TextEquiv conf="0.85970"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.85187"> + <Unicode>um</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w30" language="German" readingDirection="left-to-right"> + <Coords points="638,409 666,409 666,417 687,417 687,439 666,439 666,446 651,446 651,437 638,437"/> + <Glyph id="c31"> + <Coords points="638,409 647,409 647,437 638,437"/> + <TextEquiv conf="0.76901"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c32"> + <Coords points="651,409 666,409 666,446 651,446"/> + <TextEquiv conf="0.72665"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c33"> + <Coords points="671,417 687,417 687,439 671,439"/> + <TextEquiv conf="0.80526"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72665"> + <Unicode>ihn</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w34" language="German" readingDirection="left-to-right"> + <Coords points="764,412 778,412 778,439 764,439 764,438 714,438 714,417 764,417"/> + <Glyph id="c35"> + <Coords points="714,417 730,417 730,438 714,438"/> + <TextEquiv conf="0.80072"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c36"> + <Coords points="735,417 760,417 760,438 735,438"/> + <TextEquiv conf="0.82963"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c37"> + <Coords points="764,412 778,412 778,439 764,439"/> + <TextEquiv conf="0.69324"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69324"> + <Unicode>ums</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w38" language="German" readingDirection="left-to-right"> + <Coords points="791,409 820,409 820,412 831,412 831,417 871,417 871,440 820,440 820,446 791,446"/> + <Glyph id="c39"> + <Coords points="791,409 820,409 820,446 791,446"/> + <TextEquiv conf="0.76995"> + <Unicode>H</Unicode></TextEquiv></Glyph> + <Glyph id="c40"> + <Coords points="824,412 831,412 831,439 824,439"/> + <TextEquiv conf="0.79272"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c41"> + <Coords points="835,417 863,417 863,440 835,440"/> + <TextEquiv conf="0.86622"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c42"> + <Coords points="860,417 871,417 871,440 860,440"/> + <TextEquiv conf="0.69070"> + <Unicode>⸗</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69070"> + <Unicode>Him⸗</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>wurde an ihn abgeſit, um ihn ums Him⸗</Unicode></TextEquiv></TextLine> + <TextLine id="l11"> + <Coords points="245,456 263,456 263,463 367,463 367,457 379,457 379,464 492,464 492,462 528,462 528,460 822,460 822,467 871,467 871,489 822,489 822,494 736,494 736,489 675,489 675,487 542,487 542,494 528,494 528,493 453,493 453,492 367,492 367,491 319,491 319,485 135,485 135,464 180,464 180,460 235,460 235,458 245,458"/> + <Word id="w44" language="German" readingDirection="left-to-right"> + <Coords points="245,456 263,456 263,463 296,463 296,485 135,485 135,464 180,464 180,460 235,460 235,458 245,458"/> + <Glyph id="c46"> + <Coords points="135,464 162,464 162,485 135,485"/> + <TextEquiv conf="0.85319"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c48"> + <Coords points="167,465 177,465 177,485 167,485"/> + <TextEquiv conf="0.78682"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c50"> + <Coords points="180,460 186,460 186,485 180,485"/> + <TextEquiv conf="0.78644"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c52"> + <Coords points="189,460 202,460 202,484 189,484"/> + <TextEquiv conf="0.75733"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <Glyph id="c54"> + <Coords points="207,463 230,463 230,484 207,484"/> + <TextEquiv conf="0.78771"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c8"> + <Coords points="235,458 241,458 241,483 235,483"/> + <TextEquiv conf="0.81867"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c57"> + <Coords points="245,456 263,456 263,483 245,483"/> + <TextEquiv conf="0.78037"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c59"> + <Coords points="265,463 276,463 276,482 265,482"/> + <TextEquiv conf="0.83574"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c11"> + <Coords points="278,463 296,463 296,485 278,485"/> + <TextEquiv conf="0.76827"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75733"> + <Unicode>melswien</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w12" language="German" readingDirection="left-to-right"> + <Coords points="333,463 349,463 349,484 329,484 329,491 319,491 319,464 333,464"/> + <Glyph id="c62"> + <Coords points="319,464 329,464 329,491 319,491"/> + <TextEquiv conf="0.80147"> + <Unicode>z</Unicode></TextEquiv></Glyph> + <Glyph id="c64"> + <Coords points="333,463 349,463 349,484 333,484"/> + <TextEquiv conf="0.89003"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.80147"> + <Unicode>zu</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w66" language="German" readingDirection="left-to-right"> + <Coords points="367,457 379,457 379,464 409,464 409,465 424,465 424,466 443,466 443,480 462,480 462,493 453,493 453,492 367,492"/> + <Glyph id="c68"> + <Coords points="367,457 379,457 379,492 367,492"/> + <TextEquiv conf="0.69068"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c70"> + <Coords points="377,465 393,465 393,485 377,485"/> + <TextEquiv conf="0.80786"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c72"> + <Coords points="393,464 409,464 409,492 393,492"/> + <TextEquiv conf="0.76161"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c74"> + <Coords points="413,465 424,465 424,486 413,486"/> + <TextEquiv conf="0.70436"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c76"> + <Coords points="428,466 443,466 443,487 428,487"/> + <TextEquiv conf="0.79354"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c78"> + <Coords points="453,480 462,480 462,493 453,493"/> + <TextEquiv conf="0.93265"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69068"> + <Unicode>ſagen,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w22" language="German" readingDirection="left-to-right"> + <Coords points="528,460 542,460 542,494 528,494 528,488 492,488 492,462 528,462"/> + <Glyph id="c80"> + <Coords points="492,462 505,462 505,488 492,488"/> + <TextEquiv conf="0.78044"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c82"> + <Coords points="509,468 523,468 523,488 509,488"/> + <TextEquiv conf="0.63475"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c84"> + <Coords points="528,460 542,460 542,494 528,494"/> + <TextEquiv conf="0.81577"> + <Unicode>ß</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.63475"> + <Unicode>daß</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w26" language="German" readingDirection="left-to-right"> + <Coords points="564,466 575,466 575,467 590,467 590,487 564,487"/> + <Glyph id="c27"> + <Coords points="564,466 575,466 575,487 564,487"/> + <TextEquiv conf="0.81638"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c87"> + <Coords points="578,467 590,467 590,487 578,487"/> + <TextEquiv conf="0.83546"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.81638"> + <Unicode>er</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w29" language="German" readingDirection="left-to-right"> + <Coords points="608,460 622,460 622,462 658,462 658,487 608,487"/> + <Glyph id="c30"> + <Coords points="608,460 622,460 622,487 608,487"/> + <TextEquiv conf="0.85168"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c90"> + <Coords points="626,466 641,466 641,487 626,487"/> + <TextEquiv conf="0.62393"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c92"> + <Coords points="645,462 658,462 658,487 645,487"/> + <TextEquiv conf="0.76629"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.62393"> + <Unicode>das</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w33" language="German" readingDirection="left-to-right"> + <Coords points="675,460 822,460 822,467 871,467 871,489 822,489 822,494 736,494 736,489 675,489"/> + <Glyph id="c34"> + <Coords points="675,460 703,460 703,489 675,489"/> + <TextEquiv conf="0.69798"> + <Unicode>V</Unicode></TextEquiv></Glyph> + <Glyph id="c95"> + <Coords points="706,466 718,466 718,487 706,487"/> + <TextEquiv conf="0.76922"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c97"> + <Coords points="721,468 732,468 732,487 721,487"/> + <TextEquiv conf="0.82046"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c99"> + <Coords points="736,460 746,460 746,494 736,494"/> + <TextEquiv conf="0.71052"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c38"> + <Coords points="744,468 760,468 760,494 744,494"/> + <TextEquiv conf="0.85039"> + <Unicode>p</Unicode></TextEquiv></Glyph> + <Glyph id="c102"> + <Coords points="764,468 777,468 777,489 764,489"/> + <TextEquiv conf="0.78193"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c104"> + <Coords points="780,468 792,468 792,488 780,488"/> + <TextEquiv conf="0.89800"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c106"> + <Coords points="796,460 822,460 822,494 796,494"/> + <TextEquiv conf="0.82949"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c108"> + <Coords points="823,467 835,467 835,489 823,489"/> + <TextEquiv conf="0.78273"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c43"> + <Coords points="838,467 854,467 854,489 838,489"/> + <TextEquiv conf="0.80730"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c44"> + <Coords points="858,467 871,467 871,489 858,489"/> + <TextEquiv conf="0.82663"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69798"> + <Unicode>Verſproene</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>melswien zu ſagen, daß er das Verſproene</Unicode></TextEquiv></TextLine> + <TextLine id="l12"> + <Coords points="189,505 328,505 328,506 415,506 415,508 553,508 553,507 567,507 567,510 593,510 593,515 723,515 723,509 738,509 738,507 764,507 764,511 854,511 854,517 869,517 869,540 802,540 802,543 738,543 738,538 631,538 631,543 617,543 617,538 487,538 487,537 363,537 363,540 350,540 350,535 213,535 213,538 150,538 150,541 133,541 133,513 154,513 154,507 189,507"/> + <Word id="w112" language="German" readingDirection="left-to-right"> + <Coords points="189,505 213,505 213,538 150,538 150,541 133,541 133,513 154,513 154,507 189,507"/> + <Glyph id="c114"> + <Coords points="133,513 150,513 150,541 133,541"/> + <TextEquiv conf="0.77811"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c116"> + <Coords points="154,507 161,507 161,535 154,535"/> + <TextEquiv conf="0.90902"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c118"> + <Coords points="164,514 175,514 175,535 164,535"/> + <TextEquiv conf="0.86294"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c120"> + <Coords points="178,508 185,508 185,535 178,535"/> + <TextEquiv conf="0.87351"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c122"> + <Coords points="189,505 213,505 213,538 189,538"/> + <TextEquiv conf="0.84207"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.77811"> + <Unicode>glei</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w124" language="German" readingDirection="left-to-right"> + <Coords points="238,507 251,507 251,512 286,512 286,531 265,531 265,532 251,532 251,533 238,533"/> + <Glyph id="c126"> + <Coords points="238,507 251,507 251,533 238,533"/> + <TextEquiv conf="0.82464"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c128"> + <Coords points="256,513 265,513 265,532 256,532"/> + <TextEquiv conf="0.74946"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c130"> + <Coords points="269,512 286,512 286,531 269,531"/> + <TextEquiv conf="0.75693"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74946"> + <Unicode>den</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w132" language="German" readingDirection="left-to-right"> + <Coords points="301,505 328,505 328,506 415,506 415,508 463,508 463,537 363,537 363,540 350,540 350,535 301,535"/> + <Glyph id="c134"> + <Coords points="301,505 328,505 328,535 301,535"/> + <TextEquiv conf="0.74360"> + <Unicode>A</Unicode></TextEquiv></Glyph> + <Glyph id="c136"> + <Coords points="330,512 347,512 347,533 330,533"/> + <TextEquiv conf="0.86690"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c15"> + <Coords points="350,513 363,513 363,540 350,540"/> + <TextEquiv conf="0.83730"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c139"> + <Coords points="367,514 378,514 378,535 367,535"/> + <TextEquiv conf="0.78025"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c141"> + <Coords points="382,515 397,515 397,536 382,536"/> + <TextEquiv conf="0.85364"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c143"> + <Coords points="402,506 415,506 415,536 402,536"/> + <TextEquiv conf="0.82963"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c145"> + <Coords points="418,508 426,508 426,537 418,537"/> + <TextEquiv conf="0.76089"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c147"> + <Coords points="430,509 436,509 436,536 430,536"/> + <TextEquiv conf="0.75730"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c149"> + <Coords points="440,508 463,508 463,537 440,537"/> + <TextEquiv conf="0.75571"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74360"> + <Unicode>Augenbli</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w151" language="German" readingDirection="left-to-right"> + <Coords points="553,507 567,507 567,510 593,510 593,515 645,515 645,517 665,517 665,537 631,537 631,543 617,543 617,538 487,538 487,508 553,508"/> + <Glyph id="c153"> + <Coords points="487,508 503,508 503,538 487,538"/> + <TextEquiv conf="0.75665"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c155"> + <Coords points="507,508 520,508 520,538 507,538"/> + <TextEquiv conf="0.85321"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c157"> + <Coords points="524,517 536,517 536,537 524,537"/> + <TextEquiv conf="0.81267"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c159"> + <Coords points="538,516 551,516 551,537 538,537"/> + <TextEquiv conf="0.86010"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c161"> + <Coords points="553,507 567,507 567,537 553,537"/> + <TextEquiv conf="0.85329"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c163"> + <Coords points="571,516 583,516 583,537 571,537"/> + <TextEquiv conf="0.79465"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c165"> + <Coords points="586,510 593,510 593,537 586,537"/> + <TextEquiv conf="0.70828"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c167"> + <Coords points="597,516 613,516 613,537 597,537"/> + <TextEquiv conf="0.89573"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c169"> + <Coords points="617,516 631,516 631,543 617,543"/> + <TextEquiv conf="0.83986"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c171"> + <Coords points="634,515 645,515 645,536 634,536"/> + <TextEquiv conf="0.71743"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c173"> + <Coords points="650,517 665,517 665,537 650,537"/> + <TextEquiv conf="0.75062"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.70828"> + <Unicode>berbringen</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w175" language="German" readingDirection="left-to-right"> + <Coords points="738,507 764,507 764,515 777,515 777,517 792,517 792,531 802,531 802,543 738,543 738,538 693,538 693,517 723,517 723,509 738,509"/> + <Glyph id="c177"> + <Coords points="693,517 718,517 718,538 693,538"/> + <TextEquiv conf="0.83211"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c179"> + <Coords points="723,509 736,509 736,537 723,537"/> + <TextEquiv conf="0.74706"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c181"> + <Coords points="738,507 764,507 764,543 738,543"/> + <TextEquiv conf="0.75061"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c183"> + <Coords points="768,515 777,515 777,539 768,539"/> + <TextEquiv conf="0.86418"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c185"> + <Coords points="781,517 792,517 792,537 781,537"/> + <TextEquiv conf="0.81924"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c187"> + <Coords points="794,531 802,531 802,543 794,543"/> + <TextEquiv conf="0.96890"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74706"> + <Unicode>mte,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w41" language="German" readingDirection="left-to-right"> + <Coords points="847,511 854,511 854,517 869,517 869,540 858,540 858,539 829,539 829,512 847,512"/> + <Glyph id="c189"> + <Coords points="829,512 844,512 844,539 829,539"/> + <TextEquiv conf="0.88091"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c191"> + <Coords points="847,511 854,511 854,539 847,539"/> + <TextEquiv conf="0.81469"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c193"> + <Coords points="858,517 869,517 869,540 858,540"/> + <TextEquiv conf="0.84284"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.81469"> + <Unicode>die</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>glei den Augenbli berbringen mte, die</Unicode></TextEquiv></TextLine> + <TextLine id="l13"> + <Coords points="325,551 340,551 340,558 455,558 455,555 470,555 470,558 664,558 664,557 692,557 692,562 808,562 808,560 830,560 830,567 858,567 858,581 869,581 869,597 859,597 859,595 692,595 692,597 677,597 677,594 548,594 548,595 451,595 451,597 435,597 435,587 384,587 384,586 363,586 363,583 155,583 155,590 131,590 131,554 224,554 224,553 325,553"/> + <Word id="w195" language="German" readingDirection="left-to-right"> + <Coords points="131,554 155,554 155,561 207,561 207,582 155,582 155,590 131,590"/> + <Glyph id="c197"> + <Coords points="131,554 155,554 155,590 131,590"/> + <TextEquiv conf="0.81259"> + <Unicode>F</Unicode></TextEquiv></Glyph> + <Glyph id="c199"> + <Coords points="157,562 169,562 169,582 157,582"/> + <TextEquiv conf="0.82264"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c201"> + <Coords points="172,562 187,562 187,582 172,582"/> + <TextEquiv conf="0.81917"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c203"> + <Coords points="191,561 207,561 207,582 191,582"/> + <TextEquiv conf="0.82070"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.81259"> + <Unicode>Frau</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w7" language="German" readingDirection="left-to-right"> + <Coords points="325,551 340,551 340,558 392,558 392,565 412,565 412,586 392,586 392,587 384,587 384,586 363,586 363,583 224,583 224,553 325,553"/> + <Glyph id="c205"> + <Coords points="224,553 250,553 250,583 224,583"/> + <TextEquiv conf="0.72094"> + <Unicode>A</Unicode></TextEquiv></Glyph> + <Glyph id="c207"> + <Coords points="252,562 278,562 278,582 252,582"/> + <TextEquiv conf="0.80405"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c209"> + <Coords points="283,561 292,561 292,583 283,583"/> + <TextEquiv conf="0.81141"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c211"> + <Coords points="295,561 321,561 321,583 295,583"/> + <TextEquiv conf="0.82492"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c213"> + <Coords points="325,551 340,551 340,583 325,583"/> + <TextEquiv conf="0.78478"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c215"> + <Coords points="343,562 359,562 359,583 343,583"/> + <TextEquiv conf="0.83247"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c217"> + <Coords points="363,564 379,564 379,586 363,586"/> + <TextEquiv conf="0.86555"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c219"> + <Coords points="384,558 392,558 392,587 384,587"/> + <TextEquiv conf="0.79899"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c221"> + <Coords points="395,565 412,565 412,586 395,586"/> + <TextEquiv conf="0.86251"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72094"> + <Unicode>Amtmnnin</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w17" language="German" readingDirection="left-to-right"> + <Coords points="455,555 470,555 470,563 496,563 496,566 511,566 511,586 496,586 496,587 451,587 451,597 435,597 435,558 455,558"/> + <Glyph id="c223"> + <Coords points="435,558 451,558 451,597 435,597"/> + <TextEquiv conf="0.81524"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c225"> + <Coords points="455,555 470,555 470,587 455,587"/> + <TextEquiv conf="0.75016"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c227"> + <Coords points="474,563 484,563 484,587 474,587"/> + <TextEquiv conf="0.79488"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c229"> + <Coords points="487,563 496,563 496,587 487,587"/> + <TextEquiv conf="0.85811"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c231"> + <Coords points="499,566 511,566 511,586 499,586"/> + <TextEquiv conf="0.83136"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75016"> + <Unicode>htte</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w23" language="German" readingDirection="left-to-right"> + <Coords points="530,558 576,558 576,593 548,593 548,595 530,595"/> + <Glyph id="c233"> + <Coords points="530,558 548,558 548,595 530,595"/> + <TextEquiv conf="0.81399"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c235"> + <Coords points="550,558 576,558 576,593 550,593"/> + <TextEquiv conf="0.85105"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.81399"> + <Unicode></Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w237" language="German" readingDirection="left-to-right"> + <Coords points="638,559 651,559 651,594 638,594 638,587 599,587 599,565 638,565"/> + <Glyph id="c239"> + <Coords points="599,565 616,565 616,587 599,587"/> + <TextEquiv conf="0.86619"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c241"> + <Coords points="619,566 635,566 635,587 619,587"/> + <TextEquiv conf="0.85601"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c243"> + <Coords points="638,559 651,559 651,594 638,594"/> + <TextEquiv conf="0.90154"> + <Unicode>f</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.85601"> + <Unicode>auf</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w245" language="German" readingDirection="left-to-right"> + <Coords points="664,557 692,557 692,565 713,565 713,587 692,587 692,597 677,597 677,587 664,587"/> + <Glyph id="c247"> + <Coords points="664,557 673,557 673,587 664,587"/> + <TextEquiv conf="0.86188"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c249"> + <Coords points="677,557 692,557 692,597 677,597"/> + <TextEquiv conf="0.78219"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c251"> + <Coords points="696,565 713,565 713,587 696,587"/> + <TextEquiv conf="0.87377"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.78219"> + <Unicode>ihn</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w253" language="German" readingDirection="left-to-right"> + <Coords points="808,560 830,560 830,567 858,567 858,581 869,581 869,597 859,597 859,595 789,595 789,588 749,588 749,587 730,587 730,564 779,564 779,562 808,562"/> + <Glyph id="c255"> + <Coords points="730,564 745,564 745,587 730,587"/> + <TextEquiv conf="0.83469"> + <Unicode>v</Unicode></TextEquiv></Glyph> + <Glyph id="c257"> + <Coords points="749,566 760,566 760,588 749,588"/> + <TextEquiv conf="0.82584"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c259"> + <Coords points="763,567 775,567 775,588 763,588"/> + <TextEquiv conf="0.80972"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c261"> + <Coords points="779,562 785,562 785,588 779,588"/> + <TextEquiv conf="0.75773"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c263"> + <Coords points="789,568 805,568 805,595 789,595"/> + <TextEquiv conf="0.75762"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c265"> + <Coords points="808,560 830,560 830,594 808,594"/> + <TextEquiv conf="0.84869"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c267"> + <Coords points="827,567 838,567 838,588 827,588"/> + <TextEquiv conf="0.83288"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c269"> + <Coords points="841,567 858,567 858,588 841,588"/> + <TextEquiv conf="0.85809"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c271"> + <Coords points="859,581 869,581 869,597 859,597"/> + <TextEquiv conf="0.95823"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75762"> + <Unicode>verlaen,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>Frau Amtmnnin htte  auf ihn verlaen,</Unicode></TextEquiv></TextLine> + <TextLine id="l14"> + <Coords points="435,603 448,603 448,607 527,607 527,613 631,613 631,611 671,611 671,609 780,609 780,616 869,616 869,639 834,639 834,644 767,644 767,643 671,643 671,637 559,637 559,643 550,643 550,642 433,642 433,643 414,643 414,642 344,642 344,634 325,634 325,633 153,633 153,634 132,634 132,609 174,609 174,605 188,605 188,611 297,611 297,610 325,610 325,605 435,605"/> + <Word id="w273" language="German" readingDirection="left-to-right"> + <Coords points="174,605 188,605 188,632 153,632 153,634 132,634 132,609 174,609"/> + <Glyph id="c275"> + <Coords points="132,609 153,609 153,634 132,634"/> + <TextEquiv conf="0.69472"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c277"> + <Coords points="153,610 174,610 174,632 153,632"/> + <TextEquiv conf="0.79421"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c279"> + <Coords points="174,605 188,605 188,632 174,632"/> + <TextEquiv conf="0.85457"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69472"> + <Unicode>und</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w6" language="German" readingDirection="left-to-right"> + <Coords points="217,611 275,611 275,633 237,633 237,632 217,632"/> + <Glyph id="c281"> + <Coords points="217,611 233,611 233,632 217,632"/> + <TextEquiv conf="0.89967"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c283"> + <Coords points="237,612 253,612 253,633 237,633"/> + <TextEquiv conf="0.86568"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c285"> + <Coords points="257,611 275,611 275,633 257,633"/> + <TextEquiv conf="0.87952"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.86568"> + <Unicode>nun</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w10" language="German" readingDirection="left-to-right"> + <Coords points="325,605 341,605 341,606 358,606 358,613 370,613 370,615 385,615 385,636 358,636 358,642 344,642 344,634 325,634 325,633 297,633 297,610 325,610"/> + <Glyph id="c287"> + <Coords points="297,610 321,610 321,633 297,633"/> + <TextEquiv conf="0.88191"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c289"> + <Coords points="325,605 341,605 341,634 325,634"/> + <TextEquiv conf="0.62584"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c291"> + <Coords points="344,606 358,606 358,642 344,642"/> + <TextEquiv conf="0.81252"> + <Unicode>ß</Unicode></TextEquiv></Glyph> + <Glyph id="c293"> + <Coords points="362,613 370,613 370,636 362,636"/> + <TextEquiv conf="0.79687"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c295"> + <Coords points="374,615 385,615 385,636 374,636"/> + <TextEquiv conf="0.90548"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.62584"> + <Unicode>wßte</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w16" language="German" readingDirection="left-to-right"> + <Coords points="435,603 448,603 448,637 433,637 433,643 414,643 414,608 435,608"/> + <Glyph id="c297"> + <Coords points="414,608 433,608 433,643 414,643"/> + <TextEquiv conf="0.81184"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c299"> + <Coords points="435,603 448,603 448,637 435,637"/> + <TextEquiv conf="0.60769"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.60769"> + <Unicode>e</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w20" language="German" readingDirection="left-to-right"> + <Coords points="503,607 527,607 527,613 541,613 541,629 559,629 559,643 550,643 550,642 503,642 503,637 472,637 472,616 492,616 492,609 503,609"/> + <Glyph id="c303"> + <Coords points="472,616 489,616 489,637 472,637"/> + <TextEquiv conf="0.84956"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c305"> + <Coords points="492,609 500,609 500,637 492,637"/> + <TextEquiv conf="0.83295"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c307"> + <Coords points="503,607 527,607 527,642 503,642"/> + <TextEquiv conf="0.84246"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c309"> + <Coords points="531,613 541,613 541,636 531,636"/> + <TextEquiv conf="0.79185"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c311"> + <Coords points="550,629 559,629 559,643 550,643"/> + <TextEquiv conf="0.93453"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.79185"> + <Unicode>nit,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w313" language="German" readingDirection="left-to-right"> + <Coords points="631,611 646,611 646,636 629,636 629,637 613,637 613,636 585,636 585,613 631,613"/> + <Glyph id="c315"> + <Coords points="585,613 610,613 610,636 585,636"/> + <TextEquiv conf="0.86913"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c317"> + <Coords points="613,616 629,616 629,637 613,637"/> + <TextEquiv conf="0.89154"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c319"> + <Coords points="631,611 646,611 646,636 631,636"/> + <TextEquiv conf="0.77958"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.77958"> + <Unicode>was</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w321" language="German" readingDirection="left-to-right"> + <Coords points="671,609 688,609 688,615 702,615 702,637 688,637 688,643 671,643"/> + <Glyph id="c323"> + <Coords points="671,609 688,609 688,643 671,643"/> + <TextEquiv conf="0.79448"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c325"> + <Coords points="691,615 702,615 702,637 691,637"/> + <TextEquiv conf="0.91057"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.79448"> + <Unicode>e</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w327" language="German" readingDirection="left-to-right"> + <Coords points="767,609 780,609 780,616 869,616 869,639 834,639 834,644 767,644 767,637 747,637 747,636 727,636 727,615 767,615"/> + <Glyph id="c329"> + <Coords points="727,615 744,615 744,636 727,636"/> + <TextEquiv conf="0.86330"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c331"> + <Coords points="747,616 764,616 764,637 747,637"/> + <TextEquiv conf="0.81493"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c333"> + <Coords points="767,609 780,609 780,644 767,644"/> + <TextEquiv conf="0.83340"> + <Unicode>f</Unicode></TextEquiv></Glyph> + <Glyph id="c335"> + <Coords points="780,617 797,617 797,638 780,638"/> + <TextEquiv conf="0.80822"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c337"> + <Coords points="800,617 817,617 817,638 800,638"/> + <TextEquiv conf="0.63127"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c341"> + <Coords points="819,617 834,617 834,644 819,644"/> + <TextEquiv conf="0.83403"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c343"> + <Coords points="837,617 849,617 849,638 837,638"/> + <TextEquiv conf="0.83633"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c345"> + <Coords points="852,616 869,616 869,639 852,639"/> + <TextEquiv conf="0.86528"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.63127"> + <Unicode>anfangen</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>und nun wßte e nit, was e anfangen</Unicode></TextEquiv></TextLine> + <TextLine id="l15"> + <Coords points="132,653 145,653 145,654 177,654 177,659 188,659 188,662 290,662 290,655 323,655 323,657 489,657 489,656 503,656 503,657 594,657 594,658 625,658 625,663 737,663 737,657 750,657 750,666 822,666 822,667 858,667 858,679 868,679 868,693 859,693 859,688 827,688 827,687 594,687 594,692 580,692 580,686 451,686 451,691 437,691 437,685 387,685 387,683 214,683 214,686 145,686 145,689 132,689"/> + <Word id="w347" language="German" readingDirection="left-to-right"> + <Coords points="132,653 145,653 145,654 177,654 177,659 188,659 188,662 203,662 203,678 214,678 214,686 145,686 145,689 132,689"/> + <Glyph id="c349"> + <Coords points="132,653 145,653 145,689 132,689"/> + <TextEquiv conf="0.90107"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c351"> + <Coords points="143,662 156,662 156,683 143,683"/> + <TextEquiv conf="0.83153"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c353"> + <Coords points="160,654 177,654 177,684 160,684"/> + <TextEquiv conf="0.83913"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c355"> + <Coords points="180,659 188,659 188,683 180,683"/> + <TextEquiv conf="0.82032"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c357"> + <Coords points="192,662 203,662 203,683 192,683"/> + <TextEquiv conf="0.81250"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c359"> + <Coords points="206,678 214,678 214,686 206,686"/> + <TextEquiv conf="0.83006"> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.44962"> + <Unicode>ſote.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w363" language="German" readingDirection="left-to-right"> + <Coords points="290,655 323,655 323,662 337,662 337,663 358,663 358,683 290,683"/> + <Glyph id="c365"> + <Coords points="290,655 323,655 323,683 290,683"/> + <TextEquiv conf="0.77633"> + <Unicode>D</Unicode></TextEquiv></Glyph> + <Glyph id="c367"> + <Coords points="327,662 337,662 337,682 327,682"/> + <TextEquiv conf="0.75732"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c369"> + <Coords points="340,663 358,663 358,683 340,683"/> + <TextEquiv conf="0.83778"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75732"> + <Unicode>Den</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w14" language="German" readingDirection="left-to-right"> + <Coords points="489,656 503,656 503,657 551,657 551,685 514,685 514,686 451,686 451,691 437,691 437,685 387,685 387,657 489,657"/> + <Glyph id="c371"> + <Coords points="387,657 414,657 414,685 387,685"/> + <TextEquiv conf="0.76383"> + <Unicode>A</Unicode></TextEquiv></Glyph> + <Glyph id="c373"> + <Coords points="417,665 432,665 432,684 417,684"/> + <TextEquiv conf="0.82903"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c375"> + <Coords points="437,665 451,665 451,691 437,691"/> + <TextEquiv conf="0.79390"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c377"> + <Coords points="455,664 465,664 465,684 455,684"/> + <TextEquiv conf="0.87798"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c379"> + <Coords points="469,665 485,665 485,685 469,685"/> + <TextEquiv conf="0.80330"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c381"> + <Coords points="489,656 503,656 503,684 489,684"/> + <TextEquiv conf="0.88135"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c383"> + <Coords points="506,658 514,658 514,686 506,686"/> + <TextEquiv conf="0.90900"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c385"> + <Coords points="516,658 524,658 524,685 516,685"/> + <TextEquiv conf="0.81731"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c387"> + <Coords points="537,657 551,657 551,685 528,685 528,664 537,664"/> + <TextEquiv conf="0.87359"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74983"> + <Unicode>Augenbli</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w25" language="German" readingDirection="left-to-right"> + <Coords points="580,657 594,657 594,658 625,658 625,663 636,663 636,665 651,665 651,685 625,685 625,686 594,686 594,692 580,692"/> + <Glyph id="c393"> + <Coords points="580,657 594,657 594,692 580,692"/> + <TextEquiv conf="0.89818"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c395"> + <Coords points="591,666 603,666 603,685 591,685"/> + <TextEquiv conf="0.87966"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c397"> + <Coords points="608,658 625,658 625,686 608,686"/> + <TextEquiv conf="0.89074"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c399"> + <Coords points="627,663 636,663 636,685 627,685"/> + <TextEquiv conf="0.82771"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c401"> + <Coords points="639,665 651,665 651,685 639,685"/> + <TextEquiv conf="0.82185"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.70672"> + <Unicode>ſote</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w32" language="German" readingDirection="left-to-right"> + <Coords points="682,665 709,665 709,686 692,686 692,687 682,687"/> + <Glyph id="c403"> + <Coords points="682,665 692,665 692,687 682,687"/> + <TextEquiv conf="0.85040"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c405"> + <Coords points="696,665 709,665 709,686 696,686"/> + <TextEquiv conf="0.87954"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.85040"> + <Unicode>er</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w35" language="German" readingDirection="left-to-right"> + <Coords points="737,657 750,657 750,666 822,666 822,667 858,667 858,679 868,679 868,693 859,693 859,688 827,688 827,687 769,687 769,686 752,686 752,685 737,685"/> + <Glyph id="c407"> + <Coords points="737,657 750,657 750,685 737,685"/> + <TextEquiv conf="0.79499"> + <Unicode>k</Unicode></TextEquiv></Glyph> + <Glyph id="c409"> + <Coords points="752,669 765,669 765,686 752,686"/> + <TextEquiv conf="0.75371"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c411"> + <Coords points="769,666 794,666 794,687 769,687"/> + <TextEquiv conf="0.89726"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c413"> + <Coords points="798,666 822,666 822,687 798,687"/> + <TextEquiv conf="0.86998"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c415"> + <Coords points="827,667 838,667 838,688 827,688"/> + <TextEquiv conf="0.76112"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c417"> + <Coords points="841,667 858,667 858,688 841,688"/> + <TextEquiv conf="0.86190"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c419"> + <Coords points="859,679 868,679 868,693 859,693"/> + <TextEquiv conf="0.75547"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75371"> + <Unicode>kommen,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>ſote. Den Augenbli ſote er kommen,</Unicode></TextEquiv></TextLine> + <TextLine id="l16"> + <Coords points="289,700 296,700 296,704 391,704 391,706 500,706 500,705 610,705 610,706 670,706 670,717 810,717 810,706 843,706 843,708 853,708 853,714 869,714 869,734 810,734 810,725 670,725 670,727 679,727 679,734 670,734 670,738 632,738 632,732 515,732 515,737 500,737 500,731 388,731 388,736 200,736 200,738 132,738 132,703 145,703 145,705 289,705"/> + <Word id="w18" language="German" readingDirection="left-to-right"> + <Coords points="375,704 391,704 391,711 405,711 405,729 391,729 391,731 388,731 388,736 375,736"/> + <Glyph id="c453"> + <Coords points="375,704 391,704 391,731 388,731 388,736 375,736"/> + <TextEquiv conf="0.71967"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c457"> + <Coords points="395,711 405,711 405,729 395,729"/> + <TextEquiv conf="0.63427"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.59618"> + <Unicode>e</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w459" language="German" readingDirection="left-to-right"> + <Coords points="430,706 437,706 437,712 458,712 458,730 430,730"/> + <Glyph id="c461"> + <Coords points="430,706 437,706 437,730 430,730"/> + <TextEquiv conf="0.90932"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c463"> + <Coords points="443,712 458,712 458,730 443,730"/> + <TextEquiv conf="0.78817"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.78817"> + <Unicode>in</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w465" language="German" readingDirection="left-to-right"> + <Coords points="500,705 515,705 515,712 561,712 561,730 545,730 545,731 515,731 515,737 500,737 500,731 488,731 488,706 500,706"/> + <Glyph id="c467"> + <Coords points="488,706 500,706 500,731 488,731"/> + <TextEquiv conf="0.75617"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c469"> + <Coords points="500,705 515,705 515,737 500,737"/> + <TextEquiv conf="0.81226"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c471"> + <Coords points="519,712 531,712 531,731 519,731"/> + <TextEquiv conf="0.82490"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c473"> + <Coords points="534,712 545,712 545,731 534,731"/> + <TextEquiv conf="0.77567"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c475"> + <Coords points="549,712 561,712 561,730 549,730"/> + <TextEquiv conf="0.81074"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75617"> + <Unicode>ihrer</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w31" language="German" readingDirection="left-to-right"> + <Coords points="584,705 610,705 610,706 670,706 670,727 679,727 679,734 670,734 670,738 632,738 632,732 584,732"/> + <Glyph id="c477"> + <Coords points="584,705 610,705 610,732 584,732"/> + <TextEquiv conf="0.75753"> + <Unicode>A</Unicode></TextEquiv></Glyph> + <Glyph id="c479"> + <Coords points="612,712 628,712 628,731 612,731"/> + <TextEquiv conf="0.85713"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c481"> + <Coords points="632,713 646,713 646,738 632,738"/> + <TextEquiv conf="0.83868"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c483"> + <Coords points="651,706 670,706 670,738 651,738"/> + <TextEquiv conf="0.83102"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c485"> + <Coords points="672,727 679,727 679,734 672,734"/> + <TextEquiv conf="0.86399"> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75753"> + <Unicode>Ang.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w37" language="German" readingDirection="left-to-right"> + <Coords points="707,717 758,717 758,725 707,725"/> + <Glyph id="c489"> + <Coords points="707,717 758,717 758,725 707,725"/> + <TextEquiv conf="0.65354"> + <Unicode>—</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.34845"> + <Unicode>—</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w493" language="German" readingDirection="left-to-right"> + <Coords points="810,706 843,706 843,708 853,708 853,714 869,714 869,734 810,734"/> + <Glyph id="c495"> + <Coords points="810,706 843,706 843,734 810,734"/> + <TextEquiv conf="0.80822"> + <Unicode>D</Unicode></TextEquiv></Glyph> + <Glyph id="c497"> + <Coords points="846,708 853,708 853,734 846,734"/> + <TextEquiv conf="0.73804"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c499"> + <Coords points="856,714 869,714 869,734 856,734"/> + <TextEquiv conf="0.90323"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.73804"> + <Unicode>Die</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1958" language="German" readingDirection="left-to-right"> + <Coords points="132,703 145,703 145,705 200,705 200,738 132,738"/> + <Glyph id="c423"> + <Coords points="132,703 145,703 145,738 132,738"/> + <TextEquiv conf="0.90635"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c425"> + <Coords points="145,712 156,712 156,732 145,732"/> + <TextEquiv conf="0.82676"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c427"> + <Coords points="161,712 177,712 177,732 161,732"/> + <TextEquiv conf="0.75355"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c429"> + <Coords points="181,705 200,705 200,738 181,738"/> + <TextEquiv conf="0.82048"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>ſon</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1959" language="German" readingDirection="left-to-right"> + <Coords points="289,700 296,700 296,710 311,710 311,711 349,711 349,736 271,736 271,735 243,735 243,731 222,731 222,708 289,708"/> + <Glyph id="c435"> + <Coords points="222,708 238,708 238,731 222,731"/> + <TextEquiv conf="0.81159"> + <Unicode>v</Unicode></TextEquiv></Glyph> + <Glyph id="c437"> + <Coords points="243,710 253,710 253,735 243,735"/> + <TextEquiv conf="0.78373"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c439"> + <Coords points="256,709 270,709 270,730 256,730"/> + <TextEquiv conf="0.66507"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c443"> + <Coords points="271,710 285,710 285,736 271,736"/> + <TextEquiv conf="0.78970"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c445"> + <Coords points="289,700 296,700 296,730 289,730"/> + <TextEquiv conf="0.74451"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c447"> + <Coords points="300,710 311,710 311,728 300,728"/> + <TextEquiv conf="0.77809"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c449"> + <Coords points="315,711 330,711 330,730 315,730"/> + <TextEquiv conf="0.75578"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c451"> + <Coords points="335,711 349,711 349,736 335,736"/> + <TextEquiv conf="0.77976"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>vergieng</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>ſon vergieng e in ihrer Ang. — Die</Unicode></TextEquiv></TextLine> + <TextLine id="l17"> + <Coords points="267,747 282,747 282,750 362,750 362,751 381,751 381,757 507,757 507,751 518,751 518,757 710,757 710,753 788,753 788,752 800,752 800,753 830,753 830,754 842,754 842,758 854,758 854,760 869,760 869,783 830,783 830,791 815,791 815,788 788,788 788,781 646,781 646,786 636,786 636,779 612,779 612,778 489,778 489,785 475,785 475,784 358,784 358,783 348,783 348,778 226,778 226,779 203,779 203,786 190,786 190,781 135,781 135,751 172,751 172,749 267,749"/> + <Word id="w501" language="German" readingDirection="left-to-right"> + <Coords points="172,749 185,749 185,752 203,752 203,758 226,758 226,779 203,779 203,786 190,786 190,781 135,781 135,751 172,751"/> + <Glyph id="c503"> + <Coords points="135,751 167,751 167,781 135,781"/> + <TextEquiv conf="0.74674"> + <Unicode>G</Unicode></TextEquiv></Glyph> + <Glyph id="c505"> + <Coords points="172,749 185,749 185,780 172,780"/> + <TextEquiv conf="0.74037"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c507"> + <Coords points="190,752 203,752 203,759 208,759 208,778 203,778 203,786 190,786"/> + <TextEquiv conf="0.72476"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c511"> + <Coords points="211,758 226,758 226,779 211,779"/> + <TextEquiv conf="0.54722"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.54722"> + <Unicode>Ge</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w513" language="German" readingDirection="left-to-right"> + <Coords points="267,747 282,747 282,756 330,756 330,775 311,775 311,777 263,777 263,778 240,778 240,757 267,757"/> + <Glyph id="c515"> + <Coords points="240,757 263,757 263,778 240,778"/> + <TextEquiv conf="0.73661"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c517"> + <Coords points="267,747 282,747 282,776 267,776"/> + <TextEquiv conf="0.69234"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c519"> + <Coords points="285,757 297,757 297,776 285,776"/> + <TextEquiv conf="0.65563"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c521"> + <Coords points="300,759 311,759 311,777 300,777"/> + <TextEquiv conf="0.56312"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c523"> + <Coords points="314,756 330,756 330,775 314,775"/> + <TextEquiv conf="0.69455"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.56312"> + <Unicode>wren</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w525" language="German" readingDirection="left-to-right"> + <Coords points="348,750 362,750 362,751 381,751 381,757 420,757 420,777 381,777 381,784 358,784 358,783 348,783"/> + <Glyph id="c527"> + <Coords points="348,750 362,750 362,783 348,783"/> + <TextEquiv conf="0.66078"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c531"> + <Coords points="358,751 381,751 381,784 358,784"/> + <TextEquiv conf="0.66802"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c539"> + <Coords points="386,758 399,758 399,777 386,777"/> + <TextEquiv conf="0.73845"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c541"> + <Coords points="404,757 420,757 420,777 404,777"/> + <TextEquiv conf="0.77675"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.62291"> + <Unicode>ſon</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w543" language="German" readingDirection="left-to-right"> + <Coords points="507,751 518,751 518,757 628,757 628,770 646,770 646,786 636,786 636,779 612,779 612,778 489,778 489,785 475,785 475,777 437,777 437,758 507,758"/> + <Glyph id="c545"> + <Coords points="437,758 452,758 452,777 437,777"/> + <TextEquiv conf="0.72155"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c547"> + <Coords points="456,758 471,758 471,777 456,777"/> + <TextEquiv conf="0.79762"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c549"> + <Coords points="475,759 489,759 489,785 475,785"/> + <TextEquiv conf="0.79532"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c551"> + <Coords points="493,758 504,758 504,777 493,777"/> + <TextEquiv conf="0.80650"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c553"> + <Coords points="507,751 518,751 518,778 507,778"/> + <TextEquiv conf="0.81130"> + <Unicode>k</Unicode></TextEquiv></Glyph> + <Glyph id="c555"> + <Coords points="521,758 534,758 534,777 521,777"/> + <TextEquiv conf="0.87234"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c557"> + <Coords points="538,757 563,757 563,778 538,778"/> + <TextEquiv conf="0.86420"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c559"> + <Coords points="567,757 593,757 593,778 567,778"/> + <TextEquiv conf="0.82836"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c561"> + <Coords points="598,757 609,757 609,778 598,778"/> + <TextEquiv conf="0.85506"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c563"> + <Coords points="612,757 628,757 628,779 612,779"/> + <TextEquiv conf="0.82750"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c565"> + <Coords points="636,770 646,770 646,786 636,786"/> + <TextEquiv conf="0.92026"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72155"> + <Unicode>angekommen,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w567" language="German" readingDirection="left-to-right"> + <Coords points="710,753 725,753 725,781 710,781 710,780 669,780 669,758 710,758"/> + <Glyph id="c569"> + <Coords points="669,758 685,758 685,780 669,780"/> + <TextEquiv conf="0.83921"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c571"> + <Coords points="690,759 705,759 705,780 690,780"/> + <TextEquiv conf="0.78570"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c573"> + <Coords points="710,753 725,753 725,781 710,781"/> + <TextEquiv conf="0.85326"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.78570"> + <Unicode>und</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w39" language="German" readingDirection="left-to-right"> + <Coords points="756,755 771,755 771,780 742,780 742,759 756,759"/> + <Glyph id="c575"> + <Coords points="742,759 754,759 754,780 742,780"/> + <TextEquiv conf="0.83292"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c577"> + <Coords points="756,755 771,755 771,780 756,780"/> + <TextEquiv conf="0.74440"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74440"> + <Unicode>es</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w42" language="German" readingDirection="left-to-right"> + <Coords points="788,752 800,752 800,753 830,753 830,754 842,754 842,758 854,758 854,760 869,760 869,783 830,783 830,791 815,791 815,788 788,788"/> + <Glyph id="c579"> + <Coords points="788,752 800,752 800,788 788,788"/> + <TextEquiv conf="0.72874"> + <Unicode>f</Unicode></TextEquiv></Glyph> + <Glyph id="c581"> + <Coords points="801,760 812,760 812,781 801,781"/> + <TextEquiv conf="0.82842"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c45"> + <Coords points="815,753 830,753 830,791 815,791"/> + <TextEquiv conf="0.76562"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c584"> + <Coords points="835,754 842,754 842,782 835,782"/> + <TextEquiv conf="0.85813"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c47"> + <Coords points="845,758 854,758 854,783 845,783"/> + <TextEquiv conf="0.70176"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c587"> + <Coords points="856,760 869,760 869,783 856,783"/> + <TextEquiv conf="0.90020"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.70176"> + <Unicode>fehlte</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>Ge wren ſon angekommen, und es fehlte</Unicode></TextEquiv></TextLine> + <TextEquiv> + <Unicode>ber die vielen Sorgen wegen deelben vergaß +Hartkopf, der Frau Amtmnnin das ver⸗ +ſproene zu berliefern. — Ein Erpreer +wurde an ihn abgeſit, um ihn ums Him⸗ +melswien zu ſagen, daß er das Verſproene +glei den Augenbli berbringen mte, die +Frau Amtmnnin htte  auf ihn verlaen, +und nun wßte e nit, was e anfangen +ſote. Den Augenbli ſote er kommen, +ſon vergieng e in ihrer Ang. — Die +Ge wren ſon angekommen, und es fehlte +ihr do no an aem. —</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></TextRegion> + <TextRegion id="r2" readingDirection="left-to-right" textLineOrder="top-to-bottom" type="paragraph" indented="true" align="justify" primaryLanguage="German"> + <Coords points="289,871 300,871 300,874 532,874 532,873 650,873 650,872 664,872 664,874 699,874 699,882 854,882 854,878 868,878 868,928 870,928 870,1006 868,1006 868,1128 869,1128 869,1166 874,1166 874,1201 810,1201 810,1202 573,1202 573,1236 496,1236 496,1246 414,1246 414,1250 389,1250 389,1245 163,1245 163,1243 131,1243 131,1221 132,1221 132,1051 130,1051 130,980 131,980 131,930 166,930 166,924 179,924 179,873 289,873"/> + <TextLine id="l18"> + <Coords points="289,871 300,871 300,874 532,874 532,873 650,873 650,872 664,872 664,874 699,874 699,882 854,882 854,878 868,878 868,907 790,907 790,911 611,911 611,910 511,910 511,908 260,908 260,910 248,910 248,909 179,909 179,873 289,873"/> + <Word id="w589" language="German" readingDirection="left-to-right"> + <Coords points="289,871 300,871 300,874 369,874 369,907 347,907 347,908 260,908 260,910 248,910 248,909 179,909 179,873 289,873"/> + <Glyph id="c591"> + <Coords points="179,873 213,873 213,909 179,909"/> + <TextEquiv conf="0.65785"> + <Unicode>H</Unicode></TextEquiv></Glyph> + <Glyph id="c593"> + <Coords points="223,880 240,880 240,900 223,900"/> + <TextEquiv conf="0.62778"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c595"> + <Coords points="248,879 260,879 260,910 248,910"/> + <TextEquiv conf="0.56137"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c599"> + <Coords points="270,877 279,877 279,900 270,900"/> + <TextEquiv conf="0.62887"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c601"> + <Coords points="289,871 300,871 300,899 289,899"/> + <TextEquiv conf="0.84237"> + <Unicode>k</Unicode></TextEquiv></Glyph> + <Glyph id="c1982"> + <Coords points="310,880 321,880 321,899 310,899"/> + <TextEquiv> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1984"> + <Coords points="357,874 369,874 369,907 357,907"/> + <TextEquiv> + <Unicode>f</Unicode></TextEquiv></Glyph> + <Glyph id="c1985"> + <Coords points="333,882 347,882 347,908 333,908"/> + <TextEquiv> + <Unicode>p</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.56137"> + <Unicode>Hartkopf</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w605" language="German" readingDirection="left-to-right"> + <Coords points="446,874 460,874 460,879 471,879 471,880 487,880 487,902 460,902 460,908 446,908 446,903 396,903 396,882 446,882"/> + <Glyph id="c607"> + <Coords points="396,882 421,882 421,903 396,903"/> + <TextEquiv conf="0.78914"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c609"> + <Coords points="426,882 441,882 441,903 426,903"/> + <TextEquiv conf="0.80258"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c611"> + <Coords points="446,874 460,874 460,908 446,908"/> + <TextEquiv conf="0.74591"> + <Unicode>ß</Unicode></TextEquiv></Glyph> + <Glyph id="c613"> + <Coords points="465,879 471,879 471,902 465,902"/> + <TextEquiv conf="0.76057"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c615"> + <Coords points="475,880 487,880 487,902 475,902"/> + <TextEquiv conf="0.80505"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74591"> + <Unicode>mußte</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w617" language="German" readingDirection="left-to-right"> + <Coords points="532,873 557,873 557,910 511,910 511,874 532,874"/> + <Glyph id="c619"> + <Coords points="511,874 529,874 529,904 526,904 526,910 511,910"/> + <TextEquiv conf="0.81212"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c623"> + <Coords points="532,873 557,873 557,910 532,910"/> + <TextEquiv conf="0.78768"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74336"> + <Unicode></Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w625" language="German" readingDirection="left-to-right"> + <Coords points="611,875 630,875 630,911 611,911 611,903 581,903 581,881 611,881"/> + <Glyph id="c627"> + <Coords points="581,881 593,881 593,903 581,903"/> + <TextEquiv conf="0.78138"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c629"> + <Coords points="596,881 608,881 608,903 596,903"/> + <TextEquiv conf="0.77291"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c631"> + <Coords points="611,875 630,875 630,911 611,911"/> + <TextEquiv conf="0.77326"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.77291"> + <Unicode>er</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w24" language="German" readingDirection="left-to-right"> + <Coords points="650,872 664,872 664,874 699,874 699,882 754,882 754,883 773,883 773,897 790,897 790,911 682,911 682,903 650,903"/> + <Glyph id="c633"> + <Coords points="650,872 664,872 664,903 650,903"/> + <TextEquiv conf="0.80696"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c635"> + <Coords points="668,883 678,883 678,903 668,903"/> + <TextEquiv conf="0.68657"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c637"> + <Coords points="682,874 699,874 699,911 682,911"/> + <TextEquiv conf="0.79151"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c639"> + <Coords points="702,882 718,882 718,904 702,904"/> + <TextEquiv conf="0.78366"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c641"> + <Coords points="723,882 737,882 737,904 723,904"/> + <TextEquiv conf="0.67989"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c643"> + <Coords points="742,882 754,882 754,904 742,904"/> + <TextEquiv conf="0.78789"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c645"> + <Coords points="757,883 773,883 773,904 757,904"/> + <TextEquiv conf="0.81248"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c647"> + <Coords points="782,897 790,897 790,911 782,911"/> + <TextEquiv conf="0.96113"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.67989"> + <Unicode>bennen,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w649" language="German" readingDirection="left-to-right"> + <Coords points="854,878 868,878 868,907 854,907 854,906 814,906 814,884 834,884 834,883 854,883"/> + <Glyph id="c651"> + <Coords points="814,884 830,884 830,906 814,906"/> + <TextEquiv conf="0.86254"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c653"> + <Coords points="834,883 850,883 850,905 834,905"/> + <TextEquiv conf="0.82806"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c655"> + <Coords points="854,878 868,878 868,907 854,907"/> + <TextEquiv conf="0.82248"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.82248"> + <Unicode>und</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>Hartkopf mußte  er bennen, und</Unicode></TextEquiv></TextLine> + <TextLine id="l19"> + <Coords points="338,1213 352,1213 352,1215 414,1215 414,1218 486,1218 486,1228 573,1228 573,1236 486,1236 486,1238 496,1238 496,1246 414,1246 414,1250 389,1250 389,1245 163,1245 163,1243 131,1243 131,1221 163,1221 163,1216 270,1216 270,1215 338,1215"/> + <Word id="w657" language="German" readingDirection="left-to-right"> + <Coords points="163,1216 169,1216 169,1220 183,1220 183,1244 169,1244 169,1245 163,1245 163,1243 131,1243 131,1221 163,1221"/> + <Glyph id="c659"> + <Coords points="131,1221 157,1221 157,1243 131,1243"/> + <TextEquiv conf="0.86845"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c661"> + <Coords points="163,1216 169,1216 169,1245 163,1245"/> + <TextEquiv conf="0.80820"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c663"> + <Coords points="173,1220 183,1220 183,1244 173,1244"/> + <TextEquiv conf="0.83267"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.80820"> + <Unicode>mit</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w665" language="German" readingDirection="left-to-right"> + <Coords points="238,1218 253,1218 253,1245 238,1245 238,1244 198,1244 198,1223 238,1223"/> + <Glyph id="c667"> + <Coords points="198,1223 214,1223 214,1244 198,1244"/> + <TextEquiv conf="0.83648"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c669"> + <Coords points="218,1223 234,1223 234,1244 218,1244"/> + <TextEquiv conf="0.88806"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c671"> + <Coords points="238,1218 253,1218 253,1245 238,1245"/> + <TextEquiv conf="0.84604"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.83648"> + <Unicode>und</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w673" language="German" readingDirection="left-to-right"> + <Coords points="338,1213 352,1213 352,1215 414,1215 414,1220 427,1220 427,1223 441,1223 441,1244 414,1244 414,1250 389,1250 389,1245 291,1245 291,1244 270,1244 270,1215 338,1215"/> + <Glyph id="c675"> + <Coords points="270,1215 287,1215 287,1244 270,1244"/> + <TextEquiv conf="0.78567"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c677"> + <Coords points="291,1216 304,1216 304,1245 291,1245"/> + <TextEquiv conf="0.76636"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c679"> + <Coords points="309,1223 319,1223 319,1245 309,1245"/> + <TextEquiv conf="0.78462"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c681"> + <Coords points="322,1223 332,1223 332,1245 322,1245"/> + <TextEquiv conf="0.87348"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c683"> + <Coords points="338,1213 352,1213 352,1242 338,1242"/> + <TextEquiv conf="0.88542"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c685"> + <Coords points="355,1223 366,1223 366,1245 355,1245"/> + <TextEquiv conf="0.78417"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c687"> + <Coords points="370,1223 386,1223 386,1244 370,1244"/> + <TextEquiv conf="0.82808"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c689"> + <Coords points="389,1215 414,1215 414,1250 389,1250"/> + <TextEquiv conf="0.86601"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c691"> + <Coords points="419,1220 427,1220 427,1244 419,1244"/> + <TextEquiv conf="0.73453"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c693"> + <Coords points="431,1223 441,1223 441,1244 431,1244"/> + <TextEquiv conf="0.77437"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.67268"> + <Unicode>berbrate</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w697" language="German" readingDirection="left-to-right"> + <Coords points="473,1218 486,1218 486,1238 496,1238 496,1246 489,1246 489,1244 458,1244 458,1222 473,1222"/> + <Glyph id="c699"> + <Coords points="458,1222 469,1222 469,1244 458,1244"/> + <TextEquiv conf="0.87254"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c701"> + <Coords points="473,1218 486,1218 486,1244 473,1244"/> + <TextEquiv conf="0.71657"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <Glyph id="c703"> + <Coords points="489,1238 496,1238 496,1246 489,1246"/> + <TextEquiv conf="0.87608"> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.71657"> + <Unicode>es.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w705" language="German" readingDirection="left-to-right"> + <Coords points="523,1228 573,1228 573,1236 523,1236"/> + <Glyph id="c707"> + <Coords points="523,1228 573,1228 573,1236 523,1236"/> + <TextEquiv conf="0.80644"> + <Unicode>—</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.80644"> + <Unicode>—</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>mit und berbrate es. —</Unicode></TextEquiv></TextLine> + <TextLine id="l20"> + <Coords points="295,921 312,921 312,924 336,924 336,931 445,931 445,924 477,924 477,925 580,925 580,924 592,924 592,926 657,926 657,928 870,928 870,966 753,966 753,961 640,961 640,953 524,953 524,957 500,957 500,952 390,952 390,958 377,958 377,954 231,954 231,955 214,955 214,952 131,952 131,930 166,930 166,924 185,924 185,923 295,923"/> + <Word id="w735" language="German" readingDirection="left-to-right"> + <Coords points="328,924 336,924 336,931 405,931 405,932 434,932 434,951 390,951 390,958 377,958 377,951 338,951 338,950 328,950"/> + <Glyph id="c737"> + <Coords points="328,924 336,924 336,950 328,950"/> + <TextEquiv conf="0.90274"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c739"> + <Coords points="338,931 353,931 353,951 338,951"/> + <TextEquiv conf="0.78566"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c741"> + <Coords points="357,931 373,931 373,950 357,950"/> + <TextEquiv conf="0.79945"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c743"> + <Coords points="377,932 390,932 390,958 377,958"/> + <TextEquiv conf="0.71285"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c745"> + <Coords points="394,931 405,931 405,950 394,950"/> + <TextEquiv conf="0.79874"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c747"> + <Coords points="410,932 434,932 434,951 410,951"/> + <TextEquiv conf="0.82520"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.71285"> + <Unicode>langem</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w749" language="German" readingDirection="left-to-right"> + <Coords points="445,924 477,924 477,925 580,925 580,924 592,924 592,933 624,933 624,953 524,953 524,957 500,957 500,952 445,952"/> + <Glyph id="c751"> + <Coords points="445,924 477,924 477,952 445,952"/> + <TextEquiv conf="0.74283"> + <Unicode>N</Unicode></TextEquiv></Glyph> + <Glyph id="c753"> + <Coords points="481,932 496,932 496,952 481,952"/> + <TextEquiv conf="0.75699"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c755"> + <Coords points="500,925 524,925 524,957 500,957"/> + <TextEquiv conf="0.75184"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c757"> + <Coords points="528,928 542,928 542,953 528,953"/> + <TextEquiv conf="0.83750"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c759"> + <Coords points="546,932 556,932 556,953 546,953"/> + <TextEquiv conf="0.80128"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c761"> + <Coords points="561,933 576,933 576,953 561,953"/> + <TextEquiv conf="0.88134"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c763"> + <Coords points="580,924 592,924 592,953 580,953"/> + <TextEquiv conf="0.71210"> + <Unicode>k</Unicode></TextEquiv></Glyph> + <Glyph id="c765"> + <Coords points="594,933 604,933 604,952 594,952"/> + <TextEquiv conf="0.74491"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c767"> + <Coords points="608,933 624,933 624,953 608,953"/> + <TextEquiv conf="0.83860"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.71210"> + <Unicode>Nadenken</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w769" language="German" readingDirection="left-to-right"> + <Coords points="640,926 657,926 657,929 683,929 683,955 652,955 652,961 640,961"/> + <Glyph id="c771"> + <Coords points="640,926 657,926 657,954 652,954 652,961 640,961"/> + <TextEquiv conf="0.80072"> + <Unicode>fi</Unicode></TextEquiv></Glyph> + <Glyph id="c775"> + <Coords points="661,933 672,933 672,952 661,952"/> + <TextEquiv conf="0.66486"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c779"> + <Coords points="675,929 683,929 683,955 675,955"/> + <TextEquiv conf="0.77660"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.66486"> + <Unicode>fiel</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w781" language="German" readingDirection="left-to-right"> + <Coords points="718,930 731,930 731,955 714,955 714,956 703,956 703,935 718,935"/> + <Glyph id="c783"> + <Coords points="703,935 714,935 714,956 703,956"/> + <TextEquiv conf="0.75188"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c785"> + <Coords points="718,930 731,930 731,955 718,955"/> + <TextEquiv conf="0.75078"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75078"> + <Unicode>es</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w787" language="German" readingDirection="left-to-right"> + <Coords points="753,928 774,928 774,935 803,935 803,957 774,957 774,966 753,966 753,958 747,958 747,929 753,929"/> + <Glyph id="c789"> + <Coords points="747,929 756,929 756,958 747,958"/> + <TextEquiv conf="0.83834"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c791"> + <Coords points="753,928 774,928 774,966 753,966"/> + <TextEquiv conf="0.60499"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c793"> + <Coords points="778,935 803,935 803,957 778,957"/> + <TextEquiv conf="0.82357"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.60499"> + <Unicode>ihm</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w45" language="German" readingDirection="left-to-right"> + <Coords points="851,928 870,928 870,966 851,966 851,957 822,957 822,935 851,935"/> + <Glyph id="c795"> + <Coords points="822,935 833,935 833,957 822,957"/> + <TextEquiv conf="0.70980"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c797"> + <Coords points="836,935 848,935 848,956 836,956"/> + <TextEquiv conf="0.66756"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c799"> + <Coords points="851,928 870,928 870,966 851,966"/> + <TextEquiv conf="0.70778"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.66756"> + <Unicode>er</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w76" language="German" readingDirection="left-to-right"> + <Coords points="185,923 201,923 201,924 231,924 231,955 214,955 214,952 131,952 131,930 166,930 166,924 185,924"/> + <Glyph id="c711"> + <Coords points="131,930 143,930 143,952 131,952"/> + <TextEquiv conf="0.83869"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c713"> + <Coords points="147,930 162,930 162,952 147,952"/> + <TextEquiv conf="0.74228"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c715"> + <Coords points="166,924 180,924 180,952 166,952"/> + <TextEquiv conf="0.83162"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c717"> + <Coords points="185,923 191,923 191,950 185,950"/> + <TextEquiv conf="0.81493"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c719"> + <Coords points="196,923 201,923 201,950 196,950"/> + <TextEquiv conf="0.76423"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c721"> + <Coords points="214,924 231,924 231,955 214,955 214,951 206,951 206,929 214,929"/> + <TextEquiv conf="0.86288"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>endli</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w77" language="German" readingDirection="left-to-right"> + <Coords points="295,921 312,921 312,954 295,954 295,948 244,948 244,929 287,929 287,928 295,928"/> + <Glyph id="c727"> + <Coords points="244,929 265,929 265,948 244,948"/> + <TextEquiv conf="0.84252"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c729"> + <Coords points="268,929 284,929 284,948 268,948"/> + <TextEquiv conf="0.75510"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c731"> + <Coords points="295,921 312,921 312,954 295,954 295,948 287,948 287,928 295,928"/> + <TextEquiv conf="0.86161"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>na</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>endli na langem Nadenken fiel es ihm er</Unicode></TextEquiv></TextLine> + <TextLine id="l21"> + <Coords points="258,971 266,971 266,977 285,977 285,984 403,984 403,971 429,971 429,973 470,973 470,978 636,978 636,974 655,974 655,977 720,977 720,980 824,980 824,986 870,986 870,1006 636,1006 636,1002 525,1002 525,1006 511,1006 511,1001 403,1001 403,989 285,989 285,993 296,993 296,1001 289,1001 289,999 166,999 166,1000 156,1000 156,1001 130,1001 130,980 160,980 160,974 258,974"/> + <Word id="w801" language="German" readingDirection="left-to-right"> + <Coords points="160,974 197,974 197,978 227,978 227,999 166,999 166,1000 156,1000 156,1001 130,1001 130,980 160,980"/> + <Glyph id="c803"> + <Coords points="130,980 156,980 156,1001 130,1001"/> + <TextEquiv conf="0.76881"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c805"> + <Coords points="160,974 166,974 166,1000 160,1000"/> + <TextEquiv conf="0.90705"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c807"> + <Coords points="170,980 180,980 180,999 170,999"/> + <TextEquiv conf="0.79531"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c809"> + <Coords points="184,974 197,974 197,999 184,999"/> + <TextEquiv conf="0.72473"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c811"> + <Coords points="201,979 212,979 212,998 201,998"/> + <TextEquiv conf="0.81594"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c813"> + <Coords points="215,978 227,978 227,999 215,999"/> + <TextEquiv conf="0.77659"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72473"> + <Unicode>wieder</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w9" language="German" readingDirection="left-to-right"> + <Coords points="258,971 266,971 266,977 285,977 285,993 296,993 296,1001 289,1001 289,998 258,998 258,997 244,997 244,978 258,978"/> + <Glyph id="c815"> + <Coords points="244,978 255,978 255,997 244,997"/> + <TextEquiv conf="0.82000"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c817"> + <Coords points="258,971 266,971 266,998 258,998"/> + <TextEquiv conf="0.73086"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c819"> + <Coords points="270,977 285,977 285,998 270,998"/> + <TextEquiv conf="0.81816"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c821"> + <Coords points="289,993 296,993 296,1001 289,1001"/> + <TextEquiv conf="0.89747"> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.73086"> + <Unicode>ein.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w823" language="German" readingDirection="left-to-right"> + <Coords points="324,984 374,984 374,989 324,989"/> + <Glyph id="c825"> + <Coords points="324,984 374,984 374,989 324,989"/> + <TextEquiv conf="0.70254"> + <Unicode>—</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.70254"> + <Unicode>—</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w829" language="German" readingDirection="left-to-right"> + <Coords points="403,971 429,971 429,980 445,980 445,1000 429,1000 429,1001 403,1001"/> + <Glyph id="c831"> + <Coords points="403,971 429,971 429,1001 403,1001"/> + <TextEquiv conf="0.75595"> + <Unicode>E</Unicode></TextEquiv></Glyph> + <Glyph id="c833"> + <Coords points="433,980 445,980 445,1000 433,1000"/> + <TextEquiv conf="0.75214"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75214"> + <Unicode>Er</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w835" language="German" readingDirection="left-to-right"> + <Coords points="463,973 470,973 470,978 538,978 538,981 552,981 552,1000 525,1000 525,1006 511,1006 511,1001 492,1001 492,1000 463,1000"/> + <Glyph id="c837"> + <Coords points="463,973 470,973 470,1000 463,1000"/> + <TextEquiv conf="0.78663"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c839"> + <Coords points="473,980 489,980 489,1000 473,1000"/> + <TextEquiv conf="0.73961"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c841"> + <Coords points="492,981 508,981 508,1001 492,1001"/> + <TextEquiv conf="0.76240"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c843"> + <Coords points="511,982 525,982 525,1006 511,1006"/> + <TextEquiv conf="0.81754"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c845"> + <Coords points="530,978 538,978 538,1000 530,1000"/> + <TextEquiv conf="0.69569"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c847"> + <Coords points="541,981 552,981 552,1000 541,1000"/> + <TextEquiv conf="0.85047"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69569"> + <Unicode>langte</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w849" language="German" readingDirection="left-to-right"> + <Coords points="570,978 583,978 583,981 597,981 597,982 616,982 616,1002 601,1002 601,1001 570,1001"/> + <Glyph id="c851"> + <Coords points="570,978 583,978 583,1001 570,1001"/> + <TextEquiv conf="0.76386"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c853"> + <Coords points="586,981 597,981 597,1001 586,1001"/> + <TextEquiv conf="0.75878"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c855"> + <Coords points="601,982 616,982 616,1002 601,1002"/> + <TextEquiv conf="0.90114"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75878"> + <Unicode>den</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w857" language="German" readingDirection="left-to-right"> + <Coords points="636,974 655,974 655,977 720,977 720,1004 655,1004 655,1006 636,1006"/> + <Glyph id="c859"> + <Coords points="636,974 655,974 655,1006 636,1006"/> + <TextEquiv conf="0.81256"> + <Unicode>Z</Unicode></TextEquiv></Glyph> + <Glyph id="c861"> + <Coords points="659,983 668,983 668,1002 659,1002"/> + <TextEquiv conf="0.76173"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c863"> + <Coords points="673,981 682,981 682,1003 673,1003"/> + <TextEquiv conf="0.79860"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c865"> + <Coords points="686,981 694,981 694,1003 686,1003"/> + <TextEquiv conf="0.75493"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c867"> + <Coords points="698,984 708,984 708,1003 698,1003"/> + <TextEquiv conf="0.72446"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c869"> + <Coords points="712,977 720,977 720,1004 712,1004"/> + <TextEquiv conf="0.75684"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72446"> + <Unicode>Zettel</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w871" language="German" readingDirection="left-to-right"> + <Coords points="774,981 788,981 788,1006 756,1006 756,1005 736,1005 736,985 774,985"/> + <Glyph id="c873"> + <Coords points="736,985 751,985 751,1005 736,1005"/> + <TextEquiv conf="0.81969"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c875"> + <Coords points="756,985 771,985 771,1006 756,1006"/> + <TextEquiv conf="0.87030"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c877"> + <Coords points="774,981 788,981 788,1006 774,1006"/> + <TextEquiv conf="0.77499"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.77499"> + <Unicode>aus</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w879" language="German" readingDirection="left-to-right"> + <Coords points="810,980 824,980 824,986 870,986 870,1006 810,1006"/> + <Glyph id="c881"> + <Coords points="810,980 824,980 824,1006 810,1006"/> + <TextEquiv conf="0.85915"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c883"> + <Coords points="828,986 838,986 838,1006 828,1006"/> + <TextEquiv conf="0.70945"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c885"> + <Coords points="842,986 870,986 870,1006 842,1006"/> + <TextEquiv conf="0.89154"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.70945"> + <Unicode>dem</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>wieder ein. — Er langte den Zettel aus dem</Unicode></TextEquiv></TextLine> + <TextLine id="l23"> + <Coords points="251,1019 276,1019 276,1021 324,1021 324,1024 521,1024 521,1021 534,1021 534,1022 617,1022 617,1024 727,1024 727,1030 853,1030 853,1028 868,1028 868,1062 782,1062 782,1060 705,1060 705,1057 521,1057 521,1056 324,1056 324,1060 308,1060 308,1054 251,1054 251,1051 130,1051 130,1021 251,1021"/> + <Word id="w893" language="German" readingDirection="left-to-right"> + <Coords points="251,1019 276,1019 276,1026 291,1026 291,1047 276,1047 276,1054 251,1054 251,1051 130,1051 130,1021 251,1021"/> + <Glyph id="c895"> + <Coords points="130,1021 157,1021 157,1051 130,1051"/> + <TextEquiv conf="0.73639"> + <Unicode>A</Unicode></TextEquiv></Glyph> + <Glyph id="c897"> + <Coords points="161,1028 171,1028 171,1050 161,1050"/> + <TextEquiv conf="0.83724"> + <Unicode>c</Unicode></TextEquiv></Glyph> + <Glyph id="c899"> + <Coords points="174,1028 184,1028 184,1049 174,1049"/> + <TextEquiv conf="0.82264"> + <Unicode>c</Unicode></TextEquiv></Glyph> + <Glyph id="c901"> + <Coords points="187,1021 194,1021 194,1048 187,1048"/> + <TextEquiv conf="0.84643"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c905"> + <Coords points="251,1019 276,1019 276,1054 251,1054"/> + <TextEquiv conf="0.84438"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c907"> + <Coords points="281,1026 291,1026 291,1047 281,1047"/> + <TextEquiv conf="0.79417"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1986"> + <Coords points="197,1024 209,1024 209,1048 197,1048"/> + <TextEquiv> + <Unicode>s</Unicode></TextEquiv></Glyph> + <Glyph id="c1988"> + <Coords points="214,1021 226,1021 226,1047 214,1047"/> + <TextEquiv> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c1989"> + <Coords points="231,1027 246,1027 246,1047 231,1047"/> + <TextEquiv> + <Unicode>u</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.73639"> + <Unicode>Accisbue</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w909" language="German" readingDirection="left-to-right"> + <Coords points="308,1021 324,1021 324,1024 409,1024 409,1042 425,1042 425,1056 324,1056 324,1060 308,1060"/> + <Glyph id="c911"> + <Coords points="308,1021 324,1021 324,1060 308,1060"/> + <TextEquiv conf="0.75512"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c913"> + <Coords points="328,1030 338,1030 338,1048 328,1048"/> + <TextEquiv conf="0.70790"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c915"> + <Coords points="341,1028 352,1028 352,1049 341,1049"/> + <TextEquiv conf="0.76785"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c917"> + <Coords points="356,1029 371,1029 371,1049 356,1049"/> + <TextEquiv conf="0.79624"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c919"> + <Coords points="376,1029 391,1029 391,1048 376,1048"/> + <TextEquiv conf="0.67382"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c921"> + <Coords points="395,1024 409,1024 409,1049 395,1049"/> + <TextEquiv conf="0.65710"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <Glyph id="c923"> + <Coords points="417,1042 425,1042 425,1056 417,1056"/> + <TextEquiv conf="0.81870"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.65710"> + <Unicode>heraus,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w925" language="German" readingDirection="left-to-right"> + <Coords points="490,1024 503,1024 503,1051 490,1051 490,1049 469,1049 469,1048 449,1048 449,1028 469,1028 469,1026 490,1026"/> + <Glyph id="c927"> + <Coords points="449,1028 465,1028 465,1048 449,1048"/> + <TextEquiv conf="0.80640"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c929"> + <Coords points="469,1026 485,1026 485,1049 469,1049"/> + <TextEquiv conf="0.80131"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c931"> + <Coords points="490,1024 503,1024 503,1051 490,1051"/> + <TextEquiv conf="0.81827"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.80131"> + <Unicode>und</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w933" language="German" readingDirection="left-to-right"> + <Coords points="521,1021 534,1021 534,1027 576,1027 576,1029 590,1029 590,1050 564,1050 564,1057 521,1057"/> + <Glyph id="c935"> + <Coords points="521,1021 534,1021 534,1057 521,1057"/> + <TextEquiv conf="0.80597"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c937"> + <Coords points="531,1029 546,1029 546,1051 531,1051"/> + <TextEquiv conf="0.71182"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c939"> + <Coords points="549,1030 564,1030 564,1057 549,1057"/> + <TextEquiv conf="0.84189"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c941"> + <Coords points="567,1027 576,1027 576,1050 567,1050"/> + <TextEquiv conf="0.86008"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c943"> + <Coords points="579,1029 590,1029 590,1050 579,1050"/> + <TextEquiv conf="0.77111"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.71182"> + <Unicode>ſagte</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w28" language="German" readingDirection="left-to-right"> + <Coords points="607,1022 617,1022 617,1024 638,1024 638,1031 657,1031 657,1032 687,1032 687,1052 617,1052 617,1057 607,1057"/> + <Glyph id="c945"> + <Coords points="607,1022 617,1022 617,1057 607,1057"/> + <TextEquiv conf="0.81559"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c947"> + <Coords points="617,1030 628,1030 628,1050 617,1050"/> + <TextEquiv conf="0.88005"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c949"> + <Coords points="633,1024 638,1024 638,1050 633,1050"/> + <TextEquiv conf="0.74814"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c951"> + <Coords points="642,1031 657,1031 657,1051 642,1051"/> + <TextEquiv conf="0.72837"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c953"> + <Coords points="663,1032 672,1032 672,1051 663,1051"/> + <TextEquiv conf="0.79147"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c955"> + <Coords points="676,1032 687,1032 687,1052 676,1052"/> + <TextEquiv conf="0.81664"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72837"> + <Unicode>ſeiner</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w957" language="German" readingDirection="left-to-right"> + <Coords points="705,1024 727,1024 727,1034 780,1034 780,1048 790,1048 790,1062 782,1062 782,1060 705,1060"/> + <Glyph id="c959"> + <Coords points="705,1024 727,1024 727,1060 705,1060"/> + <TextEquiv conf="0.79451"> + <Unicode>F</Unicode></TextEquiv></Glyph> + <Glyph id="c961"> + <Coords points="730,1034 741,1034 741,1055 730,1055"/> + <TextEquiv conf="0.73184"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c963"> + <Coords points="745,1034 760,1034 760,1055 745,1055"/> + <TextEquiv conf="0.69758"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c965"> + <Coords points="765,1034 780,1034 780,1056 765,1056"/> + <TextEquiv conf="0.74120"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c967"> + <Coords points="782,1048 790,1048 790,1062 782,1062"/> + <TextEquiv conf="0.86141"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69758"> + <Unicode>Frau,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w969" language="German" readingDirection="left-to-right"> + <Coords points="853,1028 868,1028 868,1062 853,1062 853,1056 817,1056 817,1030 853,1030"/> + <Glyph id="c971"> + <Coords points="817,1030 831,1030 831,1056 817,1056"/> + <TextEquiv conf="0.80622"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c973"> + <Coords points="835,1035 850,1035 850,1056 835,1056"/> + <TextEquiv conf="0.73401"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c975"> + <Coords points="853,1028 868,1028 868,1062 853,1062"/> + <TextEquiv conf="0.79815"> + <Unicode>ß</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.73401"> + <Unicode>daß</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>Accisbue heraus, und ſagte ſeiner Frau, daß</Unicode></TextEquiv></TextLine> + <TextLine id="l24"> + <Coords points="443,1068 457,1068 457,1071 590,1071 590,1072 660,1072 660,1073 705,1073 705,1076 803,1076 803,1077 830,1077 830,1082 844,1082 844,1084 860,1084 860,1098 868,1098 868,1106 830,1106 830,1110 529,1110 529,1106 494,1106 494,1101 461,1101 461,1100 323,1100 323,1102 307,1102 307,1101 151,1101 151,1108 133,1108 133,1072 151,1072 151,1073 196,1073 196,1074 328,1074 328,1073 443,1073"/> + <Word id="w977" language="German" readingDirection="left-to-right"> + <Coords points="133,1072 151,1072 151,1078 165,1078 165,1099 151,1099 151,1108 133,1108"/> + <Glyph id="c979"> + <Coords points="133,1072 151,1072 151,1108 133,1108"/> + <TextEquiv conf="0.84813"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c981"> + <Coords points="155,1078 165,1078 165,1099 155,1099"/> + <TextEquiv conf="0.75703"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75703"> + <Unicode>e</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w5" language="German" readingDirection="left-to-right"> + <Coords points="184,1073 196,1073 196,1074 232,1074 232,1094 249,1094 249,1101 245,1101 245,1100 184,1100"/> + <Glyph id="c983"> + <Coords points="184,1073 196,1073 196,1100 184,1100"/> + <TextEquiv conf="0.70759"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c985"> + <Coords points="200,1079 215,1079 215,1100 200,1100"/> + <TextEquiv conf="0.74401"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c987"> + <Coords points="219,1074 232,1074 232,1100 219,1100"/> + <TextEquiv conf="0.74195"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <Glyph id="c989"> + <Coords points="245,1094 249,1094 249,1101 245,1101"/> + <TextEquiv conf="0.88051"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.70759"> + <Unicode>das,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w991" language="German" readingDirection="left-to-right"> + <Coords points="328,1073 340,1073 340,1098 323,1098 323,1102 307,1102 307,1101 279,1101 279,1078 328,1078"/> + <Glyph id="c993"> + <Coords points="279,1078 303,1078 303,1101 279,1101"/> + <TextEquiv conf="0.81205"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c995"> + <Coords points="307,1080 323,1080 323,1102 307,1102"/> + <TextEquiv conf="0.78334"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c997"> + <Coords points="328,1073 340,1073 340,1098 328,1098"/> + <TextEquiv conf="0.71925"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.71925"> + <Unicode>was</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w999" language="German" readingDirection="left-to-right"> + <Coords points="366,1073 378,1073 378,1079 399,1079 399,1100 366,1100"/> + <Glyph id="c1001"> + <Coords points="366,1073 378,1073 378,1100 366,1100"/> + <TextEquiv conf="0.76124"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1003"> + <Coords points="382,1079 399,1079 399,1100 382,1100"/> + <TextEquiv conf="0.75931"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75931"> + <Unicode>da</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1005" language="German" readingDirection="left-to-right"> + <Coords points="443,1068 457,1068 457,1079 488,1079 488,1093 501,1093 501,1106 494,1106 494,1101 461,1101 461,1100 415,1100 415,1079 443,1079"/> + <Glyph id="c1007"> + <Coords points="415,1079 439,1079 439,1100 415,1100"/> + <TextEquiv conf="0.76025"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c1009"> + <Coords points="443,1068 457,1068 457,1100 443,1100"/> + <TextEquiv conf="0.74663"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1011"> + <Coords points="461,1080 472,1080 472,1101 461,1101"/> + <TextEquiv conf="0.73019"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1013"> + <Coords points="476,1079 488,1079 488,1101 476,1101"/> + <TextEquiv conf="0.86440"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1015"> + <Coords points="494,1093 501,1093 501,1106 494,1106"/> + <TextEquiv conf="0.90284"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.73019"> + <Unicode>wre,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1017" language="German" readingDirection="left-to-right"> + <Coords points="529,1071 590,1071 590,1072 660,1072 660,1073 705,1073 705,1082 715,1082 715,1083 736,1083 736,1102 705,1102 705,1110 529,1110"/> + <Glyph id="c1019"> + <Coords points="529,1071 544,1071 544,1110 529,1110"/> + <TextEquiv conf="0.62055"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c1021"> + <Coords points="549,1080 559,1080 559,1100 549,1100"/> + <TextEquiv conf="0.73905"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1023"> + <Coords points="562,1080 573,1080 573,1101 562,1101"/> + <TextEquiv conf="0.76639"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1025"> + <Coords points="577,1071 590,1071 590,1101 577,1101"/> + <TextEquiv conf="0.83958"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c1027"> + <Coords points="595,1080 604,1080 604,1102 595,1102"/> + <TextEquiv conf="0.85026"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1029"> + <Coords points="609,1081 623,1081 623,1110 609,1110"/> + <TextEquiv conf="0.72177"> + <Unicode>y</Unicode></TextEquiv></Glyph> + <Glyph id="c1031"> + <Coords points="627,1073 637,1073 637,1107 627,1107"/> + <TextEquiv conf="0.74198"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c1033"> + <Coords points="637,1072 660,1072 660,1106 637,1106"/> + <TextEquiv conf="0.78442"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1035"> + <Coords points="665,1081 680,1081 680,1102 665,1102"/> + <TextEquiv conf="0.74563"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1037"> + <Coords points="684,1073 705,1073 705,1110 684,1110"/> + <TextEquiv conf="0.83982"> + <Unicode>ff</Unicode></TextEquiv></Glyph> + <Glyph id="c1990"> + <Coords points="706,1082 715,1082 715,1101 706,1101"/> + <TextEquiv> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1991"> + <Coords points="720,1083 736,1083 736,1102 720,1102"/> + <TextEquiv> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.62055"> + <Unicode>herbeyſaffen</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1041" language="German" readingDirection="left-to-right"> + <Coords points="789,1076 803,1076 803,1077 830,1077 830,1082 844,1082 844,1084 860,1084 860,1098 868,1098 868,1106 830,1106 830,1110 806,1110 806,1104 759,1104 759,1083 789,1083"/> + <Glyph id="c1043"> + <Coords points="759,1083 785,1083 785,1104 759,1104"/> + <TextEquiv conf="0.80051"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c1045"> + <Coords points="789,1076 803,1076 803,1104 789,1104"/> + <TextEquiv conf="0.76095"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1047"> + <Coords points="806,1077 830,1077 830,1110 806,1110"/> + <TextEquiv conf="0.79382"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1049"> + <Coords points="835,1082 844,1082 844,1105 835,1105"/> + <TextEquiv conf="0.71159"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c1051"> + <Coords points="847,1084 860,1084 860,1105 847,1105"/> + <TextEquiv conf="0.82929"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1053"> + <Coords points="861,1098 868,1098 868,1106 861,1106"/> + <TextEquiv conf="0.90931"> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.71159"> + <Unicode>mte.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>e das, was da wre, herbeyſaffen mte.</Unicode></TextEquiv></TextLine> + <TextLine id="l26"> + <Coords points="215,1113 235,1113 235,1125 357,1125 357,1118 364,1118 364,1119 471,1119 471,1118 540,1118 540,1119 764,1119 764,1122 853,1122 853,1128 869,1128 869,1147 853,1147 853,1149 842,1149 842,1150 797,1150 797,1154 790,1154 790,1148 756,1148 756,1147 590,1147 590,1154 575,1154 575,1149 471,1149 471,1148 339,1148 339,1154 325,1154 325,1153 132,1153 132,1116 215,1116"/> + <Word id="w1059" language="German" readingDirection="left-to-right"> + <Coords points="215,1113 235,1113 235,1153 132,1153 132,1116 215,1116"/> + <Glyph id="c1061"> + <Coords points="132,1116 159,1116 159,1153 132,1153"/> + <TextEquiv conf="0.80949"> + <Unicode>J</Unicode></TextEquiv></Glyph> + <Glyph id="c1063"> + <Coords points="163,1126 178,1126 178,1146 163,1146"/> + <TextEquiv conf="0.82919"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1065"> + <Coords points="182,1119 195,1119 195,1147 182,1147"/> + <TextEquiv conf="0.81147"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1067"> + <Coords points="200,1124 211,1124 211,1146 200,1146"/> + <TextEquiv conf="0.87336"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1069"> + <Coords points="215,1113 235,1113 235,1153 215,1153"/> + <TextEquiv conf="0.72395"> + <Unicode>ß</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72395"> + <Unicode>Jndeß</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1071" language="German" readingDirection="left-to-right"> + <Coords points="357,1118 364,1118 364,1124 376,1124 376,1125 411,1125 411,1146 364,1146 364,1147 339,1147 339,1154 325,1154 325,1147 284,1147 284,1145 254,1145 254,1125 357,1125"/> + <Glyph id="c1073"> + <Coords points="254,1125 280,1125 280,1145 254,1145"/> + <TextEquiv conf="0.87717"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c1075"> + <Coords points="284,1126 299,1126 299,1147 284,1147"/> + <TextEquiv conf="0.83118"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1077"> + <Coords points="304,1126 320,1126 320,1146 304,1146"/> + <TextEquiv conf="0.82834"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1079"> + <Coords points="325,1125 339,1125 339,1154 325,1154"/> + <TextEquiv conf="0.85393"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c1081"> + <Coords points="343,1125 353,1125 353,1146 343,1146"/> + <TextEquiv conf="0.82745"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1083"> + <Coords points="357,1118 364,1118 364,1147 357,1147"/> + <TextEquiv conf="0.83320"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1085"> + <Coords points="367,1124 376,1124 376,1146 367,1146"/> + <TextEquiv conf="0.80938"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c1087"> + <Coords points="379,1125 389,1125 389,1146 379,1146"/> + <TextEquiv conf="0.82412"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1089"> + <Coords points="394,1125 411,1125 411,1146 394,1146"/> + <TextEquiv conf="0.84363"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.80938"> + <Unicode>mangelten</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1133" language="German" readingDirection="left-to-right"> + <Coords points="846,1122 853,1122 853,1128 869,1128 869,1147 853,1147 853,1149 842,1149 842,1150 828,1150 828,1123 846,1123"/> + <Glyph id="c1135"> + <Coords points="828,1123 842,1123 842,1150 828,1150"/> + <TextEquiv conf="0.87171"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1137"> + <Coords points="846,1122 853,1122 853,1149 846,1149"/> + <TextEquiv conf="0.83263"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1139"> + <Coords points="857,1128 869,1128 869,1147 857,1147"/> + <TextEquiv conf="0.86775"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.83263"> + <Unicode>die</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1960" language="German" readingDirection="left-to-right"> + <Coords points="471,1118 496,1118 496,1149 471,1149 471,1148 434,1148 434,1119 471,1119"/> + <Glyph id="c1093"> + <Coords points="434,1119 448,1119 448,1148 434,1148"/> + <TextEquiv conf="0.78914"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1095"> + <Coords points="453,1125 467,1125 467,1148 453,1148"/> + <TextEquiv conf="0.88670"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1097"> + <Coords points="471,1118 496,1118 496,1149 471,1149"/> + <TextEquiv conf="0.77859"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>do</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1962" language="German" readingDirection="left-to-right"> + <Coords points="534,1118 540,1118 540,1119 573,1119 573,1126 605,1126 605,1147 590,1147 590,1154 575,1154 575,1148 544,1148 544,1147 518,1147 518,1125 534,1125"/> + <Glyph id="c1101"> + <Coords points="518,1125 529,1125 529,1147 518,1147"/> + <TextEquiv conf="0.86079"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1103"> + <Coords points="534,1118 540,1118 540,1147 534,1147"/> + <TextEquiv conf="0.83232"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1105"> + <Coords points="544,1126 561,1126 561,1148 544,1148"/> + <TextEquiv conf="0.81793"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1107"> + <Coords points="565,1119 573,1119 573,1147 565,1147"/> + <TextEquiv conf="0.78300"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1109"> + <Coords points="575,1127 590,1127 590,1154 575,1154"/> + <TextEquiv conf="0.77761"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c1111"> + <Coords points="594,1126 605,1126 605,1147 594,1147"/> + <TextEquiv conf="0.86677"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>einige</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1963" language="Latin" readingDirection="left-to-right"> + <Coords points="630,1119 764,1119 764,1130 782,1130 782,1141 797,1141 797,1154 790,1154 790,1148 756,1148 756,1147 658,1147 658,1146 630,1146"/> + <Glyph id="c1115"> + <Coords points="630,1119 656,1119 656,1146 630,1146"/> + <TextEquiv conf="0.82036"> + <Unicode>G</Unicode></TextEquiv></Glyph> + <Glyph id="c1117"> + <Coords points="658,1129 671,1129 671,1147 658,1147"/> + <TextEquiv conf="0.77833"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1119"> + <Coords points="675,1129 693,1129 693,1146 675,1146"/> + <TextEquiv conf="0.85051"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1121"> + <Coords points="697,1129 710,1129 710,1147 697,1147"/> + <TextEquiv conf="0.82972"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1125"> + <Coords points="746,1120 754,1120 754,1147 746,1147"/> + <TextEquiv conf="0.81277"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1127"> + <Coords points="756,1119 764,1119 764,1148 756,1148"/> + <TextEquiv conf="0.83589"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1129"> + <Coords points="767,1130 782,1130 782,1148 767,1148"/> + <TextEquiv conf="0.78757"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1131"> + <Coords points="790,1141 797,1141 797,1154 790,1154"/> + <TextEquiv conf="0.90190"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <Glyph id="c73"> + <Coords points="723,1130 723,1131 724,1131 724,1133 721,1133 721,1146 715,1146 715,1145 714,1145 714,1131 716,1131 716,1130"/> + <TextEquiv> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c75"> + <Coords points="737,1130 737,1131 738,1131 738,1132 739,1132 739,1144 740,1144 740,1145 741,1145 741,1146 729,1146 729,1135 728,1135 728,1134 729,1134 729,1133 730,1133 730,1132 731,1132 731,1131 733,1131 733,1130"/> + <TextEquiv> + <Unicode>a</Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>Generalia,</Unicode></TextEquiv> + <TextStyle fontFamily="Antiqua"/></Word> + <TextEquiv> + <Unicode>Jndeß mangelten do einige Generalia, die</Unicode></TextEquiv></TextLine> + <TextLine id="l27"> + <Coords points="819,1163 830,1163 830,1165 847,1165 847,1166 874,1166 874,1201 810,1201 810,1202 661,1202 661,1201 635,1201 635,1194 518,1194 518,1201 485,1201 485,1185 347,1185 347,1187 356,1187 356,1193 329,1193 329,1194 284,1194 284,1198 270,1198 270,1201 255,1201 255,1199 163,1199 163,1193 153,1193 153,1192 132,1192 132,1172 153,1172 153,1166 163,1166 163,1165 172,1165 172,1166 289,1166 289,1167 315,1167 315,1172 347,1172 347,1177 485,1177 485,1164 604,1164 604,1167 799,1167 799,1166 819,1166"/> + <Word id="w1141" language="German" readingDirection="left-to-right"> + <Coords points="163,1165 172,1165 172,1173 185,1173 185,1193 172,1193 172,1199 163,1199 163,1193 153,1193 153,1192 132,1192 132,1172 153,1172 153,1166 163,1166"/> + <Glyph id="c1143"> + <Coords points="132,1172 149,1172 149,1192 132,1192"/> + <TextEquiv conf="0.84728"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1145"> + <Coords points="153,1166 160,1166 160,1193 153,1193"/> + <TextEquiv conf="0.72710"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1147"> + <Coords points="163,1165 172,1165 172,1199 163,1199"/> + <TextEquiv conf="0.70061"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c1149"> + <Coords points="173,1173 185,1173 185,1193 173,1193"/> + <TextEquiv conf="0.90074"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.70061"> + <Unicode>alſo</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1151" language="German" readingDirection="left-to-right"> + <Coords points="273,1166 289,1166 289,1167 315,1167 315,1172 347,1172 347,1187 356,1187 356,1193 329,1193 329,1194 284,1194 284,1198 270,1198 270,1201 255,1201 255,1193 214,1193 214,1171 273,1171"/> + <Glyph id="c1153"> + <Coords points="214,1171 238,1171 238,1193 214,1193"/> + <TextEquiv conf="0.83780"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c1155"> + <Coords points="242,1172 253,1172 253,1193 242,1193"/> + <TextEquiv conf="0.81500"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1157"> + <Coords points="255,1174 270,1174 270,1201 255,1201"/> + <TextEquiv conf="0.80803"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c1159"> + <Coords points="273,1166 289,1166 289,1193 284,1193 284,1198 273,1198"/> + <TextEquiv conf="0.78080"> + <Unicode>fi</Unicode></TextEquiv></Glyph> + <Glyph id="c1163"> + <Coords points="294,1173 304,1173 304,1194 294,1194"/> + <TextEquiv conf="0.75474"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1165"> + <Coords points="308,1167 315,1167 315,1194 308,1194"/> + <TextEquiv conf="0.90229"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1167"> + <Coords points="318,1174 329,1174 329,1194 318,1194"/> + <TextEquiv conf="0.85984"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1992"> + <Coords points="332,1172 347,1172 347,1192 332,1192"/> + <TextEquiv> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1993"> + <Coords points="352,1187 356,1187 356,1193 352,1193"/> + <TextEquiv> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.60821"> + <Unicode>wegfielen.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1171" language="German" readingDirection="left-to-right"> + <Coords points="384,1177 435,1177 435,1185 384,1185"/> + <Glyph id="c1175"> + <Coords points="384,1177 435,1177 435,1185 384,1185"/> + <TextEquiv conf="0.51894"> + <Unicode>—</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.51894"> + <Unicode>—</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w21" language="German" readingDirection="left-to-right"> + <Coords points="485,1164 604,1164 604,1167 675,1167 675,1202 661,1202 661,1201 635,1201 635,1194 518,1194 518,1201 485,1201"/> + <Glyph id="c1179"> + <Coords points="485,1164 518,1164 518,1201 485,1201"/> + <TextEquiv conf="0.74039"> + <Unicode>H</Unicode></TextEquiv></Glyph> + <Glyph id="c1181"> + <Coords points="523,1173 539,1173 539,1194 523,1194"/> + <TextEquiv conf="0.89065"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1183"> + <Coords points="551,1172 563,1172 563,1193 551,1193"/> + <TextEquiv conf="0.80319"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1185"> + <Coords points="573,1170 582,1170 582,1193 573,1193"/> + <TextEquiv conf="0.84734"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c1187"> + <Coords points="592,1164 604,1164 604,1193 592,1193"/> + <TextEquiv conf="0.72920"> + <Unicode>k</Unicode></TextEquiv></Glyph> + <Glyph id="c1189"> + <Coords points="613,1173 626,1173 626,1194 613,1194"/> + <TextEquiv conf="0.90838"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1191"> + <Coords points="635,1173 652,1173 652,1201 635,1201"/> + <TextEquiv conf="0.85035"> + <Unicode>p</Unicode></TextEquiv></Glyph> + <Glyph id="c1193"> + <Coords points="661,1167 675,1167 675,1202 661,1202"/> + <TextEquiv conf="0.83784"> + <Unicode>f</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72920"> + <Unicode>Hartkopf</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w78" language="German" readingDirection="left-to-right"> + <Coords points="717,1167 725,1167 725,1174 739,1174 739,1175 777,1175 777,1201 714,1201 714,1202 699,1202 699,1174 717,1174"/> + <Glyph id="c1197"> + <Coords points="699,1174 714,1174 714,1202 699,1202"/> + <TextEquiv conf="0.84219"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c1199"> + <Coords points="717,1167 725,1167 725,1194 717,1194"/> + <TextEquiv conf="0.78589"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1201"> + <Coords points="728,1174 739,1174 739,1194 728,1194"/> + <TextEquiv conf="0.90891"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1203"> + <Coords points="743,1175 758,1175 758,1194 743,1194"/> + <TextEquiv conf="0.83234"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1205"> + <Coords points="762,1175 777,1175 777,1201 762,1201"/> + <TextEquiv conf="0.82998"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>gieng</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w79" language="German" readingDirection="left-to-right"> + <Coords points="819,1163 830,1163 830,1165 847,1165 847,1166 874,1166 874,1201 810,1201 810,1202 799,1202 799,1166 819,1166"/> + <Glyph id="c1209"> + <Coords points="799,1166 810,1166 810,1202 799,1202"/> + <TextEquiv conf="0.88437"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c1211"> + <Coords points="809,1173 819,1173 819,1194 809,1194"/> + <TextEquiv conf="0.79098"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1213"> + <Coords points="819,1163 830,1163 830,1195 819,1195"/> + <TextEquiv conf="0.73612"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1215"> + <Coords points="834,1165 847,1165 847,1194 834,1194"/> + <TextEquiv conf="0.82563"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c1217"> + <Coords points="851,1166 874,1166 874,1201 851,1201"/> + <TextEquiv conf="0.74729"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>ſelb</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>alſo wegfielen. — Hartkopf gieng ſelb</Unicode></TextEquiv></TextLine> + <TextEquiv> + <Unicode>Hartkopf mußte  er bennen, und +endli na langem Nadenken fiel es ihm er +wieder ein. — Er langte den Zettel aus dem +Accisbue heraus, und ſagte ſeiner Frau, daß +e das, was da wre, herbeyſaffen mte. +Jndeß mangelten do einige Generalia, die +alſo wegfielen. — Hartkopf gieng ſelb +mit und berbrate es. —</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur; Antiqua"/></TextRegion> + <GraphicRegion id="r5" type="decoration"> + <Coords points="382,166 636,166 636,203 382,203"/></GraphicRegion> + </Page></PcGts> diff --git a/dinglehopper/tests/data/directory-test/ocr/1.xml b/dinglehopper/tests/data/directory-test/ocr/1.xml new file mode 100644 index 0000000..0e62647 --- /dev/null +++ b/dinglehopper/tests/data/directory-test/ocr/1.xml @@ -0,0 +1,3394 @@ +<?xml version="1.0" encoding="UTF-8"?> +<PcGts xmlns="http://schema.primaresearch.org/PAGE/gts/pagecontent/2018-07-15" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://schema.primaresearch.org/PAGE/gts/pagecontent/2018-07-15 http://schema.primaresearch.org/PAGE/gts/pagecontent/2018-07-15/pagecontent.xsd" pcGtsId="backhart_768169569_0001_00000119"> + <Metadata> + <Creator>doculibtopagexml</Creator> + <Created>2019-01-08T10:25:36</Created> + <LastChange>2019-04-26T07:11:05</LastChange></Metadata> + <Page imageFilename="00000119.tif" imageXResolution="300.00000" imageYResolution="300.00000" imageWidth="1148" imageHeight="1852" type="content"> + <AlternativeImage filename="00000119_b.tif"/> + <PrintSpace> + <Coords points="93,136 93,1613 913,1613 913,136"/></PrintSpace> + <ReadingOrder> + <OrderedGroup id="ro357564684568544579089"> + <RegionRefIndexed regionRef="r0" index="1"/> + <RegionRefIndexed regionRef="r2" index="2"/> + </OrderedGroup></ReadingOrder> + <TextRegion id="r0" readingDirection="left-to-right" textLineOrder="top-to-bottom" type="paragraph" indented="false" align="justify" primaryLanguage="German"> + <Coords points="157,251 170,251 170,256 245,256 245,258 370,258 370,259 420,259 420,267 437,267 437,268 621,268 621,263 657,263 657,261 701,261 701,259 718,259 718,266 856,266 856,262 871,262 871,320 872,320 872,392 871,392 871,489 869,489 869,783 830,783 830,791 815,791 815,788 788,788 788,781 646,781 646,786 570,786 570,819 493,819 493,829 334,829 334,833 249,833 249,834 160,834 160,840 146,840 146,830 131,830 131,802 132,802 132,590 131,590 131,554 133,554 133,513 135,513 135,342 134,342 134,304 135,304 135,252 157,252"/> + <TextLine id="l5"> + <Coords points="157,251 170,251 170,256 245,256 245,258 370,258 370,259 420,259 420,267 437,267 437,268 621,268 621,263 657,263 657,261 701,261 701,259 718,259 718,266 856,266 856,262 871,262 871,297 821,297 821,291 682,291 682,295 575,295 575,297 560,297 560,296 455,296 455,289 386,289 386,288 283,288 283,287 219,287 219,285 188,285 188,284 174,284 174,283 135,283 135,252 157,252"/> + <Word id="w1663" language="German" readingDirection="left-to-right"> + <Coords points="157,251 170,251 170,261 185,261 185,263 199,263 199,285 188,285 188,284 174,284 174,283 135,283 135,252 157,252"/> + <Glyph id="c1665"> + <Coords points="135,252 155,252 155,283 135,283"/> + <TextEquiv conf="0.75285"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1667"> + <Coords points="157,251 170,251 170,283 157,283"/> + <TextEquiv conf="0.77841"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c1669"> + <Coords points="174,261 185,261 185,284 174,284"/> + <TextEquiv conf="0.84378"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1671"> + <Coords points="188,263 199,263 199,285 188,285"/> + <TextEquiv conf="0.75436"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75285"> + <Unicode>ber</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1673" language="German" readingDirection="left-to-right"> + <Coords points="236,256 245,256 245,264 260,264 260,287 219,287 219,257 236,257"/> + <Glyph id="c1675"> + <Coords points="219,257 233,257 233,287 219,287"/> + <TextEquiv conf="0.80770"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1677"> + <Coords points="236,256 245,256 245,287 236,287"/> + <TextEquiv conf="0.75232"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1679"> + <Coords points="248,264 260,264 260,287 248,287"/> + <TextEquiv conf="0.87596"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75232"> + <Unicode>die</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1681" language="German" readingDirection="left-to-right"> + <Coords points="329,258 370,258 370,288 283,288 283,264 304,264 304,259 329,259"/> + <Glyph id="c1683"> + <Coords points="283,264 299,264 299,288 283,288"/> + <TextEquiv conf="0.75082"> + <Unicode>v</Unicode></TextEquiv></Glyph> + <Glyph id="c1685"> + <Coords points="304,259 310,259 310,288 304,288"/> + <TextEquiv conf="0.68661"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1687"> + <Coords points="315,266 325,266 325,287 315,287"/> + <TextEquiv conf="0.72317"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1689"> + <Coords points="329,258 337,258 337,288 329,288"/> + <TextEquiv conf="0.83915"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1691"> + <Coords points="340,266 349,266 349,287 340,287"/> + <TextEquiv conf="0.79152"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1693"> + <Coords points="354,258 370,258 370,288 354,288"/> + <TextEquiv conf="0.67275"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.67275"> + <Unicode>vielen</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1695" language="German" readingDirection="left-to-right"> + <Coords points="386,259 420,259 420,267 437,267 437,268 452,268 452,269 503,269 503,289 469,289 469,296 455,296 455,289 386,289"/> + <Glyph id="c1697"> + <Coords points="386,259 420,259 420,289 386,289"/> + <TextEquiv conf="0.75776"> + <Unicode>S</Unicode></TextEquiv></Glyph> + <Glyph id="c1699"> + <Coords points="424,267 437,267 437,287 424,287"/> + <TextEquiv conf="0.81753"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1701"> + <Coords points="441,268 452,268 452,288 441,288"/> + <TextEquiv conf="0.85307"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1703"> + <Coords points="455,269 469,269 469,296 455,296"/> + <TextEquiv conf="0.81493"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c1705"> + <Coords points="473,269 482,269 482,289 473,289"/> + <TextEquiv conf="0.78034"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1707"> + <Coords points="487,269 503,269 503,289 487,289"/> + <TextEquiv conf="0.74845"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74845"> + <Unicode>Sorgen</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1709" language="German" readingDirection="left-to-right"> + <Coords points="518,268 542,268 542,269 608,269 608,289 589,289 589,290 575,290 575,297 560,297 560,289 546,289 546,288 518,288"/> + <Glyph id="c1711"> + <Coords points="518,268 542,268 542,288 518,288"/> + <TextEquiv conf="0.76983"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c1713"> + <Coords points="546,269 557,269 557,289 546,289"/> + <TextEquiv conf="0.69585"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1715"> + <Coords points="560,269 575,269 575,297 560,297"/> + <TextEquiv conf="0.80275"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c1717"> + <Coords points="579,269 589,269 589,290 579,290"/> + <TextEquiv conf="0.75463"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1719"> + <Coords points="592,269 608,269 608,289 592,289"/> + <TextEquiv conf="0.77872"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69585"> + <Unicode>wegen</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1721" language="German" readingDirection="left-to-right"> + <Coords points="701,259 718,259 718,268 750,268 750,291 682,291 682,295 657,295 657,290 621,290 621,263 657,263 657,261 701,261"/> + <Glyph id="c1723"> + <Coords points="621,263 640,263 640,290 621,290"/> + <TextEquiv conf="0.67731"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1725"> + <Coords points="644,268 653,268 653,289 644,289"/> + <TextEquiv conf="0.72582"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1727"> + <Coords points="657,261 682,261 682,295 657,295"/> + <TextEquiv conf="0.80586"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1729"> + <Coords points="676,268 688,268 688,290 676,290"/> + <TextEquiv conf="0.85827"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1731"> + <Coords points="691,261 698,261 698,291 691,291"/> + <TextEquiv conf="0.69996"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1733"> + <Coords points="701,259 718,259 718,291 701,291"/> + <TextEquiv conf="0.58348"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c1737"> + <Coords points="719,268 729,268 729,290 719,290"/> + <TextEquiv conf="0.72210"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1739"> + <Coords points="733,268 750,268 750,291 733,291"/> + <TextEquiv conf="0.78413"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.58348"> + <Unicode>deelben</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1741" language="German" readingDirection="left-to-right"> + <Coords points="856,262 871,262 871,297 821,297 821,291 807,291 807,290 774,290 774,266 856,266"/> + <Glyph id="c1743"> + <Coords points="774,266 789,266 789,290 774,290"/> + <TextEquiv conf="0.78911"> + <Unicode>v</Unicode></TextEquiv></Glyph> + <Glyph id="c1745"> + <Coords points="794,268 804,268 804,290 794,290"/> + <TextEquiv conf="0.83999"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1747"> + <Coords points="807,269 819,269 819,291 807,291"/> + <TextEquiv conf="0.73881"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1749"> + <Coords points="821,269 835,269 835,297 821,297"/> + <TextEquiv conf="0.88566"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c1751"> + <Coords points="838,267 854,267 854,290 838,290"/> + <TextEquiv conf="0.85102"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1753"> + <Coords points="856,262 871,262 871,297 856,297"/> + <TextEquiv conf="0.80438"> + <Unicode>ß</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.73881"> + <Unicode>vergaß</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>ber die vielen Sorgen wegen deelben vergaß</Unicode></TextEquiv></TextLine> + <TextLine id="l6"> + <Coords points="224,797 334,797 334,800 440,800 440,807 484,807 484,813 570,813 570,819 493,819 493,829 334,829 334,833 249,833 249,834 160,834 160,840 146,840 146,830 131,830 131,802 146,802 146,801 224,801"/> + <Word id="w1755" language="German" readingDirection="left-to-right"> + <Coords points="146,801 160,801 160,808 175,808 175,831 160,831 160,840 146,840 146,830 131,830 131,802 146,802"/> + <Glyph id="c1757"> + <Coords points="131,802 141,802 141,830 131,830"/> + <TextEquiv conf="0.77702"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1759"> + <Coords points="146,801 160,801 160,840 146,840"/> + <TextEquiv conf="0.69026"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c1761"> + <Coords points="164,808 175,808 175,831 164,831"/> + <TextEquiv conf="0.74867"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69026"> + <Unicode>ihr</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1763" language="German" readingDirection="left-to-right"> + <Coords points="224,797 249,797 249,834 224,834 224,830 190,830 190,803 224,803"/> + <Glyph id="c1765"> + <Coords points="190,803 203,803 203,830 190,830"/> + <TextEquiv conf="0.68484"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1767"> + <Coords points="207,809 220,809 220,828 207,828"/> + <TextEquiv conf="0.69132"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1769"> + <Coords points="224,797 249,797 249,834 224,834"/> + <TextEquiv conf="0.73594"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.68484"> + <Unicode>do</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1771" language="German" readingDirection="left-to-right"> + <Coords points="318,797 334,797 334,833 318,833 318,827 271,827 271,806 318,806"/> + <Glyph id="c1773"> + <Coords points="271,806 288,806 288,827 271,827"/> + <TextEquiv conf="0.70153"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1775"> + <Coords points="293,807 305,807 305,827 293,827"/> + <TextEquiv conf="0.74772"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1777"> + <Coords points="318,797 334,797 334,833 318,833 318,826 309,826 309,806 318,806"/> + <TextEquiv conf="0.72521"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69144"> + <Unicode>no</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1781" language="German" readingDirection="left-to-right"> + <Coords points="351,806 387,806 387,829 351,829"/> + <Glyph id="c1783"> + <Coords points="351,806 367,806 367,829 351,829"/> + <TextEquiv conf="0.83185"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1785"> + <Coords points="370,806 387,806 387,829 370,829"/> + <TextEquiv conf="0.80758"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.80758"> + <Unicode>an</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1787" language="German" readingDirection="left-to-right"> + <Coords points="433,800 440,800 440,807 484,807 484,815 493,815 493,829 424,829 424,828 405,828 405,807 424,807 424,801 433,801"/> + <Glyph id="c1789"> + <Coords points="405,807 420,807 420,828 405,828"/> + <TextEquiv conf="0.75325"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1791"> + <Coords points="433,800 440,800 440,829 424,829 424,801 433,801"/> + <TextEquiv conf="0.69836"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1795"> + <Coords points="444,807 454,807 454,829 444,829"/> + <TextEquiv conf="0.77285"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1797"> + <Coords points="457,807 484,807 484,829 457,829"/> + <TextEquiv conf="0.84281"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c1799"> + <Coords points="486,815 493,815 493,829 486,829"/> + <TextEquiv conf="0.56713"> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.56713"> + <Unicode>aem.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1801" language="German" readingDirection="left-to-right"> + <Coords points="520,813 570,813 570,819 520,819"/> + <Glyph id="c1803"> + <Coords points="520,813 570,813 570,819 520,819"/> + <TextEquiv conf="0.88040"> + <Unicode>—</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.86562"> + <Unicode>—</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>ihr do no an aem. —</Unicode></TextEquiv></TextLine> + <TextLine id="l7"> + <Coords points="134,304 163,304 163,308 252,308 252,309 324,309 324,310 436,310 436,309 457,309 457,311 634,311 634,307 648,307 648,312 699,312 699,313 759,313 759,315 795,315 795,318 835,318 835,319 864,319 864,320 872,320 872,339 864,339 864,342 852,342 852,341 762,341 762,340 745,340 745,339 560,339 560,341 457,341 457,343 283,343 283,337 163,337 163,342 134,342"/> + <Word id="w1807" language="German" readingDirection="left-to-right"> + <Coords points="134,304 163,304 163,308 252,308 252,309 324,309 324,329 337,329 337,343 283,343 283,337 163,337 163,342 134,342"/> + <Glyph id="c1809"> + <Coords points="134,304 163,304 163,342 134,342"/> + <TextEquiv conf="0.77424"> + <Unicode>H</Unicode></TextEquiv></Glyph> + <Glyph id="c1811"> + <Coords points="173,314 189,314 189,336 173,336"/> + <TextEquiv conf="0.83291"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1813"> + <Coords points="198,315 209,315 209,336 198,336"/> + <TextEquiv conf="0.75086"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1815"> + <Coords points="219,313 229,313 229,337 219,337"/> + <TextEquiv conf="0.80943"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c1817"> + <Coords points="240,308 252,308 252,337 240,337"/> + <TextEquiv conf="0.77207"> + <Unicode>k</Unicode></TextEquiv></Glyph> + <Glyph id="c1819"> + <Coords points="260,317 273,317 273,337 260,337"/> + <TextEquiv conf="0.84221"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1821"> + <Coords points="283,317 299,317 299,343 283,343"/> + <TextEquiv conf="0.79249"> + <Unicode>p</Unicode></TextEquiv></Glyph> + <Glyph id="c1823"> + <Coords points="310,309 324,309 324,343 310,343"/> + <TextEquiv conf="0.87079"> + <Unicode>f</Unicode></TextEquiv></Glyph> + <Glyph id="c1825"> + <Coords points="329,329 337,329 337,343 329,343"/> + <TextEquiv conf="0.97446"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75086"> + <Unicode>Hartkopf,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1827" language="German" readingDirection="left-to-right"> + <Coords points="368,310 381,310 381,316 412,316 412,337 385,337 385,336 368,336"/> + <Glyph id="c1829"> + <Coords points="368,310 381,310 381,336 368,336"/> + <TextEquiv conf="0.76508"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1831"> + <Coords points="385,316 396,316 396,337 385,337"/> + <TextEquiv conf="0.75896"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1833"> + <Coords points="399,316 412,316 412,337 399,337"/> + <TextEquiv conf="0.82288"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75896"> + <Unicode>der</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1835" language="German" readingDirection="left-to-right"> + <Coords points="436,309 457,309 457,317 490,317 490,318 510,318 510,339 457,339 457,343 436,343"/> + <Glyph id="c1837"> + <Coords points="436,309 457,309 457,343 436,343"/> + <TextEquiv conf="0.75319"> + <Unicode>F</Unicode></TextEquiv></Glyph> + <Glyph id="c1839"> + <Coords points="460,318 472,318 472,336 460,336"/> + <TextEquiv conf="0.77654"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1841"> + <Coords points="475,317 490,317 490,337 475,337"/> + <TextEquiv conf="0.83225"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1843"> + <Coords points="494,318 510,318 510,339 494,339"/> + <TextEquiv conf="0.80133"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75319"> + <Unicode>Frau</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1845" language="German" readingDirection="left-to-right"> + <Coords points="634,307 648,307 648,312 699,312 699,319 721,319 721,339 560,339 560,341 533,341 533,311 634,311"/> + <Glyph id="c1847"> + <Coords points="533,311 560,311 560,341 533,341"/> + <TextEquiv conf="0.73224"> + <Unicode>A</Unicode></TextEquiv></Glyph> + <Glyph id="c1849"> + <Coords points="563,319 587,319 587,339 563,339"/> + <TextEquiv conf="0.80570"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c1851"> + <Coords points="592,316 601,316 601,339 592,339"/> + <TextEquiv conf="0.68586"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c1853"> + <Coords points="605,319 629,319 629,339 605,339"/> + <TextEquiv conf="0.77963"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c1855"> + <Coords points="634,307 648,307 648,339 634,339"/> + <TextEquiv conf="0.79249"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1857"> + <Coords points="653,318 667,318 667,339 653,339"/> + <TextEquiv conf="0.85011"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1859"> + <Coords points="672,319 688,319 688,339 672,339"/> + <TextEquiv conf="0.82539"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1861"> + <Coords points="693,312 699,312 699,339 693,339"/> + <TextEquiv conf="0.88742"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1863"> + <Coords points="704,319 721,319 721,339 704,339"/> + <TextEquiv conf="0.85821"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.68586"> + <Unicode>Amtmnnin</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1865" language="German" readingDirection="left-to-right"> + <Coords points="745,313 759,313 759,315 795,315 795,340 778,340 778,341 762,341 762,340 745,340"/> + <Glyph id="c1867"> + <Coords points="745,313 759,313 759,340 745,340"/> + <TextEquiv conf="0.85237"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1869"> + <Coords points="762,320 778,320 778,341 762,341"/> + <TextEquiv conf="0.79818"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1871"> + <Coords points="780,315 795,315 795,340 780,340"/> + <TextEquiv conf="0.76413"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.76413"> + <Unicode>das</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w36" language="German" readingDirection="left-to-right"> + <Coords points="819,318 835,318 835,319 864,319 864,320 872,320 872,339 864,339 864,342 852,342 852,341 819,341"/> + <Glyph id="c1875"> + <Coords points="819,318 835,318 835,341 819,341"/> + <TextEquiv conf="0.84042"> + <Unicode>v</Unicode></TextEquiv></Glyph> + <Glyph id="c1877"> + <Coords points="839,320 849,320 849,341 839,341"/> + <TextEquiv conf="0.84113"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1879"> + <Coords points="852,319 864,319 864,342 852,342"/> + <TextEquiv conf="0.84949"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1881"> + <Coords points="865,320 872,320 872,339 865,339"/> + <TextEquiv conf="0.80870"> + <Unicode>⸗</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.80870"> + <Unicode>ver⸗</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>Hartkopf, der Frau Amtmnnin das ver⸗</Unicode></TextEquiv></TextLine> + <TextLine id="l9"> + <Coords points="135,356 147,356 147,358 221,358 221,366 363,366 363,357 397,357 397,359 438,359 438,360 478,360 478,367 489,367 489,368 522,368 522,375 651,375 651,358 760,358 760,363 850,363 850,370 872,370 872,392 850,392 850,395 777,395 777,391 761,391 761,390 651,390 651,380 522,380 522,382 532,382 532,388 478,388 478,394 465,394 465,387 430,387 430,386 312,386 312,394 302,394 302,392 146,392 146,391 135,391"/> + <Word id="w1883" language="German" readingDirection="left-to-right"> + <Coords points="135,356 147,356 147,358 221,358 221,366 271,366 271,386 236,386 236,387 221,387 221,392 146,392 146,391 135,391"/> + <Glyph id="c1885"> + <Coords points="135,356 147,356 147,391 135,391"/> + <TextEquiv conf="0.87327"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c1887"> + <Coords points="146,364 161,364 161,392 146,392"/> + <TextEquiv conf="0.84382"> + <Unicode>p</Unicode></TextEquiv></Glyph> + <Glyph id="c1889"> + <Coords points="165,366 177,366 177,387 165,387"/> + <TextEquiv conf="0.78667"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1891"> + <Coords points="180,365 192,365 192,386 180,386"/> + <TextEquiv conf="0.89583"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1893"> + <Coords points="197,358 221,358 221,392 197,392"/> + <TextEquiv conf="0.82985"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1895"> + <Coords points="225,367 236,367 236,387 225,387"/> + <TextEquiv conf="0.74928"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1897"> + <Coords points="240,367 256,367 256,386 240,386"/> + <TextEquiv conf="0.76381"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1899"> + <Coords points="259,366 271,366 271,386 259,386"/> + <TextEquiv conf="0.90333"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74928"> + <Unicode>ſproene</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1901" language="German" readingDirection="left-to-right"> + <Coords points="302,366 333,366 333,386 312,386 312,394 302,394"/> + <Glyph id="c1903"> + <Coords points="302,366 312,366 312,394 302,394"/> + <TextEquiv conf="0.77930"> + <Unicode>z</Unicode></TextEquiv></Glyph> + <Glyph id="c1905"> + <Coords points="316,366 333,366 333,386 316,386"/> + <TextEquiv conf="0.88518"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.77930"> + <Unicode>zu</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1907" language="German" readingDirection="left-to-right"> + <Coords points="363,357 397,357 397,359 438,359 438,360 478,360 478,367 489,367 489,368 522,368 522,382 532,382 532,388 478,388 478,394 465,394 465,387 430,387 430,386 363,386"/> + <Glyph id="c1909"> + <Coords points="363,357 379,357 379,386 363,386"/> + <TextEquiv conf="0.74149"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1911"> + <Coords points="384,357 397,357 397,386 384,386"/> + <TextEquiv conf="0.81591"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c1913"> + <Coords points="401,364 412,364 412,385 401,385"/> + <TextEquiv conf="0.79031"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1915"> + <Coords points="415,365 426,365 426,385 415,385"/> + <TextEquiv conf="0.73056"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1917"> + <Coords points="430,359 438,359 438,387 430,387"/> + <TextEquiv conf="0.90756"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1919"> + <Coords points="441,360 446,360 446,387 441,387"/> + <TextEquiv conf="0.77904"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1921"> + <Coords points="451,366 461,366 461,387 451,387"/> + <TextEquiv conf="0.80085"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1923"> + <Coords points="465,360 478,360 478,394 465,394"/> + <TextEquiv conf="0.69815"> + <Unicode>f</Unicode></TextEquiv></Glyph> + <Glyph id="c1925"> + <Coords points="476,367 489,367 489,387 476,387"/> + <TextEquiv conf="0.74520"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1974"> + <Coords points="493,368 502,368 502,387 493,387"/> + <TextEquiv> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1976"> + <Coords points="507,368 522,368 522,387 507,387"/> + <TextEquiv> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1977"> + <Coords points="527,382 532,382 532,388 527,388"/> + <TextEquiv> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69815"> + <Unicode>berliefern.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1929" language="German" readingDirection="left-to-right"> + <Coords points="561,375 610,375 610,380 561,380"/> + <Glyph id="c1931"> + <Coords points="561,375 610,375 610,380 561,380"/> + <TextEquiv conf="0.79675"> + <Unicode>—</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.77520"> + <Unicode>—</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1935" language="German" readingDirection="left-to-right"> + <Coords points="651,358 677,358 677,361 689,361 689,367 710,367 710,388 677,388 677,390 651,390"/> + <Glyph id="c1937"> + <Coords points="651,358 677,358 677,390 651,390"/> + <TextEquiv conf="0.80549"> + <Unicode>E</Unicode></TextEquiv></Glyph> + <Glyph id="c1939"> + <Coords points="682,361 689,361 689,388 682,388"/> + <TextEquiv conf="0.74066"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1941"> + <Coords points="692,367 710,367 710,388 692,388"/> + <TextEquiv conf="0.86004"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74066"> + <Unicode>Ein</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1943" language="German" readingDirection="left-to-right"> + <Coords points="732,358 760,358 760,363 850,363 850,370 872,370 872,392 850,392 850,395 777,395 777,391 761,391 761,389 732,389"/> + <Glyph id="c1945"> + <Coords points="732,358 760,358 760,389 732,389"/> + <TextEquiv conf="0.83324"> + <Unicode>E</Unicode></TextEquiv></Glyph> + <Glyph id="c1947"> + <Coords points="761,369 775,369 775,391 761,391"/> + <TextEquiv conf="0.64602"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1949"> + <Coords points="777,369 793,369 793,395 777,395"/> + <TextEquiv conf="0.91447"> + <Unicode>p</Unicode></TextEquiv></Glyph> + <Glyph id="c1953"> + <Coords points="824,363 850,363 850,395 824,395"/> + <TextEquiv conf="0.86339"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1955"> + <Coords points="845,371 855,371 855,391 845,391"/> + <TextEquiv conf="0.82644"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1957"> + <Coords points="858,370 872,370 872,392 858,392"/> + <TextEquiv conf="0.83229"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1978"> + <Coords points="793,364 808,364 808,389 793,389"/> + <TextEquiv> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1979"> + <Coords points="811,368 822,368 822,388 811,388"/> + <TextEquiv> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.64602"> + <Unicode>Erpreer</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>ſproene zu berliefern. — Ein Erpreer</Unicode></TextEquiv></TextLine> + <TextLine id="l10"> + <Coords points="319,407 403,407 403,408 449,408 449,409 482,409 482,410 508,410 508,416 521,416 521,417 638,417 638,409 666,409 666,412 791,412 791,409 820,409 820,412 831,412 831,417 871,417 871,440 820,440 820,446 791,446 791,439 666,439 666,446 651,446 651,439 538,439 538,444 447,444 447,443 333,443 333,445 319,445 319,435 211,435 211,436 135,436 135,413 198,413 198,410 306,410 306,409 319,409"/> + <Word id="w2" language="German" readingDirection="left-to-right"> + <Coords points="198,410 211,410 211,415 227,415 227,435 211,435 211,436 135,436 135,413 198,413"/> + <Glyph id="c3"> + <Coords points="135,413 160,413 160,436 135,436"/> + <TextEquiv conf="0.83926"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c6"> + <Coords points="198,410 211,410 211,436 198,436"/> + <TextEquiv conf="0.74741"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c7"> + <Coords points="214,415 227,415 227,435 214,435"/> + <TextEquiv conf="0.78431"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1980"> + <Coords points="164,415 178,415 178,436 164,436"/> + <TextEquiv> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c1981"> + <Coords points="182,415 193,415 193,435 182,435"/> + <TextEquiv> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69343"> + <Unicode>wurde</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w8" language="German" readingDirection="left-to-right"> + <Coords points="247,415 283,415 283,435 247,435"/> + <Glyph id="c9"> + <Coords points="247,415 263,415 263,435 247,435"/> + <TextEquiv conf="0.75804"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c10"> + <Coords points="267,415 283,415 283,435 267,435"/> + <TextEquiv conf="0.88661"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75804"> + <Unicode>an</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w11" language="German" readingDirection="left-to-right"> + <Coords points="319,407 333,407 333,413 354,413 354,434 333,434 333,445 319,445 319,435 306,435 306,409 319,409"/> + <Glyph id="c12"> + <Coords points="306,409 315,409 315,435 306,435"/> + <TextEquiv conf="0.75017"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c13"> + <Coords points="319,407 333,407 333,445 319,445"/> + <TextEquiv conf="0.80132"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c14"> + <Coords points="337,413 354,413 354,434 337,434"/> + <TextEquiv conf="0.81077"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75017"> + <Unicode>ihn</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w15" language="German" readingDirection="left-to-right"> + <Coords points="390,407 403,407 403,408 449,408 449,409 482,409 482,410 508,410 508,416 521,416 521,431 538,431 538,444 447,444 447,443 406,443 406,436 390,436 390,435 371,435 371,415 390,415"/> + <Glyph id="c16"> + <Coords points="371,415 385,415 385,435 371,435"/> + <TextEquiv conf="0.81903"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c17"> + <Coords points="390,407 403,407 403,436 390,436"/> + <TextEquiv conf="0.81509"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c18"> + <Coords points="406,416 420,416 420,443 406,443"/> + <TextEquiv conf="0.75122"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c19"> + <Coords points="423,415 434,415 434,436 423,436"/> + <TextEquiv conf="0.74691"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c20"> + <Coords points="437,408 449,408 449,443 437,443"/> + <TextEquiv conf="0.73492"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c21"> + <Coords points="447,409 471,409 471,444 447,444"/> + <TextEquiv conf="0.80440"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c22"> + <Coords points="475,409 482,409 482,437 475,437"/> + <TextEquiv conf="0.71763"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c23"> + <Coords points="495,410 508,410 508,438 486,438 486,416 495,416"/> + <TextEquiv conf="0.85116"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c25"> + <Coords points="511,416 521,416 521,439 511,439"/> + <TextEquiv conf="0.81059"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c26"> + <Coords points="530,431 538,431 538,444 530,444"/> + <TextEquiv conf="0.88635"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.71763"> + <Unicode>abgeſit,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w27" language="German" readingDirection="left-to-right"> + <Coords points="587,417 614,417 614,438 584,438 584,439 566,439 566,418 587,418"/> + <Glyph id="c28"> + <Coords points="566,418 584,418 584,439 566,439"/> + <TextEquiv conf="0.85187"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c29"> + <Coords points="587,417 614,417 614,438 587,438"/> + <TextEquiv conf="0.85970"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.85187"> + <Unicode>um</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w30" language="German" readingDirection="left-to-right"> + <Coords points="638,409 666,409 666,417 687,417 687,439 666,439 666,446 651,446 651,437 638,437"/> + <Glyph id="c31"> + <Coords points="638,409 647,409 647,437 638,437"/> + <TextEquiv conf="0.76901"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c32"> + <Coords points="651,409 666,409 666,446 651,446"/> + <TextEquiv conf="0.72665"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c33"> + <Coords points="671,417 687,417 687,439 671,439"/> + <TextEquiv conf="0.80526"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72665"> + <Unicode>ihn</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w34" language="German" readingDirection="left-to-right"> + <Coords points="764,412 778,412 778,439 764,439 764,438 714,438 714,417 764,417"/> + <Glyph id="c35"> + <Coords points="714,417 730,417 730,438 714,438"/> + <TextEquiv conf="0.80072"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c36"> + <Coords points="735,417 760,417 760,438 735,438"/> + <TextEquiv conf="0.82963"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c37"> + <Coords points="764,412 778,412 778,439 764,439"/> + <TextEquiv conf="0.69324"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69324"> + <Unicode>ums</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w38" language="German" readingDirection="left-to-right"> + <Coords points="791,409 820,409 820,412 831,412 831,417 871,417 871,440 820,440 820,446 791,446"/> + <Glyph id="c39"> + <Coords points="791,409 820,409 820,446 791,446"/> + <TextEquiv conf="0.76995"> + <Unicode>H</Unicode></TextEquiv></Glyph> + <Glyph id="c40"> + <Coords points="824,412 831,412 831,439 824,439"/> + <TextEquiv conf="0.79272"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c41"> + <Coords points="835,417 863,417 863,440 835,440"/> + <TextEquiv conf="0.86622"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c42"> + <Coords points="860,417 871,417 871,440 860,440"/> + <TextEquiv conf="0.69070"> + <Unicode>⸗</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69070"> + <Unicode>Him⸗</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>wurde an ihn abgeſit, um ihn ums Him⸗</Unicode></TextEquiv></TextLine> + <TextLine id="l11"> + <Coords points="245,456 263,456 263,463 367,463 367,457 379,457 379,464 492,464 492,462 528,462 528,460 822,460 822,467 871,467 871,489 822,489 822,494 736,494 736,489 675,489 675,487 542,487 542,494 528,494 528,493 453,493 453,492 367,492 367,491 319,491 319,485 135,485 135,464 180,464 180,460 235,460 235,458 245,458"/> + <Word id="w44" language="German" readingDirection="left-to-right"> + <Coords points="245,456 263,456 263,463 296,463 296,485 135,485 135,464 180,464 180,460 235,460 235,458 245,458"/> + <Glyph id="c46"> + <Coords points="135,464 162,464 162,485 135,485"/> + <TextEquiv conf="0.85319"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c48"> + <Coords points="167,465 177,465 177,485 167,485"/> + <TextEquiv conf="0.78682"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c50"> + <Coords points="180,460 186,460 186,485 180,485"/> + <TextEquiv conf="0.78644"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c52"> + <Coords points="189,460 202,460 202,484 189,484"/> + <TextEquiv conf="0.75733"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <Glyph id="c54"> + <Coords points="207,463 230,463 230,484 207,484"/> + <TextEquiv conf="0.78771"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c8"> + <Coords points="235,458 241,458 241,483 235,483"/> + <TextEquiv conf="0.81867"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c57"> + <Coords points="245,456 263,456 263,483 245,483"/> + <TextEquiv conf="0.78037"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c59"> + <Coords points="265,463 276,463 276,482 265,482"/> + <TextEquiv conf="0.83574"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c11"> + <Coords points="278,463 296,463 296,485 278,485"/> + <TextEquiv conf="0.76827"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75733"> + <Unicode>melswien</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w12" language="German" readingDirection="left-to-right"> + <Coords points="333,463 349,463 349,484 329,484 329,491 319,491 319,464 333,464"/> + <Glyph id="c62"> + <Coords points="319,464 329,464 329,491 319,491"/> + <TextEquiv conf="0.80147"> + <Unicode>z</Unicode></TextEquiv></Glyph> + <Glyph id="c64"> + <Coords points="333,463 349,463 349,484 333,484"/> + <TextEquiv conf="0.89003"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.80147"> + <Unicode>zu</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w66" language="German" readingDirection="left-to-right"> + <Coords points="367,457 379,457 379,464 409,464 409,465 424,465 424,466 443,466 443,480 462,480 462,493 453,493 453,492 367,492"/> + <Glyph id="c68"> + <Coords points="367,457 379,457 379,492 367,492"/> + <TextEquiv conf="0.69068"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c70"> + <Coords points="377,465 393,465 393,485 377,485"/> + <TextEquiv conf="0.80786"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c72"> + <Coords points="393,464 409,464 409,492 393,492"/> + <TextEquiv conf="0.76161"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c74"> + <Coords points="413,465 424,465 424,486 413,486"/> + <TextEquiv conf="0.70436"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c76"> + <Coords points="428,466 443,466 443,487 428,487"/> + <TextEquiv conf="0.79354"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c78"> + <Coords points="453,480 462,480 462,493 453,493"/> + <TextEquiv conf="0.93265"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69068"> + <Unicode>ſagen,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w22" language="German" readingDirection="left-to-right"> + <Coords points="528,460 542,460 542,494 528,494 528,488 492,488 492,462 528,462"/> + <Glyph id="c80"> + <Coords points="492,462 505,462 505,488 492,488"/> + <TextEquiv conf="0.78044"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c82"> + <Coords points="509,468 523,468 523,488 509,488"/> + <TextEquiv conf="0.63475"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c84"> + <Coords points="528,460 542,460 542,494 528,494"/> + <TextEquiv conf="0.81577"> + <Unicode>ß</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.63475"> + <Unicode>daß</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w26" language="German" readingDirection="left-to-right"> + <Coords points="564,466 575,466 575,467 590,467 590,487 564,487"/> + <Glyph id="c27"> + <Coords points="564,466 575,466 575,487 564,487"/> + <TextEquiv conf="0.81638"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c87"> + <Coords points="578,467 590,467 590,487 578,487"/> + <TextEquiv conf="0.83546"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.81638"> + <Unicode>er</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w29" language="German" readingDirection="left-to-right"> + <Coords points="608,460 622,460 622,462 658,462 658,487 608,487"/> + <Glyph id="c30"> + <Coords points="608,460 622,460 622,487 608,487"/> + <TextEquiv conf="0.85168"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c90"> + <Coords points="626,466 641,466 641,487 626,487"/> + <TextEquiv conf="0.62393"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c92"> + <Coords points="645,462 658,462 658,487 645,487"/> + <TextEquiv conf="0.76629"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.62393"> + <Unicode>das</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w33" language="German" readingDirection="left-to-right"> + <Coords points="675,460 822,460 822,467 871,467 871,489 822,489 822,494 736,494 736,489 675,489"/> + <Glyph id="c34"> + <Coords points="675,460 703,460 703,489 675,489"/> + <TextEquiv conf="0.69798"> + <Unicode>V</Unicode></TextEquiv></Glyph> + <Glyph id="c95"> + <Coords points="706,466 718,466 718,487 706,487"/> + <TextEquiv conf="0.76922"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c97"> + <Coords points="721,468 732,468 732,487 721,487"/> + <TextEquiv conf="0.82046"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c99"> + <Coords points="736,460 746,460 746,494 736,494"/> + <TextEquiv conf="0.71052"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c38"> + <Coords points="744,468 760,468 760,494 744,494"/> + <TextEquiv conf="0.85039"> + <Unicode>p</Unicode></TextEquiv></Glyph> + <Glyph id="c102"> + <Coords points="764,468 777,468 777,489 764,489"/> + <TextEquiv conf="0.78193"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c104"> + <Coords points="780,468 792,468 792,488 780,488"/> + <TextEquiv conf="0.89800"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c106"> + <Coords points="796,460 822,460 822,494 796,494"/> + <TextEquiv conf="0.82949"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c108"> + <Coords points="823,467 835,467 835,489 823,489"/> + <TextEquiv conf="0.78273"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c43"> + <Coords points="838,467 854,467 854,489 838,489"/> + <TextEquiv conf="0.80730"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c44"> + <Coords points="858,467 871,467 871,489 858,489"/> + <TextEquiv conf="0.82663"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69798"> + <Unicode>Verſproene</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>melswien zu ſagen, daß er das Verſproene</Unicode></TextEquiv></TextLine> + <TextLine id="l12"> + <Coords points="189,505 328,505 328,506 415,506 415,508 553,508 553,507 567,507 567,510 593,510 593,515 723,515 723,509 738,509 738,507 764,507 764,511 854,511 854,517 869,517 869,540 802,540 802,543 738,543 738,538 631,538 631,543 617,543 617,538 487,538 487,537 363,537 363,540 350,540 350,535 213,535 213,538 150,538 150,541 133,541 133,513 154,513 154,507 189,507"/> + <Word id="w112" language="German" readingDirection="left-to-right"> + <Coords points="189,505 213,505 213,538 150,538 150,541 133,541 133,513 154,513 154,507 189,507"/> + <Glyph id="c114"> + <Coords points="133,513 150,513 150,541 133,541"/> + <TextEquiv conf="0.77811"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c116"> + <Coords points="154,507 161,507 161,535 154,535"/> + <TextEquiv conf="0.90902"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c118"> + <Coords points="164,514 175,514 175,535 164,535"/> + <TextEquiv conf="0.86294"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c120"> + <Coords points="178,508 185,508 185,535 178,535"/> + <TextEquiv conf="0.87351"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c122"> + <Coords points="189,505 213,505 213,538 189,538"/> + <TextEquiv conf="0.84207"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.77811"> + <Unicode>glei</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w124" language="German" readingDirection="left-to-right"> + <Coords points="238,507 251,507 251,512 286,512 286,531 265,531 265,532 251,532 251,533 238,533"/> + <Glyph id="c126"> + <Coords points="238,507 251,507 251,533 238,533"/> + <TextEquiv conf="0.82464"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c128"> + <Coords points="256,513 265,513 265,532 256,532"/> + <TextEquiv conf="0.74946"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c130"> + <Coords points="269,512 286,512 286,531 269,531"/> + <TextEquiv conf="0.75693"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74946"> + <Unicode>den</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w132" language="German" readingDirection="left-to-right"> + <Coords points="301,505 328,505 328,506 415,506 415,508 463,508 463,537 363,537 363,540 350,540 350,535 301,535"/> + <Glyph id="c134"> + <Coords points="301,505 328,505 328,535 301,535"/> + <TextEquiv conf="0.74360"> + <Unicode>A</Unicode></TextEquiv></Glyph> + <Glyph id="c136"> + <Coords points="330,512 347,512 347,533 330,533"/> + <TextEquiv conf="0.86690"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c15"> + <Coords points="350,513 363,513 363,540 350,540"/> + <TextEquiv conf="0.83730"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c139"> + <Coords points="367,514 378,514 378,535 367,535"/> + <TextEquiv conf="0.78025"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c141"> + <Coords points="382,515 397,515 397,536 382,536"/> + <TextEquiv conf="0.85364"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c143"> + <Coords points="402,506 415,506 415,536 402,536"/> + <TextEquiv conf="0.82963"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c145"> + <Coords points="418,508 426,508 426,537 418,537"/> + <TextEquiv conf="0.76089"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c147"> + <Coords points="430,509 436,509 436,536 430,536"/> + <TextEquiv conf="0.75730"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c149"> + <Coords points="440,508 463,508 463,537 440,537"/> + <TextEquiv conf="0.75571"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74360"> + <Unicode>Augenbli</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w151" language="German" readingDirection="left-to-right"> + <Coords points="553,507 567,507 567,510 593,510 593,515 645,515 645,517 665,517 665,537 631,537 631,543 617,543 617,538 487,538 487,508 553,508"/> + <Glyph id="c153"> + <Coords points="487,508 503,508 503,538 487,538"/> + <TextEquiv conf="0.75665"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c155"> + <Coords points="507,508 520,508 520,538 507,538"/> + <TextEquiv conf="0.85321"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c157"> + <Coords points="524,517 536,517 536,537 524,537"/> + <TextEquiv conf="0.81267"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c159"> + <Coords points="538,516 551,516 551,537 538,537"/> + <TextEquiv conf="0.86010"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c161"> + <Coords points="553,507 567,507 567,537 553,537"/> + <TextEquiv conf="0.85329"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c163"> + <Coords points="571,516 583,516 583,537 571,537"/> + <TextEquiv conf="0.79465"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c165"> + <Coords points="586,510 593,510 593,537 586,537"/> + <TextEquiv conf="0.70828"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c167"> + <Coords points="597,516 613,516 613,537 597,537"/> + <TextEquiv conf="0.89573"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c169"> + <Coords points="617,516 631,516 631,543 617,543"/> + <TextEquiv conf="0.83986"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c171"> + <Coords points="634,515 645,515 645,536 634,536"/> + <TextEquiv conf="0.71743"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c173"> + <Coords points="650,517 665,517 665,537 650,537"/> + <TextEquiv conf="0.75062"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.70828"> + <Unicode>berbringen</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w175" language="German" readingDirection="left-to-right"> + <Coords points="738,507 764,507 764,515 777,515 777,517 792,517 792,531 802,531 802,543 738,543 738,538 693,538 693,517 723,517 723,509 738,509"/> + <Glyph id="c177"> + <Coords points="693,517 718,517 718,538 693,538"/> + <TextEquiv conf="0.83211"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c179"> + <Coords points="723,509 736,509 736,537 723,537"/> + <TextEquiv conf="0.74706"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c181"> + <Coords points="738,507 764,507 764,543 738,543"/> + <TextEquiv conf="0.75061"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c183"> + <Coords points="768,515 777,515 777,539 768,539"/> + <TextEquiv conf="0.86418"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c185"> + <Coords points="781,517 792,517 792,537 781,537"/> + <TextEquiv conf="0.81924"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c187"> + <Coords points="794,531 802,531 802,543 794,543"/> + <TextEquiv conf="0.96890"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74706"> + <Unicode>mte,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w41" language="German" readingDirection="left-to-right"> + <Coords points="847,511 854,511 854,517 869,517 869,540 858,540 858,539 829,539 829,512 847,512"/> + <Glyph id="c189"> + <Coords points="829,512 844,512 844,539 829,539"/> + <TextEquiv conf="0.88091"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c191"> + <Coords points="847,511 854,511 854,539 847,539"/> + <TextEquiv conf="0.81469"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c193"> + <Coords points="858,517 869,517 869,540 858,540"/> + <TextEquiv conf="0.84284"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.81469"> + <Unicode>die</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>glei den Augenbli berbringen mte, die</Unicode></TextEquiv></TextLine> + <TextLine id="l13"> + <Coords points="325,551 340,551 340,558 455,558 455,555 470,555 470,558 664,558 664,557 692,557 692,562 808,562 808,560 830,560 830,567 858,567 858,581 869,581 869,597 859,597 859,595 692,595 692,597 677,597 677,594 548,594 548,595 451,595 451,597 435,597 435,587 384,587 384,586 363,586 363,583 155,583 155,590 131,590 131,554 224,554 224,553 325,553"/> + <Word id="w195" language="German" readingDirection="left-to-right"> + <Coords points="131,554 155,554 155,561 207,561 207,582 155,582 155,590 131,590"/> + <Glyph id="c197"> + <Coords points="131,554 155,554 155,590 131,590"/> + <TextEquiv conf="0.81259"> + <Unicode>F</Unicode></TextEquiv></Glyph> + <Glyph id="c199"> + <Coords points="157,562 169,562 169,582 157,582"/> + <TextEquiv conf="0.82264"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c201"> + <Coords points="172,562 187,562 187,582 172,582"/> + <TextEquiv conf="0.81917"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c203"> + <Coords points="191,561 207,561 207,582 191,582"/> + <TextEquiv conf="0.82070"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.81259"> + <Unicode>Frau</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w7" language="German" readingDirection="left-to-right"> + <Coords points="325,551 340,551 340,558 392,558 392,565 412,565 412,586 392,586 392,587 384,587 384,586 363,586 363,583 224,583 224,553 325,553"/> + <Glyph id="c205"> + <Coords points="224,553 250,553 250,583 224,583"/> + <TextEquiv conf="0.72094"> + <Unicode>A</Unicode></TextEquiv></Glyph> + <Glyph id="c207"> + <Coords points="252,562 278,562 278,582 252,582"/> + <TextEquiv conf="0.80405"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c209"> + <Coords points="283,561 292,561 292,583 283,583"/> + <TextEquiv conf="0.81141"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c211"> + <Coords points="295,561 321,561 321,583 295,583"/> + <TextEquiv conf="0.82492"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c213"> + <Coords points="325,551 340,551 340,583 325,583"/> + <TextEquiv conf="0.78478"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c215"> + <Coords points="343,562 359,562 359,583 343,583"/> + <TextEquiv conf="0.83247"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c217"> + <Coords points="363,564 379,564 379,586 363,586"/> + <TextEquiv conf="0.86555"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c219"> + <Coords points="384,558 392,558 392,587 384,587"/> + <TextEquiv conf="0.79899"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c221"> + <Coords points="395,565 412,565 412,586 395,586"/> + <TextEquiv conf="0.86251"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72094"> + <Unicode>Amtmnnin</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w17" language="German" readingDirection="left-to-right"> + <Coords points="455,555 470,555 470,563 496,563 496,566 511,566 511,586 496,586 496,587 451,587 451,597 435,597 435,558 455,558"/> + <Glyph id="c223"> + <Coords points="435,558 451,558 451,597 435,597"/> + <TextEquiv conf="0.81524"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c225"> + <Coords points="455,555 470,555 470,587 455,587"/> + <TextEquiv conf="0.75016"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c227"> + <Coords points="474,563 484,563 484,587 474,587"/> + <TextEquiv conf="0.79488"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c229"> + <Coords points="487,563 496,563 496,587 487,587"/> + <TextEquiv conf="0.85811"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c231"> + <Coords points="499,566 511,566 511,586 499,586"/> + <TextEquiv conf="0.83136"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75016"> + <Unicode>htte</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w23" language="German" readingDirection="left-to-right"> + <Coords points="530,558 576,558 576,593 548,593 548,595 530,595"/> + <Glyph id="c233"> + <Coords points="530,558 548,558 548,595 530,595"/> + <TextEquiv conf="0.81399"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c235"> + <Coords points="550,558 576,558 576,593 550,593"/> + <TextEquiv conf="0.85105"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.81399"> + <Unicode></Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w237" language="German" readingDirection="left-to-right"> + <Coords points="638,559 651,559 651,594 638,594 638,587 599,587 599,565 638,565"/> + <Glyph id="c239"> + <Coords points="599,565 616,565 616,587 599,587"/> + <TextEquiv conf="0.86619"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c241"> + <Coords points="619,566 635,566 635,587 619,587"/> + <TextEquiv conf="0.85601"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c243"> + <Coords points="638,559 651,559 651,594 638,594"/> + <TextEquiv conf="0.90154"> + <Unicode>f</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.85601"> + <Unicode>auf</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w245" language="German" readingDirection="left-to-right"> + <Coords points="664,557 692,557 692,565 713,565 713,587 692,587 692,597 677,597 677,587 664,587"/> + <Glyph id="c247"> + <Coords points="664,557 673,557 673,587 664,587"/> + <TextEquiv conf="0.86188"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c249"> + <Coords points="677,557 692,557 692,597 677,597"/> + <TextEquiv conf="0.78219"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c251"> + <Coords points="696,565 713,565 713,587 696,587"/> + <TextEquiv conf="0.87377"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.78219"> + <Unicode>ihn</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w253" language="German" readingDirection="left-to-right"> + <Coords points="808,560 830,560 830,567 858,567 858,581 869,581 869,597 859,597 859,595 789,595 789,588 749,588 749,587 730,587 730,564 779,564 779,562 808,562"/> + <Glyph id="c255"> + <Coords points="730,564 745,564 745,587 730,587"/> + <TextEquiv conf="0.83469"> + <Unicode>v</Unicode></TextEquiv></Glyph> + <Glyph id="c257"> + <Coords points="749,566 760,566 760,588 749,588"/> + <TextEquiv conf="0.82584"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c259"> + <Coords points="763,567 775,567 775,588 763,588"/> + <TextEquiv conf="0.80972"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c261"> + <Coords points="779,562 785,562 785,588 779,588"/> + <TextEquiv conf="0.75773"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c263"> + <Coords points="789,568 805,568 805,595 789,595"/> + <TextEquiv conf="0.75762"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c265"> + <Coords points="808,560 830,560 830,594 808,594"/> + <TextEquiv conf="0.84869"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c267"> + <Coords points="827,567 838,567 838,588 827,588"/> + <TextEquiv conf="0.83288"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c269"> + <Coords points="841,567 858,567 858,588 841,588"/> + <TextEquiv conf="0.85809"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c271"> + <Coords points="859,581 869,581 869,597 859,597"/> + <TextEquiv conf="0.95823"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75762"> + <Unicode>verlaen,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>Frau Amtmnnin htte  auf ihn verlaen,</Unicode></TextEquiv></TextLine> + <TextLine id="l14"> + <Coords points="435,603 448,603 448,607 527,607 527,613 631,613 631,611 671,611 671,609 780,609 780,616 869,616 869,639 834,639 834,644 767,644 767,643 671,643 671,637 559,637 559,643 550,643 550,642 433,642 433,643 414,643 414,642 344,642 344,634 325,634 325,633 153,633 153,634 132,634 132,609 174,609 174,605 188,605 188,611 297,611 297,610 325,610 325,605 435,605"/> + <Word id="w273" language="German" readingDirection="left-to-right"> + <Coords points="174,605 188,605 188,632 153,632 153,634 132,634 132,609 174,609"/> + <Glyph id="c275"> + <Coords points="132,609 153,609 153,634 132,634"/> + <TextEquiv conf="0.69472"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c277"> + <Coords points="153,610 174,610 174,632 153,632"/> + <TextEquiv conf="0.79421"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c279"> + <Coords points="174,605 188,605 188,632 174,632"/> + <TextEquiv conf="0.85457"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69472"> + <Unicode>und</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w6" language="German" readingDirection="left-to-right"> + <Coords points="217,611 275,611 275,633 237,633 237,632 217,632"/> + <Glyph id="c281"> + <Coords points="217,611 233,611 233,632 217,632"/> + <TextEquiv conf="0.89967"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c283"> + <Coords points="237,612 253,612 253,633 237,633"/> + <TextEquiv conf="0.86568"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c285"> + <Coords points="257,611 275,611 275,633 257,633"/> + <TextEquiv conf="0.87952"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.86568"> + <Unicode>nun</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w10" language="German" readingDirection="left-to-right"> + <Coords points="325,605 341,605 341,606 358,606 358,613 370,613 370,615 385,615 385,636 358,636 358,642 344,642 344,634 325,634 325,633 297,633 297,610 325,610"/> + <Glyph id="c287"> + <Coords points="297,610 321,610 321,633 297,633"/> + <TextEquiv conf="0.88191"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c289"> + <Coords points="325,605 341,605 341,634 325,634"/> + <TextEquiv conf="0.62584"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c291"> + <Coords points="344,606 358,606 358,642 344,642"/> + <TextEquiv conf="0.81252"> + <Unicode>ß</Unicode></TextEquiv></Glyph> + <Glyph id="c293"> + <Coords points="362,613 370,613 370,636 362,636"/> + <TextEquiv conf="0.79687"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c295"> + <Coords points="374,615 385,615 385,636 374,636"/> + <TextEquiv conf="0.90548"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.62584"> + <Unicode>wßte</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w16" language="German" readingDirection="left-to-right"> + <Coords points="435,603 448,603 448,637 433,637 433,643 414,643 414,608 435,608"/> + <Glyph id="c297"> + <Coords points="414,608 433,608 433,643 414,643"/> + <TextEquiv conf="0.81184"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c299"> + <Coords points="435,603 448,603 448,637 435,637"/> + <TextEquiv conf="0.60769"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.60769"> + <Unicode>e</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w20" language="German" readingDirection="left-to-right"> + <Coords points="503,607 527,607 527,613 541,613 541,629 559,629 559,643 550,643 550,642 503,642 503,637 472,637 472,616 492,616 492,609 503,609"/> + <Glyph id="c303"> + <Coords points="472,616 489,616 489,637 472,637"/> + <TextEquiv conf="0.84956"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c305"> + <Coords points="492,609 500,609 500,637 492,637"/> + <TextEquiv conf="0.83295"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c307"> + <Coords points="503,607 527,607 527,642 503,642"/> + <TextEquiv conf="0.84246"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c309"> + <Coords points="531,613 541,613 541,636 531,636"/> + <TextEquiv conf="0.79185"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c311"> + <Coords points="550,629 559,629 559,643 550,643"/> + <TextEquiv conf="0.93453"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.79185"> + <Unicode>nit,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w313" language="German" readingDirection="left-to-right"> + <Coords points="631,611 646,611 646,636 629,636 629,637 613,637 613,636 585,636 585,613 631,613"/> + <Glyph id="c315"> + <Coords points="585,613 610,613 610,636 585,636"/> + <TextEquiv conf="0.86913"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c317"> + <Coords points="613,616 629,616 629,637 613,637"/> + <TextEquiv conf="0.89154"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c319"> + <Coords points="631,611 646,611 646,636 631,636"/> + <TextEquiv conf="0.77958"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.77958"> + <Unicode>was</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w321" language="German" readingDirection="left-to-right"> + <Coords points="671,609 688,609 688,615 702,615 702,637 688,637 688,643 671,643"/> + <Glyph id="c323"> + <Coords points="671,609 688,609 688,643 671,643"/> + <TextEquiv conf="0.79448"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c325"> + <Coords points="691,615 702,615 702,637 691,637"/> + <TextEquiv conf="0.91057"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.79448"> + <Unicode>e</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w327" language="German" readingDirection="left-to-right"> + <Coords points="767,609 780,609 780,616 869,616 869,639 834,639 834,644 767,644 767,637 747,637 747,636 727,636 727,615 767,615"/> + <Glyph id="c329"> + <Coords points="727,615 744,615 744,636 727,636"/> + <TextEquiv conf="0.86330"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c331"> + <Coords points="747,616 764,616 764,637 747,637"/> + <TextEquiv conf="0.81493"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c333"> + <Coords points="767,609 780,609 780,644 767,644"/> + <TextEquiv conf="0.83340"> + <Unicode>f</Unicode></TextEquiv></Glyph> + <Glyph id="c335"> + <Coords points="780,617 797,617 797,638 780,638"/> + <TextEquiv conf="0.80822"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c337"> + <Coords points="800,617 817,617 817,638 800,638"/> + <TextEquiv conf="0.63127"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c341"> + <Coords points="819,617 834,617 834,644 819,644"/> + <TextEquiv conf="0.83403"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c343"> + <Coords points="837,617 849,617 849,638 837,638"/> + <TextEquiv conf="0.83633"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c345"> + <Coords points="852,616 869,616 869,639 852,639"/> + <TextEquiv conf="0.86528"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.63127"> + <Unicode>anfangen</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>und nun wßte e nit, was e anfangen</Unicode></TextEquiv></TextLine> + <TextLine id="l15"> + <Coords points="132,653 145,653 145,654 177,654 177,659 188,659 188,662 290,662 290,655 323,655 323,657 489,657 489,656 503,656 503,657 594,657 594,658 625,658 625,663 737,663 737,657 750,657 750,666 822,666 822,667 858,667 858,679 868,679 868,693 859,693 859,688 827,688 827,687 594,687 594,692 580,692 580,686 451,686 451,691 437,691 437,685 387,685 387,683 214,683 214,686 145,686 145,689 132,689"/> + <Word id="w347" language="German" readingDirection="left-to-right"> + <Coords points="132,653 145,653 145,654 177,654 177,659 188,659 188,662 203,662 203,678 214,678 214,686 145,686 145,689 132,689"/> + <Glyph id="c349"> + <Coords points="132,653 145,653 145,689 132,689"/> + <TextEquiv conf="0.90107"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c351"> + <Coords points="143,662 156,662 156,683 143,683"/> + <TextEquiv conf="0.83153"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c353"> + <Coords points="160,654 177,654 177,684 160,684"/> + <TextEquiv conf="0.83913"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c355"> + <Coords points="180,659 188,659 188,683 180,683"/> + <TextEquiv conf="0.82032"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c357"> + <Coords points="192,662 203,662 203,683 192,683"/> + <TextEquiv conf="0.81250"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c359"> + <Coords points="206,678 214,678 214,686 206,686"/> + <TextEquiv conf="0.83006"> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.44962"> + <Unicode>ſote.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w363" language="German" readingDirection="left-to-right"> + <Coords points="290,655 323,655 323,662 337,662 337,663 358,663 358,683 290,683"/> + <Glyph id="c365"> + <Coords points="290,655 323,655 323,683 290,683"/> + <TextEquiv conf="0.77633"> + <Unicode>D</Unicode></TextEquiv></Glyph> + <Glyph id="c367"> + <Coords points="327,662 337,662 337,682 327,682"/> + <TextEquiv conf="0.75732"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c369"> + <Coords points="340,663 358,663 358,683 340,683"/> + <TextEquiv conf="0.83778"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75732"> + <Unicode>Den</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w14" language="German" readingDirection="left-to-right"> + <Coords points="489,656 503,656 503,657 551,657 551,685 514,685 514,686 451,686 451,691 437,691 437,685 387,685 387,657 489,657"/> + <Glyph id="c371"> + <Coords points="387,657 414,657 414,685 387,685"/> + <TextEquiv conf="0.76383"> + <Unicode>A</Unicode></TextEquiv></Glyph> + <Glyph id="c373"> + <Coords points="417,665 432,665 432,684 417,684"/> + <TextEquiv conf="0.82903"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c375"> + <Coords points="437,665 451,665 451,691 437,691"/> + <TextEquiv conf="0.79390"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c377"> + <Coords points="455,664 465,664 465,684 455,684"/> + <TextEquiv conf="0.87798"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c379"> + <Coords points="469,665 485,665 485,685 469,685"/> + <TextEquiv conf="0.80330"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c381"> + <Coords points="489,656 503,656 503,684 489,684"/> + <TextEquiv conf="0.88135"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c383"> + <Coords points="506,658 514,658 514,686 506,686"/> + <TextEquiv conf="0.90900"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c385"> + <Coords points="516,658 524,658 524,685 516,685"/> + <TextEquiv conf="0.81731"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c387"> + <Coords points="537,657 551,657 551,685 528,685 528,664 537,664"/> + <TextEquiv conf="0.87359"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74983"> + <Unicode>Augenbli</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w25" language="German" readingDirection="left-to-right"> + <Coords points="580,657 594,657 594,658 625,658 625,663 636,663 636,665 651,665 651,685 625,685 625,686 594,686 594,692 580,692"/> + <Glyph id="c393"> + <Coords points="580,657 594,657 594,692 580,692"/> + <TextEquiv conf="0.89818"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c395"> + <Coords points="591,666 603,666 603,685 591,685"/> + <TextEquiv conf="0.87966"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c397"> + <Coords points="608,658 625,658 625,686 608,686"/> + <TextEquiv conf="0.89074"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c399"> + <Coords points="627,663 636,663 636,685 627,685"/> + <TextEquiv conf="0.82771"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c401"> + <Coords points="639,665 651,665 651,685 639,685"/> + <TextEquiv conf="0.82185"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.70672"> + <Unicode>ſote</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w32" language="German" readingDirection="left-to-right"> + <Coords points="682,665 709,665 709,686 692,686 692,687 682,687"/> + <Glyph id="c403"> + <Coords points="682,665 692,665 692,687 682,687"/> + <TextEquiv conf="0.85040"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c405"> + <Coords points="696,665 709,665 709,686 696,686"/> + <TextEquiv conf="0.87954"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.85040"> + <Unicode>er</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w35" language="German" readingDirection="left-to-right"> + <Coords points="737,657 750,657 750,666 822,666 822,667 858,667 858,679 868,679 868,693 859,693 859,688 827,688 827,687 769,687 769,686 752,686 752,685 737,685"/> + <Glyph id="c407"> + <Coords points="737,657 750,657 750,685 737,685"/> + <TextEquiv conf="0.79499"> + <Unicode>k</Unicode></TextEquiv></Glyph> + <Glyph id="c409"> + <Coords points="752,669 765,669 765,686 752,686"/> + <TextEquiv conf="0.75371"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c411"> + <Coords points="769,666 794,666 794,687 769,687"/> + <TextEquiv conf="0.89726"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c413"> + <Coords points="798,666 822,666 822,687 798,687"/> + <TextEquiv conf="0.86998"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c415"> + <Coords points="827,667 838,667 838,688 827,688"/> + <TextEquiv conf="0.76112"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c417"> + <Coords points="841,667 858,667 858,688 841,688"/> + <TextEquiv conf="0.86190"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c419"> + <Coords points="859,679 868,679 868,693 859,693"/> + <TextEquiv conf="0.75547"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75371"> + <Unicode>kommen,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>ſote. Den Augenbli ſote er kommen,</Unicode></TextEquiv></TextLine> + <TextLine id="l16"> + <Coords points="289,700 296,700 296,704 391,704 391,706 500,706 500,705 610,705 610,706 670,706 670,717 810,717 810,706 843,706 843,708 853,708 853,714 869,714 869,734 810,734 810,725 670,725 670,727 679,727 679,734 670,734 670,738 632,738 632,732 515,732 515,737 500,737 500,731 388,731 388,736 200,736 200,738 132,738 132,703 145,703 145,705 289,705"/> + <Word id="w18" language="German" readingDirection="left-to-right"> + <Coords points="375,704 391,704 391,711 405,711 405,729 391,729 391,731 388,731 388,736 375,736"/> + <Glyph id="c453"> + <Coords points="375,704 391,704 391,731 388,731 388,736 375,736"/> + <TextEquiv conf="0.71967"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c457"> + <Coords points="395,711 405,711 405,729 395,729"/> + <TextEquiv conf="0.63427"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.59618"> + <Unicode>e</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w459" language="German" readingDirection="left-to-right"> + <Coords points="430,706 437,706 437,712 458,712 458,730 430,730"/> + <Glyph id="c461"> + <Coords points="430,706 437,706 437,730 430,730"/> + <TextEquiv conf="0.90932"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c463"> + <Coords points="443,712 458,712 458,730 443,730"/> + <TextEquiv conf="0.78817"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.78817"> + <Unicode>in</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w465" language="German" readingDirection="left-to-right"> + <Coords points="500,705 515,705 515,712 561,712 561,730 545,730 545,731 515,731 515,737 500,737 500,731 488,731 488,706 500,706"/> + <Glyph id="c467"> + <Coords points="488,706 500,706 500,731 488,731"/> + <TextEquiv conf="0.75617"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c469"> + <Coords points="500,705 515,705 515,737 500,737"/> + <TextEquiv conf="0.81226"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c471"> + <Coords points="519,712 531,712 531,731 519,731"/> + <TextEquiv conf="0.82490"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c473"> + <Coords points="534,712 545,712 545,731 534,731"/> + <TextEquiv conf="0.77567"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c475"> + <Coords points="549,712 561,712 561,730 549,730"/> + <TextEquiv conf="0.81074"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75617"> + <Unicode>ihrer</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w31" language="German" readingDirection="left-to-right"> + <Coords points="584,705 610,705 610,706 670,706 670,727 679,727 679,734 670,734 670,738 632,738 632,732 584,732"/> + <Glyph id="c477"> + <Coords points="584,705 610,705 610,732 584,732"/> + <TextEquiv conf="0.75753"> + <Unicode>A</Unicode></TextEquiv></Glyph> + <Glyph id="c479"> + <Coords points="612,712 628,712 628,731 612,731"/> + <TextEquiv conf="0.85713"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c481"> + <Coords points="632,713 646,713 646,738 632,738"/> + <TextEquiv conf="0.83868"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c483"> + <Coords points="651,706 670,706 670,738 651,738"/> + <TextEquiv conf="0.83102"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c485"> + <Coords points="672,727 679,727 679,734 672,734"/> + <TextEquiv conf="0.86399"> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75753"> + <Unicode>Ang.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w37" language="German" readingDirection="left-to-right"> + <Coords points="707,717 758,717 758,725 707,725"/> + <Glyph id="c489"> + <Coords points="707,717 758,717 758,725 707,725"/> + <TextEquiv conf="0.65354"> + <Unicode>—</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.34845"> + <Unicode>—</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w493" language="German" readingDirection="left-to-right"> + <Coords points="810,706 843,706 843,708 853,708 853,714 869,714 869,734 810,734"/> + <Glyph id="c495"> + <Coords points="810,706 843,706 843,734 810,734"/> + <TextEquiv conf="0.80822"> + <Unicode>D</Unicode></TextEquiv></Glyph> + <Glyph id="c497"> + <Coords points="846,708 853,708 853,734 846,734"/> + <TextEquiv conf="0.73804"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c499"> + <Coords points="856,714 869,714 869,734 856,734"/> + <TextEquiv conf="0.90323"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.73804"> + <Unicode>Die</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1958" language="German" readingDirection="left-to-right"> + <Coords points="132,703 145,703 145,705 200,705 200,738 132,738"/> + <Glyph id="c423"> + <Coords points="132,703 145,703 145,738 132,738"/> + <TextEquiv conf="0.90635"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c425"> + <Coords points="145,712 156,712 156,732 145,732"/> + <TextEquiv conf="0.82676"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c427"> + <Coords points="161,712 177,712 177,732 161,732"/> + <TextEquiv conf="0.75355"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c429"> + <Coords points="181,705 200,705 200,738 181,738"/> + <TextEquiv conf="0.82048"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>ſon</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1959" language="German" readingDirection="left-to-right"> + <Coords points="289,700 296,700 296,710 311,710 311,711 349,711 349,736 271,736 271,735 243,735 243,731 222,731 222,708 289,708"/> + <Glyph id="c435"> + <Coords points="222,708 238,708 238,731 222,731"/> + <TextEquiv conf="0.81159"> + <Unicode>v</Unicode></TextEquiv></Glyph> + <Glyph id="c437"> + <Coords points="243,710 253,710 253,735 243,735"/> + <TextEquiv conf="0.78373"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c439"> + <Coords points="256,709 270,709 270,730 256,730"/> + <TextEquiv conf="0.66507"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c443"> + <Coords points="271,710 285,710 285,736 271,736"/> + <TextEquiv conf="0.78970"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c445"> + <Coords points="289,700 296,700 296,730 289,730"/> + <TextEquiv conf="0.74451"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c447"> + <Coords points="300,710 311,710 311,728 300,728"/> + <TextEquiv conf="0.77809"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c449"> + <Coords points="315,711 330,711 330,730 315,730"/> + <TextEquiv conf="0.75578"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c451"> + <Coords points="335,711 349,711 349,736 335,736"/> + <TextEquiv conf="0.77976"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>vergieng</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>ſon vergieng e in ihrer Ang. — Die</Unicode></TextEquiv></TextLine> + <TextLine id="l17"> + <Coords points="267,747 282,747 282,750 362,750 362,751 381,751 381,757 507,757 507,751 518,751 518,757 710,757 710,753 788,753 788,752 800,752 800,753 830,753 830,754 842,754 842,758 854,758 854,760 869,760 869,783 830,783 830,791 815,791 815,788 788,788 788,781 646,781 646,786 636,786 636,779 612,779 612,778 489,778 489,785 475,785 475,784 358,784 358,783 348,783 348,778 226,778 226,779 203,779 203,786 190,786 190,781 135,781 135,751 172,751 172,749 267,749"/> + <Word id="w501" language="German" readingDirection="left-to-right"> + <Coords points="172,749 185,749 185,752 203,752 203,758 226,758 226,779 203,779 203,786 190,786 190,781 135,781 135,751 172,751"/> + <Glyph id="c503"> + <Coords points="135,751 167,751 167,781 135,781"/> + <TextEquiv conf="0.74674"> + <Unicode>G</Unicode></TextEquiv></Glyph> + <Glyph id="c505"> + <Coords points="172,749 185,749 185,780 172,780"/> + <TextEquiv conf="0.74037"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c507"> + <Coords points="190,752 203,752 203,759 208,759 208,778 203,778 203,786 190,786"/> + <TextEquiv conf="0.72476"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c511"> + <Coords points="211,758 226,758 226,779 211,779"/> + <TextEquiv conf="0.54722"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.54722"> + <Unicode>Ge</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w513" language="German" readingDirection="left-to-right"> + <Coords points="267,747 282,747 282,756 330,756 330,775 311,775 311,777 263,777 263,778 240,778 240,757 267,757"/> + <Glyph id="c515"> + <Coords points="240,757 263,757 263,778 240,778"/> + <TextEquiv conf="0.73661"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c517"> + <Coords points="267,747 282,747 282,776 267,776"/> + <TextEquiv conf="0.69234"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c519"> + <Coords points="285,757 297,757 297,776 285,776"/> + <TextEquiv conf="0.65563"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c521"> + <Coords points="300,759 311,759 311,777 300,777"/> + <TextEquiv conf="0.56312"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c523"> + <Coords points="314,756 330,756 330,775 314,775"/> + <TextEquiv conf="0.69455"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.56312"> + <Unicode>wren</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w525" language="German" readingDirection="left-to-right"> + <Coords points="348,750 362,750 362,751 381,751 381,757 420,757 420,777 381,777 381,784 358,784 358,783 348,783"/> + <Glyph id="c527"> + <Coords points="348,750 362,750 362,783 348,783"/> + <TextEquiv conf="0.66078"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c531"> + <Coords points="358,751 381,751 381,784 358,784"/> + <TextEquiv conf="0.66802"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c539"> + <Coords points="386,758 399,758 399,777 386,777"/> + <TextEquiv conf="0.73845"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c541"> + <Coords points="404,757 420,757 420,777 404,777"/> + <TextEquiv conf="0.77675"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.62291"> + <Unicode>ſon</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w543" language="German" readingDirection="left-to-right"> + <Coords points="507,751 518,751 518,757 628,757 628,770 646,770 646,786 636,786 636,779 612,779 612,778 489,778 489,785 475,785 475,777 437,777 437,758 507,758"/> + <Glyph id="c545"> + <Coords points="437,758 452,758 452,777 437,777"/> + <TextEquiv conf="0.72155"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c547"> + <Coords points="456,758 471,758 471,777 456,777"/> + <TextEquiv conf="0.79762"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c549"> + <Coords points="475,759 489,759 489,785 475,785"/> + <TextEquiv conf="0.79532"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c551"> + <Coords points="493,758 504,758 504,777 493,777"/> + <TextEquiv conf="0.80650"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c553"> + <Coords points="507,751 518,751 518,778 507,778"/> + <TextEquiv conf="0.81130"> + <Unicode>k</Unicode></TextEquiv></Glyph> + <Glyph id="c555"> + <Coords points="521,758 534,758 534,777 521,777"/> + <TextEquiv conf="0.87234"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c557"> + <Coords points="538,757 563,757 563,778 538,778"/> + <TextEquiv conf="0.86420"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c559"> + <Coords points="567,757 593,757 593,778 567,778"/> + <TextEquiv conf="0.82836"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c561"> + <Coords points="598,757 609,757 609,778 598,778"/> + <TextEquiv conf="0.85506"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c563"> + <Coords points="612,757 628,757 628,779 612,779"/> + <TextEquiv conf="0.82750"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c565"> + <Coords points="636,770 646,770 646,786 636,786"/> + <TextEquiv conf="0.92026"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72155"> + <Unicode>angekommen,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w567" language="German" readingDirection="left-to-right"> + <Coords points="710,753 725,753 725,781 710,781 710,780 669,780 669,758 710,758"/> + <Glyph id="c569"> + <Coords points="669,758 685,758 685,780 669,780"/> + <TextEquiv conf="0.83921"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c571"> + <Coords points="690,759 705,759 705,780 690,780"/> + <TextEquiv conf="0.78570"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c573"> + <Coords points="710,753 725,753 725,781 710,781"/> + <TextEquiv conf="0.85326"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.78570"> + <Unicode>und</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w39" language="German" readingDirection="left-to-right"> + <Coords points="756,755 771,755 771,780 742,780 742,759 756,759"/> + <Glyph id="c575"> + <Coords points="742,759 754,759 754,780 742,780"/> + <TextEquiv conf="0.83292"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c577"> + <Coords points="756,755 771,755 771,780 756,780"/> + <TextEquiv conf="0.74440"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74440"> + <Unicode>es</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w42" language="German" readingDirection="left-to-right"> + <Coords points="788,752 800,752 800,753 830,753 830,754 842,754 842,758 854,758 854,760 869,760 869,783 830,783 830,791 815,791 815,788 788,788"/> + <Glyph id="c579"> + <Coords points="788,752 800,752 800,788 788,788"/> + <TextEquiv conf="0.72874"> + <Unicode>f</Unicode></TextEquiv></Glyph> + <Glyph id="c581"> + <Coords points="801,760 812,760 812,781 801,781"/> + <TextEquiv conf="0.82842"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c45"> + <Coords points="815,753 830,753 830,791 815,791"/> + <TextEquiv conf="0.76562"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c584"> + <Coords points="835,754 842,754 842,782 835,782"/> + <TextEquiv conf="0.85813"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c47"> + <Coords points="845,758 854,758 854,783 845,783"/> + <TextEquiv conf="0.70176"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c587"> + <Coords points="856,760 869,760 869,783 856,783"/> + <TextEquiv conf="0.90020"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.70176"> + <Unicode>fehlte</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>Ge wren ſon angekommen, und es fehlte</Unicode></TextEquiv></TextLine> + <TextEquiv> + <Unicode>ber die vielen Sorgen wegen deelben vergaß +Hartkopf, der Frau Amtmnnin das ver⸗ +ſproene zu berliefern. — Ein Erpreer +wurde an ihn abgeſit, um ihn ums Him⸗ +melswien zu ſagen, daß er das Verfproene +glei den Augenbli berbringen mte, die +Frau Amtmnnin htte  auf ihn verlaen, +und nun wßte e nit, was e anfangen +ſote. Den Augembli ſote er kommen, +ſon vergieng e in ihrer Ang. — Die +Ge wren ſon angekommen, und es fehlte +ihr do no an aem. —</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></TextRegion> + <TextRegion id="r2" readingDirection="left-to-right" textLineOrder="top-to-bottom" type="paragraph" indented="true" align="justify" primaryLanguage="German"> + <Coords points="289,871 300,871 300,874 532,874 532,873 650,873 650,872 664,872 664,874 699,874 699,882 854,882 854,878 868,878 868,928 870,928 870,1006 868,1006 868,1128 869,1128 869,1166 874,1166 874,1201 810,1201 810,1202 573,1202 573,1236 496,1236 496,1246 414,1246 414,1250 389,1250 389,1245 163,1245 163,1243 131,1243 131,1221 132,1221 132,1051 130,1051 130,980 131,980 131,930 166,930 166,924 179,924 179,873 289,873"/> + <TextLine id="l18"> + <Coords points="289,871 300,871 300,874 532,874 532,873 650,873 650,872 664,872 664,874 699,874 699,882 854,882 854,878 868,878 868,907 790,907 790,911 611,911 611,910 511,910 511,908 260,908 260,910 248,910 248,909 179,909 179,873 289,873"/> + <Word id="w589" language="German" readingDirection="left-to-right"> + <Coords points="289,871 300,871 300,874 369,874 369,907 347,907 347,908 260,908 260,910 248,910 248,909 179,909 179,873 289,873"/> + <Glyph id="c591"> + <Coords points="179,873 213,873 213,909 179,909"/> + <TextEquiv conf="0.65785"> + <Unicode>H</Unicode></TextEquiv></Glyph> + <Glyph id="c593"> + <Coords points="223,880 240,880 240,900 223,900"/> + <TextEquiv conf="0.62778"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c595"> + <Coords points="248,879 260,879 260,910 248,910"/> + <TextEquiv conf="0.56137"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c599"> + <Coords points="270,877 279,877 279,900 270,900"/> + <TextEquiv conf="0.62887"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c601"> + <Coords points="289,871 300,871 300,899 289,899"/> + <TextEquiv conf="0.84237"> + <Unicode>k</Unicode></TextEquiv></Glyph> + <Glyph id="c1982"> + <Coords points="310,880 321,880 321,899 310,899"/> + <TextEquiv> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1984"> + <Coords points="357,874 369,874 369,907 357,907"/> + <TextEquiv> + <Unicode>f</Unicode></TextEquiv></Glyph> + <Glyph id="c1985"> + <Coords points="333,882 347,882 347,908 333,908"/> + <TextEquiv> + <Unicode>p</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.56137"> + <Unicode>Hartkopf</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w605" language="German" readingDirection="left-to-right"> + <Coords points="446,874 460,874 460,879 471,879 471,880 487,880 487,902 460,902 460,908 446,908 446,903 396,903 396,882 446,882"/> + <Glyph id="c607"> + <Coords points="396,882 421,882 421,903 396,903"/> + <TextEquiv conf="0.78914"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c609"> + <Coords points="426,882 441,882 441,903 426,903"/> + <TextEquiv conf="0.80258"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c611"> + <Coords points="446,874 460,874 460,908 446,908"/> + <TextEquiv conf="0.74591"> + <Unicode>ß</Unicode></TextEquiv></Glyph> + <Glyph id="c613"> + <Coords points="465,879 471,879 471,902 465,902"/> + <TextEquiv conf="0.76057"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c615"> + <Coords points="475,880 487,880 487,902 475,902"/> + <TextEquiv conf="0.80505"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74591"> + <Unicode>mußte</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w617" language="German" readingDirection="left-to-right"> + <Coords points="532,873 557,873 557,910 511,910 511,874 532,874"/> + <Glyph id="c619"> + <Coords points="511,874 529,874 529,904 526,904 526,910 511,910"/> + <TextEquiv conf="0.81212"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c623"> + <Coords points="532,873 557,873 557,910 532,910"/> + <TextEquiv conf="0.78768"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74336"> + <Unicode></Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w625" language="German" readingDirection="left-to-right"> + <Coords points="611,875 630,875 630,911 611,911 611,903 581,903 581,881 611,881"/> + <Glyph id="c627"> + <Coords points="581,881 593,881 593,903 581,903"/> + <TextEquiv conf="0.78138"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c629"> + <Coords points="596,881 608,881 608,903 596,903"/> + <TextEquiv conf="0.77291"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c631"> + <Coords points="611,875 630,875 630,911 611,911"/> + <TextEquiv conf="0.77326"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.77291"> + <Unicode>er</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w24" language="German" readingDirection="left-to-right"> + <Coords points="650,872 664,872 664,874 699,874 699,882 754,882 754,883 773,883 773,897 790,897 790,911 682,911 682,903 650,903"/> + <Glyph id="c633"> + <Coords points="650,872 664,872 664,903 650,903"/> + <TextEquiv conf="0.80696"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c635"> + <Coords points="668,883 678,883 678,903 668,903"/> + <TextEquiv conf="0.68657"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c637"> + <Coords points="682,874 699,874 699,911 682,911"/> + <TextEquiv conf="0.79151"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c639"> + <Coords points="702,882 718,882 718,904 702,904"/> + <TextEquiv conf="0.78366"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c641"> + <Coords points="723,882 737,882 737,904 723,904"/> + <TextEquiv conf="0.67989"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c643"> + <Coords points="742,882 754,882 754,904 742,904"/> + <TextEquiv conf="0.78789"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c645"> + <Coords points="757,883 773,883 773,904 757,904"/> + <TextEquiv conf="0.81248"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c647"> + <Coords points="782,897 790,897 790,911 782,911"/> + <TextEquiv conf="0.96113"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.67989"> + <Unicode>bennen,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w649" language="German" readingDirection="left-to-right"> + <Coords points="854,878 868,878 868,907 854,907 854,906 814,906 814,884 834,884 834,883 854,883"/> + <Glyph id="c651"> + <Coords points="814,884 830,884 830,906 814,906"/> + <TextEquiv conf="0.86254"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c653"> + <Coords points="834,883 850,883 850,905 834,905"/> + <TextEquiv conf="0.82806"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c655"> + <Coords points="854,878 868,878 868,907 854,907"/> + <TextEquiv conf="0.82248"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.82248"> + <Unicode>und</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>Hartkopf mußte  er bennen, und</Unicode></TextEquiv></TextLine> + <TextLine id="l19"> + <Coords points="338,1213 352,1213 352,1215 414,1215 414,1218 486,1218 486,1228 573,1228 573,1236 486,1236 486,1238 496,1238 496,1246 414,1246 414,1250 389,1250 389,1245 163,1245 163,1243 131,1243 131,1221 163,1221 163,1216 270,1216 270,1215 338,1215"/> + <Word id="w657" language="German" readingDirection="left-to-right"> + <Coords points="163,1216 169,1216 169,1220 183,1220 183,1244 169,1244 169,1245 163,1245 163,1243 131,1243 131,1221 163,1221"/> + <Glyph id="c659"> + <Coords points="131,1221 157,1221 157,1243 131,1243"/> + <TextEquiv conf="0.86845"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c661"> + <Coords points="163,1216 169,1216 169,1245 163,1245"/> + <TextEquiv conf="0.80820"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c663"> + <Coords points="173,1220 183,1220 183,1244 173,1244"/> + <TextEquiv conf="0.83267"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.80820"> + <Unicode>mit</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w665" language="German" readingDirection="left-to-right"> + <Coords points="238,1218 253,1218 253,1245 238,1245 238,1244 198,1244 198,1223 238,1223"/> + <Glyph id="c667"> + <Coords points="198,1223 214,1223 214,1244 198,1244"/> + <TextEquiv conf="0.83648"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c669"> + <Coords points="218,1223 234,1223 234,1244 218,1244"/> + <TextEquiv conf="0.88806"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c671"> + <Coords points="238,1218 253,1218 253,1245 238,1245"/> + <TextEquiv conf="0.84604"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.83648"> + <Unicode>und</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w673" language="German" readingDirection="left-to-right"> + <Coords points="338,1213 352,1213 352,1215 414,1215 414,1220 427,1220 427,1223 441,1223 441,1244 414,1244 414,1250 389,1250 389,1245 291,1245 291,1244 270,1244 270,1215 338,1215"/> + <Glyph id="c675"> + <Coords points="270,1215 287,1215 287,1244 270,1244"/> + <TextEquiv conf="0.78567"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c677"> + <Coords points="291,1216 304,1216 304,1245 291,1245"/> + <TextEquiv conf="0.76636"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c679"> + <Coords points="309,1223 319,1223 319,1245 309,1245"/> + <TextEquiv conf="0.78462"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c681"> + <Coords points="322,1223 332,1223 332,1245 322,1245"/> + <TextEquiv conf="0.87348"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c683"> + <Coords points="338,1213 352,1213 352,1242 338,1242"/> + <TextEquiv conf="0.88542"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c685"> + <Coords points="355,1223 366,1223 366,1245 355,1245"/> + <TextEquiv conf="0.78417"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c687"> + <Coords points="370,1223 386,1223 386,1244 370,1244"/> + <TextEquiv conf="0.82808"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c689"> + <Coords points="389,1215 414,1215 414,1250 389,1250"/> + <TextEquiv conf="0.86601"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c691"> + <Coords points="419,1220 427,1220 427,1244 419,1244"/> + <TextEquiv conf="0.73453"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c693"> + <Coords points="431,1223 441,1223 441,1244 431,1244"/> + <TextEquiv conf="0.77437"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.67268"> + <Unicode>berbrate</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w697" language="German" readingDirection="left-to-right"> + <Coords points="473,1218 486,1218 486,1238 496,1238 496,1246 489,1246 489,1244 458,1244 458,1222 473,1222"/> + <Glyph id="c699"> + <Coords points="458,1222 469,1222 469,1244 458,1244"/> + <TextEquiv conf="0.87254"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c701"> + <Coords points="473,1218 486,1218 486,1244 473,1244"/> + <TextEquiv conf="0.71657"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <Glyph id="c703"> + <Coords points="489,1238 496,1238 496,1246 489,1246"/> + <TextEquiv conf="0.87608"> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.71657"> + <Unicode>es.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w705" language="German" readingDirection="left-to-right"> + <Coords points="523,1228 573,1228 573,1236 523,1236"/> + <Glyph id="c707"> + <Coords points="523,1228 573,1228 573,1236 523,1236"/> + <TextEquiv conf="0.80644"> + <Unicode>—</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.80644"> + <Unicode>—</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>mit und berbrate es. —</Unicode></TextEquiv></TextLine> + <TextLine id="l20"> + <Coords points="295,921 312,921 312,924 336,924 336,931 445,931 445,924 477,924 477,925 580,925 580,924 592,924 592,926 657,926 657,928 870,928 870,966 753,966 753,961 640,961 640,953 524,953 524,957 500,957 500,952 390,952 390,958 377,958 377,954 231,954 231,955 214,955 214,952 131,952 131,930 166,930 166,924 185,924 185,923 295,923"/> + <Word id="w735" language="German" readingDirection="left-to-right"> + <Coords points="328,924 336,924 336,931 405,931 405,932 434,932 434,951 390,951 390,958 377,958 377,951 338,951 338,950 328,950"/> + <Glyph id="c737"> + <Coords points="328,924 336,924 336,950 328,950"/> + <TextEquiv conf="0.90274"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c739"> + <Coords points="338,931 353,931 353,951 338,951"/> + <TextEquiv conf="0.78566"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c741"> + <Coords points="357,931 373,931 373,950 357,950"/> + <TextEquiv conf="0.79945"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c743"> + <Coords points="377,932 390,932 390,958 377,958"/> + <TextEquiv conf="0.71285"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c745"> + <Coords points="394,931 405,931 405,950 394,950"/> + <TextEquiv conf="0.79874"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c747"> + <Coords points="410,932 434,932 434,951 410,951"/> + <TextEquiv conf="0.82520"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.71285"> + <Unicode>langem</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w749" language="German" readingDirection="left-to-right"> + <Coords points="445,924 477,924 477,925 580,925 580,924 592,924 592,933 624,933 624,953 524,953 524,957 500,957 500,952 445,952"/> + <Glyph id="c751"> + <Coords points="445,924 477,924 477,952 445,952"/> + <TextEquiv conf="0.74283"> + <Unicode>N</Unicode></TextEquiv></Glyph> + <Glyph id="c753"> + <Coords points="481,932 496,932 496,952 481,952"/> + <TextEquiv conf="0.75699"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c755"> + <Coords points="500,925 524,925 524,957 500,957"/> + <TextEquiv conf="0.75184"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c757"> + <Coords points="528,928 542,928 542,953 528,953"/> + <TextEquiv conf="0.83750"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c759"> + <Coords points="546,932 556,932 556,953 546,953"/> + <TextEquiv conf="0.80128"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c761"> + <Coords points="561,933 576,933 576,953 561,953"/> + <TextEquiv conf="0.88134"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c763"> + <Coords points="580,924 592,924 592,953 580,953"/> + <TextEquiv conf="0.71210"> + <Unicode>k</Unicode></TextEquiv></Glyph> + <Glyph id="c765"> + <Coords points="594,933 604,933 604,952 594,952"/> + <TextEquiv conf="0.74491"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c767"> + <Coords points="608,933 624,933 624,953 608,953"/> + <TextEquiv conf="0.83860"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.71210"> + <Unicode>Nadenken</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w769" language="German" readingDirection="left-to-right"> + <Coords points="640,926 657,926 657,929 683,929 683,955 652,955 652,961 640,961"/> + <Glyph id="c771"> + <Coords points="640,926 657,926 657,954 652,954 652,961 640,961"/> + <TextEquiv conf="0.80072"> + <Unicode>fi</Unicode></TextEquiv></Glyph> + <Glyph id="c775"> + <Coords points="661,933 672,933 672,952 661,952"/> + <TextEquiv conf="0.66486"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c779"> + <Coords points="675,929 683,929 683,955 675,955"/> + <TextEquiv conf="0.77660"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.66486"> + <Unicode>fiel</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w781" language="German" readingDirection="left-to-right"> + <Coords points="718,930 731,930 731,955 714,955 714,956 703,956 703,935 718,935"/> + <Glyph id="c783"> + <Coords points="703,935 714,935 714,956 703,956"/> + <TextEquiv conf="0.75188"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c785"> + <Coords points="718,930 731,930 731,955 718,955"/> + <TextEquiv conf="0.75078"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75078"> + <Unicode>es</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w787" language="German" readingDirection="left-to-right"> + <Coords points="753,928 774,928 774,935 803,935 803,957 774,957 774,966 753,966 753,958 747,958 747,929 753,929"/> + <Glyph id="c789"> + <Coords points="747,929 756,929 756,958 747,958"/> + <TextEquiv conf="0.83834"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c791"> + <Coords points="753,928 774,928 774,966 753,966"/> + <TextEquiv conf="0.60499"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c793"> + <Coords points="778,935 803,935 803,957 778,957"/> + <TextEquiv conf="0.82357"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.60499"> + <Unicode>ihm</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w45" language="German" readingDirection="left-to-right"> + <Coords points="851,928 870,928 870,966 851,966 851,957 822,957 822,935 851,935"/> + <Glyph id="c795"> + <Coords points="822,935 833,935 833,957 822,957"/> + <TextEquiv conf="0.70980"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c797"> + <Coords points="836,935 848,935 848,956 836,956"/> + <TextEquiv conf="0.66756"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c799"> + <Coords points="851,928 870,928 870,966 851,966"/> + <TextEquiv conf="0.70778"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.66756"> + <Unicode>er</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w76" language="German" readingDirection="left-to-right"> + <Coords points="185,923 201,923 201,924 231,924 231,955 214,955 214,952 131,952 131,930 166,930 166,924 185,924"/> + <Glyph id="c711"> + <Coords points="131,930 143,930 143,952 131,952"/> + <TextEquiv conf="0.83869"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c713"> + <Coords points="147,930 162,930 162,952 147,952"/> + <TextEquiv conf="0.74228"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c715"> + <Coords points="166,924 180,924 180,952 166,952"/> + <TextEquiv conf="0.83162"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c717"> + <Coords points="185,923 191,923 191,950 185,950"/> + <TextEquiv conf="0.81493"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c719"> + <Coords points="196,923 201,923 201,950 196,950"/> + <TextEquiv conf="0.76423"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c721"> + <Coords points="214,924 231,924 231,955 214,955 214,951 206,951 206,929 214,929"/> + <TextEquiv conf="0.86288"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>endli</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w77" language="German" readingDirection="left-to-right"> + <Coords points="295,921 312,921 312,954 295,954 295,948 244,948 244,929 287,929 287,928 295,928"/> + <Glyph id="c727"> + <Coords points="244,929 265,929 265,948 244,948"/> + <TextEquiv conf="0.84252"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c729"> + <Coords points="268,929 284,929 284,948 268,948"/> + <TextEquiv conf="0.75510"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c731"> + <Coords points="295,921 312,921 312,954 295,954 295,948 287,948 287,928 295,928"/> + <TextEquiv conf="0.86161"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>na</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>endli na langem Nadenken fiel es ihm er</Unicode></TextEquiv></TextLine> + <TextLine id="l21"> + <Coords points="258,971 266,971 266,977 285,977 285,984 403,984 403,971 429,971 429,973 470,973 470,978 636,978 636,974 655,974 655,977 720,977 720,980 824,980 824,986 870,986 870,1006 636,1006 636,1002 525,1002 525,1006 511,1006 511,1001 403,1001 403,989 285,989 285,993 296,993 296,1001 289,1001 289,999 166,999 166,1000 156,1000 156,1001 130,1001 130,980 160,980 160,974 258,974"/> + <Word id="w801" language="German" readingDirection="left-to-right"> + <Coords points="160,974 197,974 197,978 227,978 227,999 166,999 166,1000 156,1000 156,1001 130,1001 130,980 160,980"/> + <Glyph id="c803"> + <Coords points="130,980 156,980 156,1001 130,1001"/> + <TextEquiv conf="0.76881"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c805"> + <Coords points="160,974 166,974 166,1000 160,1000"/> + <TextEquiv conf="0.90705"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c807"> + <Coords points="170,980 180,980 180,999 170,999"/> + <TextEquiv conf="0.79531"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c809"> + <Coords points="184,974 197,974 197,999 184,999"/> + <TextEquiv conf="0.72473"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c811"> + <Coords points="201,979 212,979 212,998 201,998"/> + <TextEquiv conf="0.81594"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c813"> + <Coords points="215,978 227,978 227,999 215,999"/> + <TextEquiv conf="0.77659"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72473"> + <Unicode>wieder</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w9" language="German" readingDirection="left-to-right"> + <Coords points="258,971 266,971 266,977 285,977 285,993 296,993 296,1001 289,1001 289,998 258,998 258,997 244,997 244,978 258,978"/> + <Glyph id="c815"> + <Coords points="244,978 255,978 255,997 244,997"/> + <TextEquiv conf="0.82000"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c817"> + <Coords points="258,971 266,971 266,998 258,998"/> + <TextEquiv conf="0.73086"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c819"> + <Coords points="270,977 285,977 285,998 270,998"/> + <TextEquiv conf="0.81816"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c821"> + <Coords points="289,993 296,993 296,1001 289,1001"/> + <TextEquiv conf="0.89747"> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.73086"> + <Unicode>ein.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w823" language="German" readingDirection="left-to-right"> + <Coords points="324,984 374,984 374,989 324,989"/> + <Glyph id="c825"> + <Coords points="324,984 374,984 374,989 324,989"/> + <TextEquiv conf="0.70254"> + <Unicode>—</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.70254"> + <Unicode>—</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w829" language="German" readingDirection="left-to-right"> + <Coords points="403,971 429,971 429,980 445,980 445,1000 429,1000 429,1001 403,1001"/> + <Glyph id="c831"> + <Coords points="403,971 429,971 429,1001 403,1001"/> + <TextEquiv conf="0.75595"> + <Unicode>E</Unicode></TextEquiv></Glyph> + <Glyph id="c833"> + <Coords points="433,980 445,980 445,1000 433,1000"/> + <TextEquiv conf="0.75214"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75214"> + <Unicode>Er</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w835" language="German" readingDirection="left-to-right"> + <Coords points="463,973 470,973 470,978 538,978 538,981 552,981 552,1000 525,1000 525,1006 511,1006 511,1001 492,1001 492,1000 463,1000"/> + <Glyph id="c837"> + <Coords points="463,973 470,973 470,1000 463,1000"/> + <TextEquiv conf="0.78663"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c839"> + <Coords points="473,980 489,980 489,1000 473,1000"/> + <TextEquiv conf="0.73961"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c841"> + <Coords points="492,981 508,981 508,1001 492,1001"/> + <TextEquiv conf="0.76240"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c843"> + <Coords points="511,982 525,982 525,1006 511,1006"/> + <TextEquiv conf="0.81754"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c845"> + <Coords points="530,978 538,978 538,1000 530,1000"/> + <TextEquiv conf="0.69569"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c847"> + <Coords points="541,981 552,981 552,1000 541,1000"/> + <TextEquiv conf="0.85047"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69569"> + <Unicode>langte</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w849" language="German" readingDirection="left-to-right"> + <Coords points="570,978 583,978 583,981 597,981 597,982 616,982 616,1002 601,1002 601,1001 570,1001"/> + <Glyph id="c851"> + <Coords points="570,978 583,978 583,1001 570,1001"/> + <TextEquiv conf="0.76386"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c853"> + <Coords points="586,981 597,981 597,1001 586,1001"/> + <TextEquiv conf="0.75878"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c855"> + <Coords points="601,982 616,982 616,1002 601,1002"/> + <TextEquiv conf="0.90114"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75878"> + <Unicode>den</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w857" language="German" readingDirection="left-to-right"> + <Coords points="636,974 655,974 655,977 720,977 720,1004 655,1004 655,1006 636,1006"/> + <Glyph id="c859"> + <Coords points="636,974 655,974 655,1006 636,1006"/> + <TextEquiv conf="0.81256"> + <Unicode>Z</Unicode></TextEquiv></Glyph> + <Glyph id="c861"> + <Coords points="659,983 668,983 668,1002 659,1002"/> + <TextEquiv conf="0.76173"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c863"> + <Coords points="673,981 682,981 682,1003 673,1003"/> + <TextEquiv conf="0.79860"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c865"> + <Coords points="686,981 694,981 694,1003 686,1003"/> + <TextEquiv conf="0.75493"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c867"> + <Coords points="698,984 708,984 708,1003 698,1003"/> + <TextEquiv conf="0.72446"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c869"> + <Coords points="712,977 720,977 720,1004 712,1004"/> + <TextEquiv conf="0.75684"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72446"> + <Unicode>Zettel</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w871" language="German" readingDirection="left-to-right"> + <Coords points="774,981 788,981 788,1006 756,1006 756,1005 736,1005 736,985 774,985"/> + <Glyph id="c873"> + <Coords points="736,985 751,985 751,1005 736,1005"/> + <TextEquiv conf="0.81969"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c875"> + <Coords points="756,985 771,985 771,1006 756,1006"/> + <TextEquiv conf="0.87030"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c877"> + <Coords points="774,981 788,981 788,1006 774,1006"/> + <TextEquiv conf="0.77499"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.77499"> + <Unicode>aus</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w879" language="German" readingDirection="left-to-right"> + <Coords points="810,980 824,980 824,986 870,986 870,1006 810,1006"/> + <Glyph id="c881"> + <Coords points="810,980 824,980 824,1006 810,1006"/> + <TextEquiv conf="0.85915"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c883"> + <Coords points="828,986 838,986 838,1006 828,1006"/> + <TextEquiv conf="0.70945"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c885"> + <Coords points="842,986 870,986 870,1006 842,1006"/> + <TextEquiv conf="0.89154"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.70945"> + <Unicode>dem</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>wieder ein. — Er langte den Zettel aus dem</Unicode></TextEquiv></TextLine> + <TextLine id="l23"> + <Coords points="251,1019 276,1019 276,1021 324,1021 324,1024 521,1024 521,1021 534,1021 534,1022 617,1022 617,1024 727,1024 727,1030 853,1030 853,1028 868,1028 868,1062 782,1062 782,1060 705,1060 705,1057 521,1057 521,1056 324,1056 324,1060 308,1060 308,1054 251,1054 251,1051 130,1051 130,1021 251,1021"/> + <Word id="w893" language="German" readingDirection="left-to-right"> + <Coords points="251,1019 276,1019 276,1026 291,1026 291,1047 276,1047 276,1054 251,1054 251,1051 130,1051 130,1021 251,1021"/> + <Glyph id="c895"> + <Coords points="130,1021 157,1021 157,1051 130,1051"/> + <TextEquiv conf="0.73639"> + <Unicode>A</Unicode></TextEquiv></Glyph> + <Glyph id="c897"> + <Coords points="161,1028 171,1028 171,1050 161,1050"/> + <TextEquiv conf="0.83724"> + <Unicode>c</Unicode></TextEquiv></Glyph> + <Glyph id="c899"> + <Coords points="174,1028 184,1028 184,1049 174,1049"/> + <TextEquiv conf="0.82264"> + <Unicode>c</Unicode></TextEquiv></Glyph> + <Glyph id="c901"> + <Coords points="187,1021 194,1021 194,1048 187,1048"/> + <TextEquiv conf="0.84643"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c905"> + <Coords points="251,1019 276,1019 276,1054 251,1054"/> + <TextEquiv conf="0.84438"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c907"> + <Coords points="281,1026 291,1026 291,1047 281,1047"/> + <TextEquiv conf="0.79417"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1986"> + <Coords points="197,1024 209,1024 209,1048 197,1048"/> + <TextEquiv> + <Unicode>s</Unicode></TextEquiv></Glyph> + <Glyph id="c1988"> + <Coords points="214,1021 226,1021 226,1047 214,1047"/> + <TextEquiv> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c1989"> + <Coords points="231,1027 246,1027 246,1047 231,1047"/> + <TextEquiv> + <Unicode>u</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.73639"> + <Unicode>Accisbue</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w909" language="German" readingDirection="left-to-right"> + <Coords points="308,1021 324,1021 324,1024 409,1024 409,1042 425,1042 425,1056 324,1056 324,1060 308,1060"/> + <Glyph id="c911"> + <Coords points="308,1021 324,1021 324,1060 308,1060"/> + <TextEquiv conf="0.75512"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c913"> + <Coords points="328,1030 338,1030 338,1048 328,1048"/> + <TextEquiv conf="0.70790"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c915"> + <Coords points="341,1028 352,1028 352,1049 341,1049"/> + <TextEquiv conf="0.76785"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c917"> + <Coords points="356,1029 371,1029 371,1049 356,1049"/> + <TextEquiv conf="0.79624"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c919"> + <Coords points="376,1029 391,1029 391,1048 376,1048"/> + <TextEquiv conf="0.67382"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c921"> + <Coords points="395,1024 409,1024 409,1049 395,1049"/> + <TextEquiv conf="0.65710"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <Glyph id="c923"> + <Coords points="417,1042 425,1042 425,1056 417,1056"/> + <TextEquiv conf="0.81870"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.65710"> + <Unicode>heraus,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w925" language="German" readingDirection="left-to-right"> + <Coords points="490,1024 503,1024 503,1051 490,1051 490,1049 469,1049 469,1048 449,1048 449,1028 469,1028 469,1026 490,1026"/> + <Glyph id="c927"> + <Coords points="449,1028 465,1028 465,1048 449,1048"/> + <TextEquiv conf="0.80640"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c929"> + <Coords points="469,1026 485,1026 485,1049 469,1049"/> + <TextEquiv conf="0.80131"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c931"> + <Coords points="490,1024 503,1024 503,1051 490,1051"/> + <TextEquiv conf="0.81827"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.80131"> + <Unicode>und</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w933" language="German" readingDirection="left-to-right"> + <Coords points="521,1021 534,1021 534,1027 576,1027 576,1029 590,1029 590,1050 564,1050 564,1057 521,1057"/> + <Glyph id="c935"> + <Coords points="521,1021 534,1021 534,1057 521,1057"/> + <TextEquiv conf="0.80597"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c937"> + <Coords points="531,1029 546,1029 546,1051 531,1051"/> + <TextEquiv conf="0.71182"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c939"> + <Coords points="549,1030 564,1030 564,1057 549,1057"/> + <TextEquiv conf="0.84189"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c941"> + <Coords points="567,1027 576,1027 576,1050 567,1050"/> + <TextEquiv conf="0.86008"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c943"> + <Coords points="579,1029 590,1029 590,1050 579,1050"/> + <TextEquiv conf="0.77111"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.71182"> + <Unicode>ſagte</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w28" language="German" readingDirection="left-to-right"> + <Coords points="607,1022 617,1022 617,1024 638,1024 638,1031 657,1031 657,1032 687,1032 687,1052 617,1052 617,1057 607,1057"/> + <Glyph id="c945"> + <Coords points="607,1022 617,1022 617,1057 607,1057"/> + <TextEquiv conf="0.81559"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c947"> + <Coords points="617,1030 628,1030 628,1050 617,1050"/> + <TextEquiv conf="0.88005"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c949"> + <Coords points="633,1024 638,1024 638,1050 633,1050"/> + <TextEquiv conf="0.74814"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c951"> + <Coords points="642,1031 657,1031 657,1051 642,1051"/> + <TextEquiv conf="0.72837"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c953"> + <Coords points="663,1032 672,1032 672,1051 663,1051"/> + <TextEquiv conf="0.79147"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c955"> + <Coords points="676,1032 687,1032 687,1052 676,1052"/> + <TextEquiv conf="0.81664"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72837"> + <Unicode>ſeiner</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w957" language="German" readingDirection="left-to-right"> + <Coords points="705,1024 727,1024 727,1034 780,1034 780,1048 790,1048 790,1062 782,1062 782,1060 705,1060"/> + <Glyph id="c959"> + <Coords points="705,1024 727,1024 727,1060 705,1060"/> + <TextEquiv conf="0.79451"> + <Unicode>F</Unicode></TextEquiv></Glyph> + <Glyph id="c961"> + <Coords points="730,1034 741,1034 741,1055 730,1055"/> + <TextEquiv conf="0.73184"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c963"> + <Coords points="745,1034 760,1034 760,1055 745,1055"/> + <TextEquiv conf="0.69758"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c965"> + <Coords points="765,1034 780,1034 780,1056 765,1056"/> + <TextEquiv conf="0.74120"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c967"> + <Coords points="782,1048 790,1048 790,1062 782,1062"/> + <TextEquiv conf="0.86141"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69758"> + <Unicode>Frau,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w969" language="German" readingDirection="left-to-right"> + <Coords points="853,1028 868,1028 868,1062 853,1062 853,1056 817,1056 817,1030 853,1030"/> + <Glyph id="c971"> + <Coords points="817,1030 831,1030 831,1056 817,1056"/> + <TextEquiv conf="0.80622"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c973"> + <Coords points="835,1035 850,1035 850,1056 835,1056"/> + <TextEquiv conf="0.73401"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c975"> + <Coords points="853,1028 868,1028 868,1062 853,1062"/> + <TextEquiv conf="0.79815"> + <Unicode>ß</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.73401"> + <Unicode>daß</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>Accisbue heraus, und ſagte ſeiner Frau, daß</Unicode></TextEquiv></TextLine> + <TextLine id="l24"> + <Coords points="443,1068 457,1068 457,1071 590,1071 590,1072 660,1072 660,1073 705,1073 705,1076 803,1076 803,1077 830,1077 830,1082 844,1082 844,1084 860,1084 860,1098 868,1098 868,1106 830,1106 830,1110 529,1110 529,1106 494,1106 494,1101 461,1101 461,1100 323,1100 323,1102 307,1102 307,1101 151,1101 151,1108 133,1108 133,1072 151,1072 151,1073 196,1073 196,1074 328,1074 328,1073 443,1073"/> + <Word id="w977" language="German" readingDirection="left-to-right"> + <Coords points="133,1072 151,1072 151,1078 165,1078 165,1099 151,1099 151,1108 133,1108"/> + <Glyph id="c979"> + <Coords points="133,1072 151,1072 151,1108 133,1108"/> + <TextEquiv conf="0.84813"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c981"> + <Coords points="155,1078 165,1078 165,1099 155,1099"/> + <TextEquiv conf="0.75703"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75703"> + <Unicode>e</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w5" language="German" readingDirection="left-to-right"> + <Coords points="184,1073 196,1073 196,1074 232,1074 232,1094 249,1094 249,1101 245,1101 245,1100 184,1100"/> + <Glyph id="c983"> + <Coords points="184,1073 196,1073 196,1100 184,1100"/> + <TextEquiv conf="0.70759"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c985"> + <Coords points="200,1079 215,1079 215,1100 200,1100"/> + <TextEquiv conf="0.74401"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c987"> + <Coords points="219,1074 232,1074 232,1100 219,1100"/> + <TextEquiv conf="0.74195"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <Glyph id="c989"> + <Coords points="245,1094 249,1094 249,1101 245,1101"/> + <TextEquiv conf="0.88051"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.70759"> + <Unicode>das,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w991" language="German" readingDirection="left-to-right"> + <Coords points="328,1073 340,1073 340,1098 323,1098 323,1102 307,1102 307,1101 279,1101 279,1078 328,1078"/> + <Glyph id="c993"> + <Coords points="279,1078 303,1078 303,1101 279,1101"/> + <TextEquiv conf="0.81205"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c995"> + <Coords points="307,1080 323,1080 323,1102 307,1102"/> + <TextEquiv conf="0.78334"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c997"> + <Coords points="328,1073 340,1073 340,1098 328,1098"/> + <TextEquiv conf="0.71925"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.71925"> + <Unicode>was</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w999" language="German" readingDirection="left-to-right"> + <Coords points="366,1073 378,1073 378,1079 399,1079 399,1100 366,1100"/> + <Glyph id="c1001"> + <Coords points="366,1073 378,1073 378,1100 366,1100"/> + <TextEquiv conf="0.76124"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1003"> + <Coords points="382,1079 399,1079 399,1100 382,1100"/> + <TextEquiv conf="0.75931"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75931"> + <Unicode>da</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1005" language="German" readingDirection="left-to-right"> + <Coords points="443,1068 457,1068 457,1079 488,1079 488,1093 501,1093 501,1106 494,1106 494,1101 461,1101 461,1100 415,1100 415,1079 443,1079"/> + <Glyph id="c1007"> + <Coords points="415,1079 439,1079 439,1100 415,1100"/> + <TextEquiv conf="0.76025"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c1009"> + <Coords points="443,1068 457,1068 457,1100 443,1100"/> + <TextEquiv conf="0.74663"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1011"> + <Coords points="461,1080 472,1080 472,1101 461,1101"/> + <TextEquiv conf="0.73019"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1013"> + <Coords points="476,1079 488,1079 488,1101 476,1101"/> + <TextEquiv conf="0.86440"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1015"> + <Coords points="494,1093 501,1093 501,1106 494,1106"/> + <TextEquiv conf="0.90284"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.73019"> + <Unicode>wre,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1017" language="German" readingDirection="left-to-right"> + <Coords points="529,1071 590,1071 590,1072 660,1072 660,1073 705,1073 705,1082 715,1082 715,1083 736,1083 736,1102 705,1102 705,1110 529,1110"/> + <Glyph id="c1019"> + <Coords points="529,1071 544,1071 544,1110 529,1110"/> + <TextEquiv conf="0.62055"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c1021"> + <Coords points="549,1080 559,1080 559,1100 549,1100"/> + <TextEquiv conf="0.73905"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1023"> + <Coords points="562,1080 573,1080 573,1101 562,1101"/> + <TextEquiv conf="0.76639"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1025"> + <Coords points="577,1071 590,1071 590,1101 577,1101"/> + <TextEquiv conf="0.83958"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c1027"> + <Coords points="595,1080 604,1080 604,1102 595,1102"/> + <TextEquiv conf="0.85026"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1029"> + <Coords points="609,1081 623,1081 623,1110 609,1110"/> + <TextEquiv conf="0.72177"> + <Unicode>y</Unicode></TextEquiv></Glyph> + <Glyph id="c1031"> + <Coords points="627,1073 637,1073 637,1107 627,1107"/> + <TextEquiv conf="0.74198"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c1033"> + <Coords points="637,1072 660,1072 660,1106 637,1106"/> + <TextEquiv conf="0.78442"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1035"> + <Coords points="665,1081 680,1081 680,1102 665,1102"/> + <TextEquiv conf="0.74563"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1037"> + <Coords points="684,1073 705,1073 705,1110 684,1110"/> + <TextEquiv conf="0.83982"> + <Unicode>ff</Unicode></TextEquiv></Glyph> + <Glyph id="c1990"> + <Coords points="706,1082 715,1082 715,1101 706,1101"/> + <TextEquiv> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1991"> + <Coords points="720,1083 736,1083 736,1102 720,1102"/> + <TextEquiv> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.62055"> + <Unicode>herbeyſaffen</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1041" language="German" readingDirection="left-to-right"> + <Coords points="789,1076 803,1076 803,1077 830,1077 830,1082 844,1082 844,1084 860,1084 860,1098 868,1098 868,1106 830,1106 830,1110 806,1110 806,1104 759,1104 759,1083 789,1083"/> + <Glyph id="c1043"> + <Coords points="759,1083 785,1083 785,1104 759,1104"/> + <TextEquiv conf="0.80051"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c1045"> + <Coords points="789,1076 803,1076 803,1104 789,1104"/> + <TextEquiv conf="0.76095"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1047"> + <Coords points="806,1077 830,1077 830,1110 806,1110"/> + <TextEquiv conf="0.79382"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1049"> + <Coords points="835,1082 844,1082 844,1105 835,1105"/> + <TextEquiv conf="0.71159"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c1051"> + <Coords points="847,1084 860,1084 860,1105 847,1105"/> + <TextEquiv conf="0.82929"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1053"> + <Coords points="861,1098 868,1098 868,1106 861,1106"/> + <TextEquiv conf="0.90931"> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.71159"> + <Unicode>mte.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>e das, was da wre, herbeyſaffen mte.</Unicode></TextEquiv></TextLine> + <TextLine id="l26"> + <Coords points="215,1113 235,1113 235,1125 357,1125 357,1118 364,1118 364,1119 471,1119 471,1118 540,1118 540,1119 764,1119 764,1122 853,1122 853,1128 869,1128 869,1147 853,1147 853,1149 842,1149 842,1150 797,1150 797,1154 790,1154 790,1148 756,1148 756,1147 590,1147 590,1154 575,1154 575,1149 471,1149 471,1148 339,1148 339,1154 325,1154 325,1153 132,1153 132,1116 215,1116"/> + <Word id="w1059" language="German" readingDirection="left-to-right"> + <Coords points="215,1113 235,1113 235,1153 132,1153 132,1116 215,1116"/> + <Glyph id="c1061"> + <Coords points="132,1116 159,1116 159,1153 132,1153"/> + <TextEquiv conf="0.80949"> + <Unicode>J</Unicode></TextEquiv></Glyph> + <Glyph id="c1063"> + <Coords points="163,1126 178,1126 178,1146 163,1146"/> + <TextEquiv conf="0.82919"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1065"> + <Coords points="182,1119 195,1119 195,1147 182,1147"/> + <TextEquiv conf="0.81147"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1067"> + <Coords points="200,1124 211,1124 211,1146 200,1146"/> + <TextEquiv conf="0.87336"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1069"> + <Coords points="215,1113 235,1113 235,1153 215,1153"/> + <TextEquiv conf="0.72395"> + <Unicode>ß</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72395"> + <Unicode>Jndeß</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1071" language="German" readingDirection="left-to-right"> + <Coords points="357,1118 364,1118 364,1124 376,1124 376,1125 411,1125 411,1146 364,1146 364,1147 339,1147 339,1154 325,1154 325,1147 284,1147 284,1145 254,1145 254,1125 357,1125"/> + <Glyph id="c1073"> + <Coords points="254,1125 280,1125 280,1145 254,1145"/> + <TextEquiv conf="0.87717"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c1075"> + <Coords points="284,1126 299,1126 299,1147 284,1147"/> + <TextEquiv conf="0.83118"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1077"> + <Coords points="304,1126 320,1126 320,1146 304,1146"/> + <TextEquiv conf="0.82834"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1079"> + <Coords points="325,1125 339,1125 339,1154 325,1154"/> + <TextEquiv conf="0.85393"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c1081"> + <Coords points="343,1125 353,1125 353,1146 343,1146"/> + <TextEquiv conf="0.82745"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1083"> + <Coords points="357,1118 364,1118 364,1147 357,1147"/> + <TextEquiv conf="0.83320"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1085"> + <Coords points="367,1124 376,1124 376,1146 367,1146"/> + <TextEquiv conf="0.80938"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c1087"> + <Coords points="379,1125 389,1125 389,1146 379,1146"/> + <TextEquiv conf="0.82412"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1089"> + <Coords points="394,1125 411,1125 411,1146 394,1146"/> + <TextEquiv conf="0.84363"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.80938"> + <Unicode>mangelten</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1133" language="German" readingDirection="left-to-right"> + <Coords points="846,1122 853,1122 853,1128 869,1128 869,1147 853,1147 853,1149 842,1149 842,1150 828,1150 828,1123 846,1123"/> + <Glyph id="c1135"> + <Coords points="828,1123 842,1123 842,1150 828,1150"/> + <TextEquiv conf="0.87171"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1137"> + <Coords points="846,1122 853,1122 853,1149 846,1149"/> + <TextEquiv conf="0.83263"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1139"> + <Coords points="857,1128 869,1128 869,1147 857,1147"/> + <TextEquiv conf="0.86775"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.83263"> + <Unicode>die</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1960" language="German" readingDirection="left-to-right"> + <Coords points="471,1118 496,1118 496,1149 471,1149 471,1148 434,1148 434,1119 471,1119"/> + <Glyph id="c1093"> + <Coords points="434,1119 448,1119 448,1148 434,1148"/> + <TextEquiv conf="0.78914"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1095"> + <Coords points="453,1125 467,1125 467,1148 453,1148"/> + <TextEquiv conf="0.88670"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1097"> + <Coords points="471,1118 496,1118 496,1149 471,1149"/> + <TextEquiv conf="0.77859"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>do</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1962" language="German" readingDirection="left-to-right"> + <Coords points="534,1118 540,1118 540,1119 573,1119 573,1126 605,1126 605,1147 590,1147 590,1154 575,1154 575,1148 544,1148 544,1147 518,1147 518,1125 534,1125"/> + <Glyph id="c1101"> + <Coords points="518,1125 529,1125 529,1147 518,1147"/> + <TextEquiv conf="0.86079"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1103"> + <Coords points="534,1118 540,1118 540,1147 534,1147"/> + <TextEquiv conf="0.83232"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1105"> + <Coords points="544,1126 561,1126 561,1148 544,1148"/> + <TextEquiv conf="0.81793"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1107"> + <Coords points="565,1119 573,1119 573,1147 565,1147"/> + <TextEquiv conf="0.78300"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1109"> + <Coords points="575,1127 590,1127 590,1154 575,1154"/> + <TextEquiv conf="0.77761"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c1111"> + <Coords points="594,1126 605,1126 605,1147 594,1147"/> + <TextEquiv conf="0.86677"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>einige</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1963" language="Latin" readingDirection="left-to-right"> + <Coords points="630,1119 764,1119 764,1130 782,1130 782,1141 797,1141 797,1154 790,1154 790,1148 756,1148 756,1147 658,1147 658,1146 630,1146"/> + <Glyph id="c1115"> + <Coords points="630,1119 656,1119 656,1146 630,1146"/> + <TextEquiv conf="0.82036"> + <Unicode>G</Unicode></TextEquiv></Glyph> + <Glyph id="c1117"> + <Coords points="658,1129 671,1129 671,1147 658,1147"/> + <TextEquiv conf="0.77833"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1119"> + <Coords points="675,1129 693,1129 693,1146 675,1146"/> + <TextEquiv conf="0.85051"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1121"> + <Coords points="697,1129 710,1129 710,1147 697,1147"/> + <TextEquiv conf="0.82972"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1125"> + <Coords points="746,1120 754,1120 754,1147 746,1147"/> + <TextEquiv conf="0.81277"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1127"> + <Coords points="756,1119 764,1119 764,1148 756,1148"/> + <TextEquiv conf="0.83589"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1129"> + <Coords points="767,1130 782,1130 782,1148 767,1148"/> + <TextEquiv conf="0.78757"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1131"> + <Coords points="790,1141 797,1141 797,1154 790,1154"/> + <TextEquiv conf="0.90190"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <Glyph id="c73"> + <Coords points="723,1130 723,1131 724,1131 724,1133 721,1133 721,1146 715,1146 715,1145 714,1145 714,1131 716,1131 716,1130"/> + <TextEquiv> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c75"> + <Coords points="737,1130 737,1131 738,1131 738,1132 739,1132 739,1144 740,1144 740,1145 741,1145 741,1146 729,1146 729,1135 728,1135 728,1134 729,1134 729,1133 730,1133 730,1132 731,1132 731,1131 733,1131 733,1130"/> + <TextEquiv> + <Unicode>a</Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>Generalia,</Unicode></TextEquiv> + <TextStyle fontFamily="Antiqua"/></Word> + <TextEquiv> + <Unicode>Jndeß mangelten do einige Generalia, die</Unicode></TextEquiv></TextLine> + <TextLine id="l27"> + <Coords points="819,1163 830,1163 830,1165 847,1165 847,1166 874,1166 874,1201 810,1201 810,1202 661,1202 661,1201 635,1201 635,1194 518,1194 518,1201 485,1201 485,1185 347,1185 347,1187 356,1187 356,1193 329,1193 329,1194 284,1194 284,1198 270,1198 270,1201 255,1201 255,1199 163,1199 163,1193 153,1193 153,1192 132,1192 132,1172 153,1172 153,1166 163,1166 163,1165 172,1165 172,1166 289,1166 289,1167 315,1167 315,1172 347,1172 347,1177 485,1177 485,1164 604,1164 604,1167 799,1167 799,1166 819,1166"/> + <Word id="w1141" language="German" readingDirection="left-to-right"> + <Coords points="163,1165 172,1165 172,1173 185,1173 185,1193 172,1193 172,1199 163,1199 163,1193 153,1193 153,1192 132,1192 132,1172 153,1172 153,1166 163,1166"/> + <Glyph id="c1143"> + <Coords points="132,1172 149,1172 149,1192 132,1192"/> + <TextEquiv conf="0.84728"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1145"> + <Coords points="153,1166 160,1166 160,1193 153,1193"/> + <TextEquiv conf="0.72710"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1147"> + <Coords points="163,1165 172,1165 172,1199 163,1199"/> + <TextEquiv conf="0.70061"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c1149"> + <Coords points="173,1173 185,1173 185,1193 173,1193"/> + <TextEquiv conf="0.90074"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.70061"> + <Unicode>alſo</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1151" language="German" readingDirection="left-to-right"> + <Coords points="273,1166 289,1166 289,1167 315,1167 315,1172 347,1172 347,1187 356,1187 356,1193 329,1193 329,1194 284,1194 284,1198 270,1198 270,1201 255,1201 255,1193 214,1193 214,1171 273,1171"/> + <Glyph id="c1153"> + <Coords points="214,1171 238,1171 238,1193 214,1193"/> + <TextEquiv conf="0.83780"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c1155"> + <Coords points="242,1172 253,1172 253,1193 242,1193"/> + <TextEquiv conf="0.81500"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1157"> + <Coords points="255,1174 270,1174 270,1201 255,1201"/> + <TextEquiv conf="0.80803"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c1159"> + <Coords points="273,1166 289,1166 289,1193 284,1193 284,1198 273,1198"/> + <TextEquiv conf="0.78080"> + <Unicode>fi</Unicode></TextEquiv></Glyph> + <Glyph id="c1163"> + <Coords points="294,1173 304,1173 304,1194 294,1194"/> + <TextEquiv conf="0.75474"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1165"> + <Coords points="308,1167 315,1167 315,1194 308,1194"/> + <TextEquiv conf="0.90229"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1167"> + <Coords points="318,1174 329,1174 329,1194 318,1194"/> + <TextEquiv conf="0.85984"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1992"> + <Coords points="332,1172 347,1172 347,1192 332,1192"/> + <TextEquiv> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1993"> + <Coords points="352,1187 356,1187 356,1193 352,1193"/> + <TextEquiv> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.60821"> + <Unicode>wegfielen.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1171" language="German" readingDirection="left-to-right"> + <Coords points="384,1177 435,1177 435,1185 384,1185"/> + <Glyph id="c1175"> + <Coords points="384,1177 435,1177 435,1185 384,1185"/> + <TextEquiv conf="0.51894"> + <Unicode>—</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.51894"> + <Unicode>—</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w21" language="German" readingDirection="left-to-right"> + <Coords points="485,1164 604,1164 604,1167 675,1167 675,1202 661,1202 661,1201 635,1201 635,1194 518,1194 518,1201 485,1201"/> + <Glyph id="c1179"> + <Coords points="485,1164 518,1164 518,1201 485,1201"/> + <TextEquiv conf="0.74039"> + <Unicode>H</Unicode></TextEquiv></Glyph> + <Glyph id="c1181"> + <Coords points="523,1173 539,1173 539,1194 523,1194"/> + <TextEquiv conf="0.89065"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1183"> + <Coords points="551,1172 563,1172 563,1193 551,1193"/> + <TextEquiv conf="0.80319"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1185"> + <Coords points="573,1170 582,1170 582,1193 573,1193"/> + <TextEquiv conf="0.84734"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c1187"> + <Coords points="592,1164 604,1164 604,1193 592,1193"/> + <TextEquiv conf="0.72920"> + <Unicode>k</Unicode></TextEquiv></Glyph> + <Glyph id="c1189"> + <Coords points="613,1173 626,1173 626,1194 613,1194"/> + <TextEquiv conf="0.90838"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1191"> + <Coords points="635,1173 652,1173 652,1201 635,1201"/> + <TextEquiv conf="0.85035"> + <Unicode>p</Unicode></TextEquiv></Glyph> + <Glyph id="c1193"> + <Coords points="661,1167 675,1167 675,1202 661,1202"/> + <TextEquiv conf="0.83784"> + <Unicode>f</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72920"> + <Unicode>Hartkopf</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w78" language="German" readingDirection="left-to-right"> + <Coords points="717,1167 725,1167 725,1174 739,1174 739,1175 777,1175 777,1201 714,1201 714,1202 699,1202 699,1174 717,1174"/> + <Glyph id="c1197"> + <Coords points="699,1174 714,1174 714,1202 699,1202"/> + <TextEquiv conf="0.84219"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c1199"> + <Coords points="717,1167 725,1167 725,1194 717,1194"/> + <TextEquiv conf="0.78589"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1201"> + <Coords points="728,1174 739,1174 739,1194 728,1194"/> + <TextEquiv conf="0.90891"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1203"> + <Coords points="743,1175 758,1175 758,1194 743,1194"/> + <TextEquiv conf="0.83234"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1205"> + <Coords points="762,1175 777,1175 777,1201 762,1201"/> + <TextEquiv conf="0.82998"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>gieng</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w79" language="German" readingDirection="left-to-right"> + <Coords points="819,1163 830,1163 830,1165 847,1165 847,1166 874,1166 874,1201 810,1201 810,1202 799,1202 799,1166 819,1166"/> + <Glyph id="c1209"> + <Coords points="799,1166 810,1166 810,1202 799,1202"/> + <TextEquiv conf="0.88437"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c1211"> + <Coords points="809,1173 819,1173 819,1194 809,1194"/> + <TextEquiv conf="0.79098"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1213"> + <Coords points="819,1163 830,1163 830,1195 819,1195"/> + <TextEquiv conf="0.73612"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1215"> + <Coords points="834,1165 847,1165 847,1194 834,1194"/> + <TextEquiv conf="0.82563"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c1217"> + <Coords points="851,1166 874,1166 874,1201 851,1201"/> + <TextEquiv conf="0.74729"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>ſelb</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>alſo wegfielen. — Hartkopf gieng ſelb</Unicode></TextEquiv></TextLine> + <TextEquiv> + <Unicode>Hartkopf mußte  er bennen, und +endli na langem Nadenken fiel es ihm er +wieder ein. — Er langte den Zettel aus dem +Accisbue heraus, und ſagte ſeiner Frau, daß +e das, was da wre, herbeyſaffen mte. +Jndeß mangelten do einige Generalia, die +alſo wegfielen. — Hartkopf gieng ſelb +mit und berbrate es. —</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur; Antiqua"/></TextRegion> + <GraphicRegion id="r5" type="decoration"> + <Coords points="382,166 636,166 636,203 382,203"/></GraphicRegion> + </Page></PcGts> diff --git a/dinglehopper/tests/data/directory-test/ocr/2.xml b/dinglehopper/tests/data/directory-test/ocr/2.xml new file mode 100644 index 0000000..0e62647 --- /dev/null +++ b/dinglehopper/tests/data/directory-test/ocr/2.xml @@ -0,0 +1,3394 @@ +<?xml version="1.0" encoding="UTF-8"?> +<PcGts xmlns="http://schema.primaresearch.org/PAGE/gts/pagecontent/2018-07-15" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://schema.primaresearch.org/PAGE/gts/pagecontent/2018-07-15 http://schema.primaresearch.org/PAGE/gts/pagecontent/2018-07-15/pagecontent.xsd" pcGtsId="backhart_768169569_0001_00000119"> + <Metadata> + <Creator>doculibtopagexml</Creator> + <Created>2019-01-08T10:25:36</Created> + <LastChange>2019-04-26T07:11:05</LastChange></Metadata> + <Page imageFilename="00000119.tif" imageXResolution="300.00000" imageYResolution="300.00000" imageWidth="1148" imageHeight="1852" type="content"> + <AlternativeImage filename="00000119_b.tif"/> + <PrintSpace> + <Coords points="93,136 93,1613 913,1613 913,136"/></PrintSpace> + <ReadingOrder> + <OrderedGroup id="ro357564684568544579089"> + <RegionRefIndexed regionRef="r0" index="1"/> + <RegionRefIndexed regionRef="r2" index="2"/> + </OrderedGroup></ReadingOrder> + <TextRegion id="r0" readingDirection="left-to-right" textLineOrder="top-to-bottom" type="paragraph" indented="false" align="justify" primaryLanguage="German"> + <Coords points="157,251 170,251 170,256 245,256 245,258 370,258 370,259 420,259 420,267 437,267 437,268 621,268 621,263 657,263 657,261 701,261 701,259 718,259 718,266 856,266 856,262 871,262 871,320 872,320 872,392 871,392 871,489 869,489 869,783 830,783 830,791 815,791 815,788 788,788 788,781 646,781 646,786 570,786 570,819 493,819 493,829 334,829 334,833 249,833 249,834 160,834 160,840 146,840 146,830 131,830 131,802 132,802 132,590 131,590 131,554 133,554 133,513 135,513 135,342 134,342 134,304 135,304 135,252 157,252"/> + <TextLine id="l5"> + <Coords points="157,251 170,251 170,256 245,256 245,258 370,258 370,259 420,259 420,267 437,267 437,268 621,268 621,263 657,263 657,261 701,261 701,259 718,259 718,266 856,266 856,262 871,262 871,297 821,297 821,291 682,291 682,295 575,295 575,297 560,297 560,296 455,296 455,289 386,289 386,288 283,288 283,287 219,287 219,285 188,285 188,284 174,284 174,283 135,283 135,252 157,252"/> + <Word id="w1663" language="German" readingDirection="left-to-right"> + <Coords points="157,251 170,251 170,261 185,261 185,263 199,263 199,285 188,285 188,284 174,284 174,283 135,283 135,252 157,252"/> + <Glyph id="c1665"> + <Coords points="135,252 155,252 155,283 135,283"/> + <TextEquiv conf="0.75285"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1667"> + <Coords points="157,251 170,251 170,283 157,283"/> + <TextEquiv conf="0.77841"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c1669"> + <Coords points="174,261 185,261 185,284 174,284"/> + <TextEquiv conf="0.84378"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1671"> + <Coords points="188,263 199,263 199,285 188,285"/> + <TextEquiv conf="0.75436"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75285"> + <Unicode>ber</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1673" language="German" readingDirection="left-to-right"> + <Coords points="236,256 245,256 245,264 260,264 260,287 219,287 219,257 236,257"/> + <Glyph id="c1675"> + <Coords points="219,257 233,257 233,287 219,287"/> + <TextEquiv conf="0.80770"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1677"> + <Coords points="236,256 245,256 245,287 236,287"/> + <TextEquiv conf="0.75232"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1679"> + <Coords points="248,264 260,264 260,287 248,287"/> + <TextEquiv conf="0.87596"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75232"> + <Unicode>die</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1681" language="German" readingDirection="left-to-right"> + <Coords points="329,258 370,258 370,288 283,288 283,264 304,264 304,259 329,259"/> + <Glyph id="c1683"> + <Coords points="283,264 299,264 299,288 283,288"/> + <TextEquiv conf="0.75082"> + <Unicode>v</Unicode></TextEquiv></Glyph> + <Glyph id="c1685"> + <Coords points="304,259 310,259 310,288 304,288"/> + <TextEquiv conf="0.68661"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1687"> + <Coords points="315,266 325,266 325,287 315,287"/> + <TextEquiv conf="0.72317"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1689"> + <Coords points="329,258 337,258 337,288 329,288"/> + <TextEquiv conf="0.83915"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1691"> + <Coords points="340,266 349,266 349,287 340,287"/> + <TextEquiv conf="0.79152"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1693"> + <Coords points="354,258 370,258 370,288 354,288"/> + <TextEquiv conf="0.67275"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.67275"> + <Unicode>vielen</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1695" language="German" readingDirection="left-to-right"> + <Coords points="386,259 420,259 420,267 437,267 437,268 452,268 452,269 503,269 503,289 469,289 469,296 455,296 455,289 386,289"/> + <Glyph id="c1697"> + <Coords points="386,259 420,259 420,289 386,289"/> + <TextEquiv conf="0.75776"> + <Unicode>S</Unicode></TextEquiv></Glyph> + <Glyph id="c1699"> + <Coords points="424,267 437,267 437,287 424,287"/> + <TextEquiv conf="0.81753"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1701"> + <Coords points="441,268 452,268 452,288 441,288"/> + <TextEquiv conf="0.85307"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1703"> + <Coords points="455,269 469,269 469,296 455,296"/> + <TextEquiv conf="0.81493"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c1705"> + <Coords points="473,269 482,269 482,289 473,289"/> + <TextEquiv conf="0.78034"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1707"> + <Coords points="487,269 503,269 503,289 487,289"/> + <TextEquiv conf="0.74845"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74845"> + <Unicode>Sorgen</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1709" language="German" readingDirection="left-to-right"> + <Coords points="518,268 542,268 542,269 608,269 608,289 589,289 589,290 575,290 575,297 560,297 560,289 546,289 546,288 518,288"/> + <Glyph id="c1711"> + <Coords points="518,268 542,268 542,288 518,288"/> + <TextEquiv conf="0.76983"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c1713"> + <Coords points="546,269 557,269 557,289 546,289"/> + <TextEquiv conf="0.69585"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1715"> + <Coords points="560,269 575,269 575,297 560,297"/> + <TextEquiv conf="0.80275"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c1717"> + <Coords points="579,269 589,269 589,290 579,290"/> + <TextEquiv conf="0.75463"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1719"> + <Coords points="592,269 608,269 608,289 592,289"/> + <TextEquiv conf="0.77872"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69585"> + <Unicode>wegen</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1721" language="German" readingDirection="left-to-right"> + <Coords points="701,259 718,259 718,268 750,268 750,291 682,291 682,295 657,295 657,290 621,290 621,263 657,263 657,261 701,261"/> + <Glyph id="c1723"> + <Coords points="621,263 640,263 640,290 621,290"/> + <TextEquiv conf="0.67731"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1725"> + <Coords points="644,268 653,268 653,289 644,289"/> + <TextEquiv conf="0.72582"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1727"> + <Coords points="657,261 682,261 682,295 657,295"/> + <TextEquiv conf="0.80586"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1729"> + <Coords points="676,268 688,268 688,290 676,290"/> + <TextEquiv conf="0.85827"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1731"> + <Coords points="691,261 698,261 698,291 691,291"/> + <TextEquiv conf="0.69996"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1733"> + <Coords points="701,259 718,259 718,291 701,291"/> + <TextEquiv conf="0.58348"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c1737"> + <Coords points="719,268 729,268 729,290 719,290"/> + <TextEquiv conf="0.72210"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1739"> + <Coords points="733,268 750,268 750,291 733,291"/> + <TextEquiv conf="0.78413"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.58348"> + <Unicode>deelben</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1741" language="German" readingDirection="left-to-right"> + <Coords points="856,262 871,262 871,297 821,297 821,291 807,291 807,290 774,290 774,266 856,266"/> + <Glyph id="c1743"> + <Coords points="774,266 789,266 789,290 774,290"/> + <TextEquiv conf="0.78911"> + <Unicode>v</Unicode></TextEquiv></Glyph> + <Glyph id="c1745"> + <Coords points="794,268 804,268 804,290 794,290"/> + <TextEquiv conf="0.83999"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1747"> + <Coords points="807,269 819,269 819,291 807,291"/> + <TextEquiv conf="0.73881"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1749"> + <Coords points="821,269 835,269 835,297 821,297"/> + <TextEquiv conf="0.88566"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c1751"> + <Coords points="838,267 854,267 854,290 838,290"/> + <TextEquiv conf="0.85102"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1753"> + <Coords points="856,262 871,262 871,297 856,297"/> + <TextEquiv conf="0.80438"> + <Unicode>ß</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.73881"> + <Unicode>vergaß</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>ber die vielen Sorgen wegen deelben vergaß</Unicode></TextEquiv></TextLine> + <TextLine id="l6"> + <Coords points="224,797 334,797 334,800 440,800 440,807 484,807 484,813 570,813 570,819 493,819 493,829 334,829 334,833 249,833 249,834 160,834 160,840 146,840 146,830 131,830 131,802 146,802 146,801 224,801"/> + <Word id="w1755" language="German" readingDirection="left-to-right"> + <Coords points="146,801 160,801 160,808 175,808 175,831 160,831 160,840 146,840 146,830 131,830 131,802 146,802"/> + <Glyph id="c1757"> + <Coords points="131,802 141,802 141,830 131,830"/> + <TextEquiv conf="0.77702"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1759"> + <Coords points="146,801 160,801 160,840 146,840"/> + <TextEquiv conf="0.69026"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c1761"> + <Coords points="164,808 175,808 175,831 164,831"/> + <TextEquiv conf="0.74867"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69026"> + <Unicode>ihr</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1763" language="German" readingDirection="left-to-right"> + <Coords points="224,797 249,797 249,834 224,834 224,830 190,830 190,803 224,803"/> + <Glyph id="c1765"> + <Coords points="190,803 203,803 203,830 190,830"/> + <TextEquiv conf="0.68484"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1767"> + <Coords points="207,809 220,809 220,828 207,828"/> + <TextEquiv conf="0.69132"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1769"> + <Coords points="224,797 249,797 249,834 224,834"/> + <TextEquiv conf="0.73594"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.68484"> + <Unicode>do</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1771" language="German" readingDirection="left-to-right"> + <Coords points="318,797 334,797 334,833 318,833 318,827 271,827 271,806 318,806"/> + <Glyph id="c1773"> + <Coords points="271,806 288,806 288,827 271,827"/> + <TextEquiv conf="0.70153"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1775"> + <Coords points="293,807 305,807 305,827 293,827"/> + <TextEquiv conf="0.74772"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1777"> + <Coords points="318,797 334,797 334,833 318,833 318,826 309,826 309,806 318,806"/> + <TextEquiv conf="0.72521"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69144"> + <Unicode>no</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1781" language="German" readingDirection="left-to-right"> + <Coords points="351,806 387,806 387,829 351,829"/> + <Glyph id="c1783"> + <Coords points="351,806 367,806 367,829 351,829"/> + <TextEquiv conf="0.83185"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1785"> + <Coords points="370,806 387,806 387,829 370,829"/> + <TextEquiv conf="0.80758"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.80758"> + <Unicode>an</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1787" language="German" readingDirection="left-to-right"> + <Coords points="433,800 440,800 440,807 484,807 484,815 493,815 493,829 424,829 424,828 405,828 405,807 424,807 424,801 433,801"/> + <Glyph id="c1789"> + <Coords points="405,807 420,807 420,828 405,828"/> + <TextEquiv conf="0.75325"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1791"> + <Coords points="433,800 440,800 440,829 424,829 424,801 433,801"/> + <TextEquiv conf="0.69836"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1795"> + <Coords points="444,807 454,807 454,829 444,829"/> + <TextEquiv conf="0.77285"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1797"> + <Coords points="457,807 484,807 484,829 457,829"/> + <TextEquiv conf="0.84281"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c1799"> + <Coords points="486,815 493,815 493,829 486,829"/> + <TextEquiv conf="0.56713"> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.56713"> + <Unicode>aem.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1801" language="German" readingDirection="left-to-right"> + <Coords points="520,813 570,813 570,819 520,819"/> + <Glyph id="c1803"> + <Coords points="520,813 570,813 570,819 520,819"/> + <TextEquiv conf="0.88040"> + <Unicode>—</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.86562"> + <Unicode>—</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>ihr do no an aem. —</Unicode></TextEquiv></TextLine> + <TextLine id="l7"> + <Coords points="134,304 163,304 163,308 252,308 252,309 324,309 324,310 436,310 436,309 457,309 457,311 634,311 634,307 648,307 648,312 699,312 699,313 759,313 759,315 795,315 795,318 835,318 835,319 864,319 864,320 872,320 872,339 864,339 864,342 852,342 852,341 762,341 762,340 745,340 745,339 560,339 560,341 457,341 457,343 283,343 283,337 163,337 163,342 134,342"/> + <Word id="w1807" language="German" readingDirection="left-to-right"> + <Coords points="134,304 163,304 163,308 252,308 252,309 324,309 324,329 337,329 337,343 283,343 283,337 163,337 163,342 134,342"/> + <Glyph id="c1809"> + <Coords points="134,304 163,304 163,342 134,342"/> + <TextEquiv conf="0.77424"> + <Unicode>H</Unicode></TextEquiv></Glyph> + <Glyph id="c1811"> + <Coords points="173,314 189,314 189,336 173,336"/> + <TextEquiv conf="0.83291"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1813"> + <Coords points="198,315 209,315 209,336 198,336"/> + <TextEquiv conf="0.75086"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1815"> + <Coords points="219,313 229,313 229,337 219,337"/> + <TextEquiv conf="0.80943"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c1817"> + <Coords points="240,308 252,308 252,337 240,337"/> + <TextEquiv conf="0.77207"> + <Unicode>k</Unicode></TextEquiv></Glyph> + <Glyph id="c1819"> + <Coords points="260,317 273,317 273,337 260,337"/> + <TextEquiv conf="0.84221"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1821"> + <Coords points="283,317 299,317 299,343 283,343"/> + <TextEquiv conf="0.79249"> + <Unicode>p</Unicode></TextEquiv></Glyph> + <Glyph id="c1823"> + <Coords points="310,309 324,309 324,343 310,343"/> + <TextEquiv conf="0.87079"> + <Unicode>f</Unicode></TextEquiv></Glyph> + <Glyph id="c1825"> + <Coords points="329,329 337,329 337,343 329,343"/> + <TextEquiv conf="0.97446"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75086"> + <Unicode>Hartkopf,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1827" language="German" readingDirection="left-to-right"> + <Coords points="368,310 381,310 381,316 412,316 412,337 385,337 385,336 368,336"/> + <Glyph id="c1829"> + <Coords points="368,310 381,310 381,336 368,336"/> + <TextEquiv conf="0.76508"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1831"> + <Coords points="385,316 396,316 396,337 385,337"/> + <TextEquiv conf="0.75896"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1833"> + <Coords points="399,316 412,316 412,337 399,337"/> + <TextEquiv conf="0.82288"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75896"> + <Unicode>der</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1835" language="German" readingDirection="left-to-right"> + <Coords points="436,309 457,309 457,317 490,317 490,318 510,318 510,339 457,339 457,343 436,343"/> + <Glyph id="c1837"> + <Coords points="436,309 457,309 457,343 436,343"/> + <TextEquiv conf="0.75319"> + <Unicode>F</Unicode></TextEquiv></Glyph> + <Glyph id="c1839"> + <Coords points="460,318 472,318 472,336 460,336"/> + <TextEquiv conf="0.77654"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1841"> + <Coords points="475,317 490,317 490,337 475,337"/> + <TextEquiv conf="0.83225"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1843"> + <Coords points="494,318 510,318 510,339 494,339"/> + <TextEquiv conf="0.80133"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75319"> + <Unicode>Frau</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1845" language="German" readingDirection="left-to-right"> + <Coords points="634,307 648,307 648,312 699,312 699,319 721,319 721,339 560,339 560,341 533,341 533,311 634,311"/> + <Glyph id="c1847"> + <Coords points="533,311 560,311 560,341 533,341"/> + <TextEquiv conf="0.73224"> + <Unicode>A</Unicode></TextEquiv></Glyph> + <Glyph id="c1849"> + <Coords points="563,319 587,319 587,339 563,339"/> + <TextEquiv conf="0.80570"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c1851"> + <Coords points="592,316 601,316 601,339 592,339"/> + <TextEquiv conf="0.68586"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c1853"> + <Coords points="605,319 629,319 629,339 605,339"/> + <TextEquiv conf="0.77963"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c1855"> + <Coords points="634,307 648,307 648,339 634,339"/> + <TextEquiv conf="0.79249"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1857"> + <Coords points="653,318 667,318 667,339 653,339"/> + <TextEquiv conf="0.85011"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1859"> + <Coords points="672,319 688,319 688,339 672,339"/> + <TextEquiv conf="0.82539"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1861"> + <Coords points="693,312 699,312 699,339 693,339"/> + <TextEquiv conf="0.88742"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1863"> + <Coords points="704,319 721,319 721,339 704,339"/> + <TextEquiv conf="0.85821"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.68586"> + <Unicode>Amtmnnin</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1865" language="German" readingDirection="left-to-right"> + <Coords points="745,313 759,313 759,315 795,315 795,340 778,340 778,341 762,341 762,340 745,340"/> + <Glyph id="c1867"> + <Coords points="745,313 759,313 759,340 745,340"/> + <TextEquiv conf="0.85237"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1869"> + <Coords points="762,320 778,320 778,341 762,341"/> + <TextEquiv conf="0.79818"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1871"> + <Coords points="780,315 795,315 795,340 780,340"/> + <TextEquiv conf="0.76413"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.76413"> + <Unicode>das</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w36" language="German" readingDirection="left-to-right"> + <Coords points="819,318 835,318 835,319 864,319 864,320 872,320 872,339 864,339 864,342 852,342 852,341 819,341"/> + <Glyph id="c1875"> + <Coords points="819,318 835,318 835,341 819,341"/> + <TextEquiv conf="0.84042"> + <Unicode>v</Unicode></TextEquiv></Glyph> + <Glyph id="c1877"> + <Coords points="839,320 849,320 849,341 839,341"/> + <TextEquiv conf="0.84113"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1879"> + <Coords points="852,319 864,319 864,342 852,342"/> + <TextEquiv conf="0.84949"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1881"> + <Coords points="865,320 872,320 872,339 865,339"/> + <TextEquiv conf="0.80870"> + <Unicode>⸗</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.80870"> + <Unicode>ver⸗</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>Hartkopf, der Frau Amtmnnin das ver⸗</Unicode></TextEquiv></TextLine> + <TextLine id="l9"> + <Coords points="135,356 147,356 147,358 221,358 221,366 363,366 363,357 397,357 397,359 438,359 438,360 478,360 478,367 489,367 489,368 522,368 522,375 651,375 651,358 760,358 760,363 850,363 850,370 872,370 872,392 850,392 850,395 777,395 777,391 761,391 761,390 651,390 651,380 522,380 522,382 532,382 532,388 478,388 478,394 465,394 465,387 430,387 430,386 312,386 312,394 302,394 302,392 146,392 146,391 135,391"/> + <Word id="w1883" language="German" readingDirection="left-to-right"> + <Coords points="135,356 147,356 147,358 221,358 221,366 271,366 271,386 236,386 236,387 221,387 221,392 146,392 146,391 135,391"/> + <Glyph id="c1885"> + <Coords points="135,356 147,356 147,391 135,391"/> + <TextEquiv conf="0.87327"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c1887"> + <Coords points="146,364 161,364 161,392 146,392"/> + <TextEquiv conf="0.84382"> + <Unicode>p</Unicode></TextEquiv></Glyph> + <Glyph id="c1889"> + <Coords points="165,366 177,366 177,387 165,387"/> + <TextEquiv conf="0.78667"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1891"> + <Coords points="180,365 192,365 192,386 180,386"/> + <TextEquiv conf="0.89583"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1893"> + <Coords points="197,358 221,358 221,392 197,392"/> + <TextEquiv conf="0.82985"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1895"> + <Coords points="225,367 236,367 236,387 225,387"/> + <TextEquiv conf="0.74928"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1897"> + <Coords points="240,367 256,367 256,386 240,386"/> + <TextEquiv conf="0.76381"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1899"> + <Coords points="259,366 271,366 271,386 259,386"/> + <TextEquiv conf="0.90333"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74928"> + <Unicode>ſproene</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1901" language="German" readingDirection="left-to-right"> + <Coords points="302,366 333,366 333,386 312,386 312,394 302,394"/> + <Glyph id="c1903"> + <Coords points="302,366 312,366 312,394 302,394"/> + <TextEquiv conf="0.77930"> + <Unicode>z</Unicode></TextEquiv></Glyph> + <Glyph id="c1905"> + <Coords points="316,366 333,366 333,386 316,386"/> + <TextEquiv conf="0.88518"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.77930"> + <Unicode>zu</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1907" language="German" readingDirection="left-to-right"> + <Coords points="363,357 397,357 397,359 438,359 438,360 478,360 478,367 489,367 489,368 522,368 522,382 532,382 532,388 478,388 478,394 465,394 465,387 430,387 430,386 363,386"/> + <Glyph id="c1909"> + <Coords points="363,357 379,357 379,386 363,386"/> + <TextEquiv conf="0.74149"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1911"> + <Coords points="384,357 397,357 397,386 384,386"/> + <TextEquiv conf="0.81591"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c1913"> + <Coords points="401,364 412,364 412,385 401,385"/> + <TextEquiv conf="0.79031"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1915"> + <Coords points="415,365 426,365 426,385 415,385"/> + <TextEquiv conf="0.73056"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1917"> + <Coords points="430,359 438,359 438,387 430,387"/> + <TextEquiv conf="0.90756"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1919"> + <Coords points="441,360 446,360 446,387 441,387"/> + <TextEquiv conf="0.77904"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1921"> + <Coords points="451,366 461,366 461,387 451,387"/> + <TextEquiv conf="0.80085"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1923"> + <Coords points="465,360 478,360 478,394 465,394"/> + <TextEquiv conf="0.69815"> + <Unicode>f</Unicode></TextEquiv></Glyph> + <Glyph id="c1925"> + <Coords points="476,367 489,367 489,387 476,387"/> + <TextEquiv conf="0.74520"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1974"> + <Coords points="493,368 502,368 502,387 493,387"/> + <TextEquiv> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1976"> + <Coords points="507,368 522,368 522,387 507,387"/> + <TextEquiv> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1977"> + <Coords points="527,382 532,382 532,388 527,388"/> + <TextEquiv> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69815"> + <Unicode>berliefern.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1929" language="German" readingDirection="left-to-right"> + <Coords points="561,375 610,375 610,380 561,380"/> + <Glyph id="c1931"> + <Coords points="561,375 610,375 610,380 561,380"/> + <TextEquiv conf="0.79675"> + <Unicode>—</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.77520"> + <Unicode>—</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1935" language="German" readingDirection="left-to-right"> + <Coords points="651,358 677,358 677,361 689,361 689,367 710,367 710,388 677,388 677,390 651,390"/> + <Glyph id="c1937"> + <Coords points="651,358 677,358 677,390 651,390"/> + <TextEquiv conf="0.80549"> + <Unicode>E</Unicode></TextEquiv></Glyph> + <Glyph id="c1939"> + <Coords points="682,361 689,361 689,388 682,388"/> + <TextEquiv conf="0.74066"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1941"> + <Coords points="692,367 710,367 710,388 692,388"/> + <TextEquiv conf="0.86004"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74066"> + <Unicode>Ein</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1943" language="German" readingDirection="left-to-right"> + <Coords points="732,358 760,358 760,363 850,363 850,370 872,370 872,392 850,392 850,395 777,395 777,391 761,391 761,389 732,389"/> + <Glyph id="c1945"> + <Coords points="732,358 760,358 760,389 732,389"/> + <TextEquiv conf="0.83324"> + <Unicode>E</Unicode></TextEquiv></Glyph> + <Glyph id="c1947"> + <Coords points="761,369 775,369 775,391 761,391"/> + <TextEquiv conf="0.64602"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1949"> + <Coords points="777,369 793,369 793,395 777,395"/> + <TextEquiv conf="0.91447"> + <Unicode>p</Unicode></TextEquiv></Glyph> + <Glyph id="c1953"> + <Coords points="824,363 850,363 850,395 824,395"/> + <TextEquiv conf="0.86339"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1955"> + <Coords points="845,371 855,371 855,391 845,391"/> + <TextEquiv conf="0.82644"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1957"> + <Coords points="858,370 872,370 872,392 858,392"/> + <TextEquiv conf="0.83229"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1978"> + <Coords points="793,364 808,364 808,389 793,389"/> + <TextEquiv> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1979"> + <Coords points="811,368 822,368 822,388 811,388"/> + <TextEquiv> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.64602"> + <Unicode>Erpreer</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>ſproene zu berliefern. — Ein Erpreer</Unicode></TextEquiv></TextLine> + <TextLine id="l10"> + <Coords points="319,407 403,407 403,408 449,408 449,409 482,409 482,410 508,410 508,416 521,416 521,417 638,417 638,409 666,409 666,412 791,412 791,409 820,409 820,412 831,412 831,417 871,417 871,440 820,440 820,446 791,446 791,439 666,439 666,446 651,446 651,439 538,439 538,444 447,444 447,443 333,443 333,445 319,445 319,435 211,435 211,436 135,436 135,413 198,413 198,410 306,410 306,409 319,409"/> + <Word id="w2" language="German" readingDirection="left-to-right"> + <Coords points="198,410 211,410 211,415 227,415 227,435 211,435 211,436 135,436 135,413 198,413"/> + <Glyph id="c3"> + <Coords points="135,413 160,413 160,436 135,436"/> + <TextEquiv conf="0.83926"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c6"> + <Coords points="198,410 211,410 211,436 198,436"/> + <TextEquiv conf="0.74741"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c7"> + <Coords points="214,415 227,415 227,435 214,435"/> + <TextEquiv conf="0.78431"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1980"> + <Coords points="164,415 178,415 178,436 164,436"/> + <TextEquiv> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c1981"> + <Coords points="182,415 193,415 193,435 182,435"/> + <TextEquiv> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69343"> + <Unicode>wurde</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w8" language="German" readingDirection="left-to-right"> + <Coords points="247,415 283,415 283,435 247,435"/> + <Glyph id="c9"> + <Coords points="247,415 263,415 263,435 247,435"/> + <TextEquiv conf="0.75804"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c10"> + <Coords points="267,415 283,415 283,435 267,435"/> + <TextEquiv conf="0.88661"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75804"> + <Unicode>an</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w11" language="German" readingDirection="left-to-right"> + <Coords points="319,407 333,407 333,413 354,413 354,434 333,434 333,445 319,445 319,435 306,435 306,409 319,409"/> + <Glyph id="c12"> + <Coords points="306,409 315,409 315,435 306,435"/> + <TextEquiv conf="0.75017"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c13"> + <Coords points="319,407 333,407 333,445 319,445"/> + <TextEquiv conf="0.80132"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c14"> + <Coords points="337,413 354,413 354,434 337,434"/> + <TextEquiv conf="0.81077"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75017"> + <Unicode>ihn</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w15" language="German" readingDirection="left-to-right"> + <Coords points="390,407 403,407 403,408 449,408 449,409 482,409 482,410 508,410 508,416 521,416 521,431 538,431 538,444 447,444 447,443 406,443 406,436 390,436 390,435 371,435 371,415 390,415"/> + <Glyph id="c16"> + <Coords points="371,415 385,415 385,435 371,435"/> + <TextEquiv conf="0.81903"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c17"> + <Coords points="390,407 403,407 403,436 390,436"/> + <TextEquiv conf="0.81509"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c18"> + <Coords points="406,416 420,416 420,443 406,443"/> + <TextEquiv conf="0.75122"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c19"> + <Coords points="423,415 434,415 434,436 423,436"/> + <TextEquiv conf="0.74691"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c20"> + <Coords points="437,408 449,408 449,443 437,443"/> + <TextEquiv conf="0.73492"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c21"> + <Coords points="447,409 471,409 471,444 447,444"/> + <TextEquiv conf="0.80440"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c22"> + <Coords points="475,409 482,409 482,437 475,437"/> + <TextEquiv conf="0.71763"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c23"> + <Coords points="495,410 508,410 508,438 486,438 486,416 495,416"/> + <TextEquiv conf="0.85116"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c25"> + <Coords points="511,416 521,416 521,439 511,439"/> + <TextEquiv conf="0.81059"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c26"> + <Coords points="530,431 538,431 538,444 530,444"/> + <TextEquiv conf="0.88635"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.71763"> + <Unicode>abgeſit,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w27" language="German" readingDirection="left-to-right"> + <Coords points="587,417 614,417 614,438 584,438 584,439 566,439 566,418 587,418"/> + <Glyph id="c28"> + <Coords points="566,418 584,418 584,439 566,439"/> + <TextEquiv conf="0.85187"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c29"> + <Coords points="587,417 614,417 614,438 587,438"/> + <TextEquiv conf="0.85970"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.85187"> + <Unicode>um</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w30" language="German" readingDirection="left-to-right"> + <Coords points="638,409 666,409 666,417 687,417 687,439 666,439 666,446 651,446 651,437 638,437"/> + <Glyph id="c31"> + <Coords points="638,409 647,409 647,437 638,437"/> + <TextEquiv conf="0.76901"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c32"> + <Coords points="651,409 666,409 666,446 651,446"/> + <TextEquiv conf="0.72665"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c33"> + <Coords points="671,417 687,417 687,439 671,439"/> + <TextEquiv conf="0.80526"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72665"> + <Unicode>ihn</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w34" language="German" readingDirection="left-to-right"> + <Coords points="764,412 778,412 778,439 764,439 764,438 714,438 714,417 764,417"/> + <Glyph id="c35"> + <Coords points="714,417 730,417 730,438 714,438"/> + <TextEquiv conf="0.80072"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c36"> + <Coords points="735,417 760,417 760,438 735,438"/> + <TextEquiv conf="0.82963"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c37"> + <Coords points="764,412 778,412 778,439 764,439"/> + <TextEquiv conf="0.69324"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69324"> + <Unicode>ums</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w38" language="German" readingDirection="left-to-right"> + <Coords points="791,409 820,409 820,412 831,412 831,417 871,417 871,440 820,440 820,446 791,446"/> + <Glyph id="c39"> + <Coords points="791,409 820,409 820,446 791,446"/> + <TextEquiv conf="0.76995"> + <Unicode>H</Unicode></TextEquiv></Glyph> + <Glyph id="c40"> + <Coords points="824,412 831,412 831,439 824,439"/> + <TextEquiv conf="0.79272"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c41"> + <Coords points="835,417 863,417 863,440 835,440"/> + <TextEquiv conf="0.86622"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c42"> + <Coords points="860,417 871,417 871,440 860,440"/> + <TextEquiv conf="0.69070"> + <Unicode>⸗</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69070"> + <Unicode>Him⸗</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>wurde an ihn abgeſit, um ihn ums Him⸗</Unicode></TextEquiv></TextLine> + <TextLine id="l11"> + <Coords points="245,456 263,456 263,463 367,463 367,457 379,457 379,464 492,464 492,462 528,462 528,460 822,460 822,467 871,467 871,489 822,489 822,494 736,494 736,489 675,489 675,487 542,487 542,494 528,494 528,493 453,493 453,492 367,492 367,491 319,491 319,485 135,485 135,464 180,464 180,460 235,460 235,458 245,458"/> + <Word id="w44" language="German" readingDirection="left-to-right"> + <Coords points="245,456 263,456 263,463 296,463 296,485 135,485 135,464 180,464 180,460 235,460 235,458 245,458"/> + <Glyph id="c46"> + <Coords points="135,464 162,464 162,485 135,485"/> + <TextEquiv conf="0.85319"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c48"> + <Coords points="167,465 177,465 177,485 167,485"/> + <TextEquiv conf="0.78682"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c50"> + <Coords points="180,460 186,460 186,485 180,485"/> + <TextEquiv conf="0.78644"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c52"> + <Coords points="189,460 202,460 202,484 189,484"/> + <TextEquiv conf="0.75733"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <Glyph id="c54"> + <Coords points="207,463 230,463 230,484 207,484"/> + <TextEquiv conf="0.78771"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c8"> + <Coords points="235,458 241,458 241,483 235,483"/> + <TextEquiv conf="0.81867"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c57"> + <Coords points="245,456 263,456 263,483 245,483"/> + <TextEquiv conf="0.78037"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c59"> + <Coords points="265,463 276,463 276,482 265,482"/> + <TextEquiv conf="0.83574"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c11"> + <Coords points="278,463 296,463 296,485 278,485"/> + <TextEquiv conf="0.76827"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75733"> + <Unicode>melswien</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w12" language="German" readingDirection="left-to-right"> + <Coords points="333,463 349,463 349,484 329,484 329,491 319,491 319,464 333,464"/> + <Glyph id="c62"> + <Coords points="319,464 329,464 329,491 319,491"/> + <TextEquiv conf="0.80147"> + <Unicode>z</Unicode></TextEquiv></Glyph> + <Glyph id="c64"> + <Coords points="333,463 349,463 349,484 333,484"/> + <TextEquiv conf="0.89003"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.80147"> + <Unicode>zu</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w66" language="German" readingDirection="left-to-right"> + <Coords points="367,457 379,457 379,464 409,464 409,465 424,465 424,466 443,466 443,480 462,480 462,493 453,493 453,492 367,492"/> + <Glyph id="c68"> + <Coords points="367,457 379,457 379,492 367,492"/> + <TextEquiv conf="0.69068"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c70"> + <Coords points="377,465 393,465 393,485 377,485"/> + <TextEquiv conf="0.80786"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c72"> + <Coords points="393,464 409,464 409,492 393,492"/> + <TextEquiv conf="0.76161"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c74"> + <Coords points="413,465 424,465 424,486 413,486"/> + <TextEquiv conf="0.70436"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c76"> + <Coords points="428,466 443,466 443,487 428,487"/> + <TextEquiv conf="0.79354"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c78"> + <Coords points="453,480 462,480 462,493 453,493"/> + <TextEquiv conf="0.93265"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69068"> + <Unicode>ſagen,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w22" language="German" readingDirection="left-to-right"> + <Coords points="528,460 542,460 542,494 528,494 528,488 492,488 492,462 528,462"/> + <Glyph id="c80"> + <Coords points="492,462 505,462 505,488 492,488"/> + <TextEquiv conf="0.78044"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c82"> + <Coords points="509,468 523,468 523,488 509,488"/> + <TextEquiv conf="0.63475"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c84"> + <Coords points="528,460 542,460 542,494 528,494"/> + <TextEquiv conf="0.81577"> + <Unicode>ß</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.63475"> + <Unicode>daß</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w26" language="German" readingDirection="left-to-right"> + <Coords points="564,466 575,466 575,467 590,467 590,487 564,487"/> + <Glyph id="c27"> + <Coords points="564,466 575,466 575,487 564,487"/> + <TextEquiv conf="0.81638"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c87"> + <Coords points="578,467 590,467 590,487 578,487"/> + <TextEquiv conf="0.83546"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.81638"> + <Unicode>er</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w29" language="German" readingDirection="left-to-right"> + <Coords points="608,460 622,460 622,462 658,462 658,487 608,487"/> + <Glyph id="c30"> + <Coords points="608,460 622,460 622,487 608,487"/> + <TextEquiv conf="0.85168"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c90"> + <Coords points="626,466 641,466 641,487 626,487"/> + <TextEquiv conf="0.62393"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c92"> + <Coords points="645,462 658,462 658,487 645,487"/> + <TextEquiv conf="0.76629"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.62393"> + <Unicode>das</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w33" language="German" readingDirection="left-to-right"> + <Coords points="675,460 822,460 822,467 871,467 871,489 822,489 822,494 736,494 736,489 675,489"/> + <Glyph id="c34"> + <Coords points="675,460 703,460 703,489 675,489"/> + <TextEquiv conf="0.69798"> + <Unicode>V</Unicode></TextEquiv></Glyph> + <Glyph id="c95"> + <Coords points="706,466 718,466 718,487 706,487"/> + <TextEquiv conf="0.76922"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c97"> + <Coords points="721,468 732,468 732,487 721,487"/> + <TextEquiv conf="0.82046"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c99"> + <Coords points="736,460 746,460 746,494 736,494"/> + <TextEquiv conf="0.71052"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c38"> + <Coords points="744,468 760,468 760,494 744,494"/> + <TextEquiv conf="0.85039"> + <Unicode>p</Unicode></TextEquiv></Glyph> + <Glyph id="c102"> + <Coords points="764,468 777,468 777,489 764,489"/> + <TextEquiv conf="0.78193"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c104"> + <Coords points="780,468 792,468 792,488 780,488"/> + <TextEquiv conf="0.89800"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c106"> + <Coords points="796,460 822,460 822,494 796,494"/> + <TextEquiv conf="0.82949"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c108"> + <Coords points="823,467 835,467 835,489 823,489"/> + <TextEquiv conf="0.78273"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c43"> + <Coords points="838,467 854,467 854,489 838,489"/> + <TextEquiv conf="0.80730"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c44"> + <Coords points="858,467 871,467 871,489 858,489"/> + <TextEquiv conf="0.82663"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69798"> + <Unicode>Verſproene</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>melswien zu ſagen, daß er das Verſproene</Unicode></TextEquiv></TextLine> + <TextLine id="l12"> + <Coords points="189,505 328,505 328,506 415,506 415,508 553,508 553,507 567,507 567,510 593,510 593,515 723,515 723,509 738,509 738,507 764,507 764,511 854,511 854,517 869,517 869,540 802,540 802,543 738,543 738,538 631,538 631,543 617,543 617,538 487,538 487,537 363,537 363,540 350,540 350,535 213,535 213,538 150,538 150,541 133,541 133,513 154,513 154,507 189,507"/> + <Word id="w112" language="German" readingDirection="left-to-right"> + <Coords points="189,505 213,505 213,538 150,538 150,541 133,541 133,513 154,513 154,507 189,507"/> + <Glyph id="c114"> + <Coords points="133,513 150,513 150,541 133,541"/> + <TextEquiv conf="0.77811"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c116"> + <Coords points="154,507 161,507 161,535 154,535"/> + <TextEquiv conf="0.90902"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c118"> + <Coords points="164,514 175,514 175,535 164,535"/> + <TextEquiv conf="0.86294"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c120"> + <Coords points="178,508 185,508 185,535 178,535"/> + <TextEquiv conf="0.87351"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c122"> + <Coords points="189,505 213,505 213,538 189,538"/> + <TextEquiv conf="0.84207"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.77811"> + <Unicode>glei</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w124" language="German" readingDirection="left-to-right"> + <Coords points="238,507 251,507 251,512 286,512 286,531 265,531 265,532 251,532 251,533 238,533"/> + <Glyph id="c126"> + <Coords points="238,507 251,507 251,533 238,533"/> + <TextEquiv conf="0.82464"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c128"> + <Coords points="256,513 265,513 265,532 256,532"/> + <TextEquiv conf="0.74946"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c130"> + <Coords points="269,512 286,512 286,531 269,531"/> + <TextEquiv conf="0.75693"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74946"> + <Unicode>den</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w132" language="German" readingDirection="left-to-right"> + <Coords points="301,505 328,505 328,506 415,506 415,508 463,508 463,537 363,537 363,540 350,540 350,535 301,535"/> + <Glyph id="c134"> + <Coords points="301,505 328,505 328,535 301,535"/> + <TextEquiv conf="0.74360"> + <Unicode>A</Unicode></TextEquiv></Glyph> + <Glyph id="c136"> + <Coords points="330,512 347,512 347,533 330,533"/> + <TextEquiv conf="0.86690"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c15"> + <Coords points="350,513 363,513 363,540 350,540"/> + <TextEquiv conf="0.83730"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c139"> + <Coords points="367,514 378,514 378,535 367,535"/> + <TextEquiv conf="0.78025"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c141"> + <Coords points="382,515 397,515 397,536 382,536"/> + <TextEquiv conf="0.85364"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c143"> + <Coords points="402,506 415,506 415,536 402,536"/> + <TextEquiv conf="0.82963"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c145"> + <Coords points="418,508 426,508 426,537 418,537"/> + <TextEquiv conf="0.76089"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c147"> + <Coords points="430,509 436,509 436,536 430,536"/> + <TextEquiv conf="0.75730"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c149"> + <Coords points="440,508 463,508 463,537 440,537"/> + <TextEquiv conf="0.75571"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74360"> + <Unicode>Augenbli</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w151" language="German" readingDirection="left-to-right"> + <Coords points="553,507 567,507 567,510 593,510 593,515 645,515 645,517 665,517 665,537 631,537 631,543 617,543 617,538 487,538 487,508 553,508"/> + <Glyph id="c153"> + <Coords points="487,508 503,508 503,538 487,538"/> + <TextEquiv conf="0.75665"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c155"> + <Coords points="507,508 520,508 520,538 507,538"/> + <TextEquiv conf="0.85321"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c157"> + <Coords points="524,517 536,517 536,537 524,537"/> + <TextEquiv conf="0.81267"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c159"> + <Coords points="538,516 551,516 551,537 538,537"/> + <TextEquiv conf="0.86010"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c161"> + <Coords points="553,507 567,507 567,537 553,537"/> + <TextEquiv conf="0.85329"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c163"> + <Coords points="571,516 583,516 583,537 571,537"/> + <TextEquiv conf="0.79465"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c165"> + <Coords points="586,510 593,510 593,537 586,537"/> + <TextEquiv conf="0.70828"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c167"> + <Coords points="597,516 613,516 613,537 597,537"/> + <TextEquiv conf="0.89573"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c169"> + <Coords points="617,516 631,516 631,543 617,543"/> + <TextEquiv conf="0.83986"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c171"> + <Coords points="634,515 645,515 645,536 634,536"/> + <TextEquiv conf="0.71743"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c173"> + <Coords points="650,517 665,517 665,537 650,537"/> + <TextEquiv conf="0.75062"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.70828"> + <Unicode>berbringen</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w175" language="German" readingDirection="left-to-right"> + <Coords points="738,507 764,507 764,515 777,515 777,517 792,517 792,531 802,531 802,543 738,543 738,538 693,538 693,517 723,517 723,509 738,509"/> + <Glyph id="c177"> + <Coords points="693,517 718,517 718,538 693,538"/> + <TextEquiv conf="0.83211"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c179"> + <Coords points="723,509 736,509 736,537 723,537"/> + <TextEquiv conf="0.74706"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c181"> + <Coords points="738,507 764,507 764,543 738,543"/> + <TextEquiv conf="0.75061"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c183"> + <Coords points="768,515 777,515 777,539 768,539"/> + <TextEquiv conf="0.86418"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c185"> + <Coords points="781,517 792,517 792,537 781,537"/> + <TextEquiv conf="0.81924"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c187"> + <Coords points="794,531 802,531 802,543 794,543"/> + <TextEquiv conf="0.96890"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74706"> + <Unicode>mte,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w41" language="German" readingDirection="left-to-right"> + <Coords points="847,511 854,511 854,517 869,517 869,540 858,540 858,539 829,539 829,512 847,512"/> + <Glyph id="c189"> + <Coords points="829,512 844,512 844,539 829,539"/> + <TextEquiv conf="0.88091"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c191"> + <Coords points="847,511 854,511 854,539 847,539"/> + <TextEquiv conf="0.81469"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c193"> + <Coords points="858,517 869,517 869,540 858,540"/> + <TextEquiv conf="0.84284"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.81469"> + <Unicode>die</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>glei den Augenbli berbringen mte, die</Unicode></TextEquiv></TextLine> + <TextLine id="l13"> + <Coords points="325,551 340,551 340,558 455,558 455,555 470,555 470,558 664,558 664,557 692,557 692,562 808,562 808,560 830,560 830,567 858,567 858,581 869,581 869,597 859,597 859,595 692,595 692,597 677,597 677,594 548,594 548,595 451,595 451,597 435,597 435,587 384,587 384,586 363,586 363,583 155,583 155,590 131,590 131,554 224,554 224,553 325,553"/> + <Word id="w195" language="German" readingDirection="left-to-right"> + <Coords points="131,554 155,554 155,561 207,561 207,582 155,582 155,590 131,590"/> + <Glyph id="c197"> + <Coords points="131,554 155,554 155,590 131,590"/> + <TextEquiv conf="0.81259"> + <Unicode>F</Unicode></TextEquiv></Glyph> + <Glyph id="c199"> + <Coords points="157,562 169,562 169,582 157,582"/> + <TextEquiv conf="0.82264"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c201"> + <Coords points="172,562 187,562 187,582 172,582"/> + <TextEquiv conf="0.81917"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c203"> + <Coords points="191,561 207,561 207,582 191,582"/> + <TextEquiv conf="0.82070"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.81259"> + <Unicode>Frau</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w7" language="German" readingDirection="left-to-right"> + <Coords points="325,551 340,551 340,558 392,558 392,565 412,565 412,586 392,586 392,587 384,587 384,586 363,586 363,583 224,583 224,553 325,553"/> + <Glyph id="c205"> + <Coords points="224,553 250,553 250,583 224,583"/> + <TextEquiv conf="0.72094"> + <Unicode>A</Unicode></TextEquiv></Glyph> + <Glyph id="c207"> + <Coords points="252,562 278,562 278,582 252,582"/> + <TextEquiv conf="0.80405"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c209"> + <Coords points="283,561 292,561 292,583 283,583"/> + <TextEquiv conf="0.81141"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c211"> + <Coords points="295,561 321,561 321,583 295,583"/> + <TextEquiv conf="0.82492"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c213"> + <Coords points="325,551 340,551 340,583 325,583"/> + <TextEquiv conf="0.78478"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c215"> + <Coords points="343,562 359,562 359,583 343,583"/> + <TextEquiv conf="0.83247"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c217"> + <Coords points="363,564 379,564 379,586 363,586"/> + <TextEquiv conf="0.86555"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c219"> + <Coords points="384,558 392,558 392,587 384,587"/> + <TextEquiv conf="0.79899"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c221"> + <Coords points="395,565 412,565 412,586 395,586"/> + <TextEquiv conf="0.86251"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72094"> + <Unicode>Amtmnnin</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w17" language="German" readingDirection="left-to-right"> + <Coords points="455,555 470,555 470,563 496,563 496,566 511,566 511,586 496,586 496,587 451,587 451,597 435,597 435,558 455,558"/> + <Glyph id="c223"> + <Coords points="435,558 451,558 451,597 435,597"/> + <TextEquiv conf="0.81524"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c225"> + <Coords points="455,555 470,555 470,587 455,587"/> + <TextEquiv conf="0.75016"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c227"> + <Coords points="474,563 484,563 484,587 474,587"/> + <TextEquiv conf="0.79488"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c229"> + <Coords points="487,563 496,563 496,587 487,587"/> + <TextEquiv conf="0.85811"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c231"> + <Coords points="499,566 511,566 511,586 499,586"/> + <TextEquiv conf="0.83136"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75016"> + <Unicode>htte</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w23" language="German" readingDirection="left-to-right"> + <Coords points="530,558 576,558 576,593 548,593 548,595 530,595"/> + <Glyph id="c233"> + <Coords points="530,558 548,558 548,595 530,595"/> + <TextEquiv conf="0.81399"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c235"> + <Coords points="550,558 576,558 576,593 550,593"/> + <TextEquiv conf="0.85105"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.81399"> + <Unicode></Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w237" language="German" readingDirection="left-to-right"> + <Coords points="638,559 651,559 651,594 638,594 638,587 599,587 599,565 638,565"/> + <Glyph id="c239"> + <Coords points="599,565 616,565 616,587 599,587"/> + <TextEquiv conf="0.86619"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c241"> + <Coords points="619,566 635,566 635,587 619,587"/> + <TextEquiv conf="0.85601"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c243"> + <Coords points="638,559 651,559 651,594 638,594"/> + <TextEquiv conf="0.90154"> + <Unicode>f</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.85601"> + <Unicode>auf</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w245" language="German" readingDirection="left-to-right"> + <Coords points="664,557 692,557 692,565 713,565 713,587 692,587 692,597 677,597 677,587 664,587"/> + <Glyph id="c247"> + <Coords points="664,557 673,557 673,587 664,587"/> + <TextEquiv conf="0.86188"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c249"> + <Coords points="677,557 692,557 692,597 677,597"/> + <TextEquiv conf="0.78219"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c251"> + <Coords points="696,565 713,565 713,587 696,587"/> + <TextEquiv conf="0.87377"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.78219"> + <Unicode>ihn</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w253" language="German" readingDirection="left-to-right"> + <Coords points="808,560 830,560 830,567 858,567 858,581 869,581 869,597 859,597 859,595 789,595 789,588 749,588 749,587 730,587 730,564 779,564 779,562 808,562"/> + <Glyph id="c255"> + <Coords points="730,564 745,564 745,587 730,587"/> + <TextEquiv conf="0.83469"> + <Unicode>v</Unicode></TextEquiv></Glyph> + <Glyph id="c257"> + <Coords points="749,566 760,566 760,588 749,588"/> + <TextEquiv conf="0.82584"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c259"> + <Coords points="763,567 775,567 775,588 763,588"/> + <TextEquiv conf="0.80972"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c261"> + <Coords points="779,562 785,562 785,588 779,588"/> + <TextEquiv conf="0.75773"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c263"> + <Coords points="789,568 805,568 805,595 789,595"/> + <TextEquiv conf="0.75762"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c265"> + <Coords points="808,560 830,560 830,594 808,594"/> + <TextEquiv conf="0.84869"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c267"> + <Coords points="827,567 838,567 838,588 827,588"/> + <TextEquiv conf="0.83288"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c269"> + <Coords points="841,567 858,567 858,588 841,588"/> + <TextEquiv conf="0.85809"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c271"> + <Coords points="859,581 869,581 869,597 859,597"/> + <TextEquiv conf="0.95823"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75762"> + <Unicode>verlaen,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>Frau Amtmnnin htte  auf ihn verlaen,</Unicode></TextEquiv></TextLine> + <TextLine id="l14"> + <Coords points="435,603 448,603 448,607 527,607 527,613 631,613 631,611 671,611 671,609 780,609 780,616 869,616 869,639 834,639 834,644 767,644 767,643 671,643 671,637 559,637 559,643 550,643 550,642 433,642 433,643 414,643 414,642 344,642 344,634 325,634 325,633 153,633 153,634 132,634 132,609 174,609 174,605 188,605 188,611 297,611 297,610 325,610 325,605 435,605"/> + <Word id="w273" language="German" readingDirection="left-to-right"> + <Coords points="174,605 188,605 188,632 153,632 153,634 132,634 132,609 174,609"/> + <Glyph id="c275"> + <Coords points="132,609 153,609 153,634 132,634"/> + <TextEquiv conf="0.69472"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c277"> + <Coords points="153,610 174,610 174,632 153,632"/> + <TextEquiv conf="0.79421"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c279"> + <Coords points="174,605 188,605 188,632 174,632"/> + <TextEquiv conf="0.85457"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69472"> + <Unicode>und</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w6" language="German" readingDirection="left-to-right"> + <Coords points="217,611 275,611 275,633 237,633 237,632 217,632"/> + <Glyph id="c281"> + <Coords points="217,611 233,611 233,632 217,632"/> + <TextEquiv conf="0.89967"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c283"> + <Coords points="237,612 253,612 253,633 237,633"/> + <TextEquiv conf="0.86568"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c285"> + <Coords points="257,611 275,611 275,633 257,633"/> + <TextEquiv conf="0.87952"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.86568"> + <Unicode>nun</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w10" language="German" readingDirection="left-to-right"> + <Coords points="325,605 341,605 341,606 358,606 358,613 370,613 370,615 385,615 385,636 358,636 358,642 344,642 344,634 325,634 325,633 297,633 297,610 325,610"/> + <Glyph id="c287"> + <Coords points="297,610 321,610 321,633 297,633"/> + <TextEquiv conf="0.88191"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c289"> + <Coords points="325,605 341,605 341,634 325,634"/> + <TextEquiv conf="0.62584"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c291"> + <Coords points="344,606 358,606 358,642 344,642"/> + <TextEquiv conf="0.81252"> + <Unicode>ß</Unicode></TextEquiv></Glyph> + <Glyph id="c293"> + <Coords points="362,613 370,613 370,636 362,636"/> + <TextEquiv conf="0.79687"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c295"> + <Coords points="374,615 385,615 385,636 374,636"/> + <TextEquiv conf="0.90548"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.62584"> + <Unicode>wßte</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w16" language="German" readingDirection="left-to-right"> + <Coords points="435,603 448,603 448,637 433,637 433,643 414,643 414,608 435,608"/> + <Glyph id="c297"> + <Coords points="414,608 433,608 433,643 414,643"/> + <TextEquiv conf="0.81184"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c299"> + <Coords points="435,603 448,603 448,637 435,637"/> + <TextEquiv conf="0.60769"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.60769"> + <Unicode>e</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w20" language="German" readingDirection="left-to-right"> + <Coords points="503,607 527,607 527,613 541,613 541,629 559,629 559,643 550,643 550,642 503,642 503,637 472,637 472,616 492,616 492,609 503,609"/> + <Glyph id="c303"> + <Coords points="472,616 489,616 489,637 472,637"/> + <TextEquiv conf="0.84956"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c305"> + <Coords points="492,609 500,609 500,637 492,637"/> + <TextEquiv conf="0.83295"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c307"> + <Coords points="503,607 527,607 527,642 503,642"/> + <TextEquiv conf="0.84246"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c309"> + <Coords points="531,613 541,613 541,636 531,636"/> + <TextEquiv conf="0.79185"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c311"> + <Coords points="550,629 559,629 559,643 550,643"/> + <TextEquiv conf="0.93453"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.79185"> + <Unicode>nit,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w313" language="German" readingDirection="left-to-right"> + <Coords points="631,611 646,611 646,636 629,636 629,637 613,637 613,636 585,636 585,613 631,613"/> + <Glyph id="c315"> + <Coords points="585,613 610,613 610,636 585,636"/> + <TextEquiv conf="0.86913"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c317"> + <Coords points="613,616 629,616 629,637 613,637"/> + <TextEquiv conf="0.89154"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c319"> + <Coords points="631,611 646,611 646,636 631,636"/> + <TextEquiv conf="0.77958"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.77958"> + <Unicode>was</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w321" language="German" readingDirection="left-to-right"> + <Coords points="671,609 688,609 688,615 702,615 702,637 688,637 688,643 671,643"/> + <Glyph id="c323"> + <Coords points="671,609 688,609 688,643 671,643"/> + <TextEquiv conf="0.79448"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c325"> + <Coords points="691,615 702,615 702,637 691,637"/> + <TextEquiv conf="0.91057"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.79448"> + <Unicode>e</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w327" language="German" readingDirection="left-to-right"> + <Coords points="767,609 780,609 780,616 869,616 869,639 834,639 834,644 767,644 767,637 747,637 747,636 727,636 727,615 767,615"/> + <Glyph id="c329"> + <Coords points="727,615 744,615 744,636 727,636"/> + <TextEquiv conf="0.86330"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c331"> + <Coords points="747,616 764,616 764,637 747,637"/> + <TextEquiv conf="0.81493"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c333"> + <Coords points="767,609 780,609 780,644 767,644"/> + <TextEquiv conf="0.83340"> + <Unicode>f</Unicode></TextEquiv></Glyph> + <Glyph id="c335"> + <Coords points="780,617 797,617 797,638 780,638"/> + <TextEquiv conf="0.80822"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c337"> + <Coords points="800,617 817,617 817,638 800,638"/> + <TextEquiv conf="0.63127"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c341"> + <Coords points="819,617 834,617 834,644 819,644"/> + <TextEquiv conf="0.83403"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c343"> + <Coords points="837,617 849,617 849,638 837,638"/> + <TextEquiv conf="0.83633"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c345"> + <Coords points="852,616 869,616 869,639 852,639"/> + <TextEquiv conf="0.86528"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.63127"> + <Unicode>anfangen</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>und nun wßte e nit, was e anfangen</Unicode></TextEquiv></TextLine> + <TextLine id="l15"> + <Coords points="132,653 145,653 145,654 177,654 177,659 188,659 188,662 290,662 290,655 323,655 323,657 489,657 489,656 503,656 503,657 594,657 594,658 625,658 625,663 737,663 737,657 750,657 750,666 822,666 822,667 858,667 858,679 868,679 868,693 859,693 859,688 827,688 827,687 594,687 594,692 580,692 580,686 451,686 451,691 437,691 437,685 387,685 387,683 214,683 214,686 145,686 145,689 132,689"/> + <Word id="w347" language="German" readingDirection="left-to-right"> + <Coords points="132,653 145,653 145,654 177,654 177,659 188,659 188,662 203,662 203,678 214,678 214,686 145,686 145,689 132,689"/> + <Glyph id="c349"> + <Coords points="132,653 145,653 145,689 132,689"/> + <TextEquiv conf="0.90107"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c351"> + <Coords points="143,662 156,662 156,683 143,683"/> + <TextEquiv conf="0.83153"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c353"> + <Coords points="160,654 177,654 177,684 160,684"/> + <TextEquiv conf="0.83913"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c355"> + <Coords points="180,659 188,659 188,683 180,683"/> + <TextEquiv conf="0.82032"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c357"> + <Coords points="192,662 203,662 203,683 192,683"/> + <TextEquiv conf="0.81250"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c359"> + <Coords points="206,678 214,678 214,686 206,686"/> + <TextEquiv conf="0.83006"> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.44962"> + <Unicode>ſote.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w363" language="German" readingDirection="left-to-right"> + <Coords points="290,655 323,655 323,662 337,662 337,663 358,663 358,683 290,683"/> + <Glyph id="c365"> + <Coords points="290,655 323,655 323,683 290,683"/> + <TextEquiv conf="0.77633"> + <Unicode>D</Unicode></TextEquiv></Glyph> + <Glyph id="c367"> + <Coords points="327,662 337,662 337,682 327,682"/> + <TextEquiv conf="0.75732"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c369"> + <Coords points="340,663 358,663 358,683 340,683"/> + <TextEquiv conf="0.83778"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75732"> + <Unicode>Den</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w14" language="German" readingDirection="left-to-right"> + <Coords points="489,656 503,656 503,657 551,657 551,685 514,685 514,686 451,686 451,691 437,691 437,685 387,685 387,657 489,657"/> + <Glyph id="c371"> + <Coords points="387,657 414,657 414,685 387,685"/> + <TextEquiv conf="0.76383"> + <Unicode>A</Unicode></TextEquiv></Glyph> + <Glyph id="c373"> + <Coords points="417,665 432,665 432,684 417,684"/> + <TextEquiv conf="0.82903"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c375"> + <Coords points="437,665 451,665 451,691 437,691"/> + <TextEquiv conf="0.79390"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c377"> + <Coords points="455,664 465,664 465,684 455,684"/> + <TextEquiv conf="0.87798"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c379"> + <Coords points="469,665 485,665 485,685 469,685"/> + <TextEquiv conf="0.80330"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c381"> + <Coords points="489,656 503,656 503,684 489,684"/> + <TextEquiv conf="0.88135"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c383"> + <Coords points="506,658 514,658 514,686 506,686"/> + <TextEquiv conf="0.90900"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c385"> + <Coords points="516,658 524,658 524,685 516,685"/> + <TextEquiv conf="0.81731"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c387"> + <Coords points="537,657 551,657 551,685 528,685 528,664 537,664"/> + <TextEquiv conf="0.87359"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74983"> + <Unicode>Augenbli</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w25" language="German" readingDirection="left-to-right"> + <Coords points="580,657 594,657 594,658 625,658 625,663 636,663 636,665 651,665 651,685 625,685 625,686 594,686 594,692 580,692"/> + <Glyph id="c393"> + <Coords points="580,657 594,657 594,692 580,692"/> + <TextEquiv conf="0.89818"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c395"> + <Coords points="591,666 603,666 603,685 591,685"/> + <TextEquiv conf="0.87966"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c397"> + <Coords points="608,658 625,658 625,686 608,686"/> + <TextEquiv conf="0.89074"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c399"> + <Coords points="627,663 636,663 636,685 627,685"/> + <TextEquiv conf="0.82771"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c401"> + <Coords points="639,665 651,665 651,685 639,685"/> + <TextEquiv conf="0.82185"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.70672"> + <Unicode>ſote</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w32" language="German" readingDirection="left-to-right"> + <Coords points="682,665 709,665 709,686 692,686 692,687 682,687"/> + <Glyph id="c403"> + <Coords points="682,665 692,665 692,687 682,687"/> + <TextEquiv conf="0.85040"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c405"> + <Coords points="696,665 709,665 709,686 696,686"/> + <TextEquiv conf="0.87954"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.85040"> + <Unicode>er</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w35" language="German" readingDirection="left-to-right"> + <Coords points="737,657 750,657 750,666 822,666 822,667 858,667 858,679 868,679 868,693 859,693 859,688 827,688 827,687 769,687 769,686 752,686 752,685 737,685"/> + <Glyph id="c407"> + <Coords points="737,657 750,657 750,685 737,685"/> + <TextEquiv conf="0.79499"> + <Unicode>k</Unicode></TextEquiv></Glyph> + <Glyph id="c409"> + <Coords points="752,669 765,669 765,686 752,686"/> + <TextEquiv conf="0.75371"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c411"> + <Coords points="769,666 794,666 794,687 769,687"/> + <TextEquiv conf="0.89726"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c413"> + <Coords points="798,666 822,666 822,687 798,687"/> + <TextEquiv conf="0.86998"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c415"> + <Coords points="827,667 838,667 838,688 827,688"/> + <TextEquiv conf="0.76112"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c417"> + <Coords points="841,667 858,667 858,688 841,688"/> + <TextEquiv conf="0.86190"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c419"> + <Coords points="859,679 868,679 868,693 859,693"/> + <TextEquiv conf="0.75547"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75371"> + <Unicode>kommen,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>ſote. Den Augenbli ſote er kommen,</Unicode></TextEquiv></TextLine> + <TextLine id="l16"> + <Coords points="289,700 296,700 296,704 391,704 391,706 500,706 500,705 610,705 610,706 670,706 670,717 810,717 810,706 843,706 843,708 853,708 853,714 869,714 869,734 810,734 810,725 670,725 670,727 679,727 679,734 670,734 670,738 632,738 632,732 515,732 515,737 500,737 500,731 388,731 388,736 200,736 200,738 132,738 132,703 145,703 145,705 289,705"/> + <Word id="w18" language="German" readingDirection="left-to-right"> + <Coords points="375,704 391,704 391,711 405,711 405,729 391,729 391,731 388,731 388,736 375,736"/> + <Glyph id="c453"> + <Coords points="375,704 391,704 391,731 388,731 388,736 375,736"/> + <TextEquiv conf="0.71967"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c457"> + <Coords points="395,711 405,711 405,729 395,729"/> + <TextEquiv conf="0.63427"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.59618"> + <Unicode>e</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w459" language="German" readingDirection="left-to-right"> + <Coords points="430,706 437,706 437,712 458,712 458,730 430,730"/> + <Glyph id="c461"> + <Coords points="430,706 437,706 437,730 430,730"/> + <TextEquiv conf="0.90932"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c463"> + <Coords points="443,712 458,712 458,730 443,730"/> + <TextEquiv conf="0.78817"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.78817"> + <Unicode>in</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w465" language="German" readingDirection="left-to-right"> + <Coords points="500,705 515,705 515,712 561,712 561,730 545,730 545,731 515,731 515,737 500,737 500,731 488,731 488,706 500,706"/> + <Glyph id="c467"> + <Coords points="488,706 500,706 500,731 488,731"/> + <TextEquiv conf="0.75617"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c469"> + <Coords points="500,705 515,705 515,737 500,737"/> + <TextEquiv conf="0.81226"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c471"> + <Coords points="519,712 531,712 531,731 519,731"/> + <TextEquiv conf="0.82490"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c473"> + <Coords points="534,712 545,712 545,731 534,731"/> + <TextEquiv conf="0.77567"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c475"> + <Coords points="549,712 561,712 561,730 549,730"/> + <TextEquiv conf="0.81074"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75617"> + <Unicode>ihrer</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w31" language="German" readingDirection="left-to-right"> + <Coords points="584,705 610,705 610,706 670,706 670,727 679,727 679,734 670,734 670,738 632,738 632,732 584,732"/> + <Glyph id="c477"> + <Coords points="584,705 610,705 610,732 584,732"/> + <TextEquiv conf="0.75753"> + <Unicode>A</Unicode></TextEquiv></Glyph> + <Glyph id="c479"> + <Coords points="612,712 628,712 628,731 612,731"/> + <TextEquiv conf="0.85713"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c481"> + <Coords points="632,713 646,713 646,738 632,738"/> + <TextEquiv conf="0.83868"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c483"> + <Coords points="651,706 670,706 670,738 651,738"/> + <TextEquiv conf="0.83102"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c485"> + <Coords points="672,727 679,727 679,734 672,734"/> + <TextEquiv conf="0.86399"> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75753"> + <Unicode>Ang.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w37" language="German" readingDirection="left-to-right"> + <Coords points="707,717 758,717 758,725 707,725"/> + <Glyph id="c489"> + <Coords points="707,717 758,717 758,725 707,725"/> + <TextEquiv conf="0.65354"> + <Unicode>—</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.34845"> + <Unicode>—</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w493" language="German" readingDirection="left-to-right"> + <Coords points="810,706 843,706 843,708 853,708 853,714 869,714 869,734 810,734"/> + <Glyph id="c495"> + <Coords points="810,706 843,706 843,734 810,734"/> + <TextEquiv conf="0.80822"> + <Unicode>D</Unicode></TextEquiv></Glyph> + <Glyph id="c497"> + <Coords points="846,708 853,708 853,734 846,734"/> + <TextEquiv conf="0.73804"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c499"> + <Coords points="856,714 869,714 869,734 856,734"/> + <TextEquiv conf="0.90323"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.73804"> + <Unicode>Die</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1958" language="German" readingDirection="left-to-right"> + <Coords points="132,703 145,703 145,705 200,705 200,738 132,738"/> + <Glyph id="c423"> + <Coords points="132,703 145,703 145,738 132,738"/> + <TextEquiv conf="0.90635"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c425"> + <Coords points="145,712 156,712 156,732 145,732"/> + <TextEquiv conf="0.82676"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c427"> + <Coords points="161,712 177,712 177,732 161,732"/> + <TextEquiv conf="0.75355"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c429"> + <Coords points="181,705 200,705 200,738 181,738"/> + <TextEquiv conf="0.82048"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>ſon</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1959" language="German" readingDirection="left-to-right"> + <Coords points="289,700 296,700 296,710 311,710 311,711 349,711 349,736 271,736 271,735 243,735 243,731 222,731 222,708 289,708"/> + <Glyph id="c435"> + <Coords points="222,708 238,708 238,731 222,731"/> + <TextEquiv conf="0.81159"> + <Unicode>v</Unicode></TextEquiv></Glyph> + <Glyph id="c437"> + <Coords points="243,710 253,710 253,735 243,735"/> + <TextEquiv conf="0.78373"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c439"> + <Coords points="256,709 270,709 270,730 256,730"/> + <TextEquiv conf="0.66507"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c443"> + <Coords points="271,710 285,710 285,736 271,736"/> + <TextEquiv conf="0.78970"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c445"> + <Coords points="289,700 296,700 296,730 289,730"/> + <TextEquiv conf="0.74451"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c447"> + <Coords points="300,710 311,710 311,728 300,728"/> + <TextEquiv conf="0.77809"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c449"> + <Coords points="315,711 330,711 330,730 315,730"/> + <TextEquiv conf="0.75578"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c451"> + <Coords points="335,711 349,711 349,736 335,736"/> + <TextEquiv conf="0.77976"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>vergieng</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>ſon vergieng e in ihrer Ang. — Die</Unicode></TextEquiv></TextLine> + <TextLine id="l17"> + <Coords points="267,747 282,747 282,750 362,750 362,751 381,751 381,757 507,757 507,751 518,751 518,757 710,757 710,753 788,753 788,752 800,752 800,753 830,753 830,754 842,754 842,758 854,758 854,760 869,760 869,783 830,783 830,791 815,791 815,788 788,788 788,781 646,781 646,786 636,786 636,779 612,779 612,778 489,778 489,785 475,785 475,784 358,784 358,783 348,783 348,778 226,778 226,779 203,779 203,786 190,786 190,781 135,781 135,751 172,751 172,749 267,749"/> + <Word id="w501" language="German" readingDirection="left-to-right"> + <Coords points="172,749 185,749 185,752 203,752 203,758 226,758 226,779 203,779 203,786 190,786 190,781 135,781 135,751 172,751"/> + <Glyph id="c503"> + <Coords points="135,751 167,751 167,781 135,781"/> + <TextEquiv conf="0.74674"> + <Unicode>G</Unicode></TextEquiv></Glyph> + <Glyph id="c505"> + <Coords points="172,749 185,749 185,780 172,780"/> + <TextEquiv conf="0.74037"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c507"> + <Coords points="190,752 203,752 203,759 208,759 208,778 203,778 203,786 190,786"/> + <TextEquiv conf="0.72476"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c511"> + <Coords points="211,758 226,758 226,779 211,779"/> + <TextEquiv conf="0.54722"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.54722"> + <Unicode>Ge</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w513" language="German" readingDirection="left-to-right"> + <Coords points="267,747 282,747 282,756 330,756 330,775 311,775 311,777 263,777 263,778 240,778 240,757 267,757"/> + <Glyph id="c515"> + <Coords points="240,757 263,757 263,778 240,778"/> + <TextEquiv conf="0.73661"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c517"> + <Coords points="267,747 282,747 282,776 267,776"/> + <TextEquiv conf="0.69234"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c519"> + <Coords points="285,757 297,757 297,776 285,776"/> + <TextEquiv conf="0.65563"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c521"> + <Coords points="300,759 311,759 311,777 300,777"/> + <TextEquiv conf="0.56312"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c523"> + <Coords points="314,756 330,756 330,775 314,775"/> + <TextEquiv conf="0.69455"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.56312"> + <Unicode>wren</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w525" language="German" readingDirection="left-to-right"> + <Coords points="348,750 362,750 362,751 381,751 381,757 420,757 420,777 381,777 381,784 358,784 358,783 348,783"/> + <Glyph id="c527"> + <Coords points="348,750 362,750 362,783 348,783"/> + <TextEquiv conf="0.66078"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c531"> + <Coords points="358,751 381,751 381,784 358,784"/> + <TextEquiv conf="0.66802"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c539"> + <Coords points="386,758 399,758 399,777 386,777"/> + <TextEquiv conf="0.73845"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c541"> + <Coords points="404,757 420,757 420,777 404,777"/> + <TextEquiv conf="0.77675"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.62291"> + <Unicode>ſon</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w543" language="German" readingDirection="left-to-right"> + <Coords points="507,751 518,751 518,757 628,757 628,770 646,770 646,786 636,786 636,779 612,779 612,778 489,778 489,785 475,785 475,777 437,777 437,758 507,758"/> + <Glyph id="c545"> + <Coords points="437,758 452,758 452,777 437,777"/> + <TextEquiv conf="0.72155"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c547"> + <Coords points="456,758 471,758 471,777 456,777"/> + <TextEquiv conf="0.79762"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c549"> + <Coords points="475,759 489,759 489,785 475,785"/> + <TextEquiv conf="0.79532"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c551"> + <Coords points="493,758 504,758 504,777 493,777"/> + <TextEquiv conf="0.80650"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c553"> + <Coords points="507,751 518,751 518,778 507,778"/> + <TextEquiv conf="0.81130"> + <Unicode>k</Unicode></TextEquiv></Glyph> + <Glyph id="c555"> + <Coords points="521,758 534,758 534,777 521,777"/> + <TextEquiv conf="0.87234"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c557"> + <Coords points="538,757 563,757 563,778 538,778"/> + <TextEquiv conf="0.86420"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c559"> + <Coords points="567,757 593,757 593,778 567,778"/> + <TextEquiv conf="0.82836"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c561"> + <Coords points="598,757 609,757 609,778 598,778"/> + <TextEquiv conf="0.85506"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c563"> + <Coords points="612,757 628,757 628,779 612,779"/> + <TextEquiv conf="0.82750"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c565"> + <Coords points="636,770 646,770 646,786 636,786"/> + <TextEquiv conf="0.92026"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72155"> + <Unicode>angekommen,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w567" language="German" readingDirection="left-to-right"> + <Coords points="710,753 725,753 725,781 710,781 710,780 669,780 669,758 710,758"/> + <Glyph id="c569"> + <Coords points="669,758 685,758 685,780 669,780"/> + <TextEquiv conf="0.83921"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c571"> + <Coords points="690,759 705,759 705,780 690,780"/> + <TextEquiv conf="0.78570"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c573"> + <Coords points="710,753 725,753 725,781 710,781"/> + <TextEquiv conf="0.85326"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.78570"> + <Unicode>und</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w39" language="German" readingDirection="left-to-right"> + <Coords points="756,755 771,755 771,780 742,780 742,759 756,759"/> + <Glyph id="c575"> + <Coords points="742,759 754,759 754,780 742,780"/> + <TextEquiv conf="0.83292"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c577"> + <Coords points="756,755 771,755 771,780 756,780"/> + <TextEquiv conf="0.74440"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74440"> + <Unicode>es</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w42" language="German" readingDirection="left-to-right"> + <Coords points="788,752 800,752 800,753 830,753 830,754 842,754 842,758 854,758 854,760 869,760 869,783 830,783 830,791 815,791 815,788 788,788"/> + <Glyph id="c579"> + <Coords points="788,752 800,752 800,788 788,788"/> + <TextEquiv conf="0.72874"> + <Unicode>f</Unicode></TextEquiv></Glyph> + <Glyph id="c581"> + <Coords points="801,760 812,760 812,781 801,781"/> + <TextEquiv conf="0.82842"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c45"> + <Coords points="815,753 830,753 830,791 815,791"/> + <TextEquiv conf="0.76562"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c584"> + <Coords points="835,754 842,754 842,782 835,782"/> + <TextEquiv conf="0.85813"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c47"> + <Coords points="845,758 854,758 854,783 845,783"/> + <TextEquiv conf="0.70176"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c587"> + <Coords points="856,760 869,760 869,783 856,783"/> + <TextEquiv conf="0.90020"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.70176"> + <Unicode>fehlte</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>Ge wren ſon angekommen, und es fehlte</Unicode></TextEquiv></TextLine> + <TextEquiv> + <Unicode>ber die vielen Sorgen wegen deelben vergaß +Hartkopf, der Frau Amtmnnin das ver⸗ +ſproene zu berliefern. — Ein Erpreer +wurde an ihn abgeſit, um ihn ums Him⸗ +melswien zu ſagen, daß er das Verfproene +glei den Augenbli berbringen mte, die +Frau Amtmnnin htte  auf ihn verlaen, +und nun wßte e nit, was e anfangen +ſote. Den Augembli ſote er kommen, +ſon vergieng e in ihrer Ang. — Die +Ge wren ſon angekommen, und es fehlte +ihr do no an aem. —</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></TextRegion> + <TextRegion id="r2" readingDirection="left-to-right" textLineOrder="top-to-bottom" type="paragraph" indented="true" align="justify" primaryLanguage="German"> + <Coords points="289,871 300,871 300,874 532,874 532,873 650,873 650,872 664,872 664,874 699,874 699,882 854,882 854,878 868,878 868,928 870,928 870,1006 868,1006 868,1128 869,1128 869,1166 874,1166 874,1201 810,1201 810,1202 573,1202 573,1236 496,1236 496,1246 414,1246 414,1250 389,1250 389,1245 163,1245 163,1243 131,1243 131,1221 132,1221 132,1051 130,1051 130,980 131,980 131,930 166,930 166,924 179,924 179,873 289,873"/> + <TextLine id="l18"> + <Coords points="289,871 300,871 300,874 532,874 532,873 650,873 650,872 664,872 664,874 699,874 699,882 854,882 854,878 868,878 868,907 790,907 790,911 611,911 611,910 511,910 511,908 260,908 260,910 248,910 248,909 179,909 179,873 289,873"/> + <Word id="w589" language="German" readingDirection="left-to-right"> + <Coords points="289,871 300,871 300,874 369,874 369,907 347,907 347,908 260,908 260,910 248,910 248,909 179,909 179,873 289,873"/> + <Glyph id="c591"> + <Coords points="179,873 213,873 213,909 179,909"/> + <TextEquiv conf="0.65785"> + <Unicode>H</Unicode></TextEquiv></Glyph> + <Glyph id="c593"> + <Coords points="223,880 240,880 240,900 223,900"/> + <TextEquiv conf="0.62778"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c595"> + <Coords points="248,879 260,879 260,910 248,910"/> + <TextEquiv conf="0.56137"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c599"> + <Coords points="270,877 279,877 279,900 270,900"/> + <TextEquiv conf="0.62887"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c601"> + <Coords points="289,871 300,871 300,899 289,899"/> + <TextEquiv conf="0.84237"> + <Unicode>k</Unicode></TextEquiv></Glyph> + <Glyph id="c1982"> + <Coords points="310,880 321,880 321,899 310,899"/> + <TextEquiv> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1984"> + <Coords points="357,874 369,874 369,907 357,907"/> + <TextEquiv> + <Unicode>f</Unicode></TextEquiv></Glyph> + <Glyph id="c1985"> + <Coords points="333,882 347,882 347,908 333,908"/> + <TextEquiv> + <Unicode>p</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.56137"> + <Unicode>Hartkopf</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w605" language="German" readingDirection="left-to-right"> + <Coords points="446,874 460,874 460,879 471,879 471,880 487,880 487,902 460,902 460,908 446,908 446,903 396,903 396,882 446,882"/> + <Glyph id="c607"> + <Coords points="396,882 421,882 421,903 396,903"/> + <TextEquiv conf="0.78914"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c609"> + <Coords points="426,882 441,882 441,903 426,903"/> + <TextEquiv conf="0.80258"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c611"> + <Coords points="446,874 460,874 460,908 446,908"/> + <TextEquiv conf="0.74591"> + <Unicode>ß</Unicode></TextEquiv></Glyph> + <Glyph id="c613"> + <Coords points="465,879 471,879 471,902 465,902"/> + <TextEquiv conf="0.76057"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c615"> + <Coords points="475,880 487,880 487,902 475,902"/> + <TextEquiv conf="0.80505"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74591"> + <Unicode>mußte</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w617" language="German" readingDirection="left-to-right"> + <Coords points="532,873 557,873 557,910 511,910 511,874 532,874"/> + <Glyph id="c619"> + <Coords points="511,874 529,874 529,904 526,904 526,910 511,910"/> + <TextEquiv conf="0.81212"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c623"> + <Coords points="532,873 557,873 557,910 532,910"/> + <TextEquiv conf="0.78768"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74336"> + <Unicode></Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w625" language="German" readingDirection="left-to-right"> + <Coords points="611,875 630,875 630,911 611,911 611,903 581,903 581,881 611,881"/> + <Glyph id="c627"> + <Coords points="581,881 593,881 593,903 581,903"/> + <TextEquiv conf="0.78138"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c629"> + <Coords points="596,881 608,881 608,903 596,903"/> + <TextEquiv conf="0.77291"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c631"> + <Coords points="611,875 630,875 630,911 611,911"/> + <TextEquiv conf="0.77326"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.77291"> + <Unicode>er</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w24" language="German" readingDirection="left-to-right"> + <Coords points="650,872 664,872 664,874 699,874 699,882 754,882 754,883 773,883 773,897 790,897 790,911 682,911 682,903 650,903"/> + <Glyph id="c633"> + <Coords points="650,872 664,872 664,903 650,903"/> + <TextEquiv conf="0.80696"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c635"> + <Coords points="668,883 678,883 678,903 668,903"/> + <TextEquiv conf="0.68657"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c637"> + <Coords points="682,874 699,874 699,911 682,911"/> + <TextEquiv conf="0.79151"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c639"> + <Coords points="702,882 718,882 718,904 702,904"/> + <TextEquiv conf="0.78366"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c641"> + <Coords points="723,882 737,882 737,904 723,904"/> + <TextEquiv conf="0.67989"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c643"> + <Coords points="742,882 754,882 754,904 742,904"/> + <TextEquiv conf="0.78789"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c645"> + <Coords points="757,883 773,883 773,904 757,904"/> + <TextEquiv conf="0.81248"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c647"> + <Coords points="782,897 790,897 790,911 782,911"/> + <TextEquiv conf="0.96113"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.67989"> + <Unicode>bennen,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w649" language="German" readingDirection="left-to-right"> + <Coords points="854,878 868,878 868,907 854,907 854,906 814,906 814,884 834,884 834,883 854,883"/> + <Glyph id="c651"> + <Coords points="814,884 830,884 830,906 814,906"/> + <TextEquiv conf="0.86254"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c653"> + <Coords points="834,883 850,883 850,905 834,905"/> + <TextEquiv conf="0.82806"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c655"> + <Coords points="854,878 868,878 868,907 854,907"/> + <TextEquiv conf="0.82248"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.82248"> + <Unicode>und</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>Hartkopf mußte  er bennen, und</Unicode></TextEquiv></TextLine> + <TextLine id="l19"> + <Coords points="338,1213 352,1213 352,1215 414,1215 414,1218 486,1218 486,1228 573,1228 573,1236 486,1236 486,1238 496,1238 496,1246 414,1246 414,1250 389,1250 389,1245 163,1245 163,1243 131,1243 131,1221 163,1221 163,1216 270,1216 270,1215 338,1215"/> + <Word id="w657" language="German" readingDirection="left-to-right"> + <Coords points="163,1216 169,1216 169,1220 183,1220 183,1244 169,1244 169,1245 163,1245 163,1243 131,1243 131,1221 163,1221"/> + <Glyph id="c659"> + <Coords points="131,1221 157,1221 157,1243 131,1243"/> + <TextEquiv conf="0.86845"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c661"> + <Coords points="163,1216 169,1216 169,1245 163,1245"/> + <TextEquiv conf="0.80820"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c663"> + <Coords points="173,1220 183,1220 183,1244 173,1244"/> + <TextEquiv conf="0.83267"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.80820"> + <Unicode>mit</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w665" language="German" readingDirection="left-to-right"> + <Coords points="238,1218 253,1218 253,1245 238,1245 238,1244 198,1244 198,1223 238,1223"/> + <Glyph id="c667"> + <Coords points="198,1223 214,1223 214,1244 198,1244"/> + <TextEquiv conf="0.83648"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c669"> + <Coords points="218,1223 234,1223 234,1244 218,1244"/> + <TextEquiv conf="0.88806"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c671"> + <Coords points="238,1218 253,1218 253,1245 238,1245"/> + <TextEquiv conf="0.84604"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.83648"> + <Unicode>und</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w673" language="German" readingDirection="left-to-right"> + <Coords points="338,1213 352,1213 352,1215 414,1215 414,1220 427,1220 427,1223 441,1223 441,1244 414,1244 414,1250 389,1250 389,1245 291,1245 291,1244 270,1244 270,1215 338,1215"/> + <Glyph id="c675"> + <Coords points="270,1215 287,1215 287,1244 270,1244"/> + <TextEquiv conf="0.78567"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c677"> + <Coords points="291,1216 304,1216 304,1245 291,1245"/> + <TextEquiv conf="0.76636"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c679"> + <Coords points="309,1223 319,1223 319,1245 309,1245"/> + <TextEquiv conf="0.78462"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c681"> + <Coords points="322,1223 332,1223 332,1245 322,1245"/> + <TextEquiv conf="0.87348"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c683"> + <Coords points="338,1213 352,1213 352,1242 338,1242"/> + <TextEquiv conf="0.88542"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c685"> + <Coords points="355,1223 366,1223 366,1245 355,1245"/> + <TextEquiv conf="0.78417"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c687"> + <Coords points="370,1223 386,1223 386,1244 370,1244"/> + <TextEquiv conf="0.82808"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c689"> + <Coords points="389,1215 414,1215 414,1250 389,1250"/> + <TextEquiv conf="0.86601"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c691"> + <Coords points="419,1220 427,1220 427,1244 419,1244"/> + <TextEquiv conf="0.73453"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c693"> + <Coords points="431,1223 441,1223 441,1244 431,1244"/> + <TextEquiv conf="0.77437"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.67268"> + <Unicode>berbrate</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w697" language="German" readingDirection="left-to-right"> + <Coords points="473,1218 486,1218 486,1238 496,1238 496,1246 489,1246 489,1244 458,1244 458,1222 473,1222"/> + <Glyph id="c699"> + <Coords points="458,1222 469,1222 469,1244 458,1244"/> + <TextEquiv conf="0.87254"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c701"> + <Coords points="473,1218 486,1218 486,1244 473,1244"/> + <TextEquiv conf="0.71657"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <Glyph id="c703"> + <Coords points="489,1238 496,1238 496,1246 489,1246"/> + <TextEquiv conf="0.87608"> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.71657"> + <Unicode>es.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w705" language="German" readingDirection="left-to-right"> + <Coords points="523,1228 573,1228 573,1236 523,1236"/> + <Glyph id="c707"> + <Coords points="523,1228 573,1228 573,1236 523,1236"/> + <TextEquiv conf="0.80644"> + <Unicode>—</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.80644"> + <Unicode>—</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>mit und berbrate es. —</Unicode></TextEquiv></TextLine> + <TextLine id="l20"> + <Coords points="295,921 312,921 312,924 336,924 336,931 445,931 445,924 477,924 477,925 580,925 580,924 592,924 592,926 657,926 657,928 870,928 870,966 753,966 753,961 640,961 640,953 524,953 524,957 500,957 500,952 390,952 390,958 377,958 377,954 231,954 231,955 214,955 214,952 131,952 131,930 166,930 166,924 185,924 185,923 295,923"/> + <Word id="w735" language="German" readingDirection="left-to-right"> + <Coords points="328,924 336,924 336,931 405,931 405,932 434,932 434,951 390,951 390,958 377,958 377,951 338,951 338,950 328,950"/> + <Glyph id="c737"> + <Coords points="328,924 336,924 336,950 328,950"/> + <TextEquiv conf="0.90274"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c739"> + <Coords points="338,931 353,931 353,951 338,951"/> + <TextEquiv conf="0.78566"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c741"> + <Coords points="357,931 373,931 373,950 357,950"/> + <TextEquiv conf="0.79945"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c743"> + <Coords points="377,932 390,932 390,958 377,958"/> + <TextEquiv conf="0.71285"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c745"> + <Coords points="394,931 405,931 405,950 394,950"/> + <TextEquiv conf="0.79874"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c747"> + <Coords points="410,932 434,932 434,951 410,951"/> + <TextEquiv conf="0.82520"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.71285"> + <Unicode>langem</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w749" language="German" readingDirection="left-to-right"> + <Coords points="445,924 477,924 477,925 580,925 580,924 592,924 592,933 624,933 624,953 524,953 524,957 500,957 500,952 445,952"/> + <Glyph id="c751"> + <Coords points="445,924 477,924 477,952 445,952"/> + <TextEquiv conf="0.74283"> + <Unicode>N</Unicode></TextEquiv></Glyph> + <Glyph id="c753"> + <Coords points="481,932 496,932 496,952 481,952"/> + <TextEquiv conf="0.75699"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c755"> + <Coords points="500,925 524,925 524,957 500,957"/> + <TextEquiv conf="0.75184"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c757"> + <Coords points="528,928 542,928 542,953 528,953"/> + <TextEquiv conf="0.83750"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c759"> + <Coords points="546,932 556,932 556,953 546,953"/> + <TextEquiv conf="0.80128"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c761"> + <Coords points="561,933 576,933 576,953 561,953"/> + <TextEquiv conf="0.88134"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c763"> + <Coords points="580,924 592,924 592,953 580,953"/> + <TextEquiv conf="0.71210"> + <Unicode>k</Unicode></TextEquiv></Glyph> + <Glyph id="c765"> + <Coords points="594,933 604,933 604,952 594,952"/> + <TextEquiv conf="0.74491"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c767"> + <Coords points="608,933 624,933 624,953 608,953"/> + <TextEquiv conf="0.83860"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.71210"> + <Unicode>Nadenken</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w769" language="German" readingDirection="left-to-right"> + <Coords points="640,926 657,926 657,929 683,929 683,955 652,955 652,961 640,961"/> + <Glyph id="c771"> + <Coords points="640,926 657,926 657,954 652,954 652,961 640,961"/> + <TextEquiv conf="0.80072"> + <Unicode>fi</Unicode></TextEquiv></Glyph> + <Glyph id="c775"> + <Coords points="661,933 672,933 672,952 661,952"/> + <TextEquiv conf="0.66486"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c779"> + <Coords points="675,929 683,929 683,955 675,955"/> + <TextEquiv conf="0.77660"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.66486"> + <Unicode>fiel</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w781" language="German" readingDirection="left-to-right"> + <Coords points="718,930 731,930 731,955 714,955 714,956 703,956 703,935 718,935"/> + <Glyph id="c783"> + <Coords points="703,935 714,935 714,956 703,956"/> + <TextEquiv conf="0.75188"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c785"> + <Coords points="718,930 731,930 731,955 718,955"/> + <TextEquiv conf="0.75078"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75078"> + <Unicode>es</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w787" language="German" readingDirection="left-to-right"> + <Coords points="753,928 774,928 774,935 803,935 803,957 774,957 774,966 753,966 753,958 747,958 747,929 753,929"/> + <Glyph id="c789"> + <Coords points="747,929 756,929 756,958 747,958"/> + <TextEquiv conf="0.83834"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c791"> + <Coords points="753,928 774,928 774,966 753,966"/> + <TextEquiv conf="0.60499"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c793"> + <Coords points="778,935 803,935 803,957 778,957"/> + <TextEquiv conf="0.82357"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.60499"> + <Unicode>ihm</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w45" language="German" readingDirection="left-to-right"> + <Coords points="851,928 870,928 870,966 851,966 851,957 822,957 822,935 851,935"/> + <Glyph id="c795"> + <Coords points="822,935 833,935 833,957 822,957"/> + <TextEquiv conf="0.70980"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c797"> + <Coords points="836,935 848,935 848,956 836,956"/> + <TextEquiv conf="0.66756"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c799"> + <Coords points="851,928 870,928 870,966 851,966"/> + <TextEquiv conf="0.70778"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.66756"> + <Unicode>er</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w76" language="German" readingDirection="left-to-right"> + <Coords points="185,923 201,923 201,924 231,924 231,955 214,955 214,952 131,952 131,930 166,930 166,924 185,924"/> + <Glyph id="c711"> + <Coords points="131,930 143,930 143,952 131,952"/> + <TextEquiv conf="0.83869"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c713"> + <Coords points="147,930 162,930 162,952 147,952"/> + <TextEquiv conf="0.74228"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c715"> + <Coords points="166,924 180,924 180,952 166,952"/> + <TextEquiv conf="0.83162"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c717"> + <Coords points="185,923 191,923 191,950 185,950"/> + <TextEquiv conf="0.81493"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c719"> + <Coords points="196,923 201,923 201,950 196,950"/> + <TextEquiv conf="0.76423"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c721"> + <Coords points="214,924 231,924 231,955 214,955 214,951 206,951 206,929 214,929"/> + <TextEquiv conf="0.86288"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>endli</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w77" language="German" readingDirection="left-to-right"> + <Coords points="295,921 312,921 312,954 295,954 295,948 244,948 244,929 287,929 287,928 295,928"/> + <Glyph id="c727"> + <Coords points="244,929 265,929 265,948 244,948"/> + <TextEquiv conf="0.84252"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c729"> + <Coords points="268,929 284,929 284,948 268,948"/> + <TextEquiv conf="0.75510"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c731"> + <Coords points="295,921 312,921 312,954 295,954 295,948 287,948 287,928 295,928"/> + <TextEquiv conf="0.86161"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>na</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>endli na langem Nadenken fiel es ihm er</Unicode></TextEquiv></TextLine> + <TextLine id="l21"> + <Coords points="258,971 266,971 266,977 285,977 285,984 403,984 403,971 429,971 429,973 470,973 470,978 636,978 636,974 655,974 655,977 720,977 720,980 824,980 824,986 870,986 870,1006 636,1006 636,1002 525,1002 525,1006 511,1006 511,1001 403,1001 403,989 285,989 285,993 296,993 296,1001 289,1001 289,999 166,999 166,1000 156,1000 156,1001 130,1001 130,980 160,980 160,974 258,974"/> + <Word id="w801" language="German" readingDirection="left-to-right"> + <Coords points="160,974 197,974 197,978 227,978 227,999 166,999 166,1000 156,1000 156,1001 130,1001 130,980 160,980"/> + <Glyph id="c803"> + <Coords points="130,980 156,980 156,1001 130,1001"/> + <TextEquiv conf="0.76881"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c805"> + <Coords points="160,974 166,974 166,1000 160,1000"/> + <TextEquiv conf="0.90705"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c807"> + <Coords points="170,980 180,980 180,999 170,999"/> + <TextEquiv conf="0.79531"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c809"> + <Coords points="184,974 197,974 197,999 184,999"/> + <TextEquiv conf="0.72473"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c811"> + <Coords points="201,979 212,979 212,998 201,998"/> + <TextEquiv conf="0.81594"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c813"> + <Coords points="215,978 227,978 227,999 215,999"/> + <TextEquiv conf="0.77659"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72473"> + <Unicode>wieder</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w9" language="German" readingDirection="left-to-right"> + <Coords points="258,971 266,971 266,977 285,977 285,993 296,993 296,1001 289,1001 289,998 258,998 258,997 244,997 244,978 258,978"/> + <Glyph id="c815"> + <Coords points="244,978 255,978 255,997 244,997"/> + <TextEquiv conf="0.82000"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c817"> + <Coords points="258,971 266,971 266,998 258,998"/> + <TextEquiv conf="0.73086"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c819"> + <Coords points="270,977 285,977 285,998 270,998"/> + <TextEquiv conf="0.81816"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c821"> + <Coords points="289,993 296,993 296,1001 289,1001"/> + <TextEquiv conf="0.89747"> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.73086"> + <Unicode>ein.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w823" language="German" readingDirection="left-to-right"> + <Coords points="324,984 374,984 374,989 324,989"/> + <Glyph id="c825"> + <Coords points="324,984 374,984 374,989 324,989"/> + <TextEquiv conf="0.70254"> + <Unicode>—</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.70254"> + <Unicode>—</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w829" language="German" readingDirection="left-to-right"> + <Coords points="403,971 429,971 429,980 445,980 445,1000 429,1000 429,1001 403,1001"/> + <Glyph id="c831"> + <Coords points="403,971 429,971 429,1001 403,1001"/> + <TextEquiv conf="0.75595"> + <Unicode>E</Unicode></TextEquiv></Glyph> + <Glyph id="c833"> + <Coords points="433,980 445,980 445,1000 433,1000"/> + <TextEquiv conf="0.75214"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75214"> + <Unicode>Er</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w835" language="German" readingDirection="left-to-right"> + <Coords points="463,973 470,973 470,978 538,978 538,981 552,981 552,1000 525,1000 525,1006 511,1006 511,1001 492,1001 492,1000 463,1000"/> + <Glyph id="c837"> + <Coords points="463,973 470,973 470,1000 463,1000"/> + <TextEquiv conf="0.78663"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c839"> + <Coords points="473,980 489,980 489,1000 473,1000"/> + <TextEquiv conf="0.73961"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c841"> + <Coords points="492,981 508,981 508,1001 492,1001"/> + <TextEquiv conf="0.76240"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c843"> + <Coords points="511,982 525,982 525,1006 511,1006"/> + <TextEquiv conf="0.81754"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c845"> + <Coords points="530,978 538,978 538,1000 530,1000"/> + <TextEquiv conf="0.69569"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c847"> + <Coords points="541,981 552,981 552,1000 541,1000"/> + <TextEquiv conf="0.85047"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69569"> + <Unicode>langte</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w849" language="German" readingDirection="left-to-right"> + <Coords points="570,978 583,978 583,981 597,981 597,982 616,982 616,1002 601,1002 601,1001 570,1001"/> + <Glyph id="c851"> + <Coords points="570,978 583,978 583,1001 570,1001"/> + <TextEquiv conf="0.76386"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c853"> + <Coords points="586,981 597,981 597,1001 586,1001"/> + <TextEquiv conf="0.75878"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c855"> + <Coords points="601,982 616,982 616,1002 601,1002"/> + <TextEquiv conf="0.90114"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75878"> + <Unicode>den</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w857" language="German" readingDirection="left-to-right"> + <Coords points="636,974 655,974 655,977 720,977 720,1004 655,1004 655,1006 636,1006"/> + <Glyph id="c859"> + <Coords points="636,974 655,974 655,1006 636,1006"/> + <TextEquiv conf="0.81256"> + <Unicode>Z</Unicode></TextEquiv></Glyph> + <Glyph id="c861"> + <Coords points="659,983 668,983 668,1002 659,1002"/> + <TextEquiv conf="0.76173"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c863"> + <Coords points="673,981 682,981 682,1003 673,1003"/> + <TextEquiv conf="0.79860"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c865"> + <Coords points="686,981 694,981 694,1003 686,1003"/> + <TextEquiv conf="0.75493"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c867"> + <Coords points="698,984 708,984 708,1003 698,1003"/> + <TextEquiv conf="0.72446"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c869"> + <Coords points="712,977 720,977 720,1004 712,1004"/> + <TextEquiv conf="0.75684"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72446"> + <Unicode>Zettel</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w871" language="German" readingDirection="left-to-right"> + <Coords points="774,981 788,981 788,1006 756,1006 756,1005 736,1005 736,985 774,985"/> + <Glyph id="c873"> + <Coords points="736,985 751,985 751,1005 736,1005"/> + <TextEquiv conf="0.81969"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c875"> + <Coords points="756,985 771,985 771,1006 756,1006"/> + <TextEquiv conf="0.87030"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c877"> + <Coords points="774,981 788,981 788,1006 774,1006"/> + <TextEquiv conf="0.77499"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.77499"> + <Unicode>aus</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w879" language="German" readingDirection="left-to-right"> + <Coords points="810,980 824,980 824,986 870,986 870,1006 810,1006"/> + <Glyph id="c881"> + <Coords points="810,980 824,980 824,1006 810,1006"/> + <TextEquiv conf="0.85915"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c883"> + <Coords points="828,986 838,986 838,1006 828,1006"/> + <TextEquiv conf="0.70945"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c885"> + <Coords points="842,986 870,986 870,1006 842,1006"/> + <TextEquiv conf="0.89154"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.70945"> + <Unicode>dem</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>wieder ein. — Er langte den Zettel aus dem</Unicode></TextEquiv></TextLine> + <TextLine id="l23"> + <Coords points="251,1019 276,1019 276,1021 324,1021 324,1024 521,1024 521,1021 534,1021 534,1022 617,1022 617,1024 727,1024 727,1030 853,1030 853,1028 868,1028 868,1062 782,1062 782,1060 705,1060 705,1057 521,1057 521,1056 324,1056 324,1060 308,1060 308,1054 251,1054 251,1051 130,1051 130,1021 251,1021"/> + <Word id="w893" language="German" readingDirection="left-to-right"> + <Coords points="251,1019 276,1019 276,1026 291,1026 291,1047 276,1047 276,1054 251,1054 251,1051 130,1051 130,1021 251,1021"/> + <Glyph id="c895"> + <Coords points="130,1021 157,1021 157,1051 130,1051"/> + <TextEquiv conf="0.73639"> + <Unicode>A</Unicode></TextEquiv></Glyph> + <Glyph id="c897"> + <Coords points="161,1028 171,1028 171,1050 161,1050"/> + <TextEquiv conf="0.83724"> + <Unicode>c</Unicode></TextEquiv></Glyph> + <Glyph id="c899"> + <Coords points="174,1028 184,1028 184,1049 174,1049"/> + <TextEquiv conf="0.82264"> + <Unicode>c</Unicode></TextEquiv></Glyph> + <Glyph id="c901"> + <Coords points="187,1021 194,1021 194,1048 187,1048"/> + <TextEquiv conf="0.84643"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c905"> + <Coords points="251,1019 276,1019 276,1054 251,1054"/> + <TextEquiv conf="0.84438"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c907"> + <Coords points="281,1026 291,1026 291,1047 281,1047"/> + <TextEquiv conf="0.79417"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1986"> + <Coords points="197,1024 209,1024 209,1048 197,1048"/> + <TextEquiv> + <Unicode>s</Unicode></TextEquiv></Glyph> + <Glyph id="c1988"> + <Coords points="214,1021 226,1021 226,1047 214,1047"/> + <TextEquiv> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c1989"> + <Coords points="231,1027 246,1027 246,1047 231,1047"/> + <TextEquiv> + <Unicode>u</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.73639"> + <Unicode>Accisbue</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w909" language="German" readingDirection="left-to-right"> + <Coords points="308,1021 324,1021 324,1024 409,1024 409,1042 425,1042 425,1056 324,1056 324,1060 308,1060"/> + <Glyph id="c911"> + <Coords points="308,1021 324,1021 324,1060 308,1060"/> + <TextEquiv conf="0.75512"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c913"> + <Coords points="328,1030 338,1030 338,1048 328,1048"/> + <TextEquiv conf="0.70790"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c915"> + <Coords points="341,1028 352,1028 352,1049 341,1049"/> + <TextEquiv conf="0.76785"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c917"> + <Coords points="356,1029 371,1029 371,1049 356,1049"/> + <TextEquiv conf="0.79624"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c919"> + <Coords points="376,1029 391,1029 391,1048 376,1048"/> + <TextEquiv conf="0.67382"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c921"> + <Coords points="395,1024 409,1024 409,1049 395,1049"/> + <TextEquiv conf="0.65710"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <Glyph id="c923"> + <Coords points="417,1042 425,1042 425,1056 417,1056"/> + <TextEquiv conf="0.81870"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.65710"> + <Unicode>heraus,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w925" language="German" readingDirection="left-to-right"> + <Coords points="490,1024 503,1024 503,1051 490,1051 490,1049 469,1049 469,1048 449,1048 449,1028 469,1028 469,1026 490,1026"/> + <Glyph id="c927"> + <Coords points="449,1028 465,1028 465,1048 449,1048"/> + <TextEquiv conf="0.80640"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c929"> + <Coords points="469,1026 485,1026 485,1049 469,1049"/> + <TextEquiv conf="0.80131"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c931"> + <Coords points="490,1024 503,1024 503,1051 490,1051"/> + <TextEquiv conf="0.81827"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.80131"> + <Unicode>und</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w933" language="German" readingDirection="left-to-right"> + <Coords points="521,1021 534,1021 534,1027 576,1027 576,1029 590,1029 590,1050 564,1050 564,1057 521,1057"/> + <Glyph id="c935"> + <Coords points="521,1021 534,1021 534,1057 521,1057"/> + <TextEquiv conf="0.80597"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c937"> + <Coords points="531,1029 546,1029 546,1051 531,1051"/> + <TextEquiv conf="0.71182"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c939"> + <Coords points="549,1030 564,1030 564,1057 549,1057"/> + <TextEquiv conf="0.84189"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c941"> + <Coords points="567,1027 576,1027 576,1050 567,1050"/> + <TextEquiv conf="0.86008"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c943"> + <Coords points="579,1029 590,1029 590,1050 579,1050"/> + <TextEquiv conf="0.77111"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.71182"> + <Unicode>ſagte</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w28" language="German" readingDirection="left-to-right"> + <Coords points="607,1022 617,1022 617,1024 638,1024 638,1031 657,1031 657,1032 687,1032 687,1052 617,1052 617,1057 607,1057"/> + <Glyph id="c945"> + <Coords points="607,1022 617,1022 617,1057 607,1057"/> + <TextEquiv conf="0.81559"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c947"> + <Coords points="617,1030 628,1030 628,1050 617,1050"/> + <TextEquiv conf="0.88005"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c949"> + <Coords points="633,1024 638,1024 638,1050 633,1050"/> + <TextEquiv conf="0.74814"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c951"> + <Coords points="642,1031 657,1031 657,1051 642,1051"/> + <TextEquiv conf="0.72837"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c953"> + <Coords points="663,1032 672,1032 672,1051 663,1051"/> + <TextEquiv conf="0.79147"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c955"> + <Coords points="676,1032 687,1032 687,1052 676,1052"/> + <TextEquiv conf="0.81664"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72837"> + <Unicode>ſeiner</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w957" language="German" readingDirection="left-to-right"> + <Coords points="705,1024 727,1024 727,1034 780,1034 780,1048 790,1048 790,1062 782,1062 782,1060 705,1060"/> + <Glyph id="c959"> + <Coords points="705,1024 727,1024 727,1060 705,1060"/> + <TextEquiv conf="0.79451"> + <Unicode>F</Unicode></TextEquiv></Glyph> + <Glyph id="c961"> + <Coords points="730,1034 741,1034 741,1055 730,1055"/> + <TextEquiv conf="0.73184"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c963"> + <Coords points="745,1034 760,1034 760,1055 745,1055"/> + <TextEquiv conf="0.69758"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c965"> + <Coords points="765,1034 780,1034 780,1056 765,1056"/> + <TextEquiv conf="0.74120"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c967"> + <Coords points="782,1048 790,1048 790,1062 782,1062"/> + <TextEquiv conf="0.86141"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69758"> + <Unicode>Frau,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w969" language="German" readingDirection="left-to-right"> + <Coords points="853,1028 868,1028 868,1062 853,1062 853,1056 817,1056 817,1030 853,1030"/> + <Glyph id="c971"> + <Coords points="817,1030 831,1030 831,1056 817,1056"/> + <TextEquiv conf="0.80622"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c973"> + <Coords points="835,1035 850,1035 850,1056 835,1056"/> + <TextEquiv conf="0.73401"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c975"> + <Coords points="853,1028 868,1028 868,1062 853,1062"/> + <TextEquiv conf="0.79815"> + <Unicode>ß</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.73401"> + <Unicode>daß</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>Accisbue heraus, und ſagte ſeiner Frau, daß</Unicode></TextEquiv></TextLine> + <TextLine id="l24"> + <Coords points="443,1068 457,1068 457,1071 590,1071 590,1072 660,1072 660,1073 705,1073 705,1076 803,1076 803,1077 830,1077 830,1082 844,1082 844,1084 860,1084 860,1098 868,1098 868,1106 830,1106 830,1110 529,1110 529,1106 494,1106 494,1101 461,1101 461,1100 323,1100 323,1102 307,1102 307,1101 151,1101 151,1108 133,1108 133,1072 151,1072 151,1073 196,1073 196,1074 328,1074 328,1073 443,1073"/> + <Word id="w977" language="German" readingDirection="left-to-right"> + <Coords points="133,1072 151,1072 151,1078 165,1078 165,1099 151,1099 151,1108 133,1108"/> + <Glyph id="c979"> + <Coords points="133,1072 151,1072 151,1108 133,1108"/> + <TextEquiv conf="0.84813"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c981"> + <Coords points="155,1078 165,1078 165,1099 155,1099"/> + <TextEquiv conf="0.75703"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75703"> + <Unicode>e</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w5" language="German" readingDirection="left-to-right"> + <Coords points="184,1073 196,1073 196,1074 232,1074 232,1094 249,1094 249,1101 245,1101 245,1100 184,1100"/> + <Glyph id="c983"> + <Coords points="184,1073 196,1073 196,1100 184,1100"/> + <TextEquiv conf="0.70759"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c985"> + <Coords points="200,1079 215,1079 215,1100 200,1100"/> + <TextEquiv conf="0.74401"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c987"> + <Coords points="219,1074 232,1074 232,1100 219,1100"/> + <TextEquiv conf="0.74195"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <Glyph id="c989"> + <Coords points="245,1094 249,1094 249,1101 245,1101"/> + <TextEquiv conf="0.88051"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.70759"> + <Unicode>das,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w991" language="German" readingDirection="left-to-right"> + <Coords points="328,1073 340,1073 340,1098 323,1098 323,1102 307,1102 307,1101 279,1101 279,1078 328,1078"/> + <Glyph id="c993"> + <Coords points="279,1078 303,1078 303,1101 279,1101"/> + <TextEquiv conf="0.81205"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c995"> + <Coords points="307,1080 323,1080 323,1102 307,1102"/> + <TextEquiv conf="0.78334"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c997"> + <Coords points="328,1073 340,1073 340,1098 328,1098"/> + <TextEquiv conf="0.71925"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.71925"> + <Unicode>was</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w999" language="German" readingDirection="left-to-right"> + <Coords points="366,1073 378,1073 378,1079 399,1079 399,1100 366,1100"/> + <Glyph id="c1001"> + <Coords points="366,1073 378,1073 378,1100 366,1100"/> + <TextEquiv conf="0.76124"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1003"> + <Coords points="382,1079 399,1079 399,1100 382,1100"/> + <TextEquiv conf="0.75931"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75931"> + <Unicode>da</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1005" language="German" readingDirection="left-to-right"> + <Coords points="443,1068 457,1068 457,1079 488,1079 488,1093 501,1093 501,1106 494,1106 494,1101 461,1101 461,1100 415,1100 415,1079 443,1079"/> + <Glyph id="c1007"> + <Coords points="415,1079 439,1079 439,1100 415,1100"/> + <TextEquiv conf="0.76025"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c1009"> + <Coords points="443,1068 457,1068 457,1100 443,1100"/> + <TextEquiv conf="0.74663"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1011"> + <Coords points="461,1080 472,1080 472,1101 461,1101"/> + <TextEquiv conf="0.73019"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1013"> + <Coords points="476,1079 488,1079 488,1101 476,1101"/> + <TextEquiv conf="0.86440"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1015"> + <Coords points="494,1093 501,1093 501,1106 494,1106"/> + <TextEquiv conf="0.90284"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.73019"> + <Unicode>wre,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1017" language="German" readingDirection="left-to-right"> + <Coords points="529,1071 590,1071 590,1072 660,1072 660,1073 705,1073 705,1082 715,1082 715,1083 736,1083 736,1102 705,1102 705,1110 529,1110"/> + <Glyph id="c1019"> + <Coords points="529,1071 544,1071 544,1110 529,1110"/> + <TextEquiv conf="0.62055"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c1021"> + <Coords points="549,1080 559,1080 559,1100 549,1100"/> + <TextEquiv conf="0.73905"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1023"> + <Coords points="562,1080 573,1080 573,1101 562,1101"/> + <TextEquiv conf="0.76639"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1025"> + <Coords points="577,1071 590,1071 590,1101 577,1101"/> + <TextEquiv conf="0.83958"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c1027"> + <Coords points="595,1080 604,1080 604,1102 595,1102"/> + <TextEquiv conf="0.85026"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1029"> + <Coords points="609,1081 623,1081 623,1110 609,1110"/> + <TextEquiv conf="0.72177"> + <Unicode>y</Unicode></TextEquiv></Glyph> + <Glyph id="c1031"> + <Coords points="627,1073 637,1073 637,1107 627,1107"/> + <TextEquiv conf="0.74198"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c1033"> + <Coords points="637,1072 660,1072 660,1106 637,1106"/> + <TextEquiv conf="0.78442"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1035"> + <Coords points="665,1081 680,1081 680,1102 665,1102"/> + <TextEquiv conf="0.74563"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1037"> + <Coords points="684,1073 705,1073 705,1110 684,1110"/> + <TextEquiv conf="0.83982"> + <Unicode>ff</Unicode></TextEquiv></Glyph> + <Glyph id="c1990"> + <Coords points="706,1082 715,1082 715,1101 706,1101"/> + <TextEquiv> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1991"> + <Coords points="720,1083 736,1083 736,1102 720,1102"/> + <TextEquiv> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.62055"> + <Unicode>herbeyſaffen</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1041" language="German" readingDirection="left-to-right"> + <Coords points="789,1076 803,1076 803,1077 830,1077 830,1082 844,1082 844,1084 860,1084 860,1098 868,1098 868,1106 830,1106 830,1110 806,1110 806,1104 759,1104 759,1083 789,1083"/> + <Glyph id="c1043"> + <Coords points="759,1083 785,1083 785,1104 759,1104"/> + <TextEquiv conf="0.80051"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c1045"> + <Coords points="789,1076 803,1076 803,1104 789,1104"/> + <TextEquiv conf="0.76095"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1047"> + <Coords points="806,1077 830,1077 830,1110 806,1110"/> + <TextEquiv conf="0.79382"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1049"> + <Coords points="835,1082 844,1082 844,1105 835,1105"/> + <TextEquiv conf="0.71159"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c1051"> + <Coords points="847,1084 860,1084 860,1105 847,1105"/> + <TextEquiv conf="0.82929"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1053"> + <Coords points="861,1098 868,1098 868,1106 861,1106"/> + <TextEquiv conf="0.90931"> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.71159"> + <Unicode>mte.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>e das, was da wre, herbeyſaffen mte.</Unicode></TextEquiv></TextLine> + <TextLine id="l26"> + <Coords points="215,1113 235,1113 235,1125 357,1125 357,1118 364,1118 364,1119 471,1119 471,1118 540,1118 540,1119 764,1119 764,1122 853,1122 853,1128 869,1128 869,1147 853,1147 853,1149 842,1149 842,1150 797,1150 797,1154 790,1154 790,1148 756,1148 756,1147 590,1147 590,1154 575,1154 575,1149 471,1149 471,1148 339,1148 339,1154 325,1154 325,1153 132,1153 132,1116 215,1116"/> + <Word id="w1059" language="German" readingDirection="left-to-right"> + <Coords points="215,1113 235,1113 235,1153 132,1153 132,1116 215,1116"/> + <Glyph id="c1061"> + <Coords points="132,1116 159,1116 159,1153 132,1153"/> + <TextEquiv conf="0.80949"> + <Unicode>J</Unicode></TextEquiv></Glyph> + <Glyph id="c1063"> + <Coords points="163,1126 178,1126 178,1146 163,1146"/> + <TextEquiv conf="0.82919"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1065"> + <Coords points="182,1119 195,1119 195,1147 182,1147"/> + <TextEquiv conf="0.81147"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1067"> + <Coords points="200,1124 211,1124 211,1146 200,1146"/> + <TextEquiv conf="0.87336"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1069"> + <Coords points="215,1113 235,1113 235,1153 215,1153"/> + <TextEquiv conf="0.72395"> + <Unicode>ß</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72395"> + <Unicode>Jndeß</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1071" language="German" readingDirection="left-to-right"> + <Coords points="357,1118 364,1118 364,1124 376,1124 376,1125 411,1125 411,1146 364,1146 364,1147 339,1147 339,1154 325,1154 325,1147 284,1147 284,1145 254,1145 254,1125 357,1125"/> + <Glyph id="c1073"> + <Coords points="254,1125 280,1125 280,1145 254,1145"/> + <TextEquiv conf="0.87717"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c1075"> + <Coords points="284,1126 299,1126 299,1147 284,1147"/> + <TextEquiv conf="0.83118"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1077"> + <Coords points="304,1126 320,1126 320,1146 304,1146"/> + <TextEquiv conf="0.82834"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1079"> + <Coords points="325,1125 339,1125 339,1154 325,1154"/> + <TextEquiv conf="0.85393"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c1081"> + <Coords points="343,1125 353,1125 353,1146 343,1146"/> + <TextEquiv conf="0.82745"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1083"> + <Coords points="357,1118 364,1118 364,1147 357,1147"/> + <TextEquiv conf="0.83320"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1085"> + <Coords points="367,1124 376,1124 376,1146 367,1146"/> + <TextEquiv conf="0.80938"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c1087"> + <Coords points="379,1125 389,1125 389,1146 379,1146"/> + <TextEquiv conf="0.82412"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1089"> + <Coords points="394,1125 411,1125 411,1146 394,1146"/> + <TextEquiv conf="0.84363"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.80938"> + <Unicode>mangelten</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1133" language="German" readingDirection="left-to-right"> + <Coords points="846,1122 853,1122 853,1128 869,1128 869,1147 853,1147 853,1149 842,1149 842,1150 828,1150 828,1123 846,1123"/> + <Glyph id="c1135"> + <Coords points="828,1123 842,1123 842,1150 828,1150"/> + <TextEquiv conf="0.87171"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1137"> + <Coords points="846,1122 853,1122 853,1149 846,1149"/> + <TextEquiv conf="0.83263"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1139"> + <Coords points="857,1128 869,1128 869,1147 857,1147"/> + <TextEquiv conf="0.86775"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.83263"> + <Unicode>die</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1960" language="German" readingDirection="left-to-right"> + <Coords points="471,1118 496,1118 496,1149 471,1149 471,1148 434,1148 434,1119 471,1119"/> + <Glyph id="c1093"> + <Coords points="434,1119 448,1119 448,1148 434,1148"/> + <TextEquiv conf="0.78914"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1095"> + <Coords points="453,1125 467,1125 467,1148 453,1148"/> + <TextEquiv conf="0.88670"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1097"> + <Coords points="471,1118 496,1118 496,1149 471,1149"/> + <TextEquiv conf="0.77859"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>do</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1962" language="German" readingDirection="left-to-right"> + <Coords points="534,1118 540,1118 540,1119 573,1119 573,1126 605,1126 605,1147 590,1147 590,1154 575,1154 575,1148 544,1148 544,1147 518,1147 518,1125 534,1125"/> + <Glyph id="c1101"> + <Coords points="518,1125 529,1125 529,1147 518,1147"/> + <TextEquiv conf="0.86079"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1103"> + <Coords points="534,1118 540,1118 540,1147 534,1147"/> + <TextEquiv conf="0.83232"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1105"> + <Coords points="544,1126 561,1126 561,1148 544,1148"/> + <TextEquiv conf="0.81793"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1107"> + <Coords points="565,1119 573,1119 573,1147 565,1147"/> + <TextEquiv conf="0.78300"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1109"> + <Coords points="575,1127 590,1127 590,1154 575,1154"/> + <TextEquiv conf="0.77761"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c1111"> + <Coords points="594,1126 605,1126 605,1147 594,1147"/> + <TextEquiv conf="0.86677"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>einige</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1963" language="Latin" readingDirection="left-to-right"> + <Coords points="630,1119 764,1119 764,1130 782,1130 782,1141 797,1141 797,1154 790,1154 790,1148 756,1148 756,1147 658,1147 658,1146 630,1146"/> + <Glyph id="c1115"> + <Coords points="630,1119 656,1119 656,1146 630,1146"/> + <TextEquiv conf="0.82036"> + <Unicode>G</Unicode></TextEquiv></Glyph> + <Glyph id="c1117"> + <Coords points="658,1129 671,1129 671,1147 658,1147"/> + <TextEquiv conf="0.77833"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1119"> + <Coords points="675,1129 693,1129 693,1146 675,1146"/> + <TextEquiv conf="0.85051"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1121"> + <Coords points="697,1129 710,1129 710,1147 697,1147"/> + <TextEquiv conf="0.82972"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1125"> + <Coords points="746,1120 754,1120 754,1147 746,1147"/> + <TextEquiv conf="0.81277"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1127"> + <Coords points="756,1119 764,1119 764,1148 756,1148"/> + <TextEquiv conf="0.83589"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1129"> + <Coords points="767,1130 782,1130 782,1148 767,1148"/> + <TextEquiv conf="0.78757"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1131"> + <Coords points="790,1141 797,1141 797,1154 790,1154"/> + <TextEquiv conf="0.90190"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <Glyph id="c73"> + <Coords points="723,1130 723,1131 724,1131 724,1133 721,1133 721,1146 715,1146 715,1145 714,1145 714,1131 716,1131 716,1130"/> + <TextEquiv> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c75"> + <Coords points="737,1130 737,1131 738,1131 738,1132 739,1132 739,1144 740,1144 740,1145 741,1145 741,1146 729,1146 729,1135 728,1135 728,1134 729,1134 729,1133 730,1133 730,1132 731,1132 731,1131 733,1131 733,1130"/> + <TextEquiv> + <Unicode>a</Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>Generalia,</Unicode></TextEquiv> + <TextStyle fontFamily="Antiqua"/></Word> + <TextEquiv> + <Unicode>Jndeß mangelten do einige Generalia, die</Unicode></TextEquiv></TextLine> + <TextLine id="l27"> + <Coords points="819,1163 830,1163 830,1165 847,1165 847,1166 874,1166 874,1201 810,1201 810,1202 661,1202 661,1201 635,1201 635,1194 518,1194 518,1201 485,1201 485,1185 347,1185 347,1187 356,1187 356,1193 329,1193 329,1194 284,1194 284,1198 270,1198 270,1201 255,1201 255,1199 163,1199 163,1193 153,1193 153,1192 132,1192 132,1172 153,1172 153,1166 163,1166 163,1165 172,1165 172,1166 289,1166 289,1167 315,1167 315,1172 347,1172 347,1177 485,1177 485,1164 604,1164 604,1167 799,1167 799,1166 819,1166"/> + <Word id="w1141" language="German" readingDirection="left-to-right"> + <Coords points="163,1165 172,1165 172,1173 185,1173 185,1193 172,1193 172,1199 163,1199 163,1193 153,1193 153,1192 132,1192 132,1172 153,1172 153,1166 163,1166"/> + <Glyph id="c1143"> + <Coords points="132,1172 149,1172 149,1192 132,1192"/> + <TextEquiv conf="0.84728"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1145"> + <Coords points="153,1166 160,1166 160,1193 153,1193"/> + <TextEquiv conf="0.72710"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1147"> + <Coords points="163,1165 172,1165 172,1199 163,1199"/> + <TextEquiv conf="0.70061"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c1149"> + <Coords points="173,1173 185,1173 185,1193 173,1193"/> + <TextEquiv conf="0.90074"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.70061"> + <Unicode>alſo</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1151" language="German" readingDirection="left-to-right"> + <Coords points="273,1166 289,1166 289,1167 315,1167 315,1172 347,1172 347,1187 356,1187 356,1193 329,1193 329,1194 284,1194 284,1198 270,1198 270,1201 255,1201 255,1193 214,1193 214,1171 273,1171"/> + <Glyph id="c1153"> + <Coords points="214,1171 238,1171 238,1193 214,1193"/> + <TextEquiv conf="0.83780"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c1155"> + <Coords points="242,1172 253,1172 253,1193 242,1193"/> + <TextEquiv conf="0.81500"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1157"> + <Coords points="255,1174 270,1174 270,1201 255,1201"/> + <TextEquiv conf="0.80803"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c1159"> + <Coords points="273,1166 289,1166 289,1193 284,1193 284,1198 273,1198"/> + <TextEquiv conf="0.78080"> + <Unicode>fi</Unicode></TextEquiv></Glyph> + <Glyph id="c1163"> + <Coords points="294,1173 304,1173 304,1194 294,1194"/> + <TextEquiv conf="0.75474"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1165"> + <Coords points="308,1167 315,1167 315,1194 308,1194"/> + <TextEquiv conf="0.90229"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1167"> + <Coords points="318,1174 329,1174 329,1194 318,1194"/> + <TextEquiv conf="0.85984"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1992"> + <Coords points="332,1172 347,1172 347,1192 332,1192"/> + <TextEquiv> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1993"> + <Coords points="352,1187 356,1187 356,1193 352,1193"/> + <TextEquiv> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.60821"> + <Unicode>wegfielen.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1171" language="German" readingDirection="left-to-right"> + <Coords points="384,1177 435,1177 435,1185 384,1185"/> + <Glyph id="c1175"> + <Coords points="384,1177 435,1177 435,1185 384,1185"/> + <TextEquiv conf="0.51894"> + <Unicode>—</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.51894"> + <Unicode>—</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w21" language="German" readingDirection="left-to-right"> + <Coords points="485,1164 604,1164 604,1167 675,1167 675,1202 661,1202 661,1201 635,1201 635,1194 518,1194 518,1201 485,1201"/> + <Glyph id="c1179"> + <Coords points="485,1164 518,1164 518,1201 485,1201"/> + <TextEquiv conf="0.74039"> + <Unicode>H</Unicode></TextEquiv></Glyph> + <Glyph id="c1181"> + <Coords points="523,1173 539,1173 539,1194 523,1194"/> + <TextEquiv conf="0.89065"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1183"> + <Coords points="551,1172 563,1172 563,1193 551,1193"/> + <TextEquiv conf="0.80319"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1185"> + <Coords points="573,1170 582,1170 582,1193 573,1193"/> + <TextEquiv conf="0.84734"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c1187"> + <Coords points="592,1164 604,1164 604,1193 592,1193"/> + <TextEquiv conf="0.72920"> + <Unicode>k</Unicode></TextEquiv></Glyph> + <Glyph id="c1189"> + <Coords points="613,1173 626,1173 626,1194 613,1194"/> + <TextEquiv conf="0.90838"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1191"> + <Coords points="635,1173 652,1173 652,1201 635,1201"/> + <TextEquiv conf="0.85035"> + <Unicode>p</Unicode></TextEquiv></Glyph> + <Glyph id="c1193"> + <Coords points="661,1167 675,1167 675,1202 661,1202"/> + <TextEquiv conf="0.83784"> + <Unicode>f</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72920"> + <Unicode>Hartkopf</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w78" language="German" readingDirection="left-to-right"> + <Coords points="717,1167 725,1167 725,1174 739,1174 739,1175 777,1175 777,1201 714,1201 714,1202 699,1202 699,1174 717,1174"/> + <Glyph id="c1197"> + <Coords points="699,1174 714,1174 714,1202 699,1202"/> + <TextEquiv conf="0.84219"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c1199"> + <Coords points="717,1167 725,1167 725,1194 717,1194"/> + <TextEquiv conf="0.78589"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1201"> + <Coords points="728,1174 739,1174 739,1194 728,1194"/> + <TextEquiv conf="0.90891"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1203"> + <Coords points="743,1175 758,1175 758,1194 743,1194"/> + <TextEquiv conf="0.83234"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1205"> + <Coords points="762,1175 777,1175 777,1201 762,1201"/> + <TextEquiv conf="0.82998"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>gieng</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w79" language="German" readingDirection="left-to-right"> + <Coords points="819,1163 830,1163 830,1165 847,1165 847,1166 874,1166 874,1201 810,1201 810,1202 799,1202 799,1166 819,1166"/> + <Glyph id="c1209"> + <Coords points="799,1166 810,1166 810,1202 799,1202"/> + <TextEquiv conf="0.88437"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c1211"> + <Coords points="809,1173 819,1173 819,1194 809,1194"/> + <TextEquiv conf="0.79098"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1213"> + <Coords points="819,1163 830,1163 830,1195 819,1195"/> + <TextEquiv conf="0.73612"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1215"> + <Coords points="834,1165 847,1165 847,1194 834,1194"/> + <TextEquiv conf="0.82563"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c1217"> + <Coords points="851,1166 874,1166 874,1201 851,1201"/> + <TextEquiv conf="0.74729"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>ſelb</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>alſo wegfielen. — Hartkopf gieng ſelb</Unicode></TextEquiv></TextLine> + <TextEquiv> + <Unicode>Hartkopf mußte  er bennen, und +endli na langem Nadenken fiel es ihm er +wieder ein. — Er langte den Zettel aus dem +Accisbue heraus, und ſagte ſeiner Frau, daß +e das, was da wre, herbeyſaffen mte. +Jndeß mangelten do einige Generalia, die +alſo wegfielen. — Hartkopf gieng ſelb +mit und berbrate es. —</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur; Antiqua"/></TextRegion> + <GraphicRegion id="r5" type="decoration"> + <Coords points="382,166 636,166 636,203 382,203"/></GraphicRegion> + </Page></PcGts> diff --git a/dinglehopper/tests/data/directory-test/ocr/3-has-no-gt.xml b/dinglehopper/tests/data/directory-test/ocr/3-has-no-gt.xml new file mode 100644 index 0000000..0e62647 --- /dev/null +++ b/dinglehopper/tests/data/directory-test/ocr/3-has-no-gt.xml @@ -0,0 +1,3394 @@ +<?xml version="1.0" encoding="UTF-8"?> +<PcGts xmlns="http://schema.primaresearch.org/PAGE/gts/pagecontent/2018-07-15" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://schema.primaresearch.org/PAGE/gts/pagecontent/2018-07-15 http://schema.primaresearch.org/PAGE/gts/pagecontent/2018-07-15/pagecontent.xsd" pcGtsId="backhart_768169569_0001_00000119"> + <Metadata> + <Creator>doculibtopagexml</Creator> + <Created>2019-01-08T10:25:36</Created> + <LastChange>2019-04-26T07:11:05</LastChange></Metadata> + <Page imageFilename="00000119.tif" imageXResolution="300.00000" imageYResolution="300.00000" imageWidth="1148" imageHeight="1852" type="content"> + <AlternativeImage filename="00000119_b.tif"/> + <PrintSpace> + <Coords points="93,136 93,1613 913,1613 913,136"/></PrintSpace> + <ReadingOrder> + <OrderedGroup id="ro357564684568544579089"> + <RegionRefIndexed regionRef="r0" index="1"/> + <RegionRefIndexed regionRef="r2" index="2"/> + </OrderedGroup></ReadingOrder> + <TextRegion id="r0" readingDirection="left-to-right" textLineOrder="top-to-bottom" type="paragraph" indented="false" align="justify" primaryLanguage="German"> + <Coords points="157,251 170,251 170,256 245,256 245,258 370,258 370,259 420,259 420,267 437,267 437,268 621,268 621,263 657,263 657,261 701,261 701,259 718,259 718,266 856,266 856,262 871,262 871,320 872,320 872,392 871,392 871,489 869,489 869,783 830,783 830,791 815,791 815,788 788,788 788,781 646,781 646,786 570,786 570,819 493,819 493,829 334,829 334,833 249,833 249,834 160,834 160,840 146,840 146,830 131,830 131,802 132,802 132,590 131,590 131,554 133,554 133,513 135,513 135,342 134,342 134,304 135,304 135,252 157,252"/> + <TextLine id="l5"> + <Coords points="157,251 170,251 170,256 245,256 245,258 370,258 370,259 420,259 420,267 437,267 437,268 621,268 621,263 657,263 657,261 701,261 701,259 718,259 718,266 856,266 856,262 871,262 871,297 821,297 821,291 682,291 682,295 575,295 575,297 560,297 560,296 455,296 455,289 386,289 386,288 283,288 283,287 219,287 219,285 188,285 188,284 174,284 174,283 135,283 135,252 157,252"/> + <Word id="w1663" language="German" readingDirection="left-to-right"> + <Coords points="157,251 170,251 170,261 185,261 185,263 199,263 199,285 188,285 188,284 174,284 174,283 135,283 135,252 157,252"/> + <Glyph id="c1665"> + <Coords points="135,252 155,252 155,283 135,283"/> + <TextEquiv conf="0.75285"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1667"> + <Coords points="157,251 170,251 170,283 157,283"/> + <TextEquiv conf="0.77841"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c1669"> + <Coords points="174,261 185,261 185,284 174,284"/> + <TextEquiv conf="0.84378"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1671"> + <Coords points="188,263 199,263 199,285 188,285"/> + <TextEquiv conf="0.75436"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75285"> + <Unicode>ber</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1673" language="German" readingDirection="left-to-right"> + <Coords points="236,256 245,256 245,264 260,264 260,287 219,287 219,257 236,257"/> + <Glyph id="c1675"> + <Coords points="219,257 233,257 233,287 219,287"/> + <TextEquiv conf="0.80770"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1677"> + <Coords points="236,256 245,256 245,287 236,287"/> + <TextEquiv conf="0.75232"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1679"> + <Coords points="248,264 260,264 260,287 248,287"/> + <TextEquiv conf="0.87596"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75232"> + <Unicode>die</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1681" language="German" readingDirection="left-to-right"> + <Coords points="329,258 370,258 370,288 283,288 283,264 304,264 304,259 329,259"/> + <Glyph id="c1683"> + <Coords points="283,264 299,264 299,288 283,288"/> + <TextEquiv conf="0.75082"> + <Unicode>v</Unicode></TextEquiv></Glyph> + <Glyph id="c1685"> + <Coords points="304,259 310,259 310,288 304,288"/> + <TextEquiv conf="0.68661"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1687"> + <Coords points="315,266 325,266 325,287 315,287"/> + <TextEquiv conf="0.72317"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1689"> + <Coords points="329,258 337,258 337,288 329,288"/> + <TextEquiv conf="0.83915"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1691"> + <Coords points="340,266 349,266 349,287 340,287"/> + <TextEquiv conf="0.79152"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1693"> + <Coords points="354,258 370,258 370,288 354,288"/> + <TextEquiv conf="0.67275"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.67275"> + <Unicode>vielen</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1695" language="German" readingDirection="left-to-right"> + <Coords points="386,259 420,259 420,267 437,267 437,268 452,268 452,269 503,269 503,289 469,289 469,296 455,296 455,289 386,289"/> + <Glyph id="c1697"> + <Coords points="386,259 420,259 420,289 386,289"/> + <TextEquiv conf="0.75776"> + <Unicode>S</Unicode></TextEquiv></Glyph> + <Glyph id="c1699"> + <Coords points="424,267 437,267 437,287 424,287"/> + <TextEquiv conf="0.81753"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1701"> + <Coords points="441,268 452,268 452,288 441,288"/> + <TextEquiv conf="0.85307"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1703"> + <Coords points="455,269 469,269 469,296 455,296"/> + <TextEquiv conf="0.81493"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c1705"> + <Coords points="473,269 482,269 482,289 473,289"/> + <TextEquiv conf="0.78034"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1707"> + <Coords points="487,269 503,269 503,289 487,289"/> + <TextEquiv conf="0.74845"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74845"> + <Unicode>Sorgen</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1709" language="German" readingDirection="left-to-right"> + <Coords points="518,268 542,268 542,269 608,269 608,289 589,289 589,290 575,290 575,297 560,297 560,289 546,289 546,288 518,288"/> + <Glyph id="c1711"> + <Coords points="518,268 542,268 542,288 518,288"/> + <TextEquiv conf="0.76983"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c1713"> + <Coords points="546,269 557,269 557,289 546,289"/> + <TextEquiv conf="0.69585"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1715"> + <Coords points="560,269 575,269 575,297 560,297"/> + <TextEquiv conf="0.80275"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c1717"> + <Coords points="579,269 589,269 589,290 579,290"/> + <TextEquiv conf="0.75463"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1719"> + <Coords points="592,269 608,269 608,289 592,289"/> + <TextEquiv conf="0.77872"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69585"> + <Unicode>wegen</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1721" language="German" readingDirection="left-to-right"> + <Coords points="701,259 718,259 718,268 750,268 750,291 682,291 682,295 657,295 657,290 621,290 621,263 657,263 657,261 701,261"/> + <Glyph id="c1723"> + <Coords points="621,263 640,263 640,290 621,290"/> + <TextEquiv conf="0.67731"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1725"> + <Coords points="644,268 653,268 653,289 644,289"/> + <TextEquiv conf="0.72582"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1727"> + <Coords points="657,261 682,261 682,295 657,295"/> + <TextEquiv conf="0.80586"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1729"> + <Coords points="676,268 688,268 688,290 676,290"/> + <TextEquiv conf="0.85827"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1731"> + <Coords points="691,261 698,261 698,291 691,291"/> + <TextEquiv conf="0.69996"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1733"> + <Coords points="701,259 718,259 718,291 701,291"/> + <TextEquiv conf="0.58348"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c1737"> + <Coords points="719,268 729,268 729,290 719,290"/> + <TextEquiv conf="0.72210"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1739"> + <Coords points="733,268 750,268 750,291 733,291"/> + <TextEquiv conf="0.78413"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.58348"> + <Unicode>deelben</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1741" language="German" readingDirection="left-to-right"> + <Coords points="856,262 871,262 871,297 821,297 821,291 807,291 807,290 774,290 774,266 856,266"/> + <Glyph id="c1743"> + <Coords points="774,266 789,266 789,290 774,290"/> + <TextEquiv conf="0.78911"> + <Unicode>v</Unicode></TextEquiv></Glyph> + <Glyph id="c1745"> + <Coords points="794,268 804,268 804,290 794,290"/> + <TextEquiv conf="0.83999"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1747"> + <Coords points="807,269 819,269 819,291 807,291"/> + <TextEquiv conf="0.73881"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1749"> + <Coords points="821,269 835,269 835,297 821,297"/> + <TextEquiv conf="0.88566"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c1751"> + <Coords points="838,267 854,267 854,290 838,290"/> + <TextEquiv conf="0.85102"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1753"> + <Coords points="856,262 871,262 871,297 856,297"/> + <TextEquiv conf="0.80438"> + <Unicode>ß</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.73881"> + <Unicode>vergaß</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>ber die vielen Sorgen wegen deelben vergaß</Unicode></TextEquiv></TextLine> + <TextLine id="l6"> + <Coords points="224,797 334,797 334,800 440,800 440,807 484,807 484,813 570,813 570,819 493,819 493,829 334,829 334,833 249,833 249,834 160,834 160,840 146,840 146,830 131,830 131,802 146,802 146,801 224,801"/> + <Word id="w1755" language="German" readingDirection="left-to-right"> + <Coords points="146,801 160,801 160,808 175,808 175,831 160,831 160,840 146,840 146,830 131,830 131,802 146,802"/> + <Glyph id="c1757"> + <Coords points="131,802 141,802 141,830 131,830"/> + <TextEquiv conf="0.77702"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1759"> + <Coords points="146,801 160,801 160,840 146,840"/> + <TextEquiv conf="0.69026"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c1761"> + <Coords points="164,808 175,808 175,831 164,831"/> + <TextEquiv conf="0.74867"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69026"> + <Unicode>ihr</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1763" language="German" readingDirection="left-to-right"> + <Coords points="224,797 249,797 249,834 224,834 224,830 190,830 190,803 224,803"/> + <Glyph id="c1765"> + <Coords points="190,803 203,803 203,830 190,830"/> + <TextEquiv conf="0.68484"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1767"> + <Coords points="207,809 220,809 220,828 207,828"/> + <TextEquiv conf="0.69132"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1769"> + <Coords points="224,797 249,797 249,834 224,834"/> + <TextEquiv conf="0.73594"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.68484"> + <Unicode>do</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1771" language="German" readingDirection="left-to-right"> + <Coords points="318,797 334,797 334,833 318,833 318,827 271,827 271,806 318,806"/> + <Glyph id="c1773"> + <Coords points="271,806 288,806 288,827 271,827"/> + <TextEquiv conf="0.70153"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1775"> + <Coords points="293,807 305,807 305,827 293,827"/> + <TextEquiv conf="0.74772"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1777"> + <Coords points="318,797 334,797 334,833 318,833 318,826 309,826 309,806 318,806"/> + <TextEquiv conf="0.72521"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69144"> + <Unicode>no</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1781" language="German" readingDirection="left-to-right"> + <Coords points="351,806 387,806 387,829 351,829"/> + <Glyph id="c1783"> + <Coords points="351,806 367,806 367,829 351,829"/> + <TextEquiv conf="0.83185"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1785"> + <Coords points="370,806 387,806 387,829 370,829"/> + <TextEquiv conf="0.80758"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.80758"> + <Unicode>an</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1787" language="German" readingDirection="left-to-right"> + <Coords points="433,800 440,800 440,807 484,807 484,815 493,815 493,829 424,829 424,828 405,828 405,807 424,807 424,801 433,801"/> + <Glyph id="c1789"> + <Coords points="405,807 420,807 420,828 405,828"/> + <TextEquiv conf="0.75325"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1791"> + <Coords points="433,800 440,800 440,829 424,829 424,801 433,801"/> + <TextEquiv conf="0.69836"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1795"> + <Coords points="444,807 454,807 454,829 444,829"/> + <TextEquiv conf="0.77285"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1797"> + <Coords points="457,807 484,807 484,829 457,829"/> + <TextEquiv conf="0.84281"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c1799"> + <Coords points="486,815 493,815 493,829 486,829"/> + <TextEquiv conf="0.56713"> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.56713"> + <Unicode>aem.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1801" language="German" readingDirection="left-to-right"> + <Coords points="520,813 570,813 570,819 520,819"/> + <Glyph id="c1803"> + <Coords points="520,813 570,813 570,819 520,819"/> + <TextEquiv conf="0.88040"> + <Unicode>—</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.86562"> + <Unicode>—</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>ihr do no an aem. —</Unicode></TextEquiv></TextLine> + <TextLine id="l7"> + <Coords points="134,304 163,304 163,308 252,308 252,309 324,309 324,310 436,310 436,309 457,309 457,311 634,311 634,307 648,307 648,312 699,312 699,313 759,313 759,315 795,315 795,318 835,318 835,319 864,319 864,320 872,320 872,339 864,339 864,342 852,342 852,341 762,341 762,340 745,340 745,339 560,339 560,341 457,341 457,343 283,343 283,337 163,337 163,342 134,342"/> + <Word id="w1807" language="German" readingDirection="left-to-right"> + <Coords points="134,304 163,304 163,308 252,308 252,309 324,309 324,329 337,329 337,343 283,343 283,337 163,337 163,342 134,342"/> + <Glyph id="c1809"> + <Coords points="134,304 163,304 163,342 134,342"/> + <TextEquiv conf="0.77424"> + <Unicode>H</Unicode></TextEquiv></Glyph> + <Glyph id="c1811"> + <Coords points="173,314 189,314 189,336 173,336"/> + <TextEquiv conf="0.83291"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1813"> + <Coords points="198,315 209,315 209,336 198,336"/> + <TextEquiv conf="0.75086"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1815"> + <Coords points="219,313 229,313 229,337 219,337"/> + <TextEquiv conf="0.80943"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c1817"> + <Coords points="240,308 252,308 252,337 240,337"/> + <TextEquiv conf="0.77207"> + <Unicode>k</Unicode></TextEquiv></Glyph> + <Glyph id="c1819"> + <Coords points="260,317 273,317 273,337 260,337"/> + <TextEquiv conf="0.84221"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1821"> + <Coords points="283,317 299,317 299,343 283,343"/> + <TextEquiv conf="0.79249"> + <Unicode>p</Unicode></TextEquiv></Glyph> + <Glyph id="c1823"> + <Coords points="310,309 324,309 324,343 310,343"/> + <TextEquiv conf="0.87079"> + <Unicode>f</Unicode></TextEquiv></Glyph> + <Glyph id="c1825"> + <Coords points="329,329 337,329 337,343 329,343"/> + <TextEquiv conf="0.97446"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75086"> + <Unicode>Hartkopf,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1827" language="German" readingDirection="left-to-right"> + <Coords points="368,310 381,310 381,316 412,316 412,337 385,337 385,336 368,336"/> + <Glyph id="c1829"> + <Coords points="368,310 381,310 381,336 368,336"/> + <TextEquiv conf="0.76508"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1831"> + <Coords points="385,316 396,316 396,337 385,337"/> + <TextEquiv conf="0.75896"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1833"> + <Coords points="399,316 412,316 412,337 399,337"/> + <TextEquiv conf="0.82288"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75896"> + <Unicode>der</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1835" language="German" readingDirection="left-to-right"> + <Coords points="436,309 457,309 457,317 490,317 490,318 510,318 510,339 457,339 457,343 436,343"/> + <Glyph id="c1837"> + <Coords points="436,309 457,309 457,343 436,343"/> + <TextEquiv conf="0.75319"> + <Unicode>F</Unicode></TextEquiv></Glyph> + <Glyph id="c1839"> + <Coords points="460,318 472,318 472,336 460,336"/> + <TextEquiv conf="0.77654"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1841"> + <Coords points="475,317 490,317 490,337 475,337"/> + <TextEquiv conf="0.83225"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1843"> + <Coords points="494,318 510,318 510,339 494,339"/> + <TextEquiv conf="0.80133"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75319"> + <Unicode>Frau</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1845" language="German" readingDirection="left-to-right"> + <Coords points="634,307 648,307 648,312 699,312 699,319 721,319 721,339 560,339 560,341 533,341 533,311 634,311"/> + <Glyph id="c1847"> + <Coords points="533,311 560,311 560,341 533,341"/> + <TextEquiv conf="0.73224"> + <Unicode>A</Unicode></TextEquiv></Glyph> + <Glyph id="c1849"> + <Coords points="563,319 587,319 587,339 563,339"/> + <TextEquiv conf="0.80570"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c1851"> + <Coords points="592,316 601,316 601,339 592,339"/> + <TextEquiv conf="0.68586"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c1853"> + <Coords points="605,319 629,319 629,339 605,339"/> + <TextEquiv conf="0.77963"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c1855"> + <Coords points="634,307 648,307 648,339 634,339"/> + <TextEquiv conf="0.79249"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1857"> + <Coords points="653,318 667,318 667,339 653,339"/> + <TextEquiv conf="0.85011"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1859"> + <Coords points="672,319 688,319 688,339 672,339"/> + <TextEquiv conf="0.82539"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1861"> + <Coords points="693,312 699,312 699,339 693,339"/> + <TextEquiv conf="0.88742"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1863"> + <Coords points="704,319 721,319 721,339 704,339"/> + <TextEquiv conf="0.85821"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.68586"> + <Unicode>Amtmnnin</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1865" language="German" readingDirection="left-to-right"> + <Coords points="745,313 759,313 759,315 795,315 795,340 778,340 778,341 762,341 762,340 745,340"/> + <Glyph id="c1867"> + <Coords points="745,313 759,313 759,340 745,340"/> + <TextEquiv conf="0.85237"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1869"> + <Coords points="762,320 778,320 778,341 762,341"/> + <TextEquiv conf="0.79818"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1871"> + <Coords points="780,315 795,315 795,340 780,340"/> + <TextEquiv conf="0.76413"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.76413"> + <Unicode>das</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w36" language="German" readingDirection="left-to-right"> + <Coords points="819,318 835,318 835,319 864,319 864,320 872,320 872,339 864,339 864,342 852,342 852,341 819,341"/> + <Glyph id="c1875"> + <Coords points="819,318 835,318 835,341 819,341"/> + <TextEquiv conf="0.84042"> + <Unicode>v</Unicode></TextEquiv></Glyph> + <Glyph id="c1877"> + <Coords points="839,320 849,320 849,341 839,341"/> + <TextEquiv conf="0.84113"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1879"> + <Coords points="852,319 864,319 864,342 852,342"/> + <TextEquiv conf="0.84949"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1881"> + <Coords points="865,320 872,320 872,339 865,339"/> + <TextEquiv conf="0.80870"> + <Unicode>⸗</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.80870"> + <Unicode>ver⸗</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>Hartkopf, der Frau Amtmnnin das ver⸗</Unicode></TextEquiv></TextLine> + <TextLine id="l9"> + <Coords points="135,356 147,356 147,358 221,358 221,366 363,366 363,357 397,357 397,359 438,359 438,360 478,360 478,367 489,367 489,368 522,368 522,375 651,375 651,358 760,358 760,363 850,363 850,370 872,370 872,392 850,392 850,395 777,395 777,391 761,391 761,390 651,390 651,380 522,380 522,382 532,382 532,388 478,388 478,394 465,394 465,387 430,387 430,386 312,386 312,394 302,394 302,392 146,392 146,391 135,391"/> + <Word id="w1883" language="German" readingDirection="left-to-right"> + <Coords points="135,356 147,356 147,358 221,358 221,366 271,366 271,386 236,386 236,387 221,387 221,392 146,392 146,391 135,391"/> + <Glyph id="c1885"> + <Coords points="135,356 147,356 147,391 135,391"/> + <TextEquiv conf="0.87327"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c1887"> + <Coords points="146,364 161,364 161,392 146,392"/> + <TextEquiv conf="0.84382"> + <Unicode>p</Unicode></TextEquiv></Glyph> + <Glyph id="c1889"> + <Coords points="165,366 177,366 177,387 165,387"/> + <TextEquiv conf="0.78667"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1891"> + <Coords points="180,365 192,365 192,386 180,386"/> + <TextEquiv conf="0.89583"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1893"> + <Coords points="197,358 221,358 221,392 197,392"/> + <TextEquiv conf="0.82985"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1895"> + <Coords points="225,367 236,367 236,387 225,387"/> + <TextEquiv conf="0.74928"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1897"> + <Coords points="240,367 256,367 256,386 240,386"/> + <TextEquiv conf="0.76381"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1899"> + <Coords points="259,366 271,366 271,386 259,386"/> + <TextEquiv conf="0.90333"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74928"> + <Unicode>ſproene</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1901" language="German" readingDirection="left-to-right"> + <Coords points="302,366 333,366 333,386 312,386 312,394 302,394"/> + <Glyph id="c1903"> + <Coords points="302,366 312,366 312,394 302,394"/> + <TextEquiv conf="0.77930"> + <Unicode>z</Unicode></TextEquiv></Glyph> + <Glyph id="c1905"> + <Coords points="316,366 333,366 333,386 316,386"/> + <TextEquiv conf="0.88518"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.77930"> + <Unicode>zu</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1907" language="German" readingDirection="left-to-right"> + <Coords points="363,357 397,357 397,359 438,359 438,360 478,360 478,367 489,367 489,368 522,368 522,382 532,382 532,388 478,388 478,394 465,394 465,387 430,387 430,386 363,386"/> + <Glyph id="c1909"> + <Coords points="363,357 379,357 379,386 363,386"/> + <TextEquiv conf="0.74149"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1911"> + <Coords points="384,357 397,357 397,386 384,386"/> + <TextEquiv conf="0.81591"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c1913"> + <Coords points="401,364 412,364 412,385 401,385"/> + <TextEquiv conf="0.79031"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1915"> + <Coords points="415,365 426,365 426,385 415,385"/> + <TextEquiv conf="0.73056"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1917"> + <Coords points="430,359 438,359 438,387 430,387"/> + <TextEquiv conf="0.90756"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1919"> + <Coords points="441,360 446,360 446,387 441,387"/> + <TextEquiv conf="0.77904"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1921"> + <Coords points="451,366 461,366 461,387 451,387"/> + <TextEquiv conf="0.80085"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1923"> + <Coords points="465,360 478,360 478,394 465,394"/> + <TextEquiv conf="0.69815"> + <Unicode>f</Unicode></TextEquiv></Glyph> + <Glyph id="c1925"> + <Coords points="476,367 489,367 489,387 476,387"/> + <TextEquiv conf="0.74520"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1974"> + <Coords points="493,368 502,368 502,387 493,387"/> + <TextEquiv> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1976"> + <Coords points="507,368 522,368 522,387 507,387"/> + <TextEquiv> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1977"> + <Coords points="527,382 532,382 532,388 527,388"/> + <TextEquiv> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69815"> + <Unicode>berliefern.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1929" language="German" readingDirection="left-to-right"> + <Coords points="561,375 610,375 610,380 561,380"/> + <Glyph id="c1931"> + <Coords points="561,375 610,375 610,380 561,380"/> + <TextEquiv conf="0.79675"> + <Unicode>—</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.77520"> + <Unicode>—</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1935" language="German" readingDirection="left-to-right"> + <Coords points="651,358 677,358 677,361 689,361 689,367 710,367 710,388 677,388 677,390 651,390"/> + <Glyph id="c1937"> + <Coords points="651,358 677,358 677,390 651,390"/> + <TextEquiv conf="0.80549"> + <Unicode>E</Unicode></TextEquiv></Glyph> + <Glyph id="c1939"> + <Coords points="682,361 689,361 689,388 682,388"/> + <TextEquiv conf="0.74066"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1941"> + <Coords points="692,367 710,367 710,388 692,388"/> + <TextEquiv conf="0.86004"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74066"> + <Unicode>Ein</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1943" language="German" readingDirection="left-to-right"> + <Coords points="732,358 760,358 760,363 850,363 850,370 872,370 872,392 850,392 850,395 777,395 777,391 761,391 761,389 732,389"/> + <Glyph id="c1945"> + <Coords points="732,358 760,358 760,389 732,389"/> + <TextEquiv conf="0.83324"> + <Unicode>E</Unicode></TextEquiv></Glyph> + <Glyph id="c1947"> + <Coords points="761,369 775,369 775,391 761,391"/> + <TextEquiv conf="0.64602"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1949"> + <Coords points="777,369 793,369 793,395 777,395"/> + <TextEquiv conf="0.91447"> + <Unicode>p</Unicode></TextEquiv></Glyph> + <Glyph id="c1953"> + <Coords points="824,363 850,363 850,395 824,395"/> + <TextEquiv conf="0.86339"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1955"> + <Coords points="845,371 855,371 855,391 845,391"/> + <TextEquiv conf="0.82644"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1957"> + <Coords points="858,370 872,370 872,392 858,392"/> + <TextEquiv conf="0.83229"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1978"> + <Coords points="793,364 808,364 808,389 793,389"/> + <TextEquiv> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1979"> + <Coords points="811,368 822,368 822,388 811,388"/> + <TextEquiv> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.64602"> + <Unicode>Erpreer</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>ſproene zu berliefern. — Ein Erpreer</Unicode></TextEquiv></TextLine> + <TextLine id="l10"> + <Coords points="319,407 403,407 403,408 449,408 449,409 482,409 482,410 508,410 508,416 521,416 521,417 638,417 638,409 666,409 666,412 791,412 791,409 820,409 820,412 831,412 831,417 871,417 871,440 820,440 820,446 791,446 791,439 666,439 666,446 651,446 651,439 538,439 538,444 447,444 447,443 333,443 333,445 319,445 319,435 211,435 211,436 135,436 135,413 198,413 198,410 306,410 306,409 319,409"/> + <Word id="w2" language="German" readingDirection="left-to-right"> + <Coords points="198,410 211,410 211,415 227,415 227,435 211,435 211,436 135,436 135,413 198,413"/> + <Glyph id="c3"> + <Coords points="135,413 160,413 160,436 135,436"/> + <TextEquiv conf="0.83926"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c6"> + <Coords points="198,410 211,410 211,436 198,436"/> + <TextEquiv conf="0.74741"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c7"> + <Coords points="214,415 227,415 227,435 214,435"/> + <TextEquiv conf="0.78431"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1980"> + <Coords points="164,415 178,415 178,436 164,436"/> + <TextEquiv> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c1981"> + <Coords points="182,415 193,415 193,435 182,435"/> + <TextEquiv> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69343"> + <Unicode>wurde</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w8" language="German" readingDirection="left-to-right"> + <Coords points="247,415 283,415 283,435 247,435"/> + <Glyph id="c9"> + <Coords points="247,415 263,415 263,435 247,435"/> + <TextEquiv conf="0.75804"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c10"> + <Coords points="267,415 283,415 283,435 267,435"/> + <TextEquiv conf="0.88661"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75804"> + <Unicode>an</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w11" language="German" readingDirection="left-to-right"> + <Coords points="319,407 333,407 333,413 354,413 354,434 333,434 333,445 319,445 319,435 306,435 306,409 319,409"/> + <Glyph id="c12"> + <Coords points="306,409 315,409 315,435 306,435"/> + <TextEquiv conf="0.75017"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c13"> + <Coords points="319,407 333,407 333,445 319,445"/> + <TextEquiv conf="0.80132"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c14"> + <Coords points="337,413 354,413 354,434 337,434"/> + <TextEquiv conf="0.81077"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75017"> + <Unicode>ihn</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w15" language="German" readingDirection="left-to-right"> + <Coords points="390,407 403,407 403,408 449,408 449,409 482,409 482,410 508,410 508,416 521,416 521,431 538,431 538,444 447,444 447,443 406,443 406,436 390,436 390,435 371,435 371,415 390,415"/> + <Glyph id="c16"> + <Coords points="371,415 385,415 385,435 371,435"/> + <TextEquiv conf="0.81903"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c17"> + <Coords points="390,407 403,407 403,436 390,436"/> + <TextEquiv conf="0.81509"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c18"> + <Coords points="406,416 420,416 420,443 406,443"/> + <TextEquiv conf="0.75122"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c19"> + <Coords points="423,415 434,415 434,436 423,436"/> + <TextEquiv conf="0.74691"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c20"> + <Coords points="437,408 449,408 449,443 437,443"/> + <TextEquiv conf="0.73492"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c21"> + <Coords points="447,409 471,409 471,444 447,444"/> + <TextEquiv conf="0.80440"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c22"> + <Coords points="475,409 482,409 482,437 475,437"/> + <TextEquiv conf="0.71763"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c23"> + <Coords points="495,410 508,410 508,438 486,438 486,416 495,416"/> + <TextEquiv conf="0.85116"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c25"> + <Coords points="511,416 521,416 521,439 511,439"/> + <TextEquiv conf="0.81059"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c26"> + <Coords points="530,431 538,431 538,444 530,444"/> + <TextEquiv conf="0.88635"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.71763"> + <Unicode>abgeſit,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w27" language="German" readingDirection="left-to-right"> + <Coords points="587,417 614,417 614,438 584,438 584,439 566,439 566,418 587,418"/> + <Glyph id="c28"> + <Coords points="566,418 584,418 584,439 566,439"/> + <TextEquiv conf="0.85187"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c29"> + <Coords points="587,417 614,417 614,438 587,438"/> + <TextEquiv conf="0.85970"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.85187"> + <Unicode>um</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w30" language="German" readingDirection="left-to-right"> + <Coords points="638,409 666,409 666,417 687,417 687,439 666,439 666,446 651,446 651,437 638,437"/> + <Glyph id="c31"> + <Coords points="638,409 647,409 647,437 638,437"/> + <TextEquiv conf="0.76901"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c32"> + <Coords points="651,409 666,409 666,446 651,446"/> + <TextEquiv conf="0.72665"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c33"> + <Coords points="671,417 687,417 687,439 671,439"/> + <TextEquiv conf="0.80526"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72665"> + <Unicode>ihn</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w34" language="German" readingDirection="left-to-right"> + <Coords points="764,412 778,412 778,439 764,439 764,438 714,438 714,417 764,417"/> + <Glyph id="c35"> + <Coords points="714,417 730,417 730,438 714,438"/> + <TextEquiv conf="0.80072"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c36"> + <Coords points="735,417 760,417 760,438 735,438"/> + <TextEquiv conf="0.82963"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c37"> + <Coords points="764,412 778,412 778,439 764,439"/> + <TextEquiv conf="0.69324"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69324"> + <Unicode>ums</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w38" language="German" readingDirection="left-to-right"> + <Coords points="791,409 820,409 820,412 831,412 831,417 871,417 871,440 820,440 820,446 791,446"/> + <Glyph id="c39"> + <Coords points="791,409 820,409 820,446 791,446"/> + <TextEquiv conf="0.76995"> + <Unicode>H</Unicode></TextEquiv></Glyph> + <Glyph id="c40"> + <Coords points="824,412 831,412 831,439 824,439"/> + <TextEquiv conf="0.79272"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c41"> + <Coords points="835,417 863,417 863,440 835,440"/> + <TextEquiv conf="0.86622"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c42"> + <Coords points="860,417 871,417 871,440 860,440"/> + <TextEquiv conf="0.69070"> + <Unicode>⸗</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69070"> + <Unicode>Him⸗</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>wurde an ihn abgeſit, um ihn ums Him⸗</Unicode></TextEquiv></TextLine> + <TextLine id="l11"> + <Coords points="245,456 263,456 263,463 367,463 367,457 379,457 379,464 492,464 492,462 528,462 528,460 822,460 822,467 871,467 871,489 822,489 822,494 736,494 736,489 675,489 675,487 542,487 542,494 528,494 528,493 453,493 453,492 367,492 367,491 319,491 319,485 135,485 135,464 180,464 180,460 235,460 235,458 245,458"/> + <Word id="w44" language="German" readingDirection="left-to-right"> + <Coords points="245,456 263,456 263,463 296,463 296,485 135,485 135,464 180,464 180,460 235,460 235,458 245,458"/> + <Glyph id="c46"> + <Coords points="135,464 162,464 162,485 135,485"/> + <TextEquiv conf="0.85319"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c48"> + <Coords points="167,465 177,465 177,485 167,485"/> + <TextEquiv conf="0.78682"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c50"> + <Coords points="180,460 186,460 186,485 180,485"/> + <TextEquiv conf="0.78644"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c52"> + <Coords points="189,460 202,460 202,484 189,484"/> + <TextEquiv conf="0.75733"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <Glyph id="c54"> + <Coords points="207,463 230,463 230,484 207,484"/> + <TextEquiv conf="0.78771"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c8"> + <Coords points="235,458 241,458 241,483 235,483"/> + <TextEquiv conf="0.81867"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c57"> + <Coords points="245,456 263,456 263,483 245,483"/> + <TextEquiv conf="0.78037"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c59"> + <Coords points="265,463 276,463 276,482 265,482"/> + <TextEquiv conf="0.83574"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c11"> + <Coords points="278,463 296,463 296,485 278,485"/> + <TextEquiv conf="0.76827"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75733"> + <Unicode>melswien</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w12" language="German" readingDirection="left-to-right"> + <Coords points="333,463 349,463 349,484 329,484 329,491 319,491 319,464 333,464"/> + <Glyph id="c62"> + <Coords points="319,464 329,464 329,491 319,491"/> + <TextEquiv conf="0.80147"> + <Unicode>z</Unicode></TextEquiv></Glyph> + <Glyph id="c64"> + <Coords points="333,463 349,463 349,484 333,484"/> + <TextEquiv conf="0.89003"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.80147"> + <Unicode>zu</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w66" language="German" readingDirection="left-to-right"> + <Coords points="367,457 379,457 379,464 409,464 409,465 424,465 424,466 443,466 443,480 462,480 462,493 453,493 453,492 367,492"/> + <Glyph id="c68"> + <Coords points="367,457 379,457 379,492 367,492"/> + <TextEquiv conf="0.69068"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c70"> + <Coords points="377,465 393,465 393,485 377,485"/> + <TextEquiv conf="0.80786"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c72"> + <Coords points="393,464 409,464 409,492 393,492"/> + <TextEquiv conf="0.76161"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c74"> + <Coords points="413,465 424,465 424,486 413,486"/> + <TextEquiv conf="0.70436"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c76"> + <Coords points="428,466 443,466 443,487 428,487"/> + <TextEquiv conf="0.79354"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c78"> + <Coords points="453,480 462,480 462,493 453,493"/> + <TextEquiv conf="0.93265"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69068"> + <Unicode>ſagen,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w22" language="German" readingDirection="left-to-right"> + <Coords points="528,460 542,460 542,494 528,494 528,488 492,488 492,462 528,462"/> + <Glyph id="c80"> + <Coords points="492,462 505,462 505,488 492,488"/> + <TextEquiv conf="0.78044"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c82"> + <Coords points="509,468 523,468 523,488 509,488"/> + <TextEquiv conf="0.63475"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c84"> + <Coords points="528,460 542,460 542,494 528,494"/> + <TextEquiv conf="0.81577"> + <Unicode>ß</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.63475"> + <Unicode>daß</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w26" language="German" readingDirection="left-to-right"> + <Coords points="564,466 575,466 575,467 590,467 590,487 564,487"/> + <Glyph id="c27"> + <Coords points="564,466 575,466 575,487 564,487"/> + <TextEquiv conf="0.81638"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c87"> + <Coords points="578,467 590,467 590,487 578,487"/> + <TextEquiv conf="0.83546"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.81638"> + <Unicode>er</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w29" language="German" readingDirection="left-to-right"> + <Coords points="608,460 622,460 622,462 658,462 658,487 608,487"/> + <Glyph id="c30"> + <Coords points="608,460 622,460 622,487 608,487"/> + <TextEquiv conf="0.85168"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c90"> + <Coords points="626,466 641,466 641,487 626,487"/> + <TextEquiv conf="0.62393"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c92"> + <Coords points="645,462 658,462 658,487 645,487"/> + <TextEquiv conf="0.76629"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.62393"> + <Unicode>das</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w33" language="German" readingDirection="left-to-right"> + <Coords points="675,460 822,460 822,467 871,467 871,489 822,489 822,494 736,494 736,489 675,489"/> + <Glyph id="c34"> + <Coords points="675,460 703,460 703,489 675,489"/> + <TextEquiv conf="0.69798"> + <Unicode>V</Unicode></TextEquiv></Glyph> + <Glyph id="c95"> + <Coords points="706,466 718,466 718,487 706,487"/> + <TextEquiv conf="0.76922"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c97"> + <Coords points="721,468 732,468 732,487 721,487"/> + <TextEquiv conf="0.82046"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c99"> + <Coords points="736,460 746,460 746,494 736,494"/> + <TextEquiv conf="0.71052"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c38"> + <Coords points="744,468 760,468 760,494 744,494"/> + <TextEquiv conf="0.85039"> + <Unicode>p</Unicode></TextEquiv></Glyph> + <Glyph id="c102"> + <Coords points="764,468 777,468 777,489 764,489"/> + <TextEquiv conf="0.78193"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c104"> + <Coords points="780,468 792,468 792,488 780,488"/> + <TextEquiv conf="0.89800"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c106"> + <Coords points="796,460 822,460 822,494 796,494"/> + <TextEquiv conf="0.82949"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c108"> + <Coords points="823,467 835,467 835,489 823,489"/> + <TextEquiv conf="0.78273"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c43"> + <Coords points="838,467 854,467 854,489 838,489"/> + <TextEquiv conf="0.80730"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c44"> + <Coords points="858,467 871,467 871,489 858,489"/> + <TextEquiv conf="0.82663"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69798"> + <Unicode>Verſproene</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>melswien zu ſagen, daß er das Verſproene</Unicode></TextEquiv></TextLine> + <TextLine id="l12"> + <Coords points="189,505 328,505 328,506 415,506 415,508 553,508 553,507 567,507 567,510 593,510 593,515 723,515 723,509 738,509 738,507 764,507 764,511 854,511 854,517 869,517 869,540 802,540 802,543 738,543 738,538 631,538 631,543 617,543 617,538 487,538 487,537 363,537 363,540 350,540 350,535 213,535 213,538 150,538 150,541 133,541 133,513 154,513 154,507 189,507"/> + <Word id="w112" language="German" readingDirection="left-to-right"> + <Coords points="189,505 213,505 213,538 150,538 150,541 133,541 133,513 154,513 154,507 189,507"/> + <Glyph id="c114"> + <Coords points="133,513 150,513 150,541 133,541"/> + <TextEquiv conf="0.77811"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c116"> + <Coords points="154,507 161,507 161,535 154,535"/> + <TextEquiv conf="0.90902"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c118"> + <Coords points="164,514 175,514 175,535 164,535"/> + <TextEquiv conf="0.86294"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c120"> + <Coords points="178,508 185,508 185,535 178,535"/> + <TextEquiv conf="0.87351"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c122"> + <Coords points="189,505 213,505 213,538 189,538"/> + <TextEquiv conf="0.84207"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.77811"> + <Unicode>glei</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w124" language="German" readingDirection="left-to-right"> + <Coords points="238,507 251,507 251,512 286,512 286,531 265,531 265,532 251,532 251,533 238,533"/> + <Glyph id="c126"> + <Coords points="238,507 251,507 251,533 238,533"/> + <TextEquiv conf="0.82464"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c128"> + <Coords points="256,513 265,513 265,532 256,532"/> + <TextEquiv conf="0.74946"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c130"> + <Coords points="269,512 286,512 286,531 269,531"/> + <TextEquiv conf="0.75693"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74946"> + <Unicode>den</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w132" language="German" readingDirection="left-to-right"> + <Coords points="301,505 328,505 328,506 415,506 415,508 463,508 463,537 363,537 363,540 350,540 350,535 301,535"/> + <Glyph id="c134"> + <Coords points="301,505 328,505 328,535 301,535"/> + <TextEquiv conf="0.74360"> + <Unicode>A</Unicode></TextEquiv></Glyph> + <Glyph id="c136"> + <Coords points="330,512 347,512 347,533 330,533"/> + <TextEquiv conf="0.86690"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c15"> + <Coords points="350,513 363,513 363,540 350,540"/> + <TextEquiv conf="0.83730"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c139"> + <Coords points="367,514 378,514 378,535 367,535"/> + <TextEquiv conf="0.78025"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c141"> + <Coords points="382,515 397,515 397,536 382,536"/> + <TextEquiv conf="0.85364"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c143"> + <Coords points="402,506 415,506 415,536 402,536"/> + <TextEquiv conf="0.82963"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c145"> + <Coords points="418,508 426,508 426,537 418,537"/> + <TextEquiv conf="0.76089"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c147"> + <Coords points="430,509 436,509 436,536 430,536"/> + <TextEquiv conf="0.75730"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c149"> + <Coords points="440,508 463,508 463,537 440,537"/> + <TextEquiv conf="0.75571"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74360"> + <Unicode>Augenbli</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w151" language="German" readingDirection="left-to-right"> + <Coords points="553,507 567,507 567,510 593,510 593,515 645,515 645,517 665,517 665,537 631,537 631,543 617,543 617,538 487,538 487,508 553,508"/> + <Glyph id="c153"> + <Coords points="487,508 503,508 503,538 487,538"/> + <TextEquiv conf="0.75665"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c155"> + <Coords points="507,508 520,508 520,538 507,538"/> + <TextEquiv conf="0.85321"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c157"> + <Coords points="524,517 536,517 536,537 524,537"/> + <TextEquiv conf="0.81267"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c159"> + <Coords points="538,516 551,516 551,537 538,537"/> + <TextEquiv conf="0.86010"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c161"> + <Coords points="553,507 567,507 567,537 553,537"/> + <TextEquiv conf="0.85329"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c163"> + <Coords points="571,516 583,516 583,537 571,537"/> + <TextEquiv conf="0.79465"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c165"> + <Coords points="586,510 593,510 593,537 586,537"/> + <TextEquiv conf="0.70828"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c167"> + <Coords points="597,516 613,516 613,537 597,537"/> + <TextEquiv conf="0.89573"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c169"> + <Coords points="617,516 631,516 631,543 617,543"/> + <TextEquiv conf="0.83986"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c171"> + <Coords points="634,515 645,515 645,536 634,536"/> + <TextEquiv conf="0.71743"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c173"> + <Coords points="650,517 665,517 665,537 650,537"/> + <TextEquiv conf="0.75062"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.70828"> + <Unicode>berbringen</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w175" language="German" readingDirection="left-to-right"> + <Coords points="738,507 764,507 764,515 777,515 777,517 792,517 792,531 802,531 802,543 738,543 738,538 693,538 693,517 723,517 723,509 738,509"/> + <Glyph id="c177"> + <Coords points="693,517 718,517 718,538 693,538"/> + <TextEquiv conf="0.83211"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c179"> + <Coords points="723,509 736,509 736,537 723,537"/> + <TextEquiv conf="0.74706"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c181"> + <Coords points="738,507 764,507 764,543 738,543"/> + <TextEquiv conf="0.75061"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c183"> + <Coords points="768,515 777,515 777,539 768,539"/> + <TextEquiv conf="0.86418"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c185"> + <Coords points="781,517 792,517 792,537 781,537"/> + <TextEquiv conf="0.81924"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c187"> + <Coords points="794,531 802,531 802,543 794,543"/> + <TextEquiv conf="0.96890"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74706"> + <Unicode>mte,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w41" language="German" readingDirection="left-to-right"> + <Coords points="847,511 854,511 854,517 869,517 869,540 858,540 858,539 829,539 829,512 847,512"/> + <Glyph id="c189"> + <Coords points="829,512 844,512 844,539 829,539"/> + <TextEquiv conf="0.88091"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c191"> + <Coords points="847,511 854,511 854,539 847,539"/> + <TextEquiv conf="0.81469"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c193"> + <Coords points="858,517 869,517 869,540 858,540"/> + <TextEquiv conf="0.84284"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.81469"> + <Unicode>die</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>glei den Augenbli berbringen mte, die</Unicode></TextEquiv></TextLine> + <TextLine id="l13"> + <Coords points="325,551 340,551 340,558 455,558 455,555 470,555 470,558 664,558 664,557 692,557 692,562 808,562 808,560 830,560 830,567 858,567 858,581 869,581 869,597 859,597 859,595 692,595 692,597 677,597 677,594 548,594 548,595 451,595 451,597 435,597 435,587 384,587 384,586 363,586 363,583 155,583 155,590 131,590 131,554 224,554 224,553 325,553"/> + <Word id="w195" language="German" readingDirection="left-to-right"> + <Coords points="131,554 155,554 155,561 207,561 207,582 155,582 155,590 131,590"/> + <Glyph id="c197"> + <Coords points="131,554 155,554 155,590 131,590"/> + <TextEquiv conf="0.81259"> + <Unicode>F</Unicode></TextEquiv></Glyph> + <Glyph id="c199"> + <Coords points="157,562 169,562 169,582 157,582"/> + <TextEquiv conf="0.82264"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c201"> + <Coords points="172,562 187,562 187,582 172,582"/> + <TextEquiv conf="0.81917"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c203"> + <Coords points="191,561 207,561 207,582 191,582"/> + <TextEquiv conf="0.82070"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.81259"> + <Unicode>Frau</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w7" language="German" readingDirection="left-to-right"> + <Coords points="325,551 340,551 340,558 392,558 392,565 412,565 412,586 392,586 392,587 384,587 384,586 363,586 363,583 224,583 224,553 325,553"/> + <Glyph id="c205"> + <Coords points="224,553 250,553 250,583 224,583"/> + <TextEquiv conf="0.72094"> + <Unicode>A</Unicode></TextEquiv></Glyph> + <Glyph id="c207"> + <Coords points="252,562 278,562 278,582 252,582"/> + <TextEquiv conf="0.80405"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c209"> + <Coords points="283,561 292,561 292,583 283,583"/> + <TextEquiv conf="0.81141"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c211"> + <Coords points="295,561 321,561 321,583 295,583"/> + <TextEquiv conf="0.82492"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c213"> + <Coords points="325,551 340,551 340,583 325,583"/> + <TextEquiv conf="0.78478"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c215"> + <Coords points="343,562 359,562 359,583 343,583"/> + <TextEquiv conf="0.83247"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c217"> + <Coords points="363,564 379,564 379,586 363,586"/> + <TextEquiv conf="0.86555"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c219"> + <Coords points="384,558 392,558 392,587 384,587"/> + <TextEquiv conf="0.79899"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c221"> + <Coords points="395,565 412,565 412,586 395,586"/> + <TextEquiv conf="0.86251"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72094"> + <Unicode>Amtmnnin</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w17" language="German" readingDirection="left-to-right"> + <Coords points="455,555 470,555 470,563 496,563 496,566 511,566 511,586 496,586 496,587 451,587 451,597 435,597 435,558 455,558"/> + <Glyph id="c223"> + <Coords points="435,558 451,558 451,597 435,597"/> + <TextEquiv conf="0.81524"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c225"> + <Coords points="455,555 470,555 470,587 455,587"/> + <TextEquiv conf="0.75016"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c227"> + <Coords points="474,563 484,563 484,587 474,587"/> + <TextEquiv conf="0.79488"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c229"> + <Coords points="487,563 496,563 496,587 487,587"/> + <TextEquiv conf="0.85811"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c231"> + <Coords points="499,566 511,566 511,586 499,586"/> + <TextEquiv conf="0.83136"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75016"> + <Unicode>htte</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w23" language="German" readingDirection="left-to-right"> + <Coords points="530,558 576,558 576,593 548,593 548,595 530,595"/> + <Glyph id="c233"> + <Coords points="530,558 548,558 548,595 530,595"/> + <TextEquiv conf="0.81399"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c235"> + <Coords points="550,558 576,558 576,593 550,593"/> + <TextEquiv conf="0.85105"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.81399"> + <Unicode></Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w237" language="German" readingDirection="left-to-right"> + <Coords points="638,559 651,559 651,594 638,594 638,587 599,587 599,565 638,565"/> + <Glyph id="c239"> + <Coords points="599,565 616,565 616,587 599,587"/> + <TextEquiv conf="0.86619"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c241"> + <Coords points="619,566 635,566 635,587 619,587"/> + <TextEquiv conf="0.85601"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c243"> + <Coords points="638,559 651,559 651,594 638,594"/> + <TextEquiv conf="0.90154"> + <Unicode>f</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.85601"> + <Unicode>auf</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w245" language="German" readingDirection="left-to-right"> + <Coords points="664,557 692,557 692,565 713,565 713,587 692,587 692,597 677,597 677,587 664,587"/> + <Glyph id="c247"> + <Coords points="664,557 673,557 673,587 664,587"/> + <TextEquiv conf="0.86188"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c249"> + <Coords points="677,557 692,557 692,597 677,597"/> + <TextEquiv conf="0.78219"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c251"> + <Coords points="696,565 713,565 713,587 696,587"/> + <TextEquiv conf="0.87377"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.78219"> + <Unicode>ihn</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w253" language="German" readingDirection="left-to-right"> + <Coords points="808,560 830,560 830,567 858,567 858,581 869,581 869,597 859,597 859,595 789,595 789,588 749,588 749,587 730,587 730,564 779,564 779,562 808,562"/> + <Glyph id="c255"> + <Coords points="730,564 745,564 745,587 730,587"/> + <TextEquiv conf="0.83469"> + <Unicode>v</Unicode></TextEquiv></Glyph> + <Glyph id="c257"> + <Coords points="749,566 760,566 760,588 749,588"/> + <TextEquiv conf="0.82584"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c259"> + <Coords points="763,567 775,567 775,588 763,588"/> + <TextEquiv conf="0.80972"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c261"> + <Coords points="779,562 785,562 785,588 779,588"/> + <TextEquiv conf="0.75773"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c263"> + <Coords points="789,568 805,568 805,595 789,595"/> + <TextEquiv conf="0.75762"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c265"> + <Coords points="808,560 830,560 830,594 808,594"/> + <TextEquiv conf="0.84869"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c267"> + <Coords points="827,567 838,567 838,588 827,588"/> + <TextEquiv conf="0.83288"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c269"> + <Coords points="841,567 858,567 858,588 841,588"/> + <TextEquiv conf="0.85809"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c271"> + <Coords points="859,581 869,581 869,597 859,597"/> + <TextEquiv conf="0.95823"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75762"> + <Unicode>verlaen,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>Frau Amtmnnin htte  auf ihn verlaen,</Unicode></TextEquiv></TextLine> + <TextLine id="l14"> + <Coords points="435,603 448,603 448,607 527,607 527,613 631,613 631,611 671,611 671,609 780,609 780,616 869,616 869,639 834,639 834,644 767,644 767,643 671,643 671,637 559,637 559,643 550,643 550,642 433,642 433,643 414,643 414,642 344,642 344,634 325,634 325,633 153,633 153,634 132,634 132,609 174,609 174,605 188,605 188,611 297,611 297,610 325,610 325,605 435,605"/> + <Word id="w273" language="German" readingDirection="left-to-right"> + <Coords points="174,605 188,605 188,632 153,632 153,634 132,634 132,609 174,609"/> + <Glyph id="c275"> + <Coords points="132,609 153,609 153,634 132,634"/> + <TextEquiv conf="0.69472"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c277"> + <Coords points="153,610 174,610 174,632 153,632"/> + <TextEquiv conf="0.79421"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c279"> + <Coords points="174,605 188,605 188,632 174,632"/> + <TextEquiv conf="0.85457"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69472"> + <Unicode>und</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w6" language="German" readingDirection="left-to-right"> + <Coords points="217,611 275,611 275,633 237,633 237,632 217,632"/> + <Glyph id="c281"> + <Coords points="217,611 233,611 233,632 217,632"/> + <TextEquiv conf="0.89967"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c283"> + <Coords points="237,612 253,612 253,633 237,633"/> + <TextEquiv conf="0.86568"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c285"> + <Coords points="257,611 275,611 275,633 257,633"/> + <TextEquiv conf="0.87952"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.86568"> + <Unicode>nun</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w10" language="German" readingDirection="left-to-right"> + <Coords points="325,605 341,605 341,606 358,606 358,613 370,613 370,615 385,615 385,636 358,636 358,642 344,642 344,634 325,634 325,633 297,633 297,610 325,610"/> + <Glyph id="c287"> + <Coords points="297,610 321,610 321,633 297,633"/> + <TextEquiv conf="0.88191"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c289"> + <Coords points="325,605 341,605 341,634 325,634"/> + <TextEquiv conf="0.62584"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c291"> + <Coords points="344,606 358,606 358,642 344,642"/> + <TextEquiv conf="0.81252"> + <Unicode>ß</Unicode></TextEquiv></Glyph> + <Glyph id="c293"> + <Coords points="362,613 370,613 370,636 362,636"/> + <TextEquiv conf="0.79687"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c295"> + <Coords points="374,615 385,615 385,636 374,636"/> + <TextEquiv conf="0.90548"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.62584"> + <Unicode>wßte</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w16" language="German" readingDirection="left-to-right"> + <Coords points="435,603 448,603 448,637 433,637 433,643 414,643 414,608 435,608"/> + <Glyph id="c297"> + <Coords points="414,608 433,608 433,643 414,643"/> + <TextEquiv conf="0.81184"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c299"> + <Coords points="435,603 448,603 448,637 435,637"/> + <TextEquiv conf="0.60769"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.60769"> + <Unicode>e</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w20" language="German" readingDirection="left-to-right"> + <Coords points="503,607 527,607 527,613 541,613 541,629 559,629 559,643 550,643 550,642 503,642 503,637 472,637 472,616 492,616 492,609 503,609"/> + <Glyph id="c303"> + <Coords points="472,616 489,616 489,637 472,637"/> + <TextEquiv conf="0.84956"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c305"> + <Coords points="492,609 500,609 500,637 492,637"/> + <TextEquiv conf="0.83295"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c307"> + <Coords points="503,607 527,607 527,642 503,642"/> + <TextEquiv conf="0.84246"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c309"> + <Coords points="531,613 541,613 541,636 531,636"/> + <TextEquiv conf="0.79185"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c311"> + <Coords points="550,629 559,629 559,643 550,643"/> + <TextEquiv conf="0.93453"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.79185"> + <Unicode>nit,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w313" language="German" readingDirection="left-to-right"> + <Coords points="631,611 646,611 646,636 629,636 629,637 613,637 613,636 585,636 585,613 631,613"/> + <Glyph id="c315"> + <Coords points="585,613 610,613 610,636 585,636"/> + <TextEquiv conf="0.86913"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c317"> + <Coords points="613,616 629,616 629,637 613,637"/> + <TextEquiv conf="0.89154"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c319"> + <Coords points="631,611 646,611 646,636 631,636"/> + <TextEquiv conf="0.77958"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.77958"> + <Unicode>was</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w321" language="German" readingDirection="left-to-right"> + <Coords points="671,609 688,609 688,615 702,615 702,637 688,637 688,643 671,643"/> + <Glyph id="c323"> + <Coords points="671,609 688,609 688,643 671,643"/> + <TextEquiv conf="0.79448"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c325"> + <Coords points="691,615 702,615 702,637 691,637"/> + <TextEquiv conf="0.91057"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.79448"> + <Unicode>e</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w327" language="German" readingDirection="left-to-right"> + <Coords points="767,609 780,609 780,616 869,616 869,639 834,639 834,644 767,644 767,637 747,637 747,636 727,636 727,615 767,615"/> + <Glyph id="c329"> + <Coords points="727,615 744,615 744,636 727,636"/> + <TextEquiv conf="0.86330"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c331"> + <Coords points="747,616 764,616 764,637 747,637"/> + <TextEquiv conf="0.81493"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c333"> + <Coords points="767,609 780,609 780,644 767,644"/> + <TextEquiv conf="0.83340"> + <Unicode>f</Unicode></TextEquiv></Glyph> + <Glyph id="c335"> + <Coords points="780,617 797,617 797,638 780,638"/> + <TextEquiv conf="0.80822"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c337"> + <Coords points="800,617 817,617 817,638 800,638"/> + <TextEquiv conf="0.63127"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c341"> + <Coords points="819,617 834,617 834,644 819,644"/> + <TextEquiv conf="0.83403"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c343"> + <Coords points="837,617 849,617 849,638 837,638"/> + <TextEquiv conf="0.83633"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c345"> + <Coords points="852,616 869,616 869,639 852,639"/> + <TextEquiv conf="0.86528"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.63127"> + <Unicode>anfangen</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>und nun wßte e nit, was e anfangen</Unicode></TextEquiv></TextLine> + <TextLine id="l15"> + <Coords points="132,653 145,653 145,654 177,654 177,659 188,659 188,662 290,662 290,655 323,655 323,657 489,657 489,656 503,656 503,657 594,657 594,658 625,658 625,663 737,663 737,657 750,657 750,666 822,666 822,667 858,667 858,679 868,679 868,693 859,693 859,688 827,688 827,687 594,687 594,692 580,692 580,686 451,686 451,691 437,691 437,685 387,685 387,683 214,683 214,686 145,686 145,689 132,689"/> + <Word id="w347" language="German" readingDirection="left-to-right"> + <Coords points="132,653 145,653 145,654 177,654 177,659 188,659 188,662 203,662 203,678 214,678 214,686 145,686 145,689 132,689"/> + <Glyph id="c349"> + <Coords points="132,653 145,653 145,689 132,689"/> + <TextEquiv conf="0.90107"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c351"> + <Coords points="143,662 156,662 156,683 143,683"/> + <TextEquiv conf="0.83153"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c353"> + <Coords points="160,654 177,654 177,684 160,684"/> + <TextEquiv conf="0.83913"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c355"> + <Coords points="180,659 188,659 188,683 180,683"/> + <TextEquiv conf="0.82032"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c357"> + <Coords points="192,662 203,662 203,683 192,683"/> + <TextEquiv conf="0.81250"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c359"> + <Coords points="206,678 214,678 214,686 206,686"/> + <TextEquiv conf="0.83006"> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.44962"> + <Unicode>ſote.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w363" language="German" readingDirection="left-to-right"> + <Coords points="290,655 323,655 323,662 337,662 337,663 358,663 358,683 290,683"/> + <Glyph id="c365"> + <Coords points="290,655 323,655 323,683 290,683"/> + <TextEquiv conf="0.77633"> + <Unicode>D</Unicode></TextEquiv></Glyph> + <Glyph id="c367"> + <Coords points="327,662 337,662 337,682 327,682"/> + <TextEquiv conf="0.75732"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c369"> + <Coords points="340,663 358,663 358,683 340,683"/> + <TextEquiv conf="0.83778"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75732"> + <Unicode>Den</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w14" language="German" readingDirection="left-to-right"> + <Coords points="489,656 503,656 503,657 551,657 551,685 514,685 514,686 451,686 451,691 437,691 437,685 387,685 387,657 489,657"/> + <Glyph id="c371"> + <Coords points="387,657 414,657 414,685 387,685"/> + <TextEquiv conf="0.76383"> + <Unicode>A</Unicode></TextEquiv></Glyph> + <Glyph id="c373"> + <Coords points="417,665 432,665 432,684 417,684"/> + <TextEquiv conf="0.82903"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c375"> + <Coords points="437,665 451,665 451,691 437,691"/> + <TextEquiv conf="0.79390"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c377"> + <Coords points="455,664 465,664 465,684 455,684"/> + <TextEquiv conf="0.87798"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c379"> + <Coords points="469,665 485,665 485,685 469,685"/> + <TextEquiv conf="0.80330"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c381"> + <Coords points="489,656 503,656 503,684 489,684"/> + <TextEquiv conf="0.88135"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c383"> + <Coords points="506,658 514,658 514,686 506,686"/> + <TextEquiv conf="0.90900"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c385"> + <Coords points="516,658 524,658 524,685 516,685"/> + <TextEquiv conf="0.81731"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c387"> + <Coords points="537,657 551,657 551,685 528,685 528,664 537,664"/> + <TextEquiv conf="0.87359"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74983"> + <Unicode>Augenbli</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w25" language="German" readingDirection="left-to-right"> + <Coords points="580,657 594,657 594,658 625,658 625,663 636,663 636,665 651,665 651,685 625,685 625,686 594,686 594,692 580,692"/> + <Glyph id="c393"> + <Coords points="580,657 594,657 594,692 580,692"/> + <TextEquiv conf="0.89818"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c395"> + <Coords points="591,666 603,666 603,685 591,685"/> + <TextEquiv conf="0.87966"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c397"> + <Coords points="608,658 625,658 625,686 608,686"/> + <TextEquiv conf="0.89074"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c399"> + <Coords points="627,663 636,663 636,685 627,685"/> + <TextEquiv conf="0.82771"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c401"> + <Coords points="639,665 651,665 651,685 639,685"/> + <TextEquiv conf="0.82185"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.70672"> + <Unicode>ſote</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w32" language="German" readingDirection="left-to-right"> + <Coords points="682,665 709,665 709,686 692,686 692,687 682,687"/> + <Glyph id="c403"> + <Coords points="682,665 692,665 692,687 682,687"/> + <TextEquiv conf="0.85040"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c405"> + <Coords points="696,665 709,665 709,686 696,686"/> + <TextEquiv conf="0.87954"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.85040"> + <Unicode>er</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w35" language="German" readingDirection="left-to-right"> + <Coords points="737,657 750,657 750,666 822,666 822,667 858,667 858,679 868,679 868,693 859,693 859,688 827,688 827,687 769,687 769,686 752,686 752,685 737,685"/> + <Glyph id="c407"> + <Coords points="737,657 750,657 750,685 737,685"/> + <TextEquiv conf="0.79499"> + <Unicode>k</Unicode></TextEquiv></Glyph> + <Glyph id="c409"> + <Coords points="752,669 765,669 765,686 752,686"/> + <TextEquiv conf="0.75371"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c411"> + <Coords points="769,666 794,666 794,687 769,687"/> + <TextEquiv conf="0.89726"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c413"> + <Coords points="798,666 822,666 822,687 798,687"/> + <TextEquiv conf="0.86998"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c415"> + <Coords points="827,667 838,667 838,688 827,688"/> + <TextEquiv conf="0.76112"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c417"> + <Coords points="841,667 858,667 858,688 841,688"/> + <TextEquiv conf="0.86190"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c419"> + <Coords points="859,679 868,679 868,693 859,693"/> + <TextEquiv conf="0.75547"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75371"> + <Unicode>kommen,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>ſote. Den Augenbli ſote er kommen,</Unicode></TextEquiv></TextLine> + <TextLine id="l16"> + <Coords points="289,700 296,700 296,704 391,704 391,706 500,706 500,705 610,705 610,706 670,706 670,717 810,717 810,706 843,706 843,708 853,708 853,714 869,714 869,734 810,734 810,725 670,725 670,727 679,727 679,734 670,734 670,738 632,738 632,732 515,732 515,737 500,737 500,731 388,731 388,736 200,736 200,738 132,738 132,703 145,703 145,705 289,705"/> + <Word id="w18" language="German" readingDirection="left-to-right"> + <Coords points="375,704 391,704 391,711 405,711 405,729 391,729 391,731 388,731 388,736 375,736"/> + <Glyph id="c453"> + <Coords points="375,704 391,704 391,731 388,731 388,736 375,736"/> + <TextEquiv conf="0.71967"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c457"> + <Coords points="395,711 405,711 405,729 395,729"/> + <TextEquiv conf="0.63427"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.59618"> + <Unicode>e</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w459" language="German" readingDirection="left-to-right"> + <Coords points="430,706 437,706 437,712 458,712 458,730 430,730"/> + <Glyph id="c461"> + <Coords points="430,706 437,706 437,730 430,730"/> + <TextEquiv conf="0.90932"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c463"> + <Coords points="443,712 458,712 458,730 443,730"/> + <TextEquiv conf="0.78817"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.78817"> + <Unicode>in</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w465" language="German" readingDirection="left-to-right"> + <Coords points="500,705 515,705 515,712 561,712 561,730 545,730 545,731 515,731 515,737 500,737 500,731 488,731 488,706 500,706"/> + <Glyph id="c467"> + <Coords points="488,706 500,706 500,731 488,731"/> + <TextEquiv conf="0.75617"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c469"> + <Coords points="500,705 515,705 515,737 500,737"/> + <TextEquiv conf="0.81226"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c471"> + <Coords points="519,712 531,712 531,731 519,731"/> + <TextEquiv conf="0.82490"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c473"> + <Coords points="534,712 545,712 545,731 534,731"/> + <TextEquiv conf="0.77567"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c475"> + <Coords points="549,712 561,712 561,730 549,730"/> + <TextEquiv conf="0.81074"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75617"> + <Unicode>ihrer</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w31" language="German" readingDirection="left-to-right"> + <Coords points="584,705 610,705 610,706 670,706 670,727 679,727 679,734 670,734 670,738 632,738 632,732 584,732"/> + <Glyph id="c477"> + <Coords points="584,705 610,705 610,732 584,732"/> + <TextEquiv conf="0.75753"> + <Unicode>A</Unicode></TextEquiv></Glyph> + <Glyph id="c479"> + <Coords points="612,712 628,712 628,731 612,731"/> + <TextEquiv conf="0.85713"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c481"> + <Coords points="632,713 646,713 646,738 632,738"/> + <TextEquiv conf="0.83868"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c483"> + <Coords points="651,706 670,706 670,738 651,738"/> + <TextEquiv conf="0.83102"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c485"> + <Coords points="672,727 679,727 679,734 672,734"/> + <TextEquiv conf="0.86399"> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75753"> + <Unicode>Ang.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w37" language="German" readingDirection="left-to-right"> + <Coords points="707,717 758,717 758,725 707,725"/> + <Glyph id="c489"> + <Coords points="707,717 758,717 758,725 707,725"/> + <TextEquiv conf="0.65354"> + <Unicode>—</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.34845"> + <Unicode>—</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w493" language="German" readingDirection="left-to-right"> + <Coords points="810,706 843,706 843,708 853,708 853,714 869,714 869,734 810,734"/> + <Glyph id="c495"> + <Coords points="810,706 843,706 843,734 810,734"/> + <TextEquiv conf="0.80822"> + <Unicode>D</Unicode></TextEquiv></Glyph> + <Glyph id="c497"> + <Coords points="846,708 853,708 853,734 846,734"/> + <TextEquiv conf="0.73804"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c499"> + <Coords points="856,714 869,714 869,734 856,734"/> + <TextEquiv conf="0.90323"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.73804"> + <Unicode>Die</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1958" language="German" readingDirection="left-to-right"> + <Coords points="132,703 145,703 145,705 200,705 200,738 132,738"/> + <Glyph id="c423"> + <Coords points="132,703 145,703 145,738 132,738"/> + <TextEquiv conf="0.90635"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c425"> + <Coords points="145,712 156,712 156,732 145,732"/> + <TextEquiv conf="0.82676"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c427"> + <Coords points="161,712 177,712 177,732 161,732"/> + <TextEquiv conf="0.75355"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c429"> + <Coords points="181,705 200,705 200,738 181,738"/> + <TextEquiv conf="0.82048"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>ſon</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1959" language="German" readingDirection="left-to-right"> + <Coords points="289,700 296,700 296,710 311,710 311,711 349,711 349,736 271,736 271,735 243,735 243,731 222,731 222,708 289,708"/> + <Glyph id="c435"> + <Coords points="222,708 238,708 238,731 222,731"/> + <TextEquiv conf="0.81159"> + <Unicode>v</Unicode></TextEquiv></Glyph> + <Glyph id="c437"> + <Coords points="243,710 253,710 253,735 243,735"/> + <TextEquiv conf="0.78373"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c439"> + <Coords points="256,709 270,709 270,730 256,730"/> + <TextEquiv conf="0.66507"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c443"> + <Coords points="271,710 285,710 285,736 271,736"/> + <TextEquiv conf="0.78970"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c445"> + <Coords points="289,700 296,700 296,730 289,730"/> + <TextEquiv conf="0.74451"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c447"> + <Coords points="300,710 311,710 311,728 300,728"/> + <TextEquiv conf="0.77809"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c449"> + <Coords points="315,711 330,711 330,730 315,730"/> + <TextEquiv conf="0.75578"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c451"> + <Coords points="335,711 349,711 349,736 335,736"/> + <TextEquiv conf="0.77976"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>vergieng</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>ſon vergieng e in ihrer Ang. — Die</Unicode></TextEquiv></TextLine> + <TextLine id="l17"> + <Coords points="267,747 282,747 282,750 362,750 362,751 381,751 381,757 507,757 507,751 518,751 518,757 710,757 710,753 788,753 788,752 800,752 800,753 830,753 830,754 842,754 842,758 854,758 854,760 869,760 869,783 830,783 830,791 815,791 815,788 788,788 788,781 646,781 646,786 636,786 636,779 612,779 612,778 489,778 489,785 475,785 475,784 358,784 358,783 348,783 348,778 226,778 226,779 203,779 203,786 190,786 190,781 135,781 135,751 172,751 172,749 267,749"/> + <Word id="w501" language="German" readingDirection="left-to-right"> + <Coords points="172,749 185,749 185,752 203,752 203,758 226,758 226,779 203,779 203,786 190,786 190,781 135,781 135,751 172,751"/> + <Glyph id="c503"> + <Coords points="135,751 167,751 167,781 135,781"/> + <TextEquiv conf="0.74674"> + <Unicode>G</Unicode></TextEquiv></Glyph> + <Glyph id="c505"> + <Coords points="172,749 185,749 185,780 172,780"/> + <TextEquiv conf="0.74037"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c507"> + <Coords points="190,752 203,752 203,759 208,759 208,778 203,778 203,786 190,786"/> + <TextEquiv conf="0.72476"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c511"> + <Coords points="211,758 226,758 226,779 211,779"/> + <TextEquiv conf="0.54722"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.54722"> + <Unicode>Ge</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w513" language="German" readingDirection="left-to-right"> + <Coords points="267,747 282,747 282,756 330,756 330,775 311,775 311,777 263,777 263,778 240,778 240,757 267,757"/> + <Glyph id="c515"> + <Coords points="240,757 263,757 263,778 240,778"/> + <TextEquiv conf="0.73661"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c517"> + <Coords points="267,747 282,747 282,776 267,776"/> + <TextEquiv conf="0.69234"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c519"> + <Coords points="285,757 297,757 297,776 285,776"/> + <TextEquiv conf="0.65563"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c521"> + <Coords points="300,759 311,759 311,777 300,777"/> + <TextEquiv conf="0.56312"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c523"> + <Coords points="314,756 330,756 330,775 314,775"/> + <TextEquiv conf="0.69455"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.56312"> + <Unicode>wren</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w525" language="German" readingDirection="left-to-right"> + <Coords points="348,750 362,750 362,751 381,751 381,757 420,757 420,777 381,777 381,784 358,784 358,783 348,783"/> + <Glyph id="c527"> + <Coords points="348,750 362,750 362,783 348,783"/> + <TextEquiv conf="0.66078"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c531"> + <Coords points="358,751 381,751 381,784 358,784"/> + <TextEquiv conf="0.66802"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c539"> + <Coords points="386,758 399,758 399,777 386,777"/> + <TextEquiv conf="0.73845"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c541"> + <Coords points="404,757 420,757 420,777 404,777"/> + <TextEquiv conf="0.77675"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.62291"> + <Unicode>ſon</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w543" language="German" readingDirection="left-to-right"> + <Coords points="507,751 518,751 518,757 628,757 628,770 646,770 646,786 636,786 636,779 612,779 612,778 489,778 489,785 475,785 475,777 437,777 437,758 507,758"/> + <Glyph id="c545"> + <Coords points="437,758 452,758 452,777 437,777"/> + <TextEquiv conf="0.72155"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c547"> + <Coords points="456,758 471,758 471,777 456,777"/> + <TextEquiv conf="0.79762"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c549"> + <Coords points="475,759 489,759 489,785 475,785"/> + <TextEquiv conf="0.79532"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c551"> + <Coords points="493,758 504,758 504,777 493,777"/> + <TextEquiv conf="0.80650"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c553"> + <Coords points="507,751 518,751 518,778 507,778"/> + <TextEquiv conf="0.81130"> + <Unicode>k</Unicode></TextEquiv></Glyph> + <Glyph id="c555"> + <Coords points="521,758 534,758 534,777 521,777"/> + <TextEquiv conf="0.87234"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c557"> + <Coords points="538,757 563,757 563,778 538,778"/> + <TextEquiv conf="0.86420"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c559"> + <Coords points="567,757 593,757 593,778 567,778"/> + <TextEquiv conf="0.82836"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c561"> + <Coords points="598,757 609,757 609,778 598,778"/> + <TextEquiv conf="0.85506"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c563"> + <Coords points="612,757 628,757 628,779 612,779"/> + <TextEquiv conf="0.82750"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c565"> + <Coords points="636,770 646,770 646,786 636,786"/> + <TextEquiv conf="0.92026"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72155"> + <Unicode>angekommen,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w567" language="German" readingDirection="left-to-right"> + <Coords points="710,753 725,753 725,781 710,781 710,780 669,780 669,758 710,758"/> + <Glyph id="c569"> + <Coords points="669,758 685,758 685,780 669,780"/> + <TextEquiv conf="0.83921"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c571"> + <Coords points="690,759 705,759 705,780 690,780"/> + <TextEquiv conf="0.78570"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c573"> + <Coords points="710,753 725,753 725,781 710,781"/> + <TextEquiv conf="0.85326"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.78570"> + <Unicode>und</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w39" language="German" readingDirection="left-to-right"> + <Coords points="756,755 771,755 771,780 742,780 742,759 756,759"/> + <Glyph id="c575"> + <Coords points="742,759 754,759 754,780 742,780"/> + <TextEquiv conf="0.83292"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c577"> + <Coords points="756,755 771,755 771,780 756,780"/> + <TextEquiv conf="0.74440"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74440"> + <Unicode>es</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w42" language="German" readingDirection="left-to-right"> + <Coords points="788,752 800,752 800,753 830,753 830,754 842,754 842,758 854,758 854,760 869,760 869,783 830,783 830,791 815,791 815,788 788,788"/> + <Glyph id="c579"> + <Coords points="788,752 800,752 800,788 788,788"/> + <TextEquiv conf="0.72874"> + <Unicode>f</Unicode></TextEquiv></Glyph> + <Glyph id="c581"> + <Coords points="801,760 812,760 812,781 801,781"/> + <TextEquiv conf="0.82842"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c45"> + <Coords points="815,753 830,753 830,791 815,791"/> + <TextEquiv conf="0.76562"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c584"> + <Coords points="835,754 842,754 842,782 835,782"/> + <TextEquiv conf="0.85813"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c47"> + <Coords points="845,758 854,758 854,783 845,783"/> + <TextEquiv conf="0.70176"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c587"> + <Coords points="856,760 869,760 869,783 856,783"/> + <TextEquiv conf="0.90020"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.70176"> + <Unicode>fehlte</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>Ge wren ſon angekommen, und es fehlte</Unicode></TextEquiv></TextLine> + <TextEquiv> + <Unicode>ber die vielen Sorgen wegen deelben vergaß +Hartkopf, der Frau Amtmnnin das ver⸗ +ſproene zu berliefern. — Ein Erpreer +wurde an ihn abgeſit, um ihn ums Him⸗ +melswien zu ſagen, daß er das Verfproene +glei den Augenbli berbringen mte, die +Frau Amtmnnin htte  auf ihn verlaen, +und nun wßte e nit, was e anfangen +ſote. Den Augembli ſote er kommen, +ſon vergieng e in ihrer Ang. — Die +Ge wren ſon angekommen, und es fehlte +ihr do no an aem. —</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></TextRegion> + <TextRegion id="r2" readingDirection="left-to-right" textLineOrder="top-to-bottom" type="paragraph" indented="true" align="justify" primaryLanguage="German"> + <Coords points="289,871 300,871 300,874 532,874 532,873 650,873 650,872 664,872 664,874 699,874 699,882 854,882 854,878 868,878 868,928 870,928 870,1006 868,1006 868,1128 869,1128 869,1166 874,1166 874,1201 810,1201 810,1202 573,1202 573,1236 496,1236 496,1246 414,1246 414,1250 389,1250 389,1245 163,1245 163,1243 131,1243 131,1221 132,1221 132,1051 130,1051 130,980 131,980 131,930 166,930 166,924 179,924 179,873 289,873"/> + <TextLine id="l18"> + <Coords points="289,871 300,871 300,874 532,874 532,873 650,873 650,872 664,872 664,874 699,874 699,882 854,882 854,878 868,878 868,907 790,907 790,911 611,911 611,910 511,910 511,908 260,908 260,910 248,910 248,909 179,909 179,873 289,873"/> + <Word id="w589" language="German" readingDirection="left-to-right"> + <Coords points="289,871 300,871 300,874 369,874 369,907 347,907 347,908 260,908 260,910 248,910 248,909 179,909 179,873 289,873"/> + <Glyph id="c591"> + <Coords points="179,873 213,873 213,909 179,909"/> + <TextEquiv conf="0.65785"> + <Unicode>H</Unicode></TextEquiv></Glyph> + <Glyph id="c593"> + <Coords points="223,880 240,880 240,900 223,900"/> + <TextEquiv conf="0.62778"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c595"> + <Coords points="248,879 260,879 260,910 248,910"/> + <TextEquiv conf="0.56137"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c599"> + <Coords points="270,877 279,877 279,900 270,900"/> + <TextEquiv conf="0.62887"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c601"> + <Coords points="289,871 300,871 300,899 289,899"/> + <TextEquiv conf="0.84237"> + <Unicode>k</Unicode></TextEquiv></Glyph> + <Glyph id="c1982"> + <Coords points="310,880 321,880 321,899 310,899"/> + <TextEquiv> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1984"> + <Coords points="357,874 369,874 369,907 357,907"/> + <TextEquiv> + <Unicode>f</Unicode></TextEquiv></Glyph> + <Glyph id="c1985"> + <Coords points="333,882 347,882 347,908 333,908"/> + <TextEquiv> + <Unicode>p</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.56137"> + <Unicode>Hartkopf</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w605" language="German" readingDirection="left-to-right"> + <Coords points="446,874 460,874 460,879 471,879 471,880 487,880 487,902 460,902 460,908 446,908 446,903 396,903 396,882 446,882"/> + <Glyph id="c607"> + <Coords points="396,882 421,882 421,903 396,903"/> + <TextEquiv conf="0.78914"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c609"> + <Coords points="426,882 441,882 441,903 426,903"/> + <TextEquiv conf="0.80258"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c611"> + <Coords points="446,874 460,874 460,908 446,908"/> + <TextEquiv conf="0.74591"> + <Unicode>ß</Unicode></TextEquiv></Glyph> + <Glyph id="c613"> + <Coords points="465,879 471,879 471,902 465,902"/> + <TextEquiv conf="0.76057"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c615"> + <Coords points="475,880 487,880 487,902 475,902"/> + <TextEquiv conf="0.80505"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74591"> + <Unicode>mußte</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w617" language="German" readingDirection="left-to-right"> + <Coords points="532,873 557,873 557,910 511,910 511,874 532,874"/> + <Glyph id="c619"> + <Coords points="511,874 529,874 529,904 526,904 526,910 511,910"/> + <TextEquiv conf="0.81212"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c623"> + <Coords points="532,873 557,873 557,910 532,910"/> + <TextEquiv conf="0.78768"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.74336"> + <Unicode></Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w625" language="German" readingDirection="left-to-right"> + <Coords points="611,875 630,875 630,911 611,911 611,903 581,903 581,881 611,881"/> + <Glyph id="c627"> + <Coords points="581,881 593,881 593,903 581,903"/> + <TextEquiv conf="0.78138"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c629"> + <Coords points="596,881 608,881 608,903 596,903"/> + <TextEquiv conf="0.77291"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c631"> + <Coords points="611,875 630,875 630,911 611,911"/> + <TextEquiv conf="0.77326"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.77291"> + <Unicode>er</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w24" language="German" readingDirection="left-to-right"> + <Coords points="650,872 664,872 664,874 699,874 699,882 754,882 754,883 773,883 773,897 790,897 790,911 682,911 682,903 650,903"/> + <Glyph id="c633"> + <Coords points="650,872 664,872 664,903 650,903"/> + <TextEquiv conf="0.80696"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c635"> + <Coords points="668,883 678,883 678,903 668,903"/> + <TextEquiv conf="0.68657"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c637"> + <Coords points="682,874 699,874 699,911 682,911"/> + <TextEquiv conf="0.79151"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c639"> + <Coords points="702,882 718,882 718,904 702,904"/> + <TextEquiv conf="0.78366"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c641"> + <Coords points="723,882 737,882 737,904 723,904"/> + <TextEquiv conf="0.67989"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c643"> + <Coords points="742,882 754,882 754,904 742,904"/> + <TextEquiv conf="0.78789"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c645"> + <Coords points="757,883 773,883 773,904 757,904"/> + <TextEquiv conf="0.81248"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c647"> + <Coords points="782,897 790,897 790,911 782,911"/> + <TextEquiv conf="0.96113"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.67989"> + <Unicode>bennen,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w649" language="German" readingDirection="left-to-right"> + <Coords points="854,878 868,878 868,907 854,907 854,906 814,906 814,884 834,884 834,883 854,883"/> + <Glyph id="c651"> + <Coords points="814,884 830,884 830,906 814,906"/> + <TextEquiv conf="0.86254"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c653"> + <Coords points="834,883 850,883 850,905 834,905"/> + <TextEquiv conf="0.82806"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c655"> + <Coords points="854,878 868,878 868,907 854,907"/> + <TextEquiv conf="0.82248"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.82248"> + <Unicode>und</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>Hartkopf mußte  er bennen, und</Unicode></TextEquiv></TextLine> + <TextLine id="l19"> + <Coords points="338,1213 352,1213 352,1215 414,1215 414,1218 486,1218 486,1228 573,1228 573,1236 486,1236 486,1238 496,1238 496,1246 414,1246 414,1250 389,1250 389,1245 163,1245 163,1243 131,1243 131,1221 163,1221 163,1216 270,1216 270,1215 338,1215"/> + <Word id="w657" language="German" readingDirection="left-to-right"> + <Coords points="163,1216 169,1216 169,1220 183,1220 183,1244 169,1244 169,1245 163,1245 163,1243 131,1243 131,1221 163,1221"/> + <Glyph id="c659"> + <Coords points="131,1221 157,1221 157,1243 131,1243"/> + <TextEquiv conf="0.86845"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c661"> + <Coords points="163,1216 169,1216 169,1245 163,1245"/> + <TextEquiv conf="0.80820"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c663"> + <Coords points="173,1220 183,1220 183,1244 173,1244"/> + <TextEquiv conf="0.83267"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.80820"> + <Unicode>mit</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w665" language="German" readingDirection="left-to-right"> + <Coords points="238,1218 253,1218 253,1245 238,1245 238,1244 198,1244 198,1223 238,1223"/> + <Glyph id="c667"> + <Coords points="198,1223 214,1223 214,1244 198,1244"/> + <TextEquiv conf="0.83648"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c669"> + <Coords points="218,1223 234,1223 234,1244 218,1244"/> + <TextEquiv conf="0.88806"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c671"> + <Coords points="238,1218 253,1218 253,1245 238,1245"/> + <TextEquiv conf="0.84604"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.83648"> + <Unicode>und</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w673" language="German" readingDirection="left-to-right"> + <Coords points="338,1213 352,1213 352,1215 414,1215 414,1220 427,1220 427,1223 441,1223 441,1244 414,1244 414,1250 389,1250 389,1245 291,1245 291,1244 270,1244 270,1215 338,1215"/> + <Glyph id="c675"> + <Coords points="270,1215 287,1215 287,1244 270,1244"/> + <TextEquiv conf="0.78567"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c677"> + <Coords points="291,1216 304,1216 304,1245 291,1245"/> + <TextEquiv conf="0.76636"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c679"> + <Coords points="309,1223 319,1223 319,1245 309,1245"/> + <TextEquiv conf="0.78462"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c681"> + <Coords points="322,1223 332,1223 332,1245 322,1245"/> + <TextEquiv conf="0.87348"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c683"> + <Coords points="338,1213 352,1213 352,1242 338,1242"/> + <TextEquiv conf="0.88542"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c685"> + <Coords points="355,1223 366,1223 366,1245 355,1245"/> + <TextEquiv conf="0.78417"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c687"> + <Coords points="370,1223 386,1223 386,1244 370,1244"/> + <TextEquiv conf="0.82808"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c689"> + <Coords points="389,1215 414,1215 414,1250 389,1250"/> + <TextEquiv conf="0.86601"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c691"> + <Coords points="419,1220 427,1220 427,1244 419,1244"/> + <TextEquiv conf="0.73453"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c693"> + <Coords points="431,1223 441,1223 441,1244 431,1244"/> + <TextEquiv conf="0.77437"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.67268"> + <Unicode>berbrate</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w697" language="German" readingDirection="left-to-right"> + <Coords points="473,1218 486,1218 486,1238 496,1238 496,1246 489,1246 489,1244 458,1244 458,1222 473,1222"/> + <Glyph id="c699"> + <Coords points="458,1222 469,1222 469,1244 458,1244"/> + <TextEquiv conf="0.87254"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c701"> + <Coords points="473,1218 486,1218 486,1244 473,1244"/> + <TextEquiv conf="0.71657"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <Glyph id="c703"> + <Coords points="489,1238 496,1238 496,1246 489,1246"/> + <TextEquiv conf="0.87608"> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.71657"> + <Unicode>es.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w705" language="German" readingDirection="left-to-right"> + <Coords points="523,1228 573,1228 573,1236 523,1236"/> + <Glyph id="c707"> + <Coords points="523,1228 573,1228 573,1236 523,1236"/> + <TextEquiv conf="0.80644"> + <Unicode>—</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.80644"> + <Unicode>—</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>mit und berbrate es. —</Unicode></TextEquiv></TextLine> + <TextLine id="l20"> + <Coords points="295,921 312,921 312,924 336,924 336,931 445,931 445,924 477,924 477,925 580,925 580,924 592,924 592,926 657,926 657,928 870,928 870,966 753,966 753,961 640,961 640,953 524,953 524,957 500,957 500,952 390,952 390,958 377,958 377,954 231,954 231,955 214,955 214,952 131,952 131,930 166,930 166,924 185,924 185,923 295,923"/> + <Word id="w735" language="German" readingDirection="left-to-right"> + <Coords points="328,924 336,924 336,931 405,931 405,932 434,932 434,951 390,951 390,958 377,958 377,951 338,951 338,950 328,950"/> + <Glyph id="c737"> + <Coords points="328,924 336,924 336,950 328,950"/> + <TextEquiv conf="0.90274"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c739"> + <Coords points="338,931 353,931 353,951 338,951"/> + <TextEquiv conf="0.78566"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c741"> + <Coords points="357,931 373,931 373,950 357,950"/> + <TextEquiv conf="0.79945"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c743"> + <Coords points="377,932 390,932 390,958 377,958"/> + <TextEquiv conf="0.71285"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c745"> + <Coords points="394,931 405,931 405,950 394,950"/> + <TextEquiv conf="0.79874"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c747"> + <Coords points="410,932 434,932 434,951 410,951"/> + <TextEquiv conf="0.82520"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.71285"> + <Unicode>langem</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w749" language="German" readingDirection="left-to-right"> + <Coords points="445,924 477,924 477,925 580,925 580,924 592,924 592,933 624,933 624,953 524,953 524,957 500,957 500,952 445,952"/> + <Glyph id="c751"> + <Coords points="445,924 477,924 477,952 445,952"/> + <TextEquiv conf="0.74283"> + <Unicode>N</Unicode></TextEquiv></Glyph> + <Glyph id="c753"> + <Coords points="481,932 496,932 496,952 481,952"/> + <TextEquiv conf="0.75699"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c755"> + <Coords points="500,925 524,925 524,957 500,957"/> + <TextEquiv conf="0.75184"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c757"> + <Coords points="528,928 542,928 542,953 528,953"/> + <TextEquiv conf="0.83750"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c759"> + <Coords points="546,932 556,932 556,953 546,953"/> + <TextEquiv conf="0.80128"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c761"> + <Coords points="561,933 576,933 576,953 561,953"/> + <TextEquiv conf="0.88134"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c763"> + <Coords points="580,924 592,924 592,953 580,953"/> + <TextEquiv conf="0.71210"> + <Unicode>k</Unicode></TextEquiv></Glyph> + <Glyph id="c765"> + <Coords points="594,933 604,933 604,952 594,952"/> + <TextEquiv conf="0.74491"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c767"> + <Coords points="608,933 624,933 624,953 608,953"/> + <TextEquiv conf="0.83860"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.71210"> + <Unicode>Nadenken</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w769" language="German" readingDirection="left-to-right"> + <Coords points="640,926 657,926 657,929 683,929 683,955 652,955 652,961 640,961"/> + <Glyph id="c771"> + <Coords points="640,926 657,926 657,954 652,954 652,961 640,961"/> + <TextEquiv conf="0.80072"> + <Unicode>fi</Unicode></TextEquiv></Glyph> + <Glyph id="c775"> + <Coords points="661,933 672,933 672,952 661,952"/> + <TextEquiv conf="0.66486"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c779"> + <Coords points="675,929 683,929 683,955 675,955"/> + <TextEquiv conf="0.77660"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.66486"> + <Unicode>fiel</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w781" language="German" readingDirection="left-to-right"> + <Coords points="718,930 731,930 731,955 714,955 714,956 703,956 703,935 718,935"/> + <Glyph id="c783"> + <Coords points="703,935 714,935 714,956 703,956"/> + <TextEquiv conf="0.75188"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c785"> + <Coords points="718,930 731,930 731,955 718,955"/> + <TextEquiv conf="0.75078"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75078"> + <Unicode>es</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w787" language="German" readingDirection="left-to-right"> + <Coords points="753,928 774,928 774,935 803,935 803,957 774,957 774,966 753,966 753,958 747,958 747,929 753,929"/> + <Glyph id="c789"> + <Coords points="747,929 756,929 756,958 747,958"/> + <TextEquiv conf="0.83834"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c791"> + <Coords points="753,928 774,928 774,966 753,966"/> + <TextEquiv conf="0.60499"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c793"> + <Coords points="778,935 803,935 803,957 778,957"/> + <TextEquiv conf="0.82357"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.60499"> + <Unicode>ihm</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w45" language="German" readingDirection="left-to-right"> + <Coords points="851,928 870,928 870,966 851,966 851,957 822,957 822,935 851,935"/> + <Glyph id="c795"> + <Coords points="822,935 833,935 833,957 822,957"/> + <TextEquiv conf="0.70980"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c797"> + <Coords points="836,935 848,935 848,956 836,956"/> + <TextEquiv conf="0.66756"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c799"> + <Coords points="851,928 870,928 870,966 851,966"/> + <TextEquiv conf="0.70778"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.66756"> + <Unicode>er</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w76" language="German" readingDirection="left-to-right"> + <Coords points="185,923 201,923 201,924 231,924 231,955 214,955 214,952 131,952 131,930 166,930 166,924 185,924"/> + <Glyph id="c711"> + <Coords points="131,930 143,930 143,952 131,952"/> + <TextEquiv conf="0.83869"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c713"> + <Coords points="147,930 162,930 162,952 147,952"/> + <TextEquiv conf="0.74228"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c715"> + <Coords points="166,924 180,924 180,952 166,952"/> + <TextEquiv conf="0.83162"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c717"> + <Coords points="185,923 191,923 191,950 185,950"/> + <TextEquiv conf="0.81493"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c719"> + <Coords points="196,923 201,923 201,950 196,950"/> + <TextEquiv conf="0.76423"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c721"> + <Coords points="214,924 231,924 231,955 214,955 214,951 206,951 206,929 214,929"/> + <TextEquiv conf="0.86288"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>endli</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w77" language="German" readingDirection="left-to-right"> + <Coords points="295,921 312,921 312,954 295,954 295,948 244,948 244,929 287,929 287,928 295,928"/> + <Glyph id="c727"> + <Coords points="244,929 265,929 265,948 244,948"/> + <TextEquiv conf="0.84252"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c729"> + <Coords points="268,929 284,929 284,948 268,948"/> + <TextEquiv conf="0.75510"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c731"> + <Coords points="295,921 312,921 312,954 295,954 295,948 287,948 287,928 295,928"/> + <TextEquiv conf="0.86161"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>na</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>endli na langem Nadenken fiel es ihm er</Unicode></TextEquiv></TextLine> + <TextLine id="l21"> + <Coords points="258,971 266,971 266,977 285,977 285,984 403,984 403,971 429,971 429,973 470,973 470,978 636,978 636,974 655,974 655,977 720,977 720,980 824,980 824,986 870,986 870,1006 636,1006 636,1002 525,1002 525,1006 511,1006 511,1001 403,1001 403,989 285,989 285,993 296,993 296,1001 289,1001 289,999 166,999 166,1000 156,1000 156,1001 130,1001 130,980 160,980 160,974 258,974"/> + <Word id="w801" language="German" readingDirection="left-to-right"> + <Coords points="160,974 197,974 197,978 227,978 227,999 166,999 166,1000 156,1000 156,1001 130,1001 130,980 160,980"/> + <Glyph id="c803"> + <Coords points="130,980 156,980 156,1001 130,1001"/> + <TextEquiv conf="0.76881"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c805"> + <Coords points="160,974 166,974 166,1000 160,1000"/> + <TextEquiv conf="0.90705"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c807"> + <Coords points="170,980 180,980 180,999 170,999"/> + <TextEquiv conf="0.79531"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c809"> + <Coords points="184,974 197,974 197,999 184,999"/> + <TextEquiv conf="0.72473"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c811"> + <Coords points="201,979 212,979 212,998 201,998"/> + <TextEquiv conf="0.81594"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c813"> + <Coords points="215,978 227,978 227,999 215,999"/> + <TextEquiv conf="0.77659"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72473"> + <Unicode>wieder</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w9" language="German" readingDirection="left-to-right"> + <Coords points="258,971 266,971 266,977 285,977 285,993 296,993 296,1001 289,1001 289,998 258,998 258,997 244,997 244,978 258,978"/> + <Glyph id="c815"> + <Coords points="244,978 255,978 255,997 244,997"/> + <TextEquiv conf="0.82000"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c817"> + <Coords points="258,971 266,971 266,998 258,998"/> + <TextEquiv conf="0.73086"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c819"> + <Coords points="270,977 285,977 285,998 270,998"/> + <TextEquiv conf="0.81816"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c821"> + <Coords points="289,993 296,993 296,1001 289,1001"/> + <TextEquiv conf="0.89747"> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.73086"> + <Unicode>ein.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w823" language="German" readingDirection="left-to-right"> + <Coords points="324,984 374,984 374,989 324,989"/> + <Glyph id="c825"> + <Coords points="324,984 374,984 374,989 324,989"/> + <TextEquiv conf="0.70254"> + <Unicode>—</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.70254"> + <Unicode>—</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w829" language="German" readingDirection="left-to-right"> + <Coords points="403,971 429,971 429,980 445,980 445,1000 429,1000 429,1001 403,1001"/> + <Glyph id="c831"> + <Coords points="403,971 429,971 429,1001 403,1001"/> + <TextEquiv conf="0.75595"> + <Unicode>E</Unicode></TextEquiv></Glyph> + <Glyph id="c833"> + <Coords points="433,980 445,980 445,1000 433,1000"/> + <TextEquiv conf="0.75214"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75214"> + <Unicode>Er</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w835" language="German" readingDirection="left-to-right"> + <Coords points="463,973 470,973 470,978 538,978 538,981 552,981 552,1000 525,1000 525,1006 511,1006 511,1001 492,1001 492,1000 463,1000"/> + <Glyph id="c837"> + <Coords points="463,973 470,973 470,1000 463,1000"/> + <TextEquiv conf="0.78663"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c839"> + <Coords points="473,980 489,980 489,1000 473,1000"/> + <TextEquiv conf="0.73961"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c841"> + <Coords points="492,981 508,981 508,1001 492,1001"/> + <TextEquiv conf="0.76240"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c843"> + <Coords points="511,982 525,982 525,1006 511,1006"/> + <TextEquiv conf="0.81754"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c845"> + <Coords points="530,978 538,978 538,1000 530,1000"/> + <TextEquiv conf="0.69569"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c847"> + <Coords points="541,981 552,981 552,1000 541,1000"/> + <TextEquiv conf="0.85047"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69569"> + <Unicode>langte</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w849" language="German" readingDirection="left-to-right"> + <Coords points="570,978 583,978 583,981 597,981 597,982 616,982 616,1002 601,1002 601,1001 570,1001"/> + <Glyph id="c851"> + <Coords points="570,978 583,978 583,1001 570,1001"/> + <TextEquiv conf="0.76386"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c853"> + <Coords points="586,981 597,981 597,1001 586,1001"/> + <TextEquiv conf="0.75878"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c855"> + <Coords points="601,982 616,982 616,1002 601,1002"/> + <TextEquiv conf="0.90114"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75878"> + <Unicode>den</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w857" language="German" readingDirection="left-to-right"> + <Coords points="636,974 655,974 655,977 720,977 720,1004 655,1004 655,1006 636,1006"/> + <Glyph id="c859"> + <Coords points="636,974 655,974 655,1006 636,1006"/> + <TextEquiv conf="0.81256"> + <Unicode>Z</Unicode></TextEquiv></Glyph> + <Glyph id="c861"> + <Coords points="659,983 668,983 668,1002 659,1002"/> + <TextEquiv conf="0.76173"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c863"> + <Coords points="673,981 682,981 682,1003 673,1003"/> + <TextEquiv conf="0.79860"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c865"> + <Coords points="686,981 694,981 694,1003 686,1003"/> + <TextEquiv conf="0.75493"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c867"> + <Coords points="698,984 708,984 708,1003 698,1003"/> + <TextEquiv conf="0.72446"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c869"> + <Coords points="712,977 720,977 720,1004 712,1004"/> + <TextEquiv conf="0.75684"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72446"> + <Unicode>Zettel</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w871" language="German" readingDirection="left-to-right"> + <Coords points="774,981 788,981 788,1006 756,1006 756,1005 736,1005 736,985 774,985"/> + <Glyph id="c873"> + <Coords points="736,985 751,985 751,1005 736,1005"/> + <TextEquiv conf="0.81969"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c875"> + <Coords points="756,985 771,985 771,1006 756,1006"/> + <TextEquiv conf="0.87030"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c877"> + <Coords points="774,981 788,981 788,1006 774,1006"/> + <TextEquiv conf="0.77499"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.77499"> + <Unicode>aus</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w879" language="German" readingDirection="left-to-right"> + <Coords points="810,980 824,980 824,986 870,986 870,1006 810,1006"/> + <Glyph id="c881"> + <Coords points="810,980 824,980 824,1006 810,1006"/> + <TextEquiv conf="0.85915"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c883"> + <Coords points="828,986 838,986 838,1006 828,1006"/> + <TextEquiv conf="0.70945"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c885"> + <Coords points="842,986 870,986 870,1006 842,1006"/> + <TextEquiv conf="0.89154"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.70945"> + <Unicode>dem</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>wieder ein. — Er langte den Zettel aus dem</Unicode></TextEquiv></TextLine> + <TextLine id="l23"> + <Coords points="251,1019 276,1019 276,1021 324,1021 324,1024 521,1024 521,1021 534,1021 534,1022 617,1022 617,1024 727,1024 727,1030 853,1030 853,1028 868,1028 868,1062 782,1062 782,1060 705,1060 705,1057 521,1057 521,1056 324,1056 324,1060 308,1060 308,1054 251,1054 251,1051 130,1051 130,1021 251,1021"/> + <Word id="w893" language="German" readingDirection="left-to-right"> + <Coords points="251,1019 276,1019 276,1026 291,1026 291,1047 276,1047 276,1054 251,1054 251,1051 130,1051 130,1021 251,1021"/> + <Glyph id="c895"> + <Coords points="130,1021 157,1021 157,1051 130,1051"/> + <TextEquiv conf="0.73639"> + <Unicode>A</Unicode></TextEquiv></Glyph> + <Glyph id="c897"> + <Coords points="161,1028 171,1028 171,1050 161,1050"/> + <TextEquiv conf="0.83724"> + <Unicode>c</Unicode></TextEquiv></Glyph> + <Glyph id="c899"> + <Coords points="174,1028 184,1028 184,1049 174,1049"/> + <TextEquiv conf="0.82264"> + <Unicode>c</Unicode></TextEquiv></Glyph> + <Glyph id="c901"> + <Coords points="187,1021 194,1021 194,1048 187,1048"/> + <TextEquiv conf="0.84643"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c905"> + <Coords points="251,1019 276,1019 276,1054 251,1054"/> + <TextEquiv conf="0.84438"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c907"> + <Coords points="281,1026 291,1026 291,1047 281,1047"/> + <TextEquiv conf="0.79417"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1986"> + <Coords points="197,1024 209,1024 209,1048 197,1048"/> + <TextEquiv> + <Unicode>s</Unicode></TextEquiv></Glyph> + <Glyph id="c1988"> + <Coords points="214,1021 226,1021 226,1047 214,1047"/> + <TextEquiv> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c1989"> + <Coords points="231,1027 246,1027 246,1047 231,1047"/> + <TextEquiv> + <Unicode>u</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.73639"> + <Unicode>Accisbue</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w909" language="German" readingDirection="left-to-right"> + <Coords points="308,1021 324,1021 324,1024 409,1024 409,1042 425,1042 425,1056 324,1056 324,1060 308,1060"/> + <Glyph id="c911"> + <Coords points="308,1021 324,1021 324,1060 308,1060"/> + <TextEquiv conf="0.75512"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c913"> + <Coords points="328,1030 338,1030 338,1048 328,1048"/> + <TextEquiv conf="0.70790"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c915"> + <Coords points="341,1028 352,1028 352,1049 341,1049"/> + <TextEquiv conf="0.76785"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c917"> + <Coords points="356,1029 371,1029 371,1049 356,1049"/> + <TextEquiv conf="0.79624"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c919"> + <Coords points="376,1029 391,1029 391,1048 376,1048"/> + <TextEquiv conf="0.67382"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c921"> + <Coords points="395,1024 409,1024 409,1049 395,1049"/> + <TextEquiv conf="0.65710"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <Glyph id="c923"> + <Coords points="417,1042 425,1042 425,1056 417,1056"/> + <TextEquiv conf="0.81870"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.65710"> + <Unicode>heraus,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w925" language="German" readingDirection="left-to-right"> + <Coords points="490,1024 503,1024 503,1051 490,1051 490,1049 469,1049 469,1048 449,1048 449,1028 469,1028 469,1026 490,1026"/> + <Glyph id="c927"> + <Coords points="449,1028 465,1028 465,1048 449,1048"/> + <TextEquiv conf="0.80640"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c929"> + <Coords points="469,1026 485,1026 485,1049 469,1049"/> + <TextEquiv conf="0.80131"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c931"> + <Coords points="490,1024 503,1024 503,1051 490,1051"/> + <TextEquiv conf="0.81827"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.80131"> + <Unicode>und</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w933" language="German" readingDirection="left-to-right"> + <Coords points="521,1021 534,1021 534,1027 576,1027 576,1029 590,1029 590,1050 564,1050 564,1057 521,1057"/> + <Glyph id="c935"> + <Coords points="521,1021 534,1021 534,1057 521,1057"/> + <TextEquiv conf="0.80597"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c937"> + <Coords points="531,1029 546,1029 546,1051 531,1051"/> + <TextEquiv conf="0.71182"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c939"> + <Coords points="549,1030 564,1030 564,1057 549,1057"/> + <TextEquiv conf="0.84189"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c941"> + <Coords points="567,1027 576,1027 576,1050 567,1050"/> + <TextEquiv conf="0.86008"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c943"> + <Coords points="579,1029 590,1029 590,1050 579,1050"/> + <TextEquiv conf="0.77111"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.71182"> + <Unicode>ſagte</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w28" language="German" readingDirection="left-to-right"> + <Coords points="607,1022 617,1022 617,1024 638,1024 638,1031 657,1031 657,1032 687,1032 687,1052 617,1052 617,1057 607,1057"/> + <Glyph id="c945"> + <Coords points="607,1022 617,1022 617,1057 607,1057"/> + <TextEquiv conf="0.81559"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c947"> + <Coords points="617,1030 628,1030 628,1050 617,1050"/> + <TextEquiv conf="0.88005"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c949"> + <Coords points="633,1024 638,1024 638,1050 633,1050"/> + <TextEquiv conf="0.74814"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c951"> + <Coords points="642,1031 657,1031 657,1051 642,1051"/> + <TextEquiv conf="0.72837"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c953"> + <Coords points="663,1032 672,1032 672,1051 663,1051"/> + <TextEquiv conf="0.79147"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c955"> + <Coords points="676,1032 687,1032 687,1052 676,1052"/> + <TextEquiv conf="0.81664"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72837"> + <Unicode>ſeiner</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w957" language="German" readingDirection="left-to-right"> + <Coords points="705,1024 727,1024 727,1034 780,1034 780,1048 790,1048 790,1062 782,1062 782,1060 705,1060"/> + <Glyph id="c959"> + <Coords points="705,1024 727,1024 727,1060 705,1060"/> + <TextEquiv conf="0.79451"> + <Unicode>F</Unicode></TextEquiv></Glyph> + <Glyph id="c961"> + <Coords points="730,1034 741,1034 741,1055 730,1055"/> + <TextEquiv conf="0.73184"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c963"> + <Coords points="745,1034 760,1034 760,1055 745,1055"/> + <TextEquiv conf="0.69758"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c965"> + <Coords points="765,1034 780,1034 780,1056 765,1056"/> + <TextEquiv conf="0.74120"> + <Unicode>u</Unicode></TextEquiv></Glyph> + <Glyph id="c967"> + <Coords points="782,1048 790,1048 790,1062 782,1062"/> + <TextEquiv conf="0.86141"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.69758"> + <Unicode>Frau,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w969" language="German" readingDirection="left-to-right"> + <Coords points="853,1028 868,1028 868,1062 853,1062 853,1056 817,1056 817,1030 853,1030"/> + <Glyph id="c971"> + <Coords points="817,1030 831,1030 831,1056 817,1056"/> + <TextEquiv conf="0.80622"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c973"> + <Coords points="835,1035 850,1035 850,1056 835,1056"/> + <TextEquiv conf="0.73401"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c975"> + <Coords points="853,1028 868,1028 868,1062 853,1062"/> + <TextEquiv conf="0.79815"> + <Unicode>ß</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.73401"> + <Unicode>daß</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>Accisbue heraus, und ſagte ſeiner Frau, daß</Unicode></TextEquiv></TextLine> + <TextLine id="l24"> + <Coords points="443,1068 457,1068 457,1071 590,1071 590,1072 660,1072 660,1073 705,1073 705,1076 803,1076 803,1077 830,1077 830,1082 844,1082 844,1084 860,1084 860,1098 868,1098 868,1106 830,1106 830,1110 529,1110 529,1106 494,1106 494,1101 461,1101 461,1100 323,1100 323,1102 307,1102 307,1101 151,1101 151,1108 133,1108 133,1072 151,1072 151,1073 196,1073 196,1074 328,1074 328,1073 443,1073"/> + <Word id="w977" language="German" readingDirection="left-to-right"> + <Coords points="133,1072 151,1072 151,1078 165,1078 165,1099 151,1099 151,1108 133,1108"/> + <Glyph id="c979"> + <Coords points="133,1072 151,1072 151,1108 133,1108"/> + <TextEquiv conf="0.84813"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c981"> + <Coords points="155,1078 165,1078 165,1099 155,1099"/> + <TextEquiv conf="0.75703"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75703"> + <Unicode>e</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w5" language="German" readingDirection="left-to-right"> + <Coords points="184,1073 196,1073 196,1074 232,1074 232,1094 249,1094 249,1101 245,1101 245,1100 184,1100"/> + <Glyph id="c983"> + <Coords points="184,1073 196,1073 196,1100 184,1100"/> + <TextEquiv conf="0.70759"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c985"> + <Coords points="200,1079 215,1079 215,1100 200,1100"/> + <TextEquiv conf="0.74401"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c987"> + <Coords points="219,1074 232,1074 232,1100 219,1100"/> + <TextEquiv conf="0.74195"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <Glyph id="c989"> + <Coords points="245,1094 249,1094 249,1101 245,1101"/> + <TextEquiv conf="0.88051"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.70759"> + <Unicode>das,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w991" language="German" readingDirection="left-to-right"> + <Coords points="328,1073 340,1073 340,1098 323,1098 323,1102 307,1102 307,1101 279,1101 279,1078 328,1078"/> + <Glyph id="c993"> + <Coords points="279,1078 303,1078 303,1101 279,1101"/> + <TextEquiv conf="0.81205"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c995"> + <Coords points="307,1080 323,1080 323,1102 307,1102"/> + <TextEquiv conf="0.78334"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c997"> + <Coords points="328,1073 340,1073 340,1098 328,1098"/> + <TextEquiv conf="0.71925"> + <Unicode>s</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.71925"> + <Unicode>was</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w999" language="German" readingDirection="left-to-right"> + <Coords points="366,1073 378,1073 378,1079 399,1079 399,1100 366,1100"/> + <Glyph id="c1001"> + <Coords points="366,1073 378,1073 378,1100 366,1100"/> + <TextEquiv conf="0.76124"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1003"> + <Coords points="382,1079 399,1079 399,1100 382,1100"/> + <TextEquiv conf="0.75931"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.75931"> + <Unicode>da</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1005" language="German" readingDirection="left-to-right"> + <Coords points="443,1068 457,1068 457,1079 488,1079 488,1093 501,1093 501,1106 494,1106 494,1101 461,1101 461,1100 415,1100 415,1079 443,1079"/> + <Glyph id="c1007"> + <Coords points="415,1079 439,1079 439,1100 415,1100"/> + <TextEquiv conf="0.76025"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c1009"> + <Coords points="443,1068 457,1068 457,1100 443,1100"/> + <TextEquiv conf="0.74663"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1011"> + <Coords points="461,1080 472,1080 472,1101 461,1101"/> + <TextEquiv conf="0.73019"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1013"> + <Coords points="476,1079 488,1079 488,1101 476,1101"/> + <TextEquiv conf="0.86440"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1015"> + <Coords points="494,1093 501,1093 501,1106 494,1106"/> + <TextEquiv conf="0.90284"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.73019"> + <Unicode>wre,</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1017" language="German" readingDirection="left-to-right"> + <Coords points="529,1071 590,1071 590,1072 660,1072 660,1073 705,1073 705,1082 715,1082 715,1083 736,1083 736,1102 705,1102 705,1110 529,1110"/> + <Glyph id="c1019"> + <Coords points="529,1071 544,1071 544,1110 529,1110"/> + <TextEquiv conf="0.62055"> + <Unicode>h</Unicode></TextEquiv></Glyph> + <Glyph id="c1021"> + <Coords points="549,1080 559,1080 559,1100 549,1100"/> + <TextEquiv conf="0.73905"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1023"> + <Coords points="562,1080 573,1080 573,1101 562,1101"/> + <TextEquiv conf="0.76639"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1025"> + <Coords points="577,1071 590,1071 590,1101 577,1101"/> + <TextEquiv conf="0.83958"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c1027"> + <Coords points="595,1080 604,1080 604,1102 595,1102"/> + <TextEquiv conf="0.85026"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1029"> + <Coords points="609,1081 623,1081 623,1110 609,1110"/> + <TextEquiv conf="0.72177"> + <Unicode>y</Unicode></TextEquiv></Glyph> + <Glyph id="c1031"> + <Coords points="627,1073 637,1073 637,1107 627,1107"/> + <TextEquiv conf="0.74198"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c1033"> + <Coords points="637,1072 660,1072 660,1106 637,1106"/> + <TextEquiv conf="0.78442"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1035"> + <Coords points="665,1081 680,1081 680,1102 665,1102"/> + <TextEquiv conf="0.74563"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1037"> + <Coords points="684,1073 705,1073 705,1110 684,1110"/> + <TextEquiv conf="0.83982"> + <Unicode>ff</Unicode></TextEquiv></Glyph> + <Glyph id="c1990"> + <Coords points="706,1082 715,1082 715,1101 706,1101"/> + <TextEquiv> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1991"> + <Coords points="720,1083 736,1083 736,1102 720,1102"/> + <TextEquiv> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.62055"> + <Unicode>herbeyſaffen</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1041" language="German" readingDirection="left-to-right"> + <Coords points="789,1076 803,1076 803,1077 830,1077 830,1082 844,1082 844,1084 860,1084 860,1098 868,1098 868,1106 830,1106 830,1110 806,1110 806,1104 759,1104 759,1083 789,1083"/> + <Glyph id="c1043"> + <Coords points="759,1083 785,1083 785,1104 759,1104"/> + <TextEquiv conf="0.80051"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c1045"> + <Coords points="789,1076 803,1076 803,1104 789,1104"/> + <TextEquiv conf="0.76095"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1047"> + <Coords points="806,1077 830,1077 830,1110 806,1110"/> + <TextEquiv conf="0.79382"> + <Unicode></Unicode></TextEquiv></Glyph> + <Glyph id="c1049"> + <Coords points="835,1082 844,1082 844,1105 835,1105"/> + <TextEquiv conf="0.71159"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c1051"> + <Coords points="847,1084 860,1084 860,1105 847,1105"/> + <TextEquiv conf="0.82929"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1053"> + <Coords points="861,1098 868,1098 868,1106 861,1106"/> + <TextEquiv conf="0.90931"> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.71159"> + <Unicode>mte.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>e das, was da wre, herbeyſaffen mte.</Unicode></TextEquiv></TextLine> + <TextLine id="l26"> + <Coords points="215,1113 235,1113 235,1125 357,1125 357,1118 364,1118 364,1119 471,1119 471,1118 540,1118 540,1119 764,1119 764,1122 853,1122 853,1128 869,1128 869,1147 853,1147 853,1149 842,1149 842,1150 797,1150 797,1154 790,1154 790,1148 756,1148 756,1147 590,1147 590,1154 575,1154 575,1149 471,1149 471,1148 339,1148 339,1154 325,1154 325,1153 132,1153 132,1116 215,1116"/> + <Word id="w1059" language="German" readingDirection="left-to-right"> + <Coords points="215,1113 235,1113 235,1153 132,1153 132,1116 215,1116"/> + <Glyph id="c1061"> + <Coords points="132,1116 159,1116 159,1153 132,1153"/> + <TextEquiv conf="0.80949"> + <Unicode>J</Unicode></TextEquiv></Glyph> + <Glyph id="c1063"> + <Coords points="163,1126 178,1126 178,1146 163,1146"/> + <TextEquiv conf="0.82919"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1065"> + <Coords points="182,1119 195,1119 195,1147 182,1147"/> + <TextEquiv conf="0.81147"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1067"> + <Coords points="200,1124 211,1124 211,1146 200,1146"/> + <TextEquiv conf="0.87336"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1069"> + <Coords points="215,1113 235,1113 235,1153 215,1153"/> + <TextEquiv conf="0.72395"> + <Unicode>ß</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72395"> + <Unicode>Jndeß</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1071" language="German" readingDirection="left-to-right"> + <Coords points="357,1118 364,1118 364,1124 376,1124 376,1125 411,1125 411,1146 364,1146 364,1147 339,1147 339,1154 325,1154 325,1147 284,1147 284,1145 254,1145 254,1125 357,1125"/> + <Glyph id="c1073"> + <Coords points="254,1125 280,1125 280,1145 254,1145"/> + <TextEquiv conf="0.87717"> + <Unicode>m</Unicode></TextEquiv></Glyph> + <Glyph id="c1075"> + <Coords points="284,1126 299,1126 299,1147 284,1147"/> + <TextEquiv conf="0.83118"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1077"> + <Coords points="304,1126 320,1126 320,1146 304,1146"/> + <TextEquiv conf="0.82834"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1079"> + <Coords points="325,1125 339,1125 339,1154 325,1154"/> + <TextEquiv conf="0.85393"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c1081"> + <Coords points="343,1125 353,1125 353,1146 343,1146"/> + <TextEquiv conf="0.82745"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1083"> + <Coords points="357,1118 364,1118 364,1147 357,1147"/> + <TextEquiv conf="0.83320"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1085"> + <Coords points="367,1124 376,1124 376,1146 367,1146"/> + <TextEquiv conf="0.80938"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c1087"> + <Coords points="379,1125 389,1125 389,1146 379,1146"/> + <TextEquiv conf="0.82412"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1089"> + <Coords points="394,1125 411,1125 411,1146 394,1146"/> + <TextEquiv conf="0.84363"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.80938"> + <Unicode>mangelten</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1133" language="German" readingDirection="left-to-right"> + <Coords points="846,1122 853,1122 853,1128 869,1128 869,1147 853,1147 853,1149 842,1149 842,1150 828,1150 828,1123 846,1123"/> + <Glyph id="c1135"> + <Coords points="828,1123 842,1123 842,1150 828,1150"/> + <TextEquiv conf="0.87171"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1137"> + <Coords points="846,1122 853,1122 853,1149 846,1149"/> + <TextEquiv conf="0.83263"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1139"> + <Coords points="857,1128 869,1128 869,1147 857,1147"/> + <TextEquiv conf="0.86775"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.83263"> + <Unicode>die</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1960" language="German" readingDirection="left-to-right"> + <Coords points="471,1118 496,1118 496,1149 471,1149 471,1148 434,1148 434,1119 471,1119"/> + <Glyph id="c1093"> + <Coords points="434,1119 448,1119 448,1148 434,1148"/> + <TextEquiv conf="0.78914"> + <Unicode>d</Unicode></TextEquiv></Glyph> + <Glyph id="c1095"> + <Coords points="453,1125 467,1125 467,1148 453,1148"/> + <TextEquiv conf="0.88670"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1097"> + <Coords points="471,1118 496,1118 496,1149 471,1149"/> + <TextEquiv conf="0.77859"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>do</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1962" language="German" readingDirection="left-to-right"> + <Coords points="534,1118 540,1118 540,1119 573,1119 573,1126 605,1126 605,1147 590,1147 590,1154 575,1154 575,1148 544,1148 544,1147 518,1147 518,1125 534,1125"/> + <Glyph id="c1101"> + <Coords points="518,1125 529,1125 529,1147 518,1147"/> + <TextEquiv conf="0.86079"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1103"> + <Coords points="534,1118 540,1118 540,1147 534,1147"/> + <TextEquiv conf="0.83232"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1105"> + <Coords points="544,1126 561,1126 561,1148 544,1148"/> + <TextEquiv conf="0.81793"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1107"> + <Coords points="565,1119 573,1119 573,1147 565,1147"/> + <TextEquiv conf="0.78300"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1109"> + <Coords points="575,1127 590,1127 590,1154 575,1154"/> + <TextEquiv conf="0.77761"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c1111"> + <Coords points="594,1126 605,1126 605,1147 594,1147"/> + <TextEquiv conf="0.86677"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>einige</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1963" language="Latin" readingDirection="left-to-right"> + <Coords points="630,1119 764,1119 764,1130 782,1130 782,1141 797,1141 797,1154 790,1154 790,1148 756,1148 756,1147 658,1147 658,1146 630,1146"/> + <Glyph id="c1115"> + <Coords points="630,1119 656,1119 656,1146 630,1146"/> + <TextEquiv conf="0.82036"> + <Unicode>G</Unicode></TextEquiv></Glyph> + <Glyph id="c1117"> + <Coords points="658,1129 671,1129 671,1147 658,1147"/> + <TextEquiv conf="0.77833"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1119"> + <Coords points="675,1129 693,1129 693,1146 675,1146"/> + <TextEquiv conf="0.85051"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1121"> + <Coords points="697,1129 710,1129 710,1147 697,1147"/> + <TextEquiv conf="0.82972"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1125"> + <Coords points="746,1120 754,1120 754,1147 746,1147"/> + <TextEquiv conf="0.81277"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1127"> + <Coords points="756,1119 764,1119 764,1148 756,1148"/> + <TextEquiv conf="0.83589"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1129"> + <Coords points="767,1130 782,1130 782,1148 767,1148"/> + <TextEquiv conf="0.78757"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1131"> + <Coords points="790,1141 797,1141 797,1154 790,1154"/> + <TextEquiv conf="0.90190"> + <Unicode>,</Unicode></TextEquiv></Glyph> + <Glyph id="c73"> + <Coords points="723,1130 723,1131 724,1131 724,1133 721,1133 721,1146 715,1146 715,1145 714,1145 714,1131 716,1131 716,1130"/> + <TextEquiv> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c75"> + <Coords points="737,1130 737,1131 738,1131 738,1132 739,1132 739,1144 740,1144 740,1145 741,1145 741,1146 729,1146 729,1135 728,1135 728,1134 729,1134 729,1133 730,1133 730,1132 731,1132 731,1131 733,1131 733,1130"/> + <TextEquiv> + <Unicode>a</Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>Generalia,</Unicode></TextEquiv> + <TextStyle fontFamily="Antiqua"/></Word> + <TextEquiv> + <Unicode>Jndeß mangelten do einige Generalia, die</Unicode></TextEquiv></TextLine> + <TextLine id="l27"> + <Coords points="819,1163 830,1163 830,1165 847,1165 847,1166 874,1166 874,1201 810,1201 810,1202 661,1202 661,1201 635,1201 635,1194 518,1194 518,1201 485,1201 485,1185 347,1185 347,1187 356,1187 356,1193 329,1193 329,1194 284,1194 284,1198 270,1198 270,1201 255,1201 255,1199 163,1199 163,1193 153,1193 153,1192 132,1192 132,1172 153,1172 153,1166 163,1166 163,1165 172,1165 172,1166 289,1166 289,1167 315,1167 315,1172 347,1172 347,1177 485,1177 485,1164 604,1164 604,1167 799,1167 799,1166 819,1166"/> + <Word id="w1141" language="German" readingDirection="left-to-right"> + <Coords points="163,1165 172,1165 172,1173 185,1173 185,1193 172,1193 172,1199 163,1199 163,1193 153,1193 153,1192 132,1192 132,1172 153,1172 153,1166 163,1166"/> + <Glyph id="c1143"> + <Coords points="132,1172 149,1172 149,1192 132,1192"/> + <TextEquiv conf="0.84728"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1145"> + <Coords points="153,1166 160,1166 160,1193 153,1193"/> + <TextEquiv conf="0.72710"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1147"> + <Coords points="163,1165 172,1165 172,1199 163,1199"/> + <TextEquiv conf="0.70061"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c1149"> + <Coords points="173,1173 185,1173 185,1193 173,1193"/> + <TextEquiv conf="0.90074"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.70061"> + <Unicode>alſo</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1151" language="German" readingDirection="left-to-right"> + <Coords points="273,1166 289,1166 289,1167 315,1167 315,1172 347,1172 347,1187 356,1187 356,1193 329,1193 329,1194 284,1194 284,1198 270,1198 270,1201 255,1201 255,1193 214,1193 214,1171 273,1171"/> + <Glyph id="c1153"> + <Coords points="214,1171 238,1171 238,1193 214,1193"/> + <TextEquiv conf="0.83780"> + <Unicode>w</Unicode></TextEquiv></Glyph> + <Glyph id="c1155"> + <Coords points="242,1172 253,1172 253,1193 242,1193"/> + <TextEquiv conf="0.81500"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1157"> + <Coords points="255,1174 270,1174 270,1201 255,1201"/> + <TextEquiv conf="0.80803"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c1159"> + <Coords points="273,1166 289,1166 289,1193 284,1193 284,1198 273,1198"/> + <TextEquiv conf="0.78080"> + <Unicode>fi</Unicode></TextEquiv></Glyph> + <Glyph id="c1163"> + <Coords points="294,1173 304,1173 304,1194 294,1194"/> + <TextEquiv conf="0.75474"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1165"> + <Coords points="308,1167 315,1167 315,1194 308,1194"/> + <TextEquiv conf="0.90229"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1167"> + <Coords points="318,1174 329,1174 329,1194 318,1194"/> + <TextEquiv conf="0.85984"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1992"> + <Coords points="332,1172 347,1172 347,1192 332,1192"/> + <TextEquiv> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1993"> + <Coords points="352,1187 356,1187 356,1193 352,1193"/> + <TextEquiv> + <Unicode>.</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.60821"> + <Unicode>wegfielen.</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w1171" language="German" readingDirection="left-to-right"> + <Coords points="384,1177 435,1177 435,1185 384,1185"/> + <Glyph id="c1175"> + <Coords points="384,1177 435,1177 435,1185 384,1185"/> + <TextEquiv conf="0.51894"> + <Unicode>—</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.51894"> + <Unicode>—</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w21" language="German" readingDirection="left-to-right"> + <Coords points="485,1164 604,1164 604,1167 675,1167 675,1202 661,1202 661,1201 635,1201 635,1194 518,1194 518,1201 485,1201"/> + <Glyph id="c1179"> + <Coords points="485,1164 518,1164 518,1201 485,1201"/> + <TextEquiv conf="0.74039"> + <Unicode>H</Unicode></TextEquiv></Glyph> + <Glyph id="c1181"> + <Coords points="523,1173 539,1173 539,1194 523,1194"/> + <TextEquiv conf="0.89065"> + <Unicode>a</Unicode></TextEquiv></Glyph> + <Glyph id="c1183"> + <Coords points="551,1172 563,1172 563,1193 551,1193"/> + <TextEquiv conf="0.80319"> + <Unicode>r</Unicode></TextEquiv></Glyph> + <Glyph id="c1185"> + <Coords points="573,1170 582,1170 582,1193 573,1193"/> + <TextEquiv conf="0.84734"> + <Unicode>t</Unicode></TextEquiv></Glyph> + <Glyph id="c1187"> + <Coords points="592,1164 604,1164 604,1193 592,1193"/> + <TextEquiv conf="0.72920"> + <Unicode>k</Unicode></TextEquiv></Glyph> + <Glyph id="c1189"> + <Coords points="613,1173 626,1173 626,1194 613,1194"/> + <TextEquiv conf="0.90838"> + <Unicode>o</Unicode></TextEquiv></Glyph> + <Glyph id="c1191"> + <Coords points="635,1173 652,1173 652,1201 635,1201"/> + <TextEquiv conf="0.85035"> + <Unicode>p</Unicode></TextEquiv></Glyph> + <Glyph id="c1193"> + <Coords points="661,1167 675,1167 675,1202 661,1202"/> + <TextEquiv conf="0.83784"> + <Unicode>f</Unicode></TextEquiv></Glyph> + <TextEquiv conf="0.72920"> + <Unicode>Hartkopf</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w78" language="German" readingDirection="left-to-right"> + <Coords points="717,1167 725,1167 725,1174 739,1174 739,1175 777,1175 777,1201 714,1201 714,1202 699,1202 699,1174 717,1174"/> + <Glyph id="c1197"> + <Coords points="699,1174 714,1174 714,1202 699,1202"/> + <TextEquiv conf="0.84219"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <Glyph id="c1199"> + <Coords points="717,1167 725,1167 725,1194 717,1194"/> + <TextEquiv conf="0.78589"> + <Unicode>i</Unicode></TextEquiv></Glyph> + <Glyph id="c1201"> + <Coords points="728,1174 739,1174 739,1194 728,1194"/> + <TextEquiv conf="0.90891"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1203"> + <Coords points="743,1175 758,1175 758,1194 743,1194"/> + <TextEquiv conf="0.83234"> + <Unicode>n</Unicode></TextEquiv></Glyph> + <Glyph id="c1205"> + <Coords points="762,1175 777,1175 777,1201 762,1201"/> + <TextEquiv conf="0.82998"> + <Unicode>g</Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>gieng</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <Word id="w79" language="German" readingDirection="left-to-right"> + <Coords points="819,1163 830,1163 830,1165 847,1165 847,1166 874,1166 874,1201 810,1201 810,1202 799,1202 799,1166 819,1166"/> + <Glyph id="c1209"> + <Coords points="799,1166 810,1166 810,1202 799,1202"/> + <TextEquiv conf="0.88437"> + <Unicode>ſ</Unicode></TextEquiv></Glyph> + <Glyph id="c1211"> + <Coords points="809,1173 819,1173 819,1194 809,1194"/> + <TextEquiv conf="0.79098"> + <Unicode>e</Unicode></TextEquiv></Glyph> + <Glyph id="c1213"> + <Coords points="819,1163 830,1163 830,1195 819,1195"/> + <TextEquiv conf="0.73612"> + <Unicode>l</Unicode></TextEquiv></Glyph> + <Glyph id="c1215"> + <Coords points="834,1165 847,1165 847,1194 834,1194"/> + <TextEquiv conf="0.82563"> + <Unicode>b</Unicode></TextEquiv></Glyph> + <Glyph id="c1217"> + <Coords points="851,1166 874,1166 874,1201 851,1201"/> + <TextEquiv conf="0.74729"> + <Unicode></Unicode></TextEquiv></Glyph> + <TextEquiv> + <Unicode>ſelb</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur"/></Word> + <TextEquiv> + <Unicode>alſo wegfielen. — Hartkopf gieng ſelb</Unicode></TextEquiv></TextLine> + <TextEquiv> + <Unicode>Hartkopf mußte  er bennen, und +endli na langem Nadenken fiel es ihm er +wieder ein. — Er langte den Zettel aus dem +Accisbue heraus, und ſagte ſeiner Frau, daß +e das, was da wre, herbeyſaffen mte. +Jndeß mangelten do einige Generalia, die +alſo wegfielen. — Hartkopf gieng ſelb +mit und berbrate es. —</Unicode></TextEquiv> + <TextStyle fontFamily="Fraktur; Antiqua"/></TextRegion> + <GraphicRegion id="r5" type="decoration"> + <Coords points="382,166 636,166 636,203 382,203"/></GraphicRegion> + </Page></PcGts> diff --git a/dinglehopper/tests/test_integ_cli_dir.py b/dinglehopper/tests/test_integ_cli_dir.py new file mode 100644 index 0000000..435b452 --- /dev/null +++ b/dinglehopper/tests/test_integ_cli_dir.py @@ -0,0 +1,41 @@ +import os +import pytest +from ocrd_utils import initLogging +from dinglehopper.cli import process_dir + +data_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)), "data") + + +@pytest.mark.integration +def test_cli_directory(tmp_path): + """ + Test that the cli/process_dir() processes a directory of files and + yields JSON and HTML reports. + """ + + initLogging() + process_dir(os.path.join(data_dir, "directory-test", "gt"), + os.path.join(data_dir, "directory-test", "ocr"), + "report", str(tmp_path / "reports"), False, True, + "line") + + assert os.path.exists(tmp_path / "reports/1.xml-report.json") + assert os.path.exists(tmp_path / "reports/1.xml-report.html") + assert os.path.exists(tmp_path / "reports/2.xml-report.json") + assert os.path.exists(tmp_path / "reports/2.xml-report.html") + + +@pytest.mark.integration +def test_cli_fail_without_gt(tmp_path): + """ + Test that the cli/process_dir skips a file if there is no corresponding file + in the other directory. + """ + + initLogging() + process_dir(os.path.join(data_dir, "directory-test", "gt"), + os.path.join(data_dir, "directory-test", "ocr"), + "report", str(tmp_path / "reports"), False, True, + "line") + + assert len(os.listdir(tmp_path / "reports")) == 2 * 2 diff --git a/dinglehopper/tests/test_integ_differences.py b/dinglehopper/tests/test_integ_differences.py new file mode 100644 index 0000000..3590317 --- /dev/null +++ b/dinglehopper/tests/test_integ_differences.py @@ -0,0 +1,27 @@ +import json +import os +import pytest +from ocrd_utils import initLogging +from dinglehopper.cli import process + +data_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)), "data") + + +@pytest.mark.integration +def test_cli_differences(tmp_path): + """Test that the cli/process() yields a JSON report that includes + the differences found between the GT and OCR text""" + + initLogging() + process(os.path.join(data_dir, "test-gt.page2018.xml"), + os.path.join(data_dir, "test-fake-ocr.page2018.xml"), + "report", tmp_path, differences=True) + + assert os.path.exists(tmp_path / "report.json") + + with open(tmp_path / "report.json", "r") as jsonf: + j = json.load(jsonf) + + assert j["differences"] == {"character_level": {'n :: m': 1, 'ſ :: f': 1}, + "word_level": {'Augenblick :: Augemblick': 1, + 'Verſprochene :: Verfprochene': 1}} diff --git a/dinglehopper/tests/test_integ_summarize.py b/dinglehopper/tests/test_integ_summarize.py new file mode 100644 index 0000000..0908152 --- /dev/null +++ b/dinglehopper/tests/test_integ_summarize.py @@ -0,0 +1,101 @@ +import json +import os +import pytest +from .util import working_directory +from .. import cli_summarize + +expected_cer_avg = (0.05 + 0.10) / 2 +expected_wer_avg = (0.15 + 0.20) / 2 +expected_diff_c = {"a": 30, "b": 50} +expected_diff_w = {"c": 70, "d": 90} + + +@pytest.fixture +def create_summaries(tmp_path): + """Create two summary reports with mock data""" + reports_dirname = tmp_path / "reports" + reports_dirname.mkdir() + + report1 = {"cer": 0.05, "wer": 0.15, + "differences": { + "character_level": {"a": 10, "b": 20}, + "word_level": {"c": 30, "d": 40} + }} + report2 = {"cer": 0.10, "wer": 0.20, + "differences": { + "character_level": {"a": 20, "b": 30}, + "word_level": {"c": 40, "d": 50} + }} + + with open(os.path.join(reports_dirname, "report1.json"), "w") as f: + json.dump(report1, f) + with open(os.path.join(reports_dirname, "report2.json"), "w") as f: + json.dump(report2, f) + + return str(reports_dirname) + + +@pytest.mark.integration +def test_cli_summarize_json(tmp_path, create_summaries): + """Test that the cli/process() yields a summarized JSON report""" + with working_directory(tmp_path): + reports_dirname = create_summaries + cli_summarize.process(reports_dirname) + + with open(os.path.join(reports_dirname, "summary.json"), "r") as f: + summary_data = json.load(f) + + + assert summary_data["num_reports"] == 2 + assert summary_data["cer_avg"] == expected_cer_avg + assert summary_data["wer_avg"] == expected_wer_avg + assert summary_data["differences"]["character_level"] == expected_diff_c + assert summary_data["differences"]["word_level"] == expected_diff_w + + +@pytest.mark.integration +def test_cli_summarize_html(tmp_path, create_summaries): + """Test that the cli/process() yields an HTML report""" + with working_directory(tmp_path): + reports_dirname = create_summaries + cli_summarize.process(reports_dirname) + + html_file = os.path.join(reports_dirname, "summary.html") + assert os.path.isfile(html_file) + + with open(html_file, "r") as f: + contents = f.read() + + assert len(contents) > 0 + assert "Number of reports: 2" in contents + assert f"Average CER: {round(expected_cer_avg, 4)}" in contents + assert f"Average WER: {round(expected_wer_avg, 4)}" in contents + + +@pytest.mark.integration +def test_cli_summarize_html_skip_invalid(tmp_path, create_summaries): + """ + Test that the cli/process() does not include reports that are missing a WER value. + """ + with working_directory(tmp_path): + reports_dirname = create_summaries + + # This third report has no WER value and should not be included in the summary + report3 = {"cer": 0.10, + "differences": { + "character_level": {"a": 20, "b": 30}, + "word_level": {"c": 40, "d": 50} + }} + + with open(os.path.join(reports_dirname, "report3-missing-wer.json"), "w") as f: + json.dump(report3, f) + + cli_summarize.process(reports_dirname) + + html_file = os.path.join(reports_dirname, "summary.html") + assert os.path.isfile(html_file) + + with open(html_file, "r") as f: + contents = f.read() + + assert "Number of reports: 2" in contents # report3 is not included diff --git a/setup.py b/setup.py index d7a3776..476ec8f 100644 --- a/setup.py +++ b/setup.py @@ -27,6 +27,7 @@ setup( "dinglehopper=dinglehopper.cli:main", "dinglehopper-line-dirs=dinglehopper.cli_line_dirs:main", "dinglehopper-extract=dinglehopper.cli_extract:main", + "dinglehopper-summarize=dinglehopper.cli_summarize:main", "ocrd-dinglehopper=dinglehopper.ocrd_cli:ocrd_dinglehopper", ] }, From 2632cb09b8e69fb16b47edf391c889248e8d332d Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Tue, 18 Jul 2023 20:28:55 +0200 Subject: [PATCH 13/82] =?UTF-8?q?=F0=9F=9A=A7=20CircleCI:=20Run=20black?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .circleci/config.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index f023c83..dca436f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -18,6 +18,18 @@ jobs: - store_test_results: path: test-results + black: + parameters: + python-version: + type: string + docker: + - image: cimg/python:<< parameters.python-version >> + steps: + - checkout + - run: pip3 install --upgrade pip + - run: pip3 install black + - run: black . + workflows: all-tests: jobs: @@ -25,3 +37,6 @@ workflows: matrix: parameters: python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"] + black: + jobs: + - black From 55d534b981d0545141d06979c16183bfeea6f0dd Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Tue, 18 Jul 2023 20:37:47 +0200 Subject: [PATCH 14/82] =?UTF-8?q?=F0=9F=9A=A7=20CircleCI:=20Run=20black?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .circleci/config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index dca436f..3ae4514 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -40,3 +40,4 @@ workflows: black: jobs: - black + python-version: "3.11" From cb0134d2db722933ae2eb58a5a8e3aac25c92557 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Tue, 18 Jul 2023 20:40:17 +0200 Subject: [PATCH 15/82] =?UTF-8?q?=F0=9F=9A=A7=20CircleCI:=20Run=20black?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .circleci/config.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3ae4514..40ad1e5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -39,5 +39,6 @@ workflows: python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"] black: jobs: - - black - python-version: "3.11" + - black: + parameters: + python-version: "3.11" From fc81233a0e683b8bd7ebc2fac46d300514affeaf Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Tue, 18 Jul 2023 20:41:16 +0200 Subject: [PATCH 16/82] =?UTF-8?q?=F0=9F=9A=A7=20CircleCI:=20Run=20black?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .circleci/config.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 40ad1e5..d1a72a0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -40,5 +40,4 @@ workflows: black: jobs: - black: - parameters: - python-version: "3.11" + python-version: "3.11" From db7c051b22871d0f23d4dfc5704fc9cf73464dac Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Wed, 2 Aug 2023 20:55:47 +0200 Subject: [PATCH 17/82] =?UTF-8?q?=E2=9A=99=20Migrate=20to=20pyproject.toml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dinglehopper/ocrd-tool.json | 3 ++- pyproject.toml | 52 +++++++++++++++++++++++++++++++++++++ setup.py | 34 ------------------------ 3 files changed, 54 insertions(+), 35 deletions(-) create mode 100644 pyproject.toml delete mode 100644 setup.py diff --git a/dinglehopper/ocrd-tool.json b/dinglehopper/ocrd-tool.json index 1e2b9b0..ad3c737 100644 --- a/dinglehopper/ocrd-tool.json +++ b/dinglehopper/ocrd-tool.json @@ -1,4 +1,5 @@ { + "version": "0.9.0", "git_url": "https://github.com/qurator-spk/dinglehopper", "tools": { "ocrd-dinglehopper": { @@ -32,4 +33,4 @@ } } } -} +} \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..649a059 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,52 @@ +[build-system] +requires = ["setuptools>=61.0.0", "wheel", "setuptools-ocrd"] + +[project] +name = "dinglehopper" +authors = [ + {name = "Mike Gerber", email = "mike.gerber@sbb.spk-berlin.de"}, + {name = "The QURATOR SPK Team", email = "qurator@sbb.spk-berlin.de"}, +] +description = "The OCR evaluation tool" +readme = "README.md" +requires-python = ">=3.6" +keywords = ["qurator", "ocr", "evaluation", "ocr-d"] + +dynamic = ["version", "dependencies", "optional-dependencies"] + +# https://pypi.org/classifiers/ +classifiers = [ + "Development Status :: 5 - Production/Stable", + "Environment :: Console", + "Intended Audience :: Science/Research", + "Intended Audience :: Other Audience", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3 :: Only", + "Topic :: Scientific/Engineering :: Information Analysis", + "Topic :: Text Processing", +] + +[project.scripts] +dinglehopper = "dinglehopper.cli:main" +dinglehopper-line-dirs = "dinglehopper.cli_line_dirs:main" +dinglehopper-extract = "dinglehopper.cli_extract:main" +dinglehopper-summarize = "dinglehopper.cli_summarize:main" +ocrd-dinglehopper = "dinglehopper.ocrd_cli:ocrd_dinglehopper" + + +[project.urls] +Homepage = "https://github.com/qurator-spk/dinglehopper" +Repository = "https://github.com/qurator-spk/dinglehopper.git" + + +[tool.setuptools.dynamic] +dependencies = {file = ["requirements.txt"]} +optional-dependencies.dev = {file = ["requirements-dev.txt"]} + +[tool.setuptools.packages.find] +# This is not strictly necessary, just when junk lies around. +where = ["dinglehopper"] + +[tool.setuptools.package-data] +dinglehopper = ["*.json", "templates/*"] diff --git a/setup.py b/setup.py deleted file mode 100644 index 476ec8f..0000000 --- a/setup.py +++ /dev/null @@ -1,34 +0,0 @@ -from io import open -from setuptools import find_namespace_packages, find_packages, setup - -with open("requirements.txt") as fp: - install_requires = fp.read() - -with open("requirements-dev.txt") as fp: - tests_require = fp.read() - -setup( - name="dinglehopper", - author="Mike Gerber, The QURATOR SPK Team", - author_email="mike.gerber@sbb.spk-berlin.de, qurator@sbb.spk-berlin.de", - description="The OCR evaluation tool", - long_description=open("README.md", "r", encoding="utf-8").read(), - long_description_content_type="text/markdown", - keywords="qurator ocr", - license="Apache", - packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]), - install_requires=install_requires, - tests_require=tests_require, - package_data={ - "": ["*.json", "templates/*"], - }, - entry_points={ - "console_scripts": [ - "dinglehopper=dinglehopper.cli:main", - "dinglehopper-line-dirs=dinglehopper.cli_line_dirs:main", - "dinglehopper-extract=dinglehopper.cli_extract:main", - "dinglehopper-summarize=dinglehopper.cli_summarize:main", - "ocrd-dinglehopper=dinglehopper.ocrd_cli:ocrd_dinglehopper", - ] - }, -) From 325e5af5f5e16bd92f18608cea39d96db8f8b67e Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Thu, 3 Aug 2023 17:29:28 +0200 Subject: [PATCH 18/82] =?UTF-8?q?=F0=9F=90=9B=20Move=20source=20into=20src?= =?UTF-8?q?/=20to=20fix=20install?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Installing was broken since moving to pyproject.toml, which we didn't notice because of leftover files in build/. Fix this by using the convention of having the source files in src/ and adjusting pyproject.toml accordingly. Fixes gh-86. 🤞 --- ocrd-tool.json | 2 +- pyproject.toml | 3 +-- {dinglehopper => src/dinglehopper}/__init__.py | 0 {dinglehopper => src/dinglehopper}/align.py | 0 .../dinglehopper}/character_error_rate.py | 0 {dinglehopper => src/dinglehopper}/cli.py | 0 {dinglehopper => src/dinglehopper}/cli_extract.py | 0 {dinglehopper => src/dinglehopper}/cli_line_dirs.py | 0 {dinglehopper => src/dinglehopper}/cli_summarize.py | 0 {dinglehopper => src/dinglehopper}/config.py | 0 {dinglehopper => src/dinglehopper}/edit_distance.py | 0 .../dinglehopper}/extracted_text.py | 0 .../dinglehopper}/notebooks/Levenshtein.ipynb | 0 ...e normalization and Character segmentation.ipynb | 0 {dinglehopper => src/dinglehopper}/ocr_files.py | 0 {dinglehopper => src/dinglehopper}/ocrd-tool.json | 0 {dinglehopper => src/dinglehopper}/ocrd_cli.py | 0 .../dinglehopper}/templates/report.html.j2 | 0 .../dinglehopper}/templates/report.html.js | 0 .../dinglehopper}/templates/report.json.j2 | 0 .../dinglehopper}/templates/summary.html.j2 | 0 .../dinglehopper}/templates/summary.json.j2 | 0 .../dinglehopper}/tests/__init__.py | 0 .../dinglehopper}/tests/data/00000119.tif | Bin .../OCR-D-GT-PAGE/00000024.page.xml | 0 .../OCR-D-OCR-CALAMARI/OCR-D-OCR-CALAMARI_0001.xml | 0 .../OCR-D-OCR-TESS/OCR-D-OCR-TESS_0001.xml | 0 .../tests/data/actevedef_718448162/mets.xml | 0 .../00008228/00008228-00236534.gt4hist.xml | 0 .../data/bigger-texts/00008228/00008228.gt.xml | 0 .../data/brochrnx_73075507X/00000139.gt.page.xml | 0 .../00000139.ocrd-tess.ocr.page.xml | 0 .../tests/data/directory-test/gt/1.xml | 0 .../tests/data/directory-test/gt/2.xml | 0 .../tests/data/directory-test/ocr/1.xml | 0 .../tests/data/directory-test/ocr/2.xml | 0 .../tests/data/directory-test/ocr/3-has-no-gt.xml | 0 .../tests/data/levels-are-different.page.xml | 0 .../lorem-ipsum/lorem-ipsum-scan-bad.gt.page.xml | 0 .../lorem-ipsum-scan-bad.ocr.tesseract.alto.xml | 0 .../tests/data/lorem-ipsum/lorem-ipsum-scan-bad.pdf | Bin .../tests/data/lorem-ipsum/lorem-ipsum-scan-bad.tif | Bin .../data/lorem-ipsum/lorem-ipsum-scan.gt.page.xml | 0 .../lorem-ipsum-scan.ocr.tesseract.alto.xml | 0 .../tests/data/lorem-ipsum/lorem-ipsum-scan.pdf | Bin .../tests/data/lorem-ipsum/lorem-ipsum-scan.tif | Bin .../tests/data/lorem-ipsum/lorem-ipsum.odt | Bin .../dinglehopper}/tests/data/mixed-regions.page.xml | 0 .../dinglehopper}/tests/data/order.page.xml | 0 .../data/table-order/table-no-reading-order.xml | 0 .../tests/data/table-order/table-order-0001.xml | 0 .../tests/data/table-order/table-order-0002.xml | 0 .../tests/data/table-order/table-region.xml | 0 .../tests/data/table-order/table-unordered.xml | 0 .../tests/data/test-fake-ocr.page2018.xml | 0 .../dinglehopper}/tests/data/test-gt.page2018.xml | 0 .../dinglehopper}/tests/data/test.alto1.xml | 0 .../dinglehopper}/tests/data/test.alto2.xml | 0 .../dinglehopper}/tests/data/test.alto3.xml | 0 .../dinglehopper}/tests/data/test.page2018.xml | 0 .../dinglehopper}/tests/data/test.txt | 0 .../462875_0008.jpg | Bin .../OCR-D-GT_0008.xml | 0 .../OCR-D-OCR-TESS_0008.xml | 0 .../dinglehopper}/tests/extracted_text_test.py | 0 .../dinglehopper}/tests/test_align.py | 0 .../tests/test_character_error_rate.py | 0 .../dinglehopper}/tests/test_edit_distance.py | 0 .../dinglehopper}/tests/test_editops.py | 0 .../dinglehopper}/tests/test_integ_align.py | 0 .../dinglehopper}/tests/test_integ_bigger_texts.py | 0 .../tests/test_integ_character_error_rate_ocr.py | 0 .../dinglehopper}/tests/test_integ_cli_dir.py | 0 .../tests/test_integ_cli_valid_json.py | 0 .../dinglehopper}/tests/test_integ_differences.py | 0 .../tests/test_integ_edit_distance_ocr.py | 0 .../dinglehopper}/tests/test_integ_ocrd_cli.py | 0 .../dinglehopper}/tests/test_integ_summarize.py | 0 .../tests/test_integ_table_extraction.py | 0 .../tests/test_integ_word_error_rate_ocr.py | 0 .../dinglehopper}/tests/test_ocr_files.py | 0 .../dinglehopper}/tests/test_word_error_rate.py | 0 {dinglehopper => src/dinglehopper}/tests/util.py | 0 .../dinglehopper}/word_error_rate.py | 0 84 files changed, 2 insertions(+), 3 deletions(-) rename {dinglehopper => src/dinglehopper}/__init__.py (100%) rename {dinglehopper => src/dinglehopper}/align.py (100%) rename {dinglehopper => src/dinglehopper}/character_error_rate.py (100%) rename {dinglehopper => src/dinglehopper}/cli.py (100%) rename {dinglehopper => src/dinglehopper}/cli_extract.py (100%) rename {dinglehopper => src/dinglehopper}/cli_line_dirs.py (100%) rename {dinglehopper => src/dinglehopper}/cli_summarize.py (100%) rename {dinglehopper => src/dinglehopper}/config.py (100%) rename {dinglehopper => src/dinglehopper}/edit_distance.py (100%) rename {dinglehopper => src/dinglehopper}/extracted_text.py (100%) rename {dinglehopper => src/dinglehopper}/notebooks/Levenshtein.ipynb (100%) rename {dinglehopper => src/dinglehopper}/notebooks/Unicode normalization and Character segmentation.ipynb (100%) rename {dinglehopper => src/dinglehopper}/ocr_files.py (100%) rename {dinglehopper => src/dinglehopper}/ocrd-tool.json (100%) rename {dinglehopper => src/dinglehopper}/ocrd_cli.py (100%) rename {dinglehopper => src/dinglehopper}/templates/report.html.j2 (100%) rename {dinglehopper => src/dinglehopper}/templates/report.html.js (100%) rename {dinglehopper => src/dinglehopper}/templates/report.json.j2 (100%) rename {dinglehopper => src/dinglehopper}/templates/summary.html.j2 (100%) rename {dinglehopper => src/dinglehopper}/templates/summary.json.j2 (100%) rename {dinglehopper => src/dinglehopper}/tests/__init__.py (100%) rename {dinglehopper => src/dinglehopper}/tests/data/00000119.tif (100%) rename {dinglehopper => src/dinglehopper}/tests/data/actevedef_718448162/OCR-D-GT-PAGE/00000024.page.xml (100%) rename {dinglehopper => src/dinglehopper}/tests/data/actevedef_718448162/OCR-D-OCR-CALAMARI/OCR-D-OCR-CALAMARI_0001.xml (100%) rename {dinglehopper => src/dinglehopper}/tests/data/actevedef_718448162/OCR-D-OCR-TESS/OCR-D-OCR-TESS_0001.xml (100%) rename {dinglehopper => src/dinglehopper}/tests/data/actevedef_718448162/mets.xml (100%) rename {dinglehopper => src/dinglehopper}/tests/data/bigger-texts/00008228/00008228-00236534.gt4hist.xml (100%) rename {dinglehopper => src/dinglehopper}/tests/data/bigger-texts/00008228/00008228.gt.xml (100%) rename {dinglehopper => src/dinglehopper}/tests/data/brochrnx_73075507X/00000139.gt.page.xml (100%) rename {dinglehopper => src/dinglehopper}/tests/data/brochrnx_73075507X/00000139.ocrd-tess.ocr.page.xml (100%) rename {dinglehopper => src/dinglehopper}/tests/data/directory-test/gt/1.xml (100%) rename {dinglehopper => src/dinglehopper}/tests/data/directory-test/gt/2.xml (100%) rename {dinglehopper => src/dinglehopper}/tests/data/directory-test/ocr/1.xml (100%) rename {dinglehopper => src/dinglehopper}/tests/data/directory-test/ocr/2.xml (100%) rename {dinglehopper => src/dinglehopper}/tests/data/directory-test/ocr/3-has-no-gt.xml (100%) rename {dinglehopper => src/dinglehopper}/tests/data/levels-are-different.page.xml (100%) rename {dinglehopper => src/dinglehopper}/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.gt.page.xml (100%) rename {dinglehopper => src/dinglehopper}/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.ocr.tesseract.alto.xml (100%) rename {dinglehopper => src/dinglehopper}/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.pdf (100%) rename {dinglehopper => src/dinglehopper}/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.tif (100%) rename {dinglehopper => src/dinglehopper}/tests/data/lorem-ipsum/lorem-ipsum-scan.gt.page.xml (100%) rename {dinglehopper => src/dinglehopper}/tests/data/lorem-ipsum/lorem-ipsum-scan.ocr.tesseract.alto.xml (100%) rename {dinglehopper => src/dinglehopper}/tests/data/lorem-ipsum/lorem-ipsum-scan.pdf (100%) rename {dinglehopper => src/dinglehopper}/tests/data/lorem-ipsum/lorem-ipsum-scan.tif (100%) rename {dinglehopper => src/dinglehopper}/tests/data/lorem-ipsum/lorem-ipsum.odt (100%) rename {dinglehopper => src/dinglehopper}/tests/data/mixed-regions.page.xml (100%) rename {dinglehopper => src/dinglehopper}/tests/data/order.page.xml (100%) rename {dinglehopper => src/dinglehopper}/tests/data/table-order/table-no-reading-order.xml (100%) rename {dinglehopper => src/dinglehopper}/tests/data/table-order/table-order-0001.xml (100%) rename {dinglehopper => src/dinglehopper}/tests/data/table-order/table-order-0002.xml (100%) rename {dinglehopper => src/dinglehopper}/tests/data/table-order/table-region.xml (100%) rename {dinglehopper => src/dinglehopper}/tests/data/table-order/table-unordered.xml (100%) rename {dinglehopper => src/dinglehopper}/tests/data/test-fake-ocr.page2018.xml (100%) rename {dinglehopper => src/dinglehopper}/tests/data/test-gt.page2018.xml (100%) rename {dinglehopper => src/dinglehopper}/tests/data/test.alto1.xml (100%) rename {dinglehopper => src/dinglehopper}/tests/data/test.alto2.xml (100%) rename {dinglehopper => src/dinglehopper}/tests/data/test.alto3.xml (100%) rename {dinglehopper => src/dinglehopper}/tests/data/test.page2018.xml (100%) rename {dinglehopper => src/dinglehopper}/tests/data/test.txt (100%) rename {dinglehopper => src/dinglehopper}/tests/data/unused-larex-indexed-textequiv-jkamlah/462875_0008.jpg (100%) rename {dinglehopper => src/dinglehopper}/tests/data/unused-larex-indexed-textequiv-jkamlah/OCR-D-GT_0008.xml (100%) rename {dinglehopper => src/dinglehopper}/tests/data/unused-larex-indexed-textequiv-jkamlah/OCR-D-OCR-TESS_0008.xml (100%) rename {dinglehopper => src/dinglehopper}/tests/extracted_text_test.py (100%) rename {dinglehopper => src/dinglehopper}/tests/test_align.py (100%) rename {dinglehopper => src/dinglehopper}/tests/test_character_error_rate.py (100%) rename {dinglehopper => src/dinglehopper}/tests/test_edit_distance.py (100%) rename {dinglehopper => src/dinglehopper}/tests/test_editops.py (100%) rename {dinglehopper => src/dinglehopper}/tests/test_integ_align.py (100%) rename {dinglehopper => src/dinglehopper}/tests/test_integ_bigger_texts.py (100%) rename {dinglehopper => src/dinglehopper}/tests/test_integ_character_error_rate_ocr.py (100%) rename {dinglehopper => src/dinglehopper}/tests/test_integ_cli_dir.py (100%) rename {dinglehopper => src/dinglehopper}/tests/test_integ_cli_valid_json.py (100%) rename {dinglehopper => src/dinglehopper}/tests/test_integ_differences.py (100%) rename {dinglehopper => src/dinglehopper}/tests/test_integ_edit_distance_ocr.py (100%) rename {dinglehopper => src/dinglehopper}/tests/test_integ_ocrd_cli.py (100%) rename {dinglehopper => src/dinglehopper}/tests/test_integ_summarize.py (100%) rename {dinglehopper => src/dinglehopper}/tests/test_integ_table_extraction.py (100%) rename {dinglehopper => src/dinglehopper}/tests/test_integ_word_error_rate_ocr.py (100%) rename {dinglehopper => src/dinglehopper}/tests/test_ocr_files.py (100%) rename {dinglehopper => src/dinglehopper}/tests/test_word_error_rate.py (100%) rename {dinglehopper => src/dinglehopper}/tests/util.py (100%) rename {dinglehopper => src/dinglehopper}/word_error_rate.py (100%) diff --git a/ocrd-tool.json b/ocrd-tool.json index f871ff0..9acddde 120000 --- a/ocrd-tool.json +++ b/ocrd-tool.json @@ -1 +1 @@ -dinglehopper/ocrd-tool.json \ No newline at end of file +src/dinglehopper/ocrd-tool.json \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 649a059..153e61a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -45,8 +45,7 @@ dependencies = {file = ["requirements.txt"]} optional-dependencies.dev = {file = ["requirements-dev.txt"]} [tool.setuptools.packages.find] -# This is not strictly necessary, just when junk lies around. -where = ["dinglehopper"] +where = ["src"] [tool.setuptools.package-data] dinglehopper = ["*.json", "templates/*"] diff --git a/dinglehopper/__init__.py b/src/dinglehopper/__init__.py similarity index 100% rename from dinglehopper/__init__.py rename to src/dinglehopper/__init__.py diff --git a/dinglehopper/align.py b/src/dinglehopper/align.py similarity index 100% rename from dinglehopper/align.py rename to src/dinglehopper/align.py diff --git a/dinglehopper/character_error_rate.py b/src/dinglehopper/character_error_rate.py similarity index 100% rename from dinglehopper/character_error_rate.py rename to src/dinglehopper/character_error_rate.py diff --git a/dinglehopper/cli.py b/src/dinglehopper/cli.py similarity index 100% rename from dinglehopper/cli.py rename to src/dinglehopper/cli.py diff --git a/dinglehopper/cli_extract.py b/src/dinglehopper/cli_extract.py similarity index 100% rename from dinglehopper/cli_extract.py rename to src/dinglehopper/cli_extract.py diff --git a/dinglehopper/cli_line_dirs.py b/src/dinglehopper/cli_line_dirs.py similarity index 100% rename from dinglehopper/cli_line_dirs.py rename to src/dinglehopper/cli_line_dirs.py diff --git a/dinglehopper/cli_summarize.py b/src/dinglehopper/cli_summarize.py similarity index 100% rename from dinglehopper/cli_summarize.py rename to src/dinglehopper/cli_summarize.py diff --git a/dinglehopper/config.py b/src/dinglehopper/config.py similarity index 100% rename from dinglehopper/config.py rename to src/dinglehopper/config.py diff --git a/dinglehopper/edit_distance.py b/src/dinglehopper/edit_distance.py similarity index 100% rename from dinglehopper/edit_distance.py rename to src/dinglehopper/edit_distance.py diff --git a/dinglehopper/extracted_text.py b/src/dinglehopper/extracted_text.py similarity index 100% rename from dinglehopper/extracted_text.py rename to src/dinglehopper/extracted_text.py diff --git a/dinglehopper/notebooks/Levenshtein.ipynb b/src/dinglehopper/notebooks/Levenshtein.ipynb similarity index 100% rename from dinglehopper/notebooks/Levenshtein.ipynb rename to src/dinglehopper/notebooks/Levenshtein.ipynb diff --git a/dinglehopper/notebooks/Unicode normalization and Character segmentation.ipynb b/src/dinglehopper/notebooks/Unicode normalization and Character segmentation.ipynb similarity index 100% rename from dinglehopper/notebooks/Unicode normalization and Character segmentation.ipynb rename to src/dinglehopper/notebooks/Unicode normalization and Character segmentation.ipynb diff --git a/dinglehopper/ocr_files.py b/src/dinglehopper/ocr_files.py similarity index 100% rename from dinglehopper/ocr_files.py rename to src/dinglehopper/ocr_files.py diff --git a/dinglehopper/ocrd-tool.json b/src/dinglehopper/ocrd-tool.json similarity index 100% rename from dinglehopper/ocrd-tool.json rename to src/dinglehopper/ocrd-tool.json diff --git a/dinglehopper/ocrd_cli.py b/src/dinglehopper/ocrd_cli.py similarity index 100% rename from dinglehopper/ocrd_cli.py rename to src/dinglehopper/ocrd_cli.py diff --git a/dinglehopper/templates/report.html.j2 b/src/dinglehopper/templates/report.html.j2 similarity index 100% rename from dinglehopper/templates/report.html.j2 rename to src/dinglehopper/templates/report.html.j2 diff --git a/dinglehopper/templates/report.html.js b/src/dinglehopper/templates/report.html.js similarity index 100% rename from dinglehopper/templates/report.html.js rename to src/dinglehopper/templates/report.html.js diff --git a/dinglehopper/templates/report.json.j2 b/src/dinglehopper/templates/report.json.j2 similarity index 100% rename from dinglehopper/templates/report.json.j2 rename to src/dinglehopper/templates/report.json.j2 diff --git a/dinglehopper/templates/summary.html.j2 b/src/dinglehopper/templates/summary.html.j2 similarity index 100% rename from dinglehopper/templates/summary.html.j2 rename to src/dinglehopper/templates/summary.html.j2 diff --git a/dinglehopper/templates/summary.json.j2 b/src/dinglehopper/templates/summary.json.j2 similarity index 100% rename from dinglehopper/templates/summary.json.j2 rename to src/dinglehopper/templates/summary.json.j2 diff --git a/dinglehopper/tests/__init__.py b/src/dinglehopper/tests/__init__.py similarity index 100% rename from dinglehopper/tests/__init__.py rename to src/dinglehopper/tests/__init__.py diff --git a/dinglehopper/tests/data/00000119.tif b/src/dinglehopper/tests/data/00000119.tif similarity index 100% rename from dinglehopper/tests/data/00000119.tif rename to src/dinglehopper/tests/data/00000119.tif diff --git a/dinglehopper/tests/data/actevedef_718448162/OCR-D-GT-PAGE/00000024.page.xml b/src/dinglehopper/tests/data/actevedef_718448162/OCR-D-GT-PAGE/00000024.page.xml similarity index 100% rename from dinglehopper/tests/data/actevedef_718448162/OCR-D-GT-PAGE/00000024.page.xml rename to src/dinglehopper/tests/data/actevedef_718448162/OCR-D-GT-PAGE/00000024.page.xml diff --git a/dinglehopper/tests/data/actevedef_718448162/OCR-D-OCR-CALAMARI/OCR-D-OCR-CALAMARI_0001.xml b/src/dinglehopper/tests/data/actevedef_718448162/OCR-D-OCR-CALAMARI/OCR-D-OCR-CALAMARI_0001.xml similarity index 100% rename from dinglehopper/tests/data/actevedef_718448162/OCR-D-OCR-CALAMARI/OCR-D-OCR-CALAMARI_0001.xml rename to src/dinglehopper/tests/data/actevedef_718448162/OCR-D-OCR-CALAMARI/OCR-D-OCR-CALAMARI_0001.xml diff --git a/dinglehopper/tests/data/actevedef_718448162/OCR-D-OCR-TESS/OCR-D-OCR-TESS_0001.xml b/src/dinglehopper/tests/data/actevedef_718448162/OCR-D-OCR-TESS/OCR-D-OCR-TESS_0001.xml similarity index 100% rename from dinglehopper/tests/data/actevedef_718448162/OCR-D-OCR-TESS/OCR-D-OCR-TESS_0001.xml rename to src/dinglehopper/tests/data/actevedef_718448162/OCR-D-OCR-TESS/OCR-D-OCR-TESS_0001.xml diff --git a/dinglehopper/tests/data/actevedef_718448162/mets.xml b/src/dinglehopper/tests/data/actevedef_718448162/mets.xml similarity index 100% rename from dinglehopper/tests/data/actevedef_718448162/mets.xml rename to src/dinglehopper/tests/data/actevedef_718448162/mets.xml diff --git a/dinglehopper/tests/data/bigger-texts/00008228/00008228-00236534.gt4hist.xml b/src/dinglehopper/tests/data/bigger-texts/00008228/00008228-00236534.gt4hist.xml similarity index 100% rename from dinglehopper/tests/data/bigger-texts/00008228/00008228-00236534.gt4hist.xml rename to src/dinglehopper/tests/data/bigger-texts/00008228/00008228-00236534.gt4hist.xml diff --git a/dinglehopper/tests/data/bigger-texts/00008228/00008228.gt.xml b/src/dinglehopper/tests/data/bigger-texts/00008228/00008228.gt.xml similarity index 100% rename from dinglehopper/tests/data/bigger-texts/00008228/00008228.gt.xml rename to src/dinglehopper/tests/data/bigger-texts/00008228/00008228.gt.xml diff --git a/dinglehopper/tests/data/brochrnx_73075507X/00000139.gt.page.xml b/src/dinglehopper/tests/data/brochrnx_73075507X/00000139.gt.page.xml similarity index 100% rename from dinglehopper/tests/data/brochrnx_73075507X/00000139.gt.page.xml rename to src/dinglehopper/tests/data/brochrnx_73075507X/00000139.gt.page.xml diff --git a/dinglehopper/tests/data/brochrnx_73075507X/00000139.ocrd-tess.ocr.page.xml b/src/dinglehopper/tests/data/brochrnx_73075507X/00000139.ocrd-tess.ocr.page.xml similarity index 100% rename from dinglehopper/tests/data/brochrnx_73075507X/00000139.ocrd-tess.ocr.page.xml rename to src/dinglehopper/tests/data/brochrnx_73075507X/00000139.ocrd-tess.ocr.page.xml diff --git a/dinglehopper/tests/data/directory-test/gt/1.xml b/src/dinglehopper/tests/data/directory-test/gt/1.xml similarity index 100% rename from dinglehopper/tests/data/directory-test/gt/1.xml rename to src/dinglehopper/tests/data/directory-test/gt/1.xml diff --git a/dinglehopper/tests/data/directory-test/gt/2.xml b/src/dinglehopper/tests/data/directory-test/gt/2.xml similarity index 100% rename from dinglehopper/tests/data/directory-test/gt/2.xml rename to src/dinglehopper/tests/data/directory-test/gt/2.xml diff --git a/dinglehopper/tests/data/directory-test/ocr/1.xml b/src/dinglehopper/tests/data/directory-test/ocr/1.xml similarity index 100% rename from dinglehopper/tests/data/directory-test/ocr/1.xml rename to src/dinglehopper/tests/data/directory-test/ocr/1.xml diff --git a/dinglehopper/tests/data/directory-test/ocr/2.xml b/src/dinglehopper/tests/data/directory-test/ocr/2.xml similarity index 100% rename from dinglehopper/tests/data/directory-test/ocr/2.xml rename to src/dinglehopper/tests/data/directory-test/ocr/2.xml diff --git a/dinglehopper/tests/data/directory-test/ocr/3-has-no-gt.xml b/src/dinglehopper/tests/data/directory-test/ocr/3-has-no-gt.xml similarity index 100% rename from dinglehopper/tests/data/directory-test/ocr/3-has-no-gt.xml rename to src/dinglehopper/tests/data/directory-test/ocr/3-has-no-gt.xml diff --git a/dinglehopper/tests/data/levels-are-different.page.xml b/src/dinglehopper/tests/data/levels-are-different.page.xml similarity index 100% rename from dinglehopper/tests/data/levels-are-different.page.xml rename to src/dinglehopper/tests/data/levels-are-different.page.xml diff --git a/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.gt.page.xml b/src/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.gt.page.xml similarity index 100% rename from dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.gt.page.xml rename to src/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.gt.page.xml diff --git a/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.ocr.tesseract.alto.xml b/src/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.ocr.tesseract.alto.xml similarity index 100% rename from dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.ocr.tesseract.alto.xml rename to src/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.ocr.tesseract.alto.xml diff --git a/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.pdf b/src/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.pdf similarity index 100% rename from dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.pdf rename to src/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.pdf diff --git a/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.tif b/src/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.tif similarity index 100% rename from dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.tif rename to src/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan-bad.tif diff --git a/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan.gt.page.xml b/src/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan.gt.page.xml similarity index 100% rename from dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan.gt.page.xml rename to src/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan.gt.page.xml diff --git a/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan.ocr.tesseract.alto.xml b/src/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan.ocr.tesseract.alto.xml similarity index 100% rename from dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan.ocr.tesseract.alto.xml rename to src/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan.ocr.tesseract.alto.xml diff --git a/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan.pdf b/src/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan.pdf similarity index 100% rename from dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan.pdf rename to src/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan.pdf diff --git a/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan.tif b/src/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan.tif similarity index 100% rename from dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan.tif rename to src/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum-scan.tif diff --git a/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum.odt b/src/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum.odt similarity index 100% rename from dinglehopper/tests/data/lorem-ipsum/lorem-ipsum.odt rename to src/dinglehopper/tests/data/lorem-ipsum/lorem-ipsum.odt diff --git a/dinglehopper/tests/data/mixed-regions.page.xml b/src/dinglehopper/tests/data/mixed-regions.page.xml similarity index 100% rename from dinglehopper/tests/data/mixed-regions.page.xml rename to src/dinglehopper/tests/data/mixed-regions.page.xml diff --git a/dinglehopper/tests/data/order.page.xml b/src/dinglehopper/tests/data/order.page.xml similarity index 100% rename from dinglehopper/tests/data/order.page.xml rename to src/dinglehopper/tests/data/order.page.xml diff --git a/dinglehopper/tests/data/table-order/table-no-reading-order.xml b/src/dinglehopper/tests/data/table-order/table-no-reading-order.xml similarity index 100% rename from dinglehopper/tests/data/table-order/table-no-reading-order.xml rename to src/dinglehopper/tests/data/table-order/table-no-reading-order.xml diff --git a/dinglehopper/tests/data/table-order/table-order-0001.xml b/src/dinglehopper/tests/data/table-order/table-order-0001.xml similarity index 100% rename from dinglehopper/tests/data/table-order/table-order-0001.xml rename to src/dinglehopper/tests/data/table-order/table-order-0001.xml diff --git a/dinglehopper/tests/data/table-order/table-order-0002.xml b/src/dinglehopper/tests/data/table-order/table-order-0002.xml similarity index 100% rename from dinglehopper/tests/data/table-order/table-order-0002.xml rename to src/dinglehopper/tests/data/table-order/table-order-0002.xml diff --git a/dinglehopper/tests/data/table-order/table-region.xml b/src/dinglehopper/tests/data/table-order/table-region.xml similarity index 100% rename from dinglehopper/tests/data/table-order/table-region.xml rename to src/dinglehopper/tests/data/table-order/table-region.xml diff --git a/dinglehopper/tests/data/table-order/table-unordered.xml b/src/dinglehopper/tests/data/table-order/table-unordered.xml similarity index 100% rename from dinglehopper/tests/data/table-order/table-unordered.xml rename to src/dinglehopper/tests/data/table-order/table-unordered.xml diff --git a/dinglehopper/tests/data/test-fake-ocr.page2018.xml b/src/dinglehopper/tests/data/test-fake-ocr.page2018.xml similarity index 100% rename from dinglehopper/tests/data/test-fake-ocr.page2018.xml rename to src/dinglehopper/tests/data/test-fake-ocr.page2018.xml diff --git a/dinglehopper/tests/data/test-gt.page2018.xml b/src/dinglehopper/tests/data/test-gt.page2018.xml similarity index 100% rename from dinglehopper/tests/data/test-gt.page2018.xml rename to src/dinglehopper/tests/data/test-gt.page2018.xml diff --git a/dinglehopper/tests/data/test.alto1.xml b/src/dinglehopper/tests/data/test.alto1.xml similarity index 100% rename from dinglehopper/tests/data/test.alto1.xml rename to src/dinglehopper/tests/data/test.alto1.xml diff --git a/dinglehopper/tests/data/test.alto2.xml b/src/dinglehopper/tests/data/test.alto2.xml similarity index 100% rename from dinglehopper/tests/data/test.alto2.xml rename to src/dinglehopper/tests/data/test.alto2.xml diff --git a/dinglehopper/tests/data/test.alto3.xml b/src/dinglehopper/tests/data/test.alto3.xml similarity index 100% rename from dinglehopper/tests/data/test.alto3.xml rename to src/dinglehopper/tests/data/test.alto3.xml diff --git a/dinglehopper/tests/data/test.page2018.xml b/src/dinglehopper/tests/data/test.page2018.xml similarity index 100% rename from dinglehopper/tests/data/test.page2018.xml rename to src/dinglehopper/tests/data/test.page2018.xml diff --git a/dinglehopper/tests/data/test.txt b/src/dinglehopper/tests/data/test.txt similarity index 100% rename from dinglehopper/tests/data/test.txt rename to src/dinglehopper/tests/data/test.txt diff --git a/dinglehopper/tests/data/unused-larex-indexed-textequiv-jkamlah/462875_0008.jpg b/src/dinglehopper/tests/data/unused-larex-indexed-textequiv-jkamlah/462875_0008.jpg similarity index 100% rename from dinglehopper/tests/data/unused-larex-indexed-textequiv-jkamlah/462875_0008.jpg rename to src/dinglehopper/tests/data/unused-larex-indexed-textequiv-jkamlah/462875_0008.jpg diff --git a/dinglehopper/tests/data/unused-larex-indexed-textequiv-jkamlah/OCR-D-GT_0008.xml b/src/dinglehopper/tests/data/unused-larex-indexed-textequiv-jkamlah/OCR-D-GT_0008.xml similarity index 100% rename from dinglehopper/tests/data/unused-larex-indexed-textequiv-jkamlah/OCR-D-GT_0008.xml rename to src/dinglehopper/tests/data/unused-larex-indexed-textequiv-jkamlah/OCR-D-GT_0008.xml diff --git a/dinglehopper/tests/data/unused-larex-indexed-textequiv-jkamlah/OCR-D-OCR-TESS_0008.xml b/src/dinglehopper/tests/data/unused-larex-indexed-textequiv-jkamlah/OCR-D-OCR-TESS_0008.xml similarity index 100% rename from dinglehopper/tests/data/unused-larex-indexed-textequiv-jkamlah/OCR-D-OCR-TESS_0008.xml rename to src/dinglehopper/tests/data/unused-larex-indexed-textequiv-jkamlah/OCR-D-OCR-TESS_0008.xml diff --git a/dinglehopper/tests/extracted_text_test.py b/src/dinglehopper/tests/extracted_text_test.py similarity index 100% rename from dinglehopper/tests/extracted_text_test.py rename to src/dinglehopper/tests/extracted_text_test.py diff --git a/dinglehopper/tests/test_align.py b/src/dinglehopper/tests/test_align.py similarity index 100% rename from dinglehopper/tests/test_align.py rename to src/dinglehopper/tests/test_align.py diff --git a/dinglehopper/tests/test_character_error_rate.py b/src/dinglehopper/tests/test_character_error_rate.py similarity index 100% rename from dinglehopper/tests/test_character_error_rate.py rename to src/dinglehopper/tests/test_character_error_rate.py diff --git a/dinglehopper/tests/test_edit_distance.py b/src/dinglehopper/tests/test_edit_distance.py similarity index 100% rename from dinglehopper/tests/test_edit_distance.py rename to src/dinglehopper/tests/test_edit_distance.py diff --git a/dinglehopper/tests/test_editops.py b/src/dinglehopper/tests/test_editops.py similarity index 100% rename from dinglehopper/tests/test_editops.py rename to src/dinglehopper/tests/test_editops.py diff --git a/dinglehopper/tests/test_integ_align.py b/src/dinglehopper/tests/test_integ_align.py similarity index 100% rename from dinglehopper/tests/test_integ_align.py rename to src/dinglehopper/tests/test_integ_align.py diff --git a/dinglehopper/tests/test_integ_bigger_texts.py b/src/dinglehopper/tests/test_integ_bigger_texts.py similarity index 100% rename from dinglehopper/tests/test_integ_bigger_texts.py rename to src/dinglehopper/tests/test_integ_bigger_texts.py diff --git a/dinglehopper/tests/test_integ_character_error_rate_ocr.py b/src/dinglehopper/tests/test_integ_character_error_rate_ocr.py similarity index 100% rename from dinglehopper/tests/test_integ_character_error_rate_ocr.py rename to src/dinglehopper/tests/test_integ_character_error_rate_ocr.py diff --git a/dinglehopper/tests/test_integ_cli_dir.py b/src/dinglehopper/tests/test_integ_cli_dir.py similarity index 100% rename from dinglehopper/tests/test_integ_cli_dir.py rename to src/dinglehopper/tests/test_integ_cli_dir.py diff --git a/dinglehopper/tests/test_integ_cli_valid_json.py b/src/dinglehopper/tests/test_integ_cli_valid_json.py similarity index 100% rename from dinglehopper/tests/test_integ_cli_valid_json.py rename to src/dinglehopper/tests/test_integ_cli_valid_json.py diff --git a/dinglehopper/tests/test_integ_differences.py b/src/dinglehopper/tests/test_integ_differences.py similarity index 100% rename from dinglehopper/tests/test_integ_differences.py rename to src/dinglehopper/tests/test_integ_differences.py diff --git a/dinglehopper/tests/test_integ_edit_distance_ocr.py b/src/dinglehopper/tests/test_integ_edit_distance_ocr.py similarity index 100% rename from dinglehopper/tests/test_integ_edit_distance_ocr.py rename to src/dinglehopper/tests/test_integ_edit_distance_ocr.py diff --git a/dinglehopper/tests/test_integ_ocrd_cli.py b/src/dinglehopper/tests/test_integ_ocrd_cli.py similarity index 100% rename from dinglehopper/tests/test_integ_ocrd_cli.py rename to src/dinglehopper/tests/test_integ_ocrd_cli.py diff --git a/dinglehopper/tests/test_integ_summarize.py b/src/dinglehopper/tests/test_integ_summarize.py similarity index 100% rename from dinglehopper/tests/test_integ_summarize.py rename to src/dinglehopper/tests/test_integ_summarize.py diff --git a/dinglehopper/tests/test_integ_table_extraction.py b/src/dinglehopper/tests/test_integ_table_extraction.py similarity index 100% rename from dinglehopper/tests/test_integ_table_extraction.py rename to src/dinglehopper/tests/test_integ_table_extraction.py diff --git a/dinglehopper/tests/test_integ_word_error_rate_ocr.py b/src/dinglehopper/tests/test_integ_word_error_rate_ocr.py similarity index 100% rename from dinglehopper/tests/test_integ_word_error_rate_ocr.py rename to src/dinglehopper/tests/test_integ_word_error_rate_ocr.py diff --git a/dinglehopper/tests/test_ocr_files.py b/src/dinglehopper/tests/test_ocr_files.py similarity index 100% rename from dinglehopper/tests/test_ocr_files.py rename to src/dinglehopper/tests/test_ocr_files.py diff --git a/dinglehopper/tests/test_word_error_rate.py b/src/dinglehopper/tests/test_word_error_rate.py similarity index 100% rename from dinglehopper/tests/test_word_error_rate.py rename to src/dinglehopper/tests/test_word_error_rate.py diff --git a/dinglehopper/tests/util.py b/src/dinglehopper/tests/util.py similarity index 100% rename from dinglehopper/tests/util.py rename to src/dinglehopper/tests/util.py diff --git a/dinglehopper/word_error_rate.py b/src/dinglehopper/word_error_rate.py similarity index 100% rename from dinglehopper/word_error_rate.py rename to src/dinglehopper/word_error_rate.py From 69325facf2a8e045b80c5f79679262a27b30e3eb Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Thu, 3 Aug 2023 17:48:13 +0200 Subject: [PATCH 19/82] =?UTF-8?q?=F0=9F=90=9B=20Detect=20encoding=20(incl?= =?UTF-8?q?=20BOM)=20when=20reading=20files?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit As @imlabormitlea-code reported in gh-79, dinglehopper did not handle text files with BOM well. Fix this by using chardet to detect an encoding, which also detects the BOM and use the proper encoding to read the files, not including the BOM in the resulting extracted text. Fixes gh-80. --- requirements.txt | 1 + src/dinglehopper/ocr_files.py | 11 +++++++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index daf2b0f..8ee3d1d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -11,3 +11,4 @@ multimethod == 1.3 # latest version to officially support Python 3.5 tqdm rapidfuzz >= 2.4.2 six # XXX workaround OCR-D/core#730 +chardet diff --git a/src/dinglehopper/ocr_files.py b/src/dinglehopper/ocr_files.py index 97e56ed..42a085f 100644 --- a/src/dinglehopper/ocr_files.py +++ b/src/dinglehopper/ocr_files.py @@ -7,6 +7,7 @@ from warnings import warn from lxml import etree as ET from lxml.etree import XMLSyntaxError +import chardet from .extracted_text import ExtractedText, normalize_sbb @@ -135,9 +136,15 @@ def page_text(tree, *, textequiv_level="region"): return page_extract(tree, textequiv_level=textequiv_level).text +def detect_encoding(filename): + return chardet.detect(open(filename, "rb").read(1024))["encoding"] + + def plain_extract(filename, include_filename_in_id=False): id_template = "{filename} - line {no}" if include_filename_in_id else "line {no}" - with open(filename, "r") as f: + + fileencoding = detect_encoding(filename) + with open(filename, "r", encoding=fileencoding) as f: return ExtractedText( None, [ @@ -166,7 +173,7 @@ def extract(filename, *, textequiv_level="region"): """ try: tree = ET.parse(filename) - except XMLSyntaxError: + except (XMLSyntaxError, UnicodeDecodeError): return plain_extract(filename) try: return page_extract(tree, textequiv_level=textequiv_level) From 84a05170bad911e3d7517dbc838aad89a54e9113 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Thu, 3 Aug 2023 18:06:13 +0200 Subject: [PATCH 20/82] =?UTF-8?q?=E2=9A=99=20pytest.ini=20=E2=86=92=20pypr?= =?UTF-8?q?oject.toml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 8 ++++++++ pytest.ini | 4 ---- 2 files changed, 8 insertions(+), 4 deletions(-) delete mode 100644 pytest.ini diff --git a/pyproject.toml b/pyproject.toml index 153e61a..5359cd9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -49,3 +49,11 @@ where = ["src"] [tool.setuptools.package-data] dinglehopper = ["*.json", "templates/*"] + + +[tool.pytest.ini_options] +minversion = 6.0 +addopts = "--strict-markers" +markers = [ + "integration: integration tests", +] diff --git a/pytest.ini b/pytest.ini deleted file mode 100644 index c56273f..0000000 --- a/pytest.ini +++ /dev/null @@ -1,4 +0,0 @@ -[pytest] -markers = - integration: integration tests - serial From e8e58e76c4c81ddf8c8f4f02607d5c6085252b8c Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Thu, 3 Aug 2023 18:35:25 +0200 Subject: [PATCH 21/82] =?UTF-8?q?=E2=9A=99=20Move=20mypy=20settings=20to?= =?UTF-8?q?=20pyproject.toml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 4 ++++ setup.cfg | 3 --- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5359cd9..e2819f2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -57,3 +57,7 @@ addopts = "--strict-markers" markers = [ "integration: integration tests", ] + + +[tool.mypy] +ignore_missing_imports = true diff --git a/setup.cfg b/setup.cfg index aeec880..b74e617 100644 --- a/setup.cfg +++ b/setup.cfg @@ -7,6 +7,3 @@ max-line-length = 88 [pylint.messages_control] disable = C0330, C0326 - -[mypy] -ignore_missing_imports = True From 32bd1896e087a8ae00931edcafe1251ba193e73c Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Thu, 3 Aug 2023 19:02:11 +0200 Subject: [PATCH 22/82] =?UTF-8?q?=F0=9F=9B=A0=20Replace=20flake8=20+=20pyl?= =?UTF-8?q?int=20with=20ruff?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit As ruff is a lot faster than the other options, use this for code style checks etc. This change also removes setup.cfg (See also: gh-85). --- README-DEV.md | 2 +- pyproject.toml | 5 +++++ requirements-dev.txt | 3 ++- setup.cfg | 9 --------- 4 files changed, 8 insertions(+), 11 deletions(-) diff --git a/README-DEV.md b/README-DEV.md index d7b0a3f..a1d9b1a 100644 --- a/README-DEV.md +++ b/README-DEV.md @@ -32,6 +32,6 @@ pytest --cov=dinglehopper --cov-report=html Static code analysis: ```bash -pytest -k "not test" --flake8 pytest -k "not test" --mypy +pytest -k "not test" --ruff ``` diff --git a/pyproject.toml b/pyproject.toml index e2819f2..f0201ce 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -61,3 +61,8 @@ markers = [ [tool.mypy] ignore_missing_imports = true + + +[tool.ruff] +select = ["E", "F", "I"] +ignore = [] diff --git a/requirements-dev.txt b/requirements-dev.txt index 9403f15..030b803 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,5 +1,6 @@ pytest -pytest-flake8 pytest-cov pytest-mypy +pytest-ruff black +ruff diff --git a/setup.cfg b/setup.cfg index b74e617..e69de29 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,9 +0,0 @@ -[flake8] -max-line-length = 88 -extend-ignore = E203, W503 - -[pylint] -max-line-length = 88 - -[pylint.messages_control] -disable = C0330, C0326 From 5b20fb24a13327069171a8a00b40c774738b3d57 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Thu, 3 Aug 2023 19:13:21 +0200 Subject: [PATCH 23/82] =?UTF-8?q?=E2=9A=99=20Add=20pre-commit?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .pre-commit-config.yaml | 29 +++++++++++++++++++++++++++++ README-DEV.md | 7 +++++++ requirements-dev.txt | 1 + 3 files changed, 37 insertions(+) create mode 100644 .pre-commit-config.yaml diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..dd7b710 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,29 @@ +# See https://pre-commit.com for more information +# See https://pre-commit.com/hooks.html for more hooks +repos: +- repo: https://github.com/pre-commit/pre-commit-hooks + rev: v3.2.0 + hooks: + - id: trailing-whitespace + - id: end-of-file-fixer + - id: check-json + - id: check-toml + - id: check-yaml + - id: check-added-large-files + - id: check-ast + +- repo: https://github.com/psf/black + rev: 22.10.0 + hooks: + - id: black + +- repo: https://github.com/astral-sh/ruff-pre-commit + rev: v0.0.280 + hooks: + - id: ruff + args: [--fix, --exit-non-zero-on-fix] + +- repo: https://github.com/pre-commit/mirrors-mypy + rev: v1.4.1 + hooks: + - id: mypy diff --git a/README-DEV.md b/README-DEV.md index a1d9b1a..cdd51fd 100644 --- a/README-DEV.md +++ b/README-DEV.md @@ -35,3 +35,10 @@ Static code analysis: pytest -k "not test" --mypy pytest -k "not test" --ruff ``` + +## How to use pre-commit + +This project optionally uses [pre-commit](https://pre-commit.com) to check commits. To use it: + +- Install pre-commit, e.g. `pip install -r requirements-dev.txt` +- Install the repo-local git hooks: `pre-commit install` diff --git a/requirements-dev.txt b/requirements-dev.txt index 030b803..2eefc16 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -4,3 +4,4 @@ pytest-mypy pytest-ruff black ruff +pre-commit From d50d6245541367fcb38213366f3d32a11d0bacd0 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Thu, 3 Aug 2023 19:21:21 +0200 Subject: [PATCH 24/82] =?UTF-8?q?=F0=9F=8E=A8=20Sort=20imports=20(auto-fix?= =?UTF-8?q?ed=20by=20ruff)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/dinglehopper/__init__.py | 6 +++--- src/dinglehopper/align.py | 3 ++- src/dinglehopper/cli.py | 8 ++++---- src/dinglehopper/cli_extract.py | 2 -- src/dinglehopper/cli_line_dirs.py | 12 +++--------- src/dinglehopper/cli_summarize.py | 2 +- src/dinglehopper/edit_distance.py | 7 +------ src/dinglehopper/ocr_files.py | 3 +-- src/dinglehopper/ocrd_cli.py | 2 +- src/dinglehopper/tests/extracted_text_test.py | 2 +- src/dinglehopper/tests/test_align.py | 3 ++- src/dinglehopper/tests/test_integ_bigger_texts.py | 3 +-- .../tests/test_integ_character_error_rate_ocr.py | 2 +- src/dinglehopper/tests/test_integ_cli_dir.py | 2 ++ src/dinglehopper/tests/test_integ_cli_valid_json.py | 2 +- src/dinglehopper/tests/test_integ_differences.py | 2 ++ .../tests/test_integ_edit_distance_ocr.py | 2 +- src/dinglehopper/tests/test_integ_ocrd_cli.py | 5 ++--- src/dinglehopper/tests/test_integ_summarize.py | 4 +++- .../tests/test_integ_word_error_rate_ocr.py | 2 +- src/dinglehopper/tests/test_ocr_files.py | 6 ++---- src/dinglehopper/tests/util.py | 2 +- src/dinglehopper/word_error_rate.py | 7 +++---- 23 files changed, 39 insertions(+), 50 deletions(-) diff --git a/src/dinglehopper/__init__.py b/src/dinglehopper/__init__.py index 8e58101..fecf0ea 100644 --- a/src/dinglehopper/__init__.py +++ b/src/dinglehopper/__init__.py @@ -1,5 +1,5 @@ -from .ocr_files import * -from .extracted_text import * +from .align import * from .character_error_rate import * +from .extracted_text import * +from .ocr_files import * from .word_error_rate import * -from .align import * diff --git a/src/dinglehopper/align.py b/src/dinglehopper/align.py index cc96891..fbc4d28 100644 --- a/src/dinglehopper/align.py +++ b/src/dinglehopper/align.py @@ -1,6 +1,7 @@ -from .edit_distance import * from rapidfuzz.distance import Levenshtein +from .edit_distance import * + def align(t1, t2): """Align text.""" diff --git a/src/dinglehopper/cli.py b/src/dinglehopper/cli.py index b22aafc..7a8f484 100644 --- a/src/dinglehopper/cli.py +++ b/src/dinglehopper/cli.py @@ -4,15 +4,15 @@ from collections import Counter import click from jinja2 import Environment, FileSystemLoader from markupsafe import escape -from uniseg.graphemecluster import grapheme_clusters from ocrd_utils import initLogging +from uniseg.graphemecluster import grapheme_clusters -from dinglehopper.character_error_rate import character_error_rate_n -from dinglehopper.word_error_rate import word_error_rate_n, words_normalized from dinglehopper.align import seq_align +from dinglehopper.character_error_rate import character_error_rate_n +from dinglehopper.config import Config from dinglehopper.extracted_text import ExtractedText from dinglehopper.ocr_files import extract -from dinglehopper.config import Config +from dinglehopper.word_error_rate import word_error_rate_n, words_normalized def gen_diff_report(gt_in, ocr_in, css_prefix, joiner, none, differences=False): diff --git a/src/dinglehopper/cli_extract.py b/src/dinglehopper/cli_extract.py index 0d4f713..3c35b1b 100644 --- a/src/dinglehopper/cli_extract.py +++ b/src/dinglehopper/cli_extract.py @@ -1,9 +1,7 @@ -import os import click from ocrd_utils import initLogging -from .extracted_text import ExtractedText from .ocr_files import extract diff --git a/src/dinglehopper/cli_line_dirs.py b/src/dinglehopper/cli_line_dirs.py index 950f668..5fc3754 100644 --- a/src/dinglehopper/cli_line_dirs.py +++ b/src/dinglehopper/cli_line_dirs.py @@ -1,20 +1,14 @@ -import os -import sys import itertools +import os import click from jinja2 import Environment, FileSystemLoader -from markupsafe import escape -from uniseg.graphemecluster import grapheme_clusters from ocrd_utils import initLogging from .character_error_rate import character_error_rate_n -from .word_error_rate import word_error_rate_n, words_normalized -from .align import seq_align -from .extracted_text import ExtractedText -from .ocr_files import plain_extract -from .config import Config from .cli import gen_diff_report, json_float +from .ocr_files import plain_extract +from .word_error_rate import word_error_rate_n, words_normalized def all_equal(iterable): diff --git a/src/dinglehopper/cli_summarize.py b/src/dinglehopper/cli_summarize.py index 1cf1c91..3262371 100644 --- a/src/dinglehopper/cli_summarize.py +++ b/src/dinglehopper/cli_summarize.py @@ -2,8 +2,8 @@ import json import os import click -from ocrd_utils import initLogging from jinja2 import Environment, FileSystemLoader +from ocrd_utils import initLogging from dinglehopper.cli import json_float diff --git a/src/dinglehopper/edit_distance.py b/src/dinglehopper/edit_distance.py index 24f6928..e5194bf 100644 --- a/src/dinglehopper/edit_distance.py +++ b/src/dinglehopper/edit_distance.py @@ -1,17 +1,12 @@ from __future__ import division, print_function import unicodedata -from functools import partial, lru_cache -from typing import Sequence, Tuple -import numpy as np from multimethod import multimethod -from uniseg.graphemecluster import grapheme_clusters -from tqdm import tqdm from rapidfuzz.distance import Levenshtein +from uniseg.graphemecluster import grapheme_clusters from .extracted_text import ExtractedText -from .config import Config @multimethod diff --git a/src/dinglehopper/ocr_files.py b/src/dinglehopper/ocr_files.py index 42a085f..da7b973 100644 --- a/src/dinglehopper/ocr_files.py +++ b/src/dinglehopper/ocr_files.py @@ -3,11 +3,10 @@ from __future__ import division, print_function import os import sys from typing import Iterator -from warnings import warn +import chardet from lxml import etree as ET from lxml.etree import XMLSyntaxError -import chardet from .extracted_text import ExtractedText, normalize_sbb diff --git a/src/dinglehopper/ocrd_cli.py b/src/dinglehopper/ocrd_cli.py index c5f79cd..8eebdc0 100644 --- a/src/dinglehopper/ocrd_cli.py +++ b/src/dinglehopper/ocrd_cli.py @@ -4,7 +4,7 @@ import os import click from ocrd import Processor from ocrd.decorators import ocrd_cli_options, ocrd_cli_wrap_processor -from ocrd_utils import getLogger, make_file_id, assert_file_grp_cardinality +from ocrd_utils import assert_file_grp_cardinality, getLogger, make_file_id from pkg_resources import resource_string from .cli import process as cli_process diff --git a/src/dinglehopper/tests/extracted_text_test.py b/src/dinglehopper/tests/extracted_text_test.py index 8a81587..ae85735 100644 --- a/src/dinglehopper/tests/extracted_text_test.py +++ b/src/dinglehopper/tests/extracted_text_test.py @@ -6,7 +6,7 @@ import pytest from lxml import etree as ET from uniseg.graphemecluster import grapheme_clusters -from .. import seq_align, ExtractedText +from .. import ExtractedText, seq_align def test_text(): diff --git a/src/dinglehopper/tests/test_align.py b/src/dinglehopper/tests/test_align.py index 96fc3c2..d8b051b 100644 --- a/src/dinglehopper/tests/test_align.py +++ b/src/dinglehopper/tests/test_align.py @@ -1,6 +1,7 @@ import pytest + +from .. import align, distance, seq_align from .util import unzip -from .. import align, seq_align, distance def test_left_empty(): diff --git a/src/dinglehopper/tests/test_integ_bigger_texts.py b/src/dinglehopper/tests/test_integ_bigger_texts.py index e069485..fd3871f 100644 --- a/src/dinglehopper/tests/test_integ_bigger_texts.py +++ b/src/dinglehopper/tests/test_integ_bigger_texts.py @@ -4,9 +4,8 @@ import os import pytest from lxml import etree as ET -from uniseg.graphemecluster import grapheme_clusters -from .. import character_error_rate, page_text, alto_text +from .. import alto_text, character_error_rate, page_text data_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)), "data") diff --git a/src/dinglehopper/tests/test_integ_character_error_rate_ocr.py b/src/dinglehopper/tests/test_integ_character_error_rate_ocr.py index e307a84..7755e2d 100644 --- a/src/dinglehopper/tests/test_integ_character_error_rate_ocr.py +++ b/src/dinglehopper/tests/test_integ_character_error_rate_ocr.py @@ -6,7 +6,7 @@ import pytest from lxml import etree as ET from uniseg.graphemecluster import grapheme_clusters -from .. import character_error_rate, page_text, alto_text +from .. import alto_text, character_error_rate, page_text data_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)), "data") diff --git a/src/dinglehopper/tests/test_integ_cli_dir.py b/src/dinglehopper/tests/test_integ_cli_dir.py index 435b452..7f3196c 100644 --- a/src/dinglehopper/tests/test_integ_cli_dir.py +++ b/src/dinglehopper/tests/test_integ_cli_dir.py @@ -1,6 +1,8 @@ import os + import pytest from ocrd_utils import initLogging + from dinglehopper.cli import process_dir data_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)), "data") diff --git a/src/dinglehopper/tests/test_integ_cli_valid_json.py b/src/dinglehopper/tests/test_integ_cli_valid_json.py index 7b35bd7..6cbfa0c 100644 --- a/src/dinglehopper/tests/test_integ_cli_valid_json.py +++ b/src/dinglehopper/tests/test_integ_cli_valid_json.py @@ -1,9 +1,9 @@ import json import pytest -from .util import working_directory from ..cli import process +from .util import working_directory @pytest.mark.integration diff --git a/src/dinglehopper/tests/test_integ_differences.py b/src/dinglehopper/tests/test_integ_differences.py index 3590317..19cb9d1 100644 --- a/src/dinglehopper/tests/test_integ_differences.py +++ b/src/dinglehopper/tests/test_integ_differences.py @@ -1,7 +1,9 @@ import json import os + import pytest from ocrd_utils import initLogging + from dinglehopper.cli import process data_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)), "data") diff --git a/src/dinglehopper/tests/test_integ_edit_distance_ocr.py b/src/dinglehopper/tests/test_integ_edit_distance_ocr.py index 0e1e7da..e01ac76 100644 --- a/src/dinglehopper/tests/test_integ_edit_distance_ocr.py +++ b/src/dinglehopper/tests/test_integ_edit_distance_ocr.py @@ -5,7 +5,7 @@ import os import pytest from lxml import etree as ET -from .. import distance, page_text, alto_text +from .. import alto_text, distance, page_text data_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)), "data") diff --git a/src/dinglehopper/tests/test_integ_ocrd_cli.py b/src/dinglehopper/tests/test_integ_ocrd_cli.py index 652b850..b30d2b0 100644 --- a/src/dinglehopper/tests/test_integ_ocrd_cli.py +++ b/src/dinglehopper/tests/test_integ_ocrd_cli.py @@ -1,15 +1,14 @@ +import json import os import shutil -import json import sys from pathlib import Path import pytest from click.testing import CliRunner -from .util import working_directory - from ..ocrd_cli import ocrd_dinglehopper +from .util import working_directory data_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)), "data") diff --git a/src/dinglehopper/tests/test_integ_summarize.py b/src/dinglehopper/tests/test_integ_summarize.py index 0908152..d4a4900 100644 --- a/src/dinglehopper/tests/test_integ_summarize.py +++ b/src/dinglehopper/tests/test_integ_summarize.py @@ -1,8 +1,10 @@ import json import os + import pytest -from .util import working_directory + from .. import cli_summarize +from .util import working_directory expected_cer_avg = (0.05 + 0.10) / 2 expected_wer_avg = (0.15 + 0.20) / 2 diff --git a/src/dinglehopper/tests/test_integ_word_error_rate_ocr.py b/src/dinglehopper/tests/test_integ_word_error_rate_ocr.py index ba865b4..65b2f54 100644 --- a/src/dinglehopper/tests/test_integ_word_error_rate_ocr.py +++ b/src/dinglehopper/tests/test_integ_word_error_rate_ocr.py @@ -5,7 +5,7 @@ import os import pytest from lxml import etree as ET -from .. import word_error_rate, words, page_text, alto_text +from .. import alto_text, page_text, word_error_rate, words data_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)), "data") diff --git a/src/dinglehopper/tests/test_ocr_files.py b/src/dinglehopper/tests/test_ocr_files.py index 57c3f4a..4a1f485 100644 --- a/src/dinglehopper/tests/test_ocr_files.py +++ b/src/dinglehopper/tests/test_ocr_files.py @@ -1,13 +1,11 @@ import os import re - -import lxml.etree as ET import textwrap -import pytest +import lxml.etree as ET -from .util import working_directory from .. import alto_namespace, alto_text, page_namespace, page_text, plain_text, text +from .util import working_directory data_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)), "data") diff --git a/src/dinglehopper/tests/util.py b/src/dinglehopper/tests/util.py index 8a735aa..e44ddc0 100644 --- a/src/dinglehopper/tests/util.py +++ b/src/dinglehopper/tests/util.py @@ -1,8 +1,8 @@ +import os from itertools import zip_longest from typing import Iterable import colorama -import os def diffprint(x, y): diff --git a/src/dinglehopper/word_error_rate.py b/src/dinglehopper/word_error_rate.py index 64dc36c..470bf1f 100644 --- a/src/dinglehopper/word_error_rate.py +++ b/src/dinglehopper/word_error_rate.py @@ -1,14 +1,13 @@ from __future__ import division import unicodedata -from typing import Tuple, Iterable -from multimethod import multimethod +from typing import Iterable, Tuple import uniseg.wordbreak - +from multimethod import multimethod from rapidfuzz.distance import Levenshtein -from . import ExtractedText +from . import ExtractedText # Did we patch uniseg.wordbreak.word_break already? word_break_patched = False From bea56117ae45350c544c02acdec5a71283124c25 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Thu, 3 Aug 2023 19:25:44 +0200 Subject: [PATCH 25/82] =?UTF-8?q?=F0=9F=8E=A8=20Reformat=20using=20Black?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/dinglehopper/cli.py | 93 +++++++++++++------ src/dinglehopper/cli_extract.py | 1 - src/dinglehopper/cli_summarize.py | 20 ++-- src/dinglehopper/tests/test_integ_cli_dir.py | 26 ++++-- .../tests/test_integ_differences.py | 22 +++-- .../tests/test_integ_summarize.py | 39 ++++---- 6 files changed, 133 insertions(+), 68 deletions(-) diff --git a/src/dinglehopper/cli.py b/src/dinglehopper/cli.py index 7a8f484..82ee3ce 100644 --- a/src/dinglehopper/cli.py +++ b/src/dinglehopper/cli.py @@ -70,7 +70,7 @@ def gen_diff_report(gt_in, ocr_in, css_prefix, joiner, none, differences=False): # support this, i.e. display for the one id produced if differences: - found_differences.append(f'{g} :: {o}') + found_differences.append(f"{g} :: {o}") gtx += joiner + format_thing(g, css_classes, gt_id) ocrx += joiner + format_thing(o, css_classes, ocr_id) @@ -82,14 +82,17 @@ def gen_diff_report(gt_in, ocr_in, css_prefix, joiner, none, differences=False): found_differences = dict(Counter(elem for elem in found_differences)) - return """ + return ( + """ <div class="row"> <div class="col-md-6 gt">{}</div> <div class="col-md-6 ocr">{}</div> </div> """.format( - gtx, ocrx - ), found_differences + gtx, ocrx + ), + found_differences, + ) def json_float(value): @@ -105,8 +108,16 @@ def json_float(value): return str(value) -def process(gt, ocr, report_prefix, reports_folder='.', *, metrics=True, - differences=False, textequiv_level="region"): +def process( + gt, + ocr, + report_prefix, + reports_folder=".", + *, + metrics=True, + differences=False, + textequiv_level="region", +): """Check OCR result against GT. The @click decorators change the signature of the decorated functions, so we keep this undecorated version and use @@ -119,15 +130,19 @@ def process(gt, ocr, report_prefix, reports_folder='.', *, metrics=True, cer, n_characters = character_error_rate_n(gt_text, ocr_text) wer, n_words = word_error_rate_n(gt_text, ocr_text) - char_diff_report, diff_c = gen_diff_report(gt_text, ocr_text, css_prefix="c", - joiner="", - none="·", differences=differences) + char_diff_report, diff_c = gen_diff_report( + gt_text, ocr_text, css_prefix="c", joiner="", none="·", differences=differences + ) gt_words = words_normalized(gt_text) ocr_words = words_normalized(ocr_text) word_diff_report, diff_w = gen_diff_report( - gt_words, ocr_words, css_prefix="w", joiner=" ", none="⋯", - differences=differences + gt_words, + ocr_words, + css_prefix="w", + joiner=" ", + none="⋯", + differences=differences, ) env = Environment( @@ -162,19 +177,23 @@ def process(gt, ocr, report_prefix, reports_folder='.', *, metrics=True, ).dump(out_fn) -def process_dir(gt, ocr, report_prefix, reports_folder, metrics, differences, - textequiv_level): +def process_dir( + gt, ocr, report_prefix, reports_folder, metrics, differences, textequiv_level +): for gt_file in os.listdir(gt): gt_file_path = os.path.join(gt, gt_file) ocr_file_path = os.path.join(ocr, gt_file) if os.path.isfile(gt_file_path) and os.path.isfile(ocr_file_path): - process(gt_file_path, ocr_file_path, - f"{gt_file}-{report_prefix}", - reports_folder=reports_folder, - metrics=metrics, - differences=differences, - textequiv_level=textequiv_level) + process( + gt_file_path, + ocr_file_path, + f"{gt_file}-{report_prefix}", + reports_folder=reports_folder, + metrics=metrics, + differences=differences, + textequiv_level=textequiv_level, + ) else: print("Skipping {0} and {1}".format(gt_file_path, ocr_file_path)) @@ -190,7 +209,7 @@ def process_dir(gt, ocr, report_prefix, reports_folder, metrics, differences, @click.option( "--differences", default=False, - help="Enable reporting character and word level differences" + help="Enable reporting character and word level differences", ) @click.option( "--textequiv-level", @@ -199,8 +218,16 @@ def process_dir(gt, ocr, report_prefix, reports_folder, metrics, differences, metavar="LEVEL", ) @click.option("--progress", default=False, is_flag=True, help="Show progress bar") -def main(gt, ocr, report_prefix, reports_folder, metrics, differences, textequiv_level, - progress): +def main( + gt, + ocr, + report_prefix, + reports_folder, + metrics, + differences, + textequiv_level, + progress, +): """ Compare the PAGE/ALTO/text document GT against the document OCR. @@ -228,11 +255,25 @@ def main(gt, ocr, report_prefix, reports_folder, metrics, differences, textequiv "OCR must be a directory if GT is a directory", param_hint="ocr" ) else: - process_dir(gt, ocr, report_prefix, reports_folder, metrics, - differences, textequiv_level) + process_dir( + gt, + ocr, + report_prefix, + reports_folder, + metrics, + differences, + textequiv_level, + ) else: - process(gt, ocr, report_prefix, reports_folder, metrics=metrics, - differences=differences, textequiv_level=textequiv_level) + process( + gt, + ocr, + report_prefix, + reports_folder, + metrics=metrics, + differences=differences, + textequiv_level=textequiv_level, + ) if __name__ == "__main__": diff --git a/src/dinglehopper/cli_extract.py b/src/dinglehopper/cli_extract.py index 3c35b1b..9c51d34 100644 --- a/src/dinglehopper/cli_extract.py +++ b/src/dinglehopper/cli_extract.py @@ -1,4 +1,3 @@ - import click from ocrd_utils import initLogging diff --git a/src/dinglehopper/cli_summarize.py b/src/dinglehopper/cli_summarize.py index 3262371..0422759 100644 --- a/src/dinglehopper/cli_summarize.py +++ b/src/dinglehopper/cli_summarize.py @@ -23,7 +23,8 @@ def process(reports_folder, occurrences_threshold=1): if "cer" not in report_data or "wer" not in report_data: click.echo( - f"Skipping {report} because it does not contain CER and WER") + f"Skipping {report} because it does not contain CER and WER" + ) continue cer = report_data["cer"] @@ -60,7 +61,7 @@ def process(reports_folder, occurrences_threshold=1): for report_suffix in (".html", ".json"): template_fn = "summary" + report_suffix + ".j2" - out_fn = os.path.join(reports_folder, 'summary' + report_suffix) + out_fn = os.path.join(reports_folder, "summary" + report_suffix) template = env.get_template(template_fn) template.stream( num_reports=len(cer_list), @@ -73,14 +74,13 @@ def process(reports_folder, occurrences_threshold=1): @click.command() -@click.argument("reports_folder", - type=click.Path(exists=True), - default="./reports" - ) -@click.option("--occurrences-threshold", - type=int, - default=1, - help="Only show differences that occur at least this many times.") +@click.argument("reports_folder", type=click.Path(exists=True), default="./reports") +@click.option( + "--occurrences-threshold", + type=int, + default=1, + help="Only show differences that occur at least this many times.", +) def main(reports_folder, occurrences_threshold): """ Summarize the results from multiple reports generated earlier by dinglehopper. diff --git a/src/dinglehopper/tests/test_integ_cli_dir.py b/src/dinglehopper/tests/test_integ_cli_dir.py index 7f3196c..c065130 100644 --- a/src/dinglehopper/tests/test_integ_cli_dir.py +++ b/src/dinglehopper/tests/test_integ_cli_dir.py @@ -16,10 +16,15 @@ def test_cli_directory(tmp_path): """ initLogging() - process_dir(os.path.join(data_dir, "directory-test", "gt"), - os.path.join(data_dir, "directory-test", "ocr"), - "report", str(tmp_path / "reports"), False, True, - "line") + process_dir( + os.path.join(data_dir, "directory-test", "gt"), + os.path.join(data_dir, "directory-test", "ocr"), + "report", + str(tmp_path / "reports"), + False, + True, + "line", + ) assert os.path.exists(tmp_path / "reports/1.xml-report.json") assert os.path.exists(tmp_path / "reports/1.xml-report.html") @@ -35,9 +40,14 @@ def test_cli_fail_without_gt(tmp_path): """ initLogging() - process_dir(os.path.join(data_dir, "directory-test", "gt"), - os.path.join(data_dir, "directory-test", "ocr"), - "report", str(tmp_path / "reports"), False, True, - "line") + process_dir( + os.path.join(data_dir, "directory-test", "gt"), + os.path.join(data_dir, "directory-test", "ocr"), + "report", + str(tmp_path / "reports"), + False, + True, + "line", + ) assert len(os.listdir(tmp_path / "reports")) == 2 * 2 diff --git a/src/dinglehopper/tests/test_integ_differences.py b/src/dinglehopper/tests/test_integ_differences.py index 19cb9d1..452e085 100644 --- a/src/dinglehopper/tests/test_integ_differences.py +++ b/src/dinglehopper/tests/test_integ_differences.py @@ -12,18 +12,26 @@ data_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)), "data") @pytest.mark.integration def test_cli_differences(tmp_path): """Test that the cli/process() yields a JSON report that includes - the differences found between the GT and OCR text""" + the differences found between the GT and OCR text""" initLogging() - process(os.path.join(data_dir, "test-gt.page2018.xml"), - os.path.join(data_dir, "test-fake-ocr.page2018.xml"), - "report", tmp_path, differences=True) + process( + os.path.join(data_dir, "test-gt.page2018.xml"), + os.path.join(data_dir, "test-fake-ocr.page2018.xml"), + "report", + tmp_path, + differences=True, + ) assert os.path.exists(tmp_path / "report.json") with open(tmp_path / "report.json", "r") as jsonf: j = json.load(jsonf) - assert j["differences"] == {"character_level": {'n :: m': 1, 'ſ :: f': 1}, - "word_level": {'Augenblick :: Augemblick': 1, - 'Verſprochene :: Verfprochene': 1}} + assert j["differences"] == { + "character_level": {"n :: m": 1, "ſ :: f": 1}, + "word_level": { + "Augenblick :: Augemblick": 1, + "Verſprochene :: Verfprochene": 1, + }, + } diff --git a/src/dinglehopper/tests/test_integ_summarize.py b/src/dinglehopper/tests/test_integ_summarize.py index d4a4900..7ea8f70 100644 --- a/src/dinglehopper/tests/test_integ_summarize.py +++ b/src/dinglehopper/tests/test_integ_summarize.py @@ -18,16 +18,22 @@ def create_summaries(tmp_path): reports_dirname = tmp_path / "reports" reports_dirname.mkdir() - report1 = {"cer": 0.05, "wer": 0.15, - "differences": { - "character_level": {"a": 10, "b": 20}, - "word_level": {"c": 30, "d": 40} - }} - report2 = {"cer": 0.10, "wer": 0.20, - "differences": { - "character_level": {"a": 20, "b": 30}, - "word_level": {"c": 40, "d": 50} - }} + report1 = { + "cer": 0.05, + "wer": 0.15, + "differences": { + "character_level": {"a": 10, "b": 20}, + "word_level": {"c": 30, "d": 40}, + }, + } + report2 = { + "cer": 0.10, + "wer": 0.20, + "differences": { + "character_level": {"a": 20, "b": 30}, + "word_level": {"c": 40, "d": 50}, + }, + } with open(os.path.join(reports_dirname, "report1.json"), "w") as f: json.dump(report1, f) @@ -47,7 +53,6 @@ def test_cli_summarize_json(tmp_path, create_summaries): with open(os.path.join(reports_dirname, "summary.json"), "r") as f: summary_data = json.load(f) - assert summary_data["num_reports"] == 2 assert summary_data["cer_avg"] == expected_cer_avg assert summary_data["wer_avg"] == expected_wer_avg @@ -83,11 +88,13 @@ def test_cli_summarize_html_skip_invalid(tmp_path, create_summaries): reports_dirname = create_summaries # This third report has no WER value and should not be included in the summary - report3 = {"cer": 0.10, - "differences": { - "character_level": {"a": 20, "b": 30}, - "word_level": {"c": 40, "d": 50} - }} + report3 = { + "cer": 0.10, + "differences": { + "character_level": {"a": 20, "b": 30}, + "word_level": {"c": 40, "d": 50}, + }, + } with open(os.path.join(reports_dirname, "report3-missing-wer.json"), "w") as f: json.dump(report3, f) From 704e7cca1c8a6dfe629fa27dab7020737c96dadb Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Thu, 3 Aug 2023 19:44:40 +0200 Subject: [PATCH 26/82] =?UTF-8?q?=E2=AC=86=20Use=20f-strings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/dinglehopper/cli.py | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/src/dinglehopper/cli.py b/src/dinglehopper/cli.py index 82ee3ce..43bfb2e 100644 --- a/src/dinglehopper/cli.py +++ b/src/dinglehopper/cli.py @@ -32,16 +32,12 @@ def gen_diff_report(gt_in, ocr_in, css_prefix, joiner, none, differences=False): # Set Bootstrap tooltip to the segment id if id_: - html_custom_attrs += 'data-toggle="tooltip" title="{}"'.format(id_) + html_custom_attrs += f'data-toggle="tooltip" title="{id_}"' if css_classes: - return '<span class="{css_classes}" {html_custom_attrs}>{html_t}</span>'.format( - css_classes=css_classes, - html_t=html_t, - html_custom_attrs=html_custom_attrs, - ) + return f'<span class="{css_classes}" {html_custom_attrs}>{html_t}</span>' else: - return "{html_t}".format(html_t=html_t) + return f"{html_t}" if isinstance(gt_in, ExtractedText): if not isinstance(ocr_in, ExtractedText): From e4431797e638641c5aed021e6b519746db921a39 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Thu, 3 Aug 2023 19:46:01 +0200 Subject: [PATCH 27/82] =?UTF-8?q?=F0=9F=8E=A8=20Reformat=20comments=20+=20?= =?UTF-8?q?strings=20manually=20(not=20auto-fixed=20by=20Black)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/dinglehopper/cli.py | 4 ++-- src/dinglehopper/ocr_files.py | 9 +++++---- src/dinglehopper/tests/test_align.py | 3 ++- src/dinglehopper/tests/test_character_error_rate.py | 3 ++- src/dinglehopper/tests/test_integ_align.py | 4 +++- src/dinglehopper/tests/test_integ_word_error_rate_ocr.py | 4 ++-- src/dinglehopper/tests/test_ocr_files.py | 3 ++- src/dinglehopper/tests/test_word_error_rate.py | 3 ++- src/dinglehopper/word_error_rate.py | 5 +++-- 9 files changed, 23 insertions(+), 15 deletions(-) diff --git a/src/dinglehopper/cli.py b/src/dinglehopper/cli.py index 43bfb2e..3f3c835 100644 --- a/src/dinglehopper/cli.py +++ b/src/dinglehopper/cli.py @@ -116,8 +116,8 @@ def process( ): """Check OCR result against GT. - The @click decorators change the signature of the decorated functions, so we keep this undecorated version and use - Click on a wrapper. + The @click decorators change the signature of the decorated functions, so we keep + this undecorated version and use Click on a wrapper. """ gt_text = extract(gt, textequiv_level=textequiv_level) diff --git a/src/dinglehopper/ocr_files.py b/src/dinglehopper/ocr_files.py index da7b973..5c4339b 100644 --- a/src/dinglehopper/ocr_files.py +++ b/src/dinglehopper/ocr_files.py @@ -14,8 +14,8 @@ from .extracted_text import ExtractedText, normalize_sbb def alto_namespace(tree: ET.ElementTree) -> str: """Return the ALTO namespace used in the given ElementTree. - This relies on the assumption that, in any given ALTO file, the root element has the local name "alto". We do not - check if the files uses any valid ALTO namespace. + This relies on the assumption that, in any given ALTO file, the root element has the + local name "alto". We do not check if the files uses any valid ALTO namespace. """ root_name = ET.QName(tree.getroot().tag) if root_name.localname == "alto": @@ -48,8 +48,9 @@ def alto_text(tree): def page_namespace(tree): """Return the PAGE content namespace used in the given ElementTree. - This relies on the assumption that, in any given PAGE content file, the root element has the local name "PcGts". We - do not check if the files uses any valid PAGE namespace. + This relies on the assumption that, in any given PAGE content file, the root element + has the local name "PcGts". We do not check if the files uses any valid PAGE + namespace. """ root_name = ET.QName(tree.getroot().tag) if root_name.localname == "PcGts": diff --git a/src/dinglehopper/tests/test_align.py b/src/dinglehopper/tests/test_align.py index d8b051b..2c4e23a 100644 --- a/src/dinglehopper/tests/test_align.py +++ b/src/dinglehopper/tests/test_align.py @@ -72,7 +72,8 @@ def test_with_some_fake_ocr_errors(): result = list( align( "Über die vielen Sorgen wegen desselben vergaß", - "SomeJunk MoreJunk Übey die vielen Sorgen wegen AdditionalJunk deffelben vcrgab", + "SomeJunk MoreJunk " + + "Übey die vielen Sorgen wegen AdditionalJunk deffelben vcrgab", ) ) left, right = unzip(result) diff --git a/src/dinglehopper/tests/test_character_error_rate.py b/src/dinglehopper/tests/test_character_error_rate.py index 39301b4..970f740 100644 --- a/src/dinglehopper/tests/test_character_error_rate.py +++ b/src/dinglehopper/tests/test_character_error_rate.py @@ -36,6 +36,7 @@ def test_character_error_rate_hard(): len(s2) == 7 ) # This, OTOH, ends with LATIN SMALL LETTER M + COMBINING TILDE, 7 code points - # Both strings have the same length in terms of grapheme clusters. So the CER should be symmetrical. + # Both strings have the same length in terms of grapheme clusters. So the CER should + # be symmetrical. assert character_error_rate(s2, s1) == 1 / 6 assert character_error_rate(s1, s2) == 1 / 6 diff --git a/src/dinglehopper/tests/test_integ_align.py b/src/dinglehopper/tests/test_integ_align.py index 74b8c7e..b011ee5 100644 --- a/src/dinglehopper/tests/test_integ_align.py +++ b/src/dinglehopper/tests/test_integ_align.py @@ -15,7 +15,9 @@ def test_align_page_files(): # In the fake OCR file, we changed 2 characters and replaced a fi ligature with fi. # → 2 elements in the alignment should be different, the ligature is # (currently) not counted due to normalization. - # NOTE: In this example, it doesn't matter that we work with "characters", not grapheme clusters. + # + # NOTE: In this example, it doesn't matter that we work with "characters", not + # grapheme clusters. gt = page_text(ET.parse(os.path.join(data_dir, "test-gt.page2018.xml"))) ocr = page_text(ET.parse(os.path.join(data_dir, "test-fake-ocr.page2018.xml"))) diff --git a/src/dinglehopper/tests/test_integ_word_error_rate_ocr.py b/src/dinglehopper/tests/test_integ_word_error_rate_ocr.py index 65b2f54..8a57ed2 100644 --- a/src/dinglehopper/tests/test_integ_word_error_rate_ocr.py +++ b/src/dinglehopper/tests/test_integ_word_error_rate_ocr.py @@ -12,8 +12,8 @@ data_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)), "data") @pytest.mark.integration def test_word_error_rate_between_page_files(): - # In the fake OCR file, we changed 2 characters and replaced a fi ligature with fi. So we have 3 changed words, - # the ligature does not count → 2 errors + # In the fake OCR file, we changed 2 characters and replaced a fi ligature with fi. + # So we have 3 changed words, the ligature does not count → 2 errors gt = page_text(ET.parse(os.path.join(data_dir, "test-gt.page2018.xml"))) gt_word_count = ( diff --git a/src/dinglehopper/tests/test_ocr_files.py b/src/dinglehopper/tests/test_ocr_files.py index 4a1f485..4790c85 100644 --- a/src/dinglehopper/tests/test_ocr_files.py +++ b/src/dinglehopper/tests/test_ocr_files.py @@ -159,7 +159,8 @@ def test_page_level(): result = page_text(tree, textequiv_level="line") assert ( result - == "Hand, Mylord? fragte der Graf von Rocheſter.\nAls er einsmals in dem Oberhauſe eine Bill we-" + == "Hand, Mylord? fragte der Graf von Rocheſter.\n" + + "Als er einsmals in dem Oberhauſe eine Bill we-" ) diff --git a/src/dinglehopper/tests/test_word_error_rate.py b/src/dinglehopper/tests/test_word_error_rate.py index bc7b91e..311ffff 100644 --- a/src/dinglehopper/tests/test_word_error_rate.py +++ b/src/dinglehopper/tests/test_word_error_rate.py @@ -27,7 +27,8 @@ def test_words(): def test_words_private_use_area(): result = list( words( - "ber die vielen Sorgen wegen deelben vergaß Hartkopf, der Frau Amtmnnin das ver⸗\n" + "ber die vielen Sorgen wegen deelben vergaß Hartkopf, " + "der Frau Amtmnnin das ver⸗\n" "ſproene zu berliefern." ) ) diff --git a/src/dinglehopper/word_error_rate.py b/src/dinglehopper/word_error_rate.py index 470bf1f..9bf36b6 100644 --- a/src/dinglehopper/word_error_rate.py +++ b/src/dinglehopper/word_error_rate.py @@ -52,8 +52,9 @@ def words(s: str): cat = subcat[0] return cat in unwanted_categories or subcat in unwanted_subcategories - # We follow Unicode Standard Annex #29 on Unicode Text Segmentation here: Split on word boundaries using - # uniseg.wordbreak.words() and ignore all "words" that contain only whitespace, punctation "or similar characters." + # We follow Unicode Standard Annex #29 on Unicode Text Segmentation here: Split on + # word boundaries using uniseg.wordbreak.words() and ignore all "words" that contain + # only whitespace, punctation "or similar characters." for word in uniseg.wordbreak.words(s): if all(unwanted(c) for c in word): pass From bc6754d0cbdb7e5873a9e350bb9f83358785dd93 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Thu, 3 Aug 2023 19:53:29 +0200 Subject: [PATCH 28/82] =?UTF-8?q?=E2=9A=99=20ruff:=20Ignore=20F811=20(no?= =?UTF-8?q?=20redefinitions)=20for=20now,=20as=20ruff=20considers=20the=20?= =?UTF-8?q?multimethods=20redefinitions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f0201ce..2e98ae1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -65,4 +65,6 @@ ignore_missing_imports = true [tool.ruff] select = ["E", "F", "I"] -ignore = [] +ignore = [ + "F811", # multimethods are considered redefinitions by ruff +] From 1dad18909cff315bf78b5eeda61488f6dcd0b874 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Thu, 3 Aug 2023 20:27:17 +0200 Subject: [PATCH 29/82] =?UTF-8?q?=F0=9F=A7=B9=20Make=20dinglehopper.*=20ex?= =?UTF-8?q?ports=20explicit?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/dinglehopper/__init__.py | 37 +++++++++++++++++++++++++---- src/dinglehopper/align.py | 4 +++- src/dinglehopper/word_error_rate.py | 2 +- 3 files changed, 36 insertions(+), 7 deletions(-) diff --git a/src/dinglehopper/__init__.py b/src/dinglehopper/__init__.py index fecf0ea..0f6ab60 100644 --- a/src/dinglehopper/__init__.py +++ b/src/dinglehopper/__init__.py @@ -1,5 +1,32 @@ -from .align import * -from .character_error_rate import * -from .extracted_text import * -from .ocr_files import * -from .word_error_rate import * +from .align import align, seq_align +from .character_error_rate import character_error_rate, character_error_rate_n +from .edit_distance import distance, editops +from .extracted_text import ExtractedText +from .ocr_files import ( + alto_namespace, + alto_text, + page_namespace, + page_text, + plain_text, + text, +) +from .word_error_rate import word_error_rate, word_error_rate_n, words + +__all__ = [ + "editops", + "distance", + "align", + "seq_align", + "character_error_rate", + "character_error_rate_n", + "word_error_rate", + "word_error_rate_n", + "words", + "ExtractedText", + "alto_namespace", + "alto_text", + "page_namespace", + "page_text", + "plain_text", + "text", +] diff --git a/src/dinglehopper/align.py b/src/dinglehopper/align.py index fbc4d28..988ec9a 100644 --- a/src/dinglehopper/align.py +++ b/src/dinglehopper/align.py @@ -1,6 +1,8 @@ +import unicodedata + from rapidfuzz.distance import Levenshtein -from .edit_distance import * +from .edit_distance import grapheme_clusters def align(t1, t2): diff --git a/src/dinglehopper/word_error_rate.py b/src/dinglehopper/word_error_rate.py index 9bf36b6..8a1c9cb 100644 --- a/src/dinglehopper/word_error_rate.py +++ b/src/dinglehopper/word_error_rate.py @@ -7,7 +7,7 @@ import uniseg.wordbreak from multimethod import multimethod from rapidfuzz.distance import Levenshtein -from . import ExtractedText +from .extracted_text import ExtractedText # Did we patch uniseg.wordbreak.word_break already? word_break_patched = False From caef84cebbb8d6ac272e0627befdcc0f588120ec Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 4 Aug 2023 16:10:54 +0200 Subject: [PATCH 30/82] =?UTF-8?q?=F0=9F=9A=A7=20GitHub=20Actions:=20Add=20?= =?UTF-8?q?release=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release-check-version-tag | 14 +++++ .github/workflows/release.yml | 58 +++++++++++++++++++++ 2 files changed, 72 insertions(+) create mode 100755 .github/workflows/release-check-version-tag create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release-check-version-tag b/.github/workflows/release-check-version-tag new file mode 100755 index 0000000..7348a42 --- /dev/null +++ b/.github/workflows/release-check-version-tag @@ -0,0 +1,14 @@ +#!/bin/bash + +# We call setuptools.setup() here as we may rely on setuptools to interpret +# a dynamic version field. (Reading pyproject.toml is not enough in that case.) +expected_git_tag="v$(python -c 'from setuptools import setup; setup()' --version)" +actual_git_tag="$(git describe --tags)" + +if [[ "$expected_git_tag" == "$actual_git_tag" ]]; then + echo "OK: Python package version $expected_git_tag matches git tag" + exit 0 +else + echo "ERROR: Python package version $expected_git_tag does NOT match git tag $actual_git_tag" + exit 1 +fi diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..5d5bfcb --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,58 @@ +name: release + +on: + push: + tags: + - "v*.*.*" + +env: + PYPI_URL: https://pypi.org/p/dinglehopper + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Check git tag vs package version + run: python3 -m pip install --upgrade setuptools && .github/workflows/release-check-version-tag + - name: Build package + run: python3 -m pip install --upgrade build && python3 -m build + - name: Test + run: python3 -m pip install -r requirements-dev.txt && pytest + - name: Upload dist + uses: actions/upload-artifact@v3 + with: + name: dist + path: dist/ + + github-release: + needs: build + runs-on: ubuntu-latest + steps: + - name: Download dist + uses: actions/download-artifact@v3 + with: + name: dist + path: dist/ + - name: Create release on GitHub + uses: softprops/action-gh-release@v1 + with: + files: dist/* + + pypi-publish: + needs: build + runs-on: ubuntu-latest + environment: + name: pypi + url: ${{ env.PYPI_URL }} + permissions: + id-token: write # IMPORTANT: this permission is mandatory for trusted publishing + steps: + - name: Download dist + uses: actions/download-artifact@v3 + with: + name: dist + path: dist/ + - name: Publish package distributions to PyPI + uses: pypa/gh-action-pypi-publish@release/v1 From 674d833b15451d79744d8417ceae02950765bac7 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 4 Aug 2023 16:12:33 +0200 Subject: [PATCH 31/82] =?UTF-8?q?=F0=9F=9A=A7=20GitHub=20Actions:=20Add=20?= =?UTF-8?q?test=20worklow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..e48f6ff --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,17 @@ +name: release + +on: + push: + branches: + - master + +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Build package + run: python3 -m pip install --upgrade build && python3 -m build + - name: Test + run: python3 -m pip install -r requirements-dev.txt && pytest From c1b8d983e63ee37b26f43f7ec5a50f67256dda47 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 4 Aug 2023 16:17:21 +0200 Subject: [PATCH 32/82] =?UTF-8?q?=F0=9F=9A=A7=20GitHub=20Actions:=20Rename?= =?UTF-8?q?=20test=20workflow,=20also=20run=20on=20schedule?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e48f6ff..3f153bb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,9 +1,11 @@ -name: release +name: test on: push: branches: - master + schedule: + - cron: "00 16 07 * *" # = monthly jobs: test: From 77bcecd2d0f0f3ae7687f2de6caf3caab7eb72e1 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 4 Aug 2023 16:21:00 +0200 Subject: [PATCH 33/82] =?UTF-8?q?=F0=9F=9A=A7=20GitHub=20Actions:=20Allow?= =?UTF-8?q?=20running=20test=20manually?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3f153bb..632db78 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,6 +6,7 @@ on: - master schedule: - cron: "00 16 07 * *" # = monthly + workflow_dispatch: jobs: test: From ab1359c7e6658beaf8270930f01ab6fd54dd53e3 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 4 Aug 2023 16:35:36 +0200 Subject: [PATCH 34/82] =?UTF-8?q?=F0=9F=9A=A7=20GitHub=20Actions:=20Rework?= =?UTF-8?q?=20test,=20run=20in=20src/?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 632db78..296703d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,11 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 - - name: Build package - run: python3 -m pip install --upgrade build && python3 -m build + + - name: Update pip + run: python3 -m pip install -U pip + - name: Install requirements* + run: python3 -m pip install -r requirements*.txt + - name: Test - run: python3 -m pip install -r requirements-dev.txt && pytest + run: cd src && python3 -m pytest From d42e59846ca26bc7e435a5f96d0ab05d6557a434 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 4 Aug 2023 16:41:03 +0200 Subject: [PATCH 35/82] =?UTF-8?q?=F0=9F=9A=A7=20GitHub=20Actions:=20Try=20?= =?UTF-8?q?shell=20for=20loop=20to=20install=20from=20all=20requirements*.?= =?UTF-8?q?txt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 296703d..a20d6f2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,8 +17,11 @@ jobs: - name: Update pip run: python3 -m pip install -U pip - - name: Install requirements* - run: python3 -m pip install -r requirements*.txt + - name: Install requirements*.txt + run: | + for requirements_txt in requirements*.txt; do + python3 -m pip install -r requirements_txt; + done - name: Test run: cd src && python3 -m pytest From f7c280e59c3f05e48ad67f48d1e55bdd5f8158b3 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 4 Aug 2023 16:42:46 +0200 Subject: [PATCH 36/82] =?UTF-8?q?=F0=9F=9A=A7=20GitHub=20Actions:=20Try=20?= =?UTF-8?q?shell=20for=20loop=20to=20install=20from=20all=20requirements*.?= =?UTF-8?q?txt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a20d6f2..4feb289 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,7 +20,7 @@ jobs: - name: Install requirements*.txt run: | for requirements_txt in requirements*.txt; do - python3 -m pip install -r requirements_txt; + python3 -m pip install -r $requirements_txt; done - name: Test From 207fcd4054eac824a9b39e10445690e0b12c3c78 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 4 Aug 2023 17:30:26 +0200 Subject: [PATCH 37/82] =?UTF-8?q?=F0=9F=9A=A7=20GitHub=20Actions:=20Test?= =?UTF-8?q?=20report?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4feb289..53783e6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,4 +24,23 @@ jobs: done - name: Test - run: cd src && python3 -m pytest + run: | + cd src + mkdir -p ../test-results + python3 -m pytest --junitxml=../test-results/junit.xml -o junit_family=legacy + - name: Upload test results + uses: actions/upload-artifact@v2 + if: success() || failure() + with: + name: test-results + path: test-results + report: + runs-on: ubuntu-latest + needs: test + steps: + - uses: dorny/test-reporter@v1 + with: + artifact: test-results + name: Tests + path: 'test-results/*.xml' + reporter: junit From 043dbb174999697aac0e81481afd1b49fcfc9c4b Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 4 Aug 2023 17:33:05 +0200 Subject: [PATCH 38/82] =?UTF-8?q?=F0=9F=9A=A7=20GitHub=20Actions:=20Test?= =?UTF-8?q?=20report?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 53783e6..fbb669f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -43,4 +43,4 @@ jobs: artifact: test-results name: Tests path: 'test-results/*.xml' - reporter: junit + reporter: jest-junit From f4dff64066840b8b9a4cf3e25f38804616f381f6 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 4 Aug 2023 17:35:43 +0200 Subject: [PATCH 39/82] =?UTF-8?q?=F0=9F=9A=A7=20GitHub=20Actions:=20Test?= =?UTF-8?q?=20report?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fbb669f..8b417b7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -42,5 +42,5 @@ jobs: with: artifact: test-results name: Tests - path: 'test-results/*.xml' + path: '*.xml' reporter: jest-junit From 44d4742570c1511e7ce304e2d1e4fad4e077111b Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 4 Aug 2023 17:44:57 +0200 Subject: [PATCH 40/82] =?UTF-8?q?=F0=9F=9A=A7=20GitHub=20Actions:=20Test?= =?UTF-8?q?=20report?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8b417b7..9eab63a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -29,7 +29,7 @@ jobs: mkdir -p ../test-results python3 -m pytest --junitxml=../test-results/junit.xml -o junit_family=legacy - name: Upload test results - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: success() || failure() with: name: test-results @@ -42,5 +42,5 @@ jobs: with: artifact: test-results name: Tests - path: '*.xml' + path: 'junit.xml' reporter: jest-junit From f61b81c98ee2cf4bb8cb7ab996bff803740a5ca2 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 4 Aug 2023 17:47:58 +0200 Subject: [PATCH 41/82] =?UTF-8?q?=F0=9F=9A=A7=20GitHub=20Actions:=20Test?= =?UTF-8?q?=20report?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9eab63a..437af4c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -34,13 +34,11 @@ jobs: with: name: test-results path: test-results - report: - runs-on: ubuntu-latest - needs: test - steps: - - uses: dorny/test-reporter@v1 + + - name: Report tests + uses: dorny/test-reporter@v1 + if: success() || failure() with: - artifact: test-results name: Tests - path: 'junit.xml' + path: 'test-results/junit.xml' reporter: jest-junit From f909806f9ecbe1e1897b977dbd69f541a3eeaaec Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 4 Aug 2023 17:52:15 +0200 Subject: [PATCH 42/82] =?UTF-8?q?=F0=9F=9A=A7=20GitHub=20Actions:=20Test?= =?UTF-8?q?=20report?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 437af4c..8e3f64c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -41,4 +41,4 @@ jobs: with: name: Tests path: 'test-results/junit.xml' - reporter: jest-junit + reporter: java-junit From 6b05290640b12db365b267a7f49c730aedb48abf Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 4 Aug 2023 18:28:01 +0200 Subject: [PATCH 43/82] =?UTF-8?q?=F0=9F=9A=A7=20GitHub=20Actions:=20Test?= =?UTF-8?q?=20on=20multiple=20Python=20versions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 25 +++++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8e3f64c..3d4b637 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,20 @@ on: jobs: test: runs-on: ubuntu-latest + + strategy: + matrix: + python-version: [ "3.6", "3.7", "3.8", "3.9", "3.10", "3.11" ] + + env: + test_results_dir: test-results-${{ matrix.python-version }} + steps: + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + - name: Checkout uses: actions/checkout@v3 @@ -26,19 +39,19 @@ jobs: - name: Test run: | cd src - mkdir -p ../test-results - python3 -m pytest --junitxml=../test-results/junit.xml -o junit_family=legacy + mkdir -p ../$test_results_dir + python3 -m pytest --junitxml=../$test_results_dir/junit.xml -o junit_family=legacy - name: Upload test results uses: actions/upload-artifact@v3 if: success() || failure() with: - name: test-results - path: test-results + name: ${{ env.test_results_dir }} + path: ${{ env.test_results_dir }} - name: Report tests uses: dorny/test-reporter@v1 if: success() || failure() with: - name: Tests - path: 'test-results/junit.xml' + name: Results on Python ${{ matrix.python-version }} + path: "${{env.test_results_dir }}/junit.xml" reporter: java-junit From 915a647949fe311b0e83d09d8a2b09fbabc6de25 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 4 Aug 2023 18:31:13 +0200 Subject: [PATCH 44/82] =?UTF-8?q?=F0=9F=9A=A7=20GitHub=20Actions:=20Disabl?= =?UTF-8?q?e=20matrix=20fail-fast?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3d4b637..10158f9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,6 +14,7 @@ jobs: strategy: matrix: + fail-fast: false python-version: [ "3.6", "3.7", "3.8", "3.9", "3.10", "3.11" ] env: From cf130fe3a80d481822edc01b910fd26a510dabf2 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 4 Aug 2023 18:32:26 +0200 Subject: [PATCH 45/82] =?UTF-8?q?=F0=9F=9A=A7=20GitHub=20Actions:=20Disabl?= =?UTF-8?q?e=20matrix=20fail-fast?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 10158f9..b1a46d0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,8 +13,8 @@ jobs: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: - fail-fast: false python-version: [ "3.6", "3.7", "3.8", "3.9", "3.10", "3.11" ] env: From f929983d2550ddc7f6fc98da3d64297b3c78f926 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 4 Aug 2023 18:44:17 +0200 Subject: [PATCH 46/82] =?UTF-8?q?=F0=9F=9A=A7=20GitHub=20Actions:=20Fix=20?= =?UTF-8?q?testing=20for=20Python=203.6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b1a46d0..8a58579 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,13 +10,15 @@ on: jobs: test: - runs-on: ubuntu-latest strategy: fail-fast: false matrix: python-version: [ "3.6", "3.7", "3.8", "3.9", "3.10", "3.11" ] + # For Python 3.6, we need to fall back to Ubuntu 20.04 + runs-on: ${{ matrix.python-version != "3.6" && "ubuntu-latest" || "ubuntu-20.04" }} + env: test_results_dir: test-results-${{ matrix.python-version }} From 9d142f0105cd04c54aa7f74448b183a25c2bda14 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 4 Aug 2023 18:46:58 +0200 Subject: [PATCH 47/82] =?UTF-8?q?=F0=9F=9A=A7=20GitHub=20Actions:=20Fix=20?= =?UTF-8?q?testing=20for=20Python=203.6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8a58579..3b47f78 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,7 +17,7 @@ jobs: python-version: [ "3.6", "3.7", "3.8", "3.9", "3.10", "3.11" ] # For Python 3.6, we need to fall back to Ubuntu 20.04 - runs-on: ${{ matrix.python-version != "3.6" && "ubuntu-latest" || "ubuntu-20.04" }} + runs-on: ${{ matrix.python-version == '3.6' && 'ubuntu-2.04' || 'ubuntu-latest' }} env: test_results_dir: test-results-${{ matrix.python-version }} From ff453fba430feb11bc869ac9bdbfd1745671dee0 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 4 Aug 2023 18:53:32 +0200 Subject: [PATCH 48/82] =?UTF-8?q?=F0=9F=9A=A7=20GitHub=20Actions:=20Fix=20?= =?UTF-8?q?testing=20for=20Python=203.6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3b47f78..48802c0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,7 +17,7 @@ jobs: python-version: [ "3.6", "3.7", "3.8", "3.9", "3.10", "3.11" ] # For Python 3.6, we need to fall back to Ubuntu 20.04 - runs-on: ${{ matrix.python-version == '3.6' && 'ubuntu-2.04' || 'ubuntu-latest' }} + runs-on: ${{ matrix.python-version == '3.6' && 'ubuntu-20.04' || 'ubuntu-latest' }} env: test_results_dir: test-results-${{ matrix.python-version }} From ad7f42c23ea3fd5b1f5a152f3d99cd2cfd56ab40 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 4 Aug 2023 18:53:58 +0200 Subject: [PATCH 49/82] =?UTF-8?q?=F0=9F=9A=A7=20GitHub=20Actions:=20Avoid?= =?UTF-8?q?=20compiling=20OpenCV=20and=20NumPy=20on=20Python=203.6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 48802c0..39375cc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -33,6 +33,11 @@ jobs: - name: Update pip run: python3 -m pip install -U pip + - name: Avoid compiling OpenCV and NumPy on Python 3.6 + run: | + if python3 --version | grep -q "Python 3.6"; then + pip install --prefer-binary -U opencv-python-headless numpy + fi - name: Install requirements*.txt run: | for requirements_txt in requirements*.txt; do From c74fd10ac831f2d8db5c50ab88d5b7eef947bd26 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 4 Aug 2023 19:00:24 +0200 Subject: [PATCH 50/82] =?UTF-8?q?=F0=9F=9A=A7=20GitHub=20Actions:=20Do=20n?= =?UTF-8?q?o=20try=20installing=20pytest-ruff=20on=20Python=203.6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- requirements-dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index 2eefc16..e15ddce 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,7 +1,7 @@ pytest pytest-cov pytest-mypy -pytest-ruff +pytest-ruff ; python_version >= "3.7" black ruff pre-commit From aa7c9c5c5f6277605da75a17b711166c179381ec Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 4 Aug 2023 19:02:26 +0200 Subject: [PATCH 51/82] =?UTF-8?q?=F0=9F=9A=A7=20GitHub=20Actions:=20Do=20n?= =?UTF-8?q?o=20try=20installing=20ruff=20on=20Python=203.6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- requirements-dev.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index e15ddce..4bf395e 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,7 +1,8 @@ pytest pytest-cov pytest-mypy -pytest-ruff ; python_version >= "3.7" black -ruff pre-commit + +ruff ; python_version >= "3.7" +pytest-ruff ; python_version >= "3.7" From e4489dbbecf4d6df0f59995f419c80c9a484f26b Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 4 Aug 2023 19:09:51 +0200 Subject: [PATCH 52/82] =?UTF-8?q?=F0=9F=9A=A7=20GitHub=20Actions/CircleCI:?= =?UTF-8?q?=20Remove=20testing=20from=20CircleCI=20config?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .circleci/config.yml | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d1a72a0..7aecdd0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,23 +1,6 @@ version: 2.1 jobs: - test: - parameters: - python-version: - type: string - docker: - - image: cimg/python:<< parameters.python-version >> - steps: - - checkout - - run: pip3 install --upgrade pip - - run: if python3 --version | grep -q "Python 3.6"; then pip install --prefer-binary -U opencv-python-headless numpy; fi # to avoid compilation - - run: pip3 install -r requirements.txt - - run: pip3 install pytest - - run: mkdir -p test-results - - run: pytest --junitxml=test-results/junit.xml -o junit_family=legacy - - store_test_results: - path: test-results - black: parameters: python-version: @@ -31,12 +14,6 @@ jobs: - run: black . workflows: - all-tests: - jobs: - - test: - matrix: - parameters: - python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"] black: jobs: - black: From 801254e1c9f30a6083fe3c8e650cc442b54f4c3a Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 4 Aug 2023 19:12:53 +0200 Subject: [PATCH 53/82] =?UTF-8?q?=F0=9F=9A=A7=20GitHub=20Actions:=20Try=20?= =?UTF-8?q?testing=20on=20Python=203.12?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 39375cc..1e0c08b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [ "3.6", "3.7", "3.8", "3.9", "3.10", "3.11" ] + python-version: [ "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12" ] # For Python 3.6, we need to fall back to Ubuntu 20.04 runs-on: ${{ matrix.python-version == '3.6' && 'ubuntu-20.04' || 'ubuntu-latest' }} From 722aea6b544bd552981df43a41802c9bbe4ccf58 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 4 Aug 2023 19:14:53 +0200 Subject: [PATCH 54/82] =?UTF-8?q?Revert=20"=F0=9F=9A=A7=20GitHub=20Actions?= =?UTF-8?q?:=20Try=20testing=20on=20Python=203.12"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 801254e1c9f30a6083fe3c8e650cc442b54f4c3a. --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1e0c08b..39375cc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [ "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12" ] + python-version: [ "3.6", "3.7", "3.8", "3.9", "3.10", "3.11" ] # For Python 3.6, we need to fall back to Ubuntu 20.04 runs-on: ${{ matrix.python-version == '3.6' && 'ubuntu-20.04' || 'ubuntu-latest' }} From b062b1d15d94a4063a8b815f13b8130720fa70cb Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 4 Aug 2023 19:22:08 +0200 Subject: [PATCH 55/82] =?UTF-8?q?=E2=9C=92=20README:=20Update=20badges?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 240f017..affcfe8 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,10 @@ compares a ground truth (GT) document page with a OCR result page to compute metrics and a word/character differences report. It also supports batch processing by generating, aggregating and summarizing multiple reports. -[![Build Status](https://circleci.com/gh/qurator-spk/dinglehopper.svg?style=svg)](https://circleci.com/gh/qurator-spk/dinglehopper) +[![Tests](https://github.com/qurator-spk/dinglehopper/workflows/test/badge.svg)](https://github.com/qurator-spk/dinglehopper/actions?query=workflow:"test") +[![GitHub tag](https://img.shields.io/github/tag/qurator-spk/dinglehopper?include_prereleases=&sort=semver&color=blue)](https://github.com/qurator-spk/dinglehopper/releases/) +[![License](https://img.shields.io/badge/License-Apache-blue)](#license) +[![issues - dinglehopper](https://img.shields.io/github/issues/qurator-spk/dinglehopper)](https://github.com/qurator-spk/dinglehopper/issues) Goals ----- From 1c95a8294197b44e9f66f1b9e9ef0b434c7a5dc2 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 4 Aug 2023 19:25:23 +0200 Subject: [PATCH 56/82] =?UTF-8?q?=F0=9F=93=A6=20v0.9.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/dinglehopper/ocrd-tool.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dinglehopper/ocrd-tool.json b/src/dinglehopper/ocrd-tool.json index ad3c737..c4f8c4e 100644 --- a/src/dinglehopper/ocrd-tool.json +++ b/src/dinglehopper/ocrd-tool.json @@ -1,5 +1,5 @@ { - "version": "0.9.0", + "version": "0.9.1", "git_url": "https://github.com/qurator-spk/dinglehopper", "tools": { "ocrd-dinglehopper": { @@ -33,4 +33,4 @@ } } } -} \ No newline at end of file +} From dd16a16901547eda73a2ce7989e26a6deefe7a81 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 4 Aug 2023 19:28:21 +0200 Subject: [PATCH 57/82] =?UTF-8?q?=F0=9F=90=9B=20Release:=20Try=20fixing=20?= =?UTF-8?q?getting=20the=20version=20(install=20setuptools-ocrd)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5d5bfcb..861867b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: - name: Checkout uses: actions/checkout@v3 - name: Check git tag vs package version - run: python3 -m pip install --upgrade setuptools && .github/workflows/release-check-version-tag + run: python3 -m pip install --upgrade setuptools setuptools-ocrd && .github/workflows/release-check-version-tag - name: Build package run: python3 -m pip install --upgrade build && python3 -m build - name: Test From 0319d08218a0587657c7a6f15c083fc6ec66a393 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 4 Aug 2023 19:37:41 +0200 Subject: [PATCH 58/82] =?UTF-8?q?=F0=9F=8E=A8=20Release:=20Make=20installi?= =?UTF-8?q?ng=20setuptools-ocrd=20conditional=20on=20ocrd-tool.json?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 861867b..c3760fe 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,8 +14,17 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 + - name: Upgrade pip + run: python3 -m pip install --upgrade pip + - name: Install setuptools + run: | + python3 -m pip install --upgrade setuptools + # For OCR-D tools, we need setuptools-ocrd to get the version + if [ -e ocrd-tool.json ]; then + python3 -m pip install setuptools-ocrd + fi - name: Check git tag vs package version - run: python3 -m pip install --upgrade setuptools setuptools-ocrd && .github/workflows/release-check-version-tag + run: .github/workflows/release-check-version-tag - name: Build package run: python3 -m pip install --upgrade build && python3 -m build - name: Test From 102615262a36ef8afc94a141b06941e8fdff75df Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 4 Aug 2023 19:46:08 +0200 Subject: [PATCH 59/82] =?UTF-8?q?=E2=9A=99=20GitHub=20Actions:=20Call=20te?= =?UTF-8?q?st=20workflow=20when=20(before)=20deploying?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yml | 6 ++++-- .github/workflows/test.yml | 7 +++++++ 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c3760fe..8c193df 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,7 +9,11 @@ env: PYPI_URL: https://pypi.org/p/dinglehopper jobs: + test: + uses: ./.github/workflows/test.yml + build: + needs: test runs-on: ubuntu-latest steps: - name: Checkout @@ -27,8 +31,6 @@ jobs: run: .github/workflows/release-check-version-tag - name: Build package run: python3 -m pip install --upgrade build && python3 -m build - - name: Test - run: python3 -m pip install -r requirements-dev.txt && pytest - name: Upload dist uses: actions/upload-artifact@v3 with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 39375cc..7d55459 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,13 +1,20 @@ name: test on: + push: branches: - master + schedule: - cron: "00 16 07 * *" # = monthly + + # Allow manually running (from GitHub Web) workflow_dispatch: + # Allow calling this workflow (e.g. from release workflow) + workflow_call: + jobs: test: From 563642c93b21e796755d9415fb1bc0fc3836c0ad Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 4 Aug 2023 20:30:50 +0200 Subject: [PATCH 60/82] =?UTF-8?q?=F0=9F=90=9B=20Workaround=20sdist=20not?= =?UTF-8?q?=20containing=20top-level=20ocrd-tool.json?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See https://github.com/qurator-spk/setuptools_ocrd/issues/10 - The sdist does not contain ocrd-tool.json, so that the wheel built from it does not get the proper version. Needs to be fixed in setuptools_ocrd, then MANIFEST.in can be removed again. --- MANIFEST.in | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..5f4b37e --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +# FIXME: Workaround https://github.com/qurator-spk/setuptools_ocrd/issues/10 +include ocrd-tool.json From 668072e338d08e0d7e8e56e7ea213e1bd2bf8696 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 4 Aug 2023 20:34:35 +0200 Subject: [PATCH 61/82] =?UTF-8?q?=F0=9F=A7=B9=20.gitignore=20dist/?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 2291cd6..d931831 100644 --- a/.gitignore +++ b/.gitignore @@ -28,3 +28,4 @@ dmypy.json # Build artifacts /build +/dist From 98a67c7b3b7328201fafa82bc2d36e361490029c Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 4 Aug 2023 20:35:42 +0200 Subject: [PATCH 62/82] =?UTF-8?q?=F0=9F=93=A6=20v0.9.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/dinglehopper/ocrd-tool.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dinglehopper/ocrd-tool.json b/src/dinglehopper/ocrd-tool.json index c4f8c4e..33a709f 100644 --- a/src/dinglehopper/ocrd-tool.json +++ b/src/dinglehopper/ocrd-tool.json @@ -1,5 +1,5 @@ { - "version": "0.9.1", + "version": "0.9.2", "git_url": "https://github.com/qurator-spk/dinglehopper", "tools": { "ocrd-dinglehopper": { From 12b1ea3ae7a92f6b2f13518822113880b9b5a04a Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 11 Aug 2023 19:52:12 +0200 Subject: [PATCH 63/82] =?UTF-8?q?=F0=9F=90=9B=20Remove=20MANIFEST.in=20wor?= =?UTF-8?q?karound,=20now=20that=20setuptools=5Focrd=20is=20fixed?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- MANIFEST.in | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in deleted file mode 100644 index 5f4b37e..0000000 --- a/MANIFEST.in +++ /dev/null @@ -1,2 +0,0 @@ -# FIXME: Workaround https://github.com/qurator-spk/setuptools_ocrd/issues/10 -include ocrd-tool.json From 6c70afbbc577e9bb31641dad6e281af9562964af Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 11 Aug 2023 19:53:04 +0200 Subject: [PATCH 64/82] =?UTF-8?q?=F0=9F=93=A6=20v0.9.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/dinglehopper/ocrd-tool.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dinglehopper/ocrd-tool.json b/src/dinglehopper/ocrd-tool.json index 33a709f..2b08ace 100644 --- a/src/dinglehopper/ocrd-tool.json +++ b/src/dinglehopper/ocrd-tool.json @@ -1,5 +1,5 @@ { - "version": "0.9.2", + "version": "0.9.3", "git_url": "https://github.com/qurator-spk/dinglehopper", "tools": { "ocrd-dinglehopper": { From de70b198acb1a74b4d09306866362838b7aa1922 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 11 Aug 2023 20:04:02 +0200 Subject: [PATCH 65/82] =?UTF-8?q?=F0=9F=A7=B9=20Remove=20empty=20setup.cfg?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup.cfg | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 setup.cfg diff --git a/setup.cfg b/setup.cfg deleted file mode 100644 index e69de29..0000000 From 9594b4c9d2596d66fac5fe6a56b84c3763b58a36 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 11 Aug 2023 20:04:35 +0200 Subject: [PATCH 66/82] =?UTF-8?q?=F0=9F=A7=B9=20pyproject:=20Remove=20extr?= =?UTF-8?q?a=20*.json?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 2e98ae1..da33b15 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,7 +48,7 @@ optional-dependencies.dev = {file = ["requirements-dev.txt"]} where = ["src"] [tool.setuptools.package-data] -dinglehopper = ["*.json", "templates/*"] +dinglehopper = ["templates/*"] [tool.pytest.ini_options] From 1e7c46285be455f3f87da4c47b02b8d6a2309c83 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 11 Aug 2023 20:06:49 +0200 Subject: [PATCH 67/82] =?UTF-8?q?=F0=9F=8E=A8=20editorconfig:=20*.json=20s?= =?UTF-8?q?hould=20have=20a=20final=20newline?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .editorconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index ea42d71..6959d70 100644 --- a/.editorconfig +++ b/.editorconfig @@ -15,7 +15,7 @@ indent_size = 2 [*.json] indent_size = 2 -insert_final_newline = false +insert_final_newline = true # trailing spaces in markdown indicate word wrap [*.md] From a1a7f95ac6156c42403708d431cc66cb34118a5f Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 11 Aug 2023 20:07:06 +0200 Subject: [PATCH 68/82] =?UTF-8?q?=F0=9F=93=A6=20v0.9.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/dinglehopper/ocrd-tool.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dinglehopper/ocrd-tool.json b/src/dinglehopper/ocrd-tool.json index 2b08ace..a71ce37 100644 --- a/src/dinglehopper/ocrd-tool.json +++ b/src/dinglehopper/ocrd-tool.json @@ -1,5 +1,5 @@ { - "version": "0.9.3", + "version": "0.9.4", "git_url": "https://github.com/qurator-spk/dinglehopper", "tools": { "ocrd-dinglehopper": { From 54a31211725663bba5af7e04f93db69764211b7d Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 11 Aug 2023 20:28:01 +0200 Subject: [PATCH 69/82] =?UTF-8?q?=E2=9C=92=20README:=20Recommend=20install?= =?UTF-8?q?ing=20via=20pip=20and=20from=20PyPI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index affcfe8..3a0b56e 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ dinglehopper is an OCR evaluation tool and reads [ALTO](https://github.com/altoxml), [PAGE](https://github.com/PRImA-Research-Lab/PAGE-XML) and text files. It compares a ground truth (GT) document page with a OCR result page to compute -metrics and a word/character differences report. It also supports batch processing by +metrics and a word/character differences report. It also supports batch processing by generating, aggregating and summarizing multiple reports. [![Tests](https://github.com/qurator-spk/dinglehopper/workflows/test/badge.svg)](https://github.com/qurator-spk/dinglehopper/actions?query=workflow:"test") @@ -23,10 +23,11 @@ Goals Installation ------------ -It's best to use pip, e.g.: -~~~ -sudo pip install . -~~~ + +It's best to use pip to install the package from PyPI, e.g.: +``` +pip install dinglehopper +``` Usage ----- From dbaccdd5e327f7c86e586e61a3f7b2612cbe99e5 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Fri, 11 Aug 2023 20:28:29 +0200 Subject: [PATCH 70/82] =?UTF-8?q?=E2=9C=92=20README:=20Minor=20whitespace?= =?UTF-8?q?=20cleanup?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 3a0b56e..00fd899 100644 --- a/README.md +++ b/README.md @@ -70,19 +70,19 @@ This generates `report.html` and `report.json`. ![dinglehopper displaying metrics and character differences](.screenshots/dinglehopper.png?raw=true) -Batch comparison between folders of GT and OCR files can be done by simply providing +Batch comparison between folders of GT and OCR files can be done by simply providing folders: ~~~ dinglehopper gt/ ocr/ report output_folder/ ~~~ -This assumes that you have files with the same name in both folders, e.g. +This assumes that you have files with the same name in both folders, e.g. `gt/00000001.page.xml` and `ocr/00000001.alto.xml`. -The example generates reports for each set of files, with the prefix `report`, in the +The example generates reports for each set of files, with the prefix `report`, in the (automatically created) folder `output_folder/`. -By default, the JSON report does not contain the character and word differences, only -the calculated metrics. If you want to include the differences, use the +By default, the JSON report does not contain the character and word differences, only +the calculated metrics. If you want to include the differences, use the `--differences` flag: ~~~ @@ -90,7 +90,7 @@ dinglehopper gt/ ocr/ report output_folder/ --differences ~~~ ### dinglehopper-summarize -A set of (JSON) reports can be summarized into a single set of +A set of (JSON) reports can be summarized into a single set of reports. This is useful after having generated reports in batch. Example: ~~~ @@ -100,7 +100,7 @@ This generates `summary.html` and `summary.json` in the same `output_folder`. If you are summarizing many reports and have used the `--differences` flag while generating them, it may be useful to limit the number of differences reported by using -the `--occurences-threshold` parameter. This will reduce the size of the generated HTML +the `--occurences-threshold` parameter. This will reduce the size of the generated HTML report, making it easier to open and navigate. Note that the JSON report will still contain all differences. Example: ~~~ From 9d862e418b1f20c560cf084af3df4764c328b41e Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Mon, 23 Oct 2023 14:03:07 +0200 Subject: [PATCH 71/82] =?UTF-8?q?=E2=9C=94=20Add=20mets:FLocat's=20@LOCTYP?= =?UTF-8?q?E/OTHERLOCTYPE=20to=20test=20data?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Newest OCR-D wasn't happy with the test data anymore (see gh-89). I'm not sure if the test data was invalid the way it was, but having a LOCTYPE certainly is "prettier" so adding it. This fixes the test again. --- src/dinglehopper/tests/data/actevedef_718448162/mets.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/dinglehopper/tests/data/actevedef_718448162/mets.xml b/src/dinglehopper/tests/data/actevedef_718448162/mets.xml index a6804ca..ed7c4f4 100644 --- a/src/dinglehopper/tests/data/actevedef_718448162/mets.xml +++ b/src/dinglehopper/tests/data/actevedef_718448162/mets.xml @@ -138,17 +138,17 @@ <mets:fileSec> <mets:fileGrp USE="OCR-D-GT-PAGE"> <mets:file MIMETYPE="application/xml" ID="OCR-D-GT-PAGE_00000024"> - <mets:FLocat xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="OCR-D-GT-PAGE/00000024.page.xml"/> + <mets:FLocat xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="OCR-D-GT-PAGE/00000024.page.xml" LOCTYPE="OTHER" OTHERLOCTYPE="FILE"/> </mets:file> </mets:fileGrp> <mets:fileGrp USE="OCR-D-OCR-CALAMARI"> <mets:file MIMETYPE="application/vnd.prima.page+xml" ID="OCR-D-OCR-CALAMARI_0001"> - <mets:FLocat xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="OCR-D-OCR-CALAMARI/OCR-D-OCR-CALAMARI_0001.xml"/> + <mets:FLocat xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="OCR-D-OCR-CALAMARI/OCR-D-OCR-CALAMARI_0001.xml" LOCTYPE="OTHER" OTHERLOCTYPE="FILE"/> </mets:file> </mets:fileGrp> <mets:fileGrp USE="OCR-D-OCR-TESS"> <mets:file MIMETYPE="application/vnd.prima.page+xml" ID="OCR-D-OCR-TESS_0001"> - <mets:FLocat xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="OCR-D-OCR-TESS/OCR-D-OCR-TESS_0001.xml"/> + <mets:FLocat xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="OCR-D-OCR-TESS/OCR-D-OCR-TESS_0001.xml" LOCTYPE="OTHER" OTHERLOCTYPE="FILE"/> </mets:file> </mets:fileGrp> </mets:fileSec> From 5450f193e42ba9f9dc95871ad6c1eb4b436c345a Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Mon, 23 Oct 2023 14:08:14 +0200 Subject: [PATCH 72/82] =?UTF-8?q?=E2=9C=94=20GitHub=20Actions:=20Test=20on?= =?UTF-8?q?=20Python=203.12?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7d55459..ab7233e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,7 +21,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [ "3.6", "3.7", "3.8", "3.9", "3.10", "3.11" ] + python-version: [ "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12" ] # For Python 3.6, we need to fall back to Ubuntu 20.04 runs-on: ${{ matrix.python-version == '3.6' && 'ubuntu-20.04' || 'ubuntu-latest' }} From 1b7c2a61a38a9371f78cf2f21bd6b4dd2866c827 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Mon, 23 Oct 2023 14:34:33 +0200 Subject: [PATCH 73/82] =?UTF-8?q?=E2=9C=94=20Remove=20CircleCI=20config?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .circleci/config.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 7aecdd0..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,20 +0,0 @@ -version: 2.1 - -jobs: - black: - parameters: - python-version: - type: string - docker: - - image: cimg/python:<< parameters.python-version >> - steps: - - checkout - - run: pip3 install --upgrade pip - - run: pip3 install black - - run: black . - -workflows: - black: - jobs: - - black: - python-version: "3.11" From 061ba16461aa42d6ae10b7855169f8eb01ca9dba Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Mon, 23 Oct 2023 15:07:22 +0200 Subject: [PATCH 74/82] =?UTF-8?q?=E2=9A=99=20pre-commit:=20Update=20hooks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .pre-commit-config.yaml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index dd7b710..8a6391d 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -2,7 +2,7 @@ # See https://pre-commit.com/hooks.html for more hooks repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v3.2.0 + rev: v4.5.0 hooks: - id: trailing-whitespace - id: end-of-file-fixer @@ -13,17 +13,19 @@ repos: - id: check-ast - repo: https://github.com/psf/black - rev: 22.10.0 + rev: 23.10.0 hooks: - id: black - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.0.280 + rev: v0.1.1 hooks: - id: ruff args: [--fix, --exit-non-zero-on-fix] - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.4.1 + rev: v1.6.1 hooks: - - id: mypy + - additional_dependencies: + - types-setuptools + id: mypy From 4e0d4dcf09329ef71af319b2405d8e35461518c3 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Mon, 23 Oct 2023 15:08:16 +0200 Subject: [PATCH 75/82] =?UTF-8?q?=E2=9A=99=20pre-commit:=20Add=20pre-commi?= =?UTF-8?q?t-update=20hook=20(to=20update=20hooks=20using=20pre-commit)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .pre-commit-config.yaml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 8a6391d..d0ae66d 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,5 +1,3 @@ -# See https://pre-commit.com for more information -# See https://pre-commit.com/hooks.html for more hooks repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.5.0 @@ -20,8 +18,10 @@ repos: - repo: https://github.com/astral-sh/ruff-pre-commit rev: v0.1.1 hooks: - - id: ruff - args: [--fix, --exit-non-zero-on-fix] + - args: + - --fix + - --exit-non-zero-on-fix + id: ruff - repo: https://github.com/pre-commit/mirrors-mypy rev: v1.6.1 @@ -29,3 +29,8 @@ repos: - additional_dependencies: - types-setuptools id: mypy + +- repo: https://gitlab.com/vojko.pribudic/pre-commit-update + rev: v0.1.0 + hooks: + - id: pre-commit-update From 8a1ea4ec93d22539c63ec1f73c8efd32e0be4bbf Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Mon, 23 Oct 2023 15:15:00 +0200 Subject: [PATCH 76/82] =?UTF-8?q?=F0=9F=8E=A8=20Add=20newlines=20at=20end?= =?UTF-8?q?=20of=20files=20(ruff)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/dinglehopper/tests/data/test.alto1.xml | 2 +- src/dinglehopper/tests/data/test.alto2.xml | 2 +- src/dinglehopper/tests/data/test.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/dinglehopper/tests/data/test.alto1.xml b/src/dinglehopper/tests/data/test.alto1.xml index ac2a50b..35aa19a 100644 --- a/src/dinglehopper/tests/data/test.alto1.xml +++ b/src/dinglehopper/tests/data/test.alto1.xml @@ -20183,4 +20183,4 @@ </PrintSpace> </Page> </Layout> -</alto> \ No newline at end of file +</alto> diff --git a/src/dinglehopper/tests/data/test.alto2.xml b/src/dinglehopper/tests/data/test.alto2.xml index 67d3537..39dd592 100644 --- a/src/dinglehopper/tests/data/test.alto2.xml +++ b/src/dinglehopper/tests/data/test.alto2.xml @@ -61,4 +61,4 @@ </PrintSpace> </Page> </Layout> -</alto> \ No newline at end of file +</alto> diff --git a/src/dinglehopper/tests/data/test.txt b/src/dinglehopper/tests/data/test.txt index 41bfe81..102374b 100644 --- a/src/dinglehopper/tests/data/test.txt +++ b/src/dinglehopper/tests/data/test.txt @@ -1 +1 @@ -Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. \ No newline at end of file +Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. From fe60361e8d9ef504df25fa229a215c6d19840a57 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Mon, 23 Oct 2023 15:17:06 +0200 Subject: [PATCH 77/82] =?UTF-8?q?=E2=9C=92=20README-DEV:=20Make=20pre-comm?= =?UTF-8?q?it=20section=20top-level=20(+=20small=20whitespace=20fix)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README-DEV.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README-DEV.md b/README-DEV.md index cdd51fd..a3441b1 100644 --- a/README-DEV.md +++ b/README-DEV.md @@ -10,6 +10,7 @@ pytest ``` ## Test running examples + Only unit tests: ```bash pytest -m "not integration" @@ -36,7 +37,7 @@ pytest -k "not test" --mypy pytest -k "not test" --ruff ``` -## How to use pre-commit +# How to use pre-commit This project optionally uses [pre-commit](https://pre-commit.com) to check commits. To use it: From 1c3b28d873099c9e8ea4d7dda47b6392f5436f55 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Mon, 23 Oct 2023 15:26:10 +0200 Subject: [PATCH 78/82] =?UTF-8?q?=E2=AC=86=20Update=20multimethod=20depend?= =?UTF-8?q?ency?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We had some issues while reviewing/rebasing #72. We don't support Python 3.5 anymore, so lifting the hard pin on multimethod 1.3. --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 8ee3d1d..fdb3dde 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,7 +7,7 @@ colorama MarkupSafe ocrd >= 2.20.1 attrs -multimethod == 1.3 # latest version to officially support Python 3.5 +multimethod >= 1.3 tqdm rapidfuzz >= 2.4.2 six # XXX workaround OCR-D/core#730 From e7e0703d9d8f37923b2022e0615b8bcbf199ac75 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Mon, 23 Oct 2023 15:45:20 +0200 Subject: [PATCH 79/82] =?UTF-8?q?=E2=9C=94=20GitHub=20Actions:=20Test=20on?= =?UTF-8?q?=20PR?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ab7233e..d5b360b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,6 +6,10 @@ on: branches: - master + pull_requests: + branches: + - master + schedule: - cron: "00 16 07 * *" # = monthly From d8f84ec9ac6b77a241748b1b776a73d13fcb3516 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Mon, 23 Oct 2023 15:53:14 +0200 Subject: [PATCH 80/82] =?UTF-8?q?=F0=9F=A7=B9=20Remove=20old=20six=20depen?= =?UTF-8?q?dency=20(workaround=20for=20OCR-D/core#730)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- requirements.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index fdb3dde..cdf0219 100644 --- a/requirements.txt +++ b/requirements.txt @@ -10,5 +10,4 @@ attrs multimethod >= 1.3 tqdm rapidfuzz >= 2.4.2 -six # XXX workaround OCR-D/core#730 chardet From 3f8c8e69aa1ade0b716afd455e26f870da942842 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Mon, 23 Oct 2023 16:07:44 +0200 Subject: [PATCH 81/82] =?UTF-8?q?=F0=9F=90=9B=20(Hopefully)=20Fix=20runnin?= =?UTF-8?q?g=20tests=20on=20PR?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d5b360b..61dc014 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,7 +6,7 @@ on: branches: - master - pull_requests: + pull_request: branches: - master From f077ce2e1b34c9d7cbf0b5bad6d05d2593d0b577 Mon Sep 17 00:00:00 2001 From: Mike Gerber <mike.gerber@sbb.spk-berlin.de> Date: Thu, 25 May 2023 18:36:46 +0200 Subject: [PATCH 82/82] =?UTF-8?q?=F0=9F=90=9B=20dinglehopper-summarize:=20?= =?UTF-8?q?Handle=20reports=20without=20difference=20stats?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/dinglehopper/cli_summarize.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/dinglehopper/cli_summarize.py b/src/dinglehopper/cli_summarize.py index 0422759..651f367 100644 --- a/src/dinglehopper/cli_summarize.py +++ b/src/dinglehopper/cli_summarize.py @@ -34,10 +34,13 @@ def process(reports_folder, occurrences_threshold=1): cer_sum += cer wer_sum += wer - for key, value in report_data["differences"]["character_level"].items(): - diff_c[key] = diff_c.get(key, 0) + value - for key, value in report_data["differences"]["word_level"].items(): - diff_w[key] = diff_w.get(key, 0) + value + try: + for key, value in report_data["differences"]["character_level"].items(): + diff_c[key] = diff_c.get(key, 0) + value + for key, value in report_data["differences"]["word_level"].items(): + diff_w[key] = diff_w.get(key, 0) + value + except KeyError: + pass if len(cer_list) == 0: click.echo(f"No reports found in folder '{os.path.abspath(reports_folder)}'")