Rename path of index and annotation

Change-Id: Ic9a7d9c8e1df7171e25fa158a2042b08f64649b1
diff --git a/t/annotation/TestInit.pm b/t/annotation/TestInit.pm
new file mode 100644
index 0000000..b03dad2
--- /dev/null
+++ b/t/annotation/TestInit.pm
@@ -0,0 +1,32 @@
+package TestInit;
+use strict;
+use warnings;
+use File::Basename 'dirname';
+use File::Spec::Functions 'catdir';
+use KorAP::XML::Tokenizer;
+use KorAP::XML::Krill;
+
+sub tokens {
+  my $file = shift;
+  my $path = catdir(dirname(__FILE__), 'corpus', 'doc', $file);
+
+  my $doc = KorAP::XML::Krill->new(
+    path => $path . '/'
+  ) or return;
+
+  $doc->parse;
+
+  my $tokens = KorAP::XML::Tokenizer->new(
+    path => $doc->path,
+    doc => $doc,
+    foundry => 'OpenNLP',
+    layer => 'Tokens',
+    name => 'tokens'
+  ) or return;
+
+  $tokens->parse or return;
+
+  return $tokens;
+};
+
+1;
diff --git a/t/annotation/base_paragraphs.t b/t/annotation/base_paragraphs.t
new file mode 100644
index 0000000..e5d0c6b
--- /dev/null
+++ b/t/annotation/base_paragraphs.t
@@ -0,0 +1,26 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use utf8;
+use Test::More;
+use lib 't/annotation';
+use TestInit;
+use Scalar::Util qw/weaken/;
+use Data::Dumper;
+
+ok(my $tokens = TestInit::tokens('0001'), 'Parse tokens');
+
+ok($tokens->add('Base', 'Paragraphs'), 'Add Structure');
+
+my $data = $tokens->to_data->{data};
+
+like($data->{foundries}, qr!base/paragraphs!, 'data');
+is($data->{stream}->[0]->[0], '-:base/paragraphs$<i>1', 'Number of paragraphs');
+is($data->{stream}->[0]->[1], '-:tokens$<i>18', 'Number of tokens');
+is($data->{stream}->[0]->[2], '<>:base/s:t$<b>64<i>0<i>129<i>17<b>0', 'Text');
+is($data->{stream}->[0]->[3], '<>:base/s:p$<b>64<i>0<i>129<i>17<b>1', 'Paragraph');
+is($data->{stream}->[0]->[4], '_0$<i>0<i>3', 'Position');
+
+done_testing;
+
+__END__
diff --git a/t/annotation/base_sentences.t b/t/annotation/base_sentences.t
new file mode 100644
index 0000000..69bb313
--- /dev/null
+++ b/t/annotation/base_sentences.t
@@ -0,0 +1,26 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use utf8;
+use Test::More;
+use lib 't/annotation';
+use TestInit;
+use Scalar::Util qw/weaken/;
+use Data::Dumper;
+
+ok(my $tokens = TestInit::tokens('0001'), 'Parse tokens');
+
+ok($tokens->add('Base', 'Sentences'), 'Add Structure');
+
+my $data = $tokens->to_data->{data};
+
+like($data->{foundries}, qr!base/sentences!, 'data');
+is($data->{stream}->[0]->[0], '-:base/sentences$<i>1', 'Number of paragraphs');
+is($data->{stream}->[0]->[1], '-:tokens$<i>18', 'Number of tokens');
+is($data->{stream}->[0]->[2], '<>:base/s:t$<b>64<i>0<i>129<i>17<b>0', 'Text');
+is($data->{stream}->[0]->[3], '<>:base/s:s$<b>64<i>0<i>129<i>17<b>2', 'Sentence');
+is($data->{stream}->[0]->[4], '_0$<i>0<i>3', 'Position');
+
+done_testing;
+
+__END__
diff --git a/t/annotation/connexor_morpho.t b/t/annotation/connexor_morpho.t
new file mode 100644
index 0000000..de0f704
--- /dev/null
+++ b/t/annotation/connexor_morpho.t
@@ -0,0 +1,31 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use utf8;
+use Test::More;
+use lib 't/annotation';
+use TestInit;
+use Scalar::Util qw/weaken/;
+use Data::Dumper;
+
+ok(my $tokens = TestInit::tokens('0001'), 'Parse tokens');
+
+ok($tokens->add('Connexor', 'Morpho'), 'Add Structure');
+
+my $data = $tokens->to_data->{data};
+like($data->{foundries}, qr!connexor/morpho!, 'data');
+is($data->{stream}->[0]->[1], '<>:base/s:t$<b>64<i>0<i>129<i>17<b>0', 'Text boundary');
+is($data->{stream}->[0]->[2], '_0$<i>0<i>3', 'Position');
+is($data->{stream}->[1]->[1], 'cnx/l:letzt', 'Lemma');
+is($data->{stream}->[1]->[2], 'cnx/p:A', 'POS');
+is($data->{stream}->[2]->[1], 'cnx/l:kulturell', 'Lemma');
+is($data->{stream}->[2]->[2], 'cnx/p:A', 'POS');
+is($data->{stream}->[4]->[2], 'cnx/m:IND', 'Morpho');
+is($data->{stream}->[4]->[3], 'cnx/m:PRES', 'Morpho');
+
+is($data->{stream}->[-1]->[2], 'cnx/m:IND', 'Morpho');
+is($data->{stream}->[-1]->[3], 'cnx/m:PRES', 'Morpho');
+
+done_testing;
+
+__END__
diff --git a/t/annotation/connexor_phrase.t b/t/annotation/connexor_phrase.t
new file mode 100644
index 0000000..a2cf6e3
--- /dev/null
+++ b/t/annotation/connexor_phrase.t
@@ -0,0 +1,23 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use utf8;
+use Test::More;
+use lib 't/annotation';
+use TestInit;
+use Scalar::Util qw/weaken/;
+use Data::Dumper;
+
+ok(my $tokens = TestInit::tokens('0001'), 'Parse tokens');
+
+ok($tokens->add('Connexor', 'Phrase'), 'Add Structure');
+
+my $data = $tokens->to_data->{data};
+
+like($data->{foundries}, qr!connexor/phrase!, 'data');
+is($data->{stream}->[0]->[1], '<>:base/s:t$<b>64<i>0<i>129<i>17<b>0', 'Text boundary');
+is($data->{stream}->[1]->[0], '<>:cnx/c:np$<b>64<i>4<i>30<i>4<b>0', 'Noun phrase');
+
+done_testing;
+
+__END__
diff --git a/t/annotation/connexor_sentences.t b/t/annotation/connexor_sentences.t
new file mode 100644
index 0000000..f03cec0
--- /dev/null
+++ b/t/annotation/connexor_sentences.t
@@ -0,0 +1,51 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use utf8;
+use Test::More;
+use Scalar::Util qw/weaken/;
+use Data::Dumper;
+
+use_ok('KorAP::XML::Krill');
+
+use File::Basename 'dirname';
+use File::Spec::Functions 'catdir';
+
+my $path = catdir(dirname(__FILE__), 'corpus', 'doc', '0001');
+
+ok(my $doc = KorAP::XML::Krill->new(
+  path => $path . '/'
+), 'Load Korap::Document');
+
+like($doc->path, qr!$path/$!, 'Path');
+ok($doc->parse, 'Parse document');
+
+ok($doc->primary->data, 'Primary data in existence');
+is($doc->primary->data_length, 129, 'Data length');
+
+use_ok('KorAP::XML::Tokenizer');
+
+ok(my $tokens = KorAP::XML::Tokenizer->new(
+  path => $doc->path,
+  doc => $doc,
+  foundry => 'OpenNLP',
+  layer => 'Tokens',
+  name => 'tokens'
+), 'New Tokenizer');
+
+ok($tokens->parse, 'Parse');
+
+ok($tokens->add('Connexor', 'Sentences'), 'Add Structure');
+
+my $data = $tokens->to_data->{data};
+
+like($data->{foundries}, qr!connexor/sentences!, 'data');
+is($data->{stream}->[0]->[0], '-:cnx/sentences$<i>1', 'Number of paragraphs');
+is($data->{stream}->[0]->[1], '-:tokens$<i>18', 'Number of tokens');
+is($data->{stream}->[0]->[2], '<>:base/s:t$<b>64<i>0<i>129<i>17<b>0', 'Text boundary');
+is($data->{stream}->[0]->[3], '<>:cnx/s:s$<b>64<i>0<i>129<i>17<b>0', 'Sentence');
+is($data->{stream}->[0]->[4], '_0$<i>0<i>3', 'Position');
+
+done_testing;
+
+__END__
diff --git a/t/annotation/connexor_syntax.t b/t/annotation/connexor_syntax.t
new file mode 100644
index 0000000..c94fc58
--- /dev/null
+++ b/t/annotation/connexor_syntax.t
@@ -0,0 +1,23 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use utf8;
+use Test::More;
+use Scalar::Util qw/weaken/;
+use Data::Dumper;
+use lib 't/annotation';
+use TestInit;
+
+ok(my $tokens = TestInit::tokens('0001'), 'Parse tokens');
+
+ok($tokens->add('Connexor', 'Syntax'), 'Add Structure');
+
+my $data = $tokens->to_data->{data};
+like($data->{foundries}, qr!connexor/syntax!, 'data');
+like($data->{layerInfos}, qr!cnx/syn=tokens!, 'data');
+is($data->{stream}->[1]->[1], 'cnx/syn:@PREMOD', 'Syntax');
+is($data->{stream}->[2]->[1], 'cnx/syn:@PREMOD', 'Syntax');
+
+done_testing;
+
+__END__
diff --git a/t/annotation/corenlp_constituency.t b/t/annotation/corenlp_constituency.t
new file mode 100644
index 0000000..4198ede
--- /dev/null
+++ b/t/annotation/corenlp_constituency.t
@@ -0,0 +1,27 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use utf8;
+use Test::More;
+use Scalar::Util qw/weaken/;
+use Data::Dumper;
+use lib 't/annotation';
+use TestInit;
+
+ok(my $tokens = TestInit::tokens('0001'), 'Parse tokens');
+
+ok($tokens->add('CoreNLP', 'Constituency'), 'Add Structure');
+
+my $data = $tokens->to_data->{data};
+
+like($data->{foundries}, qr!corenlp/constituency!, 'data');
+like($data->{layerInfos}, qr!corenlp/c=spans!, 'data');
+
+is($data->{stream}->[0]->[1], '<>:corenlp/c:CNP$<b>64<i>0<i>16<i>2<b>2', 'Noun phrase');
+is($data->{stream}->[0]->[2], '<>:corenlp/c:ROOT$<b>64<i>0<i>42<i>6<b>0', 'Noun phrase');
+is($data->{stream}->[0]->[3], '<>:corenlp/c:NP$<b>64<i>0<i>42<i>6<b>1', 'Noun phrase');
+
+done_testing;
+
+__END__
+
diff --git a/t/annotation/corenlp_ent.t b/t/annotation/corenlp_ent.t
new file mode 100644
index 0000000..30e8081
--- /dev/null
+++ b/t/annotation/corenlp_ent.t
@@ -0,0 +1,27 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use utf8;
+use Test::More;
+use Scalar::Util qw/weaken/;
+use Data::Dumper;
+use lib 't/annotation';
+use TestInit;
+
+ok(my $tokens = TestInit::tokens('0001'), 'Parse tokens');
+
+ok($tokens->add('CoreNLP', 'NamedEntities', 'ne_dewac_175m_600'), 'Add Structure');
+
+my $data = $tokens->to_data->{data};
+
+like($data->{foundries}, qr!corenlp/namedentities!, 'data');
+like($data->{foundries}, qr!corenlp/namedentities/ne_dewac_175m_600!, 'data');
+like($data->{layerInfos}, qr!corenlp/ne=tokens!, 'layerInfos');
+is($data->{stream}->[0]->[0], '-:tokens$<i>18', 'Number of tokens');
+is($data->{stream}->[9]->[0], '_9$<i>64<i>73', 'Position of NE');
+is($data->{stream}->[9]->[1], 'corenlp/ne:I-LOC', 'Position of NE');
+is($data->{stream}->[9]->[2], 'i:hofbergli', 'Position of NE');
+
+done_testing;
+
+__END__
diff --git a/t/annotation/corenlp_morpho.t b/t/annotation/corenlp_morpho.t
new file mode 100644
index 0000000..ec6e518
--- /dev/null
+++ b/t/annotation/corenlp_morpho.t
@@ -0,0 +1,25 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use utf8;
+use Test::More;
+use Scalar::Util qw/weaken/;
+use Data::Dumper;
+use lib 't/annotation';
+use TestInit;
+
+ok(my $tokens = TestInit::tokens('0001'), 'Parse tokens');
+
+ok($tokens->add('CoreNLP', 'Morpho'), 'Add Structure');
+
+my $data = $tokens->to_data->{data};
+like($data->{foundries}, qr!corenlp/morpho!, 'data');
+like($data->{layerInfos}, qr!corenlp/p=tokens!, 'data');
+is($data->{stream}->[0]->[1], '<>:base/s:t$<b>64<i>0<i>129<i>17<b>0', 'Text boundary');
+is($data->{stream}->[0]->[3], 'corenlp/p:APPRART', 'POS');
+is($data->{stream}->[1]->[1], 'corenlp/p:ADJ', 'POS');
+is($data->{stream}->[2]->[1], 'corenlp/p:ADJA', 'POS');
+
+done_testing;
+
+__END__
diff --git a/t/annotation/corenlp_sentences.t b/t/annotation/corenlp_sentences.t
new file mode 100644
index 0000000..b9e9b75
--- /dev/null
+++ b/t/annotation/corenlp_sentences.t
@@ -0,0 +1,27 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use utf8;
+use Test::More;
+use Scalar::Util qw/weaken/;
+use Data::Dumper;
+use lib 't/annotation';
+use TestInit;
+
+ok(my $tokens = TestInit::tokens('0001'), 'Parse tokens');
+
+ok($tokens->add('CoreNLP', 'Sentences'), 'Add Structure');
+
+my $data = $tokens->to_data->{data};
+
+like($data->{foundries}, qr!corenlp/sentences!, 'data');
+is($data->{stream}->[0]->[0], '-:corenlp/sentences$<i>1', 'Number of paragraphs');
+is($data->{stream}->[0]->[1], '-:tokens$<i>18', 'Number of tokens');
+is($data->{stream}->[0]->[2], '<>:base/s:t$<b>64<i>0<i>129<i>17<b>0', 'Text boundary');
+is($data->{stream}->[0]->[3], '<>:corenlp/s:s$<b>64<i>0<i>129<i>17<b>0', 'Text');
+is($data->{stream}->[0]->[4], '_0$<i>0<i>3', 'Position');
+is($data->{stream}->[-1]->[0], '_17$<i>124<i>128', 'Position');
+
+done_testing;
+
+__END__
diff --git a/t/annotation/corpus/doc/0001/base/paragraph.xml b/t/annotation/corpus/doc/0001/base/paragraph.xml
new file mode 100644
index 0000000..93d479f
--- /dev/null
+++ b/t/annotation/corpus/doc/0001/base/paragraph.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="span.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+
+<layer docid="Corpus_Doc.0001" xmlns="http://ids-mannheim.de/ns/KorAP" version="KorAP-0.4">
+  <spanList>
+    <span from="0" to="129" />
+  </spanList>
+</layer>
diff --git a/t/annotation/corpus/doc/0001/base/sentences.xml b/t/annotation/corpus/doc/0001/base/sentences.xml
new file mode 100644
index 0000000..93d479f
--- /dev/null
+++ b/t/annotation/corpus/doc/0001/base/sentences.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="span.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+
+<layer docid="Corpus_Doc.0001" xmlns="http://ids-mannheim.de/ns/KorAP" version="KorAP-0.4">
+  <spanList>
+    <span from="0" to="129" />
+  </spanList>
+</layer>
diff --git a/t/annotation/corpus/doc/0001/connexor/morpho.xml b/t/annotation/corpus/doc/0001/connexor/morpho.xml
new file mode 100644
index 0000000..3d36c46
--- /dev/null
+++ b/t/annotation/corpus/doc/0001/connexor/morpho.xml
@@ -0,0 +1,221 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="span.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+
+<layer xmlns="http://ids-mannheim.de/ns/KorAP" version="KorAP-0.4" docid="Corpus_Doc.00001">
+  <spanList>
+    <span id="s8" from="0" to="2">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">zu</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s9" from="2" to="3">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">der</f>
+            <f name="pos">DET</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s10" from="4" to="11">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">letzt</f>
+            <f name="pos">A</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s11" from="12" to="23">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">kulturell</f>
+            <f name="pos">A</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s12" from="24" to="30">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">anlass</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s13" from="31" to="35">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">laden</f>
+            <f name="pos">V</f>
+            <f name="msd">IND:PRES</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s14" from="36" to="39">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">die</f>
+            <f name="pos">DET</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s15" from="40" to="47">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">leitung</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s16" from="48" to="51">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">das</f>
+            <f name="pos">DET</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s17" from="52" to="63">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">schul heim</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s18" from="64" to="73">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Hofbergli</f>
+            <f name="pos">N</f>
+            <f name="msd">Prop</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s19" from="74" to="77">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">ein</f>
+            <f name="pos">NUM</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s20" from="77" to="78">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">,</f>
+            <f name="pos"></f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s21" from="79" to="84">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">bevor</f>
+            <f name="pos">CS</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s22" from="85" to="88">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">der</f>
+            <f name="pos">DET</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s23" from="89" to="96">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">betrieb</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s24" from="97" to="101">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">ende</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s25" from="102" to="111">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">schule jahr</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s26" from="112" to="123">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">ein stellen</f>
+            <f name="pos">V</f>
+            <f name="msd">PCP:PERF</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s27" from="124" to="128">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">werden</f>
+            <f name="pos">V</f>
+            <f name="msd">IND:PRES</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s28" from="128" to="129">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">.</f>
+            <f name="pos"></f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+  </spanList>
+</layer>
diff --git a/t/annotation/corpus/doc/0001/connexor/phrase.xml b/t/annotation/corpus/doc/0001/connexor/phrase.xml
new file mode 100644
index 0000000..20c92a2
--- /dev/null
+++ b/t/annotation/corpus/doc/0001/connexor/phrase.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="span.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+
+<layer xmlns="http://ids-mannheim.de/ns/KorAP" version="KorAP-0.4" docid="Corpus_Doc.00001">
+  <spanList>
+    <span from="4" to="30">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="40" to="47">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="52" to="73">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="89" to="111">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+  </spanList>
+</layer>
diff --git a/t/annotation/corpus/doc/0001/connexor/sentences.xml b/t/annotation/corpus/doc/0001/connexor/sentences.xml
new file mode 100644
index 0000000..505a404
--- /dev/null
+++ b/t/annotation/corpus/doc/0001/connexor/sentences.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="span.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+
+<layer xmlns="http://ids-mannheim.de/ns/KorAP" version="KorAP-0.4" docid="Corpus_Doc.00001">
+  <spanList>
+    <span from="0" to="129" />
+  </spanList>
+</layer>
diff --git a/t/annotation/corpus/doc/0001/connexor/syntax.xml b/t/annotation/corpus/doc/0001/connexor/syntax.xml
new file mode 100644
index 0000000..2e05306
--- /dev/null
+++ b/t/annotation/corpus/doc/0001/connexor/syntax.xml
@@ -0,0 +1,207 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="span.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+
+<layer xmlns="http://ids-mannheim.de/ns/KorAP" version="KorAP-0.4" docid="Corpus_Doc.00001">
+  <spanList>
+    <span id="s8" from="0" to="2">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">zu</f>
+            <f name="pos">@PREMARK</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s9" from="2" to="3">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">der</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s10" from="4" to="11">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">letzt</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s11" from="12" to="23">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">kulturell</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s12" from="24" to="30">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">anlass</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s13" from="31" to="35">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">laden</f>
+            <f name="pos">@MAIN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s14" from="36" to="39">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">die</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s15" from="40" to="47">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">leitung</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s16" from="48" to="51">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">das</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s17" from="52" to="63">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">schul heim</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s18" from="64" to="73">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Hofbergli</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s19" from="74" to="77">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">ein</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s20" from="77" to="78">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">,</f>
+            <f name="pos"></f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s21" from="79" to="84">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">bevor</f>
+            <f name="pos">@PREMARK</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s22" from="85" to="88">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">der</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s23" from="89" to="96">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">betrieb</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s24" from="97" to="101">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">ende</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s25" from="102" to="111">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">schule jahr</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s26" from="112" to="123">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">ein stellen</f>
+            <f name="pos">@MAIN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s27" from="124" to="128">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">werden</f>
+            <f name="pos">@AUX</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+  </spanList>
+</layer>
diff --git a/t/annotation/corpus/doc/0001/corenlp/constituency.xml b/t/annotation/corpus/doc/0001/corenlp/constituency.xml
new file mode 100644
index 0000000..895c732
--- /dev/null
+++ b/t/annotation/corpus/doc/0001/corenlp/constituency.xml
@@ -0,0 +1,182 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="span.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+
+<layer xmlns="http://ids-mannheim.de/ns/KorAP" docid="Corpus_Doc.00001" version="KorAP-0.4">
+   <spanList>
+      <span id="s1_n1" from="0" to="42">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ROOT</f>
+         </fs>
+         <rel label="dominates" target="s1_n2"/>
+      </span>
+      <span id="s1_n2" from="0" to="42">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NP</f>
+         </fs>
+         <rel label="dominates" target="s1_n3"/>
+         <rel label="dominates" target="s1_n10"/>
+         <rel label="dominates" uri="morpho.xml#s1_n17"/>
+      </span>
+      <span id="s1_n3" from="0" to="16">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">CNP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s1_n4"/>
+         <rel label="dominates" uri="morpho.xml#s1_n6"/>
+         <rel label="dominates" uri="morpho.xml#s1_n8"/>
+      </span>
+      <span id="s1_n4" from="0" to="7">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NE</f>
+         </fs>
+      </span>
+      <span id="s1_n6" from="8" to="11">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">KON</f>
+         </fs>
+      </span>
+      <span id="s1_n8" from="12" to="16">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s1_n10" from="17" to="41">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">PP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s1_n11"/>
+         <rel label="dominates" uri="morpho.xml#s1_n13"/>
+         <rel label="dominates" uri="morpho.xml#s1_n15"/>
+      </span>
+      <span id="s1_n11" from="17" to="19">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">APPRART</f>
+         </fs>
+      </span>
+      <span id="s1_n13" from="20" to="31">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s1_n15" from="32" to="41">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NE</f>
+         </fs>
+      </span>
+      <span id="s1_n17" from="41" to="42">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">$.</f>
+         </fs>
+      </span>
+<!--
+      <span id="s2_n1" from="43" to="172">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ROOT</f>
+         </fs>
+         <rel label="dominates" target="s2_n2"/>
+      </span>
+      <span id="s2_n2" from="43" to="172">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">S</f>
+         </fs>
+         <rel label="dominates" target="s2_n3"/>
+         <rel label="dominates" uri="morpho.xml#s2_n12"/>
+         <rel label="dominates" target="s2_n14"/>
+         <rel label="dominates" uri="morpho.xml#s2_n26"/>
+         <rel label="dominates" uri="morpho.xml#s2_n28"/>
+         <rel label="dominates" target="s2_n30"/>
+         <rel label="dominates" uri="morpho.xml#s2_n48"/>
+      </span>
+-->
+      <span id="s2_n3" from="43" to="73">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">PP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s2_n4"/>
+         <rel label="dominates" uri="morpho.xml#s2_n6"/>
+         <rel label="dominates" uri="morpho.xml#s2_n8"/>
+         <rel label="dominates" uri="morpho.xml#s2_n10"/>
+      </span>
+      <span id="s2_n4" from="43" to="46">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">APPRART</f>
+         </fs>
+      </span>
+      <span id="s2_n6" from="47" to="54">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ADJA</f>
+         </fs>
+      </span>
+      <span id="s2_n8" from="55" to="66">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ADJA</f>
+         </fs>
+      </span>
+      <span id="s2_n10" from="67" to="73">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s2_n12" from="74" to="78">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">VVFIN</f>
+         </fs>
+      </span>
+      <span id="s2_n14" from="79" to="116">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NP-SB</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s2_n15"/>
+         <rel label="dominates" uri="morpho.xml#s2_n17"/>
+         <rel label="dominates" target="s2_n19"/>
+      </span>
+      <span id="s2_n15" from="79" to="82">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ART</f>
+         </fs>
+      </span>
+      <span id="s2_n17" from="83" to="90">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s2_n19" from="91" to="116">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s2_n20"/>
+         <rel label="dominates" uri="morpho.xml#s2_n22"/>
+         <rel label="dominates" uri="morpho.xml#s2_n24"/>
+      </span>
+      <span id="s2_n20" from="91" to="94">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ART</f>
+         </fs>
+      </span>
+      <span id="s2_n22" from="95" to="106">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s2_n24" from="107" to="116">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NE</f>
+         </fs>
+      </span>
+      <span id="s2_n26" from="117" to="120">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">PTKVZ</f>
+         </fs>
+      </span>
+      <span id="s2_n28" from="120" to="121">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">$,</f>
+         </fs>
+      </span>
+      <span id="s2_n31" from="122" to="127">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">KOUS</f>
+         </fs>
+      </span>
+   </spanList>
+</layer>
diff --git a/t/annotation/corpus/doc/0001/corenlp/morpho.xml b/t/annotation/corpus/doc/0001/corenlp/morpho.xml
new file mode 100644
index 0000000..559d25b
--- /dev/null
+++ b/t/annotation/corpus/doc/0001/corenlp/morpho.xml
@@ -0,0 +1,187 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="span.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+
+<layer xmlns="http://ids-mannheim.de/ns/KorAP" docid="Corpus_Doc.0001" version="KorAP-0.4">
+   <spanList>
+      <span id="s2_n4" from="0" to="3">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">APPRART</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s2_n6" from="4" to="11">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">ADJ</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s2_n8" from="12" to="23">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">ADJA</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s2_n10" from="24" to="30">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">NN</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s2_n12" from="31" to="35">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">VVFIN</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s2_n15" from="36" to="39">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">ART</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s2_n17" from="40" to="47">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">NN</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s2_n20" from="48" to="51">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">ART</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s2_n22" from="52" to="63">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">NN</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s2_n24" from="64" to="73">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">NE</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s2_n26" from="74" to="77">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">PTKVZ</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s2_n28" from="77" to="78">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">$,</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s2_n31" from="79" to="84">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">KOUS</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s2_n34" from="85" to="88">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">ART</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s2_n36" from="89" to="96">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">NN</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s2_n40" from="97" to="101">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">NN</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s2_n42" from="102" to="111">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">NN</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s2_n44" from="112" to="123">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">VVPP</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s2_n46" from="124" to="128">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">VAFIN</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s2_n48" from="128" to="129">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">$.</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+   </spanList>
+</layer>
diff --git a/t/annotation/corpus/doc/0001/corenlp/ne_dewac_175m_600.xml b/t/annotation/corpus/doc/0001/corenlp/ne_dewac_175m_600.xml
new file mode 100644
index 0000000..6359ac8
--- /dev/null
+++ b/t/annotation/corpus/doc/0001/corenlp/ne_dewac_175m_600.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="span.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+
+<layer xmlns="http://ids-mannheim.de/ns/KorAP" docid="ART_00001" version="KorAP-0.4">
+   <spanList>
+      <span id="s_18" from="64" to="73">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-LOC</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+   </spanList>
+</layer>
diff --git a/t/annotation/corpus/doc/0001/corenlp/ne_hgc_175m_600.xml b/t/annotation/corpus/doc/0001/corenlp/ne_hgc_175m_600.xml
new file mode 100644
index 0000000..6359ac8
--- /dev/null
+++ b/t/annotation/corpus/doc/0001/corenlp/ne_hgc_175m_600.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="span.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+
+<layer xmlns="http://ids-mannheim.de/ns/KorAP" docid="ART_00001" version="KorAP-0.4">
+   <spanList>
+      <span id="s_18" from="64" to="73">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-LOC</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+   </spanList>
+</layer>
diff --git a/t/annotation/corpus/doc/0001/corenlp/sentences.xml b/t/annotation/corpus/doc/0001/corenlp/sentences.xml
new file mode 100644
index 0000000..f0a9d0a
--- /dev/null
+++ b/t/annotation/corpus/doc/0001/corenlp/sentences.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="span.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+
+<layer xmlns="http://ids-mannheim.de/ns/KorAP" docid="Corpus_Doc.0001" version="KorAP-0.4">
+   <spanList>
+      <span from="0" to="129"/>
+   </spanList>
+</layer>
diff --git a/t/annotation/corpus/doc/0001/corenlp/tokens.xml b/t/annotation/corpus/doc/0001/corenlp/tokens.xml
new file mode 100644
index 0000000..78f562b
--- /dev/null
+++ b/t/annotation/corpus/doc/0001/corenlp/tokens.xml
@@ -0,0 +1,226 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="span.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+
+<layer xmlns="http://ids-mannheim.de/ns/KorAP" docid="A01_APR.13047" version="KorAP-0.4">
+   <spanList>
+      <span id="s1_n4" from="0" to="7"/>
+      <span id="s1_n6" from="8" to="11"/>
+      <span id="s1_n8" from="12" to="16"/>
+      <span id="s1_n11" from="17" to="19"/>
+      <span id="s1_n13" from="20" to="31"/>
+      <span id="s1_n15" from="32" to="41"/>
+      <span id="s1_n17" from="41" to="42"/>
+      <span id="s2_n4" from="43" to="46"/>
+      <span id="s2_n6" from="47" to="54"/>
+      <span id="s2_n8" from="55" to="66"/>
+      <span id="s2_n10" from="67" to="73"/>
+      <span id="s2_n12" from="74" to="78"/>
+      <span id="s2_n15" from="79" to="82"/>
+      <span id="s2_n17" from="83" to="90"/>
+      <span id="s2_n20" from="91" to="94"/>
+      <span id="s2_n22" from="95" to="106"/>
+      <span id="s2_n24" from="107" to="116"/>
+      <span id="s2_n26" from="117" to="120"/>
+      <span id="s2_n28" from="120" to="121"/>
+      <span id="s2_n31" from="122" to="127"/>
+      <span id="s2_n34" from="128" to="131"/>
+      <span id="s2_n36" from="132" to="139"/>
+      <span id="s2_n40" from="140" to="144"/>
+      <span id="s2_n42" from="145" to="154"/>
+      <span id="s2_n44" from="155" to="166"/>
+      <span id="s2_n46" from="167" to="171"/>
+      <span id="s2_n48" from="171" to="172"/>
+      <span id="s3_n4" from="173" to="175"/>
+      <span id="s3_n6" from="176" to="185"/>
+      <span id="s3_n9" from="186" to="193"/>
+      <span id="s3_n11" from="193" to="194"/>
+      <span id="s3_n13" from="195" to="196"/>
+      <span id="s3_n15" from="196" to="197"/>
+      <span id="s4_n3" from="198" to="203"/>
+      <span id="s4_n5" from="203" to="204"/>
+      <span id="s4_n7" from="205" to="211"/>
+      <span id="s4_n13" from="212" to="214"/>
+      <span id="s4_n15" from="215" to="220"/>
+      <span id="s4_n17" from="221" to="224"/>
+      <span id="s4_n20" from="225" to="228"/>
+      <span id="s4_n22" from="229" to="239"/>
+      <span id="s4_n25" from="240" to="243"/>
+      <span id="s4_n27" from="244" to="255"/>
+      <span id="s4_n31" from="256" to="259"/>
+      <span id="s4_n34" from="260" to="266"/>
+      <span id="s4_n36" from="267" to="274"/>
+      <span id="s4_n41" from="275" to="276"/>
+      <span id="s4_n43" from="276" to="282"/>
+      <span id="s4_n47" from="282" to="283"/>
+      <span id="s4_n49" from="284" to="287"/>
+      <span id="s4_n52" from="288" to="293"/>
+      <span id="s4_n54" from="294" to="298"/>
+      <span id="s4_n57" from="299" to="300"/>
+      <span id="s4_n59" from="300" to="313"/>
+      <span id="s4_n61" from="314" to="317"/>
+      <span id="s4_n63" from="318" to="331"/>
+      <span id="s4_n65" from="331" to="332"/>
+      <span id="s4_n68" from="333" to="335"/>
+      <span id="s4_n70" from="336" to="345"/>
+      <span id="s4_n72" from="346" to="357"/>
+      <span id="s4_n74" from="358" to="363"/>
+      <span id="s4_n76" from="363" to="364"/>
+      <span id="s5_n5" from="365" to="368"/>
+      <span id="s5_n7" from="369" to="372"/>
+      <span id="s5_n9" from="373" to="385"/>
+      <span id="s5_n11" from="386" to="395"/>
+      <span id="s5_n13" from="396" to="402"/>
+      <span id="s5_n17" from="403" to="409"/>
+      <span id="s5_n19" from="410" to="416"/>
+      <span id="s5_n21" from="417" to="420"/>
+      <span id="s5_n24" from="421" to="425"/>
+      <span id="s5_n26" from="426" to="432"/>
+      <span id="s5_n28" from="432" to="433"/>
+      <span id="s5_n32" from="434" to="445"/>
+      <span id="s5_n34" from="446" to="451"/>
+      <span id="s5_n36" from="452" to="459"/>
+      <span id="s5_n39" from="460" to="465"/>
+      <span id="s5_n41" from="466" to="476"/>
+      <span id="s5_n43" from="476" to="477"/>
+      <span id="s6_n4" from="478" to="481"/>
+      <span id="s6_n6" from="482" to="493"/>
+      <span id="s6_n8" from="494" to="500"/>
+      <span id="s6_n12" from="501" to="504"/>
+      <span id="s6_n14" from="505" to="507"/>
+      <span id="s6_n16" from="508" to="510"/>
+      <span id="s6_n18" from="510" to="511"/>
+      <span id="s7_n5" from="512" to="517"/>
+      <span id="s7_n7" from="518" to="521"/>
+      <span id="s7_n10" from="522" to="525"/>
+      <span id="s7_n14" from="526" to="528"/>
+      <span id="s7_n16" from="529" to="536"/>
+      <span id="s7_n19" from="537" to="540"/>
+      <span id="s7_n22" from="541" to="548"/>
+      <span id="s7_n25" from="549" to="552"/>
+      <span id="s7_n28" from="553" to="558"/>
+      <span id="s7_n30" from="559" to="562"/>
+      <span id="s7_n32" from="563" to="568"/>
+      <span id="s7_n34" from="569" to="572"/>
+      <span id="s7_n36" from="573" to="578"/>
+      <span id="s7_n39" from="579" to="585"/>
+      <span id="s7_n42" from="586" to="589"/>
+      <span id="s7_n44" from="590" to="597"/>
+      <span id="s7_n47" from="598" to="601"/>
+      <span id="s7_n50" from="602" to="607"/>
+      <span id="s7_n52" from="608" to="611"/>
+      <span id="s7_n54" from="612" to="617"/>
+      <span id="s7_n56" from="617" to="620"/>
+      <span id="s7_n58" from="621" to="632"/>
+      <span id="s7_n60" from="632" to="633"/>
+      <span id="s8_n3" from="634" to="642"/>
+      <span id="s8_n6" from="643" to="658"/>
+      <span id="s8_n8" from="659" to="663"/>
+      <span id="s8_n10" from="663" to="664"/>
+      <span id="s9_n4" from="665" to="668"/>
+      <span id="s9_n6" from="669" to="689"/>
+      <span id="s9_n8" from="690" to="695"/>
+      <span id="s9_n10" from="696" to="699"/>
+      <span id="s9_n12" from="699" to="700"/>
+      <span id="s9_n15" from="701" to="705"/>
+      <span id="s9_n18" from="706" to="713"/>
+      <span id="s9_n20" from="714" to="724"/>
+      <span id="s9_n24" from="725" to="729"/>
+      <span id="s9_n26" from="730" to="747"/>
+      <span id="s9_n29" from="748" to="751"/>
+      <span id="s9_n31" from="752" to="755"/>
+      <span id="s9_n33" from="756" to="774"/>
+      <span id="s9_n35" from="775" to="784"/>
+      <span id="s9_n37" from="785" to="788"/>
+      <span id="s9_n39" from="788" to="789"/>
+      <span id="s10_n4" from="790" to="793"/>
+      <span id="s10_n6" from="794" to="797"/>
+      <span id="s10_n9" from="798" to="802"/>
+      <span id="s10_n11" from="803" to="806"/>
+      <span id="s10_n13" from="807" to="816"/>
+      <span id="s10_n15" from="817" to="826"/>
+      <span id="s10_n17" from="827" to="831"/>
+      <span id="s10_n19" from="832" to="835"/>
+      <span id="s10_n22" from="836" to="839"/>
+      <span id="s10_n24" from="840" to="845"/>
+      <span id="s10_n26" from="846" to="850"/>
+      <span id="s10_n29" from="851" to="864"/>
+      <span id="s10_n31" from="864" to="865"/>
+      <span id="s11_n4" from="866" to="869"/>
+      <span id="s11_n6" from="870" to="875"/>
+      <span id="s11_n8" from="876" to="892"/>
+      <span id="s11_n10" from="893" to="898"/>
+      <span id="s11_n13" from="899" to="902"/>
+      <span id="s11_n15" from="903" to="909"/>
+      <span id="s11_n18" from="910" to="913"/>
+      <span id="s11_n20" from="914" to="927"/>
+      <span id="s11_n24" from="928" to="935"/>
+      <span id="s11_n26" from="936" to="947"/>
+      <span id="s11_n28" from="947" to="948"/>
+      <span id="s11_n32" from="949" to="957"/>
+      <span id="s11_n34" from="958" to="962"/>
+      <span id="s11_n36" from="962" to="963"/>
+      <span id="s11_n38" from="964" to="986"/>
+      <span id="s11_n40" from="986" to="987"/>
+      <span id="s11_n42" from="988" to="995"/>
+      <span id="s11_n44" from="995" to="996"/>
+      <span id="s11_n47" from="997" to="1007"/>
+      <span id="s11_n49" from="1007" to="1008"/>
+      <span id="s12_n4" from="1009" to="1025"/>
+      <span id="s12_n7" from="1026" to="1029"/>
+      <span id="s12_n9" from="1030" to="1036"/>
+      <span id="s12_n11" from="1037" to="1049"/>
+      <span id="s12_n13" from="1049" to="1050"/>
+      <span id="s13_n4" from="1051" to="1054"/>
+      <span id="s13_n6" from="1055" to="1056"/>
+      <span id="s13_n9" from="1056" to="1064"/>
+      <span id="s13_n11" from="1065" to="1070"/>
+      <span id="s13_n13" from="1070" to="1071"/>
+      <span id="s13_n15" from="1072" to="1076"/>
+      <span id="s13_n18" from="1077" to="1079"/>
+      <span id="s13_n20" from="1080" to="1085"/>
+      <span id="s13_n22" from="1086" to="1090"/>
+      <span id="s13_n24" from="1091" to="1094"/>
+      <span id="s13_n26" from="1094" to="1095"/>
+      <span id="s13_n31" from="1096" to="1098"/>
+      <span id="s13_n33" from="1099" to="1102"/>
+      <span id="s13_n36" from="1103" to="1109"/>
+      <span id="s13_n38" from="1110" to="1122"/>
+      <span id="s13_n40" from="1123" to="1129"/>
+      <span id="s13_n42" from="1130" to="1134"/>
+      <span id="s13_n44" from="1134" to="1135"/>
+      <span id="s13_n47" from="1136" to="1139"/>
+      <span id="s13_n50" from="1140" to="1143"/>
+      <span id="s13_n54" from="1144" to="1152"/>
+      <span id="s13_n56" from="1153" to="1156"/>
+      <span id="s13_n58" from="1157" to="1168"/>
+      <span id="s13_n60" from="1169" to="1177"/>
+      <span id="s13_n65" from="1177" to="1178"/>
+      <span id="s13_n67" from="1179" to="1182"/>
+      <span id="s13_n69" from="1183" to="1195"/>
+      <span id="s13_n72" from="1196" to="1199"/>
+      <span id="s13_n74" from="1200" to="1207"/>
+      <span id="s13_n76" from="1208" to="1214"/>
+      <span id="s13_n78" from="1215" to="1219"/>
+      <span id="s13_n80" from="1219" to="1220"/>
+      <span id="s14_n4" from="1221" to="1224"/>
+      <span id="s14_n6" from="1225" to="1237"/>
+      <span id="s14_n8" from="1238" to="1243"/>
+      <span id="s14_n10" from="1244" to="1247"/>
+      <span id="s14_n12" from="1248" to="1252"/>
+      <span id="s14_n14" from="1253" to="1258"/>
+      <span id="s14_n17" from="1259" to="1262"/>
+      <span id="s14_n20" from="1263" to="1268"/>
+      <span id="s14_n22" from="1269" to="1274"/>
+      <span id="s14_n24" from="1274" to="1275"/>
+      <span id="s14_n27" from="1276" to="1280"/>
+      <span id="s14_n30" from="1281" to="1284"/>
+      <span id="s14_n32" from="1285" to="1287"/>
+      <span id="s14_n34" from="1288" to="1290"/>
+      <span id="s14_n36" from="1290" to="1291"/>
+      <span id="s15_n4" from="1292" to="1295"/>
+      <span id="s15_n6" from="1296" to="1310"/>
+      <span id="s15_n8" from="1311" to="1314"/>
+      <span id="s15_n10" from="1315" to="1326"/>
+      <span id="s15_n12" from="1326" to="1327"/>
+   </spanList>
+</layer>
diff --git a/t/annotation/corpus/doc/0001/data.xml b/t/annotation/corpus/doc/0001/data.xml
new file mode 100644
index 0000000..3a12d04
--- /dev/null
+++ b/t/annotation/corpus/doc/0001/data.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="text.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+
+<raw_text docid="Corpus_Doc.0001" xmlns="http://ids-mannheim.de/ns/KorAP">
+  <metadata file="metadata.xml" />
+  <text>Zum letzten kulturellen Anlass lädt die Leitung des Schulheimes Hofbergli ein, bevor der Betrieb Ende Schuljahr eingestellt wird.</text>
+</raw_text>
diff --git a/t/annotation/corpus/doc/0001/glemm/glemm.xml b/t/annotation/corpus/doc/0001/glemm/glemm.xml
new file mode 100644
index 0000000..02a95d1
--- /dev/null
+++ b/t/annotation/corpus/doc/0001/glemm/glemm.xml
@@ -0,0 +1,258 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="span.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+<layer xmlns="http://ids-mannheim.de/ns/KorAP" version="KorAP-0.4" docid="ART_ABC.00001">
+  <spanList>
+    <span id="s1" from="0" to="3">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">zu</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s2" from="4" to="11">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">letzt-</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s3" from="12" to="23">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">kulturell</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s4" from="24" to="30">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Anlass</f>
+          </fs>
+        </f>
+        <f name="lex">
+          <fs>
+            <f name="derivation">true</f>
+            <f name="lemma">an-</f>
+          </fs>
+        </f>
+        <f name="lex">
+          <fs>
+            <f name="derivation">true</f>
+            <f name="lemma">lass</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s5" from="31" to="35">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">laden</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s6" from="36" to="39">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">d-</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s7" from="40" to="47">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Leitung</f>
+          </fs>
+        </f>
+        <f name="lex">
+          <fs>
+            <f name="derivation">true</f>
+            <f name="lemma">leiten</f>
+          </fs>
+        </f>
+        <f name="lex">
+          <fs>
+            <f name="derivation">true</f>
+            <f name="lemma">-ung</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s8" from="48" to="51">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">d-</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s9" from="52" to="63">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Schulheim</f>
+          </fs>
+        </f>
+        <f name="lex">
+          <fs>
+            <f name="composition">true</f>
+            <f name="lemma">Schule</f>
+          </fs>
+        </f>
+        <f name="lex">
+          <fs>
+            <f name="composition">true</f>
+            <f name="lemma">Heim</f>
+          </fs>
+        </f>
+        <f name="lex">
+          <fs>
+            <f name="composition">true</f>
+            <f name="lemma">schulen</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s10" from="74" to="77">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">ein</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s11" from="79" to="84">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">bevor</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s12" from="85" to="88">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">d-</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s13" from="89" to="96">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Betrieb</f>
+          </fs>
+        </f>
+        <f name="lex">
+          <fs>
+            <f name="lemma">betreiben</f>
+          </fs>
+        </f>
+        <f name="lex">
+          <fs>
+            <f name="derivation">true</f>
+            <f name="lemma">be-</f>
+          </fs>
+        </f>
+        <f name="lex">
+          <fs>
+            <f name="derivation">true</f>
+            <f name="lemma">treiben</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s14" from="97" to="101">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Ende</f>
+          </fs>
+        </f>
+        <f name="lex">
+          <fs>
+            <f name="lemma">ende</f>
+          </fs>
+        </f>
+        <f name="lex">
+          <fs>
+            <f name="lemma">enden</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s15" from="102" to="111">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Schuljahr</f>
+          </fs>
+        </f>
+        <f name="lex">
+          <fs>
+            <f name="composition">true</f>
+            <f name="lemma">Schule</f>
+          </fs>
+        </f>
+        <f name="lex">
+          <fs>
+            <f name="composition">true</f>
+            <f name="lemma">Jahr</f>
+          </fs>
+        </f>
+        <f name="lex">
+          <fs>
+            <f name="composition">true</f>
+            <f name="lemma">schulen</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s16" from="112" to="123">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">einstellen</f>
+          </fs>
+        </f>
+        <f name="lex">
+          <fs>
+            <f name="derivation">true</f>
+            <f name="lemma">ein-</f>
+          </fs>
+        </f>
+        <f name="lex">
+          <fs>
+            <f name="derivation">true</f>
+            <f name="lemma">stellen</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s17" from="124" to="128">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">werden</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+  </spanList>
+</layer>
diff --git a/t/annotation/corpus/doc/0001/header.xml b/t/annotation/corpus/doc/0001/header.xml
new file mode 100644
index 0000000..dd5c085
--- /dev/null
+++ b/t/annotation/corpus/doc/0001/header.xml
@@ -0,0 +1,66 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<?xml-model href="header.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+<!DOCTYPE idsCorpus PUBLIC "-//IDS//DTD IDS-XCES 1.0//EN" "http://corpora.ids-mannheim.de/idsxces1/DTD/ids.xcesdoc.dtd">
+<idsHeader type="text" pattern="text" status="new" version="1.1" TEIform="teiHeader">
+  <fileDesc>
+    <titleStmt>
+      <textSigle>Corpus/Doc.Text</textSigle>
+      <t.title assemblage="regular"/>
+    </titleStmt>
+    <publicationStmt>
+      <distributor/>
+      <pubAddress/>
+      <availability region="world" status="unknown"/>
+      <pubDate/>
+    </publicationStmt>
+    <sourceDesc>
+      <biblStruct>
+        <analytic>
+          <h.title type="main">Beispiel Text</h.title>
+	  <h.title type="sub">Beispiel Text Untertitel</h.title>
+          <h.author>Mustermann, Max</h.author>
+	  <editor>Monika Mustermann</editor>
+          <imprint/>
+          <biblScope type="pp"/>
+          <biblScope type="suppl"/>
+          <biblScope type="suppltitle"/>
+          <biblNote n="1"/>
+        </analytic>
+        <monogr>
+	  <h.title type="main">Beispiel Text</h.title>
+          <h.title type="sub">Best of!</h.title>
+          <h.author>Mustermann, Max</h.author>
+          <editor>Monika Mustermann</editor>
+          <imprint>
+            <publisher>Artificial articles Inc.</publisher>
+            <pubDate type="year">2001</pubDate>
+            <pubDate type="month">04</pubDate>
+            <pubDate type="day">02</pubDate>
+	    <pubPlace>Mannheim</pubPlace>
+          </imprint>
+          <biblScope type="issue"/>
+          <biblScope type="issueplace"/>
+        </monogr>
+      </biblStruct>
+      <reference type="complete" assemblage="regular"/>
+      <reference type="short" assemblage="regular"/>
+    </sourceDesc>
+  </fileDesc>
+  <profileDesc>
+    <creation>
+      <creatDate>1999.06.01</creatDate>
+    </creation>
+    <textClass>
+      <catRef n="1" target="topic.freizeit-unterhaltung.vereine-veranstaltungen" scheme="topic"/>
+      <h.keywords>
+        <keyTerm/>
+      </h.keywords>
+    </textClass>
+    <textDesc>
+      <textType>Zeitung: Tageszeitung</textType>
+      <textTypeArt>Bericht</textTypeArt>
+      <textDomain/>
+      <column/>
+    </textDesc>
+  </profileDesc>
+</idsHeader>
diff --git a/t/annotation/corpus/doc/0001/mate/dependency.xml b/t/annotation/corpus/doc/0001/mate/dependency.xml
new file mode 100644
index 0000000..eeb1186
--- /dev/null
+++ b/t/annotation/corpus/doc/0001/mate/dependency.xml
@@ -0,0 +1,139 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="span.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+<layer docid="Corpus_Doc.0001"
+       version="KorA-0.2"
+       xmlns="http://ids-mannheim.de/ns/KorA">
+  <spanList>
+    <span from="0"
+          to="3">
+      <rel label="MO">
+        <span from="31"
+              to="35" />
+      </rel>
+    </span>
+    <span from="4"
+          to="11">
+      <rel label="NK">
+        <span from="24"
+              to="30" />
+      </rel>
+    </span>
+    <span from="12"
+          to="23">
+      <rel label="NK">
+        <span from="24"
+              to="30" />
+      </rel>
+    </span>
+    <span from="24"
+          to="30">
+      <rel label="NK">
+        <span from="0"
+              to="3" />
+      </rel>
+    </span>
+    <span from="31"
+          to="35">
+      <rel label="--"
+           type="unary" />
+    </span>
+    <span from="36"
+          to="39">
+      <rel label="NK">
+        <span from="40"
+              to="47" />
+      </rel>
+    </span>
+    <span from="40"
+          to="47">
+      <rel label="SB">
+        <span from="31"
+              to="35" />
+      </rel>
+    </span>
+    <span from="48"
+          to="51">
+      <rel label="NK">
+        <span from="52"
+              to="63" />
+      </rel>
+    </span>
+    <span from="52"
+          to="63">
+      <rel label="AG">
+        <span from="40"
+              to="47" />
+      </rel>
+    </span>
+    <span from="64"
+          to="73">
+      <rel label="NK">
+        <span from="52"
+              to="63" />
+      </rel>
+    </span>
+    <span from="74"
+          to="77">
+      <rel label="SVP">
+        <span from="31"
+              to="35" />
+      </rel>
+    </span>
+    <span from="77"
+          to="78">
+      <rel label="--">
+        <span from="74"
+              to="77" />
+      </rel>
+    </span>
+    <span from="79"
+          to="84">
+      <rel label="CP">
+        <span from="124"
+              to="128" />
+      </rel>
+    </span>
+    <span from="85"
+          to="88">
+      <rel label="NK">
+        <span from="89"
+              to="96" />
+      </rel>
+    </span>
+    <span from="89"
+          to="96">
+      <rel label="SB">
+        <span from="124"
+              to="128" />
+      </rel>
+    </span>
+    <span from="97"
+          to="101">
+      <rel label="OA">
+        <span from="112"
+              to="123" />
+      </rel>
+    </span>
+    <span from="102"
+          to="111">
+      <rel label="NK">
+        <span from="97"
+              to="101" />
+      </rel>
+    </span>
+    <span from="112"
+          to="123">
+      <rel label="OC">
+        <span from="124"
+              to="128" />
+      </rel>
+    </span>
+    <span from="124"
+          to="128">
+      <rel label="MO">
+        <span from="31"
+              to="35" />
+      </rel>
+    </span>
+  </spanList>
+</layer>
diff --git a/t/annotation/corpus/doc/0001/mate/morpho.xml b/t/annotation/corpus/doc/0001/mate/morpho.xml
new file mode 100644
index 0000000..bf1a1a9
--- /dev/null
+++ b/t/annotation/corpus/doc/0001/mate/morpho.xml
@@ -0,0 +1,214 @@
+<?xml version="1.0" encoding="UTF-8"?><?xml-model href="span.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+<layer docid="Corpus_Doc.0001" version="KorAP-0.4" xmlns="http://ids-mannheim.de/ns/KorAP">
+  <spanList>
+    <span from="0" id="s2_1" to="3">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+	<f name="lex">
+	  <fs>
+	    <f name="lemma">zu</f>
+	    <f name="pos">APPRART</f>
+	    <f name="msd">case=dat|number=sg|gender=neut</f>
+	  </fs>
+	</f>
+      </fs>
+    </span>
+    <span from="4" id="s2_2" to="11">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+	<f name="lex">
+	  <fs>
+	    <f name="lemma">letzter</f>
+	    <f name="pos">ADJA</f>
+	    <f name="msd">case=dat|number=sg|gender=neut|degree=pos</f>
+	  </fs>
+	</f>
+      </fs>
+    </span>
+    <span from="12" id="s2_3" to="23">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+	<f name="lex">
+	  <fs>
+	    <f name="lemma">kulturell</f>
+	    <f name="pos">ADJA</f>
+	    <f name="msd">case=gen|number=sg|gender=neut|degree=pos</f>
+	  </fs>
+	</f>
+      </fs>
+    </span>
+    <span from="24" id="s2_4" to="30">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+	<f name="lex">
+	  <fs>
+	    <f name="lemma">anlass</f>
+	    <f name="pos">NN</f>
+	    <f name="msd">case=gen|number=sg|gender=neut</f>
+	  </fs>
+	</f>
+      </fs>
+    </span>
+    <span from="31" id="s2_5" to="35">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+	<f name="lex">
+	  <fs>
+	    <f name="lemma">laden</f>
+	    <f name="pos">VVFIN</f>
+	    <f name="msd">number=sg|person=3|tense=pres|mood=ind</f>
+	  </fs>
+	</f>
+      </fs>
+    </span>
+    <span from="36" id="s2_6" to="39">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+	<f name="lex">
+	  <fs>
+	    <f name="lemma">der</f>
+	    <f name="pos">ART</f>
+	    <f name="msd">case=acc|number=sg|gender=fem</f>
+	  </fs>
+	</f>
+      </fs>
+    </span>
+    <span from="40" id="s2_7" to="47">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+	<f name="lex">
+	  <fs>
+	    <f name="lemma">leitung</f>
+	    <f name="pos">NN</f>
+	    <f name="msd">case=acc|number=sg|gender=fem</f>
+	  </fs>
+	</f>
+      </fs>
+    </span>
+    <span from="48" id="s2_8" to="51">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+	<f name="lex">
+	  <fs>
+	    <f name="lemma">der</f>
+	    <f name="pos">ART</f>
+	    <f name="msd">case=gen|number=sg|gender=neut</f>
+	  </fs>
+	</f>
+      </fs>
+    </span>
+    <span from="52" id="s2_9" to="63">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+	<f name="lex">
+	  <fs>
+	    <f name="lemma">schulheime</f>
+	    <f name="pos">NN</f>
+	    <f name="msd">case=gen|number=sg|gender=neut</f>
+	  </fs>
+	</f>
+      </fs>
+    </span>
+    <span from="64" id="s2_10" to="73">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+	<f name="lex">
+	  <fs>
+	    <f name="lemma">hofbergli</f>
+	    <f name="pos">NE</f>
+	    <f name="msd">case=nom|number=sg|gender=*</f>
+	  </fs>
+	</f>
+      </fs>
+    </span>
+    <span from="74" id="s2_11" to="77">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+	<f name="lex">
+	  <fs>
+	    <f name="lemma">ein</f>
+	    <f name="pos">PTKVZ</f>
+	    <f name="msd">_</f>
+	  </fs>
+	</f>
+      </fs>
+    </span>
+    <span from="77" id="s2_12" to="78">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+	<f name="lex">
+	  <fs>
+	    <f name="lemma">--</f>
+	    <f name="pos">$,</f>
+	    <f name="msd">_</f>
+	  </fs>
+	</f>
+      </fs>
+    </span>
+    <span from="79" id="s2_13" to="84">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+	<f name="lex">
+	  <fs>
+	    <f name="lemma">bevor</f>
+	    <f name="pos">KOUS</f>
+	    <f name="msd">_</f>
+	  </fs>
+	</f>
+      </fs>
+    </span>
+    <span from="85" id="s2_14" to="88">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+	<f name="lex">
+	  <fs>
+	    <f name="lemma">der</f>
+	    <f name="pos">ART</f>
+	    <f name="msd">case=nom|number=sg|gender=masc</f>
+	  </fs>
+	</f>
+      </fs>
+    </span>
+    <span from="89" id="s2_15" to="96">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+	<f name="lex">
+	  <fs>
+	    <f name="lemma">betrieb</f>
+	    <f name="pos">NN</f>
+	    <f name="msd">case=nom|number=sg|gender=masc</f>
+	  </fs>
+	</f>
+      </fs>
+    </span>
+    <span from="97" id="s2_16" to="101">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+	<f name="lex">
+	  <fs>
+	    <f name="lemma">ende</f>
+	    <f name="pos">NN</f>
+	    <f name="msd">case=*|number=sg|gender=neut</f>
+	  </fs>
+	</f>
+      </fs>
+    </span>
+    <span from="102" id="s2_17" to="111">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+	<f name="lex">
+	  <fs>
+	    <f name="lemma">schuljahr</f>
+	    <f name="pos">NN</f>
+	    <f name="msd">case=*|number=sg|gender=masc</f>
+	  </fs>
+	</f>
+      </fs>
+    </span>
+    <span from="112" id="s2_18" to="123">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+	<f name="lex">
+	  <fs>
+	    <f name="lemma">einstellen</f>
+	    <f name="pos">VVPP</f>
+	    <f name="msd">_</f>
+	  </fs>
+	</f>
+      </fs>
+    </span>
+    <span from="124" id="s2_19" to="128">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+	<f name="lex">
+	  <fs>
+	    <f name="lemma">werden</f>
+	    <f name="pos">VAFIN</f>
+	    <f name="msd">number=sg|person=3|tense=pres|mood=ind</f>
+	  </fs>
+	</f>
+      </fs>
+    </span>
+  </spanList>
+</layer>
diff --git a/t/annotation/corpus/doc/0001/opennlp/morpho.xml b/t/annotation/corpus/doc/0001/opennlp/morpho.xml
new file mode 100644
index 0000000..65171b4
--- /dev/null
+++ b/t/annotation/corpus/doc/0001/opennlp/morpho.xml
@@ -0,0 +1,184 @@
+<?xml version="1.0" encoding="UTF-8"?><?xml-model href="span.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?><layer xmlns="http://ids-mannheim.de/ns/KorAP" docid="Corpus_Doc.00001" VERSION="KorAP-0.4">
+   <spanList>
+      <span id="s_7" from="0" to="3">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">APPRART</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_8" from="4" to="11">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">ADJA</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_9" from="12" to="23">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">ADJA</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_10" from="24" to="30">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">NN</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_11" from="31" to="35">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">VVFIN</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_12" from="36" to="39">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">ART</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_13" from="40" to="47">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">NN</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_14" from="48" to="51">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">ART</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_15" from="52" to="63">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">NN</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_16" from="64" to="73">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">NE</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_17" from="74" to="77">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">PTKVZ</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_18" from="77" to="78">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">$,</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_19" from="79" to="84">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">KOUS</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_20" from="85" to="88">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">ART</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_21" from="89" to="96">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">NN</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_22" from="97" to="101">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">NN</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_23" from="102" to="111">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">NN</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_24" from="112" to="123">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">VVPP</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_25" from="124" to="128">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">VAFIN</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_26" from="128" to="129">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">$.</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+   </spanList>
+</layer>
diff --git a/t/annotation/corpus/doc/0001/opennlp/sentences.xml b/t/annotation/corpus/doc/0001/opennlp/sentences.xml
new file mode 100644
index 0000000..b35317b
--- /dev/null
+++ b/t/annotation/corpus/doc/0001/opennlp/sentences.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="span.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?><layer xmlns="http://ids-mannheim.de/ns/KorAP" docid="Corpus_Doc.0001" VERSION="KorAP-0.4">
+   <spanList>
+      <span from="0" to="129"/>
+   </spanList>
+</layer>
diff --git a/t/annotation/corpus/doc/0001/opennlp/tokens.xml b/t/annotation/corpus/doc/0001/opennlp/tokens.xml
new file mode 100644
index 0000000..cd56e1c
--- /dev/null
+++ b/t/annotation/corpus/doc/0001/opennlp/tokens.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8"?><?xml-model href="span.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?><layer xmlns="http://ids-mannheim.de/ns/KorAP" docid="Corpus_Doc.0001" VERSION="KorAP-0.4">
+<spanList>
+      <span id="s_7" from="0" to="3"/>
+      <span id="s_8" from="4" to="11"/>
+      <span id="s_9" from="12" to="23"/>
+      <span id="s_10" from="24" to="30"/>
+      <span id="s_11" from="31" to="35"/>
+      <span id="s_12" from="36" to="39"/>
+      <span id="s_13" from="40" to="47"/>
+      <span id="s_14" from="48" to="51"/>
+      <span id="s_15" from="52" to="63"/>
+      <span id="s_16" from="64" to="73"/>
+      <span id="s_17" from="74" to="77"/>
+      <span id="s_18" from="77" to="78"/>
+      <span id="s_19" from="79" to="84"/>
+      <span id="s_20" from="85" to="88"/>
+      <span id="s_21" from="89" to="96"/>
+      <span id="s_22" from="97" to="101"/>
+      <span id="s_23" from="102" to="111"/>
+      <span id="s_24" from="112" to="123"/>
+      <span id="s_25" from="124" to="128"/>
+      <span id="s_26" from="128" to="129"/>
+   </spanList>
+</layer>
diff --git a/t/annotation/corpus/doc/0001/struct/structure.xml b/t/annotation/corpus/doc/0001/struct/structure.xml
new file mode 100644
index 0000000..30edc1e
--- /dev/null
+++ b/t/annotation/corpus/doc/0001/struct/structure.xml
@@ -0,0 +1,132 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="span.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+
+<layer docid="Corpus_Doc.0001" xmlns="http://ids-mannheim.de/ns/KorAP" version="KorAP-0.4">
+  <spanList>
+    <span id="s0" from="0" to="128" l="1">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">idsText</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="version">1.0</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s1" from="0" to="0" l="2">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">idsHeader</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="version">1.1</f>
+            <f name="status">new</f>
+            <f name="TEIform">teiHeader</f>
+            <f name="pattern">text</f>
+            <f name="type">text</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s2" from="0" to="128" l="3">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">text</f>
+      </fs>
+    </span>
+    <span id="s3" from="0" to="0" l="3">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">front</f>
+      </fs>
+    </span>
+    <span id="s4" from="0" to="128" l="3">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">body</f>
+      </fs>
+    </span>
+    <span id="s5" from="0" to="128" l="4">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">div</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="n">0</f>
+            <f name="type">Zeitung</f>
+            <f name="complete">y</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s6" from="0" to="31" l="5">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">head</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">main</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s7" from="0" to="31" l="6">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="broken">no</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s8" from="32" to="42" l="6">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">byline</f>
+      </fs>
+    </span>
+    <span id="s9" from="32" to="42" l="7">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="broken">no</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="sx" from="42" to="42" l="7">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">pb</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="n">2</f>
+            <f name="id">Corpus.Doc-0001-pb2</f>
+            <f name="TEIform">pb</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s10" from="43" to="128" l="6">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">div</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="n">1</f>
+            <f name="type">section</f>
+            <f name="complete">y</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s11" from="43" to="128" l="7">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">p</f>
+      </fs>
+    </span>
+    <span id="s12" from="43" to="128" l="8">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="broken">no</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+  </spanList>
+</layer>
diff --git a/t/annotation/corpus/doc/0001/tree_tagger/morpho.xml b/t/annotation/corpus/doc/0001/tree_tagger/morpho.xml
new file mode 100644
index 0000000..e229cec
--- /dev/null
+++ b/t/annotation/corpus/doc/0001/tree_tagger/morpho.xml
@@ -0,0 +1,216 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="span.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+
+<layer docid="Corpus_Doc.0001" version="KorAP-0.4" xmlns="http://ids-mannheim.de/ns/KorAP">
+  <spanList>
+    <span from="0" id="s_7" to="3">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">zum</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">APPRART</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span from="4" id="s_8" to="11">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">letzt</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">ADJA</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span from="12" id="s_9" to="23">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">kulturell</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">ADJA</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span from="24" id="s_10" to="30">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Anlaß</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span from="31" id="s_11" to="35">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">laden</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">VVFIN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span from="36" id="s_12" to="39">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">die</f>
+            <f name="certainty">0.997413</f>
+            <f name="ctag">ART</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span from="40" id="s_13" to="47">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Leitung</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span from="48" id="s_14" to="51">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">die</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">ART</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span from="52" id="s_15" to="63">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Schulheim</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span from="64" id="s_16" to="73">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">UNKNOWN</f>
+            <f name="certainty">0.912122</f>
+            <f name="ctag">NE</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span from="74" id="s_17" to="77">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">ein</f>
+            <f name="certainty">0.992479</f>
+            <f name="ctag">PTKVZ</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span from="77" id="s_18" to="78">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">,</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">$,</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span from="79" id="s_19" to="84">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">bevor</f>
+            <f name="certainty">0.999168</f>
+            <f name="ctag">KOUS</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span from="85" id="s_20" to="88">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">die</f>
+            <f name="certainty">0.999135</f>
+            <f name="ctag">ART</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span from="89" id="s_21" to="96">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Betrieb</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span from="97" id="s_22" to="101">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Ende</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span from="102" id="s_23" to="111">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Schuljahr</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span from="112" id="s_24" to="123">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">einstellen</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">VVPP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span from="124" id="s_25" to="128">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">werden</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">VAFIN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+  </spanList>
+</layer>
diff --git a/t/annotation/corpus/doc/0001/tree_tagger/sentences.xml b/t/annotation/corpus/doc/0001/tree_tagger/sentences.xml
new file mode 100644
index 0000000..cd2b00b
--- /dev/null
+++ b/t/annotation/corpus/doc/0001/tree_tagger/sentences.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="span.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+
+<layer xmlns="http://ids-mannheim.de/ns/KorAP" version="KorAP-0.4" docid="Corpus_Doc.0001">
+  <spanList>
+    <span from="0" to="130" />
+  </spanList>
+</layer>
diff --git a/t/annotation/corpus/doc/0001/xip/constituency.xml b/t/annotation/corpus/doc/0001/xip/constituency.xml
new file mode 100644
index 0000000..a410fe6
--- /dev/null
+++ b/t/annotation/corpus/doc/0001/xip/constituency.xml
@@ -0,0 +1,251 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="span.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+<layer docid="Corpus_Doc.00001" version="KorAP-0.4" xmlns="http://ids-mannheim.de/ns/KorAP">
+  <spanList> 
+    <span from="0" id="s2_n40" to="130">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">TOP</f>
+      </fs>
+      <rel label="dominates" target="s2_n60" />
+    </span>
+    <span from="0" id="s2_n60" to="130">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">MC</f>
+      </fs>
+      <rel label="dominates" target="s2_n57" />
+      <rel label="dominates" uri="morpho.xml#s2_n8" />
+      <rel label="dominates" target="s2_n50" />
+      <rel label="dominates" target="s2_n51" />
+      <rel label="dominates" target="s2_n54" />
+      <rel label="dominates" uri="morpho.xml#s2_n20" />
+      <rel label="dominates" target="s2_n59" />
+    </span>
+    <span from="0" id="s2_n57" to="30">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">PP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s2_n0" />
+      <rel label="dominates" target="s2_n53" />
+    </span>
+    <span from="0" id="s2_n0" to="3">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">PREP</f>
+      </fs>
+    </span>
+    <span from="4" id="s2_n53" to="30">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s2_n43" />
+    </span>
+    <span from="4" id="s2_n43" to="30">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" target="s2_n41" />
+      <rel label="dominates" target="s2_n42" />
+      <rel label="dominates" uri="morpho.xml#s2_n6" />
+    </span>
+    <span from="4" id="s2_n41" to="11">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">AP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s2_n2" />
+    </span>
+    <span from="4" id="s2_n2" to="11">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">ADJ</f>
+      </fs>
+    </span>
+    <span from="12" id="s2_n42" to="23">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">AP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s2_n4" />
+    </span>
+    <span from="12" id="s2_n4" to="23">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">ADJ</f>
+      </fs>
+    </span>
+    <span from="24" id="s2_n6" to="30">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span from="31" id="s2_n8" to="36">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">VERB</f>
+      </fs>
+    </span>
+    <span from="37" id="s2_n50" to="48">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s2_n10" />
+      <rel label="dominates" target="s2_n44" />
+    </span>
+    <span from="37" id="s2_n10" to="40">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">DET</f>
+      </fs>
+    </span>
+    <span from="41" id="s2_n44" to="48">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s2_n12" />
+    </span>
+    <span from="41" id="s2_n12" to="48">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span from="49" id="s2_n51" to="64">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s2_n14" />
+      <rel label="dominates" target="s2_n45" />
+    </span>
+    <span from="49" id="s2_n14" to="52">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">DET</f>
+      </fs>
+    </span>
+    <span from="53" id="s2_n45" to="64">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s2_n16" />
+    </span>
+    <span from="53" id="s2_n16" to="64">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span from="65" id="s2_n54" to="74">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s2_n46" />
+    </span>
+    <span from="65" id="s2_n46" to="74">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s2_n18" />
+    </span>
+    <span from="65" id="s2_n18" to="74">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span from="75" id="s2_n20" to="78">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">PTCL</f>
+      </fs>
+    </span>
+    <span from="78" id="s2_n59" to="130">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">INS</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s2_n22" />
+      <rel label="dominates" target="s2_n58" />
+      <rel label="dominates" uri="morpho.xml#s2_n38" />
+    </span>
+    <span from="78" id="s2_n22" to="79">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">PUNCT</f>
+      </fs>
+    </span>
+    <span from="80" id="s2_n58" to="129">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">SC</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s2_n24" />
+      <rel label="dominates" target="s2_n52" />
+      <rel label="dominates" target="s2_n55" />
+      <rel label="dominates" target="s2_n56" />
+      <rel label="dominates" uri="morpho.xml#s2_n34" />
+      <rel label="dominates" uri="morpho.xml#s2_n36" />
+    </span>
+    <span from="80" id="s2_n24" to="85">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">CONJ</f>
+      </fs>
+    </span>
+    <span from="86" id="s2_n52" to="97">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s2_n26" />
+      <rel label="dominates" target="s2_n47" />
+    </span>
+    <span from="86" id="s2_n26" to="89">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">DET</f>
+      </fs>
+    </span>
+    <span from="90" id="s2_n47" to="97">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s2_n28" />
+    </span>
+    <span from="90" id="s2_n28" to="97">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span from="98" id="s2_n55" to="102">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s2_n48" />
+    </span>
+    <span from="98" id="s2_n48" to="102">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s2_n30" />
+    </span>
+    <span from="98" id="s2_n30" to="102">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span from="103" id="s2_n56" to="112">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s2_n49" />
+    </span>
+    <span from="103" id="s2_n49" to="112">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s2_n32" />
+    </span>
+    <span from="103" id="s2_n32" to="112">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span from="113" id="s2_n34" to="124">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">VERB</f>
+      </fs>
+    </span>
+    <span from="125" id="s2_n36" to="129">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">VERB</f>
+      </fs>
+    </span>
+    <span from="129" id="s2_n38" to="130">
+      <fs type="node" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="const">PUNCT</f>
+      </fs>
+    </span>
+  </spanList>
+</layer>
diff --git a/t/annotation/corpus/doc/0001/xip/dependency.xml b/t/annotation/corpus/doc/0001/xip/dependency.xml
new file mode 100644
index 0000000..3ba0237
--- /dev/null
+++ b/t/annotation/corpus/doc/0001/xip/dependency.xml
@@ -0,0 +1,85 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="span.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+<layer docid="Corpus_Doc.00001" version="KorAP-0.4" xmlns="http://ids-mannheim.de/ns/KorAP">
+  <spanList> 
+    <span from="0" id="s2_n57" to="30">
+      <rel label="VMOD">
+        <span from="31" to="36" />
+      </rel>
+    </span>
+    <span from="4" id="s2_n2" to="11">
+      <rel label="NMOD">
+        <span from="24" to="30" />
+      </rel>
+    </span>
+    <span from="12" id="s2_n4" to="23">
+      <rel label="NMOD">
+        <span from="24" to="30" />
+      </rel>
+    </span>
+    <span from="31" id="s2_n8" to="36">
+      <rel label="VMAIN" type="unary" />
+    </span>
+    <span from="37" id="s2_n10" to="40">
+      <rel label="DETERM">
+        <span from="41" to="48" />
+      </rel>
+    </span>
+    <span from="41" id="s2_n12" to="48">
+      <rel label="SUBJ">
+        <span from="31" to="36" />
+      </rel>
+    </span>
+    <span from="49" id="s2_n14" to="52">
+      <rel label="DETERM">
+        <span from="53" to="64" />
+      </rel>
+    </span>
+    <span from="53" id="s2_n16" to="64">
+      <rel label="NMOD">
+        <span from="41" to="48" />
+      </rel>
+    </span>
+    <span from="65" id="s2_n18" to="74">
+      <rel label="NMOD">
+        <span from="53" to="64" />
+      </rel>
+    </span>
+    <span from="75" id="s2_n20" to="78">
+      <rel label="VPREF">
+        <span from="31" to="36" />
+      </rel>
+    </span>
+    <span from="80" id="s2_n24" to="85">
+      <rel label="CONNECT">
+        <span from="113" to="124" />
+      </rel>
+    </span>
+    <span from="86" id="s2_n26" to="89">
+      <rel label="DETERM">
+        <span from="90" to="97" />
+      </rel>
+    </span>
+    <span from="90" id="s2_n28" to="97">
+      <rel label="SUBJ">
+        <span from="113" to="124" />
+      </rel>
+    </span>
+    <span from="98" id="s2_n30" to="102">
+      <rel label="OBJ">
+        <span from="113" to="124" />
+      </rel>
+    </span>
+    <span from="103" id="s2_n32" to="112">
+      <rel label="OBJ">
+        <span from="113" to="124" />
+      </rel>
+    </span>
+    <span from="113" id="s2_n34" to="124">
+      <rel label="AUXIL">
+        <span from="125" to="129" />
+      </rel>
+      <rel label="VMAIN" type="unary" />
+    </span>
+  </spanList>
+</layer>
diff --git a/t/annotation/corpus/doc/0001/xip/morpho.xml b/t/annotation/corpus/doc/0001/xip/morpho.xml
new file mode 100644
index 0000000..7c10928
--- /dev/null
+++ b/t/annotation/corpus/doc/0001/xip/morpho.xml
@@ -0,0 +1,206 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="span.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+<layer docid="Corpus_Doc.00001" version="KorAP-0.4" xmlns="http://ids-mannheim.de/ns/KorAP">
+  <spanList>
+    <span from="0" id="s2_n0" to="3">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">zu</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span from="4" id="s2_n2" to="11">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">letzt</f>
+            <f name="pos">ADJ</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span from="12" id="s2_n4" to="23">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">kulturell</f>
+             <f name="pos">ADJ</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span from="24" id="s2_n6" to="30">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Anlass</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span from="31" id="s2_n8" to="36">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">=laden</f>
+            <f name="pos">VERB</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span from="37" id="s2_n10" to="40">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">die</f>
+            <f name="pos">DET</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span from="41" id="s2_n12" to="48">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Leitung</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span from="49" id="s2_n14" to="52">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">der</f>
+            <f name="pos">DET</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span from="53" id="s2_n16" to="64">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">schulen#Heim</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span from="65" id="s2_n18" to="74">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Hofbergli</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span from="75" id="s2_n20" to="78">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">ein</f>
+            <f name="pos">PTCL</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span from="78" id="s2_n22" to="79">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">,</f>
+            <f name="pos">PUNCT</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span from="80" id="s2_n24" to="85">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">bevor</f>
+            <f name="pos">CONJ</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span from="86" id="s2_n26" to="89">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">der</f>
+            <f name="pos">DET</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span from="90" id="s2_n28" to="97">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Betrieb</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span from="98" id="s2_n30" to="102">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Ende</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span from="103" id="s2_n32" to="112">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">schulen#Jahr</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span from="113" id="s2_n34" to="124">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">ein=stellen</f>
+            <f name="pos">VERB</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span from="125" id="s2_n36" to="129">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">werden</f>
+            <f name="pos">VERB</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span from="129" id="s2_n38" to="130">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">.</f>
+            <f name="pos">PUNCT</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+  </spanList>
+</layer>
diff --git a/t/annotation/corpus/doc/0001/xip/sentences.xml b/t/annotation/corpus/doc/0001/xip/sentences.xml
new file mode 100644
index 0000000..0965bc6
--- /dev/null
+++ b/t/annotation/corpus/doc/0001/xip/sentences.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="span.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+<layer docid="Corpus_Doc.00001" version="KorAP-0.4" xmlns="http://ids-mannheim.de/ns/KorAP">
+  <spanList> 
+    <span from="0" to="130" />
+  </spanList>
+</layer>
diff --git a/t/annotation/corpus/doc/0002/base/paragraph.xml b/t/annotation/corpus/doc/0002/base/paragraph.xml
new file mode 100644
index 0000000..27e530b
--- /dev/null
+++ b/t/annotation/corpus/doc/0002/base/paragraph.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="span.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+
+<layer docid="GOE_AGX.00002" xmlns="http://ids-mannheim.de/ns/KorAP" version="KorAP-0.4">
+  <spanList>
+    <span from="51" to="8887" />
+  </spanList>
+</layer>
\ No newline at end of file
diff --git a/t/annotation/corpus/doc/0002/base/sentences.xml b/t/annotation/corpus/doc/0002/base/sentences.xml
new file mode 100644
index 0000000..33ab47c
--- /dev/null
+++ b/t/annotation/corpus/doc/0002/base/sentences.xml
@@ -0,0 +1,72 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="span.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+
+<layer docid="GOE_AGX.00002" xmlns="http://ids-mannheim.de/ns/KorAP" version="KorAP-0.4">
+  <spanList>
+    <span from="0" to="23" />
+    <span from="24" to="49" />
+    <span from="51" to="51" />
+    <span from="51" to="133" />
+    <span from="134" to="238" />
+    <span from="239" to="310" />
+    <span from="311" to="395" />
+    <span from="396" to="560" />
+    <span from="561" to="607" />
+    <span from="608" to="798" />
+    <span from="799" to="911" />
+    <span from="912" to="1029" />
+    <span from="1030" to="1244" />
+    <span from="1245" to="1385" />
+    <span from="1386" to="1480" />
+    <span from="1481" to="1672" />
+    <span from="1673" to="1855" />
+    <span from="1856" to="1947" />
+    <span from="1948" to="2123" />
+    <span from="2124" to="2473" />
+    <span from="2474" to="2720" />
+    <span from="2721" to="2894" />
+    <span from="2895" to="3189" />
+    <span from="3190" to="3414" />
+    <span from="3415" to="3544" />
+    <span from="3545" to="3631" />
+    <span from="3632" to="3771" />
+    <span from="3772" to="3938" />
+    <span from="3939" to="4020" />
+    <span from="4021" to="4352" />
+    <span from="4353" to="4787" />
+    <span from="4788" to="5025" />
+    <span from="5026" to="5210" />
+    <span from="5211" to="5373" />
+    <span from="5374" to="5448" />
+    <span from="5449" to="5723" />
+    <span from="5724" to="5889" />
+    <span from="5890" to="5981" />
+    <span from="5982" to="6052" />
+    <span from="6053" to="6207" />
+    <span from="6208" to="6327" />
+    <span from="6328" to="6445" />
+    <span from="6446" to="6553" />
+    <span from="6554" to="6687" />
+    <span from="6688" to="6731" />
+    <span from="6732" to="6952" />
+    <span from="6953" to="7037" />
+    <span from="7038" to="7142" />
+    <span from="7143" to="7317" />
+    <span from="7318" to="7548" />
+    <span from="7549" to="7634" />
+    <span from="7635" to="7678" />
+    <span from="7679" to="7839" />
+    <span from="7840" to="7958" />
+    <span from="7959" to="8053" />
+    <span from="8054" to="8077" />
+    <span from="8078" to="8173" />
+    <span from="8174" to="8203" />
+    <span from="8204" to="8248" />
+    <span from="8249" to="8358" />
+    <span from="8359" to="8394" />
+    <span from="8395" to="8490" />
+    <span from="8491" to="8593" />
+    <span from="8594" to="8807" />
+    <span from="8808" to="8887" />
+  </spanList>
+</layer>
\ No newline at end of file
diff --git a/t/annotation/corpus/doc/0002/base/tokens_aggr.xml b/t/annotation/corpus/doc/0002/base/tokens_aggr.xml
new file mode 100644
index 0000000..f859b27
--- /dev/null
+++ b/t/annotation/corpus/doc/0002/base/tokens_aggr.xml
@@ -0,0 +1,1574 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="span.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+
+<layer docid="GOE_AGX.00002" xmlns="http://ids-mannheim.de/ns/KorAP" version="KorAP-0.4">
+  <spanList>
+    <span id="t_0" from="0" to="7" />
+    <span id="t_1" from="8" to="11" />
+    <span id="t_2" from="12" to="23" />
+    <span id="t_3" from="24" to="32" />
+    <span id="t_4" from="33" to="36" />
+    <span id="t_5" from="37" to="48" />
+    <span id="t_6" from="48" to="49" />
+    <span id="t_7" from="51" to="54" />
+    <span id="t_8" from="55" to="59" />
+    <span id="t_9" from="60" to="74" />
+    <span id="t_10" from="75" to="86" />
+    <span id="t_11" from="86" to="87" />
+    <span id="t_12" from="88" to="96" />
+    <span id="t_13" from="97" to="109" />
+    <span id="t_14" from="109" to="110" />
+    <span id="t_15" from="111" to="119" />
+    <span id="t_16" from="120" to="132" />
+    <span id="t_17" from="132" to="133" />
+    <span id="t_18" from="134" to="138" />
+    <span id="t_19" from="138" to="139" />
+    <span id="t_20" from="140" to="144" />
+    <span id="t_21" from="145" to="148" />
+    <span id="t_22" from="149" to="153" />
+    <span id="t_23" from="154" to="160" />
+    <span id="t_24" from="160" to="161" />
+    <span id="t_25" from="162" to="165" />
+    <span id="t_26" from="166" to="171" />
+    <span id="t_27" from="171" to="172" />
+    <span id="t_28" from="173" to="179" />
+    <span id="t_29" from="180" to="183" />
+    <span id="t_30" from="184" to="191" />
+    <span id="t_31" from="191" to="192" />
+    <span id="t_32" from="193" to="195" />
+    <span id="t_33" from="196" to="199" />
+    <span id="t_34" from="200" to="202" />
+    <span id="t_35" from="203" to="206" />
+    <span id="t_36" from="207" to="217" />
+    <span id="t_37" from="218" to="224" />
+    <span id="t_38" from="225" to="237" />
+    <span id="t_39" from="237" to="238" />
+    <span id="t_40" from="239" to="242" />
+    <span id="t_41" from="243" to="250" />
+    <span id="t_42" from="251" to="254" />
+    <span id="t_43" from="255" to="259" />
+    <span id="t_44" from="260" to="267" />
+    <span id="t_45" from="267" to="268" />
+    <span id="t_46" from="269" to="273" />
+    <span id="t_47" from="274" to="279" />
+    <span id="t_48" from="280" to="283" />
+    <span id="t_49" from="284" to="289" />
+    <span id="t_50" from="289" to="290" />
+    <span id="t_51" from="291" to="297" />
+    <span id="t_52" from="298" to="301" />
+    <span id="t_53" from="301" to="302" />
+    <span id="t_54" from="302" to="303" />
+    <span id="t_55" from="304" to="309" />
+    <span id="t_56" from="309" to="310" />
+    <span id="t_57" from="311" to="316" />
+    <span id="t_58" from="317" to="321" />
+    <span id="t_59" from="322" to="325" />
+    <span id="t_60" from="326" to="330" />
+    <span id="t_61" from="330" to="331" />
+    <span id="t_62" from="332" to="336" />
+    <span id="t_63" from="337" to="342" />
+    <span id="t_64" from="343" to="345" />
+    <span id="t_65" from="346" to="349" />
+    <span id="t_66" from="350" to="357" />
+    <span id="t_67" from="357" to="358" />
+    <span id="t_68" from="359" to="361" />
+    <span id="t_69" from="362" to="365" />
+    <span id="t_70" from="366" to="368" />
+    <span id="t_71" from="369" to="372" />
+    <span id="t_72" from="373" to="379" />
+    <span id="t_73" from="380" to="382" />
+    <span id="t_74" from="383" to="389" />
+    <span id="t_75" from="390" to="394" />
+    <span id="t_76" from="394" to="395" />
+    <span id="t_77" from="396" to="398" />
+    <span id="t_78" from="399" to="403" />
+    <span id="t_79" from="404" to="407" />
+    <span id="t_80" from="408" to="412" />
+    <span id="t_81" from="413" to="418" />
+    <span id="t_82" from="419" to="429" />
+    <span id="t_83" from="429" to="430" />
+    <span id="t_84" from="431" to="434" />
+    <span id="t_85" from="435" to="439" />
+    <span id="t_86" from="439" to="440" />
+    <span id="t_87" from="441" to="444" />
+    <span id="t_88" from="445" to="448" />
+    <span id="t_89" from="449" to="456" />
+    <span id="t_90" from="456" to="457" />
+    <span id="t_91" from="458" to="461" />
+    <span id="t_92" from="462" to="464" />
+    <span id="t_93" from="465" to="468" />
+    <span id="t_94" from="469" to="471" />
+    <span id="t_95" from="472" to="475" />
+    <span id="t_96" from="476" to="481" />
+    <span id="t_97" from="481" to="482" />
+    <span id="t_98" from="483" to="487" />
+    <span id="t_99" from="488" to="495" />
+    <span id="t_100" from="495" to="496" />
+    <span id="t_101" from="497" to="500" />
+    <span id="t_102" from="501" to="507" />
+    <span id="t_103" from="507" to="508" />
+    <span id="t_104" from="509" to="512" />
+    <span id="t_105" from="513" to="515" />
+    <span id="t_106" from="516" to="518" />
+    <span id="t_107" from="519" to="522" />
+    <span id="t_108" from="523" to="532" />
+    <span id="t_109" from="533" to="537" />
+    <span id="t_110" from="538" to="547" />
+    <span id="t_111" from="548" to="551" />
+    <span id="t_112" from="552" to="559" />
+    <span id="t_113" from="559" to="560" />
+    <span id="t_114" from="561" to="566" />
+    <span id="t_115" from="566" to="567" />
+    <span id="t_116" from="568" to="571" />
+    <span id="t_117" from="572" to="582" />
+    <span id="t_118" from="583" to="588" />
+    <span id="t_119" from="588" to="589" />
+    <span id="t_120" from="590" to="593" />
+    <span id="t_121" from="594" to="606" />
+    <span id="t_122" from="606" to="607" />
+    <span id="t_123" from="608" to="610" />
+    <span id="t_124" from="611" to="614" />
+    <span id="t_125" from="615" to="620" />
+    <span id="t_126" from="621" to="626" />
+    <span id="t_127" from="627" to="632" />
+    <span id="t_128" from="632" to="633" />
+    <span id="t_129" from="634" to="637" />
+    <span id="t_130" from="638" to="641" />
+    <span id="t_131" from="642" to="647" />
+    <span id="t_132" from="648" to="652" />
+    <span id="t_133" from="653" to="664" />
+    <span id="t_134" from="664" to="665" />
+    <span id="t_135" from="666" to="671" />
+    <span id="t_136" from="672" to="677" />
+    <span id="t_137" from="677" to="678" />
+    <span id="t_138" from="679" to="683" />
+    <span id="t_139" from="684" to="686" />
+    <span id="t_140" from="687" to="694" />
+    <span id="t_141" from="695" to="707" />
+    <span id="t_142" from="708" to="711" />
+    <span id="t_143" from="712" to="727" />
+    <span id="t_144" from="728" to="735" />
+    <span id="t_145" from="735" to="736" />
+    <span id="t_146" from="737" to="741" />
+    <span id="t_147" from="742" to="744" />
+    <span id="t_148" from="745" to="748" />
+    <span id="t_149" from="749" to="759" />
+    <span id="t_150" from="760" to="765" />
+    <span id="t_151" from="765" to="766" />
+    <span id="t_152" from="766" to="776" />
+    <span id="t_153" from="777" to="782" />
+    <span id="t_154" from="783" to="786" />
+    <span id="t_155" from="787" to="792" />
+    <span id="t_156" from="793" to="797" />
+    <span id="t_157" from="797" to="798" />
+    <span id="t_158" from="799" to="810" />
+    <span id="t_159" from="811" to="814" />
+    <span id="t_160" from="815" to="819" />
+    <span id="t_161" from="820" to="825" />
+    <span id="t_162" from="825" to="826" />
+    <span id="t_163" from="827" to="834" />
+    <span id="t_164" from="835" to="838" />
+    <span id="t_165" from="839" to="845" />
+    <span id="t_166" from="845" to="846" />
+    <span id="t_167" from="847" to="849" />
+    <span id="t_168" from="850" to="855" />
+    <span id="t_169" from="856" to="859" />
+    <span id="t_170" from="860" to="867" />
+    <span id="t_171" from="868" to="878" />
+    <span id="t_172" from="879" to="882" />
+    <span id="t_173" from="883" to="891" />
+    <span id="t_174" from="892" to="898" />
+    <span id="t_175" from="899" to="901" />
+    <span id="t_176" from="902" to="910" />
+    <span id="t_177" from="910" to="911" />
+    <span id="t_178" from="912" to="920" />
+    <span id="t_179" from="921" to="925" />
+    <span id="t_180" from="926" to="930" />
+    <span id="t_181" from="931" to="939" />
+    <span id="t_182" from="939" to="940" />
+    <span id="t_183" from="941" to="944" />
+    <span id="t_184" from="945" to="955" />
+    <span id="t_185" from="955" to="956" />
+    <span id="t_186" from="957" to="963" />
+    <span id="t_187" from="964" to="975" />
+    <span id="t_188" from="976" to="979" />
+    <span id="t_189" from="980" to="985" />
+    <span id="t_190" from="986" to="989" />
+    <span id="t_191" from="990" to="994" />
+    <span id="t_192" from="995" to="1005" />
+    <span id="t_193" from="1005" to="1006" />
+    <span id="t_194" from="1007" to="1012" />
+    <span id="t_195" from="1013" to="1021" />
+    <span id="t_196" from="1022" to="1028" />
+    <span id="t_197" from="1028" to="1029" />
+    <span id="t_198" from="1030" to="1036" />
+    <span id="t_199" from="1036" to="1037" />
+    <span id="t_200" from="1038" to="1043" />
+    <span id="t_201" from="1043" to="1044" />
+    <span id="t_202" from="1045" to="1053" />
+    <span id="t_203" from="1054" to="1061" />
+    <span id="t_204" from="1062" to="1067" />
+    <span id="t_205" from="1068" to="1070" />
+    <span id="t_206" from="1071" to="1078" />
+    <span id="t_207" from="1079" to="1089" />
+    <span id="t_208" from="1090" to="1096" />
+    <span id="t_209" from="1097" to="1102" />
+    <span id="t_210" from="1103" to="1114" />
+    <span id="t_211" from="1115" to="1120" />
+    <span id="t_212" from="1121" to="1123" />
+    <span id="t_213" from="1124" to="1129" />
+    <span id="t_214" from="1130" to="1135" />
+    <span id="t_215" from="1135" to="1136" />
+    <span id="t_216" from="1137" to="1140" />
+    <span id="t_217" from="1141" to="1153" />
+    <span id="t_218" from="1154" to="1158" />
+    <span id="t_219" from="1159" to="1167" />
+    <span id="t_220" from="1168" to="1171" />
+    <span id="t_221" from="1172" to="1179" />
+    <span id="t_222" from="1180" to="1183" />
+    <span id="t_223" from="1184" to="1194" />
+    <span id="t_224" from="1195" to="1201" />
+    <span id="t_225" from="1201" to="1202" />
+    <span id="t_226" from="1203" to="1207" />
+    <span id="t_227" from="1208" to="1215" />
+    <span id="t_228" from="1216" to="1218" />
+    <span id="t_229" from="1219" to="1225" />
+    <span id="t_230" from="1226" to="1231" />
+    <span id="t_231" from="1231" to="1232" />
+    <span id="t_232" from="1233" to="1236" />
+    <span id="t_233" from="1237" to="1243" />
+    <span id="t_234" from="1243" to="1244" />
+    <span id="t_235" from="1245" to="1251" />
+    <span id="t_236" from="1252" to="1265" />
+    <span id="t_237" from="1266" to="1272" />
+    <span id="t_238" from="1273" to="1275" />
+    <span id="t_239" from="1276" to="1281" />
+    <span id="t_240" from="1281" to="1282" />
+    <span id="t_241" from="1283" to="1286" />
+    <span id="t_242" from="1287" to="1295" />
+    <span id="t_243" from="1295" to="1296" />
+    <span id="t_244" from="1297" to="1302" />
+    <span id="t_245" from="1303" to="1317" />
+    <span id="t_246" from="1318" to="1322" />
+    <span id="t_247" from="1323" to="1327" />
+    <span id="t_248" from="1328" to="1332" />
+    <span id="t_249" from="1333" to="1336" />
+    <span id="t_250" from="1336" to="1337" />
+    <span id="t_251" from="1338" to="1342" />
+    <span id="t_252" from="1343" to="1345" />
+    <span id="t_253" from="1346" to="1353" />
+    <span id="t_254" from="1354" to="1357" />
+    <span id="t_255" from="1358" to="1361" />
+    <span id="t_256" from="1362" to="1376" />
+    <span id="t_257" from="1377" to="1384" />
+    <span id="t_258" from="1384" to="1385" />
+    <span id="t_259" from="1386" to="1388" />
+    <span id="t_260" from="1389" to="1392" />
+    <span id="t_261" from="1393" to="1399" />
+    <span id="t_262" from="1399" to="1400" />
+    <span id="t_263" from="1401" to="1404" />
+    <span id="t_264" from="1405" to="1407" />
+    <span id="t_265" from="1408" to="1420" />
+    <span id="t_266" from="1421" to="1427" />
+    <span id="t_267" from="1427" to="1428" />
+    <span id="t_268" from="1429" to="1433" />
+    <span id="t_269" from="1434" to="1437" />
+    <span id="t_270" from="1438" to="1444" />
+    <span id="t_271" from="1445" to="1450" />
+    <span id="t_272" from="1451" to="1457" />
+    <span id="t_273" from="1458" to="1462" />
+    <span id="t_274" from="1463" to="1473" />
+    <span id="t_275" from="1474" to="1479" />
+    <span id="t_276" from="1479" to="1480" />
+    <span id="t_277" from="1481" to="1483" />
+    <span id="t_278" from="1484" to="1491" />
+    <span id="t_279" from="1492" to="1496" />
+    <span id="t_280" from="1497" to="1509" />
+    <span id="t_281" from="1510" to="1517" />
+    <span id="t_282" from="1518" to="1520" />
+    <span id="t_283" from="1521" to="1526" />
+    <span id="t_284" from="1527" to="1535" />
+    <span id="t_285" from="1536" to="1547" />
+    <span id="t_286" from="1548" to="1551" />
+    <span id="t_287" from="1551" to="1552" />
+    <span id="t_288" from="1553" to="1556" />
+    <span id="t_289" from="1557" to="1559" />
+    <span id="t_290" from="1560" to="1564" />
+    <span id="t_291" from="1564" to="1565" />
+    <span id="t_292" from="1566" to="1570" />
+    <span id="t_293" from="1571" to="1573" />
+    <span id="t_294" from="1574" to="1577" />
+    <span id="t_295" from="1578" to="1590" />
+    <span id="t_296" from="1591" to="1597" />
+    <span id="t_297" from="1597" to="1598" />
+    <span id="t_298" from="1599" to="1610" />
+    <span id="t_299" from="1611" to="1620" />
+    <span id="t_300" from="1621" to="1624" />
+    <span id="t_301" from="1625" to="1629" />
+    <span id="t_302" from="1630" to="1634" />
+    <span id="t_303" from="1635" to="1640" />
+    <span id="t_304" from="1641" to="1655" />
+    <span id="t_305" from="1656" to="1661" />
+    <span id="t_306" from="1662" to="1667" />
+    <span id="t_307" from="1668" to="1671" />
+    <span id="t_308" from="1671" to="1672" />
+    <span id="t_309" from="1673" to="1676" />
+    <span id="t_310" from="1677" to="1683" />
+    <span id="t_311" from="1684" to="1687" />
+    <span id="t_312" from="1688" to="1691" />
+    <span id="t_313" from="1692" to="1700" />
+    <span id="t_314" from="1701" to="1703" />
+    <span id="t_315" from="1704" to="1707" />
+    <span id="t_316" from="1708" to="1713" />
+    <span id="t_317" from="1714" to="1719" />
+    <span id="t_318" from="1720" to="1730" />
+    <span id="t_319" from="1731" to="1735" />
+    <span id="t_320" from="1736" to="1743" />
+    <span id="t_321" from="1744" to="1747" />
+    <span id="t_322" from="1748" to="1751" />
+    <span id="t_323" from="1752" to="1759" />
+    <span id="t_324" from="1760" to="1767" />
+    <span id="t_325" from="1768" to="1774" />
+    <span id="t_326" from="1774" to="1775" />
+    <span id="t_327" from="1776" to="1779" />
+    <span id="t_328" from="1780" to="1782" />
+    <span id="t_329" from="1783" to="1786" />
+    <span id="t_330" from="1787" to="1796" />
+    <span id="t_331" from="1797" to="1800" />
+    <span id="t_332" from="1801" to="1809" />
+    <span id="t_333" from="1810" to="1813" />
+    <span id="t_334" from="1814" to="1822" />
+    <span id="t_335" from="1823" to="1831" />
+    <span id="t_336" from="1832" to="1835" />
+    <span id="t_337" from="1836" to="1849" />
+    <span id="t_338" from="1850" to="1854" />
+    <span id="t_339" from="1854" to="1855" />
+    <span id="t_340" from="1856" to="1860" />
+    <span id="t_341" from="1861" to="1869" />
+    <span id="t_342" from="1870" to="1878" />
+    <span id="t_343" from="1879" to="1884" />
+    <span id="t_344" from="1885" to="1888" />
+    <span id="t_345" from="1889" to="1900" />
+    <span id="t_346" from="1901" to="1906" />
+    <span id="t_347" from="1907" to="1914" />
+    <span id="t_348" from="1915" to="1918" />
+    <span id="t_349" from="1919" to="1924" />
+    <span id="t_350" from="1925" to="1935" />
+    <span id="t_351" from="1936" to="1938" />
+    <span id="t_352" from="1939" to="1942" />
+    <span id="t_353" from="1943" to="1946" />
+    <span id="t_354" from="1946" to="1947" />
+    <span id="t_355" from="1948" to="1956" />
+    <span id="t_356" from="1957" to="1961" />
+    <span id="t_357" from="1962" to="1964" />
+    <span id="t_358" from="1965" to="1969" />
+    <span id="t_359" from="1970" to="1975" />
+    <span id="t_360" from="1976" to="1982" />
+    <span id="t_361" from="1983" to="1988" />
+    <span id="t_362" from="1989" to="1991" />
+    <span id="t_363" from="1992" to="1998" />
+    <span id="t_364" from="1998" to="1999" />
+    <span id="t_365" from="2000" to="2003" />
+    <span id="t_366" from="2004" to="2009" />
+    <span id="t_367" from="2010" to="2014" />
+    <span id="t_368" from="2015" to="2021" />
+    <span id="t_369" from="2021" to="2022" />
+    <span id="t_370" from="2023" to="2025" />
+    <span id="t_371" from="2026" to="2030" />
+    <span id="t_372" from="2031" to="2035" />
+    <span id="t_373" from="2036" to="2046" />
+    <span id="t_374" from="2047" to="2057" />
+    <span id="t_375" from="2057" to="2058" />
+    <span id="t_376" from="2059" to="2062" />
+    <span id="t_377" from="2063" to="2067" />
+    <span id="t_378" from="2068" to="2072" />
+    <span id="t_379" from="2073" to="2075" />
+    <span id="t_380" from="2076" to="2080" />
+    <span id="t_381" from="2081" to="2087" />
+    <span id="t_382" from="2088" to="2091" />
+    <span id="t_383" from="2092" to="2101" />
+    <span id="t_384" from="2102" to="2105" />
+    <span id="t_385" from="2105" to="2106" />
+    <span id="t_386" from="2107" to="2110" />
+    <span id="t_387" from="2111" to="2116" />
+    <span id="t_388" from="2117" to="2122" />
+    <span id="t_389" from="2122" to="2123" />
+    <span id="t_390" from="2124" to="2128" />
+    <span id="t_391" from="2129" to="2132" />
+    <span id="t_392" from="2133" to="2139" />
+    <span id="t_393" from="2140" to="2143" />
+    <span id="t_394" from="2144" to="2149" />
+    <span id="t_395" from="2150" to="2156" />
+    <span id="t_396" from="2157" to="2166" />
+    <span id="t_397" from="2167" to="2177" />
+    <span id="t_398" from="2177" to="2178" />
+    <span id="t_399" from="2179" to="2187" />
+    <span id="t_400" from="2188" to="2190" />
+    <span id="t_401" from="2191" to="2195" />
+    <span id="t_402" from="2196" to="2201" />
+    <span id="t_403" from="2201" to="2202" />
+    <span id="t_404" from="2203" to="2205" />
+    <span id="t_405" from="2206" to="2214" />
+    <span id="t_406" from="2215" to="2217" />
+    <span id="t_407" from="2218" to="2220" />
+    <span id="t_408" from="2221" to="2225" />
+    <span id="t_409" from="2226" to="2242" />
+    <span id="t_410" from="2242" to="2243" />
+    <span id="t_411" from="2244" to="2249" />
+    <span id="t_412" from="2250" to="2254" />
+    <span id="t_413" from="2255" to="2260" />
+    <span id="t_414" from="2261" to="2264" />
+    <span id="t_415" from="2265" to="2270" />
+    <span id="t_416" from="2271" to="2277" />
+    <span id="t_417" from="2278" to="2282" />
+    <span id="t_418" from="2282" to="2283" />
+    <span id="t_419" from="2284" to="2287" />
+    <span id="t_420" from="2288" to="2292" />
+    <span id="t_421" from="2293" to="2303" />
+    <span id="t_422" from="2304" to="2311" />
+    <span id="t_423" from="2312" to="2316" />
+    <span id="t_424" from="2317" to="2320" />
+    <span id="t_425" from="2321" to="2326" />
+    <span id="t_426" from="2327" to="2334" />
+    <span id="t_427" from="2335" to="2339" />
+    <span id="t_428" from="2340" to="2350" />
+    <span id="t_429" from="2351" to="2356" />
+    <span id="t_430" from="2356" to="2357" />
+    <span id="t_431" from="2358" to="2365" />
+    <span id="t_432" from="2366" to="2369" />
+    <span id="t_433" from="2370" to="2375" />
+    <span id="t_434" from="2376" to="2381" />
+    <span id="t_435" from="2381" to="2382" />
+    <span id="t_436" from="2382" to="2394" />
+    <span id="t_437" from="2395" to="2404" />
+    <span id="t_438" from="2405" to="2408" />
+    <span id="t_439" from="2409" to="2412" />
+    <span id="t_440" from="2412" to="2413" />
+    <span id="t_441" from="2414" to="2417" />
+    <span id="t_442" from="2418" to="2422" />
+    <span id="t_443" from="2423" to="2428" />
+    <span id="t_444" from="2429" to="2437" />
+    <span id="t_445" from="2437" to="2438" />
+    <span id="t_446" from="2439" to="2443" />
+    <span id="t_447" from="2444" to="2447" />
+    <span id="t_448" from="2448" to="2462" />
+    <span id="t_449" from="2463" to="2472" />
+    <span id="t_450" from="2472" to="2473" />
+    <span id="t_451" from="2474" to="2476" />
+    <span id="t_452" from="2477" to="2480" />
+    <span id="t_453" from="2481" to="2486" />
+    <span id="t_454" from="2487" to="2489" />
+    <span id="t_455" from="2490" to="2497" />
+    <span id="t_456" from="2497" to="2498" />
+    <span id="t_457" from="2499" to="2502" />
+    <span id="t_458" from="2503" to="2506" />
+    <span id="t_459" from="2507" to="2512" />
+    <span id="t_460" from="2513" to="2517" />
+    <span id="t_461" from="2518" to="2523" />
+    <span id="t_462" from="2524" to="2527" />
+    <span id="t_463" from="2528" to="2539" />
+    <span id="t_464" from="2540" to="2542" />
+    <span id="t_465" from="2543" to="2551" />
+    <span id="t_466" from="2552" to="2558" />
+    <span id="t_467" from="2558" to="2559" />
+    <span id="t_468" from="2560" to="2563" />
+    <span id="t_469" from="2564" to="2574" />
+    <span id="t_470" from="2575" to="2579" />
+    <span id="t_471" from="2580" to="2592" />
+    <span id="t_472" from="2593" to="2596" />
+    <span id="t_473" from="2597" to="2606" />
+    <span id="t_474" from="2607" to="2615" />
+    <span id="t_475" from="2616" to="2623" />
+    <span id="t_476" from="2624" to="2627" />
+    <span id="t_477" from="2628" to="2634" />
+    <span id="t_478" from="2634" to="2635" />
+    <span id="t_479" from="2636" to="2639" />
+    <span id="t_480" from="2640" to="2649" />
+    <span id="t_481" from="2650" to="2654" />
+    <span id="t_482" from="2655" to="2660" />
+    <span id="t_483" from="2661" to="2669" />
+    <span id="t_484" from="2669" to="2670" />
+    <span id="t_485" from="2671" to="2684" />
+    <span id="t_486" from="2685" to="2688" />
+    <span id="t_487" from="2689" to="2706" />
+    <span id="t_488" from="2707" to="2712" />
+    <span id="t_489" from="2713" to="2719" />
+    <span id="t_490" from="2719" to="2720" />
+    <span id="t_491" from="2721" to="2724" />
+    <span id="t_492" from="2725" to="2730" />
+    <span id="t_493" from="2731" to="2735" />
+    <span id="t_494" from="2736" to="2741" />
+    <span id="t_495" from="2742" to="2747" />
+    <span id="t_496" from="2748" to="2755" />
+    <span id="t_497" from="2756" to="2766" />
+    <span id="t_498" from="2766" to="2767" />
+    <span id="t_499" from="2768" to="2771" />
+    <span id="t_500" from="2772" to="2775" />
+    <span id="t_501" from="2776" to="2780" />
+    <span id="t_502" from="2781" to="2783" />
+    <span id="t_503" from="2784" to="2789" />
+    <span id="t_504" from="2790" to="2798" />
+    <span id="t_505" from="2799" to="2808" />
+    <span id="t_506" from="2809" to="2821" />
+    <span id="t_507" from="2822" to="2836" />
+    <span id="t_508" from="2837" to="2840" />
+    <span id="t_509" from="2841" to="2844" />
+    <span id="t_510" from="2845" to="2861" />
+    <span id="t_511" from="2862" to="2866" />
+    <span id="t_512" from="2867" to="2869" />
+    <span id="t_513" from="2870" to="2883" />
+    <span id="t_514" from="2884" to="2893" />
+    <span id="t_515" from="2893" to="2894" />
+    <span id="t_516" from="2895" to="2898" />
+    <span id="t_517" from="2899" to="2902" />
+    <span id="t_518" from="2903" to="2909" />
+    <span id="t_519" from="2910" to="2916" />
+    <span id="t_520" from="2917" to="2920" />
+    <span id="t_521" from="2921" to="2927" />
+    <span id="t_522" from="2928" to="2932" />
+    <span id="t_523" from="2933" to="2941" />
+    <span id="t_524" from="2942" to="2952" />
+    <span id="t_525" from="2953" to="2956" />
+    <span id="t_526" from="2957" to="2960" />
+    <span id="t_527" from="2961" to="2966" />
+    <span id="t_528" from="2967" to="2977" />
+    <span id="t_529" from="2978" to="2984" />
+    <span id="t_530" from="2985" to="2988" />
+    <span id="t_531" from="2989" to="2994" />
+    <span id="t_532" from="2995" to="3001" />
+    <span id="t_533" from="3002" to="3007" />
+    <span id="t_534" from="3008" to="3013" />
+    <span id="t_535" from="3013" to="3014" />
+    <span id="t_536" from="3015" to="3023" />
+    <span id="t_537" from="3023" to="3024" />
+    <span id="t_538" from="3025" to="3030" />
+    <span id="t_539" from="3031" to="3034" />
+    <span id="t_540" from="3035" to="3038" />
+    <span id="t_541" from="3039" to="3050" />
+    <span id="t_542" from="3050" to="3051" />
+    <span id="t_543" from="3052" to="3060" />
+    <span id="t_544" from="3061" to="3070" />
+    <span id="t_545" from="3070" to="3071" />
+    <span id="t_546" from="3072" to="3081" />
+    <span id="t_547" from="3082" to="3091" />
+    <span id="t_548" from="3092" to="3101" />
+    <span id="t_549" from="3101" to="3102" />
+    <span id="t_550" from="3103" to="3110" />
+    <span id="t_551" from="3111" to="3117" />
+    <span id="t_552" from="3118" to="3121" />
+    <span id="t_553" from="3122" to="3130" />
+    <span id="t_554" from="3131" to="3139" />
+    <span id="t_555" from="3139" to="3140" />
+    <span id="t_556" from="3141" to="3144" />
+    <span id="t_557" from="3145" to="3155" />
+    <span id="t_558" from="3156" to="3160" />
+    <span id="t_559" from="3161" to="3170" />
+    <span id="t_560" from="3171" to="3174" />
+    <span id="t_561" from="3175" to="3182" />
+    <span id="t_562" from="3183" to="3188" />
+    <span id="t_563" from="3188" to="3189" />
+    <span id="t_564" from="3190" to="3192" />
+    <span id="t_565" from="3193" to="3198" />
+    <span id="t_566" from="3199" to="3202" />
+    <span id="t_567" from="3203" to="3208" />
+    <span id="t_568" from="3209" to="3221" />
+    <span id="t_569" from="3221" to="3222" />
+    <span id="t_570" from="3223" to="3225" />
+    <span id="t_571" from="3226" to="3229" />
+    <span id="t_572" from="3230" to="3238" />
+    <span id="t_573" from="3239" to="3242" />
+    <span id="t_574" from="3243" to="3250" />
+    <span id="t_575" from="3251" to="3263" />
+    <span id="t_576" from="3264" to="3269" />
+    <span id="t_577" from="3269" to="3270" />
+    <span id="t_578" from="3271" to="3274" />
+    <span id="t_579" from="3275" to="3278" />
+    <span id="t_580" from="3279" to="3283" />
+    <span id="t_581" from="3284" to="3288" />
+    <span id="t_582" from="3289" to="3297" />
+    <span id="t_583" from="3298" to="3305" />
+    <span id="t_584" from="3306" to="3309" />
+    <span id="t_585" from="3309" to="3310" />
+    <span id="t_586" from="3311" to="3316" />
+    <span id="t_587" from="3317" to="3323" />
+    <span id="t_588" from="3324" to="3331" />
+    <span id="t_589" from="3332" to="3335" />
+    <span id="t_590" from="3336" to="3340" />
+    <span id="t_591" from="3341" to="3344" />
+    <span id="t_592" from="3345" to="3353" />
+    <span id="t_593" from="3354" to="3356" />
+    <span id="t_594" from="3356" to="3357" />
+    <span id="t_595" from="3358" to="3361" />
+    <span id="t_596" from="3362" to="3367" />
+    <span id="t_597" from="3368" to="3378" />
+    <span id="t_598" from="3379" to="3382" />
+    <span id="t_599" from="3383" to="3386" />
+    <span id="t_600" from="3387" to="3392" />
+    <span id="t_601" from="3393" to="3396" />
+    <span id="t_602" from="3397" to="3401" />
+    <span id="t_603" from="3402" to="3407" />
+    <span id="t_604" from="3408" to="3413" />
+    <span id="t_605" from="3413" to="3414" />
+    <span id="t_606" from="3415" to="3420" />
+    <span id="t_607" from="3421" to="3428" />
+    <span id="t_608" from="3428" to="3429" />
+    <span id="t_609" from="3430" to="3435" />
+    <span id="t_610" from="3436" to="3439" />
+    <span id="t_611" from="3440" to="3443" />
+    <span id="t_612" from="3444" to="3448" />
+    <span id="t_613" from="3449" to="3453" />
+    <span id="t_614" from="3454" to="3458" />
+    <span id="t_615" from="3459" to="3461" />
+    <span id="t_616" from="3462" to="3473" />
+    <span id="t_617" from="3474" to="3477" />
+    <span id="t_618" from="3478" to="3483" />
+    <span id="t_619" from="3484" to="3490" />
+    <span id="t_620" from="3491" to="3493" />
+    <span id="t_621" from="3494" to="3506" />
+    <span id="t_622" from="3506" to="3507" />
+    <span id="t_623" from="3508" to="3512" />
+    <span id="t_624" from="3513" to="3517" />
+    <span id="t_625" from="3518" to="3523" />
+    <span id="t_626" from="3524" to="3526" />
+    <span id="t_627" from="3527" to="3537" />
+    <span id="t_628" from="3538" to="3543" />
+    <span id="t_629" from="3543" to="3544" />
+    <span id="t_630" from="3545" to="3548" />
+    <span id="t_631" from="3549" to="3557" />
+    <span id="t_632" from="3558" to="3562" />
+    <span id="t_633" from="3563" to="3566" />
+    <span id="t_634" from="3567" to="3571" />
+    <span id="t_635" from="3572" to="3576" />
+    <span id="t_636" from="3577" to="3585" />
+    <span id="t_637" from="3586" to="3590" />
+    <span id="t_638" from="3591" to="3597" />
+    <span id="t_639" from="3598" to="3601" />
+    <span id="t_640" from="3602" to="3609" />
+    <span id="t_641" from="3610" to="3613" />
+    <span id="t_642" from="3614" to="3630" />
+    <span id="t_643" from="3630" to="3631" />
+    <span id="t_644" from="3632" to="3635" />
+    <span id="t_645" from="3636" to="3639" />
+    <span id="t_646" from="3640" to="3644" />
+    <span id="t_647" from="3644" to="3645" />
+    <span id="t_648" from="3646" to="3653" />
+    <span id="t_649" from="3654" to="3658" />
+    <span id="t_650" from="3659" to="3662" />
+    <span id="t_651" from="3663" to="3666" />
+    <span id="t_652" from="3667" to="3673" />
+    <span id="t_653" from="3673" to="3674" />
+    <span id="t_654" from="3675" to="3685" />
+    <span id="t_655" from="3686" to="3689" />
+    <span id="t_656" from="3690" to="3702" />
+    <span id="t_657" from="3703" to="3712" />
+    <span id="t_658" from="3712" to="3713" />
+    <span id="t_659" from="3714" to="3720" />
+    <span id="t_660" from="3721" to="3724" />
+    <span id="t_661" from="3725" to="3731" />
+    <span id="t_662" from="3731" to="3732" />
+    <span id="t_663" from="3733" to="3743" />
+    <span id="t_664" from="3744" to="3747" />
+    <span id="t_665" from="3748" to="3758" />
+    <span id="t_666" from="3759" to="3770" />
+    <span id="t_667" from="3770" to="3771" />
+    <span id="t_668" from="3772" to="3779" />
+    <span id="t_669" from="3780" to="3783" />
+    <span id="t_670" from="3784" to="3787" />
+    <span id="t_671" from="3788" to="3793" />
+    <span id="t_672" from="3794" to="3797" />
+    <span id="t_673" from="3798" to="3802" />
+    <span id="t_674" from="3803" to="3812" />
+    <span id="t_675" from="3813" to="3817" />
+    <span id="t_676" from="3817" to="3818" />
+    <span id="t_677" from="3819" to="3823" />
+    <span id="t_678" from="3823" to="3824" />
+    <span id="t_679" from="3825" to="3832" />
+    <span id="t_680" from="3833" to="3836" />
+    <span id="t_681" from="3837" to="3841" />
+    <span id="t_682" from="3842" to="3847" />
+    <span id="t_683" from="3847" to="3848" />
+    <span id="t_684" from="3849" to="3856" />
+    <span id="t_685" from="3857" to="3866" />
+    <span id="t_686" from="3867" to="3870" />
+    <span id="t_687" from="3871" to="3876" />
+    <span id="t_688" from="3877" to="3881" />
+    <span id="t_689" from="3881" to="3882" />
+    <span id="t_690" from="3883" to="3886" />
+    <span id="t_691" from="3887" to="3895" />
+    <span id="t_692" from="3896" to="3898" />
+    <span id="t_693" from="3899" to="3901" />
+    <span id="t_694" from="3902" to="3908" />
+    <span id="t_695" from="3909" to="3912" />
+    <span id="t_696" from="3913" to="3921" />
+    <span id="t_697" from="3922" to="3924" />
+    <span id="t_698" from="3925" to="3927" />
+    <span id="t_699" from="3928" to="3937" />
+    <span id="t_700" from="3937" to="3938" />
+    <span id="t_701" from="3939" to="3942" />
+    <span id="t_702" from="3943" to="3947" />
+    <span id="t_703" from="3948" to="3953" />
+    <span id="t_704" from="3954" to="3964" />
+    <span id="t_705" from="3964" to="3965" />
+    <span id="t_706" from="3966" to="3968" />
+    <span id="t_707" from="3969" to="3975" />
+    <span id="t_708" from="3976" to="3979" />
+    <span id="t_709" from="3980" to="3982" />
+    <span id="t_710" from="3983" to="3992" />
+    <span id="t_711" from="3993" to="3996" />
+    <span id="t_712" from="3997" to="3999" />
+    <span id="t_713" from="4000" to="4009" />
+    <span id="t_714" from="4010" to="4019" />
+    <span id="t_715" from="4019" to="4020" />
+    <span id="t_716" from="4021" to="4024" />
+    <span id="t_717" from="4025" to="4028" />
+    <span id="t_718" from="4029" to="4038" />
+    <span id="t_719" from="4038" to="4039" />
+    <span id="t_720" from="4040" to="4043" />
+    <span id="t_721" from="4044" to="4047" />
+    <span id="t_722" from="4048" to="4053" />
+    <span id="t_723" from="4054" to="4059" />
+    <span id="t_724" from="4060" to="4067" />
+    <span id="t_725" from="4068" to="4072" />
+    <span id="t_726" from="4072" to="4073" />
+    <span id="t_727" from="4074" to="4076" />
+    <span id="t_728" from="4077" to="4081" />
+    <span id="t_729" from="4082" to="4085" />
+    <span id="t_730" from="4086" to="4089" />
+    <span id="t_731" from="4090" to="4098" />
+    <span id="t_732" from="4098" to="4099" />
+    <span id="t_733" from="4100" to="4103" />
+    <span id="t_734" from="4104" to="4109" />
+    <span id="t_735" from="4109" to="4110" />
+    <span id="t_736" from="4111" to="4113" />
+    <span id="t_737" from="4114" to="4118" />
+    <span id="t_738" from="4119" to="4122" />
+    <span id="t_739" from="4123" to="4131" />
+    <span id="t_740" from="4132" to="4135" />
+    <span id="t_741" from="4136" to="4144" />
+    <span id="t_742" from="4144" to="4145" />
+    <span id="t_743" from="4146" to="4149" />
+    <span id="t_744" from="4150" to="4155" />
+    <span id="t_745" from="4156" to="4160" />
+    <span id="t_746" from="4160" to="4161" />
+    <span id="t_747" from="4162" to="4165" />
+    <span id="t_748" from="4166" to="4169" />
+    <span id="t_749" from="4170" to="4179" />
+    <span id="t_750" from="4180" to="4189" />
+    <span id="t_751" from="4190" to="4193" />
+    <span id="t_752" from="4194" to="4196" />
+    <span id="t_753" from="4197" to="4207" />
+    <span id="t_754" from="4208" to="4211" />
+    <span id="t_755" from="4212" to="4215" />
+    <span id="t_756" from="4216" to="4224" />
+    <span id="t_757" from="4224" to="4225" />
+    <span id="t_758" from="4226" to="4230" />
+    <span id="t_759" from="4231" to="4239" />
+    <span id="t_760" from="4240" to="4249" />
+    <span id="t_761" from="4249" to="4250" />
+    <span id="t_762" from="4251" to="4255" />
+    <span id="t_763" from="4256" to="4260" />
+    <span id="t_764" from="4260" to="4261" />
+    <span id="t_765" from="4262" to="4265" />
+    <span id="t_766" from="4266" to="4283" />
+    <span id="t_767" from="4284" to="4289" />
+    <span id="t_768" from="4290" to="4296" />
+    <span id="t_769" from="4296" to="4297" />
+    <span id="t_770" from="4298" to="4307" />
+    <span id="t_771" from="4307" to="4308" />
+    <span id="t_772" from="4309" to="4320" />
+    <span id="t_773" from="4321" to="4334" />
+    <span id="t_774" from="4335" to="4340" />
+    <span id="t_775" from="4341" to="4347" />
+    <span id="t_776" from="4348" to="4351" />
+    <span id="t_777" from="4351" to="4352" />
+    <span id="t_778" from="4353" to="4362" />
+    <span id="t_779" from="4362" to="4363" />
+    <span id="t_780" from="4364" to="4371" />
+    <span id="t_781" from="4372" to="4376" />
+    <span id="t_782" from="4377" to="4379" />
+    <span id="t_783" from="4379" to="4380" />
+    <span id="t_784" from="4381" to="4384" />
+    <span id="t_785" from="4385" to="4393" />
+    <span id="t_786" from="4394" to="4399" />
+    <span id="t_787" from="4400" to="4408" />
+    <span id="t_788" from="4409" to="4417" />
+    <span id="t_789" from="4418" to="4434" />
+    <span id="t_790" from="4435" to="4438" />
+    <span id="t_791" from="4439" to="4441" />
+    <span id="t_792" from="4442" to="4448" />
+    <span id="t_793" from="4448" to="4449" />
+    <span id="t_794" from="4450" to="4453" />
+    <span id="t_795" from="4454" to="4460" />
+    <span id="t_796" from="4461" to="4465" />
+    <span id="t_797" from="4466" to="4480" />
+    <span id="t_798" from="4481" to="4490" />
+    <span id="t_799" from="4490" to="4491" />
+    <span id="t_800" from="4492" to="4495" />
+    <span id="t_801" from="4496" to="4501" />
+    <span id="t_802" from="4502" to="4505" />
+    <span id="t_803" from="4506" to="4515" />
+    <span id="t_804" from="4516" to="4521" />
+    <span id="t_805" from="4522" to="4525" />
+    <span id="t_806" from="4526" to="4532" />
+    <span id="t_807" from="4533" to="4545" />
+    <span id="t_808" from="4546" to="4553" />
+    <span id="t_809" from="4554" to="4557" />
+    <span id="t_810" from="4558" to="4570" />
+    <span id="t_811" from="4571" to="4577" />
+    <span id="t_812" from="4578" to="4581" />
+    <span id="t_813" from="4582" to="4587" />
+    <span id="t_814" from="4588" to="4593" />
+    <span id="t_815" from="4594" to="4599" />
+    <span id="t_816" from="4600" to="4605" />
+    <span id="t_817" from="4606" to="4610" />
+    <span id="t_818" from="4611" to="4617" />
+    <span id="t_819" from="4617" to="4618" />
+    <span id="t_820" from="4619" to="4622" />
+    <span id="t_821" from="4623" to="4634" />
+    <span id="t_822" from="4635" to="4642" />
+    <span id="t_823" from="4643" to="4647" />
+    <span id="t_824" from="4647" to="4648" />
+    <span id="t_825" from="4649" to="4654" />
+    <span id="t_826" from="4655" to="4658" />
+    <span id="t_827" from="4659" to="4670" />
+    <span id="t_828" from="4671" to="4673" />
+    <span id="t_829" from="4674" to="4680" />
+    <span id="t_830" from="4681" to="4688" />
+    <span id="t_831" from="4689" to="4692" />
+    <span id="t_832" from="4693" to="4704" />
+    <span id="t_833" from="4705" to="4708" />
+    <span id="t_834" from="4709" to="4726" />
+    <span id="t_835" from="4727" to="4729" />
+    <span id="t_836" from="4730" to="4736" />
+    <span id="t_837" from="4737" to="4743" />
+    <span id="t_838" from="4744" to="4753" />
+    <span id="t_839" from="4754" to="4757" />
+    <span id="t_840" from="4758" to="4766" />
+    <span id="t_841" from="4767" to="4779" />
+    <span id="t_842" from="4780" to="4786" />
+    <span id="t_843" from="4786" to="4787" />
+    <span id="t_844" from="4788" to="4791" />
+    <span id="t_845" from="4792" to="4802" />
+    <span id="t_846" from="4803" to="4807" />
+    <span id="t_847" from="4808" to="4814" />
+    <span id="t_848" from="4815" to="4825" />
+    <span id="t_849" from="4826" to="4840" />
+    <span id="t_850" from="4841" to="4848" />
+    <span id="t_851" from="4849" to="4854" />
+    <span id="t_852" from="4854" to="4855" />
+    <span id="t_853" from="4856" to="4859" />
+    <span id="t_854" from="4860" to="4863" />
+    <span id="t_855" from="4864" to="4868" />
+    <span id="t_856" from="4869" to="4873" />
+    <span id="t_857" from="4874" to="4877" />
+    <span id="t_858" from="4878" to="4885" />
+    <span id="t_859" from="4886" to="4889" />
+    <span id="t_860" from="4890" to="4895" />
+    <span id="t_861" from="4896" to="4901" />
+    <span id="t_862" from="4902" to="4905" />
+    <span id="t_863" from="4906" to="4913" />
+    <span id="t_864" from="4914" to="4923" />
+    <span id="t_865" from="4924" to="4927" />
+    <span id="t_866" from="4928" to="4938" />
+    <span id="t_867" from="4939" to="4951" />
+    <span id="t_868" from="4952" to="4956" />
+    <span id="t_869" from="4956" to="4957" />
+    <span id="t_870" from="4958" to="4961" />
+    <span id="t_871" from="4962" to="4968" />
+    <span id="t_872" from="4969" to="4973" />
+    <span id="t_873" from="4974" to="4976" />
+    <span id="t_874" from="4977" to="4979" />
+    <span id="t_875" from="4980" to="4982" />
+    <span id="t_876" from="4983" to="4992" />
+    <span id="t_877" from="4993" to="4998" />
+    <span id="t_878" from="4998" to="4999" />
+    <span id="t_879" from="5000" to="5002" />
+    <span id="t_880" from="5003" to="5007" />
+    <span id="t_881" from="5008" to="5015" />
+    <span id="t_882" from="5016" to="5024" />
+    <span id="t_883" from="5024" to="5025" />
+    <span id="t_884" from="5026" to="5029" />
+    <span id="t_885" from="5030" to="5038" />
+    <span id="t_886" from="5038" to="5039" />
+    <span id="t_887" from="5040" to="5043" />
+    <span id="t_888" from="5044" to="5047" />
+    <span id="t_889" from="5048" to="5058" />
+    <span id="t_890" from="5058" to="5059" />
+    <span id="t_891" from="5060" to="5066" />
+    <span id="t_892" from="5067" to="5082" />
+    <span id="t_893" from="5082" to="5083" />
+    <span id="t_894" from="5084" to="5088" />
+    <span id="t_895" from="5088" to="5089" />
+    <span id="t_896" from="5090" to="5095" />
+    <span id="t_897" from="5096" to="5103" />
+    <span id="t_898" from="5103" to="5104" />
+    <span id="t_899" from="5105" to="5108" />
+    <span id="t_900" from="5109" to="5114" />
+    <span id="t_901" from="5115" to="5123" />
+    <span id="t_902" from="5123" to="5124" />
+    <span id="t_903" from="5125" to="5127" />
+    <span id="t_904" from="5128" to="5135" />
+    <span id="t_905" from="5136" to="5147" />
+    <span id="t_906" from="5148" to="5158" />
+    <span id="t_907" from="5159" to="5164" />
+    <span id="t_908" from="5165" to="5168" />
+    <span id="t_909" from="5169" to="5176" />
+    <span id="t_910" from="5176" to="5177" />
+    <span id="t_911" from="5178" to="5181" />
+    <span id="t_912" from="5182" to="5185" />
+    <span id="t_913" from="5186" to="5197" />
+    <span id="t_914" from="5198" to="5202" />
+    <span id="t_915" from="5203" to="5209" />
+    <span id="t_916" from="5209" to="5210" />
+    <span id="t_917" from="5211" to="5214" />
+    <span id="t_918" from="5215" to="5223" />
+    <span id="t_919" from="5224" to="5227" />
+    <span id="t_920" from="5228" to="5232" />
+    <span id="t_921" from="5233" to="5244" />
+    <span id="t_922" from="5245" to="5250" />
+    <span id="t_923" from="5251" to="5259" />
+    <span id="t_924" from="5260" to="5264" />
+    <span id="t_925" from="5264" to="5265" />
+    <span id="t_926" from="5266" to="5269" />
+    <span id="t_927" from="5270" to="5279" />
+    <span id="t_928" from="5279" to="5280" />
+    <span id="t_929" from="5281" to="5285" />
+    <span id="t_930" from="5286" to="5288" />
+    <span id="t_931" from="5289" to="5297" />
+    <span id="t_932" from="5298" to="5300" />
+    <span id="t_933" from="5301" to="5305" />
+    <span id="t_934" from="5306" to="5312" />
+    <span id="t_935" from="5312" to="5313" />
+    <span id="t_936" from="5314" to="5317" />
+    <span id="t_937" from="5318" to="5320" />
+    <span id="t_938" from="5321" to="5327" />
+    <span id="t_939" from="5328" to="5332" />
+    <span id="t_940" from="5332" to="5333" />
+    <span id="t_941" from="5334" to="5336" />
+    <span id="t_942" from="5337" to="5343" />
+    <span id="t_943" from="5344" to="5348" />
+    <span id="t_944" from="5349" to="5352" />
+    <span id="t_945" from="5353" to="5363" />
+    <span id="t_946" from="5364" to="5372" />
+    <span id="t_947" from="5372" to="5373" />
+    <span id="t_948" from="5374" to="5377" />
+    <span id="t_949" from="5378" to="5389" />
+    <span id="t_950" from="5390" to="5393" />
+    <span id="t_951" from="5394" to="5397" />
+    <span id="t_952" from="5398" to="5408" />
+    <span id="t_953" from="5409" to="5412" />
+    <span id="t_954" from="5413" to="5420" />
+    <span id="t_955" from="5420" to="5421" />
+    <span id="t_956" from="5422" to="5425" />
+    <span id="t_957" from="5426" to="5435" />
+    <span id="t_958" from="5436" to="5439" />
+    <span id="t_959" from="5440" to="5447" />
+    <span id="t_960" from="5447" to="5448" />
+    <span id="t_961" from="5449" to="5452" />
+    <span id="t_962" from="5453" to="5465" />
+    <span id="t_963" from="5466" to="5470" />
+    <span id="t_964" from="5471" to="5476" />
+    <span id="t_965" from="5476" to="5477" />
+    <span id="t_966" from="5478" to="5481" />
+    <span id="t_967" from="5482" to="5488" />
+    <span id="t_968" from="5489" to="5495" />
+    <span id="t_969" from="5496" to="5499" />
+    <span id="t_970" from="5500" to="5503" />
+    <span id="t_971" from="5504" to="5513" />
+    <span id="t_972" from="5514" to="5517" />
+    <span id="t_973" from="5518" to="5525" />
+    <span id="t_974" from="5526" to="5529" />
+    <span id="t_975" from="5530" to="5538" />
+    <span id="t_976" from="5539" to="5547" />
+    <span id="t_977" from="5548" to="5550" />
+    <span id="t_978" from="5551" to="5565" />
+    <span id="t_979" from="5566" to="5569" />
+    <span id="t_980" from="5570" to="5583" />
+    <span id="t_981" from="5583" to="5584" />
+    <span id="t_982" from="5585" to="5589" />
+    <span id="t_983" from="5590" to="5593" />
+    <span id="t_984" from="5594" to="5599" />
+    <span id="t_985" from="5600" to="5603" />
+    <span id="t_986" from="5604" to="5611" />
+    <span id="t_987" from="5612" to="5618" />
+    <span id="t_988" from="5618" to="5619" />
+    <span id="t_989" from="5620" to="5622" />
+    <span id="t_990" from="5623" to="5628" />
+    <span id="t_991" from="5629" to="5632" />
+    <span id="t_992" from="5633" to="5639" />
+    <span id="t_993" from="5640" to="5643" />
+    <span id="t_994" from="5644" to="5647" />
+    <span id="t_995" from="5648" to="5660" />
+    <span id="t_996" from="5661" to="5670" />
+    <span id="t_997" from="5670" to="5671" />
+    <span id="t_998" from="5671" to="5672" />
+    <span id="t_999" from="5673" to="5682" />
+    <span id="t_1000" from="5682" to="5683" />
+    <span id="t_1001" from="5684" to="5687" />
+    <span id="t_1002" from="5688" to="5701" />
+    <span id="t_1003" from="5702" to="5707" />
+    <span id="t_1004" from="5708" to="5716" />
+    <span id="t_1005" from="5717" to="5722" />
+    <span id="t_1006" from="5722" to="5723" />
+    <span id="t_1007" from="5724" to="5727" />
+    <span id="t_1008" from="5728" to="5732" />
+    <span id="t_1009" from="5733" to="5736" />
+    <span id="t_1010" from="5737" to="5740" />
+    <span id="t_1011" from="5741" to="5746" />
+    <span id="t_1012" from="5747" to="5753" />
+    <span id="t_1013" from="5753" to="5754" />
+    <span id="t_1014" from="5755" to="5758" />
+    <span id="t_1015" from="5759" to="5761" />
+    <span id="t_1016" from="5762" to="5771" />
+    <span id="t_1017" from="5771" to="5772" />
+    <span id="t_1018" from="5773" to="5777" />
+    <span id="t_1019" from="5778" to="5782" />
+    <span id="t_1020" from="5783" to="5791" />
+    <span id="t_1021" from="5792" to="5794" />
+    <span id="t_1022" from="5795" to="5801" />
+    <span id="t_1023" from="5801" to="5802" />
+    <span id="t_1024" from="5803" to="5806" />
+    <span id="t_1025" from="5807" to="5811" />
+    <span id="t_1026" from="5812" to="5816" />
+    <span id="t_1027" from="5817" to="5819" />
+    <span id="t_1028" from="5820" to="5825" />
+    <span id="t_1029" from="5826" to="5831" />
+    <span id="t_1030" from="5832" to="5835" />
+    <span id="t_1031" from="5836" to="5846" />
+    <span id="t_1032" from="5847" to="5856" />
+    <span id="t_1033" from="5856" to="5857" />
+    <span id="t_1034" from="5858" to="5864" />
+    <span id="t_1035" from="5865" to="5868" />
+    <span id="t_1036" from="5869" to="5874" />
+    <span id="t_1037" from="5875" to="5881" />
+    <span id="t_1038" from="5882" to="5888" />
+    <span id="t_1039" from="5888" to="5889" />
+    <span id="t_1040" from="5890" to="5901" />
+    <span id="t_1041" from="5902" to="5910" />
+    <span id="t_1042" from="5911" to="5917" />
+    <span id="t_1043" from="5918" to="5920" />
+    <span id="t_1044" from="5921" to="5924" />
+    <span id="t_1045" from="5925" to="5930" />
+    <span id="t_1046" from="5931" to="5936" />
+    <span id="t_1047" from="5936" to="5937" />
+    <span id="t_1048" from="5938" to="5940" />
+    <span id="t_1049" from="5941" to="5944" />
+    <span id="t_1050" from="5945" to="5953" />
+    <span id="t_1051" from="5954" to="5960" />
+    <span id="t_1052" from="5961" to="5970" />
+    <span id="t_1053" from="5971" to="5980" />
+    <span id="t_1054" from="5980" to="5981" />
+    <span id="t_1055" from="5982" to="5986" />
+    <span id="t_1056" from="5987" to="5992" />
+    <span id="t_1057" from="5993" to="5996" />
+    <span id="t_1058" from="5997" to="6002" />
+    <span id="t_1059" from="6003" to="6009" />
+    <span id="t_1060" from="6010" to="6013" />
+    <span id="t_1061" from="6014" to="6022" />
+    <span id="t_1062" from="6022" to="6023" />
+    <span id="t_1063" from="6024" to="6026" />
+    <span id="t_1064" from="6027" to="6030" />
+    <span id="t_1065" from="6031" to="6038" />
+    <span id="t_1066" from="6039" to="6042" />
+    <span id="t_1067" from="6043" to="6051" />
+    <span id="t_1068" from="6051" to="6052" />
+    <span id="t_1069" from="6053" to="6056" />
+    <span id="t_1070" from="6057" to="6070" />
+    <span id="t_1071" from="6071" to="6080" />
+    <span id="t_1072" from="6081" to="6087" />
+    <span id="t_1073" from="6088" to="6091" />
+    <span id="t_1074" from="6092" to="6100" />
+    <span id="t_1075" from="6101" to="6104" />
+    <span id="t_1076" from="6105" to="6111" />
+    <span id="t_1077" from="6112" to="6118" />
+    <span id="t_1078" from="6118" to="6119" />
+    <span id="t_1079" from="6120" to="6123" />
+    <span id="t_1080" from="6124" to="6127" />
+    <span id="t_1081" from="6128" to="6136" />
+    <span id="t_1082" from="6137" to="6140" />
+    <span id="t_1083" from="6141" to="6145" />
+    <span id="t_1084" from="6145" to="6146" />
+    <span id="t_1085" from="6147" to="6150" />
+    <span id="t_1086" from="6151" to="6154" />
+    <span id="t_1087" from="6155" to="6161" />
+    <span id="t_1088" from="6162" to="6170" />
+    <span id="t_1089" from="6170" to="6171" />
+    <span id="t_1090" from="6172" to="6175" />
+    <span id="t_1091" from="6176" to="6180" />
+    <span id="t_1092" from="6181" to="6190" />
+    <span id="t_1093" from="6191" to="6193" />
+    <span id="t_1094" from="6194" to="6200" />
+    <span id="t_1095" from="6201" to="6206" />
+    <span id="t_1096" from="6206" to="6207" />
+    <span id="t_1097" from="6208" to="6210" />
+    <span id="t_1098" from="6211" to="6219" />
+    <span id="t_1099" from="6220" to="6224" />
+    <span id="t_1100" from="6225" to="6229" />
+    <span id="t_1101" from="6230" to="6234" />
+    <span id="t_1102" from="6235" to="6240" />
+    <span id="t_1103" from="6241" to="6247" />
+    <span id="t_1104" from="6248" to="6250" />
+    <span id="t_1105" from="6251" to="6254" />
+    <span id="t_1106" from="6255" to="6260" />
+    <span id="t_1107" from="6260" to="6261" />
+    <span id="t_1108" from="6262" to="6265" />
+    <span id="t_1109" from="6266" to="6268" />
+    <span id="t_1110" from="6269" to="6276" />
+    <span id="t_1111" from="6276" to="6277" />
+    <span id="t_1112" from="6278" to="6281" />
+    <span id="t_1113" from="6282" to="6290" />
+    <span id="t_1114" from="6291" to="6293" />
+    <span id="t_1115" from="6294" to="6297" />
+    <span id="t_1116" from="6297" to="6298" />
+    <span id="t_1117" from="6299" to="6302" />
+    <span id="t_1118" from="6303" to="6305" />
+    <span id="t_1119" from="6306" to="6310" />
+    <span id="t_1120" from="6311" to="6314" />
+    <span id="t_1121" from="6315" to="6319" />
+    <span id="t_1122" from="6320" to="6326" />
+    <span id="t_1123" from="6326" to="6327" />
+    <span id="t_1124" from="6328" to="6332" />
+    <span id="t_1125" from="6333" to="6339" />
+    <span id="t_1126" from="6340" to="6343" />
+    <span id="t_1127" from="6344" to="6347" />
+    <span id="t_1128" from="6348" to="6362" />
+    <span id="t_1129" from="6363" to="6366" />
+    <span id="t_1130" from="6367" to="6370" />
+    <span id="t_1131" from="6371" to="6378" />
+    <span id="t_1132" from="6379" to="6382" />
+    <span id="t_1133" from="6383" to="6394" />
+    <span id="t_1134" from="6395" to="6406" />
+    <span id="t_1135" from="6406" to="6407" />
+    <span id="t_1136" from="6408" to="6411" />
+    <span id="t_1137" from="6412" to="6415" />
+    <span id="t_1138" from="6416" to="6422" />
+    <span id="t_1139" from="6423" to="6427" />
+    <span id="t_1140" from="6428" to="6430" />
+    <span id="t_1141" from="6431" to="6437" />
+    <span id="t_1142" from="6438" to="6444" />
+    <span id="t_1143" from="6444" to="6445" />
+    <span id="t_1144" from="6446" to="6448" />
+    <span id="t_1145" from="6449" to="6455" />
+    <span id="t_1146" from="6456" to="6459" />
+    <span id="t_1147" from="6460" to="6471" />
+    <span id="t_1148" from="6472" to="6481" />
+    <span id="t_1149" from="6482" to="6485" />
+    <span id="t_1150" from="6485" to="6486" />
+    <span id="t_1151" from="6487" to="6490" />
+    <span id="t_1152" from="6491" to="6494" />
+    <span id="t_1153" from="6495" to="6501" />
+    <span id="t_1154" from="6501" to="6502" />
+    <span id="t_1155" from="6503" to="6508" />
+    <span id="t_1156" from="6509" to="6516" />
+    <span id="t_1157" from="6517" to="6521" />
+    <span id="t_1158" from="6522" to="6525" />
+    <span id="t_1159" from="6526" to="6538" />
+    <span id="t_1160" from="6539" to="6542" />
+    <span id="t_1161" from="6543" to="6552" />
+    <span id="t_1162" from="6552" to="6553" />
+    <span id="t_1163" from="6554" to="6560" />
+    <span id="t_1164" from="6561" to="6564" />
+    <span id="t_1165" from="6565" to="6570" />
+    <span id="t_1166" from="6571" to="6576" />
+    <span id="t_1167" from="6577" to="6580" />
+    <span id="t_1168" from="6581" to="6584" />
+    <span id="t_1169" from="6585" to="6599" />
+    <span id="t_1170" from="6600" to="6609" />
+    <span id="t_1171" from="6610" to="6618" />
+    <span id="t_1172" from="6618" to="6619" />
+    <span id="t_1173" from="6620" to="6628" />
+    <span id="t_1174" from="6629" to="6634" />
+    <span id="t_1175" from="6635" to="6638" />
+    <span id="t_1176" from="6639" to="6654" />
+    <span id="t_1177" from="6655" to="6660" />
+    <span id="t_1178" from="6661" to="6664" />
+    <span id="t_1179" from="6664" to="6665" />
+    <span id="t_1180" from="6666" to="6669" />
+    <span id="t_1181" from="6670" to="6673" />
+    <span id="t_1182" from="6674" to="6686" />
+    <span id="t_1183" from="6686" to="6687" />
+    <span id="t_1184" from="6688" to="6689" />
+    <span id="t_1185" from="6690" to="6700" />
+    <span id="t_1186" from="6701" to="6707" />
+    <span id="t_1187" from="6708" to="6715" />
+    <span id="t_1188" from="6716" to="6724" />
+    <span id="t_1189" from="6725" to="6727" />
+    <span id="t_1190" from="6728" to="6730" />
+    <span id="t_1191" from="6730" to="6731" />
+    <span id="t_1192" from="6732" to="6737" />
+    <span id="t_1193" from="6738" to="6743" />
+    <span id="t_1194" from="6744" to="6747" />
+    <span id="t_1195" from="6748" to="6751" />
+    <span id="t_1196" from="6752" to="6759" />
+    <span id="t_1197" from="6760" to="6766" />
+    <span id="t_1198" from="6767" to="6769" />
+    <span id="t_1199" from="6769" to="6770" />
+    <span id="t_1200" from="6771" to="6774" />
+    <span id="t_1201" from="6775" to="6778" />
+    <span id="t_1202" from="6779" to="6783" />
+    <span id="t_1203" from="6784" to="6793" />
+    <span id="t_1204" from="6794" to="6800" />
+    <span id="t_1205" from="6801" to="6807" />
+    <span id="t_1206" from="6808" to="6812" />
+    <span id="t_1207" from="6812" to="6813" />
+    <span id="t_1208" from="6814" to="6817" />
+    <span id="t_1209" from="6818" to="6820" />
+    <span id="t_1210" from="6821" to="6825" />
+    <span id="t_1211" from="6826" to="6831" />
+    <span id="t_1212" from="6832" to="6836" />
+    <span id="t_1213" from="6836" to="6837" />
+    <span id="t_1214" from="6838" to="6841" />
+    <span id="t_1215" from="6842" to="6845" />
+    <span id="t_1216" from="6846" to="6863" />
+    <span id="t_1217" from="6864" to="6876" />
+    <span id="t_1218" from="6877" to="6882" />
+    <span id="t_1219" from="6882" to="6883" />
+    <span id="t_1220" from="6884" to="6887" />
+    <span id="t_1221" from="6888" to="6890" />
+    <span id="t_1222" from="6891" to="6897" />
+    <span id="t_1223" from="6898" to="6906" />
+    <span id="t_1224" from="6907" to="6910" />
+    <span id="t_1225" from="6910" to="6911" />
+    <span id="t_1226" from="6912" to="6915" />
+    <span id="t_1227" from="6916" to="6918" />
+    <span id="t_1228" from="6919" to="6923" />
+    <span id="t_1229" from="6924" to="6930" />
+    <span id="t_1230" from="6931" to="6936" />
+    <span id="t_1231" from="6937" to="6946" />
+    <span id="t_1232" from="6947" to="6951" />
+    <span id="t_1233" from="6951" to="6952" />
+    <span id="t_1234" from="6953" to="6956" />
+    <span id="t_1235" from="6957" to="6962" />
+    <span id="t_1236" from="6963" to="6968" />
+    <span id="t_1237" from="6969" to="6972" />
+    <span id="t_1238" from="6973" to="6980" />
+    <span id="t_1239" from="6981" to="6987" />
+    <span id="t_1240" from="6988" to="6995" />
+    <span id="t_1241" from="6995" to="6996" />
+    <span id="t_1242" from="6997" to="7000" />
+    <span id="t_1243" from="7001" to="7007" />
+    <span id="t_1244" from="7008" to="7011" />
+    <span id="t_1245" from="7012" to="7019" />
+    <span id="t_1246" from="7020" to="7025" />
+    <span id="t_1247" from="7026" to="7036" />
+    <span id="t_1248" from="7036" to="7037" />
+    <span id="t_1249" from="7038" to="7043" />
+    <span id="t_1250" from="7044" to="7052" />
+    <span id="t_1251" from="7053" to="7056" />
+    <span id="t_1252" from="7057" to="7065" />
+    <span id="t_1253" from="7066" to="7077" />
+    <span id="t_1254" from="7078" to="7083" />
+    <span id="t_1255" from="7084" to="7088" />
+    <span id="t_1256" from="7089" to="7094" />
+    <span id="t_1257" from="7095" to="7101" />
+    <span id="t_1258" from="7102" to="7118" />
+    <span id="t_1259" from="7119" to="7126" />
+    <span id="t_1260" from="7127" to="7133" />
+    <span id="t_1261" from="7134" to="7141" />
+    <span id="t_1262" from="7141" to="7142" />
+    <span id="t_1263" from="7143" to="7145" />
+    <span id="t_1264" from="7146" to="7153" />
+    <span id="t_1265" from="7153" to="7154" />
+    <span id="t_1266" from="7155" to="7159" />
+    <span id="t_1267" from="7160" to="7163" />
+    <span id="t_1268" from="7163" to="7164" />
+    <span id="t_1269" from="7165" to="7171" />
+    <span id="t_1270" from="7172" to="7176" />
+    <span id="t_1271" from="7177" to="7184" />
+    <span id="t_1272" from="7185" to="7196" />
+    <span id="t_1273" from="7197" to="7204" />
+    <span id="t_1274" from="7205" to="7217" />
+    <span id="t_1275" from="7218" to="7228" />
+    <span id="t_1276" from="7228" to="7229" />
+    <span id="t_1277" from="7230" to="7233" />
+    <span id="t_1278" from="7234" to="7237" />
+    <span id="t_1279" from="7238" to="7242" />
+    <span id="t_1280" from="7243" to="7248" />
+    <span id="t_1281" from="7249" to="7254" />
+    <span id="t_1282" from="7255" to="7264" />
+    <span id="t_1283" from="7265" to="7269" />
+    <span id="t_1284" from="7270" to="7279" />
+    <span id="t_1285" from="7280" to="7283" />
+    <span id="t_1286" from="7284" to="7294" />
+    <span id="t_1287" from="7295" to="7310" />
+    <span id="t_1288" from="7311" to="7316" />
+    <span id="t_1289" from="7316" to="7317" />
+    <span id="t_1290" from="7318" to="7332" />
+    <span id="t_1291" from="7333" to="7336" />
+    <span id="t_1292" from="7337" to="7340" />
+    <span id="t_1293" from="7341" to="7344" />
+    <span id="t_1294" from="7345" to="7356" />
+    <span id="t_1295" from="7356" to="7357" />
+    <span id="t_1296" from="7358" to="7361" />
+    <span id="t_1297" from="7362" to="7371" />
+    <span id="t_1298" from="7372" to="7380" />
+    <span id="t_1299" from="7381" to="7384" />
+    <span id="t_1300" from="7385" to="7392" />
+    <span id="t_1301" from="7392" to="7393" />
+    <span id="t_1302" from="7394" to="7397" />
+    <span id="t_1303" from="7398" to="7405" />
+    <span id="t_1304" from="7406" to="7416" />
+    <span id="t_1305" from="7417" to="7420" />
+    <span id="t_1306" from="7421" to="7424" />
+    <span id="t_1307" from="7425" to="7429" />
+    <span id="t_1308" from="7430" to="7435" />
+    <span id="t_1309" from="7435" to="7436" />
+    <span id="t_1310" from="7437" to="7440" />
+    <span id="t_1311" from="7441" to="7453" />
+    <span id="t_1312" from="7454" to="7461" />
+    <span id="t_1313" from="7462" to="7471" />
+    <span id="t_1314" from="7471" to="7472" />
+    <span id="t_1315" from="7473" to="7485" />
+    <span id="t_1316" from="7486" to="7495" />
+    <span id="t_1317" from="7495" to="7496" />
+    <span id="t_1318" from="7497" to="7500" />
+    <span id="t_1319" from="7501" to="7508" />
+    <span id="t_1320" from="7509" to="7520" />
+    <span id="t_1321" from="7521" to="7530" />
+    <span id="t_1322" from="7530" to="7531" />
+    <span id="t_1323" from="7532" to="7535" />
+    <span id="t_1324" from="7536" to="7547" />
+    <span id="t_1325" from="7547" to="7548" />
+    <span id="t_1326" from="7549" to="7552" />
+    <span id="t_1327" from="7553" to="7565" />
+    <span id="t_1328" from="7566" to="7568" />
+    <span id="t_1329" from="7569" to="7575" />
+    <span id="t_1330" from="7576" to="7581" />
+    <span id="t_1331" from="7582" to="7585" />
+    <span id="t_1332" from="7586" to="7590" />
+    <span id="t_1333" from="7591" to="7603" />
+    <span id="t_1334" from="7604" to="7617" />
+    <span id="t_1335" from="7618" to="7621" />
+    <span id="t_1336" from="7622" to="7633" />
+    <span id="t_1337" from="7633" to="7634" />
+    <span id="t_1338" from="7635" to="7638" />
+    <span id="t_1339" from="7639" to="7645" />
+    <span id="t_1340" from="7646" to="7654" />
+    <span id="t_1341" from="7655" to="7660" />
+    <span id="t_1342" from="7660" to="7661" />
+    <span id="t_1343" from="7662" to="7665" />
+    <span id="t_1344" from="7666" to="7669" />
+    <span id="t_1345" from="7670" to="7677" />
+    <span id="t_1346" from="7677" to="7678" />
+    <span id="t_1347" from="7679" to="7681" />
+    <span id="t_1348" from="7682" to="7686" />
+    <span id="t_1349" from="7687" to="7696" />
+    <span id="t_1350" from="7696" to="7697" />
+    <span id="t_1351" from="7698" to="7701" />
+    <span id="t_1352" from="7702" to="7709" />
+    <span id="t_1353" from="7709" to="7710" />
+    <span id="t_1354" from="7711" to="7714" />
+    <span id="t_1355" from="7715" to="7717" />
+    <span id="t_1356" from="7718" to="7721" />
+    <span id="t_1357" from="7722" to="7727" />
+    <span id="t_1358" from="7728" to="7736" />
+    <span id="t_1359" from="7737" to="7745" />
+    <span id="t_1360" from="7746" to="7748" />
+    <span id="t_1361" from="7749" to="7752" />
+    <span id="t_1362" from="7753" to="7757" />
+    <span id="t_1363" from="7758" to="7765" />
+    <span id="t_1364" from="7766" to="7771" />
+    <span id="t_1365" from="7771" to="7772" />
+    <span id="t_1366" from="7773" to="7776" />
+    <span id="t_1367" from="7777" to="7781" />
+    <span id="t_1368" from="7782" to="7788" />
+    <span id="t_1369" from="7789" to="7794" />
+    <span id="t_1370" from="7794" to="7795" />
+    <span id="t_1371" from="7796" to="7800" />
+    <span id="t_1372" from="7801" to="7803" />
+    <span id="t_1373" from="7804" to="7809" />
+    <span id="t_1374" from="7810" to="7812" />
+    <span id="t_1375" from="7813" to="7818" />
+    <span id="t_1376" from="7819" to="7825" />
+    <span id="t_1377" from="7826" to="7831" />
+    <span id="t_1378" from="7832" to="7838" />
+    <span id="t_1379" from="7838" to="7839" />
+    <span id="t_1380" from="7840" to="7843" />
+    <span id="t_1381" from="7844" to="7855" />
+    <span id="t_1382" from="7856" to="7864" />
+    <span id="t_1383" from="7865" to="7868" />
+    <span id="t_1384" from="7869" to="7873" />
+    <span id="t_1385" from="7874" to="7888" />
+    <span id="t_1386" from="7889" to="7899" />
+    <span id="t_1387" from="7900" to="7910" />
+    <span id="t_1388" from="7910" to="7911" />
+    <span id="t_1389" from="7912" to="7915" />
+    <span id="t_1390" from="7915" to="7916" />
+    <span id="t_1391" from="7917" to="7925" />
+    <span id="t_1392" from="7925" to="7926" />
+    <span id="t_1393" from="7927" to="7934" />
+    <span id="t_1394" from="7935" to="7944" />
+    <span id="t_1395" from="7945" to="7953" />
+    <span id="t_1396" from="7954" to="7957" />
+    <span id="t_1397" from="7957" to="7958" />
+    <span id="t_1398" from="7959" to="7962" />
+    <span id="t_1399" from="7963" to="7974" />
+    <span id="t_1400" from="7975" to="7980" />
+    <span id="t_1401" from="7981" to="7984" />
+    <span id="t_1402" from="7985" to="7988" />
+    <span id="t_1403" from="7989" to="7997" />
+    <span id="t_1404" from="7998" to="8000" />
+    <span id="t_1405" from="8001" to="8006" />
+    <span id="t_1406" from="8007" to="8011" />
+    <span id="t_1407" from="8012" to="8020" />
+    <span id="t_1408" from="8021" to="8030" />
+    <span id="t_1409" from="8031" to="8034" />
+    <span id="t_1410" from="8035" to="8038" />
+    <span id="t_1411" from="8039" to="8042" />
+    <span id="t_1412" from="8043" to="8052" />
+    <span id="t_1413" from="8052" to="8053" />
+    <span id="t_1414" from="8054" to="8057" />
+    <span id="t_1415" from="8058" to="8061" />
+    <span id="t_1416" from="8062" to="8076" />
+    <span id="t_1417" from="8076" to="8077" />
+    <span id="t_1418" from="8078" to="8085" />
+    <span id="t_1419" from="8085" to="8086" />
+    <span id="t_1420" from="8087" to="8091" />
+    <span id="t_1421" from="8092" to="8095" />
+    <span id="t_1422" from="8096" to="8105" />
+    <span id="t_1423" from="8106" to="8109" />
+    <span id="t_1424" from="8110" to="8116" />
+    <span id="t_1425" from="8117" to="8120" />
+    <span id="t_1426" from="8121" to="8124" />
+    <span id="t_1427" from="8124" to="8125" />
+    <span id="t_1428" from="8126" to="8131" />
+    <span id="t_1429" from="8132" to="8137" />
+    <span id="t_1430" from="8138" to="8140" />
+    <span id="t_1431" from="8141" to="8143" />
+    <span id="t_1432" from="8144" to="8147" />
+    <span id="t_1433" from="8148" to="8151" />
+    <span id="t_1434" from="8152" to="8156" />
+    <span id="t_1435" from="8157" to="8163" />
+    <span id="t_1436" from="8164" to="8172" />
+    <span id="t_1437" from="8172" to="8173" />
+    <span id="t_1438" from="8174" to="8184" />
+    <span id="t_1439" from="8184" to="8185" />
+    <span id="t_1440" from="8186" to="8190" />
+    <span id="t_1441" from="8191" to="8193" />
+    <span id="t_1442" from="8194" to="8202" />
+    <span id="t_1443" from="8202" to="8203" />
+    <span id="t_1444" from="8204" to="8212" />
+    <span id="t_1445" from="8212" to="8213" />
+    <span id="t_1446" from="8214" to="8218" />
+    <span id="t_1447" from="8218" to="8219" />
+    <span id="t_1448" from="8220" to="8226" />
+    <span id="t_1449" from="8226" to="8227" />
+    <span id="t_1450" from="8228" to="8236" />
+    <span id="t_1451" from="8237" to="8240" />
+    <span id="t_1452" from="8241" to="8247" />
+    <span id="t_1453" from="8247" to="8248" />
+    <span id="t_1454" from="8249" to="8255" />
+    <span id="t_1455" from="8256" to="8262" />
+    <span id="t_1456" from="8263" to="8276" />
+    <span id="t_1457" from="8277" to="8280" />
+    <span id="t_1458" from="8281" to="8285" />
+    <span id="t_1459" from="8286" to="8288" />
+    <span id="t_1460" from="8289" to="8297" />
+    <span id="t_1461" from="8297" to="8298" />
+    <span id="t_1462" from="8299" to="8302" />
+    <span id="t_1463" from="8303" to="8315" />
+    <span id="t_1464" from="8316" to="8323" />
+    <span id="t_1465" from="8324" to="8331" />
+    <span id="t_1466" from="8332" to="8336" />
+    <span id="t_1467" from="8337" to="8340" />
+    <span id="t_1468" from="8341" to="8345" />
+    <span id="t_1469" from="8346" to="8348" />
+    <span id="t_1470" from="8349" to="8352" />
+    <span id="t_1471" from="8353" to="8357" />
+    <span id="t_1472" from="8357" to="8358" />
+    <span id="t_1473" from="8359" to="8370" />
+    <span id="t_1474" from="8371" to="8375" />
+    <span id="t_1475" from="8376" to="8380" />
+    <span id="t_1476" from="8381" to="8386" />
+    <span id="t_1477" from="8387" to="8393" />
+    <span id="t_1478" from="8393" to="8394" />
+    <span id="t_1479" from="8395" to="8399" />
+    <span id="t_1480" from="8400" to="8403" />
+    <span id="t_1481" from="8404" to="8409" />
+    <span id="t_1482" from="8410" to="8414" />
+    <span id="t_1483" from="8415" to="8419" />
+    <span id="t_1484" from="8420" to="8424" />
+    <span id="t_1485" from="8425" to="8430" />
+    <span id="t_1486" from="8431" to="8437" />
+    <span id="t_1487" from="8437" to="8438" />
+    <span id="t_1488" from="8439" to="8441" />
+    <span id="t_1489" from="8442" to="8448" />
+    <span id="t_1490" from="8449" to="8452" />
+    <span id="t_1491" from="8453" to="8460" />
+    <span id="t_1492" from="8461" to="8465" />
+    <span id="t_1493" from="8466" to="8471" />
+    <span id="t_1494" from="8472" to="8476" />
+    <span id="t_1495" from="8477" to="8481" />
+    <span id="t_1496" from="8482" to="8489" />
+    <span id="t_1497" from="8489" to="8490" />
+    <span id="t_1498" from="8491" to="8493" />
+    <span id="t_1499" from="8494" to="8497" />
+    <span id="t_1500" from="8498" to="8501" />
+    <span id="t_1501" from="8502" to="8511" />
+    <span id="t_1502" from="8512" to="8517" />
+    <span id="t_1503" from="8518" to="8523" />
+    <span id="t_1504" from="8524" to="8529" />
+    <span id="t_1505" from="8530" to="8540" />
+    <span id="t_1506" from="8540" to="8541" />
+    <span id="t_1507" from="8542" to="8544" />
+    <span id="t_1508" from="8545" to="8555" />
+    <span id="t_1509" from="8556" to="8559" />
+    <span id="t_1510" from="8560" to="8565" />
+    <span id="t_1511" from="8566" to="8569" />
+    <span id="t_1512" from="8570" to="8580" />
+    <span id="t_1513" from="8581" to="8584" />
+    <span id="t_1514" from="8585" to="8592" />
+    <span id="t_1515" from="8592" to="8593" />
+    <span id="t_1516" from="8594" to="8597" />
+    <span id="t_1517" from="8598" to="8604" />
+    <span id="t_1518" from="8605" to="8608" />
+    <span id="t_1519" from="8609" to="8612" />
+    <span id="t_1520" from="8613" to="8621" />
+    <span id="t_1521" from="8622" to="8630" />
+    <span id="t_1522" from="8631" to="8638" />
+    <span id="t_1523" from="8638" to="8639" />
+    <span id="t_1524" from="8640" to="8643" />
+    <span id="t_1525" from="8644" to="8646" />
+    <span id="t_1526" from="8647" to="8658" />
+    <span id="t_1527" from="8659" to="8663" />
+    <span id="t_1528" from="8663" to="8664" />
+    <span id="t_1529" from="8665" to="8668" />
+    <span id="t_1530" from="8669" to="8680" />
+    <span id="t_1531" from="8681" to="8685" />
+    <span id="t_1532" from="8685" to="8686" />
+    <span id="t_1533" from="8687" to="8693" />
+    <span id="t_1534" from="8694" to="8697" />
+    <span id="t_1535" from="8698" to="8700" />
+    <span id="t_1536" from="8701" to="8706" />
+    <span id="t_1537" from="8707" to="8710" />
+    <span id="t_1538" from="8711" to="8714" />
+    <span id="t_1539" from="8715" to="8724" />
+    <span id="t_1540" from="8725" to="8728" />
+    <span id="t_1541" from="8729" to="8738" />
+    <span id="t_1542" from="8739" to="8745" />
+    <span id="t_1543" from="8745" to="8746" />
+    <span id="t_1544" from="8747" to="8751" />
+    <span id="t_1545" from="8752" to="8757" />
+    <span id="t_1546" from="8758" to="8761" />
+    <span id="t_1547" from="8762" to="8770" />
+    <span id="t_1548" from="8771" to="8775" />
+    <span id="t_1549" from="8776" to="8781" />
+    <span id="t_1550" from="8782" to="8788" />
+    <span id="t_1551" from="8789" to="8791" />
+    <span id="t_1552" from="8792" to="8799" />
+    <span id="t_1553" from="8800" to="8806" />
+    <span id="t_1554" from="8806" to="8807" />
+    <span id="t_1555" from="8808" to="8814" />
+    <span id="t_1556" from="8815" to="8818" />
+    <span id="t_1557" from="8819" to="8824" />
+    <span id="t_1558" from="8825" to="8828" />
+    <span id="t_1559" from="8829" to="8841" />
+    <span id="t_1560" from="8841" to="8842" />
+    <span id="t_1561" from="8843" to="8852" />
+    <span id="t_1562" from="8853" to="8857" />
+    <span id="t_1563" from="8858" to="8868" />
+    <span id="t_1564" from="8868" to="8869" />
+    <span id="t_1565" from="8870" to="8887" />
+    <span id="t_1566" from="8887" to="8888" />
+  </spanList>
+</layer>
\ No newline at end of file
diff --git a/t/annotation/corpus/doc/0002/base/tokens_conservative.xml b/t/annotation/corpus/doc/0002/base/tokens_conservative.xml
new file mode 100644
index 0000000..53ffa79
--- /dev/null
+++ b/t/annotation/corpus/doc/0002/base/tokens_conservative.xml
@@ -0,0 +1,1568 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="span.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+
+<layer docid="GOE_AGX.00002" xmlns="http://ids-mannheim.de/ns/KorAP" version="KorAP-0.4">
+  <spanList>
+    <span id="t_0" from="0" to="7" />
+    <span id="t_1" from="8" to="11" />
+    <span id="t_2" from="12" to="23" />
+    <span id="t_3" from="24" to="32" />
+    <span id="t_4" from="33" to="36" />
+    <span id="t_5" from="37" to="48" />
+    <span id="t_6" from="48" to="49" />
+    <span id="t_7" from="51" to="54" />
+    <span id="t_8" from="55" to="59" />
+    <span id="t_9" from="60" to="74" />
+    <span id="t_10" from="75" to="86" />
+    <span id="t_11" from="86" to="87" />
+    <span id="t_12" from="88" to="96" />
+    <span id="t_13" from="97" to="109" />
+    <span id="t_14" from="109" to="110" />
+    <span id="t_15" from="111" to="119" />
+    <span id="t_16" from="120" to="132" />
+    <span id="t_17" from="132" to="133" />
+    <span id="t_18" from="134" to="138" />
+    <span id="t_19" from="138" to="139" />
+    <span id="t_20" from="140" to="144" />
+    <span id="t_21" from="145" to="148" />
+    <span id="t_22" from="149" to="153" />
+    <span id="t_23" from="154" to="160" />
+    <span id="t_24" from="160" to="161" />
+    <span id="t_25" from="162" to="165" />
+    <span id="t_26" from="166" to="171" />
+    <span id="t_27" from="171" to="172" />
+    <span id="t_28" from="173" to="179" />
+    <span id="t_29" from="180" to="183" />
+    <span id="t_30" from="184" to="191" />
+    <span id="t_31" from="191" to="192" />
+    <span id="t_32" from="193" to="195" />
+    <span id="t_33" from="196" to="199" />
+    <span id="t_34" from="200" to="202" />
+    <span id="t_35" from="203" to="206" />
+    <span id="t_36" from="207" to="217" />
+    <span id="t_37" from="218" to="224" />
+    <span id="t_38" from="225" to="237" />
+    <span id="t_39" from="237" to="238" />
+    <span id="t_40" from="239" to="242" />
+    <span id="t_41" from="243" to="250" />
+    <span id="t_42" from="251" to="254" />
+    <span id="t_43" from="255" to="259" />
+    <span id="t_44" from="260" to="267" />
+    <span id="t_45" from="267" to="268" />
+    <span id="t_46" from="269" to="273" />
+    <span id="t_47" from="274" to="279" />
+    <span id="t_48" from="280" to="283" />
+    <span id="t_49" from="284" to="289" />
+    <span id="t_50" from="289" to="290" />
+    <span id="t_51" from="291" to="297" />
+    <span id="t_52" from="298" to="303" />
+    <span id="t_53" from="304" to="309" />
+    <span id="t_54" from="309" to="310" />
+    <span id="t_55" from="311" to="316" />
+    <span id="t_56" from="317" to="321" />
+    <span id="t_57" from="322" to="325" />
+    <span id="t_58" from="326" to="330" />
+    <span id="t_59" from="330" to="331" />
+    <span id="t_60" from="332" to="336" />
+    <span id="t_61" from="337" to="342" />
+    <span id="t_62" from="343" to="345" />
+    <span id="t_63" from="346" to="349" />
+    <span id="t_64" from="350" to="357" />
+    <span id="t_65" from="357" to="358" />
+    <span id="t_66" from="359" to="361" />
+    <span id="t_67" from="362" to="365" />
+    <span id="t_68" from="366" to="368" />
+    <span id="t_69" from="369" to="372" />
+    <span id="t_70" from="373" to="379" />
+    <span id="t_71" from="380" to="382" />
+    <span id="t_72" from="383" to="389" />
+    <span id="t_73" from="390" to="394" />
+    <span id="t_74" from="394" to="395" />
+    <span id="t_75" from="396" to="398" />
+    <span id="t_76" from="399" to="403" />
+    <span id="t_77" from="404" to="407" />
+    <span id="t_78" from="408" to="412" />
+    <span id="t_79" from="413" to="418" />
+    <span id="t_80" from="419" to="429" />
+    <span id="t_81" from="429" to="430" />
+    <span id="t_82" from="431" to="434" />
+    <span id="t_83" from="435" to="439" />
+    <span id="t_84" from="439" to="440" />
+    <span id="t_85" from="441" to="444" />
+    <span id="t_86" from="445" to="448" />
+    <span id="t_87" from="449" to="456" />
+    <span id="t_88" from="456" to="457" />
+    <span id="t_89" from="458" to="461" />
+    <span id="t_90" from="462" to="464" />
+    <span id="t_91" from="465" to="468" />
+    <span id="t_92" from="469" to="471" />
+    <span id="t_93" from="472" to="475" />
+    <span id="t_94" from="476" to="481" />
+    <span id="t_95" from="481" to="482" />
+    <span id="t_96" from="483" to="487" />
+    <span id="t_97" from="488" to="495" />
+    <span id="t_98" from="495" to="496" />
+    <span id="t_99" from="497" to="500" />
+    <span id="t_100" from="501" to="507" />
+    <span id="t_101" from="507" to="508" />
+    <span id="t_102" from="509" to="512" />
+    <span id="t_103" from="513" to="515" />
+    <span id="t_104" from="516" to="518" />
+    <span id="t_105" from="519" to="522" />
+    <span id="t_106" from="523" to="532" />
+    <span id="t_107" from="533" to="537" />
+    <span id="t_108" from="538" to="547" />
+    <span id="t_109" from="548" to="551" />
+    <span id="t_110" from="552" to="559" />
+    <span id="t_111" from="559" to="560" />
+    <span id="t_112" from="561" to="566" />
+    <span id="t_113" from="566" to="567" />
+    <span id="t_114" from="568" to="571" />
+    <span id="t_115" from="572" to="582" />
+    <span id="t_116" from="583" to="588" />
+    <span id="t_117" from="588" to="589" />
+    <span id="t_118" from="590" to="593" />
+    <span id="t_119" from="594" to="606" />
+    <span id="t_120" from="606" to="607" />
+    <span id="t_121" from="608" to="610" />
+    <span id="t_122" from="611" to="614" />
+    <span id="t_123" from="615" to="620" />
+    <span id="t_124" from="621" to="626" />
+    <span id="t_125" from="627" to="632" />
+    <span id="t_126" from="632" to="633" />
+    <span id="t_127" from="634" to="637" />
+    <span id="t_128" from="638" to="641" />
+    <span id="t_129" from="642" to="647" />
+    <span id="t_130" from="648" to="652" />
+    <span id="t_131" from="653" to="664" />
+    <span id="t_132" from="664" to="665" />
+    <span id="t_133" from="666" to="671" />
+    <span id="t_134" from="672" to="677" />
+    <span id="t_135" from="677" to="678" />
+    <span id="t_136" from="679" to="683" />
+    <span id="t_137" from="684" to="686" />
+    <span id="t_138" from="687" to="694" />
+    <span id="t_139" from="695" to="707" />
+    <span id="t_140" from="708" to="711" />
+    <span id="t_141" from="712" to="727" />
+    <span id="t_142" from="728" to="735" />
+    <span id="t_143" from="735" to="736" />
+    <span id="t_144" from="737" to="741" />
+    <span id="t_145" from="742" to="744" />
+    <span id="t_146" from="745" to="748" />
+    <span id="t_147" from="749" to="759" />
+    <span id="t_148" from="760" to="776" />
+    <span id="t_149" from="777" to="782" />
+    <span id="t_150" from="783" to="786" />
+    <span id="t_151" from="787" to="792" />
+    <span id="t_152" from="793" to="797" />
+    <span id="t_153" from="797" to="798" />
+    <span id="t_154" from="799" to="810" />
+    <span id="t_155" from="811" to="814" />
+    <span id="t_156" from="815" to="819" />
+    <span id="t_157" from="820" to="825" />
+    <span id="t_158" from="825" to="826" />
+    <span id="t_159" from="827" to="834" />
+    <span id="t_160" from="835" to="838" />
+    <span id="t_161" from="839" to="845" />
+    <span id="t_162" from="845" to="846" />
+    <span id="t_163" from="847" to="849" />
+    <span id="t_164" from="850" to="855" />
+    <span id="t_165" from="856" to="859" />
+    <span id="t_166" from="860" to="867" />
+    <span id="t_167" from="868" to="878" />
+    <span id="t_168" from="879" to="882" />
+    <span id="t_169" from="883" to="891" />
+    <span id="t_170" from="892" to="898" />
+    <span id="t_171" from="899" to="901" />
+    <span id="t_172" from="902" to="910" />
+    <span id="t_173" from="910" to="911" />
+    <span id="t_174" from="912" to="920" />
+    <span id="t_175" from="921" to="925" />
+    <span id="t_176" from="926" to="930" />
+    <span id="t_177" from="931" to="939" />
+    <span id="t_178" from="939" to="940" />
+    <span id="t_179" from="941" to="944" />
+    <span id="t_180" from="945" to="955" />
+    <span id="t_181" from="955" to="956" />
+    <span id="t_182" from="957" to="963" />
+    <span id="t_183" from="964" to="975" />
+    <span id="t_184" from="976" to="979" />
+    <span id="t_185" from="980" to="985" />
+    <span id="t_186" from="986" to="989" />
+    <span id="t_187" from="990" to="994" />
+    <span id="t_188" from="995" to="1005" />
+    <span id="t_189" from="1005" to="1006" />
+    <span id="t_190" from="1007" to="1012" />
+    <span id="t_191" from="1013" to="1021" />
+    <span id="t_192" from="1022" to="1028" />
+    <span id="t_193" from="1028" to="1029" />
+    <span id="t_194" from="1030" to="1036" />
+    <span id="t_195" from="1036" to="1037" />
+    <span id="t_196" from="1038" to="1043" />
+    <span id="t_197" from="1043" to="1044" />
+    <span id="t_198" from="1045" to="1053" />
+    <span id="t_199" from="1054" to="1061" />
+    <span id="t_200" from="1062" to="1067" />
+    <span id="t_201" from="1068" to="1070" />
+    <span id="t_202" from="1071" to="1078" />
+    <span id="t_203" from="1079" to="1089" />
+    <span id="t_204" from="1090" to="1096" />
+    <span id="t_205" from="1097" to="1102" />
+    <span id="t_206" from="1103" to="1114" />
+    <span id="t_207" from="1115" to="1120" />
+    <span id="t_208" from="1121" to="1123" />
+    <span id="t_209" from="1124" to="1129" />
+    <span id="t_210" from="1130" to="1135" />
+    <span id="t_211" from="1135" to="1136" />
+    <span id="t_212" from="1137" to="1140" />
+    <span id="t_213" from="1141" to="1153" />
+    <span id="t_214" from="1154" to="1158" />
+    <span id="t_215" from="1159" to="1167" />
+    <span id="t_216" from="1168" to="1171" />
+    <span id="t_217" from="1172" to="1179" />
+    <span id="t_218" from="1180" to="1183" />
+    <span id="t_219" from="1184" to="1194" />
+    <span id="t_220" from="1195" to="1201" />
+    <span id="t_221" from="1201" to="1202" />
+    <span id="t_222" from="1203" to="1207" />
+    <span id="t_223" from="1208" to="1215" />
+    <span id="t_224" from="1216" to="1218" />
+    <span id="t_225" from="1219" to="1225" />
+    <span id="t_226" from="1226" to="1231" />
+    <span id="t_227" from="1231" to="1232" />
+    <span id="t_228" from="1233" to="1236" />
+    <span id="t_229" from="1237" to="1243" />
+    <span id="t_230" from="1243" to="1244" />
+    <span id="t_231" from="1245" to="1251" />
+    <span id="t_232" from="1252" to="1265" />
+    <span id="t_233" from="1266" to="1272" />
+    <span id="t_234" from="1273" to="1275" />
+    <span id="t_235" from="1276" to="1281" />
+    <span id="t_236" from="1281" to="1282" />
+    <span id="t_237" from="1283" to="1286" />
+    <span id="t_238" from="1287" to="1295" />
+    <span id="t_239" from="1295" to="1296" />
+    <span id="t_240" from="1297" to="1302" />
+    <span id="t_241" from="1303" to="1317" />
+    <span id="t_242" from="1318" to="1322" />
+    <span id="t_243" from="1323" to="1327" />
+    <span id="t_244" from="1328" to="1332" />
+    <span id="t_245" from="1333" to="1336" />
+    <span id="t_246" from="1336" to="1337" />
+    <span id="t_247" from="1338" to="1342" />
+    <span id="t_248" from="1343" to="1345" />
+    <span id="t_249" from="1346" to="1353" />
+    <span id="t_250" from="1354" to="1357" />
+    <span id="t_251" from="1358" to="1361" />
+    <span id="t_252" from="1362" to="1376" />
+    <span id="t_253" from="1377" to="1384" />
+    <span id="t_254" from="1384" to="1385" />
+    <span id="t_255" from="1386" to="1388" />
+    <span id="t_256" from="1389" to="1392" />
+    <span id="t_257" from="1393" to="1399" />
+    <span id="t_258" from="1399" to="1400" />
+    <span id="t_259" from="1401" to="1404" />
+    <span id="t_260" from="1405" to="1407" />
+    <span id="t_261" from="1408" to="1420" />
+    <span id="t_262" from="1421" to="1427" />
+    <span id="t_263" from="1427" to="1428" />
+    <span id="t_264" from="1429" to="1433" />
+    <span id="t_265" from="1434" to="1437" />
+    <span id="t_266" from="1438" to="1444" />
+    <span id="t_267" from="1445" to="1450" />
+    <span id="t_268" from="1451" to="1457" />
+    <span id="t_269" from="1458" to="1462" />
+    <span id="t_270" from="1463" to="1473" />
+    <span id="t_271" from="1474" to="1479" />
+    <span id="t_272" from="1479" to="1480" />
+    <span id="t_273" from="1481" to="1483" />
+    <span id="t_274" from="1484" to="1491" />
+    <span id="t_275" from="1492" to="1496" />
+    <span id="t_276" from="1497" to="1509" />
+    <span id="t_277" from="1510" to="1517" />
+    <span id="t_278" from="1518" to="1520" />
+    <span id="t_279" from="1521" to="1526" />
+    <span id="t_280" from="1527" to="1535" />
+    <span id="t_281" from="1536" to="1547" />
+    <span id="t_282" from="1548" to="1551" />
+    <span id="t_283" from="1551" to="1552" />
+    <span id="t_284" from="1553" to="1556" />
+    <span id="t_285" from="1557" to="1559" />
+    <span id="t_286" from="1560" to="1564" />
+    <span id="t_287" from="1564" to="1565" />
+    <span id="t_288" from="1566" to="1570" />
+    <span id="t_289" from="1571" to="1573" />
+    <span id="t_290" from="1574" to="1577" />
+    <span id="t_291" from="1578" to="1590" />
+    <span id="t_292" from="1591" to="1597" />
+    <span id="t_293" from="1597" to="1598" />
+    <span id="t_294" from="1599" to="1610" />
+    <span id="t_295" from="1611" to="1620" />
+    <span id="t_296" from="1621" to="1624" />
+    <span id="t_297" from="1625" to="1629" />
+    <span id="t_298" from="1630" to="1634" />
+    <span id="t_299" from="1635" to="1640" />
+    <span id="t_300" from="1641" to="1655" />
+    <span id="t_301" from="1656" to="1661" />
+    <span id="t_302" from="1662" to="1667" />
+    <span id="t_303" from="1668" to="1671" />
+    <span id="t_304" from="1671" to="1672" />
+    <span id="t_305" from="1673" to="1676" />
+    <span id="t_306" from="1677" to="1683" />
+    <span id="t_307" from="1684" to="1687" />
+    <span id="t_308" from="1688" to="1691" />
+    <span id="t_309" from="1692" to="1700" />
+    <span id="t_310" from="1701" to="1703" />
+    <span id="t_311" from="1704" to="1707" />
+    <span id="t_312" from="1708" to="1713" />
+    <span id="t_313" from="1714" to="1719" />
+    <span id="t_314" from="1720" to="1730" />
+    <span id="t_315" from="1731" to="1735" />
+    <span id="t_316" from="1736" to="1743" />
+    <span id="t_317" from="1744" to="1747" />
+    <span id="t_318" from="1748" to="1751" />
+    <span id="t_319" from="1752" to="1759" />
+    <span id="t_320" from="1760" to="1767" />
+    <span id="t_321" from="1768" to="1774" />
+    <span id="t_322" from="1774" to="1775" />
+    <span id="t_323" from="1776" to="1779" />
+    <span id="t_324" from="1780" to="1782" />
+    <span id="t_325" from="1783" to="1786" />
+    <span id="t_326" from="1787" to="1796" />
+    <span id="t_327" from="1797" to="1800" />
+    <span id="t_328" from="1801" to="1809" />
+    <span id="t_329" from="1810" to="1813" />
+    <span id="t_330" from="1814" to="1822" />
+    <span id="t_331" from="1823" to="1831" />
+    <span id="t_332" from="1832" to="1835" />
+    <span id="t_333" from="1836" to="1849" />
+    <span id="t_334" from="1850" to="1854" />
+    <span id="t_335" from="1854" to="1855" />
+    <span id="t_336" from="1856" to="1860" />
+    <span id="t_337" from="1861" to="1869" />
+    <span id="t_338" from="1870" to="1878" />
+    <span id="t_339" from="1879" to="1884" />
+    <span id="t_340" from="1885" to="1888" />
+    <span id="t_341" from="1889" to="1900" />
+    <span id="t_342" from="1901" to="1906" />
+    <span id="t_343" from="1907" to="1914" />
+    <span id="t_344" from="1915" to="1918" />
+    <span id="t_345" from="1919" to="1924" />
+    <span id="t_346" from="1925" to="1935" />
+    <span id="t_347" from="1936" to="1938" />
+    <span id="t_348" from="1939" to="1942" />
+    <span id="t_349" from="1943" to="1946" />
+    <span id="t_350" from="1946" to="1947" />
+    <span id="t_351" from="1948" to="1956" />
+    <span id="t_352" from="1957" to="1961" />
+    <span id="t_353" from="1962" to="1964" />
+    <span id="t_354" from="1965" to="1969" />
+    <span id="t_355" from="1970" to="1975" />
+    <span id="t_356" from="1976" to="1982" />
+    <span id="t_357" from="1983" to="1988" />
+    <span id="t_358" from="1989" to="1991" />
+    <span id="t_359" from="1992" to="1998" />
+    <span id="t_360" from="1998" to="1999" />
+    <span id="t_361" from="2000" to="2003" />
+    <span id="t_362" from="2004" to="2009" />
+    <span id="t_363" from="2010" to="2014" />
+    <span id="t_364" from="2015" to="2021" />
+    <span id="t_365" from="2021" to="2022" />
+    <span id="t_366" from="2023" to="2025" />
+    <span id="t_367" from="2026" to="2030" />
+    <span id="t_368" from="2031" to="2035" />
+    <span id="t_369" from="2036" to="2046" />
+    <span id="t_370" from="2047" to="2057" />
+    <span id="t_371" from="2057" to="2058" />
+    <span id="t_372" from="2059" to="2062" />
+    <span id="t_373" from="2063" to="2067" />
+    <span id="t_374" from="2068" to="2072" />
+    <span id="t_375" from="2073" to="2075" />
+    <span id="t_376" from="2076" to="2080" />
+    <span id="t_377" from="2081" to="2087" />
+    <span id="t_378" from="2088" to="2091" />
+    <span id="t_379" from="2092" to="2101" />
+    <span id="t_380" from="2102" to="2105" />
+    <span id="t_381" from="2105" to="2106" />
+    <span id="t_382" from="2107" to="2110" />
+    <span id="t_383" from="2111" to="2116" />
+    <span id="t_384" from="2117" to="2122" />
+    <span id="t_385" from="2122" to="2123" />
+    <span id="t_386" from="2124" to="2128" />
+    <span id="t_387" from="2129" to="2132" />
+    <span id="t_388" from="2133" to="2139" />
+    <span id="t_389" from="2140" to="2143" />
+    <span id="t_390" from="2144" to="2149" />
+    <span id="t_391" from="2150" to="2156" />
+    <span id="t_392" from="2157" to="2166" />
+    <span id="t_393" from="2167" to="2177" />
+    <span id="t_394" from="2177" to="2178" />
+    <span id="t_395" from="2179" to="2187" />
+    <span id="t_396" from="2188" to="2190" />
+    <span id="t_397" from="2191" to="2195" />
+    <span id="t_398" from="2196" to="2201" />
+    <span id="t_399" from="2201" to="2202" />
+    <span id="t_400" from="2203" to="2205" />
+    <span id="t_401" from="2206" to="2214" />
+    <span id="t_402" from="2215" to="2217" />
+    <span id="t_403" from="2218" to="2220" />
+    <span id="t_404" from="2221" to="2225" />
+    <span id="t_405" from="2226" to="2242" />
+    <span id="t_406" from="2242" to="2243" />
+    <span id="t_407" from="2244" to="2249" />
+    <span id="t_408" from="2250" to="2254" />
+    <span id="t_409" from="2255" to="2260" />
+    <span id="t_410" from="2261" to="2264" />
+    <span id="t_411" from="2265" to="2270" />
+    <span id="t_412" from="2271" to="2277" />
+    <span id="t_413" from="2278" to="2282" />
+    <span id="t_414" from="2282" to="2283" />
+    <span id="t_415" from="2284" to="2287" />
+    <span id="t_416" from="2288" to="2292" />
+    <span id="t_417" from="2293" to="2303" />
+    <span id="t_418" from="2304" to="2311" />
+    <span id="t_419" from="2312" to="2316" />
+    <span id="t_420" from="2317" to="2320" />
+    <span id="t_421" from="2321" to="2326" />
+    <span id="t_422" from="2327" to="2334" />
+    <span id="t_423" from="2335" to="2339" />
+    <span id="t_424" from="2340" to="2350" />
+    <span id="t_425" from="2351" to="2356" />
+    <span id="t_426" from="2356" to="2357" />
+    <span id="t_427" from="2358" to="2365" />
+    <span id="t_428" from="2366" to="2369" />
+    <span id="t_429" from="2370" to="2375" />
+    <span id="t_430" from="2376" to="2394" />
+    <span id="t_431" from="2395" to="2404" />
+    <span id="t_432" from="2405" to="2408" />
+    <span id="t_433" from="2409" to="2412" />
+    <span id="t_434" from="2412" to="2413" />
+    <span id="t_435" from="2414" to="2417" />
+    <span id="t_436" from="2418" to="2422" />
+    <span id="t_437" from="2423" to="2428" />
+    <span id="t_438" from="2429" to="2437" />
+    <span id="t_439" from="2437" to="2438" />
+    <span id="t_440" from="2439" to="2443" />
+    <span id="t_441" from="2444" to="2447" />
+    <span id="t_442" from="2448" to="2462" />
+    <span id="t_443" from="2463" to="2472" />
+    <span id="t_444" from="2472" to="2473" />
+    <span id="t_445" from="2474" to="2476" />
+    <span id="t_446" from="2477" to="2480" />
+    <span id="t_447" from="2481" to="2486" />
+    <span id="t_448" from="2487" to="2489" />
+    <span id="t_449" from="2490" to="2497" />
+    <span id="t_450" from="2497" to="2498" />
+    <span id="t_451" from="2499" to="2502" />
+    <span id="t_452" from="2503" to="2506" />
+    <span id="t_453" from="2507" to="2512" />
+    <span id="t_454" from="2513" to="2517" />
+    <span id="t_455" from="2518" to="2523" />
+    <span id="t_456" from="2524" to="2527" />
+    <span id="t_457" from="2528" to="2539" />
+    <span id="t_458" from="2540" to="2542" />
+    <span id="t_459" from="2543" to="2551" />
+    <span id="t_460" from="2552" to="2558" />
+    <span id="t_461" from="2558" to="2559" />
+    <span id="t_462" from="2560" to="2563" />
+    <span id="t_463" from="2564" to="2574" />
+    <span id="t_464" from="2575" to="2579" />
+    <span id="t_465" from="2580" to="2592" />
+    <span id="t_466" from="2593" to="2596" />
+    <span id="t_467" from="2597" to="2606" />
+    <span id="t_468" from="2607" to="2615" />
+    <span id="t_469" from="2616" to="2623" />
+    <span id="t_470" from="2624" to="2627" />
+    <span id="t_471" from="2628" to="2634" />
+    <span id="t_472" from="2634" to="2635" />
+    <span id="t_473" from="2636" to="2639" />
+    <span id="t_474" from="2640" to="2649" />
+    <span id="t_475" from="2650" to="2654" />
+    <span id="t_476" from="2655" to="2660" />
+    <span id="t_477" from="2661" to="2669" />
+    <span id="t_478" from="2669" to="2670" />
+    <span id="t_479" from="2671" to="2684" />
+    <span id="t_480" from="2685" to="2688" />
+    <span id="t_481" from="2689" to="2706" />
+    <span id="t_482" from="2707" to="2712" />
+    <span id="t_483" from="2713" to="2719" />
+    <span id="t_484" from="2719" to="2720" />
+    <span id="t_485" from="2721" to="2724" />
+    <span id="t_486" from="2725" to="2730" />
+    <span id="t_487" from="2731" to="2735" />
+    <span id="t_488" from="2736" to="2741" />
+    <span id="t_489" from="2742" to="2747" />
+    <span id="t_490" from="2748" to="2755" />
+    <span id="t_491" from="2756" to="2766" />
+    <span id="t_492" from="2766" to="2767" />
+    <span id="t_493" from="2768" to="2771" />
+    <span id="t_494" from="2772" to="2775" />
+    <span id="t_495" from="2776" to="2780" />
+    <span id="t_496" from="2781" to="2783" />
+    <span id="t_497" from="2784" to="2789" />
+    <span id="t_498" from="2790" to="2798" />
+    <span id="t_499" from="2799" to="2808" />
+    <span id="t_500" from="2809" to="2821" />
+    <span id="t_501" from="2822" to="2836" />
+    <span id="t_502" from="2837" to="2840" />
+    <span id="t_503" from="2841" to="2844" />
+    <span id="t_504" from="2845" to="2861" />
+    <span id="t_505" from="2862" to="2866" />
+    <span id="t_506" from="2867" to="2869" />
+    <span id="t_507" from="2870" to="2883" />
+    <span id="t_508" from="2884" to="2893" />
+    <span id="t_509" from="2893" to="2894" />
+    <span id="t_510" from="2895" to="2898" />
+    <span id="t_511" from="2899" to="2902" />
+    <span id="t_512" from="2903" to="2909" />
+    <span id="t_513" from="2910" to="2916" />
+    <span id="t_514" from="2917" to="2920" />
+    <span id="t_515" from="2921" to="2927" />
+    <span id="t_516" from="2928" to="2932" />
+    <span id="t_517" from="2933" to="2941" />
+    <span id="t_518" from="2942" to="2952" />
+    <span id="t_519" from="2953" to="2956" />
+    <span id="t_520" from="2957" to="2960" />
+    <span id="t_521" from="2961" to="2966" />
+    <span id="t_522" from="2967" to="2977" />
+    <span id="t_523" from="2978" to="2984" />
+    <span id="t_524" from="2985" to="2988" />
+    <span id="t_525" from="2989" to="2994" />
+    <span id="t_526" from="2995" to="3001" />
+    <span id="t_527" from="3002" to="3007" />
+    <span id="t_528" from="3008" to="3013" />
+    <span id="t_529" from="3013" to="3014" />
+    <span id="t_530" from="3015" to="3023" />
+    <span id="t_531" from="3023" to="3024" />
+    <span id="t_532" from="3025" to="3030" />
+    <span id="t_533" from="3031" to="3034" />
+    <span id="t_534" from="3035" to="3038" />
+    <span id="t_535" from="3039" to="3050" />
+    <span id="t_536" from="3050" to="3051" />
+    <span id="t_537" from="3052" to="3060" />
+    <span id="t_538" from="3061" to="3070" />
+    <span id="t_539" from="3070" to="3071" />
+    <span id="t_540" from="3072" to="3081" />
+    <span id="t_541" from="3082" to="3091" />
+    <span id="t_542" from="3092" to="3101" />
+    <span id="t_543" from="3101" to="3102" />
+    <span id="t_544" from="3103" to="3110" />
+    <span id="t_545" from="3111" to="3117" />
+    <span id="t_546" from="3118" to="3121" />
+    <span id="t_547" from="3122" to="3130" />
+    <span id="t_548" from="3131" to="3139" />
+    <span id="t_549" from="3139" to="3140" />
+    <span id="t_550" from="3141" to="3144" />
+    <span id="t_551" from="3145" to="3155" />
+    <span id="t_552" from="3156" to="3160" />
+    <span id="t_553" from="3161" to="3170" />
+    <span id="t_554" from="3171" to="3174" />
+    <span id="t_555" from="3175" to="3182" />
+    <span id="t_556" from="3183" to="3188" />
+    <span id="t_557" from="3188" to="3189" />
+    <span id="t_558" from="3190" to="3192" />
+    <span id="t_559" from="3193" to="3198" />
+    <span id="t_560" from="3199" to="3202" />
+    <span id="t_561" from="3203" to="3208" />
+    <span id="t_562" from="3209" to="3221" />
+    <span id="t_563" from="3221" to="3222" />
+    <span id="t_564" from="3223" to="3225" />
+    <span id="t_565" from="3226" to="3229" />
+    <span id="t_566" from="3230" to="3238" />
+    <span id="t_567" from="3239" to="3242" />
+    <span id="t_568" from="3243" to="3250" />
+    <span id="t_569" from="3251" to="3263" />
+    <span id="t_570" from="3264" to="3269" />
+    <span id="t_571" from="3269" to="3270" />
+    <span id="t_572" from="3271" to="3274" />
+    <span id="t_573" from="3275" to="3278" />
+    <span id="t_574" from="3279" to="3283" />
+    <span id="t_575" from="3284" to="3288" />
+    <span id="t_576" from="3289" to="3297" />
+    <span id="t_577" from="3298" to="3305" />
+    <span id="t_578" from="3306" to="3309" />
+    <span id="t_579" from="3309" to="3310" />
+    <span id="t_580" from="3311" to="3316" />
+    <span id="t_581" from="3317" to="3323" />
+    <span id="t_582" from="3324" to="3331" />
+    <span id="t_583" from="3332" to="3335" />
+    <span id="t_584" from="3336" to="3340" />
+    <span id="t_585" from="3341" to="3344" />
+    <span id="t_586" from="3345" to="3353" />
+    <span id="t_587" from="3354" to="3356" />
+    <span id="t_588" from="3356" to="3357" />
+    <span id="t_589" from="3358" to="3361" />
+    <span id="t_590" from="3362" to="3367" />
+    <span id="t_591" from="3368" to="3378" />
+    <span id="t_592" from="3379" to="3382" />
+    <span id="t_593" from="3383" to="3386" />
+    <span id="t_594" from="3387" to="3392" />
+    <span id="t_595" from="3393" to="3396" />
+    <span id="t_596" from="3397" to="3401" />
+    <span id="t_597" from="3402" to="3407" />
+    <span id="t_598" from="3408" to="3413" />
+    <span id="t_599" from="3413" to="3414" />
+    <span id="t_600" from="3415" to="3420" />
+    <span id="t_601" from="3421" to="3428" />
+    <span id="t_602" from="3428" to="3429" />
+    <span id="t_603" from="3430" to="3435" />
+    <span id="t_604" from="3436" to="3439" />
+    <span id="t_605" from="3440" to="3443" />
+    <span id="t_606" from="3444" to="3448" />
+    <span id="t_607" from="3449" to="3453" />
+    <span id="t_608" from="3454" to="3458" />
+    <span id="t_609" from="3459" to="3461" />
+    <span id="t_610" from="3462" to="3473" />
+    <span id="t_611" from="3474" to="3477" />
+    <span id="t_612" from="3478" to="3483" />
+    <span id="t_613" from="3484" to="3490" />
+    <span id="t_614" from="3491" to="3493" />
+    <span id="t_615" from="3494" to="3506" />
+    <span id="t_616" from="3506" to="3507" />
+    <span id="t_617" from="3508" to="3512" />
+    <span id="t_618" from="3513" to="3517" />
+    <span id="t_619" from="3518" to="3523" />
+    <span id="t_620" from="3524" to="3526" />
+    <span id="t_621" from="3527" to="3537" />
+    <span id="t_622" from="3538" to="3543" />
+    <span id="t_623" from="3543" to="3544" />
+    <span id="t_624" from="3545" to="3548" />
+    <span id="t_625" from="3549" to="3557" />
+    <span id="t_626" from="3558" to="3562" />
+    <span id="t_627" from="3563" to="3566" />
+    <span id="t_628" from="3567" to="3571" />
+    <span id="t_629" from="3572" to="3576" />
+    <span id="t_630" from="3577" to="3585" />
+    <span id="t_631" from="3586" to="3590" />
+    <span id="t_632" from="3591" to="3597" />
+    <span id="t_633" from="3598" to="3601" />
+    <span id="t_634" from="3602" to="3609" />
+    <span id="t_635" from="3610" to="3613" />
+    <span id="t_636" from="3614" to="3630" />
+    <span id="t_637" from="3630" to="3631" />
+    <span id="t_638" from="3632" to="3635" />
+    <span id="t_639" from="3636" to="3639" />
+    <span id="t_640" from="3640" to="3644" />
+    <span id="t_641" from="3644" to="3645" />
+    <span id="t_642" from="3646" to="3653" />
+    <span id="t_643" from="3654" to="3658" />
+    <span id="t_644" from="3659" to="3662" />
+    <span id="t_645" from="3663" to="3666" />
+    <span id="t_646" from="3667" to="3673" />
+    <span id="t_647" from="3673" to="3674" />
+    <span id="t_648" from="3675" to="3685" />
+    <span id="t_649" from="3686" to="3689" />
+    <span id="t_650" from="3690" to="3702" />
+    <span id="t_651" from="3703" to="3712" />
+    <span id="t_652" from="3712" to="3713" />
+    <span id="t_653" from="3714" to="3720" />
+    <span id="t_654" from="3721" to="3724" />
+    <span id="t_655" from="3725" to="3731" />
+    <span id="t_656" from="3731" to="3732" />
+    <span id="t_657" from="3733" to="3743" />
+    <span id="t_658" from="3744" to="3747" />
+    <span id="t_659" from="3748" to="3758" />
+    <span id="t_660" from="3759" to="3770" />
+    <span id="t_661" from="3770" to="3771" />
+    <span id="t_662" from="3772" to="3779" />
+    <span id="t_663" from="3780" to="3783" />
+    <span id="t_664" from="3784" to="3787" />
+    <span id="t_665" from="3788" to="3793" />
+    <span id="t_666" from="3794" to="3797" />
+    <span id="t_667" from="3798" to="3802" />
+    <span id="t_668" from="3803" to="3812" />
+    <span id="t_669" from="3813" to="3817" />
+    <span id="t_670" from="3817" to="3818" />
+    <span id="t_671" from="3819" to="3823" />
+    <span id="t_672" from="3823" to="3824" />
+    <span id="t_673" from="3825" to="3832" />
+    <span id="t_674" from="3833" to="3836" />
+    <span id="t_675" from="3837" to="3841" />
+    <span id="t_676" from="3842" to="3847" />
+    <span id="t_677" from="3847" to="3848" />
+    <span id="t_678" from="3849" to="3856" />
+    <span id="t_679" from="3857" to="3866" />
+    <span id="t_680" from="3867" to="3870" />
+    <span id="t_681" from="3871" to="3876" />
+    <span id="t_682" from="3877" to="3881" />
+    <span id="t_683" from="3881" to="3882" />
+    <span id="t_684" from="3883" to="3886" />
+    <span id="t_685" from="3887" to="3895" />
+    <span id="t_686" from="3896" to="3898" />
+    <span id="t_687" from="3899" to="3901" />
+    <span id="t_688" from="3902" to="3908" />
+    <span id="t_689" from="3909" to="3912" />
+    <span id="t_690" from="3913" to="3921" />
+    <span id="t_691" from="3922" to="3924" />
+    <span id="t_692" from="3925" to="3927" />
+    <span id="t_693" from="3928" to="3937" />
+    <span id="t_694" from="3937" to="3938" />
+    <span id="t_695" from="3939" to="3942" />
+    <span id="t_696" from="3943" to="3947" />
+    <span id="t_697" from="3948" to="3953" />
+    <span id="t_698" from="3954" to="3964" />
+    <span id="t_699" from="3964" to="3965" />
+    <span id="t_700" from="3966" to="3968" />
+    <span id="t_701" from="3969" to="3975" />
+    <span id="t_702" from="3976" to="3979" />
+    <span id="t_703" from="3980" to="3982" />
+    <span id="t_704" from="3983" to="3992" />
+    <span id="t_705" from="3993" to="3996" />
+    <span id="t_706" from="3997" to="3999" />
+    <span id="t_707" from="4000" to="4009" />
+    <span id="t_708" from="4010" to="4019" />
+    <span id="t_709" from="4019" to="4020" />
+    <span id="t_710" from="4021" to="4024" />
+    <span id="t_711" from="4025" to="4028" />
+    <span id="t_712" from="4029" to="4038" />
+    <span id="t_713" from="4038" to="4039" />
+    <span id="t_714" from="4040" to="4043" />
+    <span id="t_715" from="4044" to="4047" />
+    <span id="t_716" from="4048" to="4053" />
+    <span id="t_717" from="4054" to="4059" />
+    <span id="t_718" from="4060" to="4067" />
+    <span id="t_719" from="4068" to="4072" />
+    <span id="t_720" from="4072" to="4073" />
+    <span id="t_721" from="4074" to="4076" />
+    <span id="t_722" from="4077" to="4081" />
+    <span id="t_723" from="4082" to="4085" />
+    <span id="t_724" from="4086" to="4089" />
+    <span id="t_725" from="4090" to="4098" />
+    <span id="t_726" from="4098" to="4099" />
+    <span id="t_727" from="4100" to="4103" />
+    <span id="t_728" from="4104" to="4109" />
+    <span id="t_729" from="4109" to="4110" />
+    <span id="t_730" from="4111" to="4113" />
+    <span id="t_731" from="4114" to="4118" />
+    <span id="t_732" from="4119" to="4122" />
+    <span id="t_733" from="4123" to="4131" />
+    <span id="t_734" from="4132" to="4135" />
+    <span id="t_735" from="4136" to="4144" />
+    <span id="t_736" from="4144" to="4145" />
+    <span id="t_737" from="4146" to="4149" />
+    <span id="t_738" from="4150" to="4155" />
+    <span id="t_739" from="4156" to="4160" />
+    <span id="t_740" from="4160" to="4161" />
+    <span id="t_741" from="4162" to="4165" />
+    <span id="t_742" from="4166" to="4169" />
+    <span id="t_743" from="4170" to="4179" />
+    <span id="t_744" from="4180" to="4189" />
+    <span id="t_745" from="4190" to="4193" />
+    <span id="t_746" from="4194" to="4196" />
+    <span id="t_747" from="4197" to="4207" />
+    <span id="t_748" from="4208" to="4211" />
+    <span id="t_749" from="4212" to="4215" />
+    <span id="t_750" from="4216" to="4224" />
+    <span id="t_751" from="4224" to="4225" />
+    <span id="t_752" from="4226" to="4230" />
+    <span id="t_753" from="4231" to="4239" />
+    <span id="t_754" from="4240" to="4249" />
+    <span id="t_755" from="4249" to="4250" />
+    <span id="t_756" from="4251" to="4255" />
+    <span id="t_757" from="4256" to="4260" />
+    <span id="t_758" from="4260" to="4261" />
+    <span id="t_759" from="4262" to="4265" />
+    <span id="t_760" from="4266" to="4283" />
+    <span id="t_761" from="4284" to="4289" />
+    <span id="t_762" from="4290" to="4296" />
+    <span id="t_763" from="4296" to="4297" />
+    <span id="t_764" from="4298" to="4307" />
+    <span id="t_765" from="4307" to="4308" />
+    <span id="t_766" from="4309" to="4320" />
+    <span id="t_767" from="4321" to="4334" />
+    <span id="t_768" from="4335" to="4340" />
+    <span id="t_769" from="4341" to="4347" />
+    <span id="t_770" from="4348" to="4351" />
+    <span id="t_771" from="4351" to="4352" />
+    <span id="t_772" from="4353" to="4362" />
+    <span id="t_773" from="4362" to="4363" />
+    <span id="t_774" from="4364" to="4371" />
+    <span id="t_775" from="4372" to="4376" />
+    <span id="t_776" from="4377" to="4379" />
+    <span id="t_777" from="4379" to="4380" />
+    <span id="t_778" from="4381" to="4384" />
+    <span id="t_779" from="4385" to="4393" />
+    <span id="t_780" from="4394" to="4399" />
+    <span id="t_781" from="4400" to="4408" />
+    <span id="t_782" from="4409" to="4417" />
+    <span id="t_783" from="4418" to="4434" />
+    <span id="t_784" from="4435" to="4438" />
+    <span id="t_785" from="4439" to="4441" />
+    <span id="t_786" from="4442" to="4448" />
+    <span id="t_787" from="4448" to="4449" />
+    <span id="t_788" from="4450" to="4453" />
+    <span id="t_789" from="4454" to="4460" />
+    <span id="t_790" from="4461" to="4465" />
+    <span id="t_791" from="4466" to="4480" />
+    <span id="t_792" from="4481" to="4490" />
+    <span id="t_793" from="4490" to="4491" />
+    <span id="t_794" from="4492" to="4495" />
+    <span id="t_795" from="4496" to="4501" />
+    <span id="t_796" from="4502" to="4505" />
+    <span id="t_797" from="4506" to="4515" />
+    <span id="t_798" from="4516" to="4521" />
+    <span id="t_799" from="4522" to="4525" />
+    <span id="t_800" from="4526" to="4532" />
+    <span id="t_801" from="4533" to="4545" />
+    <span id="t_802" from="4546" to="4553" />
+    <span id="t_803" from="4554" to="4557" />
+    <span id="t_804" from="4558" to="4570" />
+    <span id="t_805" from="4571" to="4577" />
+    <span id="t_806" from="4578" to="4581" />
+    <span id="t_807" from="4582" to="4587" />
+    <span id="t_808" from="4588" to="4593" />
+    <span id="t_809" from="4594" to="4599" />
+    <span id="t_810" from="4600" to="4605" />
+    <span id="t_811" from="4606" to="4610" />
+    <span id="t_812" from="4611" to="4617" />
+    <span id="t_813" from="4617" to="4618" />
+    <span id="t_814" from="4619" to="4622" />
+    <span id="t_815" from="4623" to="4634" />
+    <span id="t_816" from="4635" to="4642" />
+    <span id="t_817" from="4643" to="4647" />
+    <span id="t_818" from="4647" to="4648" />
+    <span id="t_819" from="4649" to="4654" />
+    <span id="t_820" from="4655" to="4658" />
+    <span id="t_821" from="4659" to="4670" />
+    <span id="t_822" from="4671" to="4673" />
+    <span id="t_823" from="4674" to="4680" />
+    <span id="t_824" from="4681" to="4688" />
+    <span id="t_825" from="4689" to="4692" />
+    <span id="t_826" from="4693" to="4704" />
+    <span id="t_827" from="4705" to="4708" />
+    <span id="t_828" from="4709" to="4726" />
+    <span id="t_829" from="4727" to="4729" />
+    <span id="t_830" from="4730" to="4736" />
+    <span id="t_831" from="4737" to="4743" />
+    <span id="t_832" from="4744" to="4753" />
+    <span id="t_833" from="4754" to="4757" />
+    <span id="t_834" from="4758" to="4766" />
+    <span id="t_835" from="4767" to="4779" />
+    <span id="t_836" from="4780" to="4786" />
+    <span id="t_837" from="4786" to="4787" />
+    <span id="t_838" from="4788" to="4791" />
+    <span id="t_839" from="4792" to="4802" />
+    <span id="t_840" from="4803" to="4807" />
+    <span id="t_841" from="4808" to="4814" />
+    <span id="t_842" from="4815" to="4825" />
+    <span id="t_843" from="4826" to="4840" />
+    <span id="t_844" from="4841" to="4848" />
+    <span id="t_845" from="4849" to="4854" />
+    <span id="t_846" from="4854" to="4855" />
+    <span id="t_847" from="4856" to="4859" />
+    <span id="t_848" from="4860" to="4863" />
+    <span id="t_849" from="4864" to="4868" />
+    <span id="t_850" from="4869" to="4873" />
+    <span id="t_851" from="4874" to="4877" />
+    <span id="t_852" from="4878" to="4885" />
+    <span id="t_853" from="4886" to="4889" />
+    <span id="t_854" from="4890" to="4895" />
+    <span id="t_855" from="4896" to="4901" />
+    <span id="t_856" from="4902" to="4905" />
+    <span id="t_857" from="4906" to="4913" />
+    <span id="t_858" from="4914" to="4923" />
+    <span id="t_859" from="4924" to="4927" />
+    <span id="t_860" from="4928" to="4938" />
+    <span id="t_861" from="4939" to="4951" />
+    <span id="t_862" from="4952" to="4956" />
+    <span id="t_863" from="4956" to="4957" />
+    <span id="t_864" from="4958" to="4961" />
+    <span id="t_865" from="4962" to="4968" />
+    <span id="t_866" from="4969" to="4973" />
+    <span id="t_867" from="4974" to="4976" />
+    <span id="t_868" from="4977" to="4979" />
+    <span id="t_869" from="4980" to="4982" />
+    <span id="t_870" from="4983" to="4992" />
+    <span id="t_871" from="4993" to="4998" />
+    <span id="t_872" from="4998" to="4999" />
+    <span id="t_873" from="5000" to="5002" />
+    <span id="t_874" from="5003" to="5007" />
+    <span id="t_875" from="5008" to="5015" />
+    <span id="t_876" from="5016" to="5024" />
+    <span id="t_877" from="5024" to="5025" />
+    <span id="t_878" from="5026" to="5029" />
+    <span id="t_879" from="5030" to="5038" />
+    <span id="t_880" from="5038" to="5039" />
+    <span id="t_881" from="5040" to="5043" />
+    <span id="t_882" from="5044" to="5047" />
+    <span id="t_883" from="5048" to="5058" />
+    <span id="t_884" from="5058" to="5059" />
+    <span id="t_885" from="5060" to="5066" />
+    <span id="t_886" from="5067" to="5082" />
+    <span id="t_887" from="5082" to="5083" />
+    <span id="t_888" from="5084" to="5088" />
+    <span id="t_889" from="5088" to="5089" />
+    <span id="t_890" from="5090" to="5095" />
+    <span id="t_891" from="5096" to="5103" />
+    <span id="t_892" from="5103" to="5104" />
+    <span id="t_893" from="5105" to="5108" />
+    <span id="t_894" from="5109" to="5114" />
+    <span id="t_895" from="5115" to="5123" />
+    <span id="t_896" from="5123" to="5124" />
+    <span id="t_897" from="5125" to="5127" />
+    <span id="t_898" from="5128" to="5135" />
+    <span id="t_899" from="5136" to="5147" />
+    <span id="t_900" from="5148" to="5158" />
+    <span id="t_901" from="5159" to="5164" />
+    <span id="t_902" from="5165" to="5168" />
+    <span id="t_903" from="5169" to="5176" />
+    <span id="t_904" from="5176" to="5177" />
+    <span id="t_905" from="5178" to="5181" />
+    <span id="t_906" from="5182" to="5185" />
+    <span id="t_907" from="5186" to="5197" />
+    <span id="t_908" from="5198" to="5202" />
+    <span id="t_909" from="5203" to="5209" />
+    <span id="t_910" from="5209" to="5210" />
+    <span id="t_911" from="5211" to="5214" />
+    <span id="t_912" from="5215" to="5223" />
+    <span id="t_913" from="5224" to="5227" />
+    <span id="t_914" from="5228" to="5232" />
+    <span id="t_915" from="5233" to="5244" />
+    <span id="t_916" from="5245" to="5250" />
+    <span id="t_917" from="5251" to="5259" />
+    <span id="t_918" from="5260" to="5264" />
+    <span id="t_919" from="5264" to="5265" />
+    <span id="t_920" from="5266" to="5269" />
+    <span id="t_921" from="5270" to="5279" />
+    <span id="t_922" from="5279" to="5280" />
+    <span id="t_923" from="5281" to="5285" />
+    <span id="t_924" from="5286" to="5288" />
+    <span id="t_925" from="5289" to="5297" />
+    <span id="t_926" from="5298" to="5300" />
+    <span id="t_927" from="5301" to="5305" />
+    <span id="t_928" from="5306" to="5312" />
+    <span id="t_929" from="5312" to="5313" />
+    <span id="t_930" from="5314" to="5317" />
+    <span id="t_931" from="5318" to="5320" />
+    <span id="t_932" from="5321" to="5327" />
+    <span id="t_933" from="5328" to="5332" />
+    <span id="t_934" from="5332" to="5333" />
+    <span id="t_935" from="5334" to="5336" />
+    <span id="t_936" from="5337" to="5343" />
+    <span id="t_937" from="5344" to="5348" />
+    <span id="t_938" from="5349" to="5352" />
+    <span id="t_939" from="5353" to="5363" />
+    <span id="t_940" from="5364" to="5372" />
+    <span id="t_941" from="5372" to="5373" />
+    <span id="t_942" from="5374" to="5377" />
+    <span id="t_943" from="5378" to="5389" />
+    <span id="t_944" from="5390" to="5393" />
+    <span id="t_945" from="5394" to="5397" />
+    <span id="t_946" from="5398" to="5408" />
+    <span id="t_947" from="5409" to="5412" />
+    <span id="t_948" from="5413" to="5420" />
+    <span id="t_949" from="5420" to="5421" />
+    <span id="t_950" from="5422" to="5425" />
+    <span id="t_951" from="5426" to="5435" />
+    <span id="t_952" from="5436" to="5439" />
+    <span id="t_953" from="5440" to="5447" />
+    <span id="t_954" from="5447" to="5448" />
+    <span id="t_955" from="5449" to="5452" />
+    <span id="t_956" from="5453" to="5465" />
+    <span id="t_957" from="5466" to="5470" />
+    <span id="t_958" from="5471" to="5476" />
+    <span id="t_959" from="5476" to="5477" />
+    <span id="t_960" from="5478" to="5481" />
+    <span id="t_961" from="5482" to="5488" />
+    <span id="t_962" from="5489" to="5495" />
+    <span id="t_963" from="5496" to="5499" />
+    <span id="t_964" from="5500" to="5503" />
+    <span id="t_965" from="5504" to="5513" />
+    <span id="t_966" from="5514" to="5517" />
+    <span id="t_967" from="5518" to="5525" />
+    <span id="t_968" from="5526" to="5529" />
+    <span id="t_969" from="5530" to="5538" />
+    <span id="t_970" from="5539" to="5547" />
+    <span id="t_971" from="5548" to="5550" />
+    <span id="t_972" from="5551" to="5565" />
+    <span id="t_973" from="5566" to="5569" />
+    <span id="t_974" from="5570" to="5583" />
+    <span id="t_975" from="5583" to="5584" />
+    <span id="t_976" from="5585" to="5589" />
+    <span id="t_977" from="5590" to="5593" />
+    <span id="t_978" from="5594" to="5599" />
+    <span id="t_979" from="5600" to="5603" />
+    <span id="t_980" from="5604" to="5611" />
+    <span id="t_981" from="5612" to="5618" />
+    <span id="t_982" from="5618" to="5619" />
+    <span id="t_983" from="5620" to="5622" />
+    <span id="t_984" from="5623" to="5628" />
+    <span id="t_985" from="5629" to="5632" />
+    <span id="t_986" from="5633" to="5639" />
+    <span id="t_987" from="5640" to="5643" />
+    <span id="t_988" from="5644" to="5647" />
+    <span id="t_989" from="5648" to="5660" />
+    <span id="t_990" from="5661" to="5670" />
+    <span id="t_991" from="5670" to="5671" />
+    <span id="t_992" from="5671" to="5672" />
+    <span id="t_993" from="5673" to="5682" />
+    <span id="t_994" from="5682" to="5683" />
+    <span id="t_995" from="5684" to="5687" />
+    <span id="t_996" from="5688" to="5701" />
+    <span id="t_997" from="5702" to="5707" />
+    <span id="t_998" from="5708" to="5716" />
+    <span id="t_999" from="5717" to="5722" />
+    <span id="t_1000" from="5722" to="5723" />
+    <span id="t_1001" from="5724" to="5727" />
+    <span id="t_1002" from="5728" to="5732" />
+    <span id="t_1003" from="5733" to="5736" />
+    <span id="t_1004" from="5737" to="5740" />
+    <span id="t_1005" from="5741" to="5746" />
+    <span id="t_1006" from="5747" to="5753" />
+    <span id="t_1007" from="5753" to="5754" />
+    <span id="t_1008" from="5755" to="5758" />
+    <span id="t_1009" from="5759" to="5761" />
+    <span id="t_1010" from="5762" to="5771" />
+    <span id="t_1011" from="5771" to="5772" />
+    <span id="t_1012" from="5773" to="5777" />
+    <span id="t_1013" from="5778" to="5782" />
+    <span id="t_1014" from="5783" to="5791" />
+    <span id="t_1015" from="5792" to="5794" />
+    <span id="t_1016" from="5795" to="5801" />
+    <span id="t_1017" from="5801" to="5802" />
+    <span id="t_1018" from="5803" to="5806" />
+    <span id="t_1019" from="5807" to="5811" />
+    <span id="t_1020" from="5812" to="5816" />
+    <span id="t_1021" from="5817" to="5819" />
+    <span id="t_1022" from="5820" to="5825" />
+    <span id="t_1023" from="5826" to="5831" />
+    <span id="t_1024" from="5832" to="5835" />
+    <span id="t_1025" from="5836" to="5846" />
+    <span id="t_1026" from="5847" to="5856" />
+    <span id="t_1027" from="5856" to="5857" />
+    <span id="t_1028" from="5858" to="5864" />
+    <span id="t_1029" from="5865" to="5868" />
+    <span id="t_1030" from="5869" to="5874" />
+    <span id="t_1031" from="5875" to="5881" />
+    <span id="t_1032" from="5882" to="5888" />
+    <span id="t_1033" from="5888" to="5889" />
+    <span id="t_1034" from="5890" to="5901" />
+    <span id="t_1035" from="5902" to="5910" />
+    <span id="t_1036" from="5911" to="5917" />
+    <span id="t_1037" from="5918" to="5920" />
+    <span id="t_1038" from="5921" to="5924" />
+    <span id="t_1039" from="5925" to="5930" />
+    <span id="t_1040" from="5931" to="5936" />
+    <span id="t_1041" from="5936" to="5937" />
+    <span id="t_1042" from="5938" to="5940" />
+    <span id="t_1043" from="5941" to="5944" />
+    <span id="t_1044" from="5945" to="5953" />
+    <span id="t_1045" from="5954" to="5960" />
+    <span id="t_1046" from="5961" to="5970" />
+    <span id="t_1047" from="5971" to="5980" />
+    <span id="t_1048" from="5980" to="5981" />
+    <span id="t_1049" from="5982" to="5986" />
+    <span id="t_1050" from="5987" to="5992" />
+    <span id="t_1051" from="5993" to="5996" />
+    <span id="t_1052" from="5997" to="6002" />
+    <span id="t_1053" from="6003" to="6009" />
+    <span id="t_1054" from="6010" to="6013" />
+    <span id="t_1055" from="6014" to="6022" />
+    <span id="t_1056" from="6022" to="6023" />
+    <span id="t_1057" from="6024" to="6026" />
+    <span id="t_1058" from="6027" to="6030" />
+    <span id="t_1059" from="6031" to="6038" />
+    <span id="t_1060" from="6039" to="6042" />
+    <span id="t_1061" from="6043" to="6051" />
+    <span id="t_1062" from="6051" to="6052" />
+    <span id="t_1063" from="6053" to="6056" />
+    <span id="t_1064" from="6057" to="6070" />
+    <span id="t_1065" from="6071" to="6080" />
+    <span id="t_1066" from="6081" to="6087" />
+    <span id="t_1067" from="6088" to="6091" />
+    <span id="t_1068" from="6092" to="6100" />
+    <span id="t_1069" from="6101" to="6104" />
+    <span id="t_1070" from="6105" to="6111" />
+    <span id="t_1071" from="6112" to="6118" />
+    <span id="t_1072" from="6118" to="6119" />
+    <span id="t_1073" from="6120" to="6123" />
+    <span id="t_1074" from="6124" to="6127" />
+    <span id="t_1075" from="6128" to="6136" />
+    <span id="t_1076" from="6137" to="6140" />
+    <span id="t_1077" from="6141" to="6145" />
+    <span id="t_1078" from="6145" to="6146" />
+    <span id="t_1079" from="6147" to="6150" />
+    <span id="t_1080" from="6151" to="6154" />
+    <span id="t_1081" from="6155" to="6161" />
+    <span id="t_1082" from="6162" to="6170" />
+    <span id="t_1083" from="6170" to="6171" />
+    <span id="t_1084" from="6172" to="6175" />
+    <span id="t_1085" from="6176" to="6180" />
+    <span id="t_1086" from="6181" to="6190" />
+    <span id="t_1087" from="6191" to="6193" />
+    <span id="t_1088" from="6194" to="6200" />
+    <span id="t_1089" from="6201" to="6206" />
+    <span id="t_1090" from="6206" to="6207" />
+    <span id="t_1091" from="6208" to="6210" />
+    <span id="t_1092" from="6211" to="6219" />
+    <span id="t_1093" from="6220" to="6224" />
+    <span id="t_1094" from="6225" to="6229" />
+    <span id="t_1095" from="6230" to="6234" />
+    <span id="t_1096" from="6235" to="6240" />
+    <span id="t_1097" from="6241" to="6247" />
+    <span id="t_1098" from="6248" to="6250" />
+    <span id="t_1099" from="6251" to="6254" />
+    <span id="t_1100" from="6255" to="6260" />
+    <span id="t_1101" from="6260" to="6261" />
+    <span id="t_1102" from="6262" to="6265" />
+    <span id="t_1103" from="6266" to="6268" />
+    <span id="t_1104" from="6269" to="6276" />
+    <span id="t_1105" from="6276" to="6277" />
+    <span id="t_1106" from="6278" to="6281" />
+    <span id="t_1107" from="6282" to="6290" />
+    <span id="t_1108" from="6291" to="6293" />
+    <span id="t_1109" from="6294" to="6297" />
+    <span id="t_1110" from="6297" to="6298" />
+    <span id="t_1111" from="6299" to="6302" />
+    <span id="t_1112" from="6303" to="6305" />
+    <span id="t_1113" from="6306" to="6310" />
+    <span id="t_1114" from="6311" to="6314" />
+    <span id="t_1115" from="6315" to="6319" />
+    <span id="t_1116" from="6320" to="6326" />
+    <span id="t_1117" from="6326" to="6327" />
+    <span id="t_1118" from="6328" to="6332" />
+    <span id="t_1119" from="6333" to="6339" />
+    <span id="t_1120" from="6340" to="6343" />
+    <span id="t_1121" from="6344" to="6347" />
+    <span id="t_1122" from="6348" to="6362" />
+    <span id="t_1123" from="6363" to="6366" />
+    <span id="t_1124" from="6367" to="6370" />
+    <span id="t_1125" from="6371" to="6378" />
+    <span id="t_1126" from="6379" to="6382" />
+    <span id="t_1127" from="6383" to="6394" />
+    <span id="t_1128" from="6395" to="6406" />
+    <span id="t_1129" from="6406" to="6407" />
+    <span id="t_1130" from="6408" to="6411" />
+    <span id="t_1131" from="6412" to="6415" />
+    <span id="t_1132" from="6416" to="6422" />
+    <span id="t_1133" from="6423" to="6427" />
+    <span id="t_1134" from="6428" to="6430" />
+    <span id="t_1135" from="6431" to="6437" />
+    <span id="t_1136" from="6438" to="6444" />
+    <span id="t_1137" from="6444" to="6445" />
+    <span id="t_1138" from="6446" to="6448" />
+    <span id="t_1139" from="6449" to="6455" />
+    <span id="t_1140" from="6456" to="6459" />
+    <span id="t_1141" from="6460" to="6471" />
+    <span id="t_1142" from="6472" to="6481" />
+    <span id="t_1143" from="6482" to="6485" />
+    <span id="t_1144" from="6485" to="6486" />
+    <span id="t_1145" from="6487" to="6490" />
+    <span id="t_1146" from="6491" to="6494" />
+    <span id="t_1147" from="6495" to="6501" />
+    <span id="t_1148" from="6501" to="6502" />
+    <span id="t_1149" from="6503" to="6508" />
+    <span id="t_1150" from="6509" to="6516" />
+    <span id="t_1151" from="6517" to="6521" />
+    <span id="t_1152" from="6522" to="6525" />
+    <span id="t_1153" from="6526" to="6538" />
+    <span id="t_1154" from="6539" to="6542" />
+    <span id="t_1155" from="6543" to="6552" />
+    <span id="t_1156" from="6552" to="6553" />
+    <span id="t_1157" from="6554" to="6560" />
+    <span id="t_1158" from="6561" to="6564" />
+    <span id="t_1159" from="6565" to="6570" />
+    <span id="t_1160" from="6571" to="6576" />
+    <span id="t_1161" from="6577" to="6580" />
+    <span id="t_1162" from="6581" to="6584" />
+    <span id="t_1163" from="6585" to="6599" />
+    <span id="t_1164" from="6600" to="6609" />
+    <span id="t_1165" from="6610" to="6618" />
+    <span id="t_1166" from="6618" to="6619" />
+    <span id="t_1167" from="6620" to="6628" />
+    <span id="t_1168" from="6629" to="6634" />
+    <span id="t_1169" from="6635" to="6638" />
+    <span id="t_1170" from="6639" to="6654" />
+    <span id="t_1171" from="6655" to="6660" />
+    <span id="t_1172" from="6661" to="6664" />
+    <span id="t_1173" from="6664" to="6665" />
+    <span id="t_1174" from="6666" to="6669" />
+    <span id="t_1175" from="6670" to="6673" />
+    <span id="t_1176" from="6674" to="6686" />
+    <span id="t_1177" from="6686" to="6687" />
+    <span id="t_1178" from="6688" to="6689" />
+    <span id="t_1179" from="6690" to="6700" />
+    <span id="t_1180" from="6701" to="6707" />
+    <span id="t_1181" from="6708" to="6715" />
+    <span id="t_1182" from="6716" to="6724" />
+    <span id="t_1183" from="6725" to="6727" />
+    <span id="t_1184" from="6728" to="6730" />
+    <span id="t_1185" from="6730" to="6731" />
+    <span id="t_1186" from="6732" to="6737" />
+    <span id="t_1187" from="6738" to="6743" />
+    <span id="t_1188" from="6744" to="6747" />
+    <span id="t_1189" from="6748" to="6751" />
+    <span id="t_1190" from="6752" to="6759" />
+    <span id="t_1191" from="6760" to="6766" />
+    <span id="t_1192" from="6767" to="6769" />
+    <span id="t_1193" from="6769" to="6770" />
+    <span id="t_1194" from="6771" to="6774" />
+    <span id="t_1195" from="6775" to="6778" />
+    <span id="t_1196" from="6779" to="6783" />
+    <span id="t_1197" from="6784" to="6793" />
+    <span id="t_1198" from="6794" to="6800" />
+    <span id="t_1199" from="6801" to="6807" />
+    <span id="t_1200" from="6808" to="6812" />
+    <span id="t_1201" from="6812" to="6813" />
+    <span id="t_1202" from="6814" to="6817" />
+    <span id="t_1203" from="6818" to="6820" />
+    <span id="t_1204" from="6821" to="6825" />
+    <span id="t_1205" from="6826" to="6831" />
+    <span id="t_1206" from="6832" to="6836" />
+    <span id="t_1207" from="6836" to="6837" />
+    <span id="t_1208" from="6838" to="6841" />
+    <span id="t_1209" from="6842" to="6845" />
+    <span id="t_1210" from="6846" to="6863" />
+    <span id="t_1211" from="6864" to="6876" />
+    <span id="t_1212" from="6877" to="6882" />
+    <span id="t_1213" from="6882" to="6883" />
+    <span id="t_1214" from="6884" to="6887" />
+    <span id="t_1215" from="6888" to="6890" />
+    <span id="t_1216" from="6891" to="6897" />
+    <span id="t_1217" from="6898" to="6906" />
+    <span id="t_1218" from="6907" to="6910" />
+    <span id="t_1219" from="6910" to="6911" />
+    <span id="t_1220" from="6912" to="6915" />
+    <span id="t_1221" from="6916" to="6918" />
+    <span id="t_1222" from="6919" to="6923" />
+    <span id="t_1223" from="6924" to="6930" />
+    <span id="t_1224" from="6931" to="6936" />
+    <span id="t_1225" from="6937" to="6946" />
+    <span id="t_1226" from="6947" to="6951" />
+    <span id="t_1227" from="6951" to="6952" />
+    <span id="t_1228" from="6953" to="6956" />
+    <span id="t_1229" from="6957" to="6962" />
+    <span id="t_1230" from="6963" to="6968" />
+    <span id="t_1231" from="6969" to="6972" />
+    <span id="t_1232" from="6973" to="6980" />
+    <span id="t_1233" from="6981" to="6987" />
+    <span id="t_1234" from="6988" to="6995" />
+    <span id="t_1235" from="6995" to="6996" />
+    <span id="t_1236" from="6997" to="7000" />
+    <span id="t_1237" from="7001" to="7007" />
+    <span id="t_1238" from="7008" to="7011" />
+    <span id="t_1239" from="7012" to="7019" />
+    <span id="t_1240" from="7020" to="7025" />
+    <span id="t_1241" from="7026" to="7036" />
+    <span id="t_1242" from="7036" to="7037" />
+    <span id="t_1243" from="7038" to="7043" />
+    <span id="t_1244" from="7044" to="7052" />
+    <span id="t_1245" from="7053" to="7056" />
+    <span id="t_1246" from="7057" to="7065" />
+    <span id="t_1247" from="7066" to="7077" />
+    <span id="t_1248" from="7078" to="7083" />
+    <span id="t_1249" from="7084" to="7088" />
+    <span id="t_1250" from="7089" to="7094" />
+    <span id="t_1251" from="7095" to="7101" />
+    <span id="t_1252" from="7102" to="7118" />
+    <span id="t_1253" from="7119" to="7126" />
+    <span id="t_1254" from="7127" to="7133" />
+    <span id="t_1255" from="7134" to="7141" />
+    <span id="t_1256" from="7141" to="7142" />
+    <span id="t_1257" from="7143" to="7145" />
+    <span id="t_1258" from="7146" to="7153" />
+    <span id="t_1259" from="7153" to="7154" />
+    <span id="t_1260" from="7155" to="7159" />
+    <span id="t_1261" from="7160" to="7163" />
+    <span id="t_1262" from="7163" to="7164" />
+    <span id="t_1263" from="7165" to="7171" />
+    <span id="t_1264" from="7172" to="7176" />
+    <span id="t_1265" from="7177" to="7184" />
+    <span id="t_1266" from="7185" to="7196" />
+    <span id="t_1267" from="7197" to="7204" />
+    <span id="t_1268" from="7205" to="7217" />
+    <span id="t_1269" from="7218" to="7228" />
+    <span id="t_1270" from="7228" to="7229" />
+    <span id="t_1271" from="7230" to="7233" />
+    <span id="t_1272" from="7234" to="7237" />
+    <span id="t_1273" from="7238" to="7242" />
+    <span id="t_1274" from="7243" to="7248" />
+    <span id="t_1275" from="7249" to="7254" />
+    <span id="t_1276" from="7255" to="7264" />
+    <span id="t_1277" from="7265" to="7269" />
+    <span id="t_1278" from="7270" to="7279" />
+    <span id="t_1279" from="7280" to="7283" />
+    <span id="t_1280" from="7284" to="7294" />
+    <span id="t_1281" from="7295" to="7310" />
+    <span id="t_1282" from="7311" to="7316" />
+    <span id="t_1283" from="7316" to="7317" />
+    <span id="t_1284" from="7318" to="7332" />
+    <span id="t_1285" from="7333" to="7336" />
+    <span id="t_1286" from="7337" to="7340" />
+    <span id="t_1287" from="7341" to="7344" />
+    <span id="t_1288" from="7345" to="7356" />
+    <span id="t_1289" from="7356" to="7357" />
+    <span id="t_1290" from="7358" to="7361" />
+    <span id="t_1291" from="7362" to="7371" />
+    <span id="t_1292" from="7372" to="7380" />
+    <span id="t_1293" from="7381" to="7384" />
+    <span id="t_1294" from="7385" to="7392" />
+    <span id="t_1295" from="7392" to="7393" />
+    <span id="t_1296" from="7394" to="7397" />
+    <span id="t_1297" from="7398" to="7405" />
+    <span id="t_1298" from="7406" to="7416" />
+    <span id="t_1299" from="7417" to="7420" />
+    <span id="t_1300" from="7421" to="7424" />
+    <span id="t_1301" from="7425" to="7429" />
+    <span id="t_1302" from="7430" to="7435" />
+    <span id="t_1303" from="7435" to="7436" />
+    <span id="t_1304" from="7437" to="7440" />
+    <span id="t_1305" from="7441" to="7453" />
+    <span id="t_1306" from="7454" to="7461" />
+    <span id="t_1307" from="7462" to="7471" />
+    <span id="t_1308" from="7471" to="7472" />
+    <span id="t_1309" from="7473" to="7485" />
+    <span id="t_1310" from="7486" to="7495" />
+    <span id="t_1311" from="7495" to="7496" />
+    <span id="t_1312" from="7497" to="7500" />
+    <span id="t_1313" from="7501" to="7508" />
+    <span id="t_1314" from="7509" to="7520" />
+    <span id="t_1315" from="7521" to="7530" />
+    <span id="t_1316" from="7530" to="7531" />
+    <span id="t_1317" from="7532" to="7535" />
+    <span id="t_1318" from="7536" to="7547" />
+    <span id="t_1319" from="7547" to="7548" />
+    <span id="t_1320" from="7549" to="7552" />
+    <span id="t_1321" from="7553" to="7565" />
+    <span id="t_1322" from="7566" to="7568" />
+    <span id="t_1323" from="7569" to="7575" />
+    <span id="t_1324" from="7576" to="7581" />
+    <span id="t_1325" from="7582" to="7585" />
+    <span id="t_1326" from="7586" to="7590" />
+    <span id="t_1327" from="7591" to="7603" />
+    <span id="t_1328" from="7604" to="7617" />
+    <span id="t_1329" from="7618" to="7621" />
+    <span id="t_1330" from="7622" to="7633" />
+    <span id="t_1331" from="7633" to="7634" />
+    <span id="t_1332" from="7635" to="7638" />
+    <span id="t_1333" from="7639" to="7645" />
+    <span id="t_1334" from="7646" to="7654" />
+    <span id="t_1335" from="7655" to="7660" />
+    <span id="t_1336" from="7660" to="7661" />
+    <span id="t_1337" from="7662" to="7665" />
+    <span id="t_1338" from="7666" to="7669" />
+    <span id="t_1339" from="7670" to="7677" />
+    <span id="t_1340" from="7677" to="7678" />
+    <span id="t_1341" from="7679" to="7681" />
+    <span id="t_1342" from="7682" to="7686" />
+    <span id="t_1343" from="7687" to="7696" />
+    <span id="t_1344" from="7696" to="7697" />
+    <span id="t_1345" from="7698" to="7701" />
+    <span id="t_1346" from="7702" to="7709" />
+    <span id="t_1347" from="7709" to="7710" />
+    <span id="t_1348" from="7711" to="7714" />
+    <span id="t_1349" from="7715" to="7717" />
+    <span id="t_1350" from="7718" to="7721" />
+    <span id="t_1351" from="7722" to="7727" />
+    <span id="t_1352" from="7728" to="7736" />
+    <span id="t_1353" from="7737" to="7745" />
+    <span id="t_1354" from="7746" to="7748" />
+    <span id="t_1355" from="7749" to="7752" />
+    <span id="t_1356" from="7753" to="7757" />
+    <span id="t_1357" from="7758" to="7765" />
+    <span id="t_1358" from="7766" to="7771" />
+    <span id="t_1359" from="7771" to="7772" />
+    <span id="t_1360" from="7773" to="7776" />
+    <span id="t_1361" from="7777" to="7781" />
+    <span id="t_1362" from="7782" to="7788" />
+    <span id="t_1363" from="7789" to="7794" />
+    <span id="t_1364" from="7794" to="7795" />
+    <span id="t_1365" from="7796" to="7800" />
+    <span id="t_1366" from="7801" to="7803" />
+    <span id="t_1367" from="7804" to="7809" />
+    <span id="t_1368" from="7810" to="7812" />
+    <span id="t_1369" from="7813" to="7818" />
+    <span id="t_1370" from="7819" to="7825" />
+    <span id="t_1371" from="7826" to="7831" />
+    <span id="t_1372" from="7832" to="7838" />
+    <span id="t_1373" from="7838" to="7839" />
+    <span id="t_1374" from="7840" to="7843" />
+    <span id="t_1375" from="7844" to="7855" />
+    <span id="t_1376" from="7856" to="7864" />
+    <span id="t_1377" from="7865" to="7868" />
+    <span id="t_1378" from="7869" to="7873" />
+    <span id="t_1379" from="7874" to="7888" />
+    <span id="t_1380" from="7889" to="7899" />
+    <span id="t_1381" from="7900" to="7910" />
+    <span id="t_1382" from="7910" to="7911" />
+    <span id="t_1383" from="7912" to="7915" />
+    <span id="t_1384" from="7915" to="7916" />
+    <span id="t_1385" from="7917" to="7925" />
+    <span id="t_1386" from="7925" to="7926" />
+    <span id="t_1387" from="7927" to="7934" />
+    <span id="t_1388" from="7935" to="7944" />
+    <span id="t_1389" from="7945" to="7953" />
+    <span id="t_1390" from="7954" to="7957" />
+    <span id="t_1391" from="7957" to="7958" />
+    <span id="t_1392" from="7959" to="7962" />
+    <span id="t_1393" from="7963" to="7974" />
+    <span id="t_1394" from="7975" to="7980" />
+    <span id="t_1395" from="7981" to="7984" />
+    <span id="t_1396" from="7985" to="7988" />
+    <span id="t_1397" from="7989" to="7997" />
+    <span id="t_1398" from="7998" to="8000" />
+    <span id="t_1399" from="8001" to="8006" />
+    <span id="t_1400" from="8007" to="8011" />
+    <span id="t_1401" from="8012" to="8020" />
+    <span id="t_1402" from="8021" to="8030" />
+    <span id="t_1403" from="8031" to="8034" />
+    <span id="t_1404" from="8035" to="8038" />
+    <span id="t_1405" from="8039" to="8042" />
+    <span id="t_1406" from="8043" to="8052" />
+    <span id="t_1407" from="8052" to="8053" />
+    <span id="t_1408" from="8054" to="8057" />
+    <span id="t_1409" from="8058" to="8061" />
+    <span id="t_1410" from="8062" to="8076" />
+    <span id="t_1411" from="8076" to="8077" />
+    <span id="t_1412" from="8078" to="8085" />
+    <span id="t_1413" from="8085" to="8086" />
+    <span id="t_1414" from="8087" to="8091" />
+    <span id="t_1415" from="8092" to="8095" />
+    <span id="t_1416" from="8096" to="8105" />
+    <span id="t_1417" from="8106" to="8109" />
+    <span id="t_1418" from="8110" to="8116" />
+    <span id="t_1419" from="8117" to="8120" />
+    <span id="t_1420" from="8121" to="8124" />
+    <span id="t_1421" from="8124" to="8125" />
+    <span id="t_1422" from="8126" to="8131" />
+    <span id="t_1423" from="8132" to="8137" />
+    <span id="t_1424" from="8138" to="8140" />
+    <span id="t_1425" from="8141" to="8143" />
+    <span id="t_1426" from="8144" to="8147" />
+    <span id="t_1427" from="8148" to="8151" />
+    <span id="t_1428" from="8152" to="8156" />
+    <span id="t_1429" from="8157" to="8163" />
+    <span id="t_1430" from="8164" to="8172" />
+    <span id="t_1431" from="8172" to="8173" />
+    <span id="t_1432" from="8174" to="8184" />
+    <span id="t_1433" from="8184" to="8185" />
+    <span id="t_1434" from="8186" to="8190" />
+    <span id="t_1435" from="8191" to="8193" />
+    <span id="t_1436" from="8194" to="8202" />
+    <span id="t_1437" from="8202" to="8203" />
+    <span id="t_1438" from="8204" to="8212" />
+    <span id="t_1439" from="8212" to="8213" />
+    <span id="t_1440" from="8214" to="8218" />
+    <span id="t_1441" from="8218" to="8219" />
+    <span id="t_1442" from="8220" to="8226" />
+    <span id="t_1443" from="8226" to="8227" />
+    <span id="t_1444" from="8228" to="8236" />
+    <span id="t_1445" from="8237" to="8240" />
+    <span id="t_1446" from="8241" to="8247" />
+    <span id="t_1447" from="8247" to="8248" />
+    <span id="t_1448" from="8249" to="8255" />
+    <span id="t_1449" from="8256" to="8262" />
+    <span id="t_1450" from="8263" to="8276" />
+    <span id="t_1451" from="8277" to="8280" />
+    <span id="t_1452" from="8281" to="8285" />
+    <span id="t_1453" from="8286" to="8288" />
+    <span id="t_1454" from="8289" to="8297" />
+    <span id="t_1455" from="8297" to="8298" />
+    <span id="t_1456" from="8299" to="8302" />
+    <span id="t_1457" from="8303" to="8315" />
+    <span id="t_1458" from="8316" to="8323" />
+    <span id="t_1459" from="8324" to="8331" />
+    <span id="t_1460" from="8332" to="8336" />
+    <span id="t_1461" from="8337" to="8340" />
+    <span id="t_1462" from="8341" to="8345" />
+    <span id="t_1463" from="8346" to="8348" />
+    <span id="t_1464" from="8349" to="8352" />
+    <span id="t_1465" from="8353" to="8357" />
+    <span id="t_1466" from="8357" to="8358" />
+    <span id="t_1467" from="8359" to="8370" />
+    <span id="t_1468" from="8371" to="8375" />
+    <span id="t_1469" from="8376" to="8380" />
+    <span id="t_1470" from="8381" to="8386" />
+    <span id="t_1471" from="8387" to="8393" />
+    <span id="t_1472" from="8393" to="8394" />
+    <span id="t_1473" from="8395" to="8399" />
+    <span id="t_1474" from="8400" to="8403" />
+    <span id="t_1475" from="8404" to="8409" />
+    <span id="t_1476" from="8410" to="8414" />
+    <span id="t_1477" from="8415" to="8419" />
+    <span id="t_1478" from="8420" to="8424" />
+    <span id="t_1479" from="8425" to="8430" />
+    <span id="t_1480" from="8431" to="8437" />
+    <span id="t_1481" from="8437" to="8438" />
+    <span id="t_1482" from="8439" to="8441" />
+    <span id="t_1483" from="8442" to="8448" />
+    <span id="t_1484" from="8449" to="8452" />
+    <span id="t_1485" from="8453" to="8460" />
+    <span id="t_1486" from="8461" to="8465" />
+    <span id="t_1487" from="8466" to="8471" />
+    <span id="t_1488" from="8472" to="8476" />
+    <span id="t_1489" from="8477" to="8481" />
+    <span id="t_1490" from="8482" to="8489" />
+    <span id="t_1491" from="8489" to="8490" />
+    <span id="t_1492" from="8491" to="8493" />
+    <span id="t_1493" from="8494" to="8497" />
+    <span id="t_1494" from="8498" to="8501" />
+    <span id="t_1495" from="8502" to="8511" />
+    <span id="t_1496" from="8512" to="8517" />
+    <span id="t_1497" from="8518" to="8523" />
+    <span id="t_1498" from="8524" to="8529" />
+    <span id="t_1499" from="8530" to="8540" />
+    <span id="t_1500" from="8540" to="8541" />
+    <span id="t_1501" from="8542" to="8544" />
+    <span id="t_1502" from="8545" to="8555" />
+    <span id="t_1503" from="8556" to="8559" />
+    <span id="t_1504" from="8560" to="8565" />
+    <span id="t_1505" from="8566" to="8569" />
+    <span id="t_1506" from="8570" to="8580" />
+    <span id="t_1507" from="8581" to="8584" />
+    <span id="t_1508" from="8585" to="8592" />
+    <span id="t_1509" from="8592" to="8593" />
+    <span id="t_1510" from="8594" to="8597" />
+    <span id="t_1511" from="8598" to="8604" />
+    <span id="t_1512" from="8605" to="8608" />
+    <span id="t_1513" from="8609" to="8612" />
+    <span id="t_1514" from="8613" to="8621" />
+    <span id="t_1515" from="8622" to="8630" />
+    <span id="t_1516" from="8631" to="8638" />
+    <span id="t_1517" from="8638" to="8639" />
+    <span id="t_1518" from="8640" to="8643" />
+    <span id="t_1519" from="8644" to="8646" />
+    <span id="t_1520" from="8647" to="8658" />
+    <span id="t_1521" from="8659" to="8663" />
+    <span id="t_1522" from="8663" to="8664" />
+    <span id="t_1523" from="8665" to="8668" />
+    <span id="t_1524" from="8669" to="8680" />
+    <span id="t_1525" from="8681" to="8685" />
+    <span id="t_1526" from="8685" to="8686" />
+    <span id="t_1527" from="8687" to="8693" />
+    <span id="t_1528" from="8694" to="8697" />
+    <span id="t_1529" from="8698" to="8700" />
+    <span id="t_1530" from="8701" to="8706" />
+    <span id="t_1531" from="8707" to="8710" />
+    <span id="t_1532" from="8711" to="8714" />
+    <span id="t_1533" from="8715" to="8724" />
+    <span id="t_1534" from="8725" to="8728" />
+    <span id="t_1535" from="8729" to="8738" />
+    <span id="t_1536" from="8739" to="8745" />
+    <span id="t_1537" from="8745" to="8746" />
+    <span id="t_1538" from="8747" to="8751" />
+    <span id="t_1539" from="8752" to="8757" />
+    <span id="t_1540" from="8758" to="8761" />
+    <span id="t_1541" from="8762" to="8770" />
+    <span id="t_1542" from="8771" to="8775" />
+    <span id="t_1543" from="8776" to="8781" />
+    <span id="t_1544" from="8782" to="8788" />
+    <span id="t_1545" from="8789" to="8791" />
+    <span id="t_1546" from="8792" to="8799" />
+    <span id="t_1547" from="8800" to="8806" />
+    <span id="t_1548" from="8806" to="8807" />
+    <span id="t_1549" from="8808" to="8814" />
+    <span id="t_1550" from="8815" to="8818" />
+    <span id="t_1551" from="8819" to="8824" />
+    <span id="t_1552" from="8825" to="8828" />
+    <span id="t_1553" from="8829" to="8841" />
+    <span id="t_1554" from="8841" to="8842" />
+    <span id="t_1555" from="8843" to="8852" />
+    <span id="t_1556" from="8853" to="8857" />
+    <span id="t_1557" from="8858" to="8868" />
+    <span id="t_1558" from="8868" to="8869" />
+    <span id="t_1559" from="8870" to="8887" />
+    <span id="t_1560" from="8887" to="8888" />
+  </spanList>
+</layer>
\ No newline at end of file
diff --git a/t/annotation/corpus/doc/0002/data.xml b/t/annotation/corpus/doc/0002/data.xml
new file mode 100644
index 0000000..4d4781d
--- /dev/null
+++ b/t/annotation/corpus/doc/0002/data.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="text.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+
+<raw_text docid="Corpus_Doc.0002" xmlns="http://ids-mannheim.de/ns/KorAP">
+  <metadata file="metadata.xml" />
+  <text>Maximen und Reflexionen Religion und Christentum.  wir sind naturforschend Pantheisten, dichtend Polytheisten, sittlich Monotheisten. Gott, wenn wir hoch stehen, ist alles; stehen wir niedrig, so ist er ein Supplement unsrer Armseligkeit.</text>
+</raw_text>
diff --git a/t/annotation/corpus/doc/0002/header.xml b/t/annotation/corpus/doc/0002/header.xml
new file mode 100644
index 0000000..12c1e48
--- /dev/null
+++ b/t/annotation/corpus/doc/0002/header.xml
@@ -0,0 +1,54 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="header.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+<!DOCTYPE idsCorpus PUBLIC "-//IDS//DTD IDS-XCES 1.0//EN" "http://corpora.ids-mannheim.de/idsxces1/DTD/ids.xcesdoc.dtd">
+<idsHeader type="text" pattern="text" status="new" version="1.1" TEIform="teiHeader">
+        <fileDesc>
+          <titleStmt>
+            <textSigle>GOE/AGX.00002</textSigle>
+            <t.title assemblage="regular">GOE/AGX.00002 Goethe: Maximen und Reflexionen. Religion und Christentum, [Aphorismen], (Erstv. 1827-1842), In: Goethes Werke, Bd. 12. - München, 1982</t.title>
+          </titleStmt>
+          <publicationStmt>
+            <distributor/>
+            <pubAddress/>
+            <availability region="world">QAO-NC</availability>
+            <pubDate/>
+          </publicationStmt>
+          <sourceDesc>
+            <biblStruct>
+              <analytic>
+                <h.title type="main">Maximen und Reflexionen</h.title>
+                <h.title type="sub">Religion und Christentum</h.title>
+                <h.title type="abbr" level="m">Goethe, Werke; Maximen</h.title>
+                <h.title type="abbr" level="a">Goethe: Maximen und Reflexionen. Religion und Christentum, [Aphorismen], (Erstv. 1827-1842)</h.title>
+                <h.author>Goethe, Johann Wolfgang von</h.author>
+                <editor/>
+                <imprint/>
+                <biblScope type="subsume"/>
+                <biblScope type="pp">S. 372-377</biblScope>
+                <biblNote n="1">Zur Entstehungszeit siehe Bd. 12, Bibliographie, S. 798, aber auch Nachwort, S. 727 und 738</biblNote>
+              </analytic>
+              <monogr>
+                <h.title type="main"/>
+                <imprint/>
+              </monogr>
+            </biblStruct>
+            <reference type="complete" assemblage="regular">GOE/AGX.00002 Goethe, Johann Wolfgang von: Maximen und Reflexionen. Religion und Christentum, [Aphorismen], (Erstveröffentlichung: Stuttgart ; Tübingen, 1827-1842), In: Goethe, Johann Wolfgang von: Goethes Werke, Bd. 12, Schriften zur Kunst. Schriften zur Literatur. Maximen und Reflexionen, Hrsg.: Trunz, Erich. München: Verlag C. H. Beck, 1982, S. 372-377</reference>
+            <reference type="short" assemblage="regular">GOE/AGX.00002 Goethe, Werke; Maximen, (Erstv. 1827-1842), 1982, Bd. 12</reference>
+          </sourceDesc>
+        </fileDesc>
+        <encodingDesc>
+          <samplingDecl/>
+          <tagsDecl>
+            <tagUsage gi="pb" occurs="6"/>
+            <tagUsage gi="list" occurs="1"/>
+            <tagUsage gi="s" occurs="65"/>
+            <tagUsage gi="orig" occurs="4"/>
+          </tagsDecl>
+        </encodingDesc>
+        <profileDesc>
+          <textClass/>
+          <textDesc>
+            <textDomain/>
+          </textDesc>
+        </profileDesc>
+      </idsHeader>
\ No newline at end of file
diff --git a/t/annotation/corpus/doc/0002/malt/dependency.xml b/t/annotation/corpus/doc/0002/malt/dependency.xml
new file mode 100644
index 0000000..8e426c2
--- /dev/null
+++ b/t/annotation/corpus/doc/0002/malt/dependency.xml
@@ -0,0 +1,7711 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="span.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+<layer docid="GOE_AGX.00002" xmlns="http://ids-mannheim.de/ns/KorAP" version="KorAP-0.4">
+  <spanList>
+    <span id="s1_n1" from="0" to="7">
+      <rel label="ROOT">
+	<span from="0" to="49"/>
+      </rel>
+    </span>
+    <span id="s1_n2" from="8" to="11">
+      <rel label="KON">
+	<span from="0" to="7"/>
+      </rel>
+    </span>
+    <span id="s1_n3" from="12" to="23">
+      <rel label="CJ">
+	<span from="8" to="11"/>
+      </rel>
+    </span>
+    <span id="s1_n4" from="24" to="32">
+      <rel label="KON">
+	<span from="0" to="7"/>
+      </rel>
+    </span>
+    <span id="s1_n5" from="33" to="36">
+      <rel label="KON">
+	<span from="24" to="32"/>
+      </rel>
+    </span>
+    <span id="s1_n6" from="37" to="48">
+      <rel label="CJ">
+	<span from="33" to="36"/>
+      </rel>
+    </span>
+    <span id="s1_n7" from="48" to="49">
+      <rel label="-PUNCT-">
+	<span from="37" to="48"/>
+      </rel>
+    </span>
+    <span id="s2_n1" from="51" to="54">
+      <rel label="SUBJ">
+	<span from="55" to="59"/>
+      </rel>
+    </span>
+    <span id="s2_n2" from="55" to="59">
+      <rel label="ROOT">
+	<span from="51" to="133"/>
+      </rel>
+    </span>
+    <span id="s2_n3" from="60" to="74">
+      <rel label="ADV">
+	<span from="55" to="59"/>
+      </rel>
+    </span>
+    <span id="s2_n4" from="75" to="86">
+      <rel label="PRED">
+	<span from="55" to="59"/>
+      </rel>
+    </span>
+    <span id="s2_n5" from="86" to="87">
+      <rel label="-PUNCT-">
+	<span from="75" to="86"/>
+      </rel>
+    </span>
+    <span id="s2_n6" from="88" to="96">
+      <rel label="ATTR">
+	<span from="97" to="109"/>
+      </rel>
+    </span>
+    <span id="s2_n7" from="97" to="109">
+      <rel label="KON">
+	<span from="75" to="86"/>
+      </rel>
+    </span>
+    <span id="s2_n8" from="109" to="110">
+      <rel label="-PUNCT-">
+	<span from="97" to="109"/>
+      </rel>
+    </span>
+    <span id="s2_n9" from="111" to="119">
+      <rel label="ADV">
+	<span from="55" to="59"/>
+      </rel>
+    </span>
+    <span id="s2_n10" from="120" to="132">
+      <rel label="PRED">
+	<span from="55" to="59"/>
+      </rel>
+    </span>
+    <span id="s2_n11" from="132" to="133">
+      <rel label="-PUNCT-">
+	<span from="120" to="132"/>
+      </rel>
+    </span>
+    <span id="s3_n1" from="134" to="138">
+      <rel label="ROOT">
+	<span from="134" to="172"/>
+      </rel>
+    </span>
+    <span id="s3_n2" from="138" to="139">
+      <rel label="-PUNCT-">
+	<span from="134" to="138"/>
+      </rel>
+    </span>
+    <span id="s3_n3" from="140" to="144">
+      <rel label="KONJ">
+	<span from="154" to="160"/>
+      </rel>
+    </span>
+    <span id="s3_n4" from="145" to="148">
+      <rel label="SUBJ">
+	<span from="154" to="160"/>
+      </rel>
+    </span>
+    <span id="s3_n5" from="149" to="153">
+      <rel label="ADV">
+	<span from="154" to="160"/>
+      </rel>
+    </span>
+    <span id="s3_n6" from="154" to="160">
+      <rel label="OBJC">
+	<span from="134" to="138"/>
+      </rel>
+    </span>
+    <span id="s3_n7" from="160" to="161">
+      <rel label="-PUNCT-">
+	<span from="154" to="160"/>
+      </rel>
+    </span>
+    <span id="s3_n8" from="162" to="165">
+      <rel label="ROOT">
+	<span from="134" to="172"/>
+      </rel>
+    </span>
+    <span id="s3_n9" from="166" to="171">
+      <rel label="SUBJ">
+	<span from="162" to="165"/>
+      </rel>
+    </span>
+    <span id="s3_n10" from="171" to="172">
+      <rel label="-PUNCT-">
+	<span from="166" to="171"/>
+      </rel>
+    </span>
+    <span id="s4_n1" from="173" to="179">
+      <rel label="ROOT">
+	<span from="173" to="238"/>
+      </rel>
+    </span>
+    <span id="s4_n2" from="180" to="183">
+      <rel label="SUBJ">
+	<span from="173" to="179"/>
+      </rel>
+    </span>
+    <span id="s4_n3" from="184" to="191">
+      <rel label="ADV">
+	<span from="173" to="179"/>
+      </rel>
+    </span>
+    <span id="s4_n4" from="191" to="192">
+      <rel label="-PUNCT-">
+	<span from="184" to="191"/>
+      </rel>
+    </span>
+    <span id="s4_n5" from="193" to="195">
+      <rel label="ADV">
+	<span from="196" to="199"/>
+      </rel>
+    </span>
+    <span id="s4_n6" from="196" to="199">
+      <rel label="KON">
+	<span from="173" to="179"/>
+      </rel>
+    </span>
+    <span id="s4_n7" from="200" to="202">
+      <rel label="SUBJ">
+	<span from="196" to="199"/>
+      </rel>
+    </span>
+    <span id="s4_n8" from="203" to="206">
+      <rel label="DET">
+	<span from="207" to="217"/>
+      </rel>
+    </span>
+    <span id="s4_n9" from="207" to="217">
+      <rel label="PRED">
+	<span from="196" to="199"/>
+      </rel>
+    </span>
+    <span id="s4_n10" from="218" to="224">
+      <rel label="DET">
+	<span from="225" to="237"/>
+      </rel>
+    </span>
+    <span id="s4_n11" from="225" to="237">
+      <rel label="GMOD">
+	<span from="207" to="217"/>
+      </rel>
+    </span>
+    <span id="s4_n12" from="237" to="238">
+      <rel label="-PUNCT-">
+	<span from="225" to="237"/>
+      </rel>
+    </span>
+    <span id="s5_n1" from="239" to="242">
+      <rel label="DET">
+	<span from="243" to="250"/>
+      </rel>
+    </span>
+    <span id="s5_n2" from="243" to="250">
+      <rel label="SUBJ">
+	<span from="251" to="254"/>
+      </rel>
+    </span>
+    <span id="s5_n3" from="251" to="254">
+      <rel label="ROOT">
+	<span from="239" to="268"/>
+      </rel>
+    </span>
+    <span id="s5_n4" from="255" to="259">
+      <rel label="ADV">
+	<span from="260" to="267"/>
+      </rel>
+    </span>
+    <span id="s5_n5" from="260" to="267">
+      <rel label="PRED">
+	<span from="251" to="254"/>
+      </rel>
+    </span>
+    <span id="s5_n6" from="267" to="268">
+      <rel label="-PUNCT-">
+	<span from="260" to="267"/>
+      </rel>
+    </span>
+    <span id="s6_n1" from="269" to="273">
+      <rel label="ROOT">
+	<span from="269" to="310"/>
+      </rel>
+    </span>
+    <span id="s6_n2" from="274" to="279">
+      <rel label="CJ">
+	<span from="269" to="273"/>
+      </rel>
+    </span>
+    <span id="s6_n3" from="280" to="283">
+      <rel label="OBJA">
+	<span from="274" to="279"/>
+      </rel>
+    </span>
+    <span id="s6_n4" from="284" to="289">
+      <rel label="ADV">
+	<span from="274" to="279"/>
+      </rel>
+    </span>
+    <span id="s6_n5" from="289" to="290">
+      <rel label="-PUNCT-">
+	<span from="284" to="289"/>
+      </rel>
+    </span>
+    <span id="s6_n6" from="291" to="297">
+      <rel label="ROOT">
+	<span from="269" to="310"/>
+      </rel>
+    </span>
+    <span id="s6_n7" from="298" to="303">
+      <rel label="SUBJ">
+	<span from="291" to="297"/>
+      </rel>
+    </span>
+    <span id="s6_n8" from="304" to="309">
+      <rel label="ADV">
+	<span from="291" to="297"/>
+      </rel>
+    </span>
+    <span id="s6_n9" from="309" to="310">
+      <rel label="-PUNCT-">
+	<span from="304" to="309"/>
+      </rel>
+    </span>
+    <span id="s7_n1" from="311" to="316">
+      <rel label="ROOT">
+	<span from="311" to="331"/>
+      </rel>
+    </span>
+    <span id="s7_n2" from="317" to="321">
+      <rel label="ROOT">
+	<span from="311" to="331"/>
+      </rel>
+    </span>
+    <span id="s7_n3" from="322" to="325">
+      <rel label="CJ">
+	<span from="317" to="321"/>
+      </rel>
+    </span>
+    <span id="s7_n4" from="326" to="330">
+      <rel label="PRED">
+	<span from="322" to="325"/>
+      </rel>
+    </span>
+    <span id="s7_n5" from="330" to="331">
+      <rel label="-PUNCT-">
+	<span from="326" to="330"/>
+      </rel>
+    </span>
+    <span id="s8_n1" from="332" to="336">
+      <rel label="ROOT">
+	<span from="332" to="395"/>
+      </rel>
+    </span>
+    <span id="s8_n2" from="337" to="342">
+      <rel label="CJ">
+	<span from="332" to="336"/>
+      </rel>
+    </span>
+    <span id="s8_n3" from="343" to="345">
+      <rel label="SUBJ">
+	<span from="337" to="342"/>
+      </rel>
+    </span>
+    <span id="s8_n4" from="346" to="349">
+      <rel label="DET">
+	<span from="350" to="357"/>
+      </rel>
+    </span>
+    <span id="s8_n5" from="350" to="357">
+      <rel label="OBJA">
+	<span from="337" to="342"/>
+      </rel>
+    </span>
+    <span id="s8_n6" from="357" to="358">
+      <rel label="-PUNCT-">
+	<span from="350" to="357"/>
+      </rel>
+    </span>
+    <span id="s8_n7" from="359" to="361">
+      <rel label="ADV">
+	<span from="362" to="365"/>
+      </rel>
+    </span>
+    <span id="s8_n8" from="362" to="365">
+      <rel label="ROOT">
+	<span from="332" to="395"/>
+      </rel>
+    </span>
+    <span id="s8_n9" from="366" to="368">
+      <rel label="SUBJ">
+	<span from="362" to="365"/>
+      </rel>
+    </span>
+    <span id="s8_n10" from="369" to="372">
+      <rel label="ROOT">
+	<span from="332" to="395"/>
+      </rel>
+    </span>
+    <span id="s8_n11" from="373" to="379">
+      <rel label="ROOT">
+	<span from="332" to="395"/>
+      </rel>
+    </span>
+    <span id="s8_n12" from="380" to="382">
+      <rel label="ROOT">
+	<span from="332" to="395"/>
+      </rel>
+    </span>
+    <span id="s8_n13" from="383" to="389">
+      <rel label="DET">
+	<span from="390" to="394"/>
+      </rel>
+    </span>
+    <span id="s8_n14" from="390" to="394">
+      <rel label="PN">
+	<span from="380" to="382"/>
+      </rel>
+    </span>
+    <span id="s8_n15" from="394" to="395">
+      <rel label="-PUNCT-">
+	<span from="390" to="394"/>
+      </rel>
+    </span>
+    <span id="s9_n1" from="396" to="398">
+      <rel label="SUBJ">
+	<span from="399" to="403"/>
+      </rel>
+    </span>
+    <span id="s9_n2" from="399" to="403">
+      <rel label="ROOT">
+	<span from="396" to="560"/>
+      </rel>
+    </span>
+    <span id="s9_n3" from="404" to="407">
+      <rel label="ADV">
+	<span from="399" to="403"/>
+      </rel>
+    </span>
+    <span id="s9_n4" from="408" to="412">
+      <rel label="ATTR">
+	<span from="419" to="429"/>
+      </rel>
+    </span>
+    <span id="s9_n5" from="413" to="418">
+      <rel label="ATTR">
+	<span from="419" to="429"/>
+      </rel>
+    </span>
+    <span id="s9_n6" from="419" to="429">
+      <rel label="OBJA">
+	<span from="399" to="403"/>
+      </rel>
+    </span>
+    <span id="s9_n7" from="429" to="430">
+      <rel label="-PUNCT-">
+	<span from="419" to="429"/>
+      </rel>
+    </span>
+    <span id="s9_n8" from="431" to="434">
+      <rel label="ROOT">
+	<span from="396" to="560"/>
+      </rel>
+    </span>
+    <span id="s9_n9" from="435" to="439">
+      <rel label="ROOT">
+	<span from="396" to="560"/>
+      </rel>
+    </span>
+    <span id="s9_n10" from="439" to="440">
+      <rel label="-PUNCT-">
+	<span from="435" to="439"/>
+      </rel>
+    </span>
+    <span id="s9_n11" from="441" to="444">
+      <rel label="ROOT">
+	<span from="396" to="560"/>
+      </rel>
+    </span>
+    <span id="s9_n12" from="445" to="448">
+      <rel label="DET">
+	<span from="449" to="456"/>
+      </rel>
+    </span>
+    <span id="s9_n13" from="449" to="456">
+      <rel label="ROOT">
+	<span from="396" to="560"/>
+      </rel>
+    </span>
+    <span id="s9_n14" from="456" to="457">
+      <rel label="-PUNCT-">
+	<span from="449" to="456"/>
+      </rel>
+    </span>
+    <span id="s9_n15" from="458" to="461">
+      <rel label="ROOT">
+	<span from="396" to="560"/>
+      </rel>
+    </span>
+    <span id="s9_n16" from="462" to="464">
+      <rel label="ROOT">
+	<span from="396" to="560"/>
+      </rel>
+    </span>
+    <span id="s9_n17" from="465" to="468">
+      <rel label="ROOT">
+	<span from="396" to="560"/>
+      </rel>
+    </span>
+    <span id="s9_n18" from="469" to="471">
+      <rel label="OBJP">
+	<span from="476" to="481"/>
+      </rel>
+    </span>
+    <span id="s9_n19" from="472" to="475">
+      <rel label="PN">
+	<span from="469" to="471"/>
+      </rel>
+    </span>
+    <span id="s9_n20" from="476" to="481">
+      <rel label="CJ">
+	<span from="465" to="468"/>
+      </rel>
+    </span>
+    <span id="s9_n21" from="481" to="482">
+      <rel label="-PUNCT-">
+	<span from="476" to="481"/>
+      </rel>
+    </span>
+    <span id="s9_n22" from="483" to="487">
+      <rel label="ADV">
+	<span from="488" to="495"/>
+      </rel>
+    </span>
+    <span id="s9_n23" from="488" to="495">
+      <rel label="ADV">
+	<span from="538" to="547"/>
+      </rel>
+    </span>
+    <span id="s9_n24" from="495" to="496">
+      <rel label="-PUNCT-">
+	<span from="488" to="495"/>
+      </rel>
+    </span>
+    <span id="s9_n25" from="497" to="500">
+      <rel label="OBJA">
+	<span from="538" to="547"/>
+      </rel>
+    </span>
+    <span id="s9_n26" from="501" to="507">
+      <rel label="SUBJ">
+	<span from="538" to="547"/>
+      </rel>
+    </span>
+    <span id="s9_n27" from="507" to="508">
+      <rel label="-PUNCT-">
+	<span from="501" to="507"/>
+      </rel>
+    </span>
+    <span id="s9_n28" from="509" to="512">
+      <rel label="OBJA">
+	<span from="538" to="547"/>
+      </rel>
+    </span>
+    <span id="s9_n29" from="513" to="515">
+      <rel label="SUBJ">
+	<span from="538" to="547"/>
+      </rel>
+    </span>
+    <span id="s9_n30" from="516" to="518">
+      <rel label="PP">
+	<span from="538" to="547"/>
+      </rel>
+    </span>
+    <span id="s9_n31" from="519" to="522">
+      <rel label="DET">
+	<span from="533" to="537"/>
+      </rel>
+    </span>
+    <span id="s9_n32" from="523" to="532">
+      <rel label="ATTR">
+	<span from="533" to="537"/>
+      </rel>
+    </span>
+    <span id="s9_n33" from="533" to="537">
+      <rel label="PN">
+	<span from="516" to="518"/>
+      </rel>
+    </span>
+    <span id="s9_n34" from="538" to="547">
+      <rel label="ROOT">
+	<span from="396" to="560"/>
+      </rel>
+    </span>
+    <span id="s9_n35" from="548" to="551">
+      <rel label="KON">
+	<span from="538" to="547"/>
+      </rel>
+    </span>
+    <span id="s9_n36" from="552" to="559">
+      <rel label="CJ">
+	<span from="548" to="551"/>
+      </rel>
+    </span>
+    <span id="s9_n37" from="559" to="560">
+      <rel label="-PUNCT-">
+	<span from="552" to="559"/>
+      </rel>
+    </span>
+    <span id="s10_n1" from="561" to="566">
+      <rel label="SUBJ">
+	<span from="590" to="593"/>
+      </rel>
+    </span>
+    <span id="s10_n2" from="566" to="567">
+      <rel label="-PUNCT-">
+	<span from="561" to="566"/>
+      </rel>
+    </span>
+    <span id="s10_n3" from="568" to="571">
+      <rel label="SUBJ">
+	<span from="583" to="588"/>
+      </rel>
+    </span>
+    <span id="s10_n4" from="572" to="582">
+      <rel label="OBJP">
+	<span from="583" to="588"/>
+      </rel>
+    </span>
+    <span id="s10_n5" from="583" to="588">
+      <rel label="REL">
+	<span from="561" to="566"/>
+      </rel>
+    </span>
+    <span id="s10_n6" from="588" to="589">
+      <rel label="-PUNCT-">
+	<span from="583" to="588"/>
+      </rel>
+    </span>
+    <span id="s10_n7" from="590" to="593">
+      <rel label="ROOT">
+	<span from="561" to="607"/>
+      </rel>
+    </span>
+    <span id="s10_n8" from="594" to="606">
+      <rel label="PRED">
+	<span from="590" to="593"/>
+      </rel>
+    </span>
+    <span id="s10_n9" from="606" to="607">
+      <rel label="-PUNCT-">
+	<span from="594" to="606"/>
+      </rel>
+    </span>
+    <span id="s11_n1" from="608" to="610">
+      <rel label="SUBJ">
+	<span from="611" to="614"/>
+      </rel>
+    </span>
+    <span id="s11_n2" from="611" to="614">
+      <rel label="ROOT">
+	<span from="608" to="665"/>
+      </rel>
+    </span>
+    <span id="s11_n3" from="615" to="620">
+      <rel label="ADV">
+	<span from="611" to="614"/>
+      </rel>
+    </span>
+    <span id="s11_n4" from="621" to="626">
+      <rel label="ADV">
+	<span from="627" to="632"/>
+      </rel>
+    </span>
+    <span id="s11_n5" from="627" to="632">
+      <rel label="PRED">
+	<span from="611" to="614"/>
+      </rel>
+    </span>
+    <span id="s11_n6" from="632" to="633">
+      <rel label="-PUNCT-">
+	<span from="627" to="632"/>
+      </rel>
+    </span>
+    <span id="s11_n7" from="634" to="637">
+      <rel label="KONJ">
+	<span from="653" to="664"/>
+      </rel>
+    </span>
+    <span id="s11_n8" from="638" to="641">
+      <rel label="DET">
+	<span from="642" to="647"/>
+      </rel>
+    </span>
+    <span id="s11_n9" from="642" to="647">
+      <rel label="SUBJ">
+	<span from="653" to="664"/>
+      </rel>
+    </span>
+    <span id="s11_n10" from="648" to="652">
+      <rel label="OBJA">
+	<span from="653" to="664"/>
+      </rel>
+    </span>
+    <span id="s11_n11" from="653" to="664">
+      <rel label="NEB">
+	<span from="611" to="614"/>
+      </rel>
+    </span>
+    <span id="s11_n12" from="664" to="665">
+      <rel label="-PUNCT-">
+	<span from="653" to="664"/>
+      </rel>
+    </span>
+    <span id="s12_n1" from="666" to="671">
+      <rel label="ADV">
+	<span from="672" to="677"/>
+      </rel>
+    </span>
+    <span id="s12_n2" from="672" to="677">
+      <rel label="ROOT">
+	<span from="666" to="798"/>
+      </rel>
+    </span>
+    <span id="s12_n3" from="677" to="678">
+      <rel label="-PUNCT-">
+	<span from="672" to="677"/>
+      </rel>
+    </span>
+    <span id="s12_n4" from="679" to="683">
+      <rel label="KONJ">
+	<span from="695" to="707"/>
+      </rel>
+    </span>
+    <span id="s12_n5" from="684" to="686">
+      <rel label="SUBJ">
+	<span from="695" to="707"/>
+      </rel>
+    </span>
+    <span id="s12_n6" from="687" to="694">
+      <rel label="ADV">
+	<span from="695" to="707"/>
+      </rel>
+    </span>
+    <span id="s12_n7" from="695" to="707">
+      <rel label="-UNKNOWN-">
+	<span from="672" to="677"/>
+      </rel>
+    </span>
+    <span id="s12_n8" from="708" to="711">
+      <rel label="KON">
+	<span from="695" to="707"/>
+      </rel>
+    </span>
+    <span id="s12_n9" from="712" to="727">
+      <rel label="OBJA">
+	<span from="728" to="735"/>
+      </rel>
+    </span>
+    <span id="s12_n10" from="728" to="735">
+      <rel label="CJ">
+	<span from="708" to="711"/>
+      </rel>
+    </span>
+    <span id="s12_n11" from="735" to="736">
+      <rel label="-PUNCT-">
+	<span from="728" to="735"/>
+      </rel>
+    </span>
+    <span id="s12_n12" from="737" to="741">
+      <rel label="KONJ">
+	<span from="793" to="797"/>
+      </rel>
+    </span>
+    <span id="s12_n13" from="742" to="744">
+      <rel label="SUBJ">
+	<span from="793" to="797"/>
+      </rel>
+    </span>
+    <span id="s12_n14" from="745" to="748">
+      <rel label="KOM">
+	<span from="793" to="797"/>
+      </rel>
+    </span>
+    <span id="s12_n15" from="749" to="759">
+      <rel label="CJ">
+	<span from="745" to="748"/>
+      </rel>
+    </span>
+    <span id="s12_n16" from="760" to="776">
+      <rel label="ADV">
+	<span from="793" to="797"/>
+      </rel>
+    </span>
+    <span id="s12_n17" from="777" to="782">
+      <rel label="PP">
+	<span from="793" to="797"/>
+      </rel>
+    </span>
+    <span id="s12_n18" from="783" to="786">
+      <rel label="DET">
+	<span from="787" to="792"/>
+      </rel>
+    </span>
+    <span id="s12_n19" from="787" to="792">
+      <rel label="PN">
+	<span from="777" to="782"/>
+      </rel>
+    </span>
+    <span id="s12_n20" from="793" to="797">
+      <rel label="NEB">
+	<span from="695" to="707"/>
+      </rel>
+    </span>
+    <span id="s12_n21" from="797" to="798">
+      <rel label="-PUNCT-">
+	<span from="793" to="797"/>
+      </rel>
+    </span>
+    <span id="s13_n1" from="799" to="810">
+      <rel label="SUBJ">
+	<span from="811" to="814"/>
+      </rel>
+    </span>
+    <span id="s13_n2" from="811" to="814">
+      <rel label="ROOT">
+	<span from="799" to="911"/>
+      </rel>
+    </span>
+    <span id="s13_n3" from="815" to="819">
+      <rel label="DET">
+	<span from="820" to="825"/>
+      </rel>
+    </span>
+    <span id="s13_n4" from="820" to="825">
+      <rel label="PRED">
+	<span from="811" to="814"/>
+      </rel>
+    </span>
+    <span id="s13_n5" from="825" to="826">
+      <rel label="-PUNCT-">
+	<span from="820" to="825"/>
+      </rel>
+    </span>
+    <span id="s13_n6" from="827" to="834">
+      <rel label="KON">
+	<span from="820" to="825"/>
+      </rel>
+    </span>
+    <span id="s13_n7" from="835" to="838">
+      <rel label="DET">
+	<span from="839" to="845"/>
+      </rel>
+    </span>
+    <span id="s13_n8" from="839" to="845">
+      <rel label="CJ">
+	<span from="827" to="834"/>
+      </rel>
+    </span>
+    <span id="s13_n9" from="845" to="846">
+      <rel label="-PUNCT-">
+	<span from="839" to="845"/>
+      </rel>
+    </span>
+    <span id="s13_n10" from="847" to="849">
+      <rel label="KONJ">
+	<span from="902" to="910"/>
+      </rel>
+    </span>
+    <span id="s13_n11" from="850" to="855">
+      <rel label="OBJP">
+	<span from="902" to="910"/>
+      </rel>
+    </span>
+    <span id="s13_n12" from="856" to="859">
+      <rel label="DET">
+	<span from="868" to="878"/>
+      </rel>
+    </span>
+    <span id="s13_n13" from="860" to="867">
+      <rel label="ATTR">
+	<span from="868" to="878"/>
+      </rel>
+    </span>
+    <span id="s13_n14" from="868" to="878">
+      <rel label="PN">
+	<span from="850" to="855"/>
+      </rel>
+    </span>
+    <span id="s13_n15" from="879" to="882">
+      <rel label="PP">
+	<span from="868" to="878"/>
+      </rel>
+    </span>
+    <span id="s13_n16" from="883" to="891">
+      <rel label="ATTR">
+	<span from="892" to="898"/>
+      </rel>
+    </span>
+    <span id="s13_n17" from="892" to="898">
+      <rel label="PN">
+	<span from="879" to="882"/>
+      </rel>
+    </span>
+    <span id="s13_n18" from="899" to="901">
+      <rel label="PART">
+	<span from="902" to="910"/>
+      </rel>
+    </span>
+    <span id="s13_n19" from="902" to="910">
+      <rel label="NEB">
+	<span from="839" to="845"/>
+      </rel>
+    </span>
+    <span id="s13_n20" from="910" to="911">
+      <rel label="-PUNCT-">
+	<span from="902" to="910"/>
+      </rel>
+    </span>
+    <span id="s14_n1" from="912" to="920">
+      <rel label="SUBJ">
+	<span from="921" to="925"/>
+      </rel>
+    </span>
+    <span id="s14_n2" from="921" to="925">
+      <rel label="ROOT">
+	<span from="912" to="1029"/>
+      </rel>
+    </span>
+    <span id="s14_n3" from="926" to="930">
+      <rel label="OBJA">
+	<span from="931" to="939"/>
+      </rel>
+    </span>
+    <span id="s14_n4" from="931" to="939">
+      <rel label="OBJI">
+	<span from="921" to="925"/>
+      </rel>
+    </span>
+    <span id="s14_n5" from="939" to="940">
+      <rel label="-PUNCT-">
+	<span from="931" to="939"/>
+      </rel>
+    </span>
+    <span id="s14_n6" from="941" to="944">
+      <rel label="ROOT">
+	<span from="912" to="1029"/>
+      </rel>
+    </span>
+    <span id="s14_n7" from="945" to="955">
+      <rel label="ROOT">
+	<span from="912" to="1029"/>
+      </rel>
+    </span>
+    <span id="s14_n8" from="955" to="956">
+      <rel label="-PUNCT-">
+	<span from="945" to="955"/>
+      </rel>
+    </span>
+    <span id="s14_n9" from="957" to="963">
+      <rel label="SUBJ">
+	<span from="995" to="1005"/>
+      </rel>
+    </span>
+    <span id="s14_n10" from="964" to="975">
+      <rel label="OBJA">
+	<span from="995" to="1005"/>
+      </rel>
+    </span>
+    <span id="s14_n11" from="976" to="979">
+      <rel label="KOM">
+	<span from="995" to="1005"/>
+      </rel>
+    </span>
+    <span id="s14_n12" from="980" to="985">
+      <rel label="CJ">
+	<span from="976" to="979"/>
+      </rel>
+    </span>
+    <span id="s14_n13" from="986" to="989">
+      <rel label="KON">
+	<span from="980" to="985"/>
+      </rel>
+    </span>
+    <span id="s14_n14" from="990" to="994">
+      <rel label="CJ">
+	<span from="986" to="989"/>
+      </rel>
+    </span>
+    <span id="s14_n15" from="995" to="1005">
+      <rel label="REL">
+	<span from="945" to="955"/>
+      </rel>
+    </span>
+    <span id="s14_n16" from="1005" to="1006">
+      <rel label="-PUNCT-">
+	<span from="995" to="1005"/>
+      </rel>
+    </span>
+    <span id="s14_n17" from="1007" to="1012">
+      <rel label="ADV">
+	<span from="1022" to="1028"/>
+      </rel>
+    </span>
+    <span id="s14_n18" from="1013" to="1021">
+      <rel label="PRED">
+	<span from="1022" to="1028"/>
+      </rel>
+    </span>
+    <span id="s14_n19" from="1022" to="1028">
+      <rel label="KON">
+	<span from="995" to="1005"/>
+      </rel>
+    </span>
+    <span id="s14_n20" from="1028" to="1029">
+      <rel label="-PUNCT-">
+	<span from="1022" to="1028"/>
+      </rel>
+    </span>
+    <span id="s15_n1" from="1030" to="1036">
+      <rel label="ROOT">
+	<span from="1030" to="1136"/>
+      </rel>
+    </span>
+    <span id="s15_n2" from="1036" to="1037">
+      <rel label="-PUNCT-">
+	<span from="1030" to="1036"/>
+      </rel>
+    </span>
+    <span id="s15_n3" from="1038" to="1043">
+      <rel label="ROOT">
+	<span from="1030" to="1136"/>
+      </rel>
+    </span>
+    <span id="s15_n4" from="1043" to="1044">
+      <rel label="-PUNCT-">
+	<span from="1038" to="1043"/>
+      </rel>
+    </span>
+    <span id="s15_n5" from="1045" to="1053">
+      <rel label="SUBJ">
+	<span from="1054" to="1061"/>
+      </rel>
+    </span>
+    <span id="s15_n6" from="1054" to="1061">
+      <rel label="ROOT">
+	<span from="1030" to="1136"/>
+      </rel>
+    </span>
+    <span id="s15_n7" from="1062" to="1067">
+      <rel label="ADV">
+	<span from="1054" to="1061"/>
+      </rel>
+    </span>
+    <span id="s15_n8" from="1068" to="1070">
+      <rel label="PP">
+	<span from="1054" to="1061"/>
+      </rel>
+    </span>
+    <span id="s15_n9" from="1071" to="1078">
+      <rel label="ATTR">
+	<span from="1090" to="1096"/>
+      </rel>
+    </span>
+    <span id="s15_n10" from="1079" to="1089">
+      <rel label="ATTR">
+	<span from="1090" to="1096"/>
+      </rel>
+    </span>
+    <span id="s15_n11" from="1090" to="1096">
+      <rel label="PN">
+	<span from="1068" to="1070"/>
+      </rel>
+    </span>
+    <span id="s15_n12" from="1097" to="1102">
+      <rel label="DET">
+	<span from="1115" to="1120"/>
+      </rel>
+    </span>
+    <span id="s15_n13" from="1103" to="1114">
+      <rel label="ATTR">
+	<span from="1115" to="1120"/>
+      </rel>
+    </span>
+    <span id="s15_n14" from="1115" to="1120">
+      <rel label="GMOD">
+	<span from="1090" to="1096"/>
+      </rel>
+    </span>
+    <span id="s15_n15" from="1121" to="1123">
+      <rel label="PP">
+	<span from="1054" to="1061"/>
+      </rel>
+    </span>
+    <span id="s15_n16" from="1124" to="1129">
+      <rel label="DET">
+	<span from="1130" to="1135"/>
+      </rel>
+    </span>
+    <span id="s15_n17" from="1130" to="1135">
+      <rel label="PN">
+	<span from="1121" to="1123"/>
+      </rel>
+    </span>
+    <span id="s15_n18" from="1135" to="1136">
+      <rel label="-PUNCT-">
+	<span from="1130" to="1135"/>
+      </rel>
+    </span>
+    <span id="s16_n1" from="1137" to="1140">
+      <rel label="SUBJ">
+	<span from="1141" to="1153"/>
+      </rel>
+    </span>
+    <span id="s16_n2" from="1141" to="1153">
+      <rel label="ROOT">
+	<span from="1137" to="1232"/>
+      </rel>
+    </span>
+    <span id="s16_n3" from="1154" to="1158">
+      <rel label="OBJA">
+	<span from="1141" to="1153"/>
+      </rel>
+    </span>
+    <span id="s16_n4" from="1159" to="1167">
+      <rel label="ADV">
+	<span from="1141" to="1153"/>
+      </rel>
+    </span>
+    <span id="s16_n5" from="1168" to="1171">
+      <rel label="KON">
+	<span from="1141" to="1153"/>
+      </rel>
+    </span>
+    <span id="s16_n6" from="1172" to="1179">
+      <rel label="CJ">
+	<span from="1168" to="1171"/>
+      </rel>
+    </span>
+    <span id="s16_n7" from="1180" to="1183">
+      <rel label="DET">
+	<span from="1195" to="1201"/>
+      </rel>
+    </span>
+    <span id="s16_n8" from="1184" to="1194">
+      <rel label="ATTR">
+	<span from="1195" to="1201"/>
+      </rel>
+    </span>
+    <span id="s16_n9" from="1195" to="1201">
+      <rel label="OBJA">
+	<span from="1172" to="1179"/>
+      </rel>
+    </span>
+    <span id="s16_n10" from="1201" to="1202">
+      <rel label="-PUNCT-">
+	<span from="1195" to="1201"/>
+      </rel>
+    </span>
+    <span id="s16_n11" from="1203" to="1207">
+      <rel label="DET">
+	<span from="1208" to="1215"/>
+      </rel>
+    </span>
+    <span id="s16_n12" from="1208" to="1215">
+      <rel label="OBJD">
+	<span from="1226" to="1231"/>
+      </rel>
+    </span>
+    <span id="s16_n13" from="1216" to="1218">
+      <rel label="PP">
+	<span from="1226" to="1231"/>
+      </rel>
+    </span>
+    <span id="s16_n14" from="1219" to="1225">
+      <rel label="PN">
+	<span from="1216" to="1218"/>
+      </rel>
+    </span>
+    <span id="s16_n15" from="1226" to="1231">
+      <rel label="ROOT">
+	<span from="1137" to="1232"/>
+      </rel>
+    </span>
+    <span id="s16_n16" from="1231" to="1232">
+      <rel label="-PUNCT-">
+	<span from="1226" to="1231"/>
+      </rel>
+    </span>
+    <span id="s17_n1" from="1233" to="1236">
+      <rel label="DET">
+	<span from="1237" to="1243"/>
+      </rel>
+    </span>
+    <span id="s17_n2" from="1237" to="1243">
+      <rel label="ROOT">
+	<span from="1233" to="1244"/>
+      </rel>
+    </span>
+    <span id="s17_n3" from="1243" to="1244">
+      <rel label="-PUNCT-">
+	<span from="1237" to="1243"/>
+      </rel>
+    </span>
+    <span id="s18_n1" from="1245" to="1251">
+      <rel label="ADV">
+	<span from="1252" to="1265"/>
+      </rel>
+    </span>
+    <span id="s18_n2" from="1252" to="1265">
+      <rel label="PRED">
+	<span from="1266" to="1272"/>
+      </rel>
+    </span>
+    <span id="s18_n3" from="1266" to="1272">
+      <rel label="ROOT">
+	<span from="1245" to="1385"/>
+      </rel>
+    </span>
+    <span id="s18_n4" from="1273" to="1275">
+      <rel label="SUBJ">
+	<span from="1266" to="1272"/>
+      </rel>
+    </span>
+    <span id="s18_n5" from="1276" to="1281">
+      <rel label="ADV">
+	<span from="1266" to="1272"/>
+      </rel>
+    </span>
+    <span id="s18_n6" from="1281" to="1282">
+      <rel label="-PUNCT-">
+	<span from="1276" to="1281"/>
+      </rel>
+    </span>
+    <span id="s18_n7" from="1283" to="1286">
+      <rel label="ROOT">
+	<span from="1245" to="1385"/>
+      </rel>
+    </span>
+    <span id="s18_n8" from="1287" to="1295">
+      <rel label="ROOT">
+	<span from="1245" to="1385"/>
+      </rel>
+    </span>
+    <span id="s18_n9" from="1295" to="1296">
+      <rel label="-PUNCT-">
+	<span from="1287" to="1295"/>
+      </rel>
+    </span>
+    <span id="s18_n10" from="1297" to="1302">
+      <rel label="DET">
+	<span from="1303" to="1317"/>
+      </rel>
+    </span>
+    <span id="s18_n11" from="1303" to="1317">
+      <rel label="SUBJ">
+	<span from="1333" to="1336"/>
+      </rel>
+    </span>
+    <span id="s18_n12" from="1318" to="1322">
+      <rel label="ADV">
+	<span from="1328" to="1332"/>
+      </rel>
+    </span>
+    <span id="s18_n13" from="1323" to="1327">
+      <rel label="ADV">
+	<span from="1328" to="1332"/>
+      </rel>
+    </span>
+    <span id="s18_n14" from="1328" to="1332">
+      <rel label="PRED">
+	<span from="1333" to="1336"/>
+      </rel>
+    </span>
+    <span id="s18_n15" from="1333" to="1336">
+      <rel label="REL">
+	<span from="1287" to="1295"/>
+      </rel>
+    </span>
+    <span id="s18_n16" from="1336" to="1337">
+      <rel label="-PUNCT-">
+	<span from="1333" to="1336"/>
+      </rel>
+    </span>
+    <span id="s18_n17" from="1338" to="1342">
+      <rel label="OBJA">
+	<span from="1377" to="1384"/>
+      </rel>
+    </span>
+    <span id="s18_n18" from="1343" to="1345">
+      <rel label="ADV">
+	<span from="1354" to="1357"/>
+      </rel>
+    </span>
+    <span id="s18_n19" from="1346" to="1353">
+      <rel label="ADV">
+	<span from="1354" to="1357"/>
+      </rel>
+    </span>
+    <span id="s18_n20" from="1354" to="1357">
+      <rel label="PP">
+	<span from="1377" to="1384"/>
+      </rel>
+    </span>
+    <span id="s18_n21" from="1358" to="1361">
+      <rel label="DET">
+	<span from="1362" to="1376"/>
+      </rel>
+    </span>
+    <span id="s18_n22" from="1362" to="1376">
+      <rel label="PN">
+	<span from="1354" to="1357"/>
+      </rel>
+    </span>
+    <span id="s18_n23" from="1377" to="1384">
+      <rel label="ROOT">
+	<span from="1245" to="1385"/>
+      </rel>
+    </span>
+    <span id="s18_n24" from="1384" to="1385">
+      <rel label="-PUNCT-">
+	<span from="1377" to="1384"/>
+      </rel>
+    </span>
+    <span id="s19_n1" from="1386" to="1388">
+      <rel label="ADV">
+	<span from="1389" to="1392"/>
+      </rel>
+    </span>
+    <span id="s19_n2" from="1389" to="1392">
+      <rel label="ROOT">
+	<span from="1386" to="1480"/>
+      </rel>
+    </span>
+    <span id="s19_n3" from="1393" to="1399">
+      <rel label="SUBJ">
+	<span from="1389" to="1392"/>
+      </rel>
+    </span>
+    <span id="s19_n4" from="1399" to="1400">
+      <rel label="-PUNCT-">
+	<span from="1393" to="1399"/>
+      </rel>
+    </span>
+    <span id="s19_n5" from="1401" to="1404">
+      <rel label="OBJD">
+	<span from="1421" to="1427"/>
+      </rel>
+    </span>
+    <span id="s19_n6" from="1405" to="1407">
+      <rel label="SUBJ">
+	<span from="1421" to="1427"/>
+      </rel>
+    </span>
+    <span id="s19_n7" from="1408" to="1420">
+      <rel label="ADV">
+	<span from="1421" to="1427"/>
+      </rel>
+    </span>
+    <span id="s19_n8" from="1421" to="1427">
+      <rel label="REL">
+	<span from="1393" to="1399"/>
+      </rel>
+    </span>
+    <span id="s19_n9" from="1427" to="1428">
+      <rel label="-PUNCT-">
+	<span from="1421" to="1427"/>
+      </rel>
+    </span>
+    <span id="s19_n10" from="1429" to="1433">
+      <rel label="KONJ">
+	<span from="1474" to="1479"/>
+      </rel>
+    </span>
+    <span id="s19_n11" from="1434" to="1437">
+      <rel label="PP">
+	<span from="1463" to="1473"/>
+      </rel>
+    </span>
+    <span id="s19_n12" from="1438" to="1444">
+      <rel label="PN">
+	<span from="1434" to="1437"/>
+      </rel>
+    </span>
+    <span id="s19_n13" from="1445" to="1450">
+      <rel label="DET">
+	<span from="1458" to="1462"/>
+      </rel>
+    </span>
+    <span id="s19_n14" from="1451" to="1457">
+      <rel label="DET">
+	<span from="1458" to="1462"/>
+      </rel>
+    </span>
+    <span id="s19_n15" from="1458" to="1462">
+      <rel label="GMOD">
+	<span from="1438" to="1444"/>
+      </rel>
+    </span>
+    <span id="s19_n16" from="1463" to="1473">
+      <rel label="AUX">
+	<span from="1474" to="1479"/>
+      </rel>
+    </span>
+    <span id="s19_n17" from="1474" to="1479">
+      <rel label="NEB">
+	<span from="1421" to="1427"/>
+      </rel>
+    </span>
+    <span id="s19_n18" from="1479" to="1480">
+      <rel label="-PUNCT-">
+	<span from="1474" to="1479"/>
+      </rel>
+    </span>
+    <span id="s20_n1" from="1481" to="1483">
+      <rel label="SUBJ">
+	<span from="1484" to="1491"/>
+      </rel>
+    </span>
+    <span id="s20_n2" from="1484" to="1491">
+      <rel label="ROOT">
+	<span from="1481" to="1672"/>
+      </rel>
+    </span>
+    <span id="s20_n3" from="1492" to="1496">
+      <rel label="OBJA">
+	<span from="1484" to="1491"/>
+      </rel>
+    </span>
+    <span id="s20_n4" from="1497" to="1509">
+      <rel label="ADV">
+	<span from="1484" to="1491"/>
+      </rel>
+    </span>
+    <span id="s20_n5" from="1510" to="1517">
+      <rel label="OBJA">
+	<span from="1484" to="1491"/>
+      </rel>
+    </span>
+    <span id="s20_n6" from="1518" to="1520">
+      <rel label="ROOT">
+	<span from="1481" to="1672"/>
+      </rel>
+    </span>
+    <span id="s20_n7" from="1521" to="1526">
+      <rel label="DET">
+	<span from="1536" to="1547"/>
+      </rel>
+    </span>
+    <span id="s20_n8" from="1527" to="1535">
+      <rel label="ATTR">
+	<span from="1536" to="1547"/>
+      </rel>
+    </span>
+    <span id="s20_n9" from="1536" to="1547">
+      <rel label="PN">
+	<span from="1518" to="1520"/>
+      </rel>
+    </span>
+    <span id="s20_n10" from="1548" to="1551">
+      <rel label="ROOT">
+	<span from="1481" to="1672"/>
+      </rel>
+    </span>
+    <span id="s20_n11" from="1551" to="1552">
+      <rel label="-PUNCT-">
+	<span from="1548" to="1551"/>
+      </rel>
+    </span>
+    <span id="s20_n12" from="1553" to="1556">
+      <rel label="OBJA">
+	<span from="1611" to="1620"/>
+      </rel>
+    </span>
+    <span id="s20_n13" from="1557" to="1559">
+      <rel label="SUBJ">
+	<span from="1611" to="1620"/>
+      </rel>
+    </span>
+    <span id="s20_n14" from="1560" to="1564">
+      <rel label="ADV">
+	<span from="1611" to="1620"/>
+      </rel>
+    </span>
+    <span id="s20_n15" from="1564" to="1565">
+      <rel label="-PUNCT-">
+	<span from="1560" to="1564"/>
+      </rel>
+    </span>
+    <span id="s20_n16" from="1566" to="1570">
+      <rel label="KONJ">
+	<span from="1591" to="1597"/>
+      </rel>
+    </span>
+    <span id="s20_n17" from="1571" to="1573">
+      <rel label="SUBJ">
+	<span from="1591" to="1597"/>
+      </rel>
+    </span>
+    <span id="s20_n18" from="1574" to="1577">
+      <rel label="OBJD">
+	<span from="1591" to="1597"/>
+      </rel>
+    </span>
+    <span id="s20_n19" from="1578" to="1590">
+      <rel label="ADV">
+	<span from="1591" to="1597"/>
+      </rel>
+    </span>
+    <span id="s20_n20" from="1591" to="1597">
+      <rel label="PAR">
+	<span from="1560" to="1564"/>
+      </rel>
+    </span>
+    <span id="s20_n21" from="1597" to="1598">
+      <rel label="-PUNCT-">
+	<span from="1591" to="1597"/>
+      </rel>
+    </span>
+    <span id="s20_n22" from="1599" to="1610">
+      <rel label="ADV">
+	<span from="1611" to="1620"/>
+      </rel>
+    </span>
+    <span id="s20_n23" from="1611" to="1620">
+      <rel label="ROOT">
+	<span from="1481" to="1672"/>
+      </rel>
+    </span>
+    <span id="s20_n24" from="1621" to="1624">
+      <rel label="KON">
+	<span from="1611" to="1620"/>
+      </rel>
+    </span>
+    <span id="s20_n25" from="1625" to="1629">
+      <rel label="OBJA">
+	<span from="1668" to="1671"/>
+      </rel>
+    </span>
+    <span id="s20_n26" from="1630" to="1634">
+      <rel label="ADV">
+	<span from="1668" to="1671"/>
+      </rel>
+    </span>
+    <span id="s20_n27" from="1635" to="1640">
+      <rel label="ADV">
+	<span from="1641" to="1655"/>
+      </rel>
+    </span>
+    <span id="s20_n28" from="1641" to="1655">
+      <rel label="ADV">
+	<span from="1668" to="1671"/>
+      </rel>
+    </span>
+    <span id="s20_n29" from="1656" to="1661">
+      <rel label="ADV">
+	<span from="1668" to="1671"/>
+      </rel>
+    </span>
+    <span id="s20_n30" from="1662" to="1667">
+      <rel label="ADV">
+	<span from="1656" to="1661"/>
+      </rel>
+    </span>
+    <span id="s20_n31" from="1668" to="1671">
+      <rel label="CJ">
+	<span from="1621" to="1624"/>
+      </rel>
+    </span>
+    <span id="s20_n32" from="1671" to="1672">
+      <rel label="-PUNCT-">
+	<span from="1668" to="1671"/>
+      </rel>
+    </span>
+    <span id="s21_n1" from="1673" to="1676">
+      <rel label="DET">
+	<span from="1677" to="1683"/>
+      </rel>
+    </span>
+    <span id="s21_n2" from="1677" to="1683">
+      <rel label="SUBJ">
+	<span from="1684" to="1687"/>
+      </rel>
+    </span>
+    <span id="s21_n3" from="1684" to="1687">
+      <rel label="ROOT">
+	<span from="1673" to="1855"/>
+      </rel>
+    </span>
+    <span id="s21_n4" from="1688" to="1691">
+      <rel label="KOM">
+	<span from="1684" to="1687"/>
+      </rel>
+    </span>
+    <span id="s21_n5" from="1692" to="1700">
+      <rel label="CJ">
+	<span from="1688" to="1691"/>
+      </rel>
+    </span>
+    <span id="s21_n6" from="1701" to="1703">
+      <rel label="OBJP">
+	<span from="1736" to="1743"/>
+      </rel>
+    </span>
+    <span id="s21_n7" from="1704" to="1707">
+      <rel label="DET">
+	<span from="1708" to="1713"/>
+      </rel>
+    </span>
+    <span id="s21_n8" from="1708" to="1713">
+      <rel label="PN">
+	<span from="1701" to="1703"/>
+      </rel>
+    </span>
+    <span id="s21_n9" from="1714" to="1719">
+      <rel label="DET">
+	<span from="1731" to="1735"/>
+      </rel>
+    </span>
+    <span id="s21_n10" from="1720" to="1730">
+      <rel label="ATTR">
+	<span from="1731" to="1735"/>
+      </rel>
+    </span>
+    <span id="s21_n11" from="1731" to="1735">
+      <rel label="GMOD">
+	<span from="1708" to="1713"/>
+      </rel>
+    </span>
+    <span id="s21_n12" from="1736" to="1743">
+      <rel label="AUX">
+	<span from="1684" to="1687"/>
+      </rel>
+    </span>
+    <span id="s21_n13" from="1744" to="1747">
+      <rel label="KON">
+	<span from="1684" to="1687"/>
+      </rel>
+    </span>
+    <span id="s21_n14" from="1748" to="1751">
+      <rel label="PP">
+	<span from="1768" to="1774"/>
+      </rel>
+    </span>
+    <span id="s21_n15" from="1752" to="1759">
+      <rel label="DET">
+	<span from="1760" to="1767"/>
+      </rel>
+    </span>
+    <span id="s21_n16" from="1760" to="1767">
+      <rel label="PN">
+	<span from="1748" to="1751"/>
+      </rel>
+    </span>
+    <span id="s21_n17" from="1768" to="1774">
+      <rel label="CJ">
+	<span from="1744" to="1747"/>
+      </rel>
+    </span>
+    <span id="s21_n18" from="1774" to="1775">
+      <rel label="-PUNCT-">
+	<span from="1768" to="1774"/>
+      </rel>
+    </span>
+    <span id="s21_n19" from="1776" to="1779">
+      <rel label="KONJ">
+	<span from="1850" to="1854"/>
+      </rel>
+    </span>
+    <span id="s21_n20" from="1780" to="1782">
+      <rel label="SUBJ">
+	<span from="1850" to="1854"/>
+      </rel>
+    </span>
+    <span id="s21_n21" from="1783" to="1786">
+      <rel label="DET">
+	<span from="1787" to="1796"/>
+      </rel>
+    </span>
+    <span id="s21_n22" from="1787" to="1796">
+      <rel label="OBJA">
+	<span from="1850" to="1854"/>
+      </rel>
+    </span>
+    <span id="s21_n23" from="1797" to="1800">
+      <rel label="KON">
+	<span from="1787" to="1796"/>
+      </rel>
+    </span>
+    <span id="s21_n24" from="1801" to="1809">
+      <rel label="ADV">
+	<span from="1823" to="1831"/>
+      </rel>
+    </span>
+    <span id="s21_n25" from="1810" to="1813">
+      <rel label="DET">
+	<span from="1814" to="1822"/>
+      </rel>
+    </span>
+    <span id="s21_n26" from="1814" to="1822">
+      <rel label="OBJA">
+	<span from="1823" to="1831"/>
+      </rel>
+    </span>
+    <span id="s21_n27" from="1823" to="1831">
+      <rel label="CJ">
+	<span from="1797" to="1800"/>
+      </rel>
+    </span>
+    <span id="s21_n28" from="1832" to="1835">
+      <rel label="KON">
+	<span from="1823" to="1831"/>
+      </rel>
+    </span>
+    <span id="s21_n29" from="1836" to="1849">
+      <rel label="CJ">
+	<span from="1832" to="1835"/>
+      </rel>
+    </span>
+    <span id="s21_n30" from="1850" to="1854">
+      <rel label="NEB">
+	<span from="1684" to="1687"/>
+      </rel>
+    </span>
+    <span id="s21_n31" from="1854" to="1855">
+      <rel label="-PUNCT-">
+	<span from="1850" to="1854"/>
+      </rel>
+    </span>
+    <span id="s22_n1" from="1856" to="1860">
+      <rel label="DET">
+	<span from="1870" to="1878"/>
+      </rel>
+    </span>
+    <span id="s22_n2" from="1861" to="1869">
+      <rel label="ATTR">
+	<span from="1870" to="1878"/>
+      </rel>
+    </span>
+    <span id="s22_n3" from="1870" to="1878">
+      <rel label="SUBJ">
+	<span from="1879" to="1884"/>
+      </rel>
+    </span>
+    <span id="s22_n4" from="1879" to="1884">
+      <rel label="ROOT">
+	<span from="1856" to="1947"/>
+      </rel>
+    </span>
+    <span id="s22_n5" from="1885" to="1888">
+      <rel label="DET">
+	<span from="1889" to="1900"/>
+      </rel>
+    </span>
+    <span id="s22_n6" from="1889" to="1900">
+      <rel label="ROOT">
+	<span from="1856" to="1947"/>
+      </rel>
+    </span>
+    <span id="s22_n7" from="1901" to="1906">
+      <rel label="DET">
+	<span from="1907" to="1914"/>
+      </rel>
+    </span>
+    <span id="s22_n8" from="1907" to="1914">
+      <rel label="GMOD">
+	<span from="1889" to="1900"/>
+      </rel>
+    </span>
+    <span id="s22_n9" from="1915" to="1918">
+      <rel label="KON">
+	<span from="1907" to="1914"/>
+      </rel>
+    </span>
+    <span id="s22_n10" from="1919" to="1924">
+      <rel label="DET">
+	<span from="1925" to="1935"/>
+      </rel>
+    </span>
+    <span id="s22_n11" from="1925" to="1935">
+      <rel label="CJ">
+	<span from="1915" to="1918"/>
+      </rel>
+    </span>
+    <span id="s22_n12" from="1936" to="1938">
+      <rel label="PP">
+	<span from="1889" to="1900"/>
+      </rel>
+    </span>
+    <span id="s22_n13" from="1939" to="1942">
+      <rel label="PN">
+	<span from="1936" to="1938"/>
+      </rel>
+    </span>
+    <span id="s22_n14" from="1943" to="1946">
+      <rel label="PRED">
+	<span from="1889" to="1900"/>
+      </rel>
+    </span>
+    <span id="s22_n15" from="1946" to="1947">
+      <rel label="-PUNCT-">
+	<span from="1943" to="1946"/>
+      </rel>
+    </span>
+    <span id="s23_n1" from="1948" to="1956">
+      <rel label="ADV">
+	<span from="1957" to="1961"/>
+      </rel>
+    </span>
+    <span id="s23_n2" from="1957" to="1961">
+      <rel label="ROOT">
+	<span from="1948" to="2123"/>
+      </rel>
+    </span>
+    <span id="s23_n3" from="1962" to="1964">
+      <rel label="SUBJ">
+	<span from="1957" to="1961"/>
+      </rel>
+    </span>
+    <span id="s23_n4" from="1965" to="1969">
+      <rel label="ADV">
+	<span from="1957" to="1961"/>
+      </rel>
+    </span>
+    <span id="s23_n5" from="1970" to="1975">
+      <rel label="DET">
+	<span from="1983" to="1988"/>
+      </rel>
+    </span>
+    <span id="s23_n6" from="1976" to="1982">
+      <rel label="ATTR">
+	<span from="1983" to="1988"/>
+      </rel>
+    </span>
+    <span id="s23_n7" from="1983" to="1988">
+      <rel label="OBJA">
+	<span from="1957" to="1961"/>
+      </rel>
+    </span>
+    <span id="s23_n8" from="1989" to="1991">
+      <rel label="PP">
+	<span from="1983" to="1988"/>
+      </rel>
+    </span>
+    <span id="s23_n9" from="1992" to="1998">
+      <rel label="PN">
+	<span from="1989" to="1991"/>
+      </rel>
+    </span>
+    <span id="s23_n10" from="1998" to="1999">
+      <rel label="-PUNCT-">
+	<span from="1992" to="1998"/>
+      </rel>
+    </span>
+    <span id="s23_n11" from="2000" to="2003">
+      <rel label="SUBJ">
+	<span from="2004" to="2009"/>
+      </rel>
+    </span>
+    <span id="s23_n12" from="2004" to="2009">
+      <rel label="ROOT">
+	<span from="1948" to="2123"/>
+      </rel>
+    </span>
+    <span id="s23_n13" from="2010" to="2014">
+      <rel label="DET">
+	<span from="2015" to="2021"/>
+      </rel>
+    </span>
+    <span id="s23_n14" from="2015" to="2021">
+      <rel label="OBJD">
+	<span from="2004" to="2009"/>
+      </rel>
+    </span>
+    <span id="s23_n15" from="2021" to="2022">
+      <rel label="-PUNCT-">
+	<span from="2015" to="2021"/>
+      </rel>
+    </span>
+    <span id="s23_n16" from="2023" to="2025">
+      <rel label="ADV">
+	<span from="2047" to="2057"/>
+      </rel>
+    </span>
+    <span id="s23_n17" from="2026" to="2030">
+      <rel label="OBJA">
+	<span from="2047" to="2057"/>
+      </rel>
+    </span>
+    <span id="s23_n18" from="2031" to="2035">
+      <rel label="DET">
+	<span from="2036" to="2046"/>
+      </rel>
+    </span>
+    <span id="s23_n19" from="2036" to="2046">
+      <rel label="SUBJ">
+	<span from="2047" to="2057"/>
+      </rel>
+    </span>
+    <span id="s23_n20" from="2047" to="2057">
+      <rel label="REL">
+	<span from="2015" to="2021"/>
+      </rel>
+    </span>
+    <span id="s23_n21" from="2057" to="2058">
+      <rel label="-PUNCT-">
+	<span from="2047" to="2057"/>
+      </rel>
+    </span>
+    <span id="s23_n22" from="2059" to="2062">
+      <rel label="KONJ">
+	<span from="2102" to="2105"/>
+      </rel>
+    </span>
+    <span id="s23_n23" from="2063" to="2067">
+      <rel label="ADV">
+	<span from="2102" to="2105"/>
+      </rel>
+    </span>
+    <span id="s23_n24" from="2068" to="2072">
+      <rel label="ADV">
+	<span from="2102" to="2105"/>
+      </rel>
+    </span>
+    <span id="s23_n25" from="2073" to="2075">
+      <rel label="PP">
+	<span from="2102" to="2105"/>
+      </rel>
+    </span>
+    <span id="s23_n26" from="2076" to="2080">
+      <rel label="PN">
+	<span from="2073" to="2075"/>
+      </rel>
+    </span>
+    <span id="s23_n27" from="2081" to="2087">
+      <rel label="ADV">
+	<span from="2102" to="2105"/>
+      </rel>
+    </span>
+    <span id="s23_n28" from="2088" to="2091">
+      <rel label="DET">
+	<span from="2092" to="2101"/>
+      </rel>
+    </span>
+    <span id="s23_n29" from="2092" to="2101">
+      <rel label="PRED">
+	<span from="2102" to="2105"/>
+      </rel>
+    </span>
+    <span id="s23_n30" from="2102" to="2105">
+      <rel label="NEB">
+	<span from="2047" to="2057"/>
+      </rel>
+    </span>
+    <span id="s23_n31" from="2105" to="2106">
+      <rel label="-PUNCT-">
+	<span from="2102" to="2105"/>
+      </rel>
+    </span>
+    <span id="s23_n32" from="2107" to="2110">
+      <rel label="SUBJ">
+	<span from="2117" to="2122"/>
+      </rel>
+    </span>
+    <span id="s23_n33" from="2111" to="2116">
+      <rel label="ADV">
+	<span from="2117" to="2122"/>
+      </rel>
+    </span>
+    <span id="s23_n34" from="2117" to="2122">
+      <rel label="REL">
+	<span from="2004" to="2009"/>
+      </rel>
+    </span>
+    <span id="s23_n35" from="2122" to="2123">
+      <rel label="-PUNCT-">
+	<span from="2117" to="2122"/>
+      </rel>
+    </span>
+    <span id="s24_n1" from="2124" to="2128">
+      <rel label="ROOT">
+	<span from="2124" to="2473"/>
+      </rel>
+    </span>
+    <span id="s24_n2" from="2129" to="2132">
+      <rel label="DET">
+	<span from="2133" to="2139"/>
+      </rel>
+    </span>
+    <span id="s24_n3" from="2133" to="2139">
+      <rel label="SUBJ">
+	<span from="2124" to="2128"/>
+      </rel>
+    </span>
+    <span id="s24_n4" from="2140" to="2143">
+      <rel label="PP">
+	<span from="2167" to="2177"/>
+      </rel>
+    </span>
+    <span id="s24_n5" from="2144" to="2149">
+      <rel label="DET">
+	<span from="2150" to="2156"/>
+      </rel>
+    </span>
+    <span id="s24_n6" from="2150" to="2156">
+      <rel label="PN">
+	<span from="2140" to="2143"/>
+      </rel>
+    </span>
+    <span id="s24_n7" from="2157" to="2166">
+      <rel label="ADV">
+	<span from="2167" to="2177"/>
+      </rel>
+    </span>
+    <span id="s24_n8" from="2167" to="2177">
+      <rel label="PRED">
+	<span from="2124" to="2128"/>
+      </rel>
+    </span>
+    <span id="s24_n9" from="2177" to="2178">
+      <rel label="-PUNCT-">
+	<span from="2167" to="2177"/>
+      </rel>
+    </span>
+    <span id="s24_n10" from="2179" to="2187">
+      <rel label="KON">
+	<span from="2124" to="2128"/>
+      </rel>
+    </span>
+    <span id="s24_n11" from="2188" to="2190">
+      <rel label="SUBJ">
+	<span from="2179" to="2187"/>
+      </rel>
+    </span>
+    <span id="s24_n12" from="2191" to="2195">
+      <rel label="OBJA">
+	<span from="2179" to="2187"/>
+      </rel>
+    </span>
+    <span id="s24_n13" from="2196" to="2201">
+      <rel label="ADV">
+	<span from="2179" to="2187"/>
+      </rel>
+    </span>
+    <span id="s24_n14" from="2201" to="2202">
+      <rel label="-PUNCT-">
+	<span from="2196" to="2201"/>
+      </rel>
+    </span>
+    <span id="s24_n15" from="2203" to="2205">
+      <rel label="ADV">
+	<span from="2206" to="2214"/>
+      </rel>
+    </span>
+    <span id="s24_n16" from="2206" to="2214">
+      <rel label="KON">
+	<span from="2179" to="2187"/>
+      </rel>
+    </span>
+    <span id="s24_n17" from="2215" to="2217">
+      <rel label="SUBJ">
+	<span from="2206" to="2214"/>
+      </rel>
+    </span>
+    <span id="s24_n18" from="2218" to="2220">
+      <rel label="OBJP">
+	<span from="2206" to="2214"/>
+      </rel>
+    </span>
+    <span id="s24_n19" from="2221" to="2225">
+      <rel label="DET">
+	<span from="2226" to="2242"/>
+      </rel>
+    </span>
+    <span id="s24_n20" from="2226" to="2242">
+      <rel label="PN">
+	<span from="2218" to="2220"/>
+      </rel>
+    </span>
+    <span id="s24_n21" from="2242" to="2243">
+      <rel label="-PUNCT-">
+	<span from="2226" to="2242"/>
+      </rel>
+    </span>
+    <span id="s24_n22" from="2244" to="2249">
+      <rel label="KON">
+	<span from="2206" to="2214"/>
+      </rel>
+    </span>
+    <span id="s24_n23" from="2250" to="2254">
+      <rel label="ADV">
+	<span from="2244" to="2249"/>
+      </rel>
+    </span>
+    <span id="s24_n24" from="2255" to="2260">
+      <rel label="OBJA">
+	<span from="2244" to="2249"/>
+      </rel>
+    </span>
+    <span id="s24_n25" from="2261" to="2264">
+      <rel label="PP">
+	<span from="2244" to="2249"/>
+      </rel>
+    </span>
+    <span id="s24_n26" from="2265" to="2270">
+      <rel label="DET">
+	<span from="2278" to="2282"/>
+      </rel>
+    </span>
+    <span id="s24_n27" from="2271" to="2277">
+      <rel label="DET">
+	<span from="2278" to="2282"/>
+      </rel>
+    </span>
+    <span id="s24_n28" from="2278" to="2282">
+      <rel label="PN">
+	<span from="2261" to="2264"/>
+      </rel>
+    </span>
+    <span id="s24_n29" from="2282" to="2283">
+      <rel label="-PUNCT-">
+	<span from="2278" to="2282"/>
+      </rel>
+    </span>
+    <span id="s24_n30" from="2284" to="2287">
+      <rel label="SUBJ">
+	<span from="2312" to="2316"/>
+      </rel>
+    </span>
+    <span id="s24_n31" from="2288" to="2292">
+      <rel label="ADV">
+	<span from="2312" to="2316"/>
+      </rel>
+    </span>
+    <span id="s24_n32" from="2293" to="2303">
+      <rel label="ADV">
+	<span from="2312" to="2316"/>
+      </rel>
+    </span>
+    <span id="s24_n33" from="2304" to="2311">
+      <rel label="PRED">
+	<span from="2312" to="2316"/>
+      </rel>
+    </span>
+    <span id="s24_n34" from="2312" to="2316">
+      <rel label="KON">
+	<span from="2244" to="2249"/>
+      </rel>
+    </span>
+    <span id="s24_n35" from="2317" to="2320">
+      <rel label="KON">
+	<span from="2312" to="2316"/>
+      </rel>
+    </span>
+    <span id="s24_n36" from="2321" to="2326">
+      <rel label="KON">
+	<span from="2327" to="2334"/>
+      </rel>
+    </span>
+    <span id="s24_n37" from="2327" to="2334">
+      <rel label="SUBJ">
+	<span from="2351" to="2356"/>
+      </rel>
+    </span>
+    <span id="s24_n38" from="2335" to="2339">
+      <rel label="ADV">
+	<span from="2351" to="2356"/>
+      </rel>
+    </span>
+    <span id="s24_n39" from="2340" to="2350">
+      <rel label="OBJA">
+	<span from="2351" to="2356"/>
+      </rel>
+    </span>
+    <span id="s24_n40" from="2351" to="2356">
+      <rel label="CJ">
+	<span from="2317" to="2320"/>
+      </rel>
+    </span>
+    <span id="s24_n41" from="2356" to="2357">
+      <rel label="-PUNCT-">
+	<span from="2351" to="2356"/>
+      </rel>
+    </span>
+    <span id="s24_n42" from="2358" to="2365">
+      <rel label="KON">
+	<span from="2312" to="2316"/>
+      </rel>
+    </span>
+    <span id="s24_n43" from="2366" to="2369">
+      <rel label="KOM">
+	<span from="2395" to="2404"/>
+      </rel>
+    </span>
+    <span id="s24_n44" from="2370" to="2375">
+      <rel label="ATTR">
+	<span from="2376" to="2394"/>
+      </rel>
+    </span>
+    <span id="s24_n45" from="2376" to="2394">
+      <rel label="CJ">
+	<span from="2366" to="2369"/>
+      </rel>
+    </span>
+    <span id="s24_n46" from="2395" to="2404">
+      <rel label="CJ">
+	<span from="2358" to="2365"/>
+      </rel>
+    </span>
+    <span id="s24_n47" from="2405" to="2408">
+      <rel label="KON">
+	<span from="2395" to="2404"/>
+      </rel>
+    </span>
+    <span id="s24_n48" from="2409" to="2412">
+      <rel label="OBJA">
+	<span from="2463" to="2472"/>
+      </rel>
+    </span>
+    <span id="s24_n49" from="2412" to="2413">
+      <rel label="-PUNCT-">
+	<span from="2409" to="2412"/>
+      </rel>
+    </span>
+    <span id="s24_n50" from="2414" to="2417">
+      <rel label="SUBJ">
+	<span from="2429" to="2437"/>
+      </rel>
+    </span>
+    <span id="s24_n51" from="2418" to="2422">
+      <rel label="OBJA">
+	<span from="2429" to="2437"/>
+      </rel>
+    </span>
+    <span id="s24_n52" from="2423" to="2428">
+      <rel label="ADV">
+	<span from="2429" to="2437"/>
+      </rel>
+    </span>
+    <span id="s24_n53" from="2429" to="2437">
+      <rel label="REL">
+	<span from="2409" to="2412"/>
+      </rel>
+    </span>
+    <span id="s24_n54" from="2437" to="2438">
+      <rel label="-PUNCT-">
+	<span from="2429" to="2437"/>
+      </rel>
+    </span>
+    <span id="s24_n55" from="2439" to="2443">
+      <rel label="ADV">
+	<span from="2444" to="2447"/>
+      </rel>
+    </span>
+    <span id="s24_n56" from="2444" to="2447">
+      <rel label="KOM">
+	<span from="2463" to="2472"/>
+      </rel>
+    </span>
+    <span id="s24_n57" from="2448" to="2462">
+      <rel label="CJ">
+	<span from="2444" to="2447"/>
+      </rel>
+    </span>
+    <span id="s24_n58" from="2463" to="2472">
+      <rel label="CJ">
+	<span from="2405" to="2408"/>
+      </rel>
+    </span>
+    <span id="s24_n59" from="2472" to="2473">
+      <rel label="-PUNCT-">
+	<span from="2463" to="2472"/>
+      </rel>
+    </span>
+    <span id="s25_n1" from="2474" to="2476">
+      <rel label="SUBJ">
+	<span from="2477" to="2480"/>
+      </rel>
+    </span>
+    <span id="s25_n2" from="2477" to="2480">
+      <rel label="ROOT">
+	<span from="2474" to="2559"/>
+      </rel>
+    </span>
+    <span id="s25_n3" from="2481" to="2486">
+      <rel label="ADV">
+	<span from="2490" to="2497"/>
+      </rel>
+    </span>
+    <span id="s25_n4" from="2487" to="2489">
+      <rel label="PART">
+	<span from="2490" to="2497"/>
+      </rel>
+    </span>
+    <span id="s25_n5" from="2490" to="2497">
+      <rel label="AUX">
+	<span from="2477" to="2480"/>
+      </rel>
+    </span>
+    <span id="s25_n6" from="2497" to="2498">
+      <rel label="-PUNCT-">
+	<span from="2490" to="2497"/>
+      </rel>
+    </span>
+    <span id="s25_n7" from="2499" to="2502">
+      <rel label="KONJ">
+	<span from="2552" to="2558"/>
+      </rel>
+    </span>
+    <span id="s25_n8" from="2503" to="2506">
+      <rel label="DET">
+	<span from="2507" to="2512"/>
+      </rel>
+    </span>
+    <span id="s25_n9" from="2507" to="2512">
+      <rel label="SUBJ">
+	<span from="2552" to="2558"/>
+      </rel>
+    </span>
+    <span id="s25_n10" from="2513" to="2517">
+      <rel label="OBJA">
+	<span from="2543" to="2551"/>
+      </rel>
+    </span>
+    <span id="s25_n11" from="2518" to="2523">
+      <rel label="PP">
+	<span from="2543" to="2551"/>
+      </rel>
+    </span>
+    <span id="s25_n12" from="2524" to="2527">
+      <rel label="DET">
+	<span from="2528" to="2539"/>
+      </rel>
+    </span>
+    <span id="s25_n13" from="2528" to="2539">
+      <rel label="PN">
+	<span from="2518" to="2523"/>
+      </rel>
+    </span>
+    <span id="s25_n14" from="2540" to="2542">
+      <rel label="PART">
+	<span from="2543" to="2551"/>
+      </rel>
+    </span>
+    <span id="s25_n15" from="2543" to="2551">
+      <rel label="OBJI">
+	<span from="2552" to="2558"/>
+      </rel>
+    </span>
+    <span id="s25_n16" from="2552" to="2558">
+      <rel label="NEB">
+	<span from="2477" to="2480"/>
+      </rel>
+    </span>
+    <span id="s25_n17" from="2558" to="2559">
+      <rel label="-PUNCT-">
+	<span from="2552" to="2558"/>
+      </rel>
+    </span>
+    <span id="s26_n1" from="2560" to="2563">
+      <rel label="DET">
+	<span from="2564" to="2574"/>
+      </rel>
+    </span>
+    <span id="s26_n2" from="2564" to="2574">
+      <rel label="SUBJ">
+	<span from="2616" to="2623"/>
+      </rel>
+    </span>
+    <span id="s26_n3" from="2575" to="2579">
+      <rel label="PP">
+	<span from="2564" to="2574"/>
+      </rel>
+    </span>
+    <span id="s26_n4" from="2580" to="2592">
+      <rel label="ATTR">
+	<span from="2607" to="2615"/>
+      </rel>
+    </span>
+    <span id="s26_n5" from="2593" to="2596">
+      <rel label="KON">
+	<span from="2580" to="2592"/>
+      </rel>
+    </span>
+    <span id="s26_n6" from="2597" to="2606">
+      <rel label="CJ">
+	<span from="2593" to="2596"/>
+      </rel>
+    </span>
+    <span id="s26_n7" from="2607" to="2615">
+      <rel label="PN">
+	<span from="2575" to="2579"/>
+      </rel>
+    </span>
+    <span id="s26_n8" from="2616" to="2623">
+      <rel label="ROOT">
+	<span from="2560" to="2720"/>
+      </rel>
+    </span>
+    <span id="s26_n9" from="2624" to="2627">
+      <rel label="DET">
+	<span from="2628" to="2634"/>
+      </rel>
+    </span>
+    <span id="s26_n10" from="2628" to="2634">
+      <rel label="OBJA">
+	<span from="2616" to="2623"/>
+      </rel>
+    </span>
+    <span id="s26_n11" from="2634" to="2635">
+      <rel label="-PUNCT-">
+	<span from="2628" to="2634"/>
+      </rel>
+    </span>
+    <span id="s26_n12" from="2636" to="2639">
+      <rel label="DET">
+	<span from="2640" to="2649"/>
+      </rel>
+    </span>
+    <span id="s26_n13" from="2640" to="2649">
+      <rel label="ROOT">
+	<span from="2560" to="2720"/>
+      </rel>
+    </span>
+    <span id="s26_n14" from="2650" to="2654">
+      <rel label="PP">
+	<span from="2640" to="2649"/>
+      </rel>
+    </span>
+    <span id="s26_n15" from="2655" to="2660">
+      <rel label="DET">
+	<span from="2707" to="2712"/>
+      </rel>
+    </span>
+    <span id="s26_n16" from="2661" to="2669">
+      <rel label="ATTR">
+	<span from="2707" to="2712"/>
+      </rel>
+    </span>
+    <span id="s26_n17" from="2669" to="2670">
+      <rel label="-PUNCT-">
+	<span from="2661" to="2669"/>
+      </rel>
+    </span>
+    <span id="s26_n18" from="2671" to="2684">
+      <rel label="KON">
+	<span from="2661" to="2669"/>
+      </rel>
+    </span>
+    <span id="s26_n19" from="2685" to="2688">
+      <rel label="KON">
+	<span from="2671" to="2684"/>
+      </rel>
+    </span>
+    <span id="s26_n20" from="2689" to="2706">
+      <rel label="CJ">
+	<span from="2685" to="2688"/>
+      </rel>
+    </span>
+    <span id="s26_n21" from="2707" to="2712">
+      <rel label="PN">
+	<span from="2650" to="2654"/>
+      </rel>
+    </span>
+    <span id="s26_n22" from="2713" to="2719">
+      <rel label="ROOT">
+	<span from="2560" to="2720"/>
+      </rel>
+    </span>
+    <span id="s26_n23" from="2719" to="2720">
+      <rel label="-PUNCT-">
+	<span from="2713" to="2719"/>
+      </rel>
+    </span>
+    <span id="s27_n1" from="2721" to="2724">
+      <rel label="SUBJ">
+	<span from="2725" to="2730"/>
+      </rel>
+    </span>
+    <span id="s27_n2" from="2725" to="2730">
+      <rel label="ROOT">
+	<span from="2721" to="2894"/>
+      </rel>
+    </span>
+    <span id="s27_n3" from="2731" to="2735">
+      <rel label="ROOT">
+	<span from="2721" to="2894"/>
+      </rel>
+    </span>
+    <span id="s27_n4" from="2736" to="2741">
+      <rel label="ROOT">
+	<span from="2721" to="2894"/>
+      </rel>
+    </span>
+    <span id="s27_n5" from="2742" to="2747">
+      <rel label="ROOT">
+	<span from="2721" to="2894"/>
+      </rel>
+    </span>
+    <span id="s27_n6" from="2748" to="2755">
+      <rel label="OBJA">
+	<span from="2756" to="2766"/>
+      </rel>
+    </span>
+    <span id="s27_n7" from="2756" to="2766">
+      <rel label="ROOT">
+	<span from="2721" to="2894"/>
+      </rel>
+    </span>
+    <span id="s27_n8" from="2766" to="2767">
+      <rel label="-PUNCT-">
+	<span from="2756" to="2766"/>
+      </rel>
+    </span>
+    <span id="s27_n9" from="2768" to="2771">
+      <rel label="KONJ">
+	<span from="2822" to="2836"/>
+      </rel>
+    </span>
+    <span id="s27_n10" from="2772" to="2775">
+      <rel label="DET">
+	<span from="2776" to="2780"/>
+      </rel>
+    </span>
+    <span id="s27_n11" from="2776" to="2780">
+      <rel label="SUBJ">
+	<span from="2822" to="2836"/>
+      </rel>
+    </span>
+    <span id="s27_n12" from="2781" to="2783">
+      <rel label="PP">
+	<span from="2822" to="2836"/>
+      </rel>
+    </span>
+    <span id="s27_n13" from="2784" to="2789">
+      <rel label="DET">
+	<span from="2809" to="2821"/>
+      </rel>
+    </span>
+    <span id="s27_n14" from="2790" to="2798">
+      <rel label="ATTR">
+	<span from="2809" to="2821"/>
+      </rel>
+    </span>
+    <span id="s27_n15" from="2799" to="2808">
+      <rel label="ATTR">
+	<span from="2809" to="2821"/>
+      </rel>
+    </span>
+    <span id="s27_n16" from="2809" to="2821">
+      <rel label="PN">
+	<span from="2781" to="2783"/>
+      </rel>
+    </span>
+    <span id="s27_n17" from="2822" to="2836">
+      <rel label="OBJI">
+	<span from="2756" to="2766"/>
+      </rel>
+    </span>
+    <span id="s27_n18" from="2837" to="2840">
+      <rel label="KON">
+	<span from="2822" to="2836"/>
+      </rel>
+    </span>
+    <span id="s27_n19" from="2841" to="2844">
+      <rel label="DET">
+	<span from="2845" to="2861"/>
+      </rel>
+    </span>
+    <span id="s27_n20" from="2845" to="2861">
+      <rel label="SUBJ">
+	<span from="2884" to="2893"/>
+      </rel>
+    </span>
+    <span id="s27_n21" from="2862" to="2866">
+      <rel label="OBJA">
+	<span from="2870" to="2883"/>
+      </rel>
+    </span>
+    <span id="s27_n22" from="2867" to="2869">
+      <rel label="PART">
+	<span from="2870" to="2883"/>
+      </rel>
+    </span>
+    <span id="s27_n23" from="2870" to="2883">
+      <rel label="OBJI">
+	<span from="2884" to="2893"/>
+      </rel>
+    </span>
+    <span id="s27_n24" from="2884" to="2893">
+      <rel label="CJ">
+	<span from="2837" to="2840"/>
+      </rel>
+    </span>
+    <span id="s27_n25" from="2893" to="2894">
+      <rel label="-PUNCT-">
+	<span from="2884" to="2893"/>
+      </rel>
+    </span>
+    <span id="s28_n1" from="2895" to="2898">
+      <rel label="PP">
+	<span from="2910" to="2916"/>
+      </rel>
+    </span>
+    <span id="s28_n2" from="2899" to="2902">
+      <rel label="DET">
+	<span from="2903" to="2909"/>
+      </rel>
+    </span>
+    <span id="s28_n3" from="2903" to="2909">
+      <rel label="PN">
+	<span from="2895" to="2898"/>
+      </rel>
+    </span>
+    <span id="s28_n4" from="2910" to="2916">
+      <rel label="ROOT">
+	<span from="2895" to="3189"/>
+      </rel>
+    </span>
+    <span id="s28_n5" from="2917" to="2920">
+      <rel label="ROOT">
+	<span from="2895" to="3189"/>
+      </rel>
+    </span>
+    <span id="s28_n6" from="2921" to="2927">
+      <rel label="ADV">
+	<span from="2942" to="2952"/>
+      </rel>
+    </span>
+    <span id="s28_n7" from="2928" to="2932">
+      <rel label="DET">
+	<span from="2933" to="2941"/>
+      </rel>
+    </span>
+    <span id="s28_n8" from="2933" to="2941">
+      <rel label="OBJA">
+	<span from="2942" to="2952"/>
+      </rel>
+    </span>
+    <span id="s28_n9" from="2942" to="2952">
+      <rel label="PN">
+	<span from="2917" to="2920"/>
+      </rel>
+    </span>
+    <span id="s28_n10" from="2953" to="2956">
+      <rel label="KON">
+	<span from="2942" to="2952"/>
+      </rel>
+    </span>
+    <span id="s28_n11" from="2957" to="2960">
+      <rel label="PP">
+	<span from="3061" to="3070"/>
+      </rel>
+    </span>
+    <span id="s28_n12" from="2961" to="2966">
+      <rel label="DET">
+	<span from="2978" to="2984"/>
+      </rel>
+    </span>
+    <span id="s28_n13" from="2967" to="2977">
+      <rel label="ATTR">
+	<span from="2978" to="2984"/>
+      </rel>
+    </span>
+    <span id="s28_n14" from="2978" to="2984">
+      <rel label="PN">
+	<span from="2957" to="2960"/>
+      </rel>
+    </span>
+    <span id="s28_n15" from="2985" to="2988">
+      <rel label="PP">
+	<span from="3061" to="3070"/>
+      </rel>
+    </span>
+    <span id="s28_n16" from="2989" to="2994">
+      <rel label="DET">
+	<span from="3002" to="3007"/>
+      </rel>
+    </span>
+    <span id="s28_n17" from="2995" to="3001">
+      <rel label="ATTR">
+	<span from="3002" to="3007"/>
+      </rel>
+    </span>
+    <span id="s28_n18" from="3002" to="3007">
+      <rel label="PN">
+	<span from="2985" to="2988"/>
+      </rel>
+    </span>
+    <span id="s28_n19" from="3008" to="3013">
+      <rel label="APP">
+	<span from="3002" to="3007"/>
+      </rel>
+    </span>
+    <span id="s28_n20" from="3013" to="3014">
+      <rel label="-PUNCT-">
+	<span from="3008" to="3013"/>
+      </rel>
+    </span>
+    <span id="s28_n21" from="3015" to="3023">
+      <rel label="KON">
+	<span from="3008" to="3013"/>
+      </rel>
+    </span>
+    <span id="s28_n22" from="3023" to="3024">
+      <rel label="-PUNCT-">
+	<span from="3015" to="3023"/>
+      </rel>
+    </span>
+    <span id="s28_n23" from="3025" to="3030">
+      <rel label="KON">
+	<span from="3015" to="3023"/>
+      </rel>
+    </span>
+    <span id="s28_n24" from="3031" to="3034">
+      <rel label="PP">
+	<span from="3025" to="3030"/>
+      </rel>
+    </span>
+    <span id="s28_n25" from="3035" to="3038">
+      <rel label="DET">
+	<span from="3039" to="3050"/>
+      </rel>
+    </span>
+    <span id="s28_n26" from="3039" to="3050">
+      <rel label="PN">
+	<span from="3031" to="3034"/>
+      </rel>
+    </span>
+    <span id="s28_n27" from="3050" to="3051">
+      <rel label="-PUNCT-">
+	<span from="3039" to="3050"/>
+      </rel>
+    </span>
+    <span id="s28_n28" from="3052" to="3060">
+      <rel label="ADV">
+	<span from="3061" to="3070"/>
+      </rel>
+    </span>
+    <span id="s28_n29" from="3061" to="3070">
+      <rel label="SUBJ">
+	<span from="3183" to="3188"/>
+      </rel>
+    </span>
+    <span id="s28_n30" from="3070" to="3071">
+      <rel label="-PUNCT-">
+	<span from="3061" to="3070"/>
+      </rel>
+    </span>
+    <span id="s28_n31" from="3072" to="3081">
+      <rel label="ADV">
+	<span from="3092" to="3101"/>
+      </rel>
+    </span>
+    <span id="s28_n32" from="3082" to="3091">
+      <rel label="OBJA">
+	<span from="3092" to="3101"/>
+      </rel>
+    </span>
+    <span id="s28_n33" from="3092" to="3101">
+      <rel label="KON">
+	<span from="3061" to="3070"/>
+      </rel>
+    </span>
+    <span id="s28_n34" from="3101" to="3102">
+      <rel label="-PUNCT-">
+	<span from="3092" to="3101"/>
+      </rel>
+    </span>
+    <span id="s28_n35" from="3103" to="3110">
+      <rel label="SUBJ">
+	<span from="3131" to="3139"/>
+      </rel>
+    </span>
+    <span id="s28_n36" from="3111" to="3117">
+      <rel label="ADV">
+	<span from="3131" to="3139"/>
+      </rel>
+    </span>
+    <span id="s28_n37" from="3118" to="3121">
+      <rel label="KOM">
+	<span from="3131" to="3139"/>
+      </rel>
+    </span>
+    <span id="s28_n38" from="3122" to="3130">
+      <rel label="CJ">
+	<span from="3118" to="3121"/>
+      </rel>
+    </span>
+    <span id="s28_n39" from="3131" to="3139">
+      <rel label="REL">
+	<span from="3061" to="3070"/>
+      </rel>
+    </span>
+    <span id="s28_n40" from="3139" to="3140">
+      <rel label="-PUNCT-">
+	<span from="3131" to="3139"/>
+      </rel>
+    </span>
+    <span id="s28_n41" from="3141" to="3144">
+      <rel label="KOM">
+	<span from="3161" to="3170"/>
+      </rel>
+    </span>
+    <span id="s28_n42" from="3145" to="3155">
+      <rel label="ATTR">
+	<span from="3156" to="3160"/>
+      </rel>
+    </span>
+    <span id="s28_n43" from="3156" to="3160">
+      <rel label="CJ">
+	<span from="3141" to="3144"/>
+      </rel>
+    </span>
+    <span id="s28_n44" from="3161" to="3170">
+      <rel label="AUX">
+	<span from="3183" to="3188"/>
+      </rel>
+    </span>
+    <span id="s28_n45" from="3171" to="3174">
+      <rel label="KON">
+	<span from="3161" to="3170"/>
+      </rel>
+    </span>
+    <span id="s28_n46" from="3175" to="3182">
+      <rel label="CJ">
+	<span from="3171" to="3174"/>
+      </rel>
+    </span>
+    <span id="s28_n47" from="3183" to="3188">
+      <rel label="CJ">
+	<span from="2953" to="2956"/>
+      </rel>
+    </span>
+    <span id="s28_n48" from="3188" to="3189">
+      <rel label="-PUNCT-">
+	<span from="3183" to="3188"/>
+      </rel>
+    </span>
+    <span id="s29_n1" from="3190" to="3192">
+      <rel label="SUBJ">
+	<span from="3193" to="3198"/>
+      </rel>
+    </span>
+    <span id="s29_n2" from="3193" to="3198">
+      <rel label="ROOT">
+	<span from="3190" to="3270"/>
+      </rel>
+    </span>
+    <span id="s29_n3" from="3199" to="3202">
+      <rel label="OBJP">
+	<span from="3193" to="3198"/>
+      </rel>
+    </span>
+    <span id="s29_n4" from="3203" to="3208">
+      <rel label="DET">
+	<span from="3209" to="3221"/>
+      </rel>
+    </span>
+    <span id="s29_n5" from="3209" to="3221">
+      <rel label="PN">
+	<span from="3199" to="3202"/>
+      </rel>
+    </span>
+    <span id="s29_n6" from="3221" to="3222">
+      <rel label="-PUNCT-">
+	<span from="3209" to="3221"/>
+      </rel>
+    </span>
+    <span id="s29_n7" from="3223" to="3225">
+      <rel label="ROOT">
+	<span from="3190" to="3270"/>
+      </rel>
+    </span>
+    <span id="s29_n8" from="3226" to="3229">
+      <rel label="DET">
+	<span from="3230" to="3238"/>
+      </rel>
+    </span>
+    <span id="s29_n9" from="3230" to="3238">
+      <rel label="SUBJ">
+	<span from="3264" to="3269"/>
+      </rel>
+    </span>
+    <span id="s29_n10" from="3239" to="3242">
+      <rel label="DET">
+	<span from="3243" to="3250"/>
+      </rel>
+    </span>
+    <span id="s29_n11" from="3243" to="3250">
+      <rel label="OBJA">
+	<span from="3251" to="3263"/>
+      </rel>
+    </span>
+    <span id="s29_n12" from="3251" to="3263">
+      <rel label="AUX">
+	<span from="3264" to="3269"/>
+      </rel>
+    </span>
+    <span id="s29_n13" from="3264" to="3269">
+      <rel label="ROOT">
+	<span from="3190" to="3270"/>
+      </rel>
+    </span>
+    <span id="s29_n14" from="3269" to="3270">
+      <rel label="-PUNCT-">
+	<span from="3264" to="3269"/>
+      </rel>
+    </span>
+    <span id="s30_n1" from="3271" to="3274">
+      <rel label="PP">
+	<span from="3279" to="3283"/>
+      </rel>
+    </span>
+    <span id="s30_n2" from="3275" to="3278">
+      <rel label="PN">
+	<span from="3271" to="3274"/>
+      </rel>
+    </span>
+    <span id="s30_n3" from="3279" to="3283">
+      <rel label="ROOT">
+	<span from="3271" to="3414"/>
+      </rel>
+    </span>
+    <span id="s30_n4" from="3284" to="3288">
+      <rel label="DET">
+	<span from="3298" to="3305"/>
+      </rel>
+    </span>
+    <span id="s30_n5" from="3289" to="3297">
+      <rel label="ATTR">
+	<span from="3298" to="3305"/>
+      </rel>
+    </span>
+    <span id="s30_n6" from="3298" to="3305">
+      <rel label="SUBJ">
+	<span from="3279" to="3283"/>
+      </rel>
+    </span>
+    <span id="s30_n7" from="3306" to="3309">
+      <rel label="AVZ">
+	<span from="3279" to="3283"/>
+      </rel>
+    </span>
+    <span id="s30_n8" from="3309" to="3310">
+      <rel label="-PUNCT-">
+	<span from="3306" to="3309"/>
+      </rel>
+    </span>
+    <span id="s30_n9" from="3311" to="3316">
+      <rel label="DET">
+	<span from="3317" to="3323"/>
+      </rel>
+    </span>
+    <span id="s30_n10" from="3317" to="3323">
+      <rel label="OBJA">
+	<span from="3324" to="3331"/>
+      </rel>
+    </span>
+    <span id="s30_n11" from="3324" to="3331">
+      <rel label="KON">
+	<span from="3279" to="3283"/>
+      </rel>
+    </span>
+    <span id="s30_n12" from="3332" to="3335">
+      <rel label="SUBJ">
+	<span from="3324" to="3331"/>
+      </rel>
+    </span>
+    <span id="s30_n13" from="3336" to="3340">
+      <rel label="OBJD">
+	<span from="3324" to="3331"/>
+      </rel>
+    </span>
+    <span id="s30_n14" from="3341" to="3344">
+      <rel label="KOM">
+	<span from="3324" to="3331"/>
+      </rel>
+    </span>
+    <span id="s30_n15" from="3345" to="3353">
+      <rel label="CJ">
+	<span from="3341" to="3344"/>
+      </rel>
+    </span>
+    <span id="s30_n16" from="3354" to="3356">
+      <rel label="AVZ">
+	<span from="3324" to="3331"/>
+      </rel>
+    </span>
+    <span id="s30_n17" from="3356" to="3357">
+      <rel label="-PUNCT-">
+	<span from="3354" to="3356"/>
+      </rel>
+    </span>
+    <span id="s30_n18" from="3358" to="3361">
+      <rel label="KON">
+	<span from="3324" to="3331"/>
+      </rel>
+    </span>
+    <span id="s30_n19" from="3362" to="3367">
+      <rel label="DET">
+	<span from="3368" to="3378"/>
+      </rel>
+    </span>
+    <span id="s30_n20" from="3368" to="3378">
+      <rel label="SUBJ">
+	<span from="3379" to="3382"/>
+      </rel>
+    </span>
+    <span id="s30_n21" from="3379" to="3382">
+      <rel label="CJ">
+	<span from="3358" to="3361"/>
+      </rel>
+    </span>
+    <span id="s30_n22" from="3383" to="3386">
+      <rel label="DET">
+	<span from="3387" to="3392"/>
+      </rel>
+    </span>
+    <span id="s30_n23" from="3387" to="3392">
+      <rel label="PRED">
+	<span from="3379" to="3382"/>
+      </rel>
+    </span>
+    <span id="s30_n24" from="3393" to="3396">
+      <rel label="PP">
+	<span from="3387" to="3392"/>
+      </rel>
+    </span>
+    <span id="s30_n25" from="3397" to="3401">
+      <rel label="DET">
+	<span from="3408" to="3413"/>
+      </rel>
+    </span>
+    <span id="s30_n26" from="3402" to="3407">
+      <rel label="ATTR">
+	<span from="3408" to="3413"/>
+      </rel>
+    </span>
+    <span id="s30_n27" from="3408" to="3413">
+      <rel label="PN">
+	<span from="3393" to="3396"/>
+      </rel>
+    </span>
+    <span id="s30_n28" from="3413" to="3414">
+      <rel label="-PUNCT-">
+	<span from="3408" to="3413"/>
+      </rel>
+    </span>
+    <span id="s31_n1" from="3415" to="3420">
+      <rel label="ADV">
+	<span from="3421" to="3428"/>
+      </rel>
+    </span>
+    <span id="s31_n2" from="3421" to="3428">
+      <rel label="NEB">
+	<span from="3430" to="3435"/>
+      </rel>
+    </span>
+    <span id="s31_n3" from="3428" to="3429">
+      <rel label="-PUNCT-">
+	<span from="3421" to="3428"/>
+      </rel>
+    </span>
+    <span id="s31_n4" from="3430" to="3435">
+      <rel label="ROOT">
+	<span from="3415" to="3544"/>
+      </rel>
+    </span>
+    <span id="s31_n5" from="3436" to="3439">
+      <rel label="SUBJ">
+	<span from="3430" to="3435"/>
+      </rel>
+    </span>
+    <span id="s31_n6" from="3440" to="3443">
+      <rel label="OBJA">
+	<span from="3462" to="3473"/>
+      </rel>
+    </span>
+    <span id="s31_n7" from="3444" to="3448">
+      <rel label="ADV">
+	<span from="3462" to="3473"/>
+      </rel>
+    </span>
+    <span id="s31_n8" from="3449" to="3453">
+      <rel label="DET">
+	<span from="3454" to="3458"/>
+      </rel>
+    </span>
+    <span id="s31_n9" from="3454" to="3458">
+      <rel label="OBJA">
+	<span from="3462" to="3473"/>
+      </rel>
+    </span>
+    <span id="s31_n10" from="3459" to="3461">
+      <rel label="PART">
+	<span from="3462" to="3473"/>
+      </rel>
+    </span>
+    <span id="s31_n11" from="3462" to="3473">
+      <rel label="AUX">
+	<span from="3430" to="3435"/>
+      </rel>
+    </span>
+    <span id="s31_n12" from="3474" to="3477">
+      <rel label="KON">
+	<span from="3430" to="3435"/>
+      </rel>
+    </span>
+    <span id="s31_n13" from="3478" to="3483">
+      <rel label="PP">
+	<span from="3494" to="3506"/>
+      </rel>
+    </span>
+    <span id="s31_n14" from="3484" to="3490">
+      <rel label="PN">
+	<span from="3478" to="3483"/>
+      </rel>
+    </span>
+    <span id="s31_n15" from="3491" to="3493">
+      <rel label="PART">
+	<span from="3494" to="3506"/>
+      </rel>
+    </span>
+    <span id="s31_n16" from="3494" to="3506">
+      <rel label="CJ">
+	<span from="3474" to="3477"/>
+      </rel>
+    </span>
+    <span id="s31_n17" from="3506" to="3507">
+      <rel label="-PUNCT-">
+	<span from="3494" to="3506"/>
+      </rel>
+    </span>
+    <span id="s31_n18" from="3508" to="3512">
+      <rel label="KONJ">
+	<span from="3524" to="3526"/>
+      </rel>
+    </span>
+    <span id="s31_n19" from="3513" to="3517">
+      <rel label="ADV">
+	<span from="3524" to="3526"/>
+      </rel>
+    </span>
+    <span id="s31_n20" from="3518" to="3523">
+      <rel label="ADV">
+	<span from="3524" to="3526"/>
+      </rel>
+    </span>
+    <span id="s31_n21" from="3524" to="3526">
+      <rel label="ROOT">
+	<span from="3415" to="3544"/>
+      </rel>
+    </span>
+    <span id="s31_n22" from="3527" to="3537">
+      <rel label="ATTR">
+	<span from="3538" to="3543"/>
+      </rel>
+    </span>
+    <span id="s31_n23" from="3538" to="3543">
+      <rel label="PN">
+	<span from="3524" to="3526"/>
+      </rel>
+    </span>
+    <span id="s31_n24" from="3543" to="3544">
+      <rel label="-PUNCT-">
+	<span from="3538" to="3543"/>
+      </rel>
+    </span>
+    <span id="s32_n1" from="3545" to="3548">
+      <rel label="SUBJ">
+	<span from="3549" to="3557"/>
+      </rel>
+    </span>
+    <span id="s32_n2" from="3549" to="3557">
+      <rel label="ROOT">
+	<span from="3545" to="3631"/>
+      </rel>
+    </span>
+    <span id="s32_n3" from="3558" to="3562">
+      <rel label="OBJA">
+	<span from="3549" to="3557"/>
+      </rel>
+    </span>
+    <span id="s32_n4" from="3563" to="3566">
+      <rel label="KON">
+	<span from="3549" to="3557"/>
+      </rel>
+    </span>
+    <span id="s32_n5" from="3567" to="3571">
+      <rel label="CJ">
+	<span from="3563" to="3566"/>
+      </rel>
+    </span>
+    <span id="s32_n6" from="3572" to="3576">
+      <rel label="ADV">
+	<span from="3577" to="3585"/>
+      </rel>
+    </span>
+    <span id="s32_n7" from="3577" to="3585">
+      <rel label="KON">
+	<span from="3549" to="3557"/>
+      </rel>
+    </span>
+    <span id="s32_n8" from="3586" to="3590">
+      <rel label="PP">
+	<span from="3577" to="3585"/>
+      </rel>
+    </span>
+    <span id="s32_n9" from="3591" to="3597">
+      <rel label="PN">
+	<span from="3586" to="3590"/>
+      </rel>
+    </span>
+    <span id="s32_n10" from="3598" to="3601">
+      <rel label="KON">
+	<span from="3591" to="3597"/>
+      </rel>
+    </span>
+    <span id="s32_n11" from="3602" to="3609">
+      <rel label="CJ">
+	<span from="3598" to="3601"/>
+      </rel>
+    </span>
+    <span id="s32_n12" from="3610" to="3613">
+      <rel label="DET">
+	<span from="3614" to="3630"/>
+      </rel>
+    </span>
+    <span id="s32_n13" from="3614" to="3630">
+      <rel label="GMOD">
+	<span from="3591" to="3597"/>
+      </rel>
+    </span>
+    <span id="s32_n14" from="3630" to="3631">
+      <rel label="-PUNCT-">
+	<span from="3614" to="3630"/>
+      </rel>
+    </span>
+    <span id="s33_n1" from="3632" to="3635">
+      <rel label="OBJD">
+	<span from="3636" to="3639"/>
+      </rel>
+    </span>
+    <span id="s33_n2" from="3636" to="3639">
+      <rel label="ROOT">
+	<span from="3632" to="3645"/>
+      </rel>
+    </span>
+    <span id="s33_n3" from="3640" to="3644">
+      <rel label="PRED">
+	<span from="3636" to="3639"/>
+      </rel>
+    </span>
+    <span id="s33_n4" from="3644" to="3645">
+      <rel label="-PUNCT-">
+	<span from="3640" to="3644"/>
+      </rel>
+    </span>
+    <span id="s34_n1" from="3646" to="3653">
+      <rel label="AUX">
+	<span from="3654" to="3658"/>
+      </rel>
+    </span>
+    <span id="s34_n2" from="3654" to="3658">
+      <rel label="ROOT">
+	<span from="3646" to="3713"/>
+      </rel>
+    </span>
+    <span id="s34_n3" from="3659" to="3662">
+      <rel label="SUBJ">
+	<span from="3654" to="3658"/>
+      </rel>
+    </span>
+    <span id="s34_n4" from="3663" to="3666">
+      <rel label="KOM">
+	<span from="3703" to="3712"/>
+      </rel>
+    </span>
+    <span id="s34_n5" from="3667" to="3673">
+      <rel label="CJ">
+	<span from="3663" to="3666"/>
+      </rel>
+    </span>
+    <span id="s34_n6" from="3673" to="3674">
+      <rel label="-PUNCT-">
+	<span from="3667" to="3673"/>
+      </rel>
+    </span>
+    <span id="s34_n7" from="3675" to="3685">
+      <rel label="ADV">
+	<span from="3703" to="3712"/>
+      </rel>
+    </span>
+    <span id="s34_n8" from="3686" to="3689">
+      <rel label="KON">
+	<span from="3675" to="3685"/>
+      </rel>
+    </span>
+    <span id="s34_n9" from="3690" to="3702">
+      <rel label="CJ">
+	<span from="3686" to="3689"/>
+      </rel>
+    </span>
+    <span id="s34_n10" from="3703" to="3712">
+      <rel label="AUX">
+	<span from="3654" to="3658"/>
+      </rel>
+    </span>
+    <span id="s34_n11" from="3712" to="3713">
+      <rel label="-PUNCT-">
+	<span from="3703" to="3712"/>
+      </rel>
+    </span>
+    <span id="s35_n1" from="3714" to="3720">
+      <rel label="ROOT">
+	<span from="3714" to="3771"/>
+      </rel>
+    </span>
+    <span id="s35_n2" from="3721" to="3724">
+      <rel label="KOM">
+	<span from="3714" to="3720"/>
+      </rel>
+    </span>
+    <span id="s35_n3" from="3725" to="3731">
+      <rel label="CJ">
+	<span from="3721" to="3724"/>
+      </rel>
+    </span>
+    <span id="s35_n4" from="3731" to="3732">
+      <rel label="-PUNCT-">
+	<span from="3725" to="3731"/>
+      </rel>
+    </span>
+    <span id="s35_n5" from="3733" to="3743">
+      <rel label="ADV">
+	<span from="3759" to="3770"/>
+      </rel>
+    </span>
+    <span id="s35_n6" from="3744" to="3747">
+      <rel label="KON">
+	<span from="3733" to="3743"/>
+      </rel>
+    </span>
+    <span id="s35_n7" from="3748" to="3758">
+      <rel label="CJ">
+	<span from="3744" to="3747"/>
+      </rel>
+    </span>
+    <span id="s35_n8" from="3759" to="3770">
+      <rel label="ROOT">
+	<span from="3714" to="3771"/>
+      </rel>
+    </span>
+    <span id="s35_n9" from="3770" to="3771">
+      <rel label="-PUNCT-">
+	<span from="3759" to="3770"/>
+      </rel>
+    </span>
+    <span id="s36_n1" from="3772" to="3779">
+      <rel label="SUBJ">
+	<span from="3780" to="3783"/>
+      </rel>
+    </span>
+    <span id="s36_n2" from="3780" to="3783">
+      <rel label="ROOT">
+	<span from="3772" to="3882"/>
+      </rel>
+    </span>
+    <span id="s36_n3" from="3784" to="3787">
+      <rel label="DET">
+	<span from="3788" to="3793"/>
+      </rel>
+    </span>
+    <span id="s36_n4" from="3788" to="3793">
+      <rel label="PRED">
+	<span from="3780" to="3783"/>
+      </rel>
+    </span>
+    <span id="s36_n5" from="3794" to="3797">
+      <rel label="DET">
+	<span from="3813" to="3817"/>
+      </rel>
+    </span>
+    <span id="s36_n6" from="3798" to="3802">
+      <rel label="ADV">
+	<span from="3803" to="3812"/>
+      </rel>
+    </span>
+    <span id="s36_n7" from="3803" to="3812">
+      <rel label="ATTR">
+	<span from="3813" to="3817"/>
+      </rel>
+    </span>
+    <span id="s36_n8" from="3813" to="3817">
+      <rel label="GMOD">
+	<span from="3788" to="3793"/>
+      </rel>
+    </span>
+    <span id="s36_n9" from="3817" to="3818">
+      <rel label="-PUNCT-">
+	<span from="3813" to="3817"/>
+      </rel>
+    </span>
+    <span id="s36_n10" from="3819" to="3823">
+      <rel label="KONJ">
+	<span from="3857" to="3866"/>
+      </rel>
+    </span>
+    <span id="s36_n11" from="3823" to="3824">
+      <rel label="-PUNCT-">
+	<span from="3819" to="3823"/>
+      </rel>
+    </span>
+    <span id="s36_n12" from="3825" to="3832">
+      <rel label="KONJ">
+	<span from="3842" to="3847"/>
+      </rel>
+    </span>
+    <span id="s36_n13" from="3833" to="3836">
+      <rel label="DET">
+	<span from="3837" to="3841"/>
+      </rel>
+    </span>
+    <span id="s36_n14" from="3837" to="3841">
+      <rel label="SUBJ">
+	<span from="3842" to="3847"/>
+      </rel>
+    </span>
+    <span id="s36_n15" from="3842" to="3847">
+      <rel label="NEB">
+	<span from="3857" to="3866"/>
+      </rel>
+    </span>
+    <span id="s36_n16" from="3847" to="3848">
+      <rel label="-PUNCT-">
+	<span from="3842" to="3847"/>
+      </rel>
+    </span>
+    <span id="s36_n17" from="3849" to="3856">
+      <rel label="SUBJ">
+	<span from="3857" to="3866"/>
+      </rel>
+    </span>
+    <span id="s36_n18" from="3857" to="3866">
+      <rel label="NEB">
+	<span from="3780" to="3783"/>
+      </rel>
+    </span>
+    <span id="s36_n19" from="3867" to="3870">
+      <rel label="KON">
+	<span from="3857" to="3866"/>
+      </rel>
+    </span>
+    <span id="s36_n20" from="3871" to="3876">
+      <rel label="CJ">
+	<span from="3867" to="3870"/>
+      </rel>
+    </span>
+    <span id="s36_n21" from="3877" to="3881">
+      <rel label="ROOT">
+	<span from="3772" to="3882"/>
+      </rel>
+    </span>
+    <span id="s36_n22" from="3881" to="3882">
+      <rel label="-PUNCT-">
+	<span from="3877" to="3881"/>
+      </rel>
+    </span>
+    <span id="s37_n1" from="3883" to="3886">
+      <rel label="SUBJ">
+	<span from="3887" to="3895"/>
+      </rel>
+    </span>
+    <span id="s37_n2" from="3887" to="3895">
+      <rel label="ROOT">
+	<span from="3883" to="3938"/>
+      </rel>
+    </span>
+    <span id="s37_n3" from="3896" to="3898">
+      <rel label="OBJA">
+	<span from="3887" to="3895"/>
+      </rel>
+    </span>
+    <span id="s37_n4" from="3899" to="3901">
+      <rel label="PP">
+	<span from="3887" to="3895"/>
+      </rel>
+    </span>
+    <span id="s37_n5" from="3902" to="3908">
+      <rel label="PN">
+	<span from="3899" to="3901"/>
+      </rel>
+    </span>
+    <span id="s37_n6" from="3909" to="3912">
+      <rel label="KON">
+	<span from="3887" to="3895"/>
+      </rel>
+    </span>
+    <span id="s37_n7" from="3913" to="3921">
+      <rel label="CJ">
+	<span from="3909" to="3912"/>
+      </rel>
+    </span>
+    <span id="s37_n8" from="3922" to="3924">
+      <rel label="OBJA">
+	<span from="3913" to="3921"/>
+      </rel>
+    </span>
+    <span id="s37_n9" from="3925" to="3927">
+      <rel label="PP">
+	<span from="3913" to="3921"/>
+      </rel>
+    </span>
+    <span id="s37_n10" from="3928" to="3937">
+      <rel label="PN">
+	<span from="3925" to="3927"/>
+      </rel>
+    </span>
+    <span id="s37_n11" from="3937" to="3938">
+      <rel label="-PUNCT-">
+	<span from="3928" to="3937"/>
+      </rel>
+    </span>
+    <span id="s38_n1" from="3939" to="3942">
+      <rel label="SUBJ">
+	<span from="3954" to="3964"/>
+      </rel>
+    </span>
+    <span id="s38_n2" from="3943" to="3947">
+      <rel label="ADV">
+	<span from="3948" to="3953"/>
+      </rel>
+    </span>
+    <span id="s38_n3" from="3948" to="3953">
+      <rel label="OBJI">
+	<span from="3954" to="3964"/>
+      </rel>
+    </span>
+    <span id="s38_n4" from="3954" to="3964">
+      <rel label="ROOT">
+	<span from="3939" to="3965"/>
+      </rel>
+    </span>
+    <span id="s38_n5" from="3964" to="3965">
+      <rel label="-PUNCT-">
+	<span from="3954" to="3964"/>
+      </rel>
+    </span>
+    <span id="s39_n1" from="3966" to="3968">
+      <rel label="PP">
+	<span from="3976" to="3979"/>
+      </rel>
+    </span>
+    <span id="s39_n2" from="3969" to="3975">
+      <rel label="PN">
+	<span from="3966" to="3968"/>
+      </rel>
+    </span>
+    <span id="s39_n3" from="3976" to="3979">
+      <rel label="ROOT">
+	<span from="3966" to="4020"/>
+      </rel>
+    </span>
+    <span id="s39_n4" from="3980" to="3982">
+      <rel label="SUBJ">
+	<span from="3976" to="3979"/>
+      </rel>
+    </span>
+    <span id="s39_n5" from="3983" to="3992">
+      <rel label="PRED">
+	<span from="3976" to="3979"/>
+      </rel>
+    </span>
+    <span id="s39_n6" from="3993" to="3996">
+      <rel label="KON">
+	<span from="3976" to="3979"/>
+      </rel>
+    </span>
+    <span id="s39_n7" from="3997" to="3999">
+      <rel label="PP">
+	<span from="4010" to="4019"/>
+      </rel>
+    </span>
+    <span id="s39_n8" from="4000" to="4009">
+      <rel label="PN">
+	<span from="3997" to="3999"/>
+      </rel>
+    </span>
+    <span id="s39_n9" from="4010" to="4019">
+      <rel label="CJ">
+	<span from="3993" to="3996"/>
+      </rel>
+    </span>
+    <span id="s39_n10" from="4019" to="4020">
+      <rel label="-PUNCT-">
+	<span from="4010" to="4019"/>
+      </rel>
+    </span>
+    <span id="s40_n1" from="4021" to="4024">
+      <rel label="SUBJ">
+	<span from="4025" to="4028"/>
+      </rel>
+    </span>
+    <span id="s40_n2" from="4025" to="4028">
+      <rel label="ROOT">
+	<span from="4021" to="4352"/>
+      </rel>
+    </span>
+    <span id="s40_n3" from="4029" to="4038">
+      <rel label="PRED">
+	<span from="4025" to="4028"/>
+      </rel>
+    </span>
+    <span id="s40_n4" from="4038" to="4039">
+      <rel label="-PUNCT-">
+	<span from="4029" to="4038"/>
+      </rel>
+    </span>
+    <span id="s40_n5" from="4040" to="4043">
+      <rel label="KONJ">
+	<span from="4068" to="4072"/>
+      </rel>
+    </span>
+    <span id="s40_n6" from="4044" to="4047">
+      <rel label="DET">
+	<span from="4048" to="4053"/>
+      </rel>
+    </span>
+    <span id="s40_n7" from="4048" to="4053">
+      <rel label="SUBJ">
+	<span from="4068" to="4072"/>
+      </rel>
+    </span>
+    <span id="s40_n8" from="4054" to="4059">
+      <rel label="ADV">
+	<span from="4060" to="4067"/>
+      </rel>
+    </span>
+    <span id="s40_n9" from="4060" to="4067">
+      <rel label="PRED">
+	<span from="4068" to="4072"/>
+      </rel>
+    </span>
+    <span id="s40_n10" from="4068" to="4072">
+      <rel label="NEB">
+	<span from="4025" to="4028"/>
+      </rel>
+    </span>
+    <span id="s40_n11" from="4072" to="4073">
+      <rel label="-PUNCT-">
+	<span from="4068" to="4072"/>
+      </rel>
+    </span>
+    <span id="s40_n12" from="4074" to="4076">
+      <rel label="KONJ">
+	<span from="4090" to="4098"/>
+      </rel>
+    </span>
+    <span id="s40_n13" from="4077" to="4081">
+      <rel label="ADV">
+	<span from="4090" to="4098"/>
+      </rel>
+    </span>
+    <span id="s40_n14" from="4082" to="4085">
+      <rel label="SUBJ">
+	<span from="4090" to="4098"/>
+      </rel>
+    </span>
+    <span id="s40_n15" from="4086" to="4089">
+      <rel label="OBJA">
+	<span from="4090" to="4098"/>
+      </rel>
+    </span>
+    <span id="s40_n16" from="4090" to="4098">
+      <rel label="ROOT">
+	<span from="4021" to="4352"/>
+      </rel>
+    </span>
+    <span id="s40_n17" from="4098" to="4099">
+      <rel label="-PUNCT-">
+	<span from="4090" to="4098"/>
+      </rel>
+    </span>
+    <span id="s40_n18" from="4100" to="4103">
+      <rel label="SUBJ">
+	<span from="4104" to="4109"/>
+      </rel>
+    </span>
+    <span id="s40_n19" from="4104" to="4109">
+      <rel label="ROOT">
+	<span from="4021" to="4352"/>
+      </rel>
+    </span>
+    <span id="s40_n20" from="4109" to="4110">
+      <rel label="-PUNCT-">
+	<span from="4104" to="4109"/>
+      </rel>
+    </span>
+    <span id="s40_n21" from="4111" to="4113">
+      <rel label="KONJ">
+	<span from="4123" to="4131"/>
+      </rel>
+    </span>
+    <span id="s40_n22" from="4114" to="4118">
+      <rel label="ADV">
+	<span from="4123" to="4131"/>
+      </rel>
+    </span>
+    <span id="s40_n23" from="4119" to="4122">
+      <rel label="SUBJ">
+	<span from="4123" to="4131"/>
+      </rel>
+    </span>
+    <span id="s40_n24" from="4123" to="4131">
+      <rel label="OBJC">
+	<span from="4104" to="4109"/>
+      </rel>
+    </span>
+    <span id="s40_n25" from="4132" to="4135">
+      <rel label="KON">
+	<span from="4123" to="4131"/>
+      </rel>
+    </span>
+    <span id="s40_n26" from="4136" to="4144">
+      <rel label="CJ">
+	<span from="4132" to="4135"/>
+      </rel>
+    </span>
+    <span id="s40_n27" from="4144" to="4145">
+      <rel label="-PUNCT-">
+	<span from="4136" to="4144"/>
+      </rel>
+    </span>
+    <span id="s40_n28" from="4146" to="4149">
+      <rel label="KONJ">
+	<span from="4348" to="4351"/>
+      </rel>
+    </span>
+    <span id="s40_n29" from="4150" to="4155">
+      <rel label="DET">
+	<span from="4156" to="4160"/>
+      </rel>
+    </span>
+    <span id="s40_n30" from="4156" to="4160">
+      <rel label="SUBJ">
+	<span from="4348" to="4351"/>
+      </rel>
+    </span>
+    <span id="s40_n31" from="4160" to="4161">
+      <rel label="-PUNCT-">
+	<span from="4156" to="4160"/>
+      </rel>
+    </span>
+    <span id="s40_n32" from="4162" to="4165">
+      <rel label="SUBJ">
+	<span from="4298" to="4307"/>
+      </rel>
+    </span>
+    <span id="s40_n33" from="4166" to="4169">
+      <rel label="SUBJ">
+	<span from="4180" to="4189"/>
+      </rel>
+    </span>
+    <span id="s40_n34" from="4170" to="4179">
+      <rel label="ADV">
+	<span from="4180" to="4189"/>
+      </rel>
+    </span>
+    <span id="s40_n35" from="4180" to="4189">
+      <rel label="OBJI">
+	<span from="4298" to="4307"/>
+      </rel>
+    </span>
+    <span id="s40_n36" from="4190" to="4193">
+      <rel label="KON">
+	<span from="4180" to="4189"/>
+      </rel>
+    </span>
+    <span id="s40_n37" from="4194" to="4196">
+      <rel label="PP">
+	<span from="4216" to="4224"/>
+      </rel>
+    </span>
+    <span id="s40_n38" from="4197" to="4207">
+      <rel label="PN">
+	<span from="4194" to="4196"/>
+      </rel>
+    </span>
+    <span id="s40_n39" from="4208" to="4211">
+      <rel label="PP">
+	<span from="4216" to="4224"/>
+      </rel>
+    </span>
+    <span id="s40_n40" from="4212" to="4215">
+      <rel label="PN">
+	<span from="4208" to="4211"/>
+      </rel>
+    </span>
+    <span id="s40_n41" from="4216" to="4224">
+      <rel label="CJ">
+	<span from="4190" to="4193"/>
+      </rel>
+    </span>
+    <span id="s40_n42" from="4224" to="4225">
+      <rel label="-PUNCT-">
+	<span from="4216" to="4224"/>
+      </rel>
+    </span>
+    <span id="s40_n43" from="4226" to="4230">
+      <rel label="PP">
+	<span from="4290" to="4296"/>
+      </rel>
+    </span>
+    <span id="s40_n44" from="4231" to="4239">
+      <rel label="ATTR">
+	<span from="4240" to="4249"/>
+      </rel>
+    </span>
+    <span id="s40_n45" from="4240" to="4249">
+      <rel label="PN">
+	<span from="4226" to="4230"/>
+      </rel>
+    </span>
+    <span id="s40_n46" from="4249" to="4250">
+      <rel label="-PUNCT-">
+	<span from="4240" to="4249"/>
+      </rel>
+    </span>
+    <span id="s40_n47" from="4251" to="4255">
+      <rel label="KON">
+	<span from="4226" to="4230"/>
+      </rel>
+    </span>
+    <span id="s40_n48" from="4256" to="4261">
+      <rel label="PN">
+	<span from="4251" to="4255"/>
+      </rel>
+    </span>
+    <span id="s40_n49" from="4262" to="4265">
+      <rel label="KON">
+	<span from="4256" to="4261"/>
+      </rel>
+    </span>
+    <span id="s40_n50" from="4266" to="4283">
+      <rel label="CJ">
+	<span from="4262" to="4265"/>
+      </rel>
+</span>
+<span id="s40_n51" from="4284" to="4289">
+<rel label="DET">
+<span from="4290" to="4296"/>
+</rel>
+</span>
+<span id="s40_n52" from="4290" to="4296">
+<rel label="OBJA">
+<span from="4298" to="4307"/>
+</rel>
+</span>
+<span id="s40_n53" from="4296" to="4297">
+<rel label="-PUNCT-">
+<span from="4290" to="4296"/>
+</rel>
+</span>
+<span id="s40_n54" from="4298" to="4307">
+<rel label="REL">
+<span from="4156" to="4160"/>
+</rel>
+</span>
+<span id="s40_n55" from="4307" to="4308">
+<rel label="-PUNCT-">
+<span from="4298" to="4307"/>
+</rel>
+</span>
+<span id="s40_n56" from="4309" to="4320">
+<rel label="ADV">
+<span from="4321" to="4334"/>
+</rel>
+</span>
+<span id="s40_n57" from="4321" to="4334">
+<rel label="ATTR">
+<span from="4335" to="4340"/>
+</rel>
+</span>
+<span id="s40_n58" from="4335" to="4340">
+<rel label="OBJA">
+<span from="4341" to="4347"/>
+</rel>
+</span>
+<span id="s40_n59" from="4341" to="4347">
+<rel label="AUX">
+<span from="4348" to="4351"/>
+</rel>
+</span>
+<span id="s40_n60" from="4348" to="4351">
+<rel label="OBJC">
+<span from="4136" to="4144"/>
+</rel>
+</span>
+<span id="s40_n61" from="4351" to="4352">
+<rel label="-PUNCT-">
+<span from="4348" to="4351"/>
+</rel>
+</span>
+<span id="s41_n1" from="4364" to="4371">
+<rel label="PRED">
+<span from="4372" to="4376"/>
+</rel>
+</span>
+<span id="s41_n2" from="4372" to="4376">
+<rel label="ROOT">
+<span from="4364" to="4787"/>
+</rel>
+</span>
+<span id="s41_n3" from="4377" to="4379">
+<rel label="SUBJ">
+<span from="4372" to="4376"/>
+</rel>
+</span>
+<span id="s41_n4" from="4379" to="4380">
+<rel label="-PUNCT-">
+<span from="4377" to="4379"/>
+</rel>
+</span>
+<span id="s41_n5" from="4381" to="4384">
+<rel label="ROOT">
+<span from="4364" to="4787"/>
+</rel>
+</span>
+<span id="s41_n6" from="4385" to="4393">
+<rel label="ROOT">
+<span from="4364" to="4787"/>
+</rel>
+</span>
+<span id="s41_n7" from="4394" to="4399">
+<rel label="ADV">
+<span from="4418" to="4434"/>
+</rel>
+</span>
+<span id="s41_n8" from="4400" to="4408">
+<rel label="OBJA">
+<span from="4418" to="4434"/>
+</rel>
+</span>
+<span id="s41_n9" from="4409" to="4417">
+<rel label="ADV">
+<span from="4418" to="4434"/>
+</rel>
+</span>
+<span id="s41_n10" from="4418" to="4434">
+<rel label="ROOT">
+<span from="4364" to="4787"/>
+</rel>
+</span>
+<span id="s41_n11" from="4435" to="4438">
+<rel label="KON">
+<span from="4418" to="4434"/>
+</rel>
+</span>
+<span id="s41_n12" from="4439" to="4441">
+<rel label="PART">
+<span from="4442" to="4448"/>
+</rel>
+</span>
+<span id="s41_n13" from="4442" to="4448">
+<rel label="CJ">
+<span from="4435" to="4438"/>
+</rel>
+</span>
+<span id="s41_n14" from="4448" to="4449">
+<rel label="-PUNCT-">
+<span from="4442" to="4448"/>
+</rel>
+</span>
+<span id="s41_n15" from="4450" to="4453">
+<rel label="ROOT">
+<span from="4364" to="4787"/>
+</rel>
+</span>
+<span id="s41_n16" from="4454" to="4460">
+<rel label="ROOT">
+<span from="4364" to="4787"/>
+</rel>
+</span>
+<span id="s41_n17" from="4461" to="4465">
+<rel label="DET">
+<span from="4481" to="4490"/>
+</rel>
+</span>
+<span id="s41_n18" from="4466" to="4480">
+<rel label="ATTR">
+<span from="4481" to="4490"/>
+</rel>
+</span>
+<span id="s41_n19" from="4481" to="4490">
+<rel label="ROOT">
+<span from="4364" to="4787"/>
+</rel>
+</span>
+<span id="s41_n20" from="4490" to="4491">
+<rel label="-PUNCT-">
+<span from="4481" to="4490"/>
+</rel>
+</span>
+<span id="s41_n21" from="4492" to="4495">
+<rel label="ROOT">
+<span from="4364" to="4787"/>
+</rel>
+</span>
+<span id="s41_n22" from="4496" to="4501">
+<rel label="PN">
+<span from="4492" to="4495"/>
+</rel>
+</span>
+<span id="s41_n23" from="4502" to="4505">
+<rel label="DET">
+<span from="4506" to="4515"/>
+</rel>
+</span>
+<span id="s41_n24" from="4506" to="4515">
+<rel label="GMOD">
+<span from="4496" to="4501"/>
+</rel>
+</span>
+<span id="s41_n25" from="4516" to="4521">
+<rel label="ROOT">
+<span from="4364" to="4787"/>
+</rel>
+</span>
+<span id="s41_n26" from="4522" to="4525">
+<rel label="DET">
+<span from="4533" to="4545"/>
+</rel>
+</span>
+<span id="s41_n27" from="4526" to="4532">
+<rel label="ATTR">
+<span from="4533" to="4545"/>
+</rel>
+</span>
+<span id="s41_n28" from="4533" to="4545">
+<rel label="SUBJ">
+<span from="4571" to="4577"/>
+</rel>
+</span>
+<span id="s41_n29" from="4546" to="4553">
+<rel label="DET">
+<span from="4554" to="4557"/>
+</rel>
+</span>
+<span id="s41_n30" from="4554" to="4557">
+<rel label="GMOD">
+<span from="4533" to="4545"/>
+</rel>
+</span>
+<span id="s41_n31" from="4558" to="4570">
+<rel label="AUX">
+<span from="4571" to="4577"/>
+</rel>
+</span>
+<span id="s41_n32" from="4571" to="4577">
+<rel label="ROOT">
+<span from="4364" to="4787"/>
+</rel>
+</span>
+<span id="s41_n33" from="4578" to="4581">
+<rel label="KON">
+<span from="4571" to="4577"/>
+</rel>
+</span>
+<span id="s41_n34" from="4582" to="4587">
+<rel label="PP">
+<span from="4611" to="4617"/>
+</rel>
+</span>
+<span id="s41_n35" from="4588" to="4593">
+<rel label="DET">
+<span from="4594" to="4599"/>
+</rel>
+</span>
+<span id="s41_n36" from="4594" to="4599">
+<rel label="SUBJ">
+<span from="4611" to="4617"/>
+</rel>
+</span>
+<span id="s41_n37" from="4600" to="4605">
+<rel label="ADV">
+<span from="4611" to="4617"/>
+</rel>
+</span>
+<span id="s41_n38" from="4606" to="4610">
+<rel label="ADV">
+<span from="4611" to="4617"/>
+</rel>
+</span>
+<span id="s41_n39" from="4611" to="4617">
+<rel label="CJ">
+<span from="4578" to="4581"/>
+</rel>
+</span>
+<span id="s41_n40" from="4617" to="4618">
+<rel label="-PUNCT-">
+<span from="4611" to="4617"/>
+</rel>
+</span>
+<span id="s41_n41" from="4619" to="4622">
+<rel label="DET">
+<span from="4635" to="4642"/>
+</rel>
+</span>
+<span id="s41_n42" from="4623" to="4634">
+<rel label="ATTR">
+<span from="4635" to="4642"/>
+</rel>
+</span>
+<span id="s41_n43" from="4635" to="4642">
+<rel label="PRED">
+<span from="4643" to="4647"/>
+</rel>
+</span>
+<span id="s41_n44" from="4643" to="4647">
+<rel label="ROOT">
+<span from="4364" to="4787"/>
+</rel>
+</span>
+<span id="s41_n45" from="4647" to="4648">
+<rel label="-PUNCT-">
+<span from="4643" to="4647"/>
+</rel>
+</span>
+<span id="s41_n46" from="4649" to="4654">
+<rel label="ROOT">
+<span from="4364" to="4787"/>
+</rel>
+</span>
+<span id="s41_n47" from="4655" to="4658">
+<rel label="DET">
+<span from="4659" to="4670"/>
+</rel>
+</span>
+<span id="s41_n48" from="4659" to="4670">
+<rel label="SUBJ">
+<span from="4780" to="4786"/>
+</rel>
+</span>
+<span id="s41_n49" from="4671" to="4673">
+<rel label="PP">
+<span from="4767" to="4779"/>
+</rel>
+</span>
+<span id="s41_n50" from="4674" to="4680">
+<rel label="DET">
+<span from="4681" to="4688"/>
+</rel>
+</span>
+<span id="s41_n51" from="4681" to="4688">
+<rel label="PN">
+<span from="4671" to="4673"/>
+</rel>
+</span>
+<span id="s41_n52" from="4689" to="4692">
+<rel label="DET">
+<span from="4693" to="4704"/>
+</rel>
+</span>
+<span id="s41_n53" from="4693" to="4704">
+<rel label="GMOD">
+<span from="4681" to="4688"/>
+</rel>
+</span>
+<span id="s41_n54" from="4705" to="4708">
+<rel label="KON">
+<span from="4693" to="4704"/>
+</rel>
+</span>
+<span id="s41_n55" from="4709" to="4726">
+<rel label="CJ">
+<span from="4705" to="4708"/>
+</rel>
+</span>
+<span id="s41_n56" from="4727" to="4729">
+<rel label="PP">
+<span from="4681" to="4688"/>
+</rel>
+</span>
+<span id="s41_n57" from="4730" to="4736">
+<rel label="DET">
+<span from="4744" to="4753"/>
+</rel>
+</span>
+<span id="s41_n58" from="4737" to="4743">
+<rel label="ATTR">
+<span from="4744" to="4753"/>
+</rel>
+</span>
+<span id="s41_n59" from="4744" to="4753">
+<rel label="PN">
+<span from="4727" to="4729"/>
+</rel>
+</span>
+<span id="s41_n60" from="4754" to="4757">
+<rel label="KON">
+<span from="4744" to="4753"/>
+</rel>
+</span>
+<span id="s41_n61" from="4758" to="4766">
+<rel label="CJ">
+<span from="4754" to="4757"/>
+</rel>
+</span>
+<span id="s41_n62" from="4767" to="4779">
+<rel label="AUX">
+<span from="4780" to="4786"/>
+</rel>
+</span>
+<span id="s41_n63" from="4780" to="4786">
+<rel label="ROOT">
+<span from="4364" to="4787"/>
+</rel>
+</span>
+<span id="s41_n64" from="4786" to="4787">
+<rel label="-PUNCT-">
+<span from="4780" to="4786"/>
+</rel>
+</span>
+<span id="s42_n1" from="4788" to="4791">
+<rel label="DET">
+<span from="4803" to="4807"/>
+</rel>
+</span>
+<span id="s42_n2" from="4792" to="4802">
+<rel label="ATTR">
+<span from="4803" to="4807"/>
+</rel>
+</span>
+<span id="s42_n3" from="4803" to="4807">
+<rel label="SUBJ">
+<span from="4841" to="4848"/>
+</rel>
+</span>
+<span id="s42_n4" from="4808" to="4814">
+<rel label="DET">
+<span from="4826" to="4840"/>
+</rel>
+</span>
+<span id="s42_n5" from="4815" to="4825">
+<rel label="ATTR">
+<span from="4826" to="4840"/>
+</rel>
+</span>
+<span id="s42_n6" from="4826" to="4840">
+<rel label="GMOD">
+<span from="4803" to="4807"/>
+</rel>
+</span>
+<span id="s42_n7" from="4841" to="4848">
+<rel label="ROOT">
+<span from="4788" to="5025"/>
+</rel>
+</span>
+<span id="s42_n8" from="4849" to="4854">
+<rel label="OBJP">
+<span from="4841" to="4848"/>
+</rel>
+</span>
+<span id="s42_n9" from="4854" to="4855">
+<rel label="-PUNCT-">
+<span from="4849" to="4854"/>
+</rel>
+</span>
+<span id="s42_n10" from="4856" to="4859">
+<rel label="KONJ">
+<span from="4952" to="4956"/>
+</rel>
+</span>
+<span id="s42_n11" from="4860" to="4863">
+<rel label="DET">
+<span from="4869" to="4873"/>
+</rel>
+</span>
+<span id="s42_n12" from="4864" to="4868">
+<rel label="DET">
+<span from="4869" to="4873"/>
+</rel>
+</span>
+<span id="s42_n13" from="4869" to="4873">
+<rel label="SUBJ">
+<span from="4952" to="4956"/>
+</rel>
+</span>
+<span id="s42_n14" from="4874" to="4877">
+<rel label="PP">
+<span from="4939" to="4951"/>
+</rel>
+</span>
+<span id="s42_n15" from="4878" to="4885">
+<rel label="PN">
+<span from="4874" to="4877"/>
+</rel>
+</span>
+<span id="s42_n16" from="4886" to="4889">
+<rel label="KON">
+<span from="4878" to="4885"/>
+</rel>
+</span>
+<span id="s42_n17" from="4890" to="4895">
+<rel label="ATTR">
+<span from="4896" to="4901"/>
+</rel>
+</span>
+<span id="s42_n18" from="4896" to="4901">
+<rel label="CJ">
+<span from="4886" to="4889"/>
+</rel>
+</span>
+<span id="s42_n19" from="4902" to="4905">
+<rel label="DET">
+<span from="4914" to="4923"/>
+</rel>
+</span>
+<span id="s42_n20" from="4906" to="4913">
+<rel label="ATTR">
+<span from="4914" to="4923"/>
+</rel>
+</span>
+<span id="s42_n21" from="4914" to="4923">
+<rel label="OBJA">
+<span from="4939" to="4951"/>
+</rel>
+</span>
+<span id="s42_n22" from="4924" to="4927">
+<rel label="DET">
+<span from="4928" to="4938"/>
+</rel>
+</span>
+<span id="s42_n23" from="4928" to="4938">
+<rel label="GMOD">
+<span from="4914" to="4923"/>
+</rel>
+</span>
+<span id="s42_n24" from="4939" to="4951">
+<rel label="AUX">
+<span from="4952" to="4956"/>
+</rel>
+</span>
+<span id="s42_n25" from="4952" to="4956">
+<rel label="NEB">
+<span from="4841" to="4848"/>
+</rel>
+</span>
+<span id="s42_n26" from="4956" to="4957">
+<rel label="-PUNCT-">
+<span from="4952" to="4956"/>
+</rel>
+</span>
+<span id="s42_n27" from="4958" to="4961">
+<rel label="OBJD">
+<span from="5016" to="5024"/>
+</rel>
+</span>
+<span id="s42_n28" from="4962" to="4968">
+<rel label="SUBJ">
+<span from="5016" to="5024"/>
+</rel>
+</span>
+<span id="s42_n29" from="4969" to="4973">
+<rel label="KON">
+<span from="5016" to="5024"/>
+</rel>
+</span>
+<span id="s42_n30" from="4974" to="4976">
+<rel label="OBJA">
+<span from="4983" to="4992"/>
+</rel>
+</span>
+<span id="s42_n31" from="4977" to="4979">
+<rel label="ADV">
+<span from="4983" to="4992"/>
+</rel>
+</span>
+<span id="s42_n32" from="4980" to="4982">
+<rel label="PART">
+<span from="4983" to="4992"/>
+</rel>
+</span>
+<span id="s42_n33" from="4983" to="4992">
+<rel label="OBJI">
+<span from="4993" to="4998"/>
+</rel>
+</span>
+<span id="s42_n34" from="4993" to="4998">
+<rel label="CJ">
+<span from="4969" to="4973"/>
+</rel>
+</span>
+<span id="s42_n35" from="4998" to="4999">
+<rel label="-PUNCT-">
+<span from="4993" to="4998"/>
+</rel>
+</span>
+<span id="s42_n36" from="5000" to="5002">
+<rel label="ADV">
+<span from="5016" to="5024"/>
+</rel>
+</span>
+<span id="s42_n37" from="5003" to="5007">
+<rel label="OBJA">
+<span from="5016" to="5024"/>
+</rel>
+</span>
+<span id="s42_n38" from="5008" to="5015">
+<rel label="SUBJ">
+<span from="5016" to="5024"/>
+</rel>
+</span>
+<span id="s42_n39" from="5016" to="5024">
+<rel label="ROOT">
+<span from="4788" to="5025"/>
+</rel>
+</span>
+<span id="s42_n40" from="5024" to="5025">
+<rel label="-PUNCT-">
+<span from="5016" to="5024"/>
+</rel>
+</span>
+<span id="s43_n1" from="5026" to="5029">
+<rel label="DET">
+<span from="5030" to="5038"/>
+</rel>
+</span>
+<span id="s43_n2" from="5030" to="5038">
+<rel label="SUBJ">
+<span from="5159" to="5164"/>
+</rel>
+</span>
+<span id="s43_n3" from="5038" to="5039">
+<rel label="-PUNCT-">
+<span from="5030" to="5038"/>
+</rel>
+</span>
+<span id="s43_n4" from="5040" to="5043">
+<rel label="PP">
+<span from="5048" to="5058"/>
+</rel>
+</span>
+<span id="s43_n5" from="5044" to="5047">
+<rel label="PN">
+<span from="5040" to="5043"/>
+</rel>
+</span>
+<span id="s43_n6" from="5048" to="5058">
+<rel label="APP">
+<span from="5030" to="5038"/>
+</rel>
+</span>
+<span id="s43_n7" from="5058" to="5059">
+<rel label="-PUNCT-">
+<span from="5048" to="5058"/>
+</rel>
+</span>
+<span id="s43_n8" from="5060" to="5066">
+<rel label="ATTR">
+<span from="5067" to="5082"/>
+</rel>
+</span>
+<span id="s43_n9" from="5067" to="5082">
+<rel label="KON">
+<span from="5048" to="5058"/>
+</rel>
+</span>
+<span id="s43_n10" from="5082" to="5083">
+<rel label="-PUNCT-">
+<span from="5067" to="5082"/>
+</rel>
+</span>
+<span id="s43_n11" from="5084" to="5088">
+<rel label="ADV">
+<span from="5030" to="5038"/>
+</rel>
+</span>
+<span id="s43_n12" from="5088" to="5089">
+<rel label="-PUNCT-">
+<span from="5084" to="5088"/>
+</rel>
+</span>
+<span id="s43_n13" from="5090" to="5095">
+<rel label="ADV">
+<span from="5096" to="5103"/>
+</rel>
+</span>
+<span id="s43_n14" from="5096" to="5103">
+<rel label="-UNKNOWN-">
+<span from="5030" to="5038"/>
+</rel>
+</span>
+<span id="s43_n15" from="5103" to="5104">
+<rel label="-PUNCT-">
+<span from="5096" to="5103"/>
+</rel>
+</span>
+<span id="s43_n16" from="5105" to="5108">
+<rel label="PP">
+<span from="5159" to="5164"/>
+</rel>
+</span>
+<span id="s43_n17" from="5109" to="5114">
+<rel label="DET">
+<span from="5148" to="5158"/>
+</rel>
+</span>
+<span id="s43_n18" from="5115" to="5123">
+<rel label="ATTR">
+<span from="5148" to="5158"/>
+</rel>
+</span>
+<span id="s43_n19" from="5123" to="5124">
+<rel label="-PUNCT-">
+<span from="5115" to="5123"/>
+</rel>
+</span>
+<span id="s43_n20" from="5125" to="5127">
+<rel label="ADV">
+<span from="5128" to="5135"/>
+</rel>
+</span>
+<span id="s43_n21" from="5128" to="5135">
+<rel label="KON">
+<span from="5115" to="5123"/>
+</rel>
+</span>
+<span id="s43_n22" from="5136" to="5147">
+<rel label="ATTR">
+<span from="5148" to="5158"/>
+</rel>
+</span>
+<span id="s43_n23" from="5148" to="5158">
+<rel label="PN">
+<span from="5105" to="5108"/>
+</rel>
+</span>
+<span id="s43_n24" from="5159" to="5164">
+<rel label="ROOT">
+<span from="5026" to="5210"/>
+</rel>
+</span>
+<span id="s43_n25" from="5165" to="5168">
+<rel label="OBJA">
+<span from="5159" to="5164"/>
+</rel>
+</span>
+<span id="s43_n26" from="5169" to="5176">
+<rel label="PRED">
+<span from="5159" to="5164"/>
+</rel>
+</span>
+<span id="s43_n27" from="5176" to="5177">
+<rel label="-PUNCT-">
+<span from="5169" to="5176"/>
+</rel>
+</span>
+<span id="s43_n28" from="5178" to="5181">
+<rel label="KON">
+<span from="5159" to="5164"/>
+</rel>
+</span>
+<span id="s43_n29" from="5182" to="5185">
+<rel label="SUBJ">
+<span from="5186" to="5197"/>
+</rel>
+</span>
+<span id="s43_n30" from="5186" to="5197">
+<rel label="CJ">
+<span from="5178" to="5181"/>
+</rel>
+</span>
+<span id="s43_n31" from="5198" to="5202">
+<rel label="OBJA">
+<span from="5186" to="5197"/>
+</rel>
+</span>
+<span id="s43_n32" from="5203" to="5209">
+<rel label="ADV">
+<span from="5186" to="5197"/>
+</rel>
+</span>
+<span id="s43_n33" from="5209" to="5210">
+<rel label="-PUNCT-">
+<span from="5203" to="5209"/>
+</rel>
+</span>
+<span id="s44_n1" from="5211" to="5214">
+<rel label="KONJ">
+<span from="5260" to="5264"/>
+</rel>
+</span>
+<span id="s44_n2" from="5215" to="5223">
+<rel label="SUBJ">
+<span from="5260" to="5264"/>
+</rel>
+</span>
+<span id="s44_n3" from="5224" to="5227">
+<rel label="PP">
+<span from="5260" to="5264"/>
+</rel>
+</span>
+<span id="s44_n4" from="5228" to="5232">
+<rel label="DET">
+<span from="5245" to="5250"/>
+</rel>
+</span>
+<span id="s44_n5" from="5233" to="5244">
+<rel label="ATTR">
+<span from="5245" to="5250"/>
+</rel>
+</span>
+<span id="s44_n6" from="5245" to="5250">
+<rel label="PN">
+<span from="5224" to="5227"/>
+</rel>
+</span>
+<span id="s44_n7" from="5251" to="5259">
+<rel label="ADV">
+<span from="5260" to="5264"/>
+</rel>
+</span>
+<span id="s44_n8" from="5260" to="5264">
+<rel label="ROOT">
+<span from="5211" to="5373"/>
+</rel>
+</span>
+<span id="s44_n9" from="5264" to="5265">
+<rel label="-PUNCT-">
+<span from="5260" to="5264"/>
+</rel>
+</span>
+<span id="s44_n10" from="5266" to="5269">
+<rel label="KON">
+<span from="5260" to="5264"/>
+</rel>
+</span>
+<span id="s44_n11" from="5270" to="5279">
+<rel label="ADV">
+<span from="5328" to="5332"/>
+</rel>
+</span>
+<span id="s44_n12" from="5279" to="5280">
+<rel label="-PUNCT-">
+<span from="5270" to="5279"/>
+</rel>
+</span>
+<span id="s44_n13" from="5281" to="5285">
+<rel label="KONJ">
+<span from="5306" to="5312"/>
+</rel>
+</span>
+<span id="s44_n14" from="5286" to="5288">
+<rel label="SUBJ">
+<span from="5306" to="5312"/>
+</rel>
+</span>
+<span id="s44_n15" from="5289" to="5297">
+<rel label="OBJA">
+<span from="5306" to="5312"/>
+</rel>
+</span>
+<span id="s44_n16" from="5298" to="5300">
+<rel label="PP">
+<span from="5306" to="5312"/>
+</rel>
+</span>
+<span id="s44_n17" from="5301" to="5305">
+<rel label="PN">
+<span from="5298" to="5300"/>
+</rel>
+</span>
+<span id="s44_n18" from="5306" to="5312">
+<rel label="-UNKNOWN-">
+<span from="5270" to="5279"/>
+</rel>
+</span>
+<span id="s44_n19" from="5312" to="5313">
+<rel label="-PUNCT-">
+<span from="5306" to="5312"/>
+</rel>
+</span>
+<span id="s44_n20" from="5314" to="5317">
+<rel label="OBJA">
+<span from="5328" to="5332"/>
+</rel>
+</span>
+<span id="s44_n21" from="5318" to="5320">
+<rel label="SUBJ">
+<span from="5328" to="5332"/>
+</rel>
+</span>
+<span id="s44_n22" from="5321" to="5327">
+<rel label="OBJI">
+<span from="5328" to="5332"/>
+</rel>
+</span>
+<span id="s44_n23" from="5328" to="5332">
+<rel label="CJ">
+<span from="5266" to="5269"/>
+</rel>
+</span>
+<span id="s44_n24" from="5332" to="5333">
+<rel label="-PUNCT-">
+<span from="5328" to="5332"/>
+</rel>
+</span>
+<span id="s44_n25" from="5334" to="5336">
+<rel label="KONJ">
+<span from="5364" to="5372"/>
+</rel>
+</span>
+<span id="s44_n26" from="5337" to="5343">
+<rel label="SUBJ">
+<span from="5364" to="5372"/>
+</rel>
+</span>
+<span id="s44_n27" from="5344" to="5348">
+<rel label="ADV">
+<span from="5364" to="5372"/>
+</rel>
+</span>
+<span id="s44_n28" from="5349" to="5352">
+<rel label="KOM">
+<span from="5364" to="5372"/>
+</rel>
+</span>
+<span id="s44_n29" from="5353" to="5363">
+<rel label="CJ">
+<span from="5349" to="5352"/>
+</rel>
+</span>
+<span id="s44_n30" from="5364" to="5372">
+<rel label="ROOT">
+<span from="5211" to="5373"/>
+</rel>
+</span>
+<span id="s44_n31" from="5372" to="5373">
+<rel label="-PUNCT-">
+<span from="5364" to="5372"/>
+</rel>
+</span>
+<span id="s45_n1" from="5374" to="5377">
+<rel label="DET">
+<span from="5378" to="5389"/>
+</rel>
+</span>
+<span id="s45_n2" from="5378" to="5389">
+<rel label="SUBJ">
+<span from="5390" to="5393"/>
+</rel>
+</span>
+<span id="s45_n3" from="5390" to="5393">
+<rel label="ROOT">
+<span from="5374" to="5448"/>
+</rel>
+</span>
+<span id="s45_n4" from="5394" to="5397">
+<rel label="DET">
+<span from="5398" to="5408"/>
+</rel>
+</span>
+<span id="s45_n5" from="5398" to="5408">
+<rel label="PRED">
+<span from="5390" to="5393"/>
+</rel>
+</span>
+<span id="s45_n6" from="5409" to="5412">
+<rel label="DET">
+<span from="5413" to="5420"/>
+</rel>
+</span>
+<span id="s45_n7" from="5413" to="5420">
+<rel label="GMOD">
+<span from="5398" to="5408"/>
+</rel>
+</span>
+<span id="s45_n8" from="5420" to="5421">
+<rel label="-PUNCT-">
+<span from="5413" to="5420"/>
+</rel>
+</span>
+<span id="s45_n9" from="5422" to="5425">
+<rel label="DET">
+<span from="5426" to="5435"/>
+</rel>
+</span>
+<span id="s45_n10" from="5426" to="5435">
+<rel label="ROOT">
+<span from="5374" to="5448"/>
+</rel>
+</span>
+<span id="s45_n11" from="5436" to="5439">
+<rel label="DET">
+<span from="5440" to="5447"/>
+</rel>
+</span>
+<span id="s45_n12" from="5440" to="5447">
+<rel label="GMOD">
+<span from="5426" to="5435"/>
+</rel>
+</span>
+<span id="s45_n13" from="5447" to="5448">
+<rel label="-PUNCT-">
+<span from="5440" to="5447"/>
+</rel>
+</span>
+<span id="s46_n1" from="5449" to="5452">
+<rel label="DET">
+<span from="5466" to="5470"/>
+</rel>
+</span>
+<span id="s46_n2" from="5453" to="5465">
+<rel label="ATTR">
+<span from="5466" to="5470"/>
+</rel>
+</span>
+<span id="s46_n3" from="5466" to="5470">
+<rel label="SUBJ">
+<span from="5471" to="5476"/>
+</rel>
+</span>
+<span id="s46_n4" from="5471" to="5476">
+<rel label="ROOT">
+<span from="5449" to="5723"/>
+</rel>
+</span>
+<span id="s46_n5" from="5476" to="5477">
+<rel label="-PUNCT-">
+<span from="5471" to="5476"/>
+</rel>
+</span>
+<span id="s46_n6" from="5478" to="5481">
+<rel label="DET">
+<span from="5489" to="5495"/>
+</rel>
+</span>
+<span id="s46_n7" from="5482" to="5488">
+<rel label="ATTR">
+<span from="5489" to="5495"/>
+</rel>
+</span>
+<span id="s46_n8" from="5489" to="5495">
+<rel label="SUBJ">
+<span from="5496" to="5499"/>
+</rel>
+</span>
+<span id="s46_n9" from="5496" to="5499">
+<rel label="S">
+<span from="5471" to="5476"/>
+</rel>
+</span>
+<span id="s46_n10" from="5500" to="5503">
+<rel label="DET">
+<span from="5504" to="5513"/>
+</rel>
+</span>
+<span id="s46_n11" from="5504" to="5513">
+<rel label="PRED">
+<span from="5496" to="5499"/>
+</rel>
+</span>
+<span id="s46_n12" from="5514" to="5517">
+<rel label="DET">
+<span from="5518" to="5525"/>
+</rel>
+</span>
+<span id="s46_n13" from="5518" to="5525">
+<rel label="GMOD">
+<span from="5504" to="5513"/>
+</rel>
+</span>
+<span id="s46_n14" from="5526" to="5529">
+<rel label="KON">
+<span from="5504" to="5513"/>
+</rel>
+</span>
+<span id="s46_n15" from="5530" to="5538">
+<rel label="SUBJ">
+<span from="5717" to="5722"/>
+</rel>
+</span>
+<span id="s46_n16" from="5539" to="5547">
+<rel label="ADV">
+<span from="5551" to="5565"/>
+</rel>
+</span>
+<span id="s46_n17" from="5548" to="5550">
+<rel label="ADV">
+<span from="5551" to="5565"/>
+</rel>
+</span>
+<span id="s46_n18" from="5551" to="5565">
+<rel label="ADV">
+<span from="5708" to="5716"/>
+</rel>
+</span>
+<span id="s46_n19" from="5566" to="5569">
+<rel label="KON">
+<span from="5551" to="5565"/>
+</rel>
+</span>
+<span id="s46_n20" from="5570" to="5583">
+<rel label="CJ">
+<span from="5566" to="5569"/>
+</rel>
+</span>
+<span id="s46_n21" from="5583" to="5584">
+<rel label="-PUNCT-">
+<span from="5570" to="5583"/>
+</rel>
+</span>
+<span id="s46_n22" from="5585" to="5589">
+<rel label="KONJ">
+<span from="5612" to="5618"/>
+</rel>
+</span>
+<span id="s46_n23" from="5590" to="5593">
+<rel label="SUBJ">
+<span from="5612" to="5618"/>
+</rel>
+</span>
+<span id="s46_n24" from="5594" to="5599">
+<rel label="OBJA">
+<span from="5612" to="5618"/>
+</rel>
+</span>
+<span id="s46_n25" from="5600" to="5603">
+<rel label="PP">
+<span from="5612" to="5618"/>
+</rel>
+</span>
+<span id="s46_n26" from="5604" to="5611">
+<rel label="PN">
+<span from="5600" to="5603"/>
+</rel>
+</span>
+<span id="s46_n27" from="5612" to="5618">
+<rel label="-UNKNOWN-">
+<span from="5551" to="5565"/>
+</rel>
+</span>
+<span id="s46_n28" from="5618" to="5619">
+<rel label="-PUNCT-">
+<span from="5612" to="5618"/>
+</rel>
+</span>
+<span id="s46_n29" from="5620" to="5622">
+<rel label="PP">
+<span from="5708" to="5716"/>
+</rel>
+</span>
+<span id="s46_n30" from="5623" to="5628">
+<rel label="PN">
+<span from="5620" to="5622"/>
+</rel>
+</span>
+<span id="s46_n31" from="5629" to="5632">
+<rel label="DET">
+<span from="5633" to="5639"/>
+</rel>
+</span>
+<span id="s46_n32" from="5633" to="5639">
+<rel label="GMOD">
+<span from="5623" to="5628"/>
+</rel>
+</span>
+<span id="s46_n33" from="5640" to="5643">
+<rel label="PP">
+<span from="5708" to="5716"/>
+</rel>
+</span>
+<span id="s46_n34" from="5644" to="5647">
+<rel label="DET">
+<span from="5661" to="5671"/>
+</rel>
+</span>
+<span id="s46_n35" from="5648" to="5660">
+<rel label="ATTR">
+<span from="5661" to="5671"/>
+</rel>
+</span>
+<span id="s46_n36" from="5661" to="5671">
+<rel label="PN">
+<span from="5640" to="5643"/>
+</rel>
+</span>
+<span id="s46_n37" from="5671" to="5672">
+<rel label="-PUNCT-">
+<span from="5661" to="5671"/>
+</rel>
+</span>
+<span id="s46_n38" from="5673" to="5683">
+<rel label="KON">
+<span from="5661" to="5671"/>
+</rel>
+</span>
+<span id="s46_n39" from="5684" to="5687">
+<rel label="KON">
+<span from="5673" to="5683"/>
+</rel>
+</span>
+<span id="s46_n40" from="5688" to="5701">
+<rel label="CJ">
+<span from="5684" to="5687"/>
+</rel>
+</span>
+<span id="s46_n41" from="5702" to="5707">
+<rel label="ADV">
+<span from="5708" to="5716"/>
+</rel>
+</span>
+<span id="s46_n42" from="5708" to="5716">
+<rel label="AUX">
+<span from="5717" to="5722"/>
+</rel>
+</span>
+<span id="s46_n43" from="5717" to="5722">
+<rel label="CJ">
+<span from="5526" to="5529"/>
+</rel>
+</span>
+<span id="s46_n44" from="5722" to="5723">
+<rel label="-PUNCT-">
+<span from="5717" to="5722"/>
+</rel>
+</span>
+<span id="s47_n1" from="5724" to="5727">
+<rel label="SUBJ">
+<span from="5747" to="5753"/>
+</rel>
+</span>
+<span id="s47_n2" from="5728" to="5732">
+<rel label="OBJA">
+<span from="5747" to="5753"/>
+</rel>
+</span>
+<span id="s47_n3" from="5733" to="5736">
+<rel label="SUBJ">
+<span from="5747" to="5753"/>
+</rel>
+</span>
+<span id="s47_n4" from="5737" to="5740">
+<rel label="KON">
+<span from="5733" to="5736"/>
+</rel>
+</span>
+<span id="s47_n5" from="5741" to="5746">
+<rel label="CJ">
+<span from="5737" to="5740"/>
+</rel>
+</span>
+<span id="s47_n6" from="5747" to="5753">
+<rel label="ROOT">
+<span from="5724" to="5889"/>
+</rel>
+</span>
+<span id="s47_n7" from="5753" to="5754">
+<rel label="-PUNCT-">
+<span from="5747" to="5753"/>
+</rel>
+</span>
+<span id="s47_n8" from="5755" to="5758">
+<rel label="OBJA">
+<span from="5762" to="5771"/>
+</rel>
+</span>
+<span id="s47_n9" from="5759" to="5761">
+<rel label="PART">
+<span from="5762" to="5771"/>
+</rel>
+</span>
+<span id="s47_n10" from="5762" to="5771">
+<rel label="OBJI">
+<span from="5747" to="5753"/>
+</rel>
+</span>
+<span id="s47_n11" from="5771" to="5772">
+<rel label="-PUNCT-">
+<span from="5762" to="5771"/>
+</rel>
+</span>
+<span id="s47_n12" from="5773" to="5777">
+<rel label="KONJ">
+<span from="5783" to="5791"/>
+</rel>
+</span>
+<span id="s47_n13" from="5778" to="5782">
+<rel label="OBJA">
+<span from="5783" to="5791"/>
+</rel>
+</span>
+<span id="s47_n14" from="5783" to="5791">
+<rel label="OBJI">
+<span from="5795" to="5801"/>
+</rel>
+</span>
+<span id="s47_n15" from="5792" to="5794">
+<rel label="PART">
+<span from="5795" to="5801"/>
+</rel>
+</span>
+<span id="s47_n16" from="5795" to="5801">
+<rel label="NEB">
+<span from="5762" to="5771"/>
+</rel>
+</span>
+<span id="s47_n17" from="5801" to="5802">
+<rel label="-PUNCT-">
+<span from="5795" to="5801"/>
+</rel>
+</span>
+<span id="s47_n18" from="5803" to="5806">
+<rel label="SUBJ">
+<span from="5807" to="5811"/>
+</rel>
+</span>
+<span id="s47_n19" from="5807" to="5811">
+<rel label="KON">
+<span from="5747" to="5753"/>
+</rel>
+</span>
+<span id="s47_n20" from="5812" to="5816">
+<rel label="OBJA">
+<span from="5847" to="5856"/>
+</rel>
+</span>
+<span id="s47_n21" from="5817" to="5819">
+<rel label="PP">
+<span from="5847" to="5856"/>
+</rel>
+</span>
+<span id="s47_n22" from="5820" to="5825">
+<rel label="DET">
+<span from="5826" to="5831"/>
+</rel>
+</span>
+<span id="s47_n23" from="5826" to="5831">
+<rel label="PN">
+<span from="5817" to="5819"/>
+</rel>
+</span>
+<span id="s47_n24" from="5832" to="5835">
+<rel label="DET">
+<span from="5836" to="5846"/>
+</rel>
+</span>
+<span id="s47_n25" from="5836" to="5846">
+<rel label="GMOD">
+<span from="5826" to="5831"/>
+</rel>
+</span>
+<span id="s47_n26" from="5847" to="5856">
+<rel label="AUX">
+<span from="5807" to="5811"/>
+</rel>
+</span>
+<span id="s47_n27" from="5856" to="5857">
+<rel label="-PUNCT-">
+<span from="5847" to="5856"/>
+</rel>
+</span>
+<span id="s47_n28" from="5858" to="5864">
+<rel label="ROOT">
+<span from="5724" to="5889"/>
+</rel>
+</span>
+<span id="s47_n29" from="5865" to="5868">
+<rel label="ROOT">
+<span from="5724" to="5889"/>
+</rel>
+</span>
+<span id="s47_n30" from="5869" to="5874">
+<rel label="DET">
+<span from="5882" to="5888"/>
+</rel>
+</span>
+<span id="s47_n31" from="5875" to="5881">
+<rel label="ATTR">
+<span from="5882" to="5888"/>
+</rel>
+</span>
+<span id="s47_n32" from="5882" to="5888">
+<rel label="PN">
+<span from="5865" to="5868"/>
+</rel>
+</span>
+<span id="s47_n33" from="5888" to="5889">
+<rel label="-PUNCT-">
+<span from="5882" to="5888"/>
+</rel>
+</span>
+<span id="s48_n1" from="5890" to="5901">
+<rel label="ATTR">
+<span from="5902" to="5910"/>
+</rel>
+</span>
+<span id="s48_n2" from="5902" to="5910">
+<rel label="ROOT">
+<span from="5890" to="5981"/>
+</rel>
+</span>
+<span id="s48_n3" from="5911" to="5917">
+<rel label="ROOT">
+<span from="5890" to="5981"/>
+</rel>
+</span>
+<span id="s48_n4" from="5918" to="5920">
+<rel label="SUBJ">
+<span from="5911" to="5917"/>
+</rel>
+</span>
+<span id="s48_n5" from="5921" to="5924">
+<rel label="ADV">
+<span from="5925" to="5930"/>
+</rel>
+</span>
+<span id="s48_n6" from="5925" to="5930">
+<rel label="ADV">
+<span from="5931" to="5936"/>
+</rel>
+</span>
+<span id="s48_n7" from="5931" to="5936">
+<rel label="AUX">
+<span from="5911" to="5917"/>
+</rel>
+</span>
+<span id="s48_n8" from="5936" to="5937">
+<rel label="-PUNCT-">
+<span from="5931" to="5936"/>
+</rel>
+</span>
+<span id="s48_n9" from="5938" to="5940">
+<rel label="KONJ">
+<span from="5971" to="5980"/>
+</rel>
+</span>
+<span id="s48_n10" from="5941" to="5944">
+<rel label="DET">
+<span from="5945" to="5953"/>
+</rel>
+</span>
+<span id="s48_n11" from="5945" to="5953">
+<rel label="SUBJ">
+<span from="5971" to="5980"/>
+</rel>
+</span>
+<span id="s48_n12" from="5954" to="5960">
+<rel label="ADV">
+<span from="5971" to="5980"/>
+</rel>
+</span>
+<span id="s48_n13" from="5961" to="5970">
+<rel label="OBJA">
+<span from="5971" to="5980"/>
+</rel>
+</span>
+<span id="s48_n14" from="5971" to="5980">
+<rel label="NEB">
+<span from="5911" to="5917"/>
+</rel>
+</span>
+<span id="s48_n15" from="5980" to="5981">
+<rel label="-PUNCT-">
+<span from="5971" to="5980"/>
+</rel>
+</span>
+<span id="s49_n1" from="5982" to="5986">
+<rel label="ADV">
+<span from="5987" to="5992"/>
+</rel>
+</span>
+<span id="s49_n2" from="5987" to="5992">
+<rel label="ROOT">
+<span from="5982" to="6052"/>
+</rel>
+</span>
+<span id="s49_n3" from="5993" to="5996">
+<rel label="SUBJ">
+<span from="5987" to="5992"/>
+</rel>
+</span>
+<span id="s49_n4" from="5997" to="6002">
+<rel label="ADV">
+<span from="6003" to="6009"/>
+</rel>
+</span>
+<span id="s49_n5" from="6003" to="6009">
+<rel label="ADV">
+<span from="5987" to="5992"/>
+</rel>
+</span>
+<span id="s49_n6" from="6010" to="6013">
+<rel label="OBJP">
+<span from="5987" to="5992"/>
+</rel>
+</span>
+<span id="s49_n7" from="6014" to="6022">
+<rel label="PN">
+<span from="6010" to="6013"/>
+</rel>
+</span>
+<span id="s49_n8" from="6022" to="6023">
+<rel label="-PUNCT-">
+<span from="6014" to="6022"/>
+</rel>
+</span>
+<span id="s49_n9" from="6024" to="6026">
+<rel label="PP">
+<span from="5987" to="5992"/>
+</rel>
+</span>
+<span id="s49_n10" from="6027" to="6030">
+<rel label="DET">
+<span from="6031" to="6038"/>
+</rel>
+</span>
+<span id="s49_n11" from="6031" to="6038">
+<rel label="PN">
+<span from="6024" to="6026"/>
+</rel>
+</span>
+<span id="s49_n12" from="6039" to="6042">
+<rel label="DET">
+<span from="6043" to="6051"/>
+</rel>
+</span>
+<span id="s49_n13" from="6043" to="6051">
+<rel label="GMOD">
+<span from="6031" to="6038"/>
+</rel>
+</span>
+<span id="s49_n14" from="6051" to="6052">
+<rel label="-PUNCT-">
+<span from="6043" to="6051"/>
+</rel>
+</span>
+<span id="s50_n1" from="6053" to="6056">
+<rel label="DET">
+<span from="6081" to="6087"/>
+</rel>
+</span>
+<span id="s50_n2" from="6057" to="6070">
+<rel label="ATTR">
+<span from="6081" to="6087"/>
+</rel>
+</span>
+<span id="s50_n3" from="6071" to="6080">
+<rel label="ATTR">
+<span from="6081" to="6087"/>
+</rel>
+</span>
+<span id="s50_n4" from="6081" to="6087">
+<rel label="SUBJ">
+<span from="6088" to="6091"/>
+</rel>
+</span>
+<span id="s50_n5" from="6088" to="6091">
+<rel label="ROOT">
+<span from="6053" to="6207"/>
+</rel>
+</span>
+<span id="s50_n6" from="6092" to="6100">
+<rel label="ROOT">
+<span from="6053" to="6207"/>
+</rel>
+</span>
+<span id="s50_n7" from="6101" to="6104">
+<rel label="DET">
+<span from="6112" to="6118"/>
+</rel>
+</span>
+<span id="s50_n8" from="6105" to="6111">
+<rel label="ATTR">
+<span from="6112" to="6118"/>
+</rel>
+</span>
+<span id="s50_n9" from="6112" to="6118">
+<rel label="ROOT">
+<span from="6053" to="6207"/>
+</rel>
+</span>
+<span id="s50_n10" from="6118" to="6119">
+<rel label="-PUNCT-">
+<span from="6112" to="6118"/>
+</rel>
+</span>
+<span id="s50_n11" from="6120" to="6123">
+<rel label="KONJ">
+<span from="6201" to="6206"/>
+</rel>
+</span>
+<span id="s50_n12" from="6124" to="6127">
+<rel label="DET">
+<span from="6128" to="6136"/>
+</rel>
+</span>
+<span id="s50_n13" from="6128" to="6136">
+<rel label="SUBJ">
+<span from="6201" to="6206"/>
+</rel>
+</span>
+<span id="s50_n14" from="6137" to="6140">
+<rel label="DET">
+<span from="6141" to="6145"/>
+</rel>
+</span>
+<span id="s50_n15" from="6141" to="6145">
+<rel label="GMOD">
+<span from="6128" to="6136"/>
+</rel>
+</span>
+<span id="s50_n16" from="6145" to="6146">
+<rel label="-PUNCT-">
+<span from="6141" to="6145"/>
+</rel>
+</span>
+<span id="s50_n17" from="6147" to="6150">
+<rel label="SUBJ">
+<span from="6162" to="6170"/>
+</rel>
+</span>
+<span id="s50_n18" from="6151" to="6154">
+<rel label="DET">
+<span from="6155" to="6161"/>
+</rel>
+</span>
+<span id="s50_n19" from="6155" to="6161">
+<rel label="OBJA">
+<span from="6162" to="6170"/>
+</rel>
+</span>
+<span id="s50_n20" from="6162" to="6170">
+<rel label="REL">
+<span from="6128" to="6136"/>
+</rel>
+</span>
+<span id="s50_n21" from="6170" to="6171">
+<rel label="-PUNCT-">
+<span from="6162" to="6170"/>
+</rel>
+</span>
+<span id="s50_n22" from="6172" to="6175">
+<rel label="OBJD">
+<span from="6201" to="6206"/>
+</rel>
+</span>
+<span id="s50_n23" from="6176" to="6180">
+<rel label="ADV">
+<span from="6201" to="6206"/>
+</rel>
+</span>
+<span id="s50_n24" from="6181" to="6190">
+<rel label="ADV">
+<span from="6201" to="6206"/>
+</rel>
+</span>
+<span id="s50_n25" from="6191" to="6193">
+<rel label="OBJP">
+<span from="6201" to="6206"/>
+</rel>
+</span>
+<span id="s50_n26" from="6194" to="6200">
+<rel label="PN">
+<span from="6191" to="6193"/>
+</rel>
+</span>
+<span id="s50_n27" from="6201" to="6206">
+<rel label="OBJC">
+<span from="6112" to="6118"/>
+</rel>
+</span>
+<span id="s50_n28" from="6206" to="6207">
+<rel label="-PUNCT-">
+<span from="6201" to="6206"/>
+</rel>
+</span>
+<span id="s51_n1" from="6208" to="6210">
+<rel label="SUBJ">
+<span from="6211" to="6219"/>
+</rel>
+</span>
+<span id="s51_n2" from="6211" to="6219">
+<rel label="ROOT">
+<span from="6208" to="6327"/>
+</rel>
+</span>
+<span id="s51_n3" from="6220" to="6224">
+<rel label="OBJA">
+<span from="6211" to="6219"/>
+</rel>
+</span>
+<span id="s51_n4" from="6225" to="6229">
+<rel label="ADV">
+<span from="6211" to="6219"/>
+</rel>
+</span>
+<span id="s51_n5" from="6230" to="6234">
+<rel label="ADV">
+<span from="6211" to="6219"/>
+</rel>
+</span>
+<span id="s51_n6" from="6235" to="6240">
+<rel label="ADV">
+<span from="6211" to="6219"/>
+</rel>
+</span>
+<span id="s51_n7" from="6241" to="6247">
+<rel label="ADV">
+<span from="6248" to="6250"/>
+</rel>
+</span>
+<span id="s51_n8" from="6248" to="6250">
+<rel label="OBJP">
+<span from="6211" to="6219"/>
+</rel>
+</span>
+<span id="s51_n9" from="6251" to="6254">
+<rel label="DET">
+<span from="6255" to="6260"/>
+</rel>
+</span>
+<span id="s51_n10" from="6255" to="6260">
+<rel label="PN">
+<span from="6248" to="6250"/>
+</rel>
+</span>
+<span id="s51_n11" from="6260" to="6261">
+<rel label="-PUNCT-">
+<span from="6255" to="6260"/>
+</rel>
+</span>
+<span id="s51_n12" from="6262" to="6265">
+<rel label="OBJA">
+<span from="6269" to="6276"/>
+</rel>
+</span>
+<span id="s51_n13" from="6266" to="6268">
+<rel label="SUBJ">
+<span from="6269" to="6276"/>
+</rel>
+</span>
+<span id="s51_n14" from="6269" to="6276">
+<rel label="REL">
+<span from="6255" to="6260"/>
+</rel>
+</span>
+<span id="s51_n15" from="6276" to="6277">
+<rel label="-PUNCT-">
+<span from="6269" to="6276"/>
+</rel>
+</span>
+<span id="s51_n16" from="6278" to="6281">
+<rel label="KON">
+<span from="6211" to="6219"/>
+</rel>
+</span>
+<span id="s51_n17" from="6282" to="6290">
+<rel label="CJ">
+<span from="6278" to="6281"/>
+</rel>
+</span>
+<span id="s51_n18" from="6291" to="6293">
+<rel label="PP">
+<span from="6282" to="6290"/>
+</rel>
+</span>
+<span id="s51_n19" from="6294" to="6297">
+<rel label="ROOT">
+<span from="6208" to="6327"/>
+</rel>
+</span>
+<span id="s51_n20" from="6297" to="6298">
+<rel label="-PUNCT-">
+<span from="6294" to="6297"/>
+</rel>
+</span>
+<span id="s51_n21" from="6299" to="6302">
+<rel label="ROOT">
+<span from="6208" to="6327"/>
+</rel>
+</span>
+<span id="s51_n22" from="6303" to="6305">
+<rel label="SUBJ">
+<span from="6320" to="6326"/>
+</rel>
+</span>
+<span id="s51_n23" from="6306" to="6310">
+<rel label="ADV">
+<span from="6315" to="6319"/>
+</rel>
+</span>
+<span id="s51_n24" from="6311" to="6314">
+<rel label="PRED">
+<span from="6315" to="6319"/>
+</rel>
+</span>
+<span id="s51_n25" from="6315" to="6319">
+<rel label="AUX">
+<span from="6320" to="6326"/>
+</rel>
+</span>
+<span id="s51_n26" from="6320" to="6326">
+<rel label="ROOT">
+<span from="6208" to="6327"/>
+</rel>
+</span>
+<span id="s51_n27" from="6326" to="6327">
+<rel label="-PUNCT-">
+<span from="6320" to="6326"/>
+</rel>
+</span>
+<span id="s52_n1" from="6328" to="6332">
+<rel label="DET">
+<span from="6333" to="6339"/>
+</rel>
+</span>
+<span id="s52_n2" from="6333" to="6339">
+<rel label="SUBJ">
+<span from="6340" to="6343"/>
+</rel>
+</span>
+<span id="s52_n3" from="6340" to="6343">
+<rel label="ROOT">
+<span from="6328" to="6445"/>
+</rel>
+</span>
+<span id="s52_n4" from="6344" to="6347">
+<rel label="DET">
+<span from="6348" to="6362"/>
+</rel>
+</span>
+<span id="s52_n5" from="6348" to="6362">
+<rel label="PRED">
+<span from="6340" to="6343"/>
+</rel>
+</span>
+<span id="s52_n6" from="6363" to="6366">
+<rel label="KON">
+<span from="6348" to="6362"/>
+</rel>
+</span>
+<span id="s52_n7" from="6367" to="6370">
+<rel label="DET">
+<span from="6371" to="6378"/>
+</rel>
+</span>
+<span id="s52_n8" from="6371" to="6378">
+<rel label="CJ">
+<span from="6363" to="6366"/>
+</rel>
+</span>
+<span id="s52_n9" from="6379" to="6382">
+<rel label="PP">
+<span from="6371" to="6378"/>
+</rel>
+</span>
+<span id="s52_n10" from="6383" to="6394">
+<rel label="DET">
+<span from="6395" to="6406"/>
+</rel>
+</span>
+<span id="s52_n11" from="6395" to="6406">
+<rel label="PN">
+<span from="6379" to="6382"/>
+</rel>
+</span>
+<span id="s52_n12" from="6406" to="6407">
+<rel label="-PUNCT-">
+<span from="6395" to="6406"/>
+</rel>
+</span>
+<span id="s52_n13" from="6408" to="6411">
+<rel label="OBJA">
+<span from="6438" to="6444"/>
+</rel>
+</span>
+<span id="s52_n14" from="6412" to="6415">
+<rel label="SUBJ">
+<span from="6438" to="6444"/>
+</rel>
+</span>
+<span id="s52_n15" from="6416" to="6422">
+<rel label="OBJP">
+<span from="6431" to="6437"/>
+</rel>
+</span>
+<span id="s52_n16" from="6423" to="6427">
+<rel label="PN">
+<span from="6416" to="6422"/>
+</rel>
+</span>
+<span id="s52_n17" from="6428" to="6430">
+<rel label="PART">
+<span from="6431" to="6437"/>
+</rel>
+</span>
+<span id="s52_n18" from="6431" to="6437">
+<rel label="OBJI">
+<span from="6438" to="6444"/>
+</rel>
+</span>
+<span id="s52_n19" from="6438" to="6444">
+<rel label="REL">
+<span from="6395" to="6406"/>
+</rel>
+</span>
+<span id="s52_n20" from="6444" to="6445">
+<rel label="-PUNCT-">
+<span from="6438" to="6444"/>
+</rel>
+</span>
+<span id="s53_n1" from="6446" to="6448">
+<rel label="ADV">
+<span from="6449" to="6455"/>
+</rel>
+</span>
+<span id="s53_n2" from="6449" to="6455">
+<rel label="PRED">
+<span from="6482" to="6485"/>
+</rel>
+</span>
+<span id="s53_n3" from="6456" to="6459">
+<rel label="KON">
+<span from="6449" to="6455"/>
+</rel>
+</span>
+<span id="s53_n4" from="6460" to="6471">
+<rel label="CJ">
+<span from="6456" to="6459"/>
+</rel>
+</span>
+<span id="s53_n5" from="6472" to="6481">
+<rel label="SUBJ">
+<span from="6482" to="6485"/>
+</rel>
+</span>
+<span id="s53_n6" from="6482" to="6485">
+<rel label="ROOT">
+<span from="6446" to="6553"/>
+</rel>
+</span>
+<span id="s53_n7" from="6485" to="6486">
+<rel label="-PUNCT-">
+<span from="6482" to="6485"/>
+</rel>
+</span>
+<span id="s53_n8" from="6487" to="6490">
+<rel label="OBJD">
+<span from="6495" to="6501"/>
+</rel>
+</span>
+<span id="s53_n9" from="6491" to="6494">
+<rel label="SUBJ">
+<span from="6495" to="6501"/>
+</rel>
+</span>
+<span id="s53_n10" from="6495" to="6501">
+<rel label="SUBJC">
+<span from="6482" to="6485"/>
+</rel>
+</span>
+<span id="s53_n11" from="6501" to="6502">
+<rel label="-PUNCT-">
+<span from="6495" to="6501"/>
+</rel>
+</span>
+<span id="s53_n12" from="6503" to="6508">
+<rel label="KON">
+<span from="6482" to="6485"/>
+</rel>
+</span>
+<span id="s53_n13" from="6509" to="6516">
+<rel label="CJ">
+<span from="6503" to="6508"/>
+</rel>
+</span>
+<span id="s53_n14" from="6517" to="6521">
+<rel label="ROOT">
+<span from="6446" to="6553"/>
+</rel>
+</span>
+<span id="s53_n15" from="6522" to="6525">
+<rel label="DET">
+<span from="6526" to="6538"/>
+</rel>
+</span>
+<span id="s53_n16" from="6526" to="6538">
+<rel label="SUBJ">
+<span from="6517" to="6521"/>
+</rel>
+</span>
+<span id="s53_n17" from="6539" to="6542">
+<rel label="DET">
+<span from="6543" to="6552"/>
+</rel>
+</span>
+<span id="s53_n18" from="6543" to="6552">
+<rel label="GMOD">
+<span from="6526" to="6538"/>
+</rel>
+</span>
+<span id="s53_n19" from="6552" to="6553">
+<rel label="-PUNCT-">
+<span from="6543" to="6552"/>
+</rel>
+</span>
+<span id="s54_n1" from="6554" to="6560">
+<rel label="ROOT">
+<span from="6554" to="6687"/>
+</rel>
+</span>
+<span id="s54_n2" from="6561" to="6564">
+<rel label="DET">
+<span from="6571" to="6576"/>
+</rel>
+</span>
+<span id="s54_n3" from="6565" to="6570">
+<rel label="ATTR">
+<span from="6571" to="6576"/>
+</rel>
+</span>
+<span id="s54_n4" from="6571" to="6576">
+<rel label="ROOT">
+<span from="6554" to="6687"/>
+</rel>
+</span>
+<span id="s54_n5" from="6577" to="6580">
+<rel label="KON">
+<span from="6571" to="6576"/>
+</rel>
+</span>
+<span id="s54_n6" from="6581" to="6584">
+<rel label="DET">
+<span from="6585" to="6599"/>
+</rel>
+</span>
+<span id="s54_n7" from="6585" to="6599">
+<rel label="CJ">
+<span from="6577" to="6580"/>
+</rel>
+</span>
+<span id="s54_n8" from="6600" to="6609">
+<rel label="OBJA">
+<span from="6610" to="6618"/>
+</rel>
+</span>
+<span id="s54_n9" from="6610" to="6618">
+<rel label="ROOT">
+<span from="6554" to="6687"/>
+</rel>
+</span>
+<span id="s54_n10" from="6618" to="6619">
+<rel label="-PUNCT-">
+<span from="6610" to="6618"/>
+</rel>
+</span>
+<span id="s54_n11" from="6620" to="6628">
+<rel label="ADV">
+<span from="6629" to="6634"/>
+</rel>
+</span>
+<span id="s54_n12" from="6629" to="6634">
+<rel label="ROOT">
+<span from="6554" to="6687"/>
+</rel>
+</span>
+<span id="s54_n13" from="6635" to="6638">
+<rel label="DET">
+<span from="6639" to="6654"/>
+</rel>
+</span>
+<span id="s54_n14" from="6639" to="6654">
+<rel label="SUBJ">
+<span from="6629" to="6634"/>
+</rel>
+</span>
+<span id="s54_n15" from="6655" to="6660">
+<rel label="ADV">
+<span from="6629" to="6634"/>
+</rel>
+</span>
+<span id="s54_n16" from="6661" to="6664">
+<rel label="AVZ">
+<span from="6629" to="6634"/>
+</rel>
+</span>
+<span id="s54_n17" from="6664" to="6665">
+<rel label="-PUNCT-">
+<span from="6661" to="6664"/>
+</rel>
+</span>
+<span id="s54_n18" from="6666" to="6669">
+<rel label="PP">
+<span from="6629" to="6634"/>
+</rel>
+</span>
+<span id="s54_n19" from="6670" to="6673">
+<rel label="DET">
+<span from="6674" to="6686"/>
+</rel>
+</span>
+<span id="s54_n20" from="6674" to="6686">
+<rel label="PN">
+<span from="6666" to="6669"/>
+</rel>
+</span>
+<span id="s54_n21" from="6686" to="6687">
+<rel label="-PUNCT-">
+<span from="6674" to="6686"/>
+</rel>
+</span>
+<span id="s55_n1" from="6732" to="6737">
+<rel label="SUBJ">
+<span from="6738" to="6743"/>
+</rel>
+</span>
+<span id="s55_n2" from="6738" to="6743">
+<rel label="ROOT">
+<span from="6732" to="6837"/>
+</rel>
+</span>
+<span id="s55_n3" from="6744" to="6747">
+<rel label="PP">
+<span from="6738" to="6743"/>
+</rel>
+</span>
+<span id="s55_n4" from="6748" to="6751">
+<rel label="DET">
+<span from="6752" to="6759"/>
+</rel>
+</span>
+<span id="s55_n5" from="6752" to="6759">
+<rel label="PN">
+<span from="6744" to="6747"/>
+</rel>
+</span>
+<span id="s55_n6" from="6760" to="6766">
+<rel label="OBJP">
+<span from="6738" to="6743"/>
+</rel>
+</span>
+<span id="s55_n7" from="6767" to="6769">
+<rel label="AVZ">
+<span from="6738" to="6743"/>
+</rel>
+</span>
+<span id="s55_n8" from="6769" to="6770">
+<rel label="-PUNCT-">
+<span from="6767" to="6769"/>
+</rel>
+</span>
+<span id="s55_n9" from="6771" to="6774">
+<rel label="KONJ">
+<span from="6808" to="6812"/>
+</rel>
+</span>
+<span id="s55_n10" from="6775" to="6778">
+<rel label="DET">
+<span from="6794" to="6800"/>
+</rel>
+</span>
+<span id="s55_n11" from="6779" to="6783">
+<rel label="ATTR">
+<span from="6794" to="6800"/>
+</rel>
+</span>
+<span id="s55_n12" from="6784" to="6793">
+<rel label="ATTR">
+<span from="6794" to="6800"/>
+</rel>
+</span>
+<span id="s55_n13" from="6794" to="6800">
+<rel label="SUBJ">
+<span from="6808" to="6812"/>
+</rel>
+</span>
+<span id="s55_n14" from="6801" to="6807">
+<rel label="PRED">
+<span from="6808" to="6812"/>
+</rel>
+</span>
+<span id="s55_n15" from="6808" to="6812">
+<rel label="NEB">
+<span from="6738" to="6743"/>
+</rel>
+</span>
+<span id="s55_n16" from="6812" to="6813">
+<rel label="-PUNCT-">
+<span from="6808" to="6812"/>
+</rel>
+</span>
+<span id="s55_n17" from="6814" to="6817">
+<rel label="KONJ">
+<span from="6832" to="6836"/>
+</rel>
+</span>
+<span id="s55_n18" from="6818" to="6820">
+<rel label="SUBJ">
+<span from="6832" to="6836"/>
+</rel>
+</span>
+<span id="s55_n19" from="6821" to="6825">
+<rel label="DET">
+<span from="6826" to="6831"/>
+</rel>
+</span>
+<span id="s55_n20" from="6826" to="6831">
+<rel label="OBJA">
+<span from="6832" to="6836"/>
+</rel>
+</span>
+<span id="s55_n21" from="6832" to="6836">
+<rel label="NEB">
+<span from="6808" to="6812"/>
+</rel>
+</span>
+<span id="s55_n22" from="6836" to="6837">
+<rel label="-PUNCT-">
+<span from="6832" to="6836"/>
+</rel>
+</span>
+<span id="s56_n1" from="6838" to="6841">
+<rel label="KONJ">
+<span from="6877" to="6882"/>
+</rel>
+</span>
+<span id="s56_n2" from="6842" to="6845">
+<rel label="DET">
+<span from="6846" to="6863"/>
+</rel>
+</span>
+<span id="s56_n3" from="6846" to="6863">
+<rel label="SUBJ">
+<span from="6877" to="6882"/>
+</rel>
+</span>
+<span id="s56_n4" from="6864" to="6876">
+<rel label="OBJA">
+<span from="6877" to="6882"/>
+</rel>
+</span>
+<span id="s56_n5" from="6877" to="6882">
+<rel label="ROOT">
+<span from="6838" to="6952"/>
+</rel>
+</span>
+<span id="s56_n6" from="6882" to="6883">
+<rel label="-PUNCT-">
+<span from="6877" to="6882"/>
+</rel>
+</span>
+<span id="s56_n7" from="6884" to="6887">
+<rel label="KONJ">
+<span from="6907" to="6910"/>
+</rel>
+</span>
+<span id="s56_n8" from="6888" to="6890">
+<rel label="SUBJ">
+<span from="6907" to="6910"/>
+</rel>
+</span>
+<span id="s56_n9" from="6891" to="6897">
+<rel label="OBJA">
+<span from="6898" to="6906"/>
+</rel>
+</span>
+<span id="s56_n10" from="6898" to="6906">
+<rel label="AUX">
+<span from="6907" to="6910"/>
+</rel>
+</span>
+<span id="s56_n11" from="6907" to="6910">
+<rel label="OBJC">
+<span from="6877" to="6882"/>
+</rel>
+</span>
+<span id="s56_n12" from="6910" to="6911">
+<rel label="-PUNCT-">
+<span from="6907" to="6910"/>
+</rel>
+</span>
+<span id="s56_n13" from="6912" to="6915">
+<rel label="ROOT">
+<span from="6838" to="6952"/>
+</rel>
+</span>
+<span id="s56_n14" from="6916" to="6918">
+<rel label="SUBJ">
+<span from="6947" to="6951"/>
+</rel>
+</span>
+<span id="s56_n15" from="6919" to="6923">
+<rel label="OBJA">
+<span from="6937" to="6946"/>
+</rel>
+</span>
+<span id="s56_n16" from="6924" to="6930">
+<rel label="ADV">
+<span from="6937" to="6946"/>
+</rel>
+</span>
+<span id="s56_n17" from="6931" to="6936">
+<rel label="ADV">
+<span from="6937" to="6946"/>
+</rel>
+</span>
+<span id="s56_n18" from="6937" to="6946">
+<rel label="AUX">
+<span from="6947" to="6951"/>
+</rel>
+</span>
+<span id="s56_n19" from="6947" to="6951">
+<rel label="ROOT">
+<span from="6838" to="6952"/>
+</rel>
+</span>
+<span id="s56_n20" from="6951" to="6952">
+<rel label="-PUNCT-">
+<span from="6947" to="6951"/>
+</rel>
+</span>
+<span id="s57_n1" from="6953" to="6956">
+<rel label="DET">
+<span from="6957" to="6962"/>
+</rel>
+</span>
+<span id="s57_n2" from="6957" to="6962">
+<rel label="SUBJ">
+<span from="6963" to="6968"/>
+</rel>
+</span>
+<span id="s57_n3" from="6963" to="6968">
+<rel label="ROOT">
+<span from="6953" to="7037"/>
+</rel>
+</span>
+<span id="s57_n4" from="6969" to="6972">
+<rel label="OBJP">
+<span from="6963" to="6968"/>
+</rel>
+</span>
+<span id="s57_n5" from="6973" to="6980">
+<rel label="PN">
+<span from="6969" to="6972"/>
+</rel>
+</span>
+<span id="s57_n6" from="6981" to="6987">
+<rel label="ATTR">
+<span from="6988" to="6995"/>
+</rel>
+</span>
+<span id="s57_n7" from="6988" to="6995">
+<rel label="GMOD">
+<span from="6973" to="6980"/>
+</rel>
+</span>
+<span id="s57_n8" from="6995" to="6996">
+<rel label="-PUNCT-">
+<span from="6988" to="6995"/>
+</rel>
+</span>
+<span id="s57_n9" from="6997" to="7000">
+<rel label="DET">
+<span from="7001" to="7007"/>
+</rel>
+</span>
+<span id="s57_n10" from="7001" to="7007">
+<rel label="NEB">
+<span from="6963" to="6968"/>
+</rel>
+</span>
+<span id="s57_n11" from="7008" to="7011">
+<rel label="PP">
+<span from="7001" to="7007"/>
+</rel>
+</span>
+<span id="s57_n12" from="7012" to="7019">
+<rel label="PN">
+<span from="7008" to="7011"/>
+</rel>
+</span>
+<span id="s57_n13" from="7020" to="7025">
+<rel label="DET">
+<span from="7026" to="7036"/>
+</rel>
+</span>
+<span id="s57_n14" from="7026" to="7036">
+<rel label="GMOD">
+<span from="7012" to="7019"/>
+</rel>
+</span>
+<span id="s57_n15" from="7036" to="7037">
+<rel label="-PUNCT-">
+<span from="7026" to="7036"/>
+</rel>
+</span>
+<span id="s58_n1" from="7038" to="7043">
+<rel label="DET">
+<span from="7044" to="7052"/>
+</rel>
+</span>
+<span id="s58_n2" from="7044" to="7052">
+<rel label="SUBJ">
+<span from="7084" to="7088"/>
+</rel>
+</span>
+<span id="s58_n3" from="7053" to="7056">
+<rel label="PP">
+<span from="7044" to="7052"/>
+</rel>
+</span>
+<span id="s58_n4" from="7057" to="7065">
+<rel label="ADV">
+<span from="7066" to="7077"/>
+</rel>
+</span>
+<span id="s58_n5" from="7066" to="7077">
+<rel label="ATTR">
+<span from="7078" to="7083"/>
+</rel>
+</span>
+<span id="s58_n6" from="7078" to="7083">
+<rel label="PN">
+<span from="7053" to="7056"/>
+</rel>
+</span>
+<span id="s58_n7" from="7084" to="7088">
+<rel label="ROOT">
+<span from="7038" to="7142"/>
+</rel>
+</span>
+<span id="s58_n8" from="7089" to="7094">
+<rel label="DET">
+<span from="7119" to="7126"/>
+</rel>
+</span>
+<span id="s58_n9" from="7095" to="7101">
+<rel label="ATTR">
+<span from="7119" to="7126"/>
+</rel>
+</span>
+<span id="s58_n10" from="7102" to="7118">
+<rel label="ATTR">
+<span from="7119" to="7126"/>
+</rel>
+</span>
+<span id="s58_n11" from="7119" to="7126">
+<rel label="OBJA">
+<span from="7134" to="7141"/>
+</rel>
+</span>
+<span id="s58_n12" from="7127" to="7133">
+<rel label="AVZ">
+<span from="7134" to="7141"/>
+</rel>
+</span>
+<span id="s58_n13" from="7134" to="7141">
+<rel label="AUX">
+<span from="7084" to="7088"/>
+</rel>
+</span>
+<span id="s58_n14" from="7141" to="7142">
+<rel label="-PUNCT-">
+<span from="7134" to="7141"/>
+</rel>
+</span>
+<span id="s59_n1" from="7143" to="7145">
+<rel label="PP">
+<span from="7155" to="7159"/>
+</rel>
+</span>
+<span id="s59_n2" from="7146" to="7153">
+<rel label="PN">
+<span from="7143" to="7145"/>
+</rel>
+</span>
+<span id="s59_n3" from="7153" to="7154">
+<rel label="-PUNCT-">
+<span from="7146" to="7153"/>
+</rel>
+</span>
+<span id="s59_n4" from="7155" to="7159">
+<rel label="ROOT">
+<span from="7143" to="7317"/>
+</rel>
+</span>
+<span id="s59_n5" from="7160" to="7163">
+<rel label="SUBJ">
+<span from="7155" to="7159"/>
+</rel>
+</span>
+<span id="s59_n6" from="7163" to="7164">
+<rel label="-PUNCT-">
+<span from="7160" to="7163"/>
+</rel>
+</span>
+<span id="s59_n7" from="7165" to="7171">
+<rel label="KON">
+<span from="7155" to="7159"/>
+</rel>
+</span>
+<span id="s59_n8" from="7172" to="7176">
+<rel label="OBJA">
+<span from="7165" to="7171"/>
+</rel>
+</span>
+<span id="s59_n9" from="7177" to="7184">
+<rel label="ATTR">
+<span from="7197" to="7204"/>
+</rel>
+</span>
+<span id="s59_n10" from="7185" to="7196">
+<rel label="ATTR">
+<span from="7197" to="7204"/>
+</rel>
+</span>
+<span id="s59_n11" from="7197" to="7204">
+<rel label="PRED">
+<span from="7165" to="7171"/>
+</rel>
+</span>
+<span id="s59_n12" from="7205" to="7217">
+<rel label="ATTR">
+<span from="7218" to="7228"/>
+</rel>
+</span>
+<span id="s59_n13" from="7218" to="7228">
+<rel label="GMOD">
+<span from="7197" to="7204"/>
+</rel>
+</span>
+<span id="s59_n14" from="7228" to="7229">
+<rel label="-PUNCT-">
+<span from="7218" to="7228"/>
+</rel>
+</span>
+<span id="s59_n15" from="7230" to="7233">
+<rel label="KON">
+<span from="7165" to="7171"/>
+</rel>
+</span>
+<span id="s59_n16" from="7234" to="7237">
+<rel label="ADV">
+<span from="7238" to="7242"/>
+</rel>
+</span>
+<span id="s59_n17" from="7238" to="7242">
+<rel label="CJ">
+<span from="7230" to="7233"/>
+</rel>
+</span>
+<span id="s59_n18" from="7243" to="7248">
+<rel label="DET">
+<span from="7249" to="7254"/>
+</rel>
+</span>
+<span id="s59_n19" from="7249" to="7254">
+<rel label="SUBJ">
+<span from="7238" to="7242"/>
+</rel>
+</span>
+<span id="s59_n20" from="7255" to="7264">
+<rel label="ADV">
+<span from="7265" to="7269"/>
+</rel>
+</span>
+<span id="s59_n21" from="7265" to="7269">
+<rel label="PP">
+<span from="7311" to="7316"/>
+</rel>
+</span>
+<span id="s59_n22" from="7270" to="7279">
+<rel label="PN">
+<span from="7265" to="7269"/>
+</rel>
+</span>
+<span id="s59_n23" from="7280" to="7283">
+<rel label="DET">
+<span from="7284" to="7294"/>
+</rel>
+</span>
+<span id="s59_n24" from="7284" to="7294">
+<rel label="GMOD">
+<span from="7270" to="7279"/>
+</rel>
+</span>
+<span id="s59_n25" from="7295" to="7310">
+<rel label="ADV">
+<span from="7311" to="7316"/>
+</rel>
+</span>
+<span id="s59_n26" from="7311" to="7316">
+<rel label="PRED">
+<span from="7238" to="7242"/>
+</rel>
+</span>
+<span id="s59_n27" from="7316" to="7317">
+<rel label="-PUNCT-">
+<span from="7311" to="7316"/>
+</rel>
+</span>
+<span id="s60_n1" from="7318" to="7332">
+<rel label="PRED">
+<span from="7333" to="7336"/>
+</rel>
+</span>
+<span id="s60_n2" from="7333" to="7336">
+<rel label="ROOT">
+<span from="7318" to="7548"/>
+</rel>
+</span>
+<span id="s60_n3" from="7337" to="7340">
+<rel label="SUBJ">
+<span from="7333" to="7336"/>
+</rel>
+</span>
+<span id="s60_n4" from="7341" to="7344">
+<rel label="DET">
+<span from="7345" to="7356"/>
+</rel>
+</span>
+<span id="s60_n5" from="7345" to="7356">
+<rel label="ROOT">
+<span from="7318" to="7548"/>
+</rel>
+</span>
+<span id="s60_n6" from="7356" to="7357">
+<rel label="-PUNCT-">
+<span from="7345" to="7356"/>
+</rel>
+</span>
+<span id="s60_n7" from="7358" to="7361">
+<rel label="ROOT">
+<span from="7318" to="7548"/>
+</rel>
+</span>
+<span id="s60_n8" from="7362" to="7371">
+<rel label="ATTR">
+<span from="7372" to="7380"/>
+</rel>
+</span>
+<span id="s60_n9" from="7372" to="7380">
+<rel label="ROOT">
+<span from="7318" to="7548"/>
+</rel>
+</span>
+<span id="s60_n10" from="7381" to="7384">
+<rel label="KON">
+<span from="7372" to="7380"/>
+</rel>
+</span>
+<span id="s60_n11" from="7385" to="7392">
+<rel label="CJ">
+<span from="7381" to="7384"/>
+</rel>
+</span>
+<span id="s60_n12" from="7392" to="7393">
+<rel label="-PUNCT-">
+<span from="7385" to="7392"/>
+</rel>
+</span>
+<span id="s60_n13" from="7394" to="7397">
+<rel label="PP">
+<span from="7462" to="7471"/>
+</rel>
+</span>
+<span id="s60_n14" from="7398" to="7405">
+<rel label="PN">
+<span from="7394" to="7397"/>
+</rel>
+</span>
+<span id="s60_n15" from="7406" to="7416">
+<rel label="ATTR">
+<span from="7417" to="7420"/>
+</rel>
+</span>
+<span id="s60_n16" from="7417" to="7420">
+<rel label="GMOD">
+<span from="7398" to="7405"/>
+</rel>
+</span>
+<span id="s60_n17" from="7421" to="7424">
+<rel label="SUBJ">
+<span from="7430" to="7435"/>
+</rel>
+</span>
+<span id="s60_n18" from="7425" to="7429">
+<rel label="ADV">
+<span from="7430" to="7435"/>
+</rel>
+</span>
+<span id="s60_n19" from="7430" to="7435">
+<rel label="REL">
+<span from="7398" to="7405"/>
+</rel>
+</span>
+<span id="s60_n20" from="7435" to="7436">
+<rel label="-PUNCT-">
+<span from="7430" to="7435"/>
+</rel>
+</span>
+<span id="s60_n21" from="7437" to="7440">
+<rel label="DET">
+<span from="7454" to="7461"/>
+</rel>
+</span>
+<span id="s60_n22" from="7441" to="7453">
+<rel label="ATTR">
+<span from="7454" to="7461"/>
+</rel>
+</span>
+<span id="s60_n23" from="7454" to="7461">
+<rel label="OBJD">
+<span from="7462" to="7471"/>
+</rel>
+</span>
+<span id="s60_n24" from="7462" to="7471">
+<rel label="ROOT">
+<span from="7318" to="7548"/>
+</rel>
+</span>
+<span id="s60_n25" from="7471" to="7472">
+<rel label="-PUNCT-">
+<span from="7462" to="7471"/>
+</rel>
+</span>
+<span id="s60_n26" from="7473" to="7485">
+<rel label="ATTR">
+<span from="7486" to="7495"/>
+</rel>
+</span>
+<span id="s60_n27" from="7486" to="7495">
+<rel label="ROOT">
+<span from="7318" to="7548"/>
+</rel>
+</span>
+<span id="s60_n28" from="7495" to="7496">
+<rel label="-PUNCT-">
+<span from="7486" to="7495"/>
+</rel>
+</span>
+<span id="s60_n29" from="7497" to="7500">
+<rel label="PP">
+<span from="7521" to="7530"/>
+</rel>
+</span>
+<span id="s60_n30" from="7501" to="7508">
+<rel label="ATTR">
+<span from="7509" to="7520"/>
+</rel>
+</span>
+<span id="s60_n31" from="7509" to="7520">
+<rel label="PN">
+<span from="7497" to="7500"/>
+</rel>
+</span>
+<span id="s60_n32" from="7521" to="7530">
+<rel label="-UNKNOWN-">
+<span from="7486" to="7495"/>
+</rel>
+</span>
+<span id="s60_n33" from="7530" to="7531">
+<rel label="-PUNCT-">
+<span from="7521" to="7530"/>
+</rel>
+</span>
+<span id="s60_n34" from="7532" to="7535">
+<rel label="DET">
+<span from="7536" to="7547"/>
+</rel>
+</span>
+<span id="s60_n35" from="7536" to="7547">
+<rel label="GMOD">
+<span from="7486" to="7495"/>
+</rel>
+</span>
+<span id="s60_n36" from="7547" to="7548">
+<rel label="-PUNCT-">
+<span from="7536" to="7547"/>
+</rel>
+</span>
+<span id="s61_n1" from="7549" to="7552">
+<rel label="DET">
+<span from="7553" to="7565"/>
+</rel>
+</span>
+<span id="s61_n2" from="7553" to="7565">
+<rel label="SUBJ">
+<span from="7582" to="7585"/>
+</rel>
+</span>
+<span id="s61_n3" from="7566" to="7568">
+<rel label="PP">
+<span from="7553" to="7565"/>
+</rel>
+</span>
+<span id="s61_n4" from="7569" to="7575">
+<rel label="ATTR">
+<span from="7576" to="7581"/>
+</rel>
+</span>
+<span id="s61_n5" from="7576" to="7581">
+<rel label="PN">
+<span from="7566" to="7568"/>
+</rel>
+</span>
+<span id="s61_n6" from="7582" to="7585">
+<rel label="ROOT">
+<span from="7549" to="7634"/>
+</rel>
+</span>
+<span id="s61_n7" from="7586" to="7590">
+<rel label="DET">
+<span from="7604" to="7617"/>
+</rel>
+</span>
+<span id="s61_n8" from="7591" to="7603">
+<rel label="ATTR">
+<span from="7604" to="7617"/>
+</rel>
+</span>
+<span id="s61_n9" from="7604" to="7617">
+<rel label="PRED">
+<span from="7582" to="7585"/>
+</rel>
+</span>
+<span id="s61_n10" from="7618" to="7621">
+<rel label="DET">
+<span from="7622" to="7633"/>
+</rel>
+</span>
+<span id="s61_n11" from="7622" to="7633">
+<rel label="GMOD">
+<span from="7604" to="7617"/>
+</rel>
+</span>
+<span id="s61_n12" from="7633" to="7634">
+<rel label="-PUNCT-">
+<span from="7622" to="7633"/>
+</rel>
+</span>
+<span id="s62_n1" from="7635" to="7638">
+<rel label="DET">
+<span from="7639" to="7645"/>
+</rel>
+</span>
+<span id="s62_n2" from="7639" to="7645">
+<rel label="SUBJ">
+<span from="7646" to="7654"/>
+</rel>
+</span>
+<span id="s62_n3" from="7646" to="7654">
+<rel label="ROOT">
+<span from="7635" to="7678"/>
+</rel>
+</span>
+<span id="s62_n4" from="7655" to="7660">
+<rel label="OBJA">
+<span from="7646" to="7654"/>
+</rel>
+</span>
+<span id="s62_n5" from="7660" to="7661">
+<rel label="-PUNCT-">
+<span from="7655" to="7660"/>
+</rel>
+</span>
+<span id="s62_n6" from="7662" to="7665">
+<rel label="OBJA">
+<span from="7670" to="7677"/>
+</rel>
+</span>
+<span id="s62_n7" from="7666" to="7669">
+<rel label="SUBJ">
+<span from="7670" to="7677"/>
+</rel>
+</span>
+<span id="s62_n8" from="7670" to="7677">
+<rel label="REL">
+<span from="7655" to="7660"/>
+</rel>
+</span>
+<span id="s62_n9" from="7677" to="7678">
+<rel label="-PUNCT-">
+<span from="7670" to="7677"/>
+</rel>
+</span>
+<span id="s63_n1" from="7679" to="7681">
+<rel label="SUBJ">
+<span from="7682" to="7686"/>
+</rel>
+</span>
+<span id="s63_n2" from="7682" to="7686">
+<rel label="ROOT">
+<span from="7679" to="7795"/>
+</rel>
+</span>
+<span id="s63_n3" from="7687" to="7696">
+<rel label="OBJA">
+<span from="7682" to="7686"/>
+</rel>
+</span>
+<span id="s63_n4" from="7696" to="7697">
+<rel label="-PUNCT-">
+<span from="7687" to="7696"/>
+</rel>
+</span>
+<span id="s63_n5" from="7698" to="7701">
+<rel label="SUBJ">
+<span from="7702" to="7709"/>
+</rel>
+</span>
+<span id="s63_n6" from="7702" to="7709">
+<rel label="REL">
+<span from="7687" to="7696"/>
+</rel>
+</span>
+<span id="s63_n7" from="7709" to="7710">
+<rel label="-PUNCT-">
+<span from="7702" to="7709"/>
+</rel>
+</span>
+<span id="s63_n8" from="7711" to="7714">
+<rel label="KONJ">
+<span from="7766" to="7771"/>
+</rel>
+</span>
+<span id="s63_n9" from="7715" to="7717">
+<rel label="SUBJ">
+<span from="7766" to="7771"/>
+</rel>
+</span>
+<span id="s63_n10" from="7718" to="7721">
+<rel label="ADV">
+<span from="7758" to="7765"/>
+</rel>
+</span>
+<span id="s63_n11" from="7722" to="7727">
+<rel label="DET">
+<span from="7737" to="7745"/>
+</rel>
+</span>
+<span id="s63_n12" from="7728" to="7736">
+<rel label="ATTR">
+<span from="7737" to="7745"/>
+</rel>
+</span>
+<span id="s63_n13" from="7737" to="7745">
+<rel label="OBJA">
+<span from="7758" to="7765"/>
+</rel>
+</span>
+<span id="s63_n14" from="7746" to="7748">
+<rel label="PP">
+<span from="7758" to="7765"/>
+</rel>
+</span>
+<span id="s63_n15" from="7749" to="7752">
+<rel label="DET">
+<span from="7753" to="7757"/>
+</rel>
+</span>
+<span id="s63_n16" from="7753" to="7757">
+<rel label="PN">
+<span from="7746" to="7748"/>
+</rel>
+</span>
+<span id="s63_n17" from="7758" to="7765">
+<rel label="AUX">
+<span from="7766" to="7771"/>
+</rel>
+</span>
+<span id="s63_n18" from="7766" to="7771">
+<rel label="NEB">
+<span from="7702" to="7709"/>
+</rel>
+</span>
+<span id="s63_n19" from="7771" to="7772">
+<rel label="-PUNCT-">
+<span from="7766" to="7771"/>
+</rel>
+</span>
+<span id="s63_n20" from="7773" to="7776">
+<rel label="DET">
+<span from="7777" to="7781"/>
+</rel>
+</span>
+<span id="s63_n21" from="7777" to="7781">
+<rel label="OBJA">
+<span from="7782" to="7788"/>
+</rel>
+</span>
+<span id="s63_n22" from="7782" to="7788">
+<rel label="AUX">
+<span from="7789" to="7794"/>
+</rel>
+</span>
+<span id="s63_n23" from="7789" to="7794">
+<rel label="KON">
+<span from="7682" to="7686"/>
+</rel>
+</span>
+<span id="s63_n24" from="7794" to="7795">
+<rel label="-PUNCT-">
+<span from="7789" to="7794"/>
+</rel>
+</span>
+<span id="s64_n1" from="7796" to="7800">
+<rel label="ROOT">
+<span from="7796" to="7839"/>
+</rel>
+</span>
+<span id="s64_n2" from="7801" to="7803">
+<rel label="ADV">
+<span from="7804" to="7809"/>
+</rel>
+</span>
+<span id="s64_n3" from="7804" to="7809">
+<rel label="CJ">
+<span from="7796" to="7800"/>
+</rel>
+</span>
+<span id="s64_n4" from="7810" to="7812">
+<rel label="SUBJ">
+<span from="7804" to="7809"/>
+</rel>
+</span>
+<span id="s64_n5" from="7813" to="7818">
+<rel label="DET">
+<span from="7819" to="7825"/>
+</rel>
+</span>
+<span id="s64_n6" from="7819" to="7825">
+<rel label="OBJA">
+<span from="7826" to="7831"/>
+</rel>
+</span>
+<span id="s64_n7" from="7826" to="7831">
+<rel label="AUX">
+<span from="7832" to="7838"/>
+</rel>
+</span>
+<span id="s64_n8" from="7832" to="7838">
+<rel label="AUX">
+<span from="7804" to="7809"/>
+</rel>
+</span>
+<span id="s64_n9" from="7838" to="7839">
+<rel label="-PUNCT-">
+<span from="7832" to="7838"/>
+</rel>
+</span>
+<span id="s65_n1" from="7840" to="7843">
+<rel label="DET">
+<span from="7856" to="7864"/>
+</rel>
+</span>
+<span id="s65_n2" from="7844" to="7855">
+<rel label="ATTR">
+<span from="7856" to="7864"/>
+</rel>
+</span>
+<span id="s65_n3" from="7856" to="7864">
+<rel label="SUBJ">
+<span from="7865" to="7868"/>
+</rel>
+</span>
+<span id="s65_n4" from="7865" to="7868">
+<rel label="ROOT">
+<span from="7840" to="7958"/>
+</rel>
+</span>
+<span id="s65_n5" from="7869" to="7873">
+<rel label="DET">
+<span from="7900" to="7910"/>
+</rel>
+</span>
+<span id="s65_n6" from="7874" to="7888">
+<rel label="ATTR">
+<span from="7900" to="7910"/>
+</rel>
+</span>
+<span id="s65_n7" from="7889" to="7899">
+<rel label="ATTR">
+<span from="7900" to="7910"/>
+</rel>
+</span>
+<span id="s65_n8" from="7900" to="7910">
+<rel label="PRED">
+<span from="7865" to="7868"/>
+</rel>
+</span>
+<span id="s65_n9" from="7910" to="7911">
+<rel label="-PUNCT-">
+<span from="7900" to="7910"/>
+</rel>
+</span>
+<span id="s65_n10" from="7912" to="7915">
+<rel label="SUBJ">
+<span from="7917" to="7925"/>
+</rel>
+</span>
+<span id="s65_n11" from="7915" to="7916">
+<rel label="-PUNCT-">
+<span from="7912" to="7915"/>
+</rel>
+</span>
+<span id="s65_n12" from="7917" to="7925">
+<rel label="REL">
+<span from="7900" to="7910"/>
+</rel>
+</span>
+<span id="s65_n13" from="7925" to="7926">
+<rel label="-PUNCT-">
+<span from="7917" to="7925"/>
+</rel>
+</span>
+<span id="s65_n14" from="7927" to="7934">
+<rel label="ADV">
+<span from="7945" to="7953"/>
+</rel>
+</span>
+<span id="s65_n15" from="7935" to="7944">
+<rel label="PRED">
+<span from="7945" to="7953"/>
+</rel>
+</span>
+<span id="s65_n16" from="7945" to="7953">
+<rel label="AUX">
+<span from="7954" to="7957"/>
+</rel>
+</span>
+<span id="s65_n17" from="7954" to="7957">
+<rel label="KON">
+<span from="7865" to="7868"/>
+</rel>
+</span>
+<span id="s65_n18" from="7957" to="7958">
+<rel label="-PUNCT-">
+<span from="7954" to="7957"/>
+</rel>
+</span>
+<span id="s66_n1" from="7959" to="7962">
+<rel label="DET">
+<span from="7963" to="7974"/>
+</rel>
+</span>
+<span id="s66_n2" from="7963" to="7974">
+<rel label="SUBJ">
+<span from="7975" to="7980"/>
+</rel>
+</span>
+<span id="s66_n3" from="7975" to="7980">
+<rel label="ROOT">
+<span from="7959" to="8053"/>
+</rel>
+</span>
+<span id="s66_n4" from="7981" to="7984">
+<rel label="OBJP">
+<span from="7975" to="7980"/>
+</rel>
+</span>
+<span id="s66_n5" from="7985" to="7988">
+<rel label="DET">
+<span from="7989" to="7997"/>
+</rel>
+</span>
+<span id="s66_n6" from="7989" to="7997">
+<rel label="PN">
+<span from="7981" to="7984"/>
+</rel>
+</span>
+<span id="s66_n7" from="7998" to="8000">
+<rel label="PP">
+<span from="8021" to="8030"/>
+</rel>
+</span>
+<span id="s66_n8" from="8001" to="8006">
+<rel label="DET">
+<span from="8012" to="8020"/>
+</rel>
+</span>
+<span id="s66_n9" from="8007" to="8011">
+<rel label="ATTR">
+<span from="8012" to="8020"/>
+</rel>
+</span>
+<span id="s66_n10" from="8012" to="8020">
+<rel label="PN">
+<span from="7998" to="8000"/>
+</rel>
+</span>
+<span id="s66_n11" from="8021" to="8030">
+<rel label="APP">
+<span from="7989" to="7997"/>
+</rel>
+</span>
+<span id="s66_n12" from="8031" to="8034">
+<rel label="KOM">
+<span from="8021" to="8030"/>
+</rel>
+</span>
+<span id="s66_n13" from="8035" to="8038">
+<rel label="CJ">
+<span from="8031" to="8034"/>
+</rel>
+</span>
+<span id="s66_n14" from="8039" to="8042">
+<rel label="DET">
+<span from="8043" to="8052"/>
+</rel>
+</span>
+<span id="s66_n15" from="8043" to="8052">
+<rel label="PN">
+<span from="8035" to="8038"/>
+</rel>
+</span>
+<span id="s66_n16" from="8052" to="8053">
+<rel label="-PUNCT-">
+<span from="8043" to="8052"/>
+</rel>
+</span>
+<span id="s67_n1" from="8054" to="8057">
+<rel label="PRED">
+<span from="8058" to="8061"/>
+</rel>
+</span>
+<span id="s67_n2" from="8058" to="8061">
+<rel label="ROOT">
+<span from="8054" to="8077"/>
+</rel>
+</span>
+<span id="s67_n3" from="8062" to="8076">
+<rel label="SUBJ">
+<span from="8058" to="8061"/>
+</rel>
+</span>
+<span id="s67_n4" from="8076" to="8077">
+<rel label="-PUNCT-">
+<span from="8062" to="8076"/>
+</rel>
+</span>
+<span id="s68_n1" from="8087" to="8091">
+<rel label="SUBJ">
+<span from="8092" to="8095"/>
+</rel>
+</span>
+<span id="s68_n2" from="8092" to="8095">
+<rel label="ROOT">
+<span from="8087" to="8125"/>
+</rel>
+</span>
+<span id="s68_n3" from="8096" to="8105">
+<rel label="PRED">
+<span from="8092" to="8095"/>
+</rel>
+</span>
+<span id="s68_n4" from="8106" to="8109">
+<rel label="KON">
+<span from="8096" to="8105"/>
+</rel>
+</span>
+<span id="s68_n5" from="8110" to="8116">
+<rel label="CJ">
+<span from="8106" to="8109"/>
+</rel>
+</span>
+<span id="s68_n6" from="8117" to="8120">
+<rel label="KOM">
+<span from="8096" to="8105"/>
+</rel>
+</span>
+<span id="s68_n7" from="8121" to="8124">
+<rel label="CJ">
+<span from="8117" to="8120"/>
+</rel>
+</span>
+<span id="s68_n8" from="8124" to="8125">
+<rel label="-PUNCT-">
+<span from="8121" to="8124"/>
+</rel>
+</span>
+<span id="s69_n1" from="8126" to="8131">
+<rel label="ZEIT">
+<span from="8132" to="8137"/>
+</rel>
+</span>
+<span id="s69_n2" from="8132" to="8137">
+<rel label="ROOT">
+<span from="8126" to="8173"/>
+</rel>
+</span>
+<span id="s69_n3" from="8138" to="8140">
+<rel label="SUBJ">
+<span from="8132" to="8137"/>
+</rel>
+</span>
+<span id="s69_n4" from="8141" to="8143">
+<rel label="OBJA">
+<span from="8132" to="8137"/>
+</rel>
+</span>
+<span id="s69_n5" from="8144" to="8147">
+<rel label="PP">
+<span from="8132" to="8137"/>
+</rel>
+</span>
+<span id="s69_n6" from="8148" to="8151">
+<rel label="PN">
+<span from="8144" to="8147"/>
+</rel>
+</span>
+<span id="s69_n7" from="8152" to="8156">
+<rel label="PP">
+<span from="8132" to="8137"/>
+</rel>
+</span>
+<span id="s69_n8" from="8157" to="8163">
+<rel label="DET">
+<span from="8164" to="8172"/>
+</rel>
+</span>
+<span id="s69_n9" from="8164" to="8172">
+<rel label="PN">
+<span from="8152" to="8156"/>
+</rel>
+</span>
+<span id="s69_n10" from="8172" to="8173">
+<rel label="-PUNCT-">
+<span from="8164" to="8172"/>
+</rel>
+</span>
+<span id="s70_n1" from="8174" to="8184">
+<rel label="ROOT">
+<span from="8174" to="8185"/>
+</rel>
+</span>
+<span id="s70_n2" from="8184" to="8185">
+<rel label="-PUNCT-">
+<span from="8174" to="8184"/>
+</rel>
+</span>
+<span id="s71_n1" from="8204" to="8212">
+<rel label="ROOT">
+<span from="8204" to="8213"/>
+</rel>
+</span>
+<span id="s71_n2" from="8212" to="8213">
+<rel label="-PUNCT-">
+<span from="8204" to="8212"/>
+</rel>
+</span>
+<span id="s72_n1" from="8214" to="8218">
+<rel label="ROOT">
+<span from="8214" to="8219"/>
+</rel>
+</span>
+<span id="s72_n2" from="8218" to="8219">
+<rel label="-PUNCT-">
+<span from="8214" to="8218"/>
+</rel>
+</span>
+<span id="s73_n1" from="8220" to="8226">
+<rel label="ROOT">
+<span from="8220" to="8227"/>
+</rel>
+</span>
+<span id="s73_n2" from="8226" to="8227">
+<rel label="-PUNCT-">
+<span from="8220" to="8226"/>
+</rel>
+</span>
+<span id="s74_n1" from="8228" to="8236">
+<rel label="ROOT">
+<span from="8228" to="8248"/>
+</rel>
+</span>
+<span id="s74_n2" from="8237" to="8240">
+<rel label="DET">
+<span from="8241" to="8247"/>
+</rel>
+</span>
+<span id="s74_n3" from="8241" to="8247">
+<rel label="GMOD">
+<span from="8228" to="8236"/>
+</rel>
+</span>
+<span id="s74_n4" from="8247" to="8248">
+<rel label="-PUNCT-">
+<span from="8241" to="8247"/>
+</rel>
+</span>
+<span id="s75_n1" from="8249" to="8255">
+<rel label="ATTR">
+<span from="8256" to="8262"/>
+</rel>
+</span>
+<span id="s75_n2" from="8256" to="8262">
+<rel label="SUBJ">
+<span from="8263" to="8276"/>
+</rel>
+</span>
+<span id="s75_n3" from="8263" to="8276">
+<rel label="ROOT">
+<span from="8249" to="8298"/>
+</rel>
+</span>
+<span id="s75_n4" from="8277" to="8280">
+<rel label="DET">
+<span from="8281" to="8285"/>
+</rel>
+</span>
+<span id="s75_n5" from="8281" to="8285">
+<rel label="OBJA">
+<span from="8263" to="8276"/>
+</rel>
+</span>
+<span id="s75_n6" from="8286" to="8288">
+<rel label="PP">
+<span from="8263" to="8276"/>
+</rel>
+</span>
+<span id="s75_n7" from="8289" to="8297">
+<rel label="PN">
+<span from="8286" to="8288"/>
+</rel>
+</span>
+<span id="s75_n8" from="8297" to="8298">
+<rel label="-PUNCT-">
+<span from="8289" to="8297"/>
+</rel>
+</span>
+<span id="s76_n1" from="8299" to="8302">
+<rel label="DET">
+<span from="8303" to="8315"/>
+</rel>
+</span>
+<span id="s76_n2" from="8303" to="8315">
+<rel label="SUBJ">
+<span from="8324" to="8331"/>
+</rel>
+</span>
+<span id="s76_n3" from="8316" to="8323">
+<rel label="APP">
+<span from="8303" to="8315"/>
+</rel>
+</span>
+<span id="s76_n4" from="8324" to="8331">
+<rel label="ROOT">
+<span from="8299" to="8358"/>
+</rel>
+</span>
+<span id="s76_n5" from="8332" to="8336">
+<rel label="PP">
+<span from="8324" to="8331"/>
+</rel>
+</span>
+<span id="s76_n6" from="8337" to="8340">
+<rel label="DET">
+<span from="8341" to="8345"/>
+</rel>
+</span>
+<span id="s76_n7" from="8341" to="8345">
+<rel label="PN">
+<span from="8332" to="8336"/>
+</rel>
+</span>
+<span id="s76_n8" from="8346" to="8348">
+<rel label="PP">
+<span from="8341" to="8345"/>
+</rel>
+</span>
+<span id="s76_n9" from="8349" to="8352">
+<rel label="DET">
+<span from="8353" to="8357"/>
+</rel>
+</span>
+<span id="s76_n10" from="8353" to="8357">
+<rel label="PN">
+<span from="8346" to="8348"/>
+</rel>
+</span>
+<span id="s76_n11" from="8357" to="8358">
+<rel label="-PUNCT-">
+<span from="8353" to="8357"/>
+</rel>
+</span>
+<span id="s77_n1" from="8359" to="8370">
+<rel label="SUBJ">
+<span from="8371" to="8375"/>
+</rel>
+</span>
+<span id="s77_n2" from="8371" to="8375">
+<rel label="ROOT">
+<span from="8359" to="8394"/>
+</rel>
+</span>
+<span id="s77_n3" from="8376" to="8380">
+<rel label="ADV">
+<span from="8371" to="8375"/>
+</rel>
+</span>
+<span id="s77_n4" from="8381" to="8386">
+<rel label="DET">
+<span from="8387" to="8393"/>
+</rel>
+</span>
+<span id="s77_n5" from="8387" to="8393">
+<rel label="PRED">
+<span from="8371" to="8375"/>
+</rel>
+</span>
+<span id="s77_n6" from="8393" to="8394">
+<rel label="-PUNCT-">
+<span from="8387" to="8393"/>
+</rel>
+</span>
+<span id="s78_n1" from="8395" to="8399">
+<rel label="KONJ">
+<span from="8431" to="8437"/>
+</rel>
+</span>
+<span id="s78_n2" from="8400" to="8403">
+<rel label="DET">
+<span from="8410" to="8414"/>
+</rel>
+</span>
+<span id="s78_n3" from="8404" to="8409">
+<rel label="ATTR">
+<span from="8410" to="8414"/>
+</rel>
+</span>
+<span id="s78_n4" from="8410" to="8414">
+<rel label="SUBJ">
+<span from="8431" to="8437"/>
+</rel>
+</span>
+<span id="s78_n5" from="8415" to="8419">
+<rel label="DET">
+<span from="8425" to="8430"/>
+</rel>
+</span>
+<span id="s78_n6" from="8420" to="8424">
+<rel label="ATTR">
+<span from="8425" to="8430"/>
+</rel>
+</span>
+<span id="s78_n7" from="8425" to="8430">
+<rel label="OBJA">
+<span from="8431" to="8437"/>
+</rel>
+</span>
+<span id="s78_n8" from="8431" to="8437">
+<rel label="NEB">
+<span from="8442" to="8448"/>
+</rel>
+</span>
+<span id="s78_n9" from="8437" to="8438">
+<rel label="-PUNCT-">
+<span from="8431" to="8437"/>
+</rel>
+</span>
+<span id="s78_n10" from="8439" to="8441">
+<rel label="ADV">
+<span from="8442" to="8448"/>
+</rel>
+</span>
+<span id="s78_n11" from="8442" to="8448">
+<rel label="ROOT">
+<span from="8395" to="8490"/>
+</rel>
+</span>
+<span id="s78_n12" from="8449" to="8452">
+<rel label="DET">
+<span from="8461" to="8465"/>
+</rel>
+</span>
+<span id="s78_n13" from="8453" to="8460">
+<rel label="ATTR">
+<span from="8461" to="8465"/>
+</rel>
+</span>
+<span id="s78_n14" from="8461" to="8465">
+<rel label="SUBJ">
+<span from="8442" to="8448"/>
+</rel>
+</span>
+<span id="s78_n15" from="8466" to="8471">
+<rel label="ADV">
+<span from="8442" to="8448"/>
+</rel>
+</span>
+<span id="s78_n16" from="8472" to="8476">
+<rel label="ADV">
+<span from="8442" to="8448"/>
+</rel>
+</span>
+<span id="s78_n17" from="8477" to="8481">
+<rel label="DET">
+<span from="8482" to="8489"/>
+</rel>
+</span>
+<span id="s78_n18" from="8482" to="8489">
+<rel label="OBJA">
+<span from="8442" to="8448"/>
+</rel>
+</span>
+<span id="s78_n19" from="8489" to="8490">
+<rel label="-PUNCT-">
+<span from="8482" to="8489"/>
+</rel>
+</span>
+<span id="s79_n1" from="8491" to="8493">
+<rel label="ADV">
+<span from="8530" to="8540"/>
+</rel>
+</span>
+<span id="s79_n2" from="8494" to="8497">
+<rel label="KOM">
+<span from="8491" to="8493"/>
+</rel>
+</span>
+<span id="s79_n3" from="8498" to="8501">
+<rel label="DET">
+<span from="8502" to="8511"/>
+</rel>
+</span>
+<span id="s79_n4" from="8502" to="8511">
+<rel label="CJ">
+<span from="8494" to="8497"/>
+</rel>
+</span>
+<span id="s79_n5" from="8512" to="8517">
+<rel label="DET">
+<span from="8518" to="8523"/>
+</rel>
+</span>
+<span id="s79_n6" from="8518" to="8523">
+<rel label="GMOD">
+<span from="8502" to="8511"/>
+</rel>
+</span>
+<span id="s79_n7" from="8524" to="8529">
+<rel label="OBJA">
+<span from="8530" to="8540"/>
+</rel>
+</span>
+<span id="s79_n8" from="8530" to="8540">
+<rel label="ROOT">
+<span from="8491" to="8593"/>
+</rel>
+</span>
+<span id="s79_n9" from="8540" to="8541">
+<rel label="-PUNCT-">
+<span from="8530" to="8540"/>
+</rel>
+</span>
+<span id="s79_n10" from="8542" to="8544">
+<rel label="ADV">
+<span from="8545" to="8555"/>
+</rel>
+</span>
+<span id="s79_n11" from="8545" to="8555">
+<rel label="ROOT">
+<span from="8491" to="8593"/>
+</rel>
+</span>
+<span id="s79_n12" from="8556" to="8559">
+<rel label="DET">
+<span from="8560" to="8565"/>
+</rel>
+</span>
+<span id="s79_n13" from="8560" to="8565">
+<rel label="SUBJ">
+<span from="8545" to="8555"/>
+</rel>
+</span>
+<span id="s79_n14" from="8566" to="8569">
+<rel label="DET">
+<span from="8570" to="8580"/>
+</rel>
+</span>
+<span id="s79_n15" from="8570" to="8580">
+<rel label="OBJA">
+<span from="8545" to="8555"/>
+</rel>
+</span>
+<span id="s79_n16" from="8581" to="8584">
+<rel label="DET">
+<span from="8585" to="8592"/>
+</rel>
+</span>
+<span id="s79_n17" from="8585" to="8592">
+<rel label="GMOD">
+<span from="8570" to="8580"/>
+</rel>
+</span>
+<span id="s79_n18" from="8592" to="8593">
+<rel label="-PUNCT-">
+<span from="8585" to="8592"/>
+</rel>
+</span>
+<span id="s80_n1" from="8594" to="8597">
+<rel label="DET">
+<span from="8598" to="8604"/>
+</rel>
+</span>
+<span id="s80_n2" from="8598" to="8604">
+<rel label="SUBJ">
+<span from="8605" to="8608"/>
+</rel>
+</span>
+<span id="s80_n3" from="8605" to="8608">
+<rel label="ROOT">
+<span from="8594" to="8746"/>
+</rel>
+</span>
+<span id="s80_n4" from="8609" to="8612">
+<rel label="DET">
+<span from="8631" to="8638"/>
+</rel>
+</span>
+<span id="s80_n5" from="8613" to="8621">
+<rel label="ADV">
+<span from="8622" to="8630"/>
+</rel>
+</span>
+<span id="s80_n6" from="8622" to="8630">
+<rel label="ATTR">
+<span from="8631" to="8638"/>
+</rel>
+</span>
+<span id="s80_n7" from="8631" to="8638">
+<rel label="PRED">
+<span from="8605" to="8608"/>
+</rel>
+</span>
+<span id="s80_n8" from="8638" to="8639">
+<rel label="-PUNCT-">
+<span from="8631" to="8638"/>
+</rel>
+</span>
+<span id="s80_n9" from="8640" to="8643">
+<rel label="KONJ">
+<span from="8681" to="8685"/>
+</rel>
+</span>
+<span id="s80_n10" from="8644" to="8646">
+<rel label="SUBJ">
+<span from="8681" to="8685"/>
+</rel>
+</span>
+<span id="s80_n11" from="8647" to="8658">
+<rel label="ATTR">
+<span from="8659" to="8664"/>
+</rel>
+</span>
+<span id="s80_n12" from="8659" to="8664">
+<rel label="OBJA">
+<span from="8681" to="8685"/>
+</rel>
+</span>
+<span id="s80_n13" from="8665" to="8668">
+<rel label="KON">
+<span from="8659" to="8664"/>
+</rel>
+</span>
+<span id="s80_n14" from="8669" to="8680">
+<rel label="CJ">
+<span from="8665" to="8668"/>
+</rel>
+</span>
+<span id="s80_n15" from="8681" to="8685">
+<rel label="NEB">
+<span from="8605" to="8608"/>
+</rel>
+</span>
+<span id="s80_n16" from="8685" to="8686">
+<rel label="-PUNCT-">
+<span from="8681" to="8685"/>
+</rel>
+</span>
+<span id="s80_n17" from="8687" to="8693">
+<rel label="PP">
+<span from="8739" to="8745"/>
+</rel>
+</span>
+<span id="s80_n18" from="8694" to="8697">
+<rel label="SUBJ">
+<span from="8739" to="8745"/>
+</rel>
+</span>
+<span id="s80_n19" from="8698" to="8700">
+<rel label="PP">
+<span from="8739" to="8745"/>
+</rel>
+</span>
+<span id="s80_n20" from="8701" to="8706">
+<rel label="PN">
+<span from="8698" to="8700"/>
+</rel>
+</span>
+<span id="s80_n21" from="8707" to="8710">
+<rel label="DET">
+<span from="8711" to="8714"/>
+</rel>
+</span>
+<span id="s80_n22" from="8711" to="8714">
+<rel label="OBJA">
+<span from="8739" to="8745"/>
+</rel>
+</span>
+<span id="s80_n23" from="8715" to="8724">
+<rel label="GMOD">
+<span from="8711" to="8714"/>
+</rel>
+</span>
+<span id="s80_n24" from="8725" to="8728">
+<rel label="DET">
+<span from="8729" to="8738"/>
+</rel>
+</span>
+<span id="s80_n25" from="8729" to="8738">
+<rel label="APP">
+<span from="8711" to="8714"/>
+</rel>
+</span>
+<span id="s80_n26" from="8739" to="8745">
+<rel label="ROOT">
+<span from="8594" to="8746"/>
+</rel>
+</span>
+<span id="s80_n27" from="8745" to="8746">
+<rel label="-PUNCT-">
+<span from="8739" to="8745"/>
+</rel>
+</span>
+<span id="s81_n1" from="8747" to="8751">
+<rel label="ADV">
+<span from="8752" to="8757"/>
+</rel>
+</span>
+<span id="s81_n2" from="8752" to="8757">
+<rel label="ROOT">
+<span from="8747" to="8807"/>
+</rel>
+</span>
+<span id="s81_n3" from="8758" to="8761">
+<rel label="DET">
+<span from="8762" to="8770"/>
+</rel>
+</span>
+<span id="s81_n4" from="8762" to="8770">
+<rel label="SUBJ">
+<span from="8752" to="8757"/>
+</rel>
+</span>
+<span id="s81_n5" from="8771" to="8775">
+<rel label="OBJA">
+<span from="8752" to="8757"/>
+</rel>
+</span>
+<span id="s81_n6" from="8776" to="8781">
+<rel label="DET">
+<span from="8782" to="8788"/>
+</rel>
+</span>
+<span id="s81_n7" from="8782" to="8788">
+<rel label="SUBJ">
+<span from="8752" to="8757"/>
+</rel>
+</span>
+<span id="s81_n8" from="8789" to="8791">
+<rel label="PP">
+<span from="8752" to="8757"/>
+</rel>
+</span>
+<span id="s81_n9" from="8792" to="8799">
+<rel label="PN">
+<span from="8789" to="8791"/>
+</rel>
+</span>
+<span id="s81_n10" from="8800" to="8806">
+<rel label="ADV">
+<span from="8752" to="8757"/>
+</rel>
+</span>
+<span id="s81_n11" from="8806" to="8807">
+<rel label="-PUNCT-">
+<span from="8800" to="8806"/>
+</rel>
+</span>
+<span id="s82_n1" from="8808" to="8814">
+<rel label="SUBJ">
+<span from="8815" to="8818"/>
+</rel>
+</span>
+<span id="s82_n2" from="8815" to="8818">
+<rel label="ROOT">
+<span from="8808" to="8888"/>
+</rel>
+</span>
+<span id="s82_n3" from="8819" to="8824">
+<rel label="PRED">
+<span from="8815" to="8818"/>
+</rel>
+</span>
+<span id="s82_n4" from="8825" to="8828">
+<rel label="PP">
+<span from="8819" to="8824"/>
+</rel>
+</span>
+<span id="s82_n5" from="8829" to="8841">
+<rel label="PN">
+<span from="8825" to="8828"/>
+</rel>
+</span>
+<span id="s82_n6" from="8841" to="8842">
+<rel label="-PUNCT-">
+<span from="8829" to="8841"/>
+</rel>
+</span>
+<span id="s82_n7" from="8843" to="8852">
+<rel label="ROOT">
+<span from="8808" to="8888"/>
+</rel>
+</span>
+<span id="s82_n8" from="8853" to="8857">
+<rel label="PP">
+<span from="8843" to="8852"/>
+</rel>
+</span>
+<span id="s82_n9" from="8858" to="8868">
+<rel label="PN">
+<span from="8853" to="8857"/>
+</rel>
+</span>
+<span id="s82_n10" from="8868" to="8869">
+  <rel label="-PUNCT-">
+    <span from="8858" to="8868"/>
+  </rel>
+</span>
+<span id="s82_n11" from="8870" to="8887">
+  <rel label="ROOT">
+    <span from="8808" to="8888"/>
+  </rel>
+</span>
+<span id="s82_n12" from="8887" to="8888">
+  <rel label="-PUNCT-">
+    <span from="8870" to="8887"/>
+  </rel>
+</span>
+</spanList>
+</layer>
diff --git a/t/annotation/corpus/doc/0002/malt/metadata.xml b/t/annotation/corpus/doc/0002/malt/metadata.xml
new file mode 100644
index 0000000..ff6a8ab
--- /dev/null
+++ b/t/annotation/corpus/doc/0002/malt/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="metadata.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+<metadata docid="GOE_AGX.00002" type="foundry" xmlns="http://ids-mannheim.de/ns/KorAP">
+  <doc file="../data.xml" />
+  <foundry name="malt">
+    <layer info="rel" file="dependency.xml" name="malt" id="l1" />
+  </foundry>
+</metadata>
diff --git a/t/annotation/corpus/doc/0002/struct/structure.xml b/t/annotation/corpus/doc/0002/struct/structure.xml
new file mode 100644
index 0000000..852684d
--- /dev/null
+++ b/t/annotation/corpus/doc/0002/struct/structure.xml
@@ -0,0 +1,1283 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="span.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+
+<layer docid="GOE_AGX.00002" xmlns="http://ids-mannheim.de/ns/KorAP" version="KorAP-0.4">
+  <spanList>
+    <span id="s0" from="8887" to="8887">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">text</f>
+      </fs>
+    </span>
+    <span id="s1" from="0" to="0">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">front</f>
+      </fs>
+    </span>
+    <span id="s2" from="0" to="8887">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">body</f>
+      </fs>
+    </span>
+    <span id="s3" from="0" to="8887">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">div</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="n">0</f>
+            <f name="complete">y</f>
+            <f name="type">Aphorismus</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s4" from="0" to="0">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">pb</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="id">agx.00002-372-pb372</f>
+            <f name="n">372</f>
+            <f name="TEIform">pb</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s5" from="0" to="23">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">head</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">main</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s6" from="0" to="23">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+      </fs>
+    </span>
+    <span id="s7" from="24" to="8887">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">div</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="n">1</f>
+            <f name="complete">y</f>
+            <f name="type">section</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s8" from="24" to="49">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">head</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">cross</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s9" from="24" to="49">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s10" from="51" to="8887">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">p</f>
+      </fs>
+    </span>
+    <span id="s11" from="51" to="51">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s12" from="51" to="8887">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">list</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">unordered</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s13" from="51" to="51">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s14" from="51" to="133">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s15" from="51" to="133">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s16" from="134" to="134">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s17" from="134" to="238">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s18" from="134" to="238">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s19" from="239" to="239">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s20" from="239" to="395">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s21" from="239" to="310">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s22" from="311" to="395">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s23" from="396" to="396">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s24" from="396" to="607">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s25" from="396" to="560">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s26" from="561" to="607">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s27" from="608" to="608">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s28" from="608" to="798">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s29" from="608" to="798">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s30" from="799" to="799">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s31" from="799" to="911">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s32" from="799" to="911">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s33" from="912" to="912">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s34" from="912" to="1029">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s35" from="912" to="1029">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s36" from="1030" to="1030">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s37" from="1030" to="1244">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s38" from="1030" to="1244">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s39" from="1245" to="1245">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">pb</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="id">agx.00002-373-pb373</f>
+            <f name="n">373</f>
+            <f name="TEIform">pb</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s40" from="1245" to="1245">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s41" from="1245" to="1672">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s42" from="1245" to="1385">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s43" from="1386" to="1480">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s44" from="1481" to="1672">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s45" from="1673" to="1673">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s46" from="1673" to="2473">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s47" from="1673" to="1855">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s48" from="1856" to="1947">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s49" from="1948" to="2123">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s50" from="2124" to="2473">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s51" from="2474" to="2474">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s52" from="2474" to="2894">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s53" from="2474" to="2720">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s54" from="2721" to="2894">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s55" from="2895" to="2895">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s56" from="2895" to="3189">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s57" from="2895" to="3189">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s58" from="3190" to="3190">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">pb</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="id">agx.00002-374-pb374</f>
+            <f name="n">374</f>
+            <f name="TEIform">pb</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s59" from="3190" to="3190">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s60" from="3190" to="3414">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s61" from="3190" to="3414">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s62" from="3415" to="3415">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s63" from="3415" to="3544">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s64" from="3415" to="3544">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s65" from="3545" to="3545">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s66" from="3545" to="3771">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s67" from="3545" to="3631">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s68" from="3632" to="3771">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s69" from="3772" to="3772">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s70" from="3772" to="4020">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s71" from="3772" to="3938">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s72" from="3939" to="4020">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s73" from="4021" to="4021">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s74" from="4021" to="4352">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s75" from="4021" to="4352">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s76" from="4256" to="4260">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">orig</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="reg">Zeitverhältnissen</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s77" from="4353" to="4353">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s78" from="4353" to="4787">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s79" from="4353" to="4787">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s80" from="4788" to="4788">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">pb</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="id">agx.00002-375-pb375</f>
+            <f name="n">375</f>
+            <f name="TEIform">pb</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s81" from="4788" to="4788">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s82" from="4788" to="5025">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s83" from="4788" to="5025">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s84" from="5026" to="5026">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s85" from="5026" to="5210">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s86" from="5026" to="5210">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s87" from="5211" to="5211">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s88" from="5211" to="5373">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s89" from="5211" to="5373">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s90" from="5374" to="5374">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s91" from="5374" to="5448">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s92" from="5374" to="5448">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s93" from="5449" to="5449">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s94" from="5449" to="5889">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s95" from="5449" to="5723">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s96" from="5661" to="5670">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">orig</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="reg">Verstandswege</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s97" from="5673" to="5682">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">orig</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="reg">Vernunftswege</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s98" from="5724" to="5889">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s99" from="5890" to="5890">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s100" from="5890" to="6052">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s101" from="5890" to="5981">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s102" from="5982" to="6052">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s103" from="6053" to="6053">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s104" from="6053" to="6327">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s105" from="6053" to="6207">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s106" from="6208" to="6327">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s107" from="6328" to="6328">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s108" from="6328" to="6553">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s109" from="6328" to="6445">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s110" from="6446" to="6446">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">pb</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="id">agx.00002-376-pb376</f>
+            <f name="n">376</f>
+            <f name="TEIform">pb</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s111" from="6446" to="6553">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s112" from="6554" to="6554">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s113" from="6554" to="6687">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s114" from="6554" to="6687">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s115" from="6688" to="6688">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s116" from="6688" to="6731">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s117" from="6688" to="6731">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s118" from="6732" to="6732">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s119" from="6732" to="7142">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s120" from="6732" to="6952">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s121" from="6953" to="7037">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s122" from="7038" to="7142">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s123" from="7143" to="7143">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s124" from="7143" to="7548">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s125" from="7143" to="7317">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s126" from="7318" to="7548">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s127" from="7549" to="7549">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s128" from="7549" to="7634">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s129" from="7549" to="7634">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s130" from="7635" to="7635">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s131" from="7635" to="7678">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s132" from="7635" to="7678">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s133" from="7679" to="7679">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s134" from="7679" to="7839">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s135" from="7679" to="7839">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s136" from="7840" to="7840">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s137" from="7840" to="7958">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s138" from="7840" to="7958">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s139" from="7959" to="7959">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">pb</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="id">agx.00002-377-pb377</f>
+            <f name="n">377</f>
+            <f name="TEIform">pb</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s140" from="7959" to="7959">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s141" from="7959" to="8053">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s142" from="7959" to="8053">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s143" from="8054" to="8054">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s144" from="8054" to="8173">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s145" from="8054" to="8077">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s146" from="8078" to="8173">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s147" from="8174" to="8174">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s148" from="8174" to="8203">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s149" from="8174" to="8203">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s150" from="8204" to="8204">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s151" from="8204" to="8248">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s152" from="8204" to="8248">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s153" from="8249" to="8249">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s154" from="8249" to="8358">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s155" from="8249" to="8358">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s156" from="8359" to="8359">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s157" from="8359" to="8394">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s158" from="8359" to="8394">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s159" from="8395" to="8395">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s160" from="8395" to="8490">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s161" from="8395" to="8490">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s162" from="8491" to="8491">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s163" from="8491" to="8593">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s164" from="8491" to="8593">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s165" from="8594" to="8594">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s166" from="8594" to="8807">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s167" from="8594" to="8807">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s168" from="8659" to="8663">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">orig</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="reg">Sparkassen</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s169" from="8808" to="8808">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">label</f>
+      </fs>
+    </span>
+    <span id="s170" from="8808" to="8887">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">item</f>
+      </fs>
+    </span>
+    <span id="s171" from="8808" to="8887">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">s</f>
+        <f name="attr">
+          <fs type="attr">
+            <f name="type">manual</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s172" from="8887" to="8887">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">back</f>
+      </fs>
+    </span>
+  </spanList>
+</layer>
\ No newline at end of file
diff --git a/t/annotation/corpus/doc/0002/tree_tagger/metadata.xml b/t/annotation/corpus/doc/0002/tree_tagger/metadata.xml
new file mode 100644
index 0000000..e8a7aab
--- /dev/null
+++ b/t/annotation/corpus/doc/0002/tree_tagger/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="metadata.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+
+<metadata docid="GOE_AGX.00002" type="foundry" xmlns="http://ids-mannheim.de/ns/KorAP">
+  <doc file="../data.xml" />
+  <foundry name="tt">
+    <layer segm="tok" file="tokens.xml" name="token" id="l1" />
+    <layer segm="s" file="sentences.xml" name="sent" id="l2" />
+    <layer info="pos lemma" file="morpho.xml" name="morph" id="l3" />
+  </foundry>
+</metadata>
diff --git a/t/annotation/corpus/doc/0002/tree_tagger/morpho.xml b/t/annotation/corpus/doc/0002/tree_tagger/morpho.xml
new file mode 100644
index 0000000..62f7a46
--- /dev/null
+++ b/t/annotation/corpus/doc/0002/tree_tagger/morpho.xml
@@ -0,0 +1,18058 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="span.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+
+<layer xmlns="http://ids-mannheim.de/ns/KorAP" version="KorAP-0.4" docid="GOE_AGX.00002">
+ <spanList>
+  <span id="s_0" from="0" to="7">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Maxime</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1" from="8" to="11">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_2" from="12" to="23">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Reflexion</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_3" from="24" to="32">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Religion</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_4" from="33" to="36">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_5" from="37" to="48">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Christentum</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_6" from="48" to="49">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_7" from="51" to="54">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wir</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_8" from="55" to="59">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_9" from="60" to="74">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.991333</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_10" from="75" to="86">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Pantheist</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_11" from="86" to="87">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_12" from="88" to="96">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">dichtend</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_13" from="97" to="109">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Polytheist</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_14" from="109" to="110">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_15" from="111" to="119">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sittlich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_16" from="120" to="132">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Monotheist</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_17" from="132" to="133">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_18" from="134" to="138">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Gott</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_19" from="138" to="139">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_20" from="140" to="144">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wenn</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_21" from="145" to="148">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wir</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_22" from="149" to="153">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">hoch</f>
+      <f name="certainty">0.938414</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_23" from="154" to="160">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">stehen</f>
+      <f name="certainty">0.566542</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">stehen</f>
+      <f name="certainty">0.433458</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_24" from="160" to="161">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_25" from="162" to="165">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_26" from="166" to="171">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">alle</f>
+      <f name="certainty">0.997051</f>
+      <f name="ctag">PIS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_27" from="171" to="172">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">;</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_28" from="173" to="179">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">stehen</f>
+      <f name="certainty">0.999996</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_29" from="180" to="183">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wir</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_30" from="184" to="191">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">niedrig</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_31" from="191" to="192">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_32" from="193" to="195">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">so</f>
+      <f name="certainty">0.999995</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_33" from="196" to="199">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_34" from="200" to="202">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">er</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_35" from="203" to="206">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.990766</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_36" from="207" to="217">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Supplement</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_37" from="218" to="224">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">unser</f>
+      <f name="certainty">0.999999</f>
+      <f name="ctag">PPOSAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_38" from="225" to="237">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Armseligkeit</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_39" from="237" to="238">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_40" from="239" to="242">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.998577</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_41" from="243" to="250">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Kreatur</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_42" from="251" to="254">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_43" from="255" to="259">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sehr</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_44" from="260" to="267">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">schwach</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_45" from="267" to="268">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">;</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_46" from="269" to="273">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">denn</f>
+      <f name="certainty">0.850227</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">denn</f>
+      <f name="certainty">0.149773</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_47" from="274" to="279">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">suchen</f>
+      <f name="certainty">0.999952</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_48" from="280" to="283">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sie</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_49" from="284" to="289">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">etwas</f>
+      <f name="certainty">0.910309</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_50" from="289" to="290">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_51" from="291" to="297">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">finden</f>
+      <f name="certainty">0.999969</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_52" from="298" to="303">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.996490</f>
+      <f name="ctag">NE</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_53" from="304" to="309">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">nicht</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PTKNEG</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_54" from="309" to="310">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_55" from="311" to="316">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">stark</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_56" from="317" to="321">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">aber</f>
+      <f name="certainty">0.664918</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">aber</f>
+      <f name="certainty">0.335082</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_57" from="322" to="325">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_58" from="326" to="330">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Gott</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_59" from="330" to="331">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">;</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_60" from="332" to="336">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">denn</f>
+      <f name="certainty">0.850227</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">denn</f>
+      <f name="certainty">0.149773</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_61" from="337" to="342">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">suchen</f>
+      <f name="certainty">0.999952</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_62" from="343" to="345">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">er</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_63" from="346" to="349">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.998283</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_64" from="350" to="357">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Kreatur</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_65" from="357" to="358">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_66" from="359" to="361">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">so</f>
+      <f name="certainty">0.999995</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_67" from="362" to="365">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">haben</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_68" from="366" to="368">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">er</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_69" from="369" to="372">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sie</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_70" from="373" to="379">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">gleich</f>
+      <f name="certainty">0.969615</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_71" from="380" to="382">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">in</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_72" from="383" to="389">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">0.999998</f>
+      <f name="ctag">PPOSAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_73" from="390" to="394">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Hand</f>
+      <f name="certainty">0.999762</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_74" from="394" to="395">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_75" from="396" to="398">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">es</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_76" from="399" to="403">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">geben</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_77" from="404" to="407">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">nur</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_78" from="408" to="412">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">zwei</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">CARD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_79" from="413" to="418">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wahr</f>
+      <f name="certainty">0.988495</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_80" from="419" to="429">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Religion</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_81" from="429" to="430">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_82" from="431" to="434">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.944646</f>
+      <f name="ctag">PRELS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_83" from="435" to="439">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.943715</f>
+      <f name="ctag">PIS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_84" from="439" to="440">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_85" from="441" to="444">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.992468</f>
+      <f name="ctag">PRELS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_86" from="445" to="448">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.978206</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_87" from="449" to="456">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Heilige</f>
+      <f name="certainty">0.835440</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">heilig</f>
+      <f name="certainty">0.164560</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_88" from="456" to="457">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_89" from="458" to="461">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.855758</f>
+      <f name="ctag">PRELS</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.120794</f>
+      <f name="ctag">PDS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_90" from="462" to="464">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">in</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_91" from="465" to="468">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_92" from="469" to="471">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">um</f>
+      <f name="certainty">0.806443</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">um</f>
+      <f name="certainty">0.193287</f>
+      <f name="ctag">KOUI</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_93" from="472" to="475">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wir</f>
+      <f name="certainty">0.781614</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">wir</f>
+      <f name="certainty">0.218386</f>
+      <f name="ctag">PRF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_94" from="476" to="481">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wohnen</f>
+      <f name="certainty">0.999959</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_95" from="481" to="482">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_96" from="483" to="487">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">ganz</f>
+      <f name="certainty">0.953146</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_97" from="488" to="495">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">formlos</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_98" from="495" to="496">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_99" from="497" to="500">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.941697</f>
+      <f name="ctag">PRELS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_100" from="501" to="507">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">andere</f>
+      <f name="certainty">0.998431</f>
+      <f name="ctag">PIS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_101" from="507" to="508">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_102" from="509" to="512">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999621</f>
+      <f name="ctag">PRELS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_103" from="513" to="515">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">es</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_104" from="516" to="518">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">in</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_105" from="519" to="522">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999927</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_106" from="523" to="532">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">schön</f>
+      <f name="certainty">0.999620</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_107" from="533" to="537">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Form</f>
+      <f name="certainty">0.999986</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_108" from="538" to="547">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">anerkennen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_109" from="548" to="551">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_110" from="552" to="559">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">anbeten</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_111" from="559" to="560">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_112" from="561" to="566">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">alle</f>
+      <f name="certainty">0.993275</f>
+      <f name="ctag">PIS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_113" from="566" to="567">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_114" from="568" to="571">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">was</f>
+      <f name="certainty">0.756204</f>
+      <f name="ctag">PWS</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">was</f>
+      <f name="certainty">0.098810</f>
+      <f name="ctag">PRELS</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">was</f>
+      <f name="certainty">0.086698</f>
+      <f name="ctag">PIS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_115" from="572" to="582">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">dazwischen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PAV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_116" from="583" to="588">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">liegen</f>
+      <f name="certainty">0.999996</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_117" from="588" to="589">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_118" from="590" to="593">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_119" from="594" to="606">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Götzendienst</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_120" from="606" to="607">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_121" from="608" to="610">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">es</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_122" from="611" to="614">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_123" from="615" to="620">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">nicht</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PTKNEG</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_124" from="621" to="626">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">immer</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_125" from="627" to="632">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">nötig</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_126" from="632" to="633">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_127" from="634" to="637">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">dass</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_128" from="638" to="641">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.973930</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_129" from="642" to="647">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Wahre</f>
+      <f name="certainty">0.960607</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_130" from="648" to="652">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PRF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_131" from="653" to="664">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">verkörpern</f>
+      <f name="certainty">0.997242</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_132" from="664" to="665">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">;</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_133" from="666" to="671">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">schon</f>
+      <f name="certainty">0.998524</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_134" from="672" to="677">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">genug</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_135" from="677" to="678">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_136" from="679" to="683">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wenn</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_137" from="684" to="686">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">es</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_138" from="687" to="694">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">geistig</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_139" from="695" to="707">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">umherschweben</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_140" from="708" to="711">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_141" from="712" to="727">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Übereinstimmung</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_142" from="728" to="735">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">bewirken</f>
+      <f name="certainty">0.887826</f>
+      <f name="ctag">VVPP</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">bewirken</f>
+      <f name="certainty">0.090493</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_143" from="735" to="736">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_144" from="737" to="741">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wenn</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_145" from="742" to="744">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">es</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_146" from="745" to="748">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wie</f>
+      <f name="certainty">0.993388</f>
+      <f name="ctag">KOKOM</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_147" from="749" to="759">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Glockenton</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_148" from="760" to="776">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.999801</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_149" from="777" to="782">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">durch</f>
+      <f name="certainty">0.999152</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_150" from="783" to="786">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999931</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_151" from="787" to="792">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Luft</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_152" from="793" to="797">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wogen</f>
+      <f name="certainty">0.999999</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_153" from="797" to="798">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_154" from="799" to="810">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Frömmigkeit</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_155" from="811" to="814">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_156" from="815" to="819">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">keine</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PIAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_157" from="820" to="825">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Zweck</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_158" from="825" to="826">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_159" from="827" to="834">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sondern</f>
+      <f name="certainty">0.998763</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_160" from="835" to="838">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.998886</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_161" from="839" to="845">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Mittel</f>
+      <f name="certainty">0.999911</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_162" from="845" to="846">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_163" from="847" to="849">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">um</f>
+      <f name="certainty">0.991585</f>
+      <f name="ctag">KOUI</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_164" from="850" to="855">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">durch</f>
+      <f name="certainty">0.998131</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_165" from="856" to="859">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999755</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_166" from="860" to="867">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">rein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_167" from="868" to="878">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Gemütsruhe</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_168" from="879" to="882">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">zu</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPRART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_169" from="883" to="891">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">hoch</f>
+      <f name="certainty">0.999828</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_170" from="892" to="898">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Kultur</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_171" from="899" to="901">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">zu</f>
+      <f name="certainty">0.999622</f>
+      <f name="ctag">PTKZU</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_172" from="902" to="910">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">gelangen</f>
+      <f name="certainty">0.999974</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_173" from="910" to="911">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_174" from="912" to="920">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">deswegen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PAV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_175" from="921" to="925">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">lassen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_176" from="926" to="930">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PRF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_177" from="931" to="939">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">bemerken</f>
+      <f name="certainty">0.920559</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_178" from="939" to="940">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_179" from="941" to="944">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">dass</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_180" from="945" to="955">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">diejenigen</f>
+      <f name="certainty">0.989254</f>
+      <f name="ctag">PDS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_181" from="955" to="956">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_182" from="957" to="963">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">welche</f>
+      <f name="certainty">0.861070</f>
+      <f name="ctag">PRELS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_183" from="964" to="975">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Frömmigkeit</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_184" from="976" to="979">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">als</f>
+      <f name="certainty">0.993153</f>
+      <f name="ctag">KOKOM</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_185" from="980" to="985">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Zweck</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_186" from="986" to="989">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_187" from="990" to="994">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Ziel</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_188" from="995" to="1005">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">aufstecken</f>
+      <f name="certainty">0.747983</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">aufstecken</f>
+      <f name="certainty">0.252017</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_189" from="1005" to="1006">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_190" from="1007" to="1012">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">meist</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_191" from="1013" to="1021">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Heuchler</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_192" from="1022" to="1028">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">werden</f>
+      <f name="certainty">0.909535</f>
+      <f name="ctag">VAINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_193" from="1028" to="1029">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_194" from="1030" to="1036">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">glauben</f>
+      <f name="certainty">0.977267</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_195" from="1036" to="1037">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_196" from="1038" to="1043">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Liebe</f>
+      <f name="certainty">0.956535</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_197" from="1043" to="1044">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_198" from="1045" to="1053">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Hoffnung</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_199" from="1054" to="1061">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">fühlen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_200" from="1062" to="1067">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">einst</f>
+      <f name="certainty">0.999995</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_201" from="1068" to="1070">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">in</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_202" from="1071" to="1078">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">ruhig</f>
+      <f name="certainty">0.704641</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">ruhig</f>
+      <f name="certainty">0.295359</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_203" from="1079" to="1089">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">gesellig</f>
+      <f name="certainty">0.995495</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_204" from="1090" to="1096">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Stunde</f>
+      <f name="certainty">0.999978</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_205" from="1097" to="1102">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.998751</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_206" from="1103" to="1114">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">plastisch</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_207" from="1115" to="1120">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Trieb</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_208" from="1121" to="1123">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">in</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_209" from="1124" to="1129">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">ihr</f>
+      <f name="certainty">0.999998</f>
+      <f name="ctag">PPOSAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_210" from="1130" to="1135">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Natur</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_211" from="1135" to="1136">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">;</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_212" from="1137" to="1140">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sie</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_213" from="1141" to="1153">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">befleißigen</f>
+      <f name="certainty">0.999819</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_214" from="1154" to="1158">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PRF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_215" from="1159" to="1167">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">zusammen</f>
+      <f name="certainty">0.903977</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">zusammen</f>
+      <f name="certainty">0.096023</f>
+      <f name="ctag">PTKVZ</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_216" from="1168" to="1171">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_217" from="1172" to="1179">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">schaffen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_218" from="1180" to="1183">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.999273</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_219" from="1184" to="1194">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">lieblich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_220" from="1195" to="1201">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_221" from="1201" to="1202">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_222" from="1203" to="1207">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.997905</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_223" from="1208" to="1215">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Pandora</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NE</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_224" from="1216" to="1218">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">in</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPRART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_225" from="1219" to="1225">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.944739</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_226" from="1226" to="1231">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Sinn</f>
+      <f name="certainty">0.991491</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_227" from="1231" to="1232">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">:</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_228" from="1233" to="1236">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.998577</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_229" from="1237" to="1243">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Geduld</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_230" from="1243" to="1244">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_231" from="1245" to="1251">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">hochöchst</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_232" from="1252" to="1265">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">bemerkenswert</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_233" from="1266" to="1272">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">bleiben</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_234" from="1273" to="1275">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">es</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_235" from="1276" to="1281">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">immer</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_236" from="1281" to="1282">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_237" from="1283" to="1286">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">dass</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_238" from="1287" to="1295">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Mensch</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_239" from="1295" to="1296">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_240" from="1297" to="1302">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.998951</f>
+      <f name="ctag">PRELAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_241" from="1303" to="1317">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Persönlichkeit</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_242" from="1318" to="1322">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">fast</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_243" from="1323" to="1327">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">ganz</f>
+      <f name="certainty">0.897624</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">ganz</f>
+      <f name="certainty">0.102376</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_244" from="1328" to="1332">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Idee</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_245" from="1333" to="1336">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_246" from="1336" to="1337">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_247" from="1338" to="1342">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PRF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_248" from="1343" to="1345">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">so</f>
+      <f name="certainty">0.999994</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_249" from="1346" to="1353">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">äußerst</f>
+      <f name="certainty">0.999432</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_250" from="1354" to="1357">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">vor</f>
+      <f name="certainty">0.982437</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_251" from="1358" to="1361">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999941</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_252" from="1362" to="1376">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Phantastische</f>
+      <f name="certainty">0.983726</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_253" from="1377" to="1384">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">scheuen</f>
+      <f name="certainty">0.896111</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">scheuen</f>
+      <f name="certainty">0.102724</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_254" from="1384" to="1385">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_255" from="1386" to="1388">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">so</f>
+      <f name="certainty">0.999995</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_256" from="1389" to="1392">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_257" from="1393" to="1399">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Hamann</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NE</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_258" from="1399" to="1400">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_259" from="1401" to="1404">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999412</f>
+      <f name="ctag">PRELS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_260" from="1405" to="1407">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">es</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_261" from="1408" to="1420">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">unerträglich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_262" from="1421" to="1427">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">scheinen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_263" from="1427" to="1428">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_264" from="1429" to="1433">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wenn</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_265" from="1434" to="1437">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">von</f>
+      <f name="certainty">0.997735</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_266" from="1438" to="1444">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Ding</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_267" from="1445" to="1450">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.999760</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_268" from="1451" to="1457">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">andere</f>
+      <f name="certainty">0.998772</f>
+      <f name="ctag">PIAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_269" from="1458" to="1462">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Welt</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_270" from="1463" to="1473">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sprechen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVPP</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_271" from="1474" to="1479">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">werden</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_272" from="1479" to="1480">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_273" from="1481" to="1483">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">er</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_274" from="1484" to="1491">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">drücken</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_275" from="1492" to="1496">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PRF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_276" from="1497" to="1509">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">gelegentlich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_277" from="1510" to="1517">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">darüber</f>
+      <f name="certainty">0.999718</f>
+      <f name="ctag">PAV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_278" from="1518" to="1520">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">in</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_279" from="1521" to="1526">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.999245</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_280" from="1527" to="1535">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">gewiss</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_281" from="1536" to="1547">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Paragraph</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_282" from="1548" to="1551">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">aus</f>
+      <f name="certainty">0.959062</f>
+      <f name="ctag">PTKVZ</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_283" from="1551" to="1552">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_284" from="1553" to="1556">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.995227</f>
+      <f name="ctag">PRELS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_285" from="1557" to="1559">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">er</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_286" from="1560" to="1564">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">aber</f>
+      <f name="certainty">0.980433</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_287" from="1564" to="1565">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_288" from="1566" to="1570">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">weil</f>
+      <f name="certainty">0.999999</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_289" from="1571" to="1573">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">er</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_290" from="1574" to="1577">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">er</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_291" from="1578" to="1590">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">unzulänglich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_292" from="1591" to="1597">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">scheinen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_293" from="1597" to="1598">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_294" from="1599" to="1610">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">vierzehnmal</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_295" from="1611" to="1620">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">variieren</f>
+      <f name="certainty">0.601523</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">variiert</f>
+      <f name="certainty">0.398477</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_296" from="1621" to="1624">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_297" from="1625" to="1629">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PRF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_298" from="1630" to="1634">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">doch</f>
+      <f name="certainty">0.928651</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_299" from="1635" to="1640">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">immer</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_300" from="1641" to="1655">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wahrscheinlich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_301" from="1656" to="1661">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">nicht</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PTKNEG</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_302" from="1662" to="1667">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">genug</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_303" from="1668" to="1671">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">tun</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_304" from="1671" to="1672">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_305" from="1673" to="1676">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999547</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_306" from="1677" to="1683">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Mensch</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_307" from="1684" to="1687">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_308" from="1688" to="1691">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">als</f>
+      <f name="certainty">0.998037</f>
+      <f name="ctag">KOKOM</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_309" from="1692" to="1700">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wirklich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_310" from="1701" to="1703">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">in</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_311" from="1704" to="1707">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999936</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_312" from="1708" to="1713">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Mitte</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_313" from="1714" to="1719">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.998587</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_314" from="1720" to="1730">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wirklich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_315" from="1731" to="1735">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Welt</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_316" from="1736" to="1743">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">setzen</f>
+      <f name="certainty">0.989930</f>
+      <f name="ctag">VVPP</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_317" from="1744" to="1747">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_318" from="1748" to="1751">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">mit</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_319" from="1752" to="1759">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">solche</f>
+      <f name="certainty">0.999759</f>
+      <f name="ctag">PIAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_320" from="1760" to="1767">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Organ</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_321" from="1768" to="1774">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">begabt</f>
+      <f name="certainty">0.793073</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">begabt</f>
+      <f name="certainty">0.206927</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_322" from="1774" to="1775">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_323" from="1776" to="1779">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">dass</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_324" from="1780" to="1782">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">er</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_325" from="1783" to="1786">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.972877</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_326" from="1787" to="1796">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Wirkliche</f>
+      <f name="certainty">0.733992</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">wirklich</f>
+      <f name="certainty">0.266008</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_327" from="1797" to="1800">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_328" from="1801" to="1809">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">nebenbei</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_329" from="1810" to="1813">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.994874</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_330" from="1814" to="1822">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Mögliche</f>
+      <f name="certainty">0.984914</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_331" from="1823" to="1831">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">erkennen</f>
+      <f name="certainty">0.982268</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_332" from="1832" to="1835">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_333" from="1836" to="1849">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">hervorbringen</f>
+      <f name="certainty">0.999976</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_334" from="1850" to="1854">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">können</f>
+      <f name="certainty">0.999975</f>
+      <f name="ctag">VMFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_335" from="1854" to="1855">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_336" from="1856" to="1860">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">alle</f>
+      <f name="certainty">0.965073</f>
+      <f name="ctag">PIAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_337" from="1861" to="1869">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">gesund</f>
+      <f name="certainty">0.999258</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_338" from="1870" to="1878">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Mensch</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_339" from="1879" to="1884">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">haben</f>
+      <f name="certainty">0.999449</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_340" from="1885" to="1888">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999358</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_341" from="1889" to="1900">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Überzeugung</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_342" from="1901" to="1906">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">ihr</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPOSAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_343" from="1907" to="1914">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Dasein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_344" from="1915" to="1918">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_345" from="1919" to="1924">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.996480</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_346" from="1925" to="1935">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.999926</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_347" from="1936" to="1938">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">um</f>
+      <f name="certainty">0.997476</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_348" from="1939" to="1942">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sie</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_349" from="1943" to="1946">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">her</f>
+      <f name="certainty">0.957033</f>
+      <f name="ctag">PTKVZ</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_350" from="1946" to="1947">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_351" from="1948" to="1956">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">indessen</f>
+      <f name="certainty">0.952928</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_352" from="1957" to="1961">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">geben</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_353" from="1962" to="1964">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">es</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_354" from="1965" to="1969">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">auch</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_355" from="1970" to="1975">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.995310</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_356" from="1976" to="1982">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">hohl</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_357" from="1983" to="1988">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Fleck</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_358" from="1989" to="1991">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">in</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPRART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_359" from="1992" to="1998">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Gehirn</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_360" from="1998" to="1999">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_361" from="2000" to="2003">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.880377</f>
+      <f name="ctag">PDS</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.118449</f>
+      <f name="ctag">PRELS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_362" from="2004" to="2009">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">heißen</f>
+      <f name="certainty">0.999996</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_363" from="2010" to="2014">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.999497</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_364" from="2015" to="2021">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Stelle</f>
+      <f name="certainty">0.999992</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_365" from="2021" to="2022">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_366" from="2023" to="2025">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wo</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PWAV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_367" from="2026" to="2030">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PRF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_368" from="2031" to="2035">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">keine</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PIAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_369" from="2036" to="2046">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Gegenstand</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_370" from="2047" to="2057">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">abspiegeln</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_371" from="2057" to="2058">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_372" from="2059" to="2062">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wie</f>
+      <f name="certainty">0.901477</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">wie</f>
+      <f name="certainty">0.094880</f>
+      <f name="ctag">KOKOM</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_373" from="2063" to="2067">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">denn</f>
+      <f name="certainty">0.781021</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">denn</f>
+      <f name="certainty">0.218979</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_374" from="2068" to="2072">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">auch</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_375" from="2073" to="2075">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">in</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPRART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_376" from="2076" to="2080">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Auge</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_377" from="2081" to="2087">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">selbst</f>
+      <f name="certainty">0.999296</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_378" from="2088" to="2091">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.993899</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_379" from="2092" to="2101">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Fleckchen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_380" from="2102" to="2105">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_381" from="2105" to="2106">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_382" from="2107" to="2110">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.614544</f>
+      <f name="ctag">PRELS</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.366934</f>
+      <f name="ctag">PDS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_383" from="2111" to="2116">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">nicht</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PTKNEG</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_384" from="2117" to="2122">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sehen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_385" from="2122" to="2123">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_386" from="2124" to="2128">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">werden</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_387" from="2129" to="2132">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999804</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_388" from="2133" to="2139">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Mensch</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_389" from="2140" to="2143">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">auf</f>
+      <f name="certainty">0.999610</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_390" from="2144" to="2149">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">dies</f>
+      <f name="certainty">0.999727</f>
+      <f name="ctag">PDAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_391" from="2150" to="2156">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Stelle</f>
+      <f name="certainty">0.999996</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_392" from="2157" to="2166">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">besonders</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_393" from="2167" to="2177">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">aufmerksam</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_394" from="2177" to="2178">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_395" from="2179" to="2187">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">vertiefen</f>
+      <f name="certainty">0.998183</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_396" from="2188" to="2190">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">er</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_397" from="2191" to="2195">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PRF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_398" from="2196" to="2201">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">darin</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PAV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_399" from="2201" to="2202">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_400" from="2203" to="2205">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">so</f>
+      <f name="certainty">0.999996</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_401" from="2206" to="2214">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">verfallen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_402" from="2215" to="2217">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">er</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_403" from="2218" to="2220">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">in</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_404" from="2221" to="2225">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.999407</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_405" from="2226" to="2242">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Geisteskrankheit</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_406" from="2242" to="2243">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_407" from="2244" to="2249">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">ahnen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_408" from="2250" to="2254">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">hier</f>
+      <f name="certainty">0.999184</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_409" from="2255" to="2260">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Ding</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_410" from="2261" to="2264">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">aus</f>
+      <f name="certainty">0.992569</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_411" from="2265" to="2270">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.999453</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_412" from="2271" to="2277">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">andere</f>
+      <f name="certainty">0.998759</f>
+      <f name="ctag">PIAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_413" from="2278" to="2282">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Welt</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_414" from="2282" to="2283">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_415" from="2284" to="2287">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.951570</f>
+      <f name="ctag">PRELS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_416" from="2288" to="2292">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">aber</f>
+      <f name="certainty">0.962800</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_417" from="2293" to="2303">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eigentlich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_418" from="2304" to="2311">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Unding</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_419" from="2312" to="2316">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_420" from="2317" to="2320">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_421" from="2321" to="2326">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">weder</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_422" from="2327" to="2334">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Gestalt</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_423" from="2335" to="2339">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">noch</f>
+      <f name="certainty">0.864446</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">noch</f>
+      <f name="certainty">0.135554</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_424" from="2340" to="2350">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Begrenzung</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_425" from="2351" to="2356">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">haben</f>
+      <f name="certainty">0.603387</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">haben</f>
+      <f name="certainty">0.396613</f>
+      <f name="ctag">VAINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_426" from="2356" to="2357">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_427" from="2358" to="2365">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sondern</f>
+      <f name="certainty">0.998228</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_428" from="2366" to="2369">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">als</f>
+      <f name="certainty">0.950802</f>
+      <f name="ctag">KOKOM</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_429" from="2370" to="2375">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">leer</f>
+      <f name="certainty">0.996328</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_430" from="2376" to="2394">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_431" from="2395" to="2404">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">ängstigen</f>
+      <f name="certainty">0.833460</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">ängstigen</f>
+      <f name="certainty">0.166540</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_432" from="2405" to="2408">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_433" from="2409" to="2412">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.895275</f>
+      <f name="ctag">PDS</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.100338</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_434" from="2412" to="2413">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_435" from="2414" to="2417">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.986450</f>
+      <f name="ctag">PRELS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_436" from="2418" to="2422">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PRF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_437" from="2423" to="2428">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">nicht</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PTKNEG</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_438" from="2429" to="2437">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">losreißen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_439" from="2437" to="2438">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_440" from="2439" to="2443">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">mehr</f>
+      <f name="certainty">0.903958</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">mehr</f>
+      <f name="certainty">0.093431</f>
+      <f name="ctag">PIS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_441" from="2444" to="2447">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">als</f>
+      <f name="certainty">0.997959</f>
+      <f name="ctag">KOKOM</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_442" from="2448" to="2462">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">gespensterhaft</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_443" from="2463" to="2472">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">verfolgen</f>
+      <f name="certainty">0.933045</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_444" from="2472" to="2473">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_445" from="2474" to="2476">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">es</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_446" from="2477" to="2480">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_447" from="2481" to="2486">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">nicht</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PTKNEG</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_448" from="2487" to="2489">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">zu</f>
+      <f name="certainty">0.998131</f>
+      <f name="ctag">PTKZU</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_449" from="2490" to="2497">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">leugnen</f>
+      <f name="certainty">0.999816</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_450" from="2497" to="2498">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_451" from="2499" to="2502">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">dass</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_452" from="2503" to="2506">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999703</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_453" from="2507" to="2512">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Geist</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_454" from="2513" to="2517">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PRF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_455" from="2518" to="2523">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">durch</f>
+      <f name="certainty">0.999873</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_456" from="2524" to="2527">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999936</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_457" from="2528" to="2539">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Reformation</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_458" from="2540" to="2542">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">zu</f>
+      <f name="certainty">0.999647</f>
+      <f name="ctag">PTKZU</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_459" from="2543" to="2551">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">befreien</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_460" from="2552" to="2558">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">suchen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_461" from="2558" to="2559">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">;</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_462" from="2560" to="2563">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.998577</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_463" from="2564" to="2574">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Aufklärung</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_464" from="2575" to="2579">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">über</f>
+      <f name="certainty">0.999818</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_465" from="2580" to="2592">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">griechisch</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_466" from="2593" to="2596">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_467" from="2597" to="2606">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">römisch</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_468" from="2607" to="2615">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Altertum</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_469" from="2616" to="2623">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">bringen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_470" from="2624" to="2627">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999691</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_471" from="2628" to="2634">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Wunsch</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_472" from="2634" to="2635">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_473" from="2636" to="2639">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.882284</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.116635</f>
+      <f name="ctag">PRELS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_474" from="2640" to="2649">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Sehnsucht</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_475" from="2650" to="2654">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">nach</f>
+      <f name="certainty">0.992467</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_476" from="2655" to="2660">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.999243</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_477" from="2661" to="2669">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">frei</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_478" from="2669" to="2670">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_479" from="2671" to="2684">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">anständig</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_480" from="2685" to="2688">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_481" from="2689" to="2706">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">geschmackvoll</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_482" from="2707" to="2712">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Leben</f>
+      <f name="certainty">0.999997</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_483" from="2713" to="2719">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">hervor</f>
+      <f name="certainty">0.998381</f>
+      <f name="ctag">PTKVZ</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_484" from="2719" to="2720">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_485" from="2721" to="2724">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sie</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_486" from="2725" to="2730">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">werden</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_487" from="2731" to="2735">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">aber</f>
+      <f name="certainty">0.983641</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_488" from="2736" to="2741">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">nicht</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PTKNEG</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_489" from="2742" to="2747">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wenige</f>
+      <f name="certainty">0.623379</f>
+      <f name="ctag">PIS</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">wenig</f>
+      <f name="certainty">0.366576</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_490" from="2748" to="2755">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">dadurch</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PAV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_491" from="2756" to="2766">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">begünstigen</f>
+      <f name="certainty">0.721222</f>
+      <f name="ctag">VVPP</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">begünstigen</f>
+      <f name="certainty">0.204429</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">begünstigt</f>
+      <f name="certainty">0.074337</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_492" from="2766" to="2767">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_493" from="2768" to="2771">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">dass</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_494" from="2772" to="2775">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.976785</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_495" from="2776" to="2780">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Herz</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_496" from="2781" to="2783">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">in</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_497" from="2784" to="2789">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.998238</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_498" from="2790" to="2798">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">gewiss</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_499" from="2799" to="2808">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">einfach</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_500" from="2809" to="2821">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Naturzustand</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_501" from="2822" to="2836">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">zurückkehren</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVIZU</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_502" from="2837" to="2840">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_503" from="2841" to="2844">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.994212</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_504" from="2845" to="2861">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Einbildungskraft</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_505" from="2862" to="2866">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PRF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_506" from="2867" to="2869">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">zu</f>
+      <f name="certainty">0.959596</f>
+      <f name="ctag">PTKZU</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_507" from="2870" to="2883">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">konzentrieren</f>
+      <f name="certainty">0.999949</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_508" from="2884" to="2893">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">trachten</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_509" from="2893" to="2894">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_510" from="2895" to="2898">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">aus</f>
+      <f name="certainty">0.999749</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_511" from="2899" to="2902">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999952</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_512" from="2903" to="2909">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Himmel</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_513" from="2910" to="2916">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">werden</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_514" from="2917" to="2920">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">auf</f>
+      <f name="certainty">0.998872</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_515" from="2921" to="2927">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">einmal</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_516" from="2928" to="2932">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">alle</f>
+      <f name="certainty">0.998423</f>
+      <f name="ctag">PIAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_517" from="2933" to="2941">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Heilige</f>
+      <f name="certainty">0.991974</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_518" from="2942" to="2952">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">vertreiben</f>
+      <f name="certainty">0.957507</f>
+      <f name="ctag">VVPP</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_519" from="2953" to="2956">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_520" from="2957" to="2960">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">von</f>
+      <f name="certainty">0.999725</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_521" from="2961" to="2966">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.996881</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_522" from="2967" to="2977">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">göttlich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_523" from="2978" to="2984">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Mutter</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_524" from="2985" to="2988">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">mit</f>
+      <f name="certainty">0.999666</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_525" from="2989" to="2994">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.999245</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_526" from="2995" to="3001">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">zart</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_527" from="3002" to="3007">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Kind</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_528" from="3008" to="3013">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Sinn</f>
+      <f name="certainty">0.990114</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_529" from="3013" to="3014">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_530" from="3015" to="3023">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Gedanke</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_531" from="3023" to="3024">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_532" from="3025" to="3030">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Gemüt</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_533" from="3031" to="3034">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">auf</f>
+      <f name="certainty">0.999098</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_534" from="3035" to="3038">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999968</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_535" from="3039" to="3050">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Erwachsene</f>
+      <f name="certainty">0.935425</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_536" from="3050" to="3051">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_537" from="3052" to="3060">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sittlich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_538" from="3061" to="3070">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wirkend</f>
+      <f name="certainty">0.551727</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">Wirkende</f>
+      <f name="certainty">0.448273</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_539" from="3070" to="3071">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_540" from="3072" to="3081">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">ungerecht</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_541" from="3082" to="3091">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Leidende</f>
+      <f name="certainty">0.901507</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">leidend</f>
+      <f name="certainty">0.098493</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_542" from="3092" to="3101">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">richten</f>
+      <f name="certainty">0.992695</f>
+      <f name="ctag">VVPP</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_543" from="3101" to="3102">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_544" from="3103" to="3110">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">welche</f>
+      <f name="certainty">0.754419</f>
+      <f name="ctag">PWS</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">welche</f>
+      <f name="certainty">0.152260</f>
+      <f name="ctag">PRELS</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">welche</f>
+      <f name="certainty">0.083589</f>
+      <f name="ctag">PWAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_545" from="3111" to="3117">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">spät</f>
+      <f name="certainty">0.999825</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_546" from="3118" to="3121">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">als</f>
+      <f name="certainty">0.997871</f>
+      <f name="ctag">KOKOM</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_547" from="3122" to="3130">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Halbgott</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_548" from="3131" to="3139">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">verklären</f>
+      <f name="certainty">0.559110</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">verklären</f>
+      <f name="certainty">0.440890</f>
+      <f name="ctag">VVPP</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_549" from="3139" to="3140">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_550" from="3141" to="3144">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">als</f>
+      <f name="certainty">0.829756</f>
+      <f name="ctag">KOKOM</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">als</f>
+      <f name="certainty">0.164378</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_551" from="3145" to="3155">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wirklich</f>
+      <f name="certainty">0.992806</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_552" from="3156" to="3160">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Gott</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_553" from="3161" to="3170">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">anerkennen</f>
+      <f name="certainty">0.984777</f>
+      <f name="ctag">VVPP</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_554" from="3171" to="3174">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_555" from="3175" to="3182">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">verehren</f>
+      <f name="certainty">0.990392</f>
+      <f name="ctag">VVPP</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_556" from="3183" to="3188">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">werden</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_557" from="3188" to="3189">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_558" from="3190" to="3192">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">er</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_559" from="3193" to="3198">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">stehen</f>
+      <f name="certainty">0.996697</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_560" from="3199" to="3202">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">vor</f>
+      <f name="certainty">0.983758</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_561" from="3203" to="3208">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.998921</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_562" from="3209" to="3221">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Hintergrund</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_563" from="3221" to="3222">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_564" from="3223" to="3225">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wo</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PWAV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_565" from="3226" to="3229">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999411</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_566" from="3230" to="3238">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Schöpfer</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_567" from="3239" to="3242">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.998164</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_568" from="3243" to="3250">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Weltall</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_569" from="3251" to="3263">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">ausbreiten</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVPP</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_570" from="3264" to="3269">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">haben</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_571" from="3269" to="3270">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">;</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_572" from="3271" to="3274">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">von</f>
+      <f name="certainty">0.999721</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_573" from="3275" to="3278">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">er</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_574" from="3279" to="3283">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">gehen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_575" from="3284" to="3288">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.997546</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_576" from="3289" to="3297">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">geistig</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_577" from="3298" to="3305">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Wirkung</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_578" from="3306" to="3309">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">aus</f>
+      <f name="certainty">0.959062</f>
+      <f name="ctag">PTKVZ</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_579" from="3309" to="3310">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_580" from="3311" to="3316">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPOSAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_581" from="3317" to="3323">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Leiden</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_582" from="3324" to="3331">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eignen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_583" from="3332" to="3335">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">man</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PIS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_584" from="3336" to="3340">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PRF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_585" from="3341" to="3344">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">als</f>
+      <f name="certainty">0.997834</f>
+      <f name="ctag">KOKOM</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_586" from="3345" to="3353">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Beispiel</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_587" from="3354" to="3356">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">zu</f>
+      <f name="certainty">0.998298</f>
+      <f name="ctag">PTKVZ</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_588" from="3356" to="3357">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_589" from="3358" to="3361">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_590" from="3362" to="3367">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPOSAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_591" from="3368" to="3378">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Verklärung</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_592" from="3379" to="3382">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_593" from="3383" to="3386">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.981871</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_594" from="3387" to="3392">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Pfand</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_595" from="3393" to="3396">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">für</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_596" from="3397" to="3401">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.998738</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_597" from="3402" to="3407">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">ewig</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_598" from="3408" to="3413">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Dauer</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_599" from="3413" to="3414">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_600" from="3415" to="3420">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">genau</f>
+      <f name="certainty">0.999989</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_601" from="3421" to="3428">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">besehen</f>
+      <f name="certainty">0.663699</f>
+      <f name="ctag">VVPP</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">besehen</f>
+      <f name="certainty">0.321268</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_602" from="3428" to="3429">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_603" from="3430" to="3435">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">haben</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_604" from="3436" to="3439">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wir</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_605" from="3440" to="3443">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wir</f>
+      <f name="certainty">0.964068</f>
+      <f name="ctag">PRF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_606" from="3444" to="3448">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">noch</f>
+      <f name="certainty">0.998064</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_607" from="3449" to="3453">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">alle</f>
+      <f name="certainty">0.998585</f>
+      <f name="ctag">PIAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_608" from="3454" to="3458">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Tag</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_609" from="3459" to="3461">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">zu</f>
+      <f name="certainty">0.999628</f>
+      <f name="ctag">PTKZU</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_610" from="3462" to="3473">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">reformieren</f>
+      <f name="certainty">0.999980</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_611" from="3474" to="3477">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_612" from="3478" to="3483">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">gegen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_613" from="3484" to="3490">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">andere</f>
+      <f name="certainty">0.999768</f>
+      <f name="ctag">PIS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_614" from="3491" to="3493">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">zu</f>
+      <f name="certainty">0.999560</f>
+      <f name="ctag">PTKZU</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_615" from="3494" to="3506">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">protestieren</f>
+      <f name="certainty">0.999990</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_616" from="3506" to="3507">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_617" from="3508" to="3512">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wenn</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_618" from="3513" to="3517">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">auch</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_619" from="3518" to="3523">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">nicht</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PTKNEG</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_620" from="3524" to="3526">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">in</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPRART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_621" from="3527" to="3537">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">religiös</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_622" from="3538" to="3543">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Sinn</f>
+      <f name="certainty">0.999993</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_623" from="3543" to="3544">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_624" from="3545" to="3548">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">man</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PIS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_625" from="3549" to="3557">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">streiten</f>
+      <f name="certainty">0.999989</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_626" from="3558" to="3562">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">viele</f>
+      <f name="certainty">0.487944</f>
+      <f name="ctag">PIS</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">viel</f>
+      <f name="certainty">0.478080</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_627" from="3563" to="3566">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_628" from="3567" to="3571">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">werden</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_629" from="3572" to="3576">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">viel</f>
+      <f name="certainty">0.515170</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">viele</f>
+      <f name="certainty">0.477744</f>
+      <f name="ctag">PIS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_630" from="3577" to="3585">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">streiten</f>
+      <f name="certainty">0.984161</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_631" from="3586" to="3590">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">über</f>
+      <f name="certainty">0.999803</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_632" from="3591" to="3597">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Nutzen</f>
+      <f name="certainty">0.999998</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_633" from="3598" to="3601">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_634" from="3602" to="3609">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Schaden</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_635" from="3610" to="3613">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999973</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_636" from="3614" to="3630">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Bibelverbreitung</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_637" from="3630" to="3631">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_638" from="3632" to="3635">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">ich</f>
+      <f name="certainty">0.999994</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_639" from="3636" to="3639">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_640" from="3640" to="3644">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">klar</f>
+      <f name="certainty">0.999995</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_641" from="3644" to="3645">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">:</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_642" from="3646" to="3653">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">schaden</f>
+      <f name="certainty">0.944307</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_643" from="3654" to="3658">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">werden</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_644" from="3659" to="3662">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sie</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_645" from="3663" to="3666">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wie</f>
+      <f name="certainty">0.950994</f>
+      <f name="ctag">KOKOM</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_646" from="3667" to="3673">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">bisher</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_647" from="3673" to="3674">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_648" from="3675" to="3685">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">dogmatisch</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_649" from="3686" to="3689">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_650" from="3690" to="3702">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">phantastisch</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_651" from="3703" to="3712">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">brauchen|gebrauchen</f>
+      <f name="certainty">0.893853</f>
+      <f name="ctag">VVPP</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_652" from="3712" to="3713">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">;</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_653" from="3714" to="3720">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">nutzen</f>
+      <f name="certainty">0.600585</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">nutzen</f>
+      <f name="certainty">0.399415</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_654" from="3721" to="3724">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wie</f>
+      <f name="certainty">0.989500</f>
+      <f name="ctag">KOKOM</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_655" from="3725" to="3731">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">bisher</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_656" from="3731" to="3732">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_657" from="3733" to="3743">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">didaktisch</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_658" from="3744" to="3747">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_659" from="3748" to="3758">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">gefühlvoll</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_660" from="3759" to="3770">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">aufnehmen</f>
+      <f name="certainty">0.994240</f>
+      <f name="ctag">VVPP</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_661" from="3770" to="3771">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_662" from="3772" to="3779">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">deshalb</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PAV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_663" from="3780" to="3783">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_664" from="3784" to="3787">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999361</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_665" from="3788" to="3793">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Bibel</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_666" from="3794" to="3797">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.978254</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_667" from="3798" to="3802">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">ewig</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_668" from="3803" to="3812">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wirksam</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_669" from="3813" to="3817">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Buch</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_670" from="3817" to="3818">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_671" from="3819" to="3823">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">weil</f>
+      <f name="certainty">0.992735</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_672" from="3823" to="3824">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_673" from="3825" to="3832">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">solange</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_674" from="3833" to="3836">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999053</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_675" from="3837" to="3841">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Welt</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_676" from="3842" to="3847">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">stehen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_677" from="3847" to="3848">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_678" from="3849" to="3856">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">niemand</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PIS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_679" from="3857" to="3866">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">auftreten</f>
+      <f name="certainty">0.767488</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">auftreten</f>
+      <f name="certainty">0.232512</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_680" from="3867" to="3870">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_681" from="3871" to="3876">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sagen</f>
+      <f name="certainty">0.996839</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_682" from="3877" to="3881">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">werden</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_683" from="3881" to="3882">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">:</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_684" from="3883" to="3886">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">ich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_685" from="3887" to="3895">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">begreifen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_686" from="3896" to="3898">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">es</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_687" from="3899" to="3901">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">in</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPRART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_688" from="3902" to="3908">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Ganze</f>
+      <f name="certainty">0.960134</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_689" from="3909" to="3912">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_690" from="3913" to="3921">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">verstehen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_691" from="3922" to="3924">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">es</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_692" from="3925" to="3927">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">in</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPRART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_693" from="3928" to="3937">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Einzelne</f>
+      <f name="certainty">0.994105</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_694" from="3937" to="3938">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_695" from="3939" to="3942">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wir</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_696" from="3943" to="3947">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">aber</f>
+      <f name="certainty">0.973743</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_697" from="3948" to="3953">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sagen</f>
+      <f name="certainty">0.991064</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_698" from="3954" to="3964">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">bescheiden</f>
+      <f name="certainty">0.976647</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_699" from="3964" to="3965">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">:</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_700" from="3966" to="3968">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">in</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPRART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_701" from="3969" to="3975">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Ganze</f>
+      <f name="certainty">0.995802</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_702" from="3976" to="3979">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_703" from="3980" to="3982">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">es</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_704" from="3983" to="3992">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">ehrwürdig</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_705" from="3993" to="3996">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_706" from="3997" to="3999">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">in</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPRART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_707" from="4000" to="4009">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Einzelne</f>
+      <f name="certainty">0.975771</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_708" from="4010" to="4019">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">anwendbar</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_709" from="4019" to="4020">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_710" from="4021" to="4024">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">ich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_711" from="4025" to="4028">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_712" from="4029" to="4038">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">überzeugt</f>
+      <f name="certainty">0.764430</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">überzeugen</f>
+      <f name="certainty">0.235564</f>
+      <f name="ctag">VVPP</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_713" from="4038" to="4039">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_714" from="4040" to="4043">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">dass</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_715" from="4044" to="4047">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999053</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_716" from="4048" to="4053">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Bibel</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_717" from="4054" to="4059">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">immer</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_718" from="4060" to="4067">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">schön</f>
+      <f name="certainty">0.982674</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_719" from="4068" to="4072">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">werden</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_720" from="4072" to="4073">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_721" from="4074" to="4076">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">je</f>
+      <f name="certainty">0.572625</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">je</f>
+      <f name="certainty">0.302458</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">je</f>
+      <f name="certainty">0.124917</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_722" from="4077" to="4081">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">mehr</f>
+      <f name="certainty">0.591882</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">mehr</f>
+      <f name="certainty">0.399083</f>
+      <f name="ctag">PIAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_723" from="4082" to="4085">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">man</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PIS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_724" from="4086" to="4089">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sie</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_725" from="4090" to="4098">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">verstehen</f>
+      <f name="certainty">0.999981</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_726" from="4098" to="4099">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_727" from="4100" to="4103">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.880375</f>
+      <f name="ctag">PDS</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.118450</f>
+      <f name="ctag">PRELS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_728" from="4104" to="4109">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">heißen</f>
+      <f name="certainty">0.999993</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_729" from="4109" to="4110">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_730" from="4111" to="4113">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">je</f>
+      <f name="certainty">0.572625</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">je</f>
+      <f name="certainty">0.302458</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">je</f>
+      <f name="certainty">0.124917</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_731" from="4114" to="4118">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">mehr</f>
+      <f name="certainty">0.591882</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">mehr</f>
+      <f name="certainty">0.399083</f>
+      <f name="ctag">PIAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_732" from="4119" to="4122">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">man</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PIS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_733" from="4123" to="4131">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">einsehen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_734" from="4132" to="4135">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_735" from="4136" to="4144">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">anschauen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_736" from="4144" to="4145">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_737" from="4146" to="4149">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">dass</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_738" from="4150" to="4155">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">jede</f>
+      <f name="certainty">0.999234</f>
+      <f name="ctag">PIAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_739" from="4156" to="4160">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Wort</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_740" from="4160" to="4161">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_741" from="4162" to="4165">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.994727</f>
+      <f name="ctag">PRELS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_742" from="4166" to="4169">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wir</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_743" from="4170" to="4179">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">allgemein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_744" from="4180" to="4189">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">auffassen</f>
+      <f name="certainty">0.923309</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_745" from="4190" to="4193">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_746" from="4194" to="4196">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">in</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPRART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_747" from="4197" to="4207">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">besonder</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_748" from="4208" to="4211">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">auf</f>
+      <f name="certainty">0.997978</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_749" from="4212" to="4215">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wir</f>
+      <f name="certainty">0.784728</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">wir</f>
+      <f name="certainty">0.215272</f>
+      <f name="ctag">PRF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_750" from="4216" to="4224">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">anwenden</f>
+      <f name="certainty">0.920230</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_751" from="4224" to="4225">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_752" from="4226" to="4230">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">nach</f>
+      <f name="certainty">0.975987</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_753" from="4231" to="4239">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">gewiss</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_754" from="4240" to="4249">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Umstand</f>
+      <f name="certainty">0.999990</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_755" from="4249" to="4250">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_756" from="4251" to="4255">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">nach</f>
+      <f name="certainty">0.994915</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_757" from="4256" to="4261">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Zeit-</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">TRUNC</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_758" from="4262" to="4265">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_759" from="4266" to="4283">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Ortsverhältnis</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_760" from="4284" to="4289">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.924866</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_761" from="4290" to="4296">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eigen</f>
+      <f name="certainty">0.920559</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_762" from="4296" to="4297">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_763" from="4298" to="4307">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">besondern</f>
+      <f name="certainty">0.794938</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">besondern</f>
+      <f name="certainty">0.205062</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_764" from="4307" to="4308">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_765" from="4309" to="4320">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">unmittelbar</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_766" from="4321" to="4334">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">individuell</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_767" from="4335" to="4340">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Bezug</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_768" from="4341" to="4347">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">haben</f>
+      <f name="certainty">0.999812</f>
+      <f name="ctag">VAPP</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_769" from="4348" to="4351">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">haben</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_770" from="4351" to="4352">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_771" from="4353" to="4362">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.918841</f>
+      <f name="ctag">NE</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_772" from="4362" to="4363">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">:</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_773" from="4364" to="4371">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wichtig</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_774" from="4372" to="4376">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_775" from="4377" to="4379">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">es</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_776" from="4379" to="4380">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_777" from="4381" to="4384">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.670353</f>
+      <f name="ctag">PDS</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.184214</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.145433</f>
+      <f name="ctag">PRELS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_778" from="4385" to="4393">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">hierüber</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PAV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_779" from="4394" to="4399">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">schon</f>
+      <f name="certainty">0.999845</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_780" from="4400" to="4408">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Bekannte</f>
+      <f name="certainty">0.927474</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_781" from="4409" to="4417">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">nochmals</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_782" from="4418" to="4434">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">zusammenfassen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVIZU</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_783" from="4435" to="4438">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_784" from="4439" to="4441">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">zu</f>
+      <f name="certainty">0.999060</f>
+      <f name="ctag">PTKZU</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_785" from="4442" to="4448">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">zeigen</f>
+      <f name="certainty">0.999727</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_786" from="4448" to="4449">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_787" from="4450" to="4453">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">dass</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_788" from="4454" to="4460">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">gerade</f>
+      <f name="certainty">0.999138</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_789" from="4461" to="4465">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">jen</f>
+      <f name="certainty">0.800479</f>
+      <f name="ctag">PDAT</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">jen</f>
+      <f name="certainty">0.199521</f>
+      <f name="ctag">PDS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_790" from="4466" to="4480">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">apokryphisch</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_791" from="4481" to="4490">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Schrift</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_792" from="4490" to="4491">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_793" from="4492" to="4495">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">mit</f>
+      <f name="certainty">0.998772</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_794" from="4496" to="4501">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.906337</f>
+      <f name="ctag">PDS</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.093663</f>
+      <f name="ctag">PRELS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_795" from="4502" to="4505">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.998373</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_796" from="4506" to="4515">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Gemeinde</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_797" from="4516" to="4521">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">schon</f>
+      <f name="certainty">0.999995</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_798" from="4522" to="4525">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999240</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_799" from="4526" to="4532">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">erst</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_800" from="4533" to="4545">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Jahrhundert</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_801" from="4546" to="4553">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">unser</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPOSAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_802" from="4554" to="4557">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Ära</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_803" from="4558" to="4570">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">überschwemmen</f>
+      <f name="certainty">0.998690</f>
+      <f name="ctag">VVPP</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_804" from="4571" to="4577">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">werden</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_805" from="4578" to="4581">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_806" from="4582" to="4587">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">woran</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PWAV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_807" from="4588" to="4593">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">unser</f>
+      <f name="certainty">0.999815</f>
+      <f name="ctag">PPOSAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_808" from="4594" to="4599">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Kanon</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_809" from="4600" to="4605">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">jetzt</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_810" from="4606" to="4610">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">noch</f>
+      <f name="certainty">0.990880</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_811" from="4611" to="4617">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">leiden</f>
+      <f name="certainty">0.999983</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_812" from="4617" to="4618">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_813" from="4619" to="4622">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.879386</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.115797</f>
+      <f name="ctag">PRELS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_814" from="4623" to="4634">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eigentlich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_815" from="4635" to="4642">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Ursache</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_816" from="4643" to="4647">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_817" from="4647" to="4648">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_818" from="4649" to="4654">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">warum</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PWAV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_819" from="4655" to="4658">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.984922</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_820" from="4659" to="4670">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Christentum</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_821" from="4671" to="4673">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">in</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_822" from="4674" to="4680">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">keine</f>
+      <f name="certainty">0.999228</f>
+      <f name="ctag">PIAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_823" from="4681" to="4688">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Moment</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_824" from="4689" to="4692">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999906</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_825" from="4693" to="4704">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">politisch</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_826" from="4705" to="4708">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_827" from="4709" to="4726">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Kirchengeschichte</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_828" from="4727" to="4729">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">in</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_829" from="4730" to="4736">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">0.999983</f>
+      <f name="ctag">PPOSAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_830" from="4737" to="4743">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">ganz</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_831" from="4744" to="4753">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Schönheit</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_832" from="4754" to="4757">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_833" from="4758" to="4766">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Reinheit</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_834" from="4767" to="4779">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">hervortreten</f>
+      <f name="certainty">0.999997</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_835" from="4780" to="4786">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">können</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VMFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_836" from="4786" to="4787">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_837" from="4788" to="4791">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.875425</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.124295</f>
+      <f name="ctag">PDS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_838" from="4792" to="4802">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">unheilbar</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_839" from="4803" to="4807">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Übel</f>
+      <f name="certainty">0.999591</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_840" from="4808" to="4814">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">dies</f>
+      <f name="certainty">0.995593</f>
+      <f name="ctag">PDAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_841" from="4815" to="4825">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.999863</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_842" from="4826" to="4840">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Streitigkeit</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_843" from="4841" to="4848">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">bestehen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_844" from="4849" to="4854">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">darin</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PAV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_845" from="4854" to="4855">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_846" from="4856" to="4859">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">dass</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_847" from="4860" to="4863">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.661708</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.252242</f>
+      <f name="ctag">PDS</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.086049</f>
+      <f name="ctag">PRELS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_848" from="4864" to="4868">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.975911</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_849" from="4869" to="4873">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Teil</f>
+      <f name="certainty">0.999925</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_850" from="4874" to="4877">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">auf</f>
+      <f name="certainty">0.997374</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_851" from="4878" to="4885">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Märchen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_852" from="4886" to="4889">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_853" from="4890" to="4895">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">leer</f>
+      <f name="certainty">0.837385</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">leeren</f>
+      <f name="certainty">0.162615</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_854" from="4896" to="4901">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Wort</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_855" from="4902" to="4905">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.991918</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_856" from="4906" to="4913">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">hoch</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_857" from="4914" to="4923">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Interesse</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_858" from="4924" to="4927">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999973</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_859" from="4928" to="4938">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Menschheit</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_860" from="4939" to="4951">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">zurückführen</f>
+      <f name="certainty">0.999997</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_861" from="4952" to="4956">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wollen</f>
+      <f name="certainty">0.999970</f>
+      <f name="ctag">VMFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_862" from="4956" to="4957">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_863" from="4958" to="4961">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.852381</f>
+      <f name="ctag">PRELS</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.147424</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_864" from="4962" to="4968">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">andere</f>
+      <f name="certainty">0.997454</f>
+      <f name="ctag">PIS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_865" from="4969" to="4973">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">aber</f>
+      <f name="certainty">0.892947</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">aber</f>
+      <f name="certainty">0.107053</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_866" from="4974" to="4976">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">es</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_867" from="4977" to="4979">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">da</f>
+      <f name="certainty">0.830004</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">da</f>
+      <f name="certainty">0.169570</f>
+      <f name="ctag">PTKVZ</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_868" from="4980" to="4982">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">zu</f>
+      <f name="certainty">0.999228</f>
+      <f name="ctag">PTKZU</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_869" from="4983" to="4992">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">begründen</f>
+      <f name="certainty">0.999999</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_870" from="4993" to="4998">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">denken</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_871" from="4998" to="4999">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_872" from="5000" to="5002">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wo</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PWAV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_873" from="5003" to="5007">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PRF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_874" from="5008" to="5015">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">niemand</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PIS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_875" from="5016" to="5024">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">beruhigen</f>
+      <f name="certainty">0.494745</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">beruhigen</f>
+      <f name="certainty">0.469668</f>
+      <f name="ctag">VVPP</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_876" from="5024" to="5025">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_877" from="5026" to="5029">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.952830</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_878" from="5030" to="5038">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Erhabene</f>
+      <f name="certainty">0.827882</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">erhaben</f>
+      <f name="certainty">0.172118</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_879" from="5038" to="5039">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_880" from="5040" to="5043">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">für</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_881" from="5044" to="5047">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wir</f>
+      <f name="certainty">0.798443</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">wir</f>
+      <f name="certainty">0.201557</f>
+      <f name="ctag">PRF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_882" from="5048" to="5058">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.998819</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_883" from="5058" to="5059">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_884" from="5060" to="5066">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">hochöchst</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_885" from="5067" to="5082">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_886" from="5082" to="5083">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_887" from="5084" to="5088">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">doch</f>
+      <f name="certainty">0.859806</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">doch</f>
+      <f name="certainty">0.140194</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_888" from="5088" to="5089">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_889" from="5090" to="5095">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">genau</f>
+      <f name="certainty">0.999970</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_890" from="5096" to="5103">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">besehen</f>
+      <f name="certainty">0.663694</f>
+      <f name="ctag">VVPP</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">besehen</f>
+      <f name="certainty">0.321274</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_891" from="5103" to="5104">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_892" from="5105" to="5108">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">mit</f>
+      <f name="certainty">0.999971</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_893" from="5109" to="5114">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.999245</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_894" from="5115" to="5123">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">absurd</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_895" from="5123" to="5124">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_896" from="5125" to="5127">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">ja</f>
+      <f name="certainty">0.999991</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_897" from="5128" to="5135">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">infam</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_898" from="5136" to="5147">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">empirisch</f>
+      <f name="certainty">0.794588</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">Empirische</f>
+      <f name="certainty">0.205412</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_899" from="5148" to="5158">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Verbundene</f>
+      <f name="certainty">0.990430</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_900" from="5159" to="5164">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">machen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_901" from="5165" to="5168">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wir</f>
+      <f name="certainty">0.638484</f>
+      <f name="ctag">PRF</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">wir</f>
+      <f name="certainty">0.361516</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_902" from="5169" to="5176">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">stützig</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_903" from="5176" to="5177">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_904" from="5178" to="5181">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_905" from="5182" to="5185">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">man</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PIS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_906" from="5186" to="5197">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">entschließen</f>
+      <f name="certainty">0.999995</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_907" from="5198" to="5202">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PRF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_908" from="5203" to="5209">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">schwer</f>
+      <f name="certainty">0.992116</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_909" from="5209" to="5210">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_910" from="5211" to="5214">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">dass</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_911" from="5215" to="5223">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Christus</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_912" from="5224" to="5227">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">auf</f>
+      <f name="certainty">0.999098</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_913" from="5228" to="5232">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.998742</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_914" from="5233" to="5244">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.994198</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_915" from="5245" to="5250">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Weise</f>
+      <f name="certainty">0.998725</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_916" from="5251" to="5259">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">zugrunde</f>
+      <f name="certainty">0.986651</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_917" from="5260" to="5264">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">gehen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_918" from="5264" to="5265">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_919" from="5266" to="5269">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_920" from="5270" to="5279">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">schlimm</f>
+      <f name="certainty">0.763459</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">schlimm</f>
+      <f name="certainty">0.236541</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_921" from="5279" to="5280">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_922" from="5281" to="5285">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">weil</f>
+      <f name="certainty">0.999999</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_923" from="5286" to="5288">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">er</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_924" from="5289" to="5297">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Mensch</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_925" from="5298" to="5300">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">um</f>
+      <f name="certainty">0.946331</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_926" from="5301" to="5305">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PRF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_927" from="5306" to="5312">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">berufen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_928" from="5312" to="5313">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_929" from="5314" to="5317">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999621</f>
+      <f name="ctag">PRELS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_930" from="5318" to="5320">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">er</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_931" from="5321" to="5327">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">fallen</f>
+      <f name="certainty">0.985784</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_932" from="5328" to="5332">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">lassen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_933" from="5332" to="5333">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_934" from="5334" to="5336">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">da</f>
+      <f name="certainty">0.949165</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_935" from="5337" to="5343">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Hamlet</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NE</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_936" from="5344" to="5348">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">bloß</f>
+      <f name="certainty">0.968426</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_937" from="5349" to="5352">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">als</f>
+      <f name="certainty">0.997865</f>
+      <f name="ctag">KOKOM</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_938" from="5353" to="5363">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Individuum</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_939" from="5364" to="5372">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.472702</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.306916</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.070299</f>
+      <f name="ctag">VVPP</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.064088</f>
+      <f name="ctag">NE</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.053450</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_940" from="5372" to="5373">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_941" from="5374" to="5377">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999547</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_942" from="5378" to="5389">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Mystizismus</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_943" from="5390" to="5393">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_944" from="5394" to="5397">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999361</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_945" from="5398" to="5408">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Scholastik</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_946" from="5409" to="5412">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_947" from="5413" to="5420">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Herz</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_948" from="5420" to="5421">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_949" from="5422" to="5425">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.882284</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.116635</f>
+      <f name="ctag">PRELS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_950" from="5426" to="5435">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Dialektik</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_951" from="5436" to="5439">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_952" from="5440" to="5447">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Gefühl</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_953" from="5447" to="5448">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_954" from="5449" to="5452">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.999781</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_955" from="5453" to="5465">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">geistreich</f>
+      <f name="certainty">0.999611</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_956" from="5466" to="5470">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Mann</f>
+      <f name="certainty">0.996800</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_957" from="5471" to="5476">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sagen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_958" from="5476" to="5477">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_959" from="5478" to="5481">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.879386</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.115797</f>
+      <f name="ctag">PRELS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_960" from="5482" to="5488">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">neu</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_961" from="5489" to="5495">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Mystik</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_962" from="5496" to="5499">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_963" from="5500" to="5503">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999361</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_964" from="5504" to="5513">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Dialektik</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_965" from="5514" to="5517">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_966" from="5518" to="5525">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Herz</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_967" from="5526" to="5529">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_968" from="5530" to="5538">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">deswegen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PAV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_969" from="5539" to="5547">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">mitunter</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_970" from="5548" to="5550">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">so</f>
+      <f name="certainty">0.999985</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_971" from="5551" to="5565">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">erstaunenswert</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_972" from="5566" to="5569">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_973" from="5570" to="5583">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">verführerisch</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_974" from="5583" to="5584">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_975" from="5585" to="5589">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">weil</f>
+      <f name="certainty">0.999999</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_976" from="5590" to="5593">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sie</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_977" from="5594" to="5599">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Ding</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_978" from="5600" to="5603">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">zu</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPRART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_979" from="5604" to="5611">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Sprache</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_980" from="5612" to="5618">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">bringen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_981" from="5618" to="5619">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_982" from="5620" to="5622">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">zu</f>
+      <f name="certainty">0.952598</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_983" from="5623" to="5628">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.875800</f>
+      <f name="ctag">PDS</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.124200</f>
+      <f name="ctag">PRELS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_984" from="5629" to="5632">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999454</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_985" from="5633" to="5639">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Mensch</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_986" from="5640" to="5643">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">auf</f>
+      <f name="certainty">0.999095</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_987" from="5644" to="5647">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999816</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_988" from="5648" to="5660">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">gewöhnlich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_989" from="5661" to="5671">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.524071</f>
+      <f name="ctag">TRUNC</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.475117</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_990" from="5671" to="5672">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_991" from="5673" to="5683">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.845963</f>
+      <f name="ctag">TRUNC</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.153151</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_992" from="5684" to="5687">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_993" from="5688" to="5701">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_994" from="5702" to="5707">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">nicht</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PTKNEG</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_995" from="5708" to="5716">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">gelangen</f>
+      <f name="certainty">0.998678</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_996" from="5717" to="5722">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">werden</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_997" from="5722" to="5723">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_998" from="5724" to="5727">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wer</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PWS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_999" from="5728" to="5732">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PRF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1000" from="5733" to="5736">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Mut</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1001" from="5737" to="5740">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1002" from="5741" to="5746">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Kraft</f>
+      <f name="certainty">0.910570</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1003" from="5747" to="5753">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">glauben</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1004" from="5753" to="5754">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1005" from="5755" to="5758">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sie</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1006" from="5759" to="5761">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">zu</f>
+      <f name="certainty">0.999222</f>
+      <f name="ctag">PTKZU</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1007" from="5762" to="5771">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">studieren</f>
+      <f name="certainty">0.999945</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1008" from="5771" to="5772">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1009" from="5773" to="5777">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">ohne</f>
+      <f name="certainty">0.931386</f>
+      <f name="ctag">KOUI</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1010" from="5778" to="5782">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PRF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1011" from="5783" to="5791">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">betäuben</f>
+      <f name="certainty">0.998137</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1012" from="5792" to="5794">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">zu</f>
+      <f name="certainty">0.999983</f>
+      <f name="ctag">PTKZU</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1013" from="5795" to="5801">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">lassen</f>
+      <f name="certainty">0.999975</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1014" from="5801" to="5802">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1015" from="5803" to="5806">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.576811</f>
+      <f name="ctag">PRELS</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.377518</f>
+      <f name="ctag">PDS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1016" from="5807" to="5811">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">mögen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VMFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1017" from="5812" to="5816">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PRF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1018" from="5817" to="5819">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">in</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1019" from="5820" to="5825">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">dies</f>
+      <f name="certainty">0.999730</f>
+      <f name="ctag">PDAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1020" from="5826" to="5831">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Höhle</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1021" from="5832" to="5835">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1022" from="5836" to="5846">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.755300</f>
+      <f name="ctag">NE</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.244700</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1023" from="5847" to="5856">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">versenken</f>
+      <f name="certainty">0.632534</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">versenken</f>
+      <f name="certainty">0.367466</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1024" from="5856" to="5857">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1025" from="5858" to="5864">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">jedoch</f>
+      <f name="certainty">0.915427</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1026" from="5865" to="5868">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">auf</f>
+      <f name="certainty">0.999667</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1027" from="5869" to="5874">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPOSAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1028" from="5875" to="5881">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eigen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1029" from="5882" to="5888">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Gefahr</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1030" from="5888" to="5889">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1031" from="5890" to="5901">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">christlich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1032" from="5902" to="5910">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Mystiker</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1033" from="5911" to="5917">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sollen</f>
+      <f name="certainty">0.999792</f>
+      <f name="ctag">VMFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1034" from="5918" to="5920">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">es</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1035" from="5921" to="5924">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">gar</f>
+      <f name="certainty">0.999116</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1036" from="5925" to="5930">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">nicht</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PTKNEG</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1037" from="5931" to="5936">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">geben</f>
+      <f name="certainty">0.960451</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1038" from="5936" to="5937">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1039" from="5938" to="5940">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">da</f>
+      <f name="certainty">0.920200</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1040" from="5941" to="5944">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999115</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1041" from="5945" to="5953">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Religion</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1042" from="5954" to="5960">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">selbst</f>
+      <f name="certainty">0.997178</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1043" from="5961" to="5970">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Mysterium</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1044" from="5971" to="5980">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">darbieten</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1045" from="5980" to="5981">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1046" from="5982" to="5986">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">auch</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1047" from="5987" to="5992">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">gehen</f>
+      <f name="certainty">0.999881</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1048" from="5993" to="5996">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sie</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1049" from="5997" to="6002">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">immer</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1050" from="6003" to="6009">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">gleich</f>
+      <f name="certainty">0.987446</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1051" from="6010" to="6013">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">in</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPRART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1052" from="6014" to="6022">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Abstruse</f>
+      <f name="certainty">0.877932</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">abstrus</f>
+      <f name="certainty">0.122068</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1053" from="6022" to="6023">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1054" from="6024" to="6026">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">in</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1055" from="6027" to="6030">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999974</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1056" from="6031" to="6038">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Abgrund</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1057" from="6039" to="6042">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1058" from="6043" to="6051">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Subjekt</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1059" from="6051" to="6052">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1060" from="6053" to="6056">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.994789</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1061" from="6057" to="6070">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">orientalisch</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1062" from="6071" to="6080">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">mystisch</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1063" from="6081" to="6087">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Poesie</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1064" from="6088" to="6091">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">haben</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1065" from="6092" to="6100">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">deswegen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PAV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1066" from="6101" to="6104">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.998810</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1067" from="6105" to="6111">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">groß</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1068" from="6112" to="6118">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Vorzug</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1069" from="6118" to="6119">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1070" from="6120" to="6123">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">dass</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1071" from="6124" to="6127">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999703</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1072" from="6128" to="6136">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Reichtum</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1073" from="6137" to="6140">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999973</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1074" from="6141" to="6145">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Welt</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1075" from="6145" to="6146">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1076" from="6147" to="6150">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.922233</f>
+      <f name="ctag">PRELS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1077" from="6151" to="6154">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999712</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1078" from="6155" to="6161">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1079" from="6162" to="6170">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wegweisen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1080" from="6170" to="6171">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1081" from="6172" to="6175">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">er</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1082" from="6176" to="6180">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">noch</f>
+      <f name="certainty">0.982407</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1083" from="6181" to="6190">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">jederzeit</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1084" from="6191" to="6193">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">zu</f>
+      <f name="certainty">0.984893</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1085" from="6194" to="6200">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Gebot</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1086" from="6201" to="6206">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">stehen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1087" from="6206" to="6207">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1088" from="6208" to="6210">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">er</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1089" from="6211" to="6219">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">befinden</f>
+      <f name="certainty">0.999992</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1090" from="6220" to="6224">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PRF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1091" from="6225" to="6229">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">also</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1092" from="6230" to="6234">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">noch</f>
+      <f name="certainty">0.995694</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1093" from="6235" to="6240">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">immer</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1094" from="6241" to="6247">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">mitten</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1095" from="6248" to="6250">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">in</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1096" from="6251" to="6254">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999980</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1097" from="6255" to="6260">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Fülle</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1098" from="6260" to="6261">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1099" from="6262" to="6265">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999621</f>
+      <f name="ctag">PRELS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1100" from="6266" to="6268">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">er</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1101" from="6269" to="6276">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">verlassen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1102" from="6276" to="6277">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1103" from="6278" to="6281">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1104" from="6282" to="6290">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">schwelgen</f>
+      <f name="certainty">0.988206</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1105" from="6291" to="6293">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">in</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1106" from="6294" to="6297">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.806583</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.191723</f>
+      <f name="ctag">PDS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1107" from="6297" to="6298">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1108" from="6299" to="6302">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">was</f>
+      <f name="certainty">0.990871</f>
+      <f name="ctag">PRELS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1109" from="6303" to="6305">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">er</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1110" from="6306" to="6310">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">gern</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1111" from="6311" to="6314">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">los</f>
+      <f name="certainty">0.998836</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1112" from="6315" to="6319">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">0.999980</f>
+      <f name="ctag">VAINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1113" from="6320" to="6326">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">mögen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VMFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1114" from="6326" to="6327">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1115" from="6328" to="6332">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">alle</f>
+      <f name="certainty">0.997836</f>
+      <f name="ctag">PIAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1116" from="6333" to="6339">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Mystik</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1117" from="6340" to="6343">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1118" from="6344" to="6347">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.998851</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1119" from="6348" to="6362">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Transzendieren</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1120" from="6363" to="6366">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1121" from="6367" to="6370">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.998873</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1122" from="6371" to="6378">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Ablöse</f>
+      <f name="certainty">0.999976</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1123" from="6379" to="6382">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">von</f>
+      <f name="certainty">0.999474</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1124" from="6383" to="6394">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">irgendeine</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PIAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1125" from="6395" to="6406">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Gegenstand</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1126" from="6406" to="6407">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1127" from="6408" to="6411">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.499633</f>
+      <f name="ctag">PRELS</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.499276</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1128" from="6412" to="6415">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">man</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PIS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1129" from="6416" to="6422">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">hinter</f>
+      <f name="certainty">0.971405</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1130" from="6423" to="6427">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PRF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1131" from="6428" to="6430">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">zu</f>
+      <f name="certainty">0.935155</f>
+      <f name="ctag">PTKZU</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1132" from="6431" to="6437">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">lassen</f>
+      <f name="certainty">0.974444</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1133" from="6438" to="6444">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">glauben</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1134" from="6444" to="6445">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1135" from="6446" to="6448">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">je</f>
+      <f name="certainty">0.880149</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">je</f>
+      <f name="certainty">0.103429</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1136" from="6449" to="6455">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">groß</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1137" from="6456" to="6459">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1138" from="6460" to="6471">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">bedeutender</f>
+      <f name="certainty">0.942563</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1139" from="6472" to="6481">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">dasjenige</f>
+      <f name="certainty">0.868492</f>
+      <f name="ctag">PDS</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">dasjenig</f>
+      <f name="certainty">0.131508</f>
+      <f name="ctag">PDAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1140" from="6482" to="6485">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1141" from="6485" to="6486">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1142" from="6487" to="6490">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.904291</f>
+      <f name="ctag">PRELS</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.095388</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1143" from="6491" to="6494">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">man</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PIS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1144" from="6495" to="6501">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">absagen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1145" from="6501" to="6502">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1146" from="6503" to="6508">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">desto</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1147" from="6509" to="6516">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">reichern</f>
+      <f name="certainty">0.937283</f>
+      <f name="ctag">VVIMP</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1148" from="6517" to="6521">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1149" from="6522" to="6525">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999361</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1150" from="6526" to="6538">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Produktion</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1151" from="6539" to="6542">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1152" from="6543" to="6552">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Mystiker</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1153" from="6552" to="6553">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1154" from="6554" to="6560">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sobald</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1155" from="6561" to="6564">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.996227</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1156" from="6565" to="6570">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">gut</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1157" from="6571" to="6576">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Werk</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1158" from="6577" to="6580">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1159" from="6581" to="6584">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.922116</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1160" from="6585" to="6599">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Verdienstliche</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1161" from="6600" to="6609">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">dieselbe</f>
+      <f name="certainty">0.742258</f>
+      <f name="ctag">PDS</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">dieselb</f>
+      <f name="certainty">0.257742</f>
+      <f name="ctag">PDAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1162" from="6610" to="6618">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">aufhören</f>
+      <f name="certainty">0.787823</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">aufhören</f>
+      <f name="certainty">0.212177</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1163" from="6618" to="6619">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1164" from="6620" to="6628">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sogleich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1165" from="6629" to="6634">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">treten</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1166" from="6635" to="6638">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999396</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1167" from="6639" to="6654">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Sentimentalität</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1168" from="6655" to="6660">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">dafür</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PAV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1169" from="6661" to="6664">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">ein</f>
+      <f name="certainty">0.997919</f>
+      <f name="ctag">PTKVZ</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1170" from="6664" to="6665">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1171" from="6666" to="6669">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">bei</f>
+      <f name="certainty">0.999984</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1172" from="6670" to="6673">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999974</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1173" from="6674" to="6686">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Protestant</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1174" from="6686" to="6687">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1175" from="6688" to="6689">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">I</f>
+      <f name="certainty">0.597657</f>
+      <f name="ctag">NE</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">I</f>
+      <f name="certainty">0.285378</f>
+      <f name="ctag">FM</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">I</f>
+      <f name="certainty">0.116313</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1176" from="6690" to="6700">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.863283</f>
+      <f name="ctag">NE</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1177" from="6701" to="6707">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.998178</f>
+      <f name="ctag">NE</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1178" from="6708" to="6715">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.896358</f>
+      <f name="ctag">NE</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.102932</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1179" from="6716" to="6724">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.839981</f>
+      <f name="ctag">NE</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1180" from="6725" to="6727">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">di</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NE</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1181" from="6728" to="6730">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Me</f>
+      <f name="certainty">0.381063</f>
+      <f name="ctag">NE</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.312499</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.212864</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.038681</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1182" from="6730" to="6731">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1183" from="6732" to="6737">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">alle</f>
+      <f name="certainty">0.998328</f>
+      <f name="ctag">PIS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1184" from="6738" to="6743">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">kommen</f>
+      <f name="certainty">0.999999</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1185" from="6744" to="6747">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">bei</f>
+      <f name="certainty">0.999863</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1186" from="6748" to="6751">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999979</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1187" from="6752" to="6759">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Mission</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1188" from="6760" to="6766">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">darauf</f>
+      <f name="certainty">0.999992</f>
+      <f name="ctag">PAV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1189" from="6767" to="6769">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">an</f>
+      <f name="certainty">0.858575</f>
+      <f name="ctag">PTKVZ</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">an</f>
+      <f name="certainty">0.141008</f>
+      <f name="ctag">APZR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1190" from="6769" to="6770">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1191" from="6771" to="6774">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">dass</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1192" from="6775" to="6778">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.998835</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1193" from="6779" to="6783">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">roh</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1194" from="6784" to="6793">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sinnlich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1195" from="6794" to="6800">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Mensch</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1196" from="6801" to="6807">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">gewahr</f>
+      <f name="certainty">0.999986</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1197" from="6808" to="6812">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">werden</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1198" from="6812" to="6813">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1199" from="6814" to="6817">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">dass</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1200" from="6818" to="6820">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">es</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1201" from="6821" to="6825">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.999637</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1202" from="6826" to="6831">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Sitte</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1203" from="6832" to="6836">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">geben</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1204" from="6836" to="6837">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">;</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1205" from="6838" to="6841">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">dass</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1206" from="6842" to="6845">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.998835</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1207" from="6846" to="6863">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">leidenschaftlich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1208" from="6864" to="6876">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">ungebändigt</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1209" from="6877" to="6882">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">merken</f>
+      <f name="certainty">0.999848</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1210" from="6882" to="6883">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1211" from="6884" to="6887">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">dass</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1212" from="6888" to="6890">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">er</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1213" from="6891" to="6897">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Fehler</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1214" from="6898" to="6906">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">begehen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVPP</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1215" from="6907" to="6910">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">haben</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1216" from="6910" to="6911">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1217" from="6912" to="6915">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999621</f>
+      <f name="ctag">PRELS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1218" from="6916" to="6918">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">er</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1219" from="6919" to="6923">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PRF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1220" from="6924" to="6930">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">selbst</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1221" from="6931" to="6936">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">nicht</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PTKNEG</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1222" from="6937" to="6946">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">verzeihen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1223" from="6947" to="6951">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">können</f>
+      <f name="certainty">0.999977</f>
+      <f name="ctag">VMFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1224" from="6951" to="6952">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1225" from="6953" to="6956">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.994789</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1226" from="6957" to="6962">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">erst</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1227" from="6963" to="6968">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">führen</f>
+      <f name="certainty">0.999937</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1228" from="6969" to="6972">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">zu</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPRART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1229" from="6973" to="6980">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Annahme</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1230" from="6981" to="6987">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">zart</f>
+      <f name="certainty">0.981251</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1231" from="6988" to="6995">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Maxime</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1232" from="6995" to="6996">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1233" from="6997" to="7000">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.776459</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.122917</f>
+      <f name="ctag">PDS</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.100624</f>
+      <f name="ctag">PRELS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1234" from="7001" to="7007">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">letzt</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1235" from="7008" to="7011">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">auf</f>
+      <f name="certainty">0.999746</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1236" from="7012" to="7019">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Glaube</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1237" from="7020" to="7025">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.999361</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1238" from="7026" to="7036">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Versöhnung</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1239" from="7036" to="7037">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1240" from="7038" to="7043">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">alle</f>
+      <f name="certainty">0.920700</f>
+      <f name="ctag">PIAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1241" from="7044" to="7052">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Mittlere</f>
+      <f name="certainty">0.935979</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1242" from="7053" to="7056">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">von</f>
+      <f name="certainty">0.982341</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1243" from="7057" to="7065">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">zufällig</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1244" from="7066" to="7077">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">scheinend</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1245" from="7078" to="7083">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Übel</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1246" from="7084" to="7088">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">werden</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1247" from="7089" to="7094">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.989677</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1248" from="7095" to="7101">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">weise</f>
+      <f name="certainty">0.997515</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1249" from="7102" to="7118">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">unerforschlich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1250" from="7119" to="7126">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Führung</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1251" from="7127" to="7133">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">anheim</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PTKVZ</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1252" from="7134" to="7141">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">geben</f>
+      <f name="certainty">0.999282</f>
+      <f name="ctag">VVPP</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1253" from="7141" to="7142">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1254" from="7143" to="7145">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">in</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1255" from="7146" to="7153">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.999296</f>
+      <f name="ctag">NE</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1256" from="7153" to="7154">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1257" from="7155" to="7159">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sagen</f>
+      <f name="certainty">0.999996</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1258" from="7160" to="7163">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">man</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PIS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1259" from="7163" to="7164">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1260" from="7165" to="7171">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">finden</f>
+      <f name="certainty">0.999998</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1261" from="7172" to="7176">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PRF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1262" from="7177" to="7184">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">neunzig</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">CARD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1263" from="7185" to="7196">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">christlich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1264" from="7197" to="7204">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Kirche</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1265" from="7205" to="7217">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">abweichender</f>
+      <f name="certainty">0.981251</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1266" from="7218" to="7228">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Konfession</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1267" from="7228" to="7229">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1268" from="7230" to="7233">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1269" from="7234" to="7237">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">nun</f>
+      <f name="certainty">0.999081</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1270" from="7238" to="7242">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">werden</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1271" from="7243" to="7248">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">dies</f>
+      <f name="certainty">0.992534</f>
+      <f name="ctag">PDAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1272" from="7249" to="7254">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Stadt</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1273" from="7255" to="7264">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">besonders</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1274" from="7265" to="7269">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">seit</f>
+      <f name="certainty">0.997875</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1275" from="7270" to="7279">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Eröffnung</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1276" from="7280" to="7283">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1277" from="7284" to="7294">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.999918</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1278" from="7295" to="7310">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">überschwenglich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1279" from="7311" to="7316">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">reich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1280" from="7316" to="7317">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1281" from="7318" to="7332">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wahrscheinlich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1282" from="7333" to="7336">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1283" from="7337" to="7340">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">man</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PIS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1284" from="7341" to="7344">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999964</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1285" from="7345" to="7356">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Überzeugung</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1286" from="7356" to="7357">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1287" from="7358" to="7361">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">dass</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1288" from="7362" to="7371">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">religiös</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1289" from="7372" to="7380">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Gedanke</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1290" from="7381" to="7384">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1291" from="7385" to="7392">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Gefühl</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1292" from="7392" to="7393">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1293" from="7394" to="7397">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">von</f>
+      <f name="certainty">0.999829</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1294" from="7398" to="7405">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">welche</f>
+      <f name="certainty">0.997068</f>
+      <f name="ctag">PIS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1295" from="7406" to="7416">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">besonder</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1296" from="7417" to="7420">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Art</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1297" from="7421" to="7424">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sie</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1298" from="7425" to="7429">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">auch</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1299" from="7430" to="7435">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1300" from="7435" to="7436">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1301" from="7437" to="7440">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.925217</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1302" from="7441" to="7453">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">beruhigend</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1303" from="7454" to="7461">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Sonntag</f>
+      <f name="certainty">0.992706</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1304" from="7462" to="7471">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">angehören</f>
+      <f name="certainty">0.734781</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">angehören</f>
+      <f name="certainty">0.265219</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1305" from="7471" to="7472">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1306" from="7473" to="7485">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">angestrengt</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1307" from="7486" to="7495">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Tätigkeit</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1308" from="7495" to="7496">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1309" from="7497" to="7500">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">von</f>
+      <f name="certainty">0.999656</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1310" from="7501" to="7508">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">fromm</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1311" from="7509" to="7520">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Gesinnung</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1312" from="7521" to="7530">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">begleiten</f>
+      <f name="certainty">0.760485</f>
+      <f name="ctag">VVPP</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">begleiten</f>
+      <f name="certainty">0.239515</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1313" from="7530" to="7531">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1314" from="7532" to="7535">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.991341</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1315" from="7536" to="7547">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1316" from="7547" to="7548">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1317" from="7549" to="7552">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.998577</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1318" from="7553" to="7565">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Ohrenbeichte</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1319" from="7566" to="7568">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">in</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPRART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1320" from="7569" to="7575">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">gut</f>
+      <f name="certainty">0.999858</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1321" from="7576" to="7581">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Sinn</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1322" from="7582" to="7585">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1323" from="7586" to="7590">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.996857</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1324" from="7591" to="7603">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">fortgesetzt</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1325" from="7604" to="7617">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1326" from="7618" to="7621">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999972</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1327" from="7622" to="7633">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Erwachsene</f>
+      <f name="certainty">0.997065</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1328" from="7633" to="7634">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1329" from="7635" to="7638">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.998577</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1330" from="7639" to="7645">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Kirche</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1331" from="7646" to="7654">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">schwächen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1332" from="7655" to="7660">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">alle</f>
+      <f name="certainty">0.994802</f>
+      <f name="ctag">PIS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1333" from="7660" to="7661">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1334" from="7662" to="7665">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">was</f>
+      <f name="certainty">0.990871</f>
+      <f name="ctag">PRELS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1335" from="7666" to="7669">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sie</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1336" from="7670" to="7677">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">anrühren</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1337" from="7677" to="7678">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1338" from="7679" to="7681">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">es</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1339" from="7682" to="7686">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">geben</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1340" from="7687" to="7696">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Theologe</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1341" from="7696" to="7697">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1342" from="7698" to="7701">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.558311</f>
+      <f name="ctag">PRELS</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.425912</f>
+      <f name="ctag">PDS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1343" from="7702" to="7709">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wollen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VMFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1344" from="7709" to="7710">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1345" from="7711" to="7714">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">dass</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1346" from="7715" to="7717">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">es</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1347" from="7718" to="7721">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">nur</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1348" from="7722" to="7727">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.995310</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1349" from="7728" to="7736">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">einzig</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1350" from="7737" to="7745">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Mensch</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1351" from="7746" to="7748">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">in</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1352" from="7749" to="7752">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999980</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1353" from="7753" to="7757">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Welt</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1354" from="7758" to="7765">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">geben</f>
+      <f name="certainty">0.998988</f>
+      <f name="ctag">VVPP</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1355" from="7766" to="7771">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">haben</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1356" from="7771" to="7772">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1357" from="7773" to="7776">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.991341</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1358" from="7777" to="7781">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Gott</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1359" from="7782" to="7788">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">erlösen</f>
+      <f name="certainty">0.998690</f>
+      <f name="ctag">VVPP</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1360" from="7789" to="7794">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">haben</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1361" from="7794" to="7795">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">;</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1362" from="7796" to="7800">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">denn</f>
+      <f name="certainty">0.736537</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">denn</f>
+      <f name="certainty">0.263463</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1363" from="7801" to="7803">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">da</f>
+      <f name="certainty">0.943642</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1364" from="7804" to="7809">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">haben</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1365" from="7810" to="7812">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">es</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1366" from="7813" to="7818">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">keine</f>
+      <f name="certainty">0.999994</f>
+      <f name="ctag">PIAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1367" from="7819" to="7825">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Ketzer</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1368" from="7826" to="7831">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">geben</f>
+      <f name="certainty">0.999999</f>
+      <f name="ctag">VVINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1369" from="7832" to="7838">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">können</f>
+      <f name="certainty">0.961715</f>
+      <f name="ctag">VMINF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1370" from="7838" to="7839">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1371" from="7840" to="7843">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.994789</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1372" from="7844" to="7855">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">christlich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1373" from="7856" to="7864">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Religion</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1374" from="7865" to="7868">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1375" from="7869" to="7873">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.992092</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1376" from="7874" to="7888">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.881675</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1377" from="7889" to="7899">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">politisch</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1378" from="7900" to="7910">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Revolution</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1379" from="7910" to="7911">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1380" from="7912" to="7915">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.785460</f>
+      <f name="ctag">PRELS</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.189520</f>
+      <f name="ctag">PDS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1381" from="7915" to="7916">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1382" from="7917" to="7925">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">verfehlen</f>
+      <f name="certainty">0.494274</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">verfehlt</f>
+      <f name="certainty">0.344268</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">verfehlen</f>
+      <f name="certainty">0.160464</f>
+      <f name="ctag">VVPP</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1383" from="7925" to="7926">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1384" from="7927" to="7934">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">nachher</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1385" from="7935" to="7944">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">moralisch</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1386" from="7945" to="7953">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">werden</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAPP</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1387" from="7954" to="7957">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1388" from="7957" to="7958">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1389" from="7959" to="7962">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.968923</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1390" from="7963" to="7974">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Christentum</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1391" from="7975" to="7980">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">stehen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1392" from="7981" to="7984">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">mit</f>
+      <f name="certainty">0.999750</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1393" from="7985" to="7988">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999952</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1394" from="7989" to="7997">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Judentum</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1395" from="7998" to="8000">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">in</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1396" from="8001" to="8006">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.959134</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1397" from="8007" to="8011">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">weit</f>
+      <f name="certainty">0.999798</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1398" from="8012" to="8020">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Stärker</f>
+      <f name="certainty">0.511832</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.284937</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.203112</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1399" from="8021" to="8030">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Gegensatz</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1400" from="8031" to="8034">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">als</f>
+      <f name="certainty">0.936570</f>
+      <f name="ctag">KOKOM</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1401" from="8035" to="8038">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">mit</f>
+      <f name="certainty">0.999999</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1402" from="8039" to="8042">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999953</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1403" from="8043" to="8052">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Heidentum</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1404" from="8052" to="8053">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1405" from="8054" to="8057">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">was</f>
+      <f name="certainty">0.901095</f>
+      <f name="ctag">PWS</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">was</f>
+      <f name="certainty">0.090381</f>
+      <f name="ctag">PWAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1406" from="8058" to="8061">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1407" from="8062" to="8076">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.709456</f>
+      <f name="ctag">NE</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.277903</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1408" from="8076" to="8077">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">?</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1409" from="8078" to="8085">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.686900</f>
+      <f name="ctag">VVPP</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">Antwort</f>
+      <f name="certainty">0.219797</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.076337</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1410" from="8085" to="8086">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">:</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1411" from="8087" to="8091">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Gott</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1412" from="8092" to="8095">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1413" from="8096" to="8105">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">mächtig</f>
+      <f name="certainty">0.888136</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">mächtig</f>
+      <f name="certainty">0.111864</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1414" from="8106" to="8109">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1415" from="8110" to="8116">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">weise</f>
+      <f name="certainty">0.868524</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">weise</f>
+      <f name="certainty">0.131476</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1416" from="8117" to="8120">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">als</f>
+      <f name="certainty">0.788138</f>
+      <f name="ctag">KOKOM</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">als</f>
+      <f name="certainty">0.192958</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1417" from="8121" to="8124">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wir</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1418" from="8124" to="8125">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">;</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1419" from="8126" to="8131">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">darum</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PAV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1420" from="8132" to="8137">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">machen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1421" from="8138" to="8140">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">er</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1422" from="8141" to="8143">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">es</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1423" from="8144" to="8147">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">mit</f>
+      <f name="certainty">0.924356</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1424" from="8148" to="8151">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wir</f>
+      <f name="certainty">0.578282</f>
+      <f name="ctag">PRF</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">wir</f>
+      <f name="certainty">0.421718</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1425" from="8152" to="8156">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">nach</f>
+      <f name="certainty">0.991116</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1426" from="8157" to="8163">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPOSAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1427" from="8164" to="8172">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Gefallen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1428" from="8172" to="8173">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1429" from="8174" to="8184">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Mythologie</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1430" from="8184" to="8185">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">:</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1431" from="8186" to="8190">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.668453</f>
+      <f name="ctag">NE</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.259904</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1432" from="8191" to="8193">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">de</f>
+      <f name="certainty">0.998351</f>
+      <f name="ctag">NE</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1433" from="8194" to="8202">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.556707</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.269770</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.170667</f>
+      <f name="ctag">NE</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1434" from="8202" to="8203">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1435" from="8204" to="8212">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Religion</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1436" from="8212" to="8213">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">:</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1437" from="8214" to="8218">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Alte</f>
+      <f name="certainty">0.695151</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">alt</f>
+      <f name="certainty">0.304849</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1438" from="8218" to="8219">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">;</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1439" from="8220" to="8226">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Poesie</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1440" from="8226" to="8227">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">:</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1441" from="8228" to="8236">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Religion</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1442" from="8237" to="8240">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999973</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1443" from="8241" to="8247">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Jugend</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1444" from="8247" to="8248">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1445" from="8249" to="8255">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">antik</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1446" from="8256" to="8262">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Tempel</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1447" from="8263" to="8276">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">konzentrieren</f>
+      <f name="certainty">0.999008</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1448" from="8277" to="8280">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999691</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1449" from="8281" to="8285">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Gott</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1450" from="8286" to="8288">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">in</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPRART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1451" from="8289" to="8297">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Mensch</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1452" from="8297" to="8298">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">;</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1453" from="8299" to="8302">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1454" from="8303" to="8315">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Mittelalter</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1455" from="8316" to="8323">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Kirche</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1456" from="8324" to="8331">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">streben</f>
+      <f name="certainty">0.956196</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1457" from="8332" to="8336">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">nach</f>
+      <f name="certainty">0.989596</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1458" from="8337" to="8340">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999950</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1459" from="8341" to="8345">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Gott</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1460" from="8346" to="8348">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">in</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1461" from="8349" to="8352">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999980</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1462" from="8353" to="8357">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Höhe</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1463" from="8357" to="8358">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1464" from="8359" to="8370">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Geheimnis</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1465" from="8371" to="8375">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1466" from="8376" to="8380">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">noch</f>
+      <f name="certainty">0.998634</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1467" from="8381" to="8386">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">keine</f>
+      <f name="certainty">0.999981</f>
+      <f name="ctag">PIAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1468" from="8387" to="8393">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Wunder</f>
+      <f name="certainty">0.999711</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1469" from="8393" to="8394">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1470" from="8395" to="8399">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wenn</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1471" from="8400" to="8403">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.999944</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1472" from="8404" to="8409">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">gut</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1473" from="8410" to="8414">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Wort</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1474" from="8415" to="8419">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.999414</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1475" from="8420" to="8424">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">gut</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1476" from="8425" to="8430">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Statt</f>
+      <f name="certainty">0.986972</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1477" from="8431" to="8437">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">finden</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1478" from="8437" to="8438">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1479" from="8439" to="8441">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">so</f>
+      <f name="certainty">0.999996</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1480" from="8442" to="8448">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">finden</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1481" from="8449" to="8452">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.999273</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1482" from="8453" to="8460">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">fromm</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1483" from="8461" to="8465">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Wort</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1484" from="8466" to="8471">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">gewiss</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1485" from="8472" to="8476">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">noch</f>
+      <f name="certainty">0.873332</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">noch</f>
+      <f name="certainty">0.126668</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1486" from="8477" to="8481">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.560358</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.439034</f>
+      <f name="ctag">PIS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1487" from="8482" to="8489">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">gut</f>
+      <f name="certainty">0.554843</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">bessere</f>
+      <f name="certainty">0.445157</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1488" from="8489" to="8490">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1489" from="8491" to="8493">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">so</f>
+      <f name="certainty">0.999999</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1490" from="8494" to="8497">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wie</f>
+      <f name="certainty">0.902090</f>
+      <f name="ctag">KOKOM</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">wie</f>
+      <f name="certainty">0.097910</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1491" from="8498" to="8501">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999724</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1492" from="8502" to="8511">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Weihrauch</f>
+      <f name="certainty">0.829447</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">Weihrauch</f>
+      <f name="certainty">0.170553</f>
+      <f name="ctag">NE</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1493" from="8512" to="8517">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.999132</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1494" from="8518" to="8523">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Kohle</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1495" from="8524" to="8529">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Leben</f>
+      <f name="certainty">0.999768</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1496" from="8530" to="8540">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">erfrischen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1497" from="8540" to="8541">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1498" from="8542" to="8544">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">so</f>
+      <f name="certainty">0.999996</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1499" from="8545" to="8555">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">erfrischen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1500" from="8556" to="8559">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.982870</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1501" from="8560" to="8565">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Gebet</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1502" from="8566" to="8569">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999914</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1503" from="8570" to="8580">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Hoffnung</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1504" from="8581" to="8584">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1505" from="8585" to="8592">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Herz</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1506" from="8592" to="8593">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1507" from="8594" to="8597">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999547</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1508" from="8598" to="8604">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Glaube</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1509" from="8605" to="8608">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1510" from="8609" to="8612">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">eine</f>
+      <f name="certainty">0.999005</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1511" from="8613" to="8621">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">häuslich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1512" from="8622" to="8630">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">heimlich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJD</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1513" from="8631" to="8638">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Kapital</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1514" from="8638" to="8639">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1515" from="8640" to="8643">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">wie</f>
+      <f name="certainty">0.996454</f>
+      <f name="ctag">KOUS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1516" from="8644" to="8646">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">es</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPER</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1517" from="8647" to="8658">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">öffentlich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1518" from="8659" to="8664">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Spar-</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">TRUNC</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1519" from="8665" to="8668">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">und</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">KON</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1520" from="8669" to="8680">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">UNKNOWN</f>
+      <f name="certainty">0.954734</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1521" from="8681" to="8685">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">geben</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1522" from="8685" to="8686">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1523" from="8687" to="8693">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">woraus</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PWAV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1524" from="8694" to="8697">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">man</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PIS</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1525" from="8698" to="8700">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">in</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPR</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1526" from="8701" to="8706">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Tag</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1527" from="8707" to="8710">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999972</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1528" from="8711" to="8714">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Not</f>
+      <f name="certainty">0.999999</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1529" from="8715" to="8724">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">einzeln</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1530" from="8725" to="8728">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">ihr</f>
+      <f name="certainty">0.997208</f>
+      <f name="ctag">PPOSAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1531" from="8729" to="8738">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Bedürfnis</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1532" from="8739" to="8745">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">reichen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1533" from="8745" to="8746">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">;</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1534" from="8747" to="8751">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">hier</f>
+      <f name="certainty">0.999986</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1535" from="8752" to="8757">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">nehmen</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1536" from="8758" to="8761">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">die</f>
+      <f name="certainty">0.999792</f>
+      <f name="ctag">ART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1537" from="8762" to="8770">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Gläubige</f>
+      <f name="certainty">0.963401</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1538" from="8771" to="8775">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sich</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PRF</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1539" from="8776" to="8781">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">PPOSAT</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1540" from="8782" to="8788">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Zins</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1541" from="8789" to="8791">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">in</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPRART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1542" from="8792" to="8799">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">still</f>
+      <f name="certainty">0.966106</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1543" from="8800" to="8806">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">selbst</f>
+      <f name="certainty">0.972750</f>
+      <f name="ctag">ADV</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1544" from="8806" to="8807">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1545" from="8808" to="8814">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Glaube</f>
+      <f name="certainty">0.741417</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">glauben</f>
+      <f name="certainty">0.258583</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1546" from="8815" to="8818">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">sein</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">VAFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1547" from="8819" to="8824">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Liebe</f>
+      <f name="certainty">0.996063</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1548" from="8825" to="8828">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">zu</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPRART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1549" from="8829" to="8841">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Unsichtbare</f>
+      <f name="certainty">0.877932</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">unsichtbar</f>
+      <f name="certainty">0.122068</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1550" from="8841" to="8842">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1551" from="8843" to="8852">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Vertrauen</f>
+      <f name="certainty">0.845351</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">vertrauen</f>
+      <f name="certainty">0.154649</f>
+      <f name="ctag">VVFIN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1552" from="8853" to="8857">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">aufs</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">APPRART</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1553" from="8858" to="8868">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Unmögliche</f>
+      <f name="certainty">0.877932</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+    <f name="lex">
+     <fs>
+      <f name="lemma">unmöglich</f>
+      <f name="certainty">0.122068</f>
+      <f name="ctag">ADJA</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1554" from="8868" to="8869">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">,</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$,</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1555" from="8870" to="8887">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">Unwahrscheinliche</f>
+      <f name="certainty">0.991464</f>
+      <f name="ctag">NN</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+  <span id="s_1556" from="8887" to="8888">
+   <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+    <f name="lex">
+     <fs>
+      <f name="lemma">.</f>
+      <f name="certainty">1.000000</f>
+      <f name="ctag">$.</f>
+     </fs>
+    </f>
+   </fs>
+  </span>
+ </spanList>
+</layer>
diff --git a/t/annotation/corpus/doc/0002/tree_tagger/sentences.xml b/t/annotation/corpus/doc/0002/tree_tagger/sentences.xml
new file mode 100644
index 0000000..acd8ca9
--- /dev/null
+++ b/t/annotation/corpus/doc/0002/tree_tagger/sentences.xml
@@ -0,0 +1,92 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="span.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+<layer docid="GOE_AGX.00002" xmlns="http://ids-mannheim.de/ns/KorAP" version="KorAP-0.4">
+ <spanList>
+  <span from="0" to="49"/>
+  <span from="51" to="133"/>
+  <span from="134" to="172"/>
+  <span from="173" to="238"/>
+  <span from="239" to="268"/>
+  <span from="269" to="310"/>
+  <span from="311" to="331"/>
+  <span from="332" to="395"/>
+  <span from="396" to="560"/>
+  <span from="561" to="607"/>
+  <span from="608" to="665"/>
+  <span from="666" to="798"/>
+  <span from="799" to="911"/>
+  <span from="912" to="1029"/>
+  <span from="1030" to="1136"/>
+  <span from="1137" to="1232"/>
+  <span from="1233" to="1244"/>
+  <span from="1245" to="1385"/>
+  <span from="1386" to="1480"/>
+  <span from="1481" to="1672"/>
+  <span from="1673" to="1855"/>
+  <span from="1856" to="1947"/>
+  <span from="1948" to="2123"/>
+  <span from="2124" to="2473"/>
+  <span from="2474" to="2559"/>
+  <span from="2560" to="2720"/>
+  <span from="2721" to="2894"/>
+  <span from="2895" to="3189"/>
+  <span from="3190" to="3270"/>
+  <span from="3271" to="3414"/>
+  <span from="3415" to="3544"/>
+  <span from="3545" to="3631"/>
+  <span from="3632" to="3645"/>
+  <span from="3646" to="3713"/>
+  <span from="3714" to="3771"/>
+  <span from="3772" to="3882"/>
+  <span from="3883" to="3938"/>
+  <span from="3939" to="3965"/>
+  <span from="3966" to="4020"/>
+  <span from="4021" to="4352"/>
+  <span from="4353" to="4363"/>
+  <span from="4364" to="4787"/>
+  <span from="4788" to="5025"/>
+  <span from="5026" to="5210"/>
+  <span from="5211" to="5373"/>
+  <span from="5374" to="5448"/>
+  <span from="5449" to="5723"/>
+  <span from="5724" to="5889"/>
+  <span from="5890" to="5981"/>
+  <span from="5982" to="6052"/>
+  <span from="6053" to="6207"/>
+  <span from="6208" to="6327"/>
+  <span from="6328" to="6445"/>
+  <span from="6446" to="6553"/>
+  <span from="6554" to="6687"/>
+  <span from="6688" to="6731"/>
+  <span from="6732" to="6837"/>
+  <span from="6838" to="6952"/>
+  <span from="6953" to="7037"/>
+  <span from="7038" to="7142"/>
+  <span from="7143" to="7317"/>
+  <span from="7318" to="7548"/>
+  <span from="7549" to="7634"/>
+  <span from="7635" to="7678"/>
+  <span from="7679" to="7795"/>
+  <span from="7796" to="7839"/>
+  <span from="7840" to="7958"/>
+  <span from="7959" to="8053"/>
+  <span from="8054" to="8077"/>
+  <span from="8078" to="8086"/>
+  <span from="8087" to="8125"/>
+  <span from="8126" to="8173"/>
+  <span from="8174" to="8185"/>
+  <span from="8186" to="8203"/>
+  <span from="8204" to="8213"/>
+  <span from="8214" to="8219"/>
+  <span from="8220" to="8227"/>
+  <span from="8228" to="8248"/>
+  <span from="8249" to="8298"/>
+  <span from="8299" to="8358"/>
+  <span from="8359" to="8394"/>
+  <span from="8395" to="8490"/>
+  <span from="8491" to="8593"/>
+  <span from="8594" to="8746"/>
+  <span from="8747" to="8807"/>
+  <span from="8808" to="8888"/>
+ </spanList>
+</layer>
diff --git a/t/annotation/corpus/doc/0002/tree_tagger/tokens.xml b/t/annotation/corpus/doc/0002/tree_tagger/tokens.xml
new file mode 100644
index 0000000..2dfab2d
--- /dev/null
+++ b/t/annotation/corpus/doc/0002/tree_tagger/tokens.xml
@@ -0,0 +1,1563 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="span.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+<layer docid="GOE_AGX.00002" xmlns="http://ids-mannheim.de/ns/KorAP" version="KorAP-0.4">
+ <spanList>
+  <span id="s_0" from="0" to="7"/>
+  <span id="s_1" from="8" to="11"/>
+  <span id="s_2" from="12" to="23"/>
+  <span id="s_3" from="24" to="32"/>
+  <span id="s_4" from="33" to="36"/>
+  <span id="s_5" from="37" to="48"/>
+  <span id="s_6" from="48" to="49"/>
+  <span id="s_7" from="51" to="54"/>
+  <span id="s_8" from="55" to="59"/>
+  <span id="s_9" from="60" to="74"/>
+  <span id="s_10" from="75" to="86"/>
+  <span id="s_11" from="86" to="87"/>
+  <span id="s_12" from="88" to="96"/>
+  <span id="s_13" from="97" to="109"/>
+  <span id="s_14" from="109" to="110"/>
+  <span id="s_15" from="111" to="119"/>
+  <span id="s_16" from="120" to="132"/>
+  <span id="s_17" from="132" to="133"/>
+  <span id="s_18" from="134" to="138"/>
+  <span id="s_19" from="138" to="139"/>
+  <span id="s_20" from="140" to="144"/>
+  <span id="s_21" from="145" to="148"/>
+  <span id="s_22" from="149" to="153"/>
+  <span id="s_23" from="154" to="160"/>
+  <span id="s_24" from="160" to="161"/>
+  <span id="s_25" from="162" to="165"/>
+  <span id="s_26" from="166" to="171"/>
+  <span id="s_27" from="171" to="172"/>
+  <span id="s_28" from="173" to="179"/>
+  <span id="s_29" from="180" to="183"/>
+  <span id="s_30" from="184" to="191"/>
+  <span id="s_31" from="191" to="192"/>
+  <span id="s_32" from="193" to="195"/>
+  <span id="s_33" from="196" to="199"/>
+  <span id="s_34" from="200" to="202"/>
+  <span id="s_35" from="203" to="206"/>
+  <span id="s_36" from="207" to="217"/>
+  <span id="s_37" from="218" to="224"/>
+  <span id="s_38" from="225" to="237"/>
+  <span id="s_39" from="237" to="238"/>
+  <span id="s_40" from="239" to="242"/>
+  <span id="s_41" from="243" to="250"/>
+  <span id="s_42" from="251" to="254"/>
+  <span id="s_43" from="255" to="259"/>
+  <span id="s_44" from="260" to="267"/>
+  <span id="s_45" from="267" to="268"/>
+  <span id="s_46" from="269" to="273"/>
+  <span id="s_47" from="274" to="279"/>
+  <span id="s_48" from="280" to="283"/>
+  <span id="s_49" from="284" to="289"/>
+  <span id="s_50" from="289" to="290"/>
+  <span id="s_51" from="291" to="297"/>
+  <span id="s_52" from="298" to="303"/>
+  <span id="s_53" from="304" to="309"/>
+  <span id="s_54" from="309" to="310"/>
+  <span id="s_55" from="311" to="316"/>
+  <span id="s_56" from="317" to="321"/>
+  <span id="s_57" from="322" to="325"/>
+  <span id="s_58" from="326" to="330"/>
+  <span id="s_59" from="330" to="331"/>
+  <span id="s_60" from="332" to="336"/>
+  <span id="s_61" from="337" to="342"/>
+  <span id="s_62" from="343" to="345"/>
+  <span id="s_63" from="346" to="349"/>
+  <span id="s_64" from="350" to="357"/>
+  <span id="s_65" from="357" to="358"/>
+  <span id="s_66" from="359" to="361"/>
+  <span id="s_67" from="362" to="365"/>
+  <span id="s_68" from="366" to="368"/>
+  <span id="s_69" from="369" to="372"/>
+  <span id="s_70" from="373" to="379"/>
+  <span id="s_71" from="380" to="382"/>
+  <span id="s_72" from="383" to="389"/>
+  <span id="s_73" from="390" to="394"/>
+  <span id="s_74" from="394" to="395"/>
+  <span id="s_75" from="396" to="398"/>
+  <span id="s_76" from="399" to="403"/>
+  <span id="s_77" from="404" to="407"/>
+  <span id="s_78" from="408" to="412"/>
+  <span id="s_79" from="413" to="418"/>
+  <span id="s_80" from="419" to="429"/>
+  <span id="s_81" from="429" to="430"/>
+  <span id="s_82" from="431" to="434"/>
+  <span id="s_83" from="435" to="439"/>
+  <span id="s_84" from="439" to="440"/>
+  <span id="s_85" from="441" to="444"/>
+  <span id="s_86" from="445" to="448"/>
+  <span id="s_87" from="449" to="456"/>
+  <span id="s_88" from="456" to="457"/>
+  <span id="s_89" from="458" to="461"/>
+  <span id="s_90" from="462" to="464"/>
+  <span id="s_91" from="465" to="468"/>
+  <span id="s_92" from="469" to="471"/>
+  <span id="s_93" from="472" to="475"/>
+  <span id="s_94" from="476" to="481"/>
+  <span id="s_95" from="481" to="482"/>
+  <span id="s_96" from="483" to="487"/>
+  <span id="s_97" from="488" to="495"/>
+  <span id="s_98" from="495" to="496"/>
+  <span id="s_99" from="497" to="500"/>
+  <span id="s_100" from="501" to="507"/>
+  <span id="s_101" from="507" to="508"/>
+  <span id="s_102" from="509" to="512"/>
+  <span id="s_103" from="513" to="515"/>
+  <span id="s_104" from="516" to="518"/>
+  <span id="s_105" from="519" to="522"/>
+  <span id="s_106" from="523" to="532"/>
+  <span id="s_107" from="533" to="537"/>
+  <span id="s_108" from="538" to="547"/>
+  <span id="s_109" from="548" to="551"/>
+  <span id="s_110" from="552" to="559"/>
+  <span id="s_111" from="559" to="560"/>
+  <span id="s_112" from="561" to="566"/>
+  <span id="s_113" from="566" to="567"/>
+  <span id="s_114" from="568" to="571"/>
+  <span id="s_115" from="572" to="582"/>
+  <span id="s_116" from="583" to="588"/>
+  <span id="s_117" from="588" to="589"/>
+  <span id="s_118" from="590" to="593"/>
+  <span id="s_119" from="594" to="606"/>
+  <span id="s_120" from="606" to="607"/>
+  <span id="s_121" from="608" to="610"/>
+  <span id="s_122" from="611" to="614"/>
+  <span id="s_123" from="615" to="620"/>
+  <span id="s_124" from="621" to="626"/>
+  <span id="s_125" from="627" to="632"/>
+  <span id="s_126" from="632" to="633"/>
+  <span id="s_127" from="634" to="637"/>
+  <span id="s_128" from="638" to="641"/>
+  <span id="s_129" from="642" to="647"/>
+  <span id="s_130" from="648" to="652"/>
+  <span id="s_131" from="653" to="664"/>
+  <span id="s_132" from="664" to="665"/>
+  <span id="s_133" from="666" to="671"/>
+  <span id="s_134" from="672" to="677"/>
+  <span id="s_135" from="677" to="678"/>
+  <span id="s_136" from="679" to="683"/>
+  <span id="s_137" from="684" to="686"/>
+  <span id="s_138" from="687" to="694"/>
+  <span id="s_139" from="695" to="707"/>
+  <span id="s_140" from="708" to="711"/>
+  <span id="s_141" from="712" to="727"/>
+  <span id="s_142" from="728" to="735"/>
+  <span id="s_143" from="735" to="736"/>
+  <span id="s_144" from="737" to="741"/>
+  <span id="s_145" from="742" to="744"/>
+  <span id="s_146" from="745" to="748"/>
+  <span id="s_147" from="749" to="759"/>
+  <span id="s_148" from="760" to="776"/>
+  <span id="s_149" from="777" to="782"/>
+  <span id="s_150" from="783" to="786"/>
+  <span id="s_151" from="787" to="792"/>
+  <span id="s_152" from="793" to="797"/>
+  <span id="s_153" from="797" to="798"/>
+  <span id="s_154" from="799" to="810"/>
+  <span id="s_155" from="811" to="814"/>
+  <span id="s_156" from="815" to="819"/>
+  <span id="s_157" from="820" to="825"/>
+  <span id="s_158" from="825" to="826"/>
+  <span id="s_159" from="827" to="834"/>
+  <span id="s_160" from="835" to="838"/>
+  <span id="s_161" from="839" to="845"/>
+  <span id="s_162" from="845" to="846"/>
+  <span id="s_163" from="847" to="849"/>
+  <span id="s_164" from="850" to="855"/>
+  <span id="s_165" from="856" to="859"/>
+  <span id="s_166" from="860" to="867"/>
+  <span id="s_167" from="868" to="878"/>
+  <span id="s_168" from="879" to="882"/>
+  <span id="s_169" from="883" to="891"/>
+  <span id="s_170" from="892" to="898"/>
+  <span id="s_171" from="899" to="901"/>
+  <span id="s_172" from="902" to="910"/>
+  <span id="s_173" from="910" to="911"/>
+  <span id="s_174" from="912" to="920"/>
+  <span id="s_175" from="921" to="925"/>
+  <span id="s_176" from="926" to="930"/>
+  <span id="s_177" from="931" to="939"/>
+  <span id="s_178" from="939" to="940"/>
+  <span id="s_179" from="941" to="944"/>
+  <span id="s_180" from="945" to="955"/>
+  <span id="s_181" from="955" to="956"/>
+  <span id="s_182" from="957" to="963"/>
+  <span id="s_183" from="964" to="975"/>
+  <span id="s_184" from="976" to="979"/>
+  <span id="s_185" from="980" to="985"/>
+  <span id="s_186" from="986" to="989"/>
+  <span id="s_187" from="990" to="994"/>
+  <span id="s_188" from="995" to="1005"/>
+  <span id="s_189" from="1005" to="1006"/>
+  <span id="s_190" from="1007" to="1012"/>
+  <span id="s_191" from="1013" to="1021"/>
+  <span id="s_192" from="1022" to="1028"/>
+  <span id="s_193" from="1028" to="1029"/>
+  <span id="s_194" from="1030" to="1036"/>
+  <span id="s_195" from="1036" to="1037"/>
+  <span id="s_196" from="1038" to="1043"/>
+  <span id="s_197" from="1043" to="1044"/>
+  <span id="s_198" from="1045" to="1053"/>
+  <span id="s_199" from="1054" to="1061"/>
+  <span id="s_200" from="1062" to="1067"/>
+  <span id="s_201" from="1068" to="1070"/>
+  <span id="s_202" from="1071" to="1078"/>
+  <span id="s_203" from="1079" to="1089"/>
+  <span id="s_204" from="1090" to="1096"/>
+  <span id="s_205" from="1097" to="1102"/>
+  <span id="s_206" from="1103" to="1114"/>
+  <span id="s_207" from="1115" to="1120"/>
+  <span id="s_208" from="1121" to="1123"/>
+  <span id="s_209" from="1124" to="1129"/>
+  <span id="s_210" from="1130" to="1135"/>
+  <span id="s_211" from="1135" to="1136"/>
+  <span id="s_212" from="1137" to="1140"/>
+  <span id="s_213" from="1141" to="1153"/>
+  <span id="s_214" from="1154" to="1158"/>
+  <span id="s_215" from="1159" to="1167"/>
+  <span id="s_216" from="1168" to="1171"/>
+  <span id="s_217" from="1172" to="1179"/>
+  <span id="s_218" from="1180" to="1183"/>
+  <span id="s_219" from="1184" to="1194"/>
+  <span id="s_220" from="1195" to="1201"/>
+  <span id="s_221" from="1201" to="1202"/>
+  <span id="s_222" from="1203" to="1207"/>
+  <span id="s_223" from="1208" to="1215"/>
+  <span id="s_224" from="1216" to="1218"/>
+  <span id="s_225" from="1219" to="1225"/>
+  <span id="s_226" from="1226" to="1231"/>
+  <span id="s_227" from="1231" to="1232"/>
+  <span id="s_228" from="1233" to="1236"/>
+  <span id="s_229" from="1237" to="1243"/>
+  <span id="s_230" from="1243" to="1244"/>
+  <span id="s_231" from="1245" to="1251"/>
+  <span id="s_232" from="1252" to="1265"/>
+  <span id="s_233" from="1266" to="1272"/>
+  <span id="s_234" from="1273" to="1275"/>
+  <span id="s_235" from="1276" to="1281"/>
+  <span id="s_236" from="1281" to="1282"/>
+  <span id="s_237" from="1283" to="1286"/>
+  <span id="s_238" from="1287" to="1295"/>
+  <span id="s_239" from="1295" to="1296"/>
+  <span id="s_240" from="1297" to="1302"/>
+  <span id="s_241" from="1303" to="1317"/>
+  <span id="s_242" from="1318" to="1322"/>
+  <span id="s_243" from="1323" to="1327"/>
+  <span id="s_244" from="1328" to="1332"/>
+  <span id="s_245" from="1333" to="1336"/>
+  <span id="s_246" from="1336" to="1337"/>
+  <span id="s_247" from="1338" to="1342"/>
+  <span id="s_248" from="1343" to="1345"/>
+  <span id="s_249" from="1346" to="1353"/>
+  <span id="s_250" from="1354" to="1357"/>
+  <span id="s_251" from="1358" to="1361"/>
+  <span id="s_252" from="1362" to="1376"/>
+  <span id="s_253" from="1377" to="1384"/>
+  <span id="s_254" from="1384" to="1385"/>
+  <span id="s_255" from="1386" to="1388"/>
+  <span id="s_256" from="1389" to="1392"/>
+  <span id="s_257" from="1393" to="1399"/>
+  <span id="s_258" from="1399" to="1400"/>
+  <span id="s_259" from="1401" to="1404"/>
+  <span id="s_260" from="1405" to="1407"/>
+  <span id="s_261" from="1408" to="1420"/>
+  <span id="s_262" from="1421" to="1427"/>
+  <span id="s_263" from="1427" to="1428"/>
+  <span id="s_264" from="1429" to="1433"/>
+  <span id="s_265" from="1434" to="1437"/>
+  <span id="s_266" from="1438" to="1444"/>
+  <span id="s_267" from="1445" to="1450"/>
+  <span id="s_268" from="1451" to="1457"/>
+  <span id="s_269" from="1458" to="1462"/>
+  <span id="s_270" from="1463" to="1473"/>
+  <span id="s_271" from="1474" to="1479"/>
+  <span id="s_272" from="1479" to="1480"/>
+  <span id="s_273" from="1481" to="1483"/>
+  <span id="s_274" from="1484" to="1491"/>
+  <span id="s_275" from="1492" to="1496"/>
+  <span id="s_276" from="1497" to="1509"/>
+  <span id="s_277" from="1510" to="1517"/>
+  <span id="s_278" from="1518" to="1520"/>
+  <span id="s_279" from="1521" to="1526"/>
+  <span id="s_280" from="1527" to="1535"/>
+  <span id="s_281" from="1536" to="1547"/>
+  <span id="s_282" from="1548" to="1551"/>
+  <span id="s_283" from="1551" to="1552"/>
+  <span id="s_284" from="1553" to="1556"/>
+  <span id="s_285" from="1557" to="1559"/>
+  <span id="s_286" from="1560" to="1564"/>
+  <span id="s_287" from="1564" to="1565"/>
+  <span id="s_288" from="1566" to="1570"/>
+  <span id="s_289" from="1571" to="1573"/>
+  <span id="s_290" from="1574" to="1577"/>
+  <span id="s_291" from="1578" to="1590"/>
+  <span id="s_292" from="1591" to="1597"/>
+  <span id="s_293" from="1597" to="1598"/>
+  <span id="s_294" from="1599" to="1610"/>
+  <span id="s_295" from="1611" to="1620"/>
+  <span id="s_296" from="1621" to="1624"/>
+  <span id="s_297" from="1625" to="1629"/>
+  <span id="s_298" from="1630" to="1634"/>
+  <span id="s_299" from="1635" to="1640"/>
+  <span id="s_300" from="1641" to="1655"/>
+  <span id="s_301" from="1656" to="1661"/>
+  <span id="s_302" from="1662" to="1667"/>
+  <span id="s_303" from="1668" to="1671"/>
+  <span id="s_304" from="1671" to="1672"/>
+  <span id="s_305" from="1673" to="1676"/>
+  <span id="s_306" from="1677" to="1683"/>
+  <span id="s_307" from="1684" to="1687"/>
+  <span id="s_308" from="1688" to="1691"/>
+  <span id="s_309" from="1692" to="1700"/>
+  <span id="s_310" from="1701" to="1703"/>
+  <span id="s_311" from="1704" to="1707"/>
+  <span id="s_312" from="1708" to="1713"/>
+  <span id="s_313" from="1714" to="1719"/>
+  <span id="s_314" from="1720" to="1730"/>
+  <span id="s_315" from="1731" to="1735"/>
+  <span id="s_316" from="1736" to="1743"/>
+  <span id="s_317" from="1744" to="1747"/>
+  <span id="s_318" from="1748" to="1751"/>
+  <span id="s_319" from="1752" to="1759"/>
+  <span id="s_320" from="1760" to="1767"/>
+  <span id="s_321" from="1768" to="1774"/>
+  <span id="s_322" from="1774" to="1775"/>
+  <span id="s_323" from="1776" to="1779"/>
+  <span id="s_324" from="1780" to="1782"/>
+  <span id="s_325" from="1783" to="1786"/>
+  <span id="s_326" from="1787" to="1796"/>
+  <span id="s_327" from="1797" to="1800"/>
+  <span id="s_328" from="1801" to="1809"/>
+  <span id="s_329" from="1810" to="1813"/>
+  <span id="s_330" from="1814" to="1822"/>
+  <span id="s_331" from="1823" to="1831"/>
+  <span id="s_332" from="1832" to="1835"/>
+  <span id="s_333" from="1836" to="1849"/>
+  <span id="s_334" from="1850" to="1854"/>
+  <span id="s_335" from="1854" to="1855"/>
+  <span id="s_336" from="1856" to="1860"/>
+  <span id="s_337" from="1861" to="1869"/>
+  <span id="s_338" from="1870" to="1878"/>
+  <span id="s_339" from="1879" to="1884"/>
+  <span id="s_340" from="1885" to="1888"/>
+  <span id="s_341" from="1889" to="1900"/>
+  <span id="s_342" from="1901" to="1906"/>
+  <span id="s_343" from="1907" to="1914"/>
+  <span id="s_344" from="1915" to="1918"/>
+  <span id="s_345" from="1919" to="1924"/>
+  <span id="s_346" from="1925" to="1935"/>
+  <span id="s_347" from="1936" to="1938"/>
+  <span id="s_348" from="1939" to="1942"/>
+  <span id="s_349" from="1943" to="1946"/>
+  <span id="s_350" from="1946" to="1947"/>
+  <span id="s_351" from="1948" to="1956"/>
+  <span id="s_352" from="1957" to="1961"/>
+  <span id="s_353" from="1962" to="1964"/>
+  <span id="s_354" from="1965" to="1969"/>
+  <span id="s_355" from="1970" to="1975"/>
+  <span id="s_356" from="1976" to="1982"/>
+  <span id="s_357" from="1983" to="1988"/>
+  <span id="s_358" from="1989" to="1991"/>
+  <span id="s_359" from="1992" to="1998"/>
+  <span id="s_360" from="1998" to="1999"/>
+  <span id="s_361" from="2000" to="2003"/>
+  <span id="s_362" from="2004" to="2009"/>
+  <span id="s_363" from="2010" to="2014"/>
+  <span id="s_364" from="2015" to="2021"/>
+  <span id="s_365" from="2021" to="2022"/>
+  <span id="s_366" from="2023" to="2025"/>
+  <span id="s_367" from="2026" to="2030"/>
+  <span id="s_368" from="2031" to="2035"/>
+  <span id="s_369" from="2036" to="2046"/>
+  <span id="s_370" from="2047" to="2057"/>
+  <span id="s_371" from="2057" to="2058"/>
+  <span id="s_372" from="2059" to="2062"/>
+  <span id="s_373" from="2063" to="2067"/>
+  <span id="s_374" from="2068" to="2072"/>
+  <span id="s_375" from="2073" to="2075"/>
+  <span id="s_376" from="2076" to="2080"/>
+  <span id="s_377" from="2081" to="2087"/>
+  <span id="s_378" from="2088" to="2091"/>
+  <span id="s_379" from="2092" to="2101"/>
+  <span id="s_380" from="2102" to="2105"/>
+  <span id="s_381" from="2105" to="2106"/>
+  <span id="s_382" from="2107" to="2110"/>
+  <span id="s_383" from="2111" to="2116"/>
+  <span id="s_384" from="2117" to="2122"/>
+  <span id="s_385" from="2122" to="2123"/>
+  <span id="s_386" from="2124" to="2128"/>
+  <span id="s_387" from="2129" to="2132"/>
+  <span id="s_388" from="2133" to="2139"/>
+  <span id="s_389" from="2140" to="2143"/>
+  <span id="s_390" from="2144" to="2149"/>
+  <span id="s_391" from="2150" to="2156"/>
+  <span id="s_392" from="2157" to="2166"/>
+  <span id="s_393" from="2167" to="2177"/>
+  <span id="s_394" from="2177" to="2178"/>
+  <span id="s_395" from="2179" to="2187"/>
+  <span id="s_396" from="2188" to="2190"/>
+  <span id="s_397" from="2191" to="2195"/>
+  <span id="s_398" from="2196" to="2201"/>
+  <span id="s_399" from="2201" to="2202"/>
+  <span id="s_400" from="2203" to="2205"/>
+  <span id="s_401" from="2206" to="2214"/>
+  <span id="s_402" from="2215" to="2217"/>
+  <span id="s_403" from="2218" to="2220"/>
+  <span id="s_404" from="2221" to="2225"/>
+  <span id="s_405" from="2226" to="2242"/>
+  <span id="s_406" from="2242" to="2243"/>
+  <span id="s_407" from="2244" to="2249"/>
+  <span id="s_408" from="2250" to="2254"/>
+  <span id="s_409" from="2255" to="2260"/>
+  <span id="s_410" from="2261" to="2264"/>
+  <span id="s_411" from="2265" to="2270"/>
+  <span id="s_412" from="2271" to="2277"/>
+  <span id="s_413" from="2278" to="2282"/>
+  <span id="s_414" from="2282" to="2283"/>
+  <span id="s_415" from="2284" to="2287"/>
+  <span id="s_416" from="2288" to="2292"/>
+  <span id="s_417" from="2293" to="2303"/>
+  <span id="s_418" from="2304" to="2311"/>
+  <span id="s_419" from="2312" to="2316"/>
+  <span id="s_420" from="2317" to="2320"/>
+  <span id="s_421" from="2321" to="2326"/>
+  <span id="s_422" from="2327" to="2334"/>
+  <span id="s_423" from="2335" to="2339"/>
+  <span id="s_424" from="2340" to="2350"/>
+  <span id="s_425" from="2351" to="2356"/>
+  <span id="s_426" from="2356" to="2357"/>
+  <span id="s_427" from="2358" to="2365"/>
+  <span id="s_428" from="2366" to="2369"/>
+  <span id="s_429" from="2370" to="2375"/>
+  <span id="s_430" from="2376" to="2394"/>
+  <span id="s_431" from="2395" to="2404"/>
+  <span id="s_432" from="2405" to="2408"/>
+  <span id="s_433" from="2409" to="2412"/>
+  <span id="s_434" from="2412" to="2413"/>
+  <span id="s_435" from="2414" to="2417"/>
+  <span id="s_436" from="2418" to="2422"/>
+  <span id="s_437" from="2423" to="2428"/>
+  <span id="s_438" from="2429" to="2437"/>
+  <span id="s_439" from="2437" to="2438"/>
+  <span id="s_440" from="2439" to="2443"/>
+  <span id="s_441" from="2444" to="2447"/>
+  <span id="s_442" from="2448" to="2462"/>
+  <span id="s_443" from="2463" to="2472"/>
+  <span id="s_444" from="2472" to="2473"/>
+  <span id="s_445" from="2474" to="2476"/>
+  <span id="s_446" from="2477" to="2480"/>
+  <span id="s_447" from="2481" to="2486"/>
+  <span id="s_448" from="2487" to="2489"/>
+  <span id="s_449" from="2490" to="2497"/>
+  <span id="s_450" from="2497" to="2498"/>
+  <span id="s_451" from="2499" to="2502"/>
+  <span id="s_452" from="2503" to="2506"/>
+  <span id="s_453" from="2507" to="2512"/>
+  <span id="s_454" from="2513" to="2517"/>
+  <span id="s_455" from="2518" to="2523"/>
+  <span id="s_456" from="2524" to="2527"/>
+  <span id="s_457" from="2528" to="2539"/>
+  <span id="s_458" from="2540" to="2542"/>
+  <span id="s_459" from="2543" to="2551"/>
+  <span id="s_460" from="2552" to="2558"/>
+  <span id="s_461" from="2558" to="2559"/>
+  <span id="s_462" from="2560" to="2563"/>
+  <span id="s_463" from="2564" to="2574"/>
+  <span id="s_464" from="2575" to="2579"/>
+  <span id="s_465" from="2580" to="2592"/>
+  <span id="s_466" from="2593" to="2596"/>
+  <span id="s_467" from="2597" to="2606"/>
+  <span id="s_468" from="2607" to="2615"/>
+  <span id="s_469" from="2616" to="2623"/>
+  <span id="s_470" from="2624" to="2627"/>
+  <span id="s_471" from="2628" to="2634"/>
+  <span id="s_472" from="2634" to="2635"/>
+  <span id="s_473" from="2636" to="2639"/>
+  <span id="s_474" from="2640" to="2649"/>
+  <span id="s_475" from="2650" to="2654"/>
+  <span id="s_476" from="2655" to="2660"/>
+  <span id="s_477" from="2661" to="2669"/>
+  <span id="s_478" from="2669" to="2670"/>
+  <span id="s_479" from="2671" to="2684"/>
+  <span id="s_480" from="2685" to="2688"/>
+  <span id="s_481" from="2689" to="2706"/>
+  <span id="s_482" from="2707" to="2712"/>
+  <span id="s_483" from="2713" to="2719"/>
+  <span id="s_484" from="2719" to="2720"/>
+  <span id="s_485" from="2721" to="2724"/>
+  <span id="s_486" from="2725" to="2730"/>
+  <span id="s_487" from="2731" to="2735"/>
+  <span id="s_488" from="2736" to="2741"/>
+  <span id="s_489" from="2742" to="2747"/>
+  <span id="s_490" from="2748" to="2755"/>
+  <span id="s_491" from="2756" to="2766"/>
+  <span id="s_492" from="2766" to="2767"/>
+  <span id="s_493" from="2768" to="2771"/>
+  <span id="s_494" from="2772" to="2775"/>
+  <span id="s_495" from="2776" to="2780"/>
+  <span id="s_496" from="2781" to="2783"/>
+  <span id="s_497" from="2784" to="2789"/>
+  <span id="s_498" from="2790" to="2798"/>
+  <span id="s_499" from="2799" to="2808"/>
+  <span id="s_500" from="2809" to="2821"/>
+  <span id="s_501" from="2822" to="2836"/>
+  <span id="s_502" from="2837" to="2840"/>
+  <span id="s_503" from="2841" to="2844"/>
+  <span id="s_504" from="2845" to="2861"/>
+  <span id="s_505" from="2862" to="2866"/>
+  <span id="s_506" from="2867" to="2869"/>
+  <span id="s_507" from="2870" to="2883"/>
+  <span id="s_508" from="2884" to="2893"/>
+  <span id="s_509" from="2893" to="2894"/>
+  <span id="s_510" from="2895" to="2898"/>
+  <span id="s_511" from="2899" to="2902"/>
+  <span id="s_512" from="2903" to="2909"/>
+  <span id="s_513" from="2910" to="2916"/>
+  <span id="s_514" from="2917" to="2920"/>
+  <span id="s_515" from="2921" to="2927"/>
+  <span id="s_516" from="2928" to="2932"/>
+  <span id="s_517" from="2933" to="2941"/>
+  <span id="s_518" from="2942" to="2952"/>
+  <span id="s_519" from="2953" to="2956"/>
+  <span id="s_520" from="2957" to="2960"/>
+  <span id="s_521" from="2961" to="2966"/>
+  <span id="s_522" from="2967" to="2977"/>
+  <span id="s_523" from="2978" to="2984"/>
+  <span id="s_524" from="2985" to="2988"/>
+  <span id="s_525" from="2989" to="2994"/>
+  <span id="s_526" from="2995" to="3001"/>
+  <span id="s_527" from="3002" to="3007"/>
+  <span id="s_528" from="3008" to="3013"/>
+  <span id="s_529" from="3013" to="3014"/>
+  <span id="s_530" from="3015" to="3023"/>
+  <span id="s_531" from="3023" to="3024"/>
+  <span id="s_532" from="3025" to="3030"/>
+  <span id="s_533" from="3031" to="3034"/>
+  <span id="s_534" from="3035" to="3038"/>
+  <span id="s_535" from="3039" to="3050"/>
+  <span id="s_536" from="3050" to="3051"/>
+  <span id="s_537" from="3052" to="3060"/>
+  <span id="s_538" from="3061" to="3070"/>
+  <span id="s_539" from="3070" to="3071"/>
+  <span id="s_540" from="3072" to="3081"/>
+  <span id="s_541" from="3082" to="3091"/>
+  <span id="s_542" from="3092" to="3101"/>
+  <span id="s_543" from="3101" to="3102"/>
+  <span id="s_544" from="3103" to="3110"/>
+  <span id="s_545" from="3111" to="3117"/>
+  <span id="s_546" from="3118" to="3121"/>
+  <span id="s_547" from="3122" to="3130"/>
+  <span id="s_548" from="3131" to="3139"/>
+  <span id="s_549" from="3139" to="3140"/>
+  <span id="s_550" from="3141" to="3144"/>
+  <span id="s_551" from="3145" to="3155"/>
+  <span id="s_552" from="3156" to="3160"/>
+  <span id="s_553" from="3161" to="3170"/>
+  <span id="s_554" from="3171" to="3174"/>
+  <span id="s_555" from="3175" to="3182"/>
+  <span id="s_556" from="3183" to="3188"/>
+  <span id="s_557" from="3188" to="3189"/>
+  <span id="s_558" from="3190" to="3192"/>
+  <span id="s_559" from="3193" to="3198"/>
+  <span id="s_560" from="3199" to="3202"/>
+  <span id="s_561" from="3203" to="3208"/>
+  <span id="s_562" from="3209" to="3221"/>
+  <span id="s_563" from="3221" to="3222"/>
+  <span id="s_564" from="3223" to="3225"/>
+  <span id="s_565" from="3226" to="3229"/>
+  <span id="s_566" from="3230" to="3238"/>
+  <span id="s_567" from="3239" to="3242"/>
+  <span id="s_568" from="3243" to="3250"/>
+  <span id="s_569" from="3251" to="3263"/>
+  <span id="s_570" from="3264" to="3269"/>
+  <span id="s_571" from="3269" to="3270"/>
+  <span id="s_572" from="3271" to="3274"/>
+  <span id="s_573" from="3275" to="3278"/>
+  <span id="s_574" from="3279" to="3283"/>
+  <span id="s_575" from="3284" to="3288"/>
+  <span id="s_576" from="3289" to="3297"/>
+  <span id="s_577" from="3298" to="3305"/>
+  <span id="s_578" from="3306" to="3309"/>
+  <span id="s_579" from="3309" to="3310"/>
+  <span id="s_580" from="3311" to="3316"/>
+  <span id="s_581" from="3317" to="3323"/>
+  <span id="s_582" from="3324" to="3331"/>
+  <span id="s_583" from="3332" to="3335"/>
+  <span id="s_584" from="3336" to="3340"/>
+  <span id="s_585" from="3341" to="3344"/>
+  <span id="s_586" from="3345" to="3353"/>
+  <span id="s_587" from="3354" to="3356"/>
+  <span id="s_588" from="3356" to="3357"/>
+  <span id="s_589" from="3358" to="3361"/>
+  <span id="s_590" from="3362" to="3367"/>
+  <span id="s_591" from="3368" to="3378"/>
+  <span id="s_592" from="3379" to="3382"/>
+  <span id="s_593" from="3383" to="3386"/>
+  <span id="s_594" from="3387" to="3392"/>
+  <span id="s_595" from="3393" to="3396"/>
+  <span id="s_596" from="3397" to="3401"/>
+  <span id="s_597" from="3402" to="3407"/>
+  <span id="s_598" from="3408" to="3413"/>
+  <span id="s_599" from="3413" to="3414"/>
+  <span id="s_600" from="3415" to="3420"/>
+  <span id="s_601" from="3421" to="3428"/>
+  <span id="s_602" from="3428" to="3429"/>
+  <span id="s_603" from="3430" to="3435"/>
+  <span id="s_604" from="3436" to="3439"/>
+  <span id="s_605" from="3440" to="3443"/>
+  <span id="s_606" from="3444" to="3448"/>
+  <span id="s_607" from="3449" to="3453"/>
+  <span id="s_608" from="3454" to="3458"/>
+  <span id="s_609" from="3459" to="3461"/>
+  <span id="s_610" from="3462" to="3473"/>
+  <span id="s_611" from="3474" to="3477"/>
+  <span id="s_612" from="3478" to="3483"/>
+  <span id="s_613" from="3484" to="3490"/>
+  <span id="s_614" from="3491" to="3493"/>
+  <span id="s_615" from="3494" to="3506"/>
+  <span id="s_616" from="3506" to="3507"/>
+  <span id="s_617" from="3508" to="3512"/>
+  <span id="s_618" from="3513" to="3517"/>
+  <span id="s_619" from="3518" to="3523"/>
+  <span id="s_620" from="3524" to="3526"/>
+  <span id="s_621" from="3527" to="3537"/>
+  <span id="s_622" from="3538" to="3543"/>
+  <span id="s_623" from="3543" to="3544"/>
+  <span id="s_624" from="3545" to="3548"/>
+  <span id="s_625" from="3549" to="3557"/>
+  <span id="s_626" from="3558" to="3562"/>
+  <span id="s_627" from="3563" to="3566"/>
+  <span id="s_628" from="3567" to="3571"/>
+  <span id="s_629" from="3572" to="3576"/>
+  <span id="s_630" from="3577" to="3585"/>
+  <span id="s_631" from="3586" to="3590"/>
+  <span id="s_632" from="3591" to="3597"/>
+  <span id="s_633" from="3598" to="3601"/>
+  <span id="s_634" from="3602" to="3609"/>
+  <span id="s_635" from="3610" to="3613"/>
+  <span id="s_636" from="3614" to="3630"/>
+  <span id="s_637" from="3630" to="3631"/>
+  <span id="s_638" from="3632" to="3635"/>
+  <span id="s_639" from="3636" to="3639"/>
+  <span id="s_640" from="3640" to="3644"/>
+  <span id="s_641" from="3644" to="3645"/>
+  <span id="s_642" from="3646" to="3653"/>
+  <span id="s_643" from="3654" to="3658"/>
+  <span id="s_644" from="3659" to="3662"/>
+  <span id="s_645" from="3663" to="3666"/>
+  <span id="s_646" from="3667" to="3673"/>
+  <span id="s_647" from="3673" to="3674"/>
+  <span id="s_648" from="3675" to="3685"/>
+  <span id="s_649" from="3686" to="3689"/>
+  <span id="s_650" from="3690" to="3702"/>
+  <span id="s_651" from="3703" to="3712"/>
+  <span id="s_652" from="3712" to="3713"/>
+  <span id="s_653" from="3714" to="3720"/>
+  <span id="s_654" from="3721" to="3724"/>
+  <span id="s_655" from="3725" to="3731"/>
+  <span id="s_656" from="3731" to="3732"/>
+  <span id="s_657" from="3733" to="3743"/>
+  <span id="s_658" from="3744" to="3747"/>
+  <span id="s_659" from="3748" to="3758"/>
+  <span id="s_660" from="3759" to="3770"/>
+  <span id="s_661" from="3770" to="3771"/>
+  <span id="s_662" from="3772" to="3779"/>
+  <span id="s_663" from="3780" to="3783"/>
+  <span id="s_664" from="3784" to="3787"/>
+  <span id="s_665" from="3788" to="3793"/>
+  <span id="s_666" from="3794" to="3797"/>
+  <span id="s_667" from="3798" to="3802"/>
+  <span id="s_668" from="3803" to="3812"/>
+  <span id="s_669" from="3813" to="3817"/>
+  <span id="s_670" from="3817" to="3818"/>
+  <span id="s_671" from="3819" to="3823"/>
+  <span id="s_672" from="3823" to="3824"/>
+  <span id="s_673" from="3825" to="3832"/>
+  <span id="s_674" from="3833" to="3836"/>
+  <span id="s_675" from="3837" to="3841"/>
+  <span id="s_676" from="3842" to="3847"/>
+  <span id="s_677" from="3847" to="3848"/>
+  <span id="s_678" from="3849" to="3856"/>
+  <span id="s_679" from="3857" to="3866"/>
+  <span id="s_680" from="3867" to="3870"/>
+  <span id="s_681" from="3871" to="3876"/>
+  <span id="s_682" from="3877" to="3881"/>
+  <span id="s_683" from="3881" to="3882"/>
+  <span id="s_684" from="3883" to="3886"/>
+  <span id="s_685" from="3887" to="3895"/>
+  <span id="s_686" from="3896" to="3898"/>
+  <span id="s_687" from="3899" to="3901"/>
+  <span id="s_688" from="3902" to="3908"/>
+  <span id="s_689" from="3909" to="3912"/>
+  <span id="s_690" from="3913" to="3921"/>
+  <span id="s_691" from="3922" to="3924"/>
+  <span id="s_692" from="3925" to="3927"/>
+  <span id="s_693" from="3928" to="3937"/>
+  <span id="s_694" from="3937" to="3938"/>
+  <span id="s_695" from="3939" to="3942"/>
+  <span id="s_696" from="3943" to="3947"/>
+  <span id="s_697" from="3948" to="3953"/>
+  <span id="s_698" from="3954" to="3964"/>
+  <span id="s_699" from="3964" to="3965"/>
+  <span id="s_700" from="3966" to="3968"/>
+  <span id="s_701" from="3969" to="3975"/>
+  <span id="s_702" from="3976" to="3979"/>
+  <span id="s_703" from="3980" to="3982"/>
+  <span id="s_704" from="3983" to="3992"/>
+  <span id="s_705" from="3993" to="3996"/>
+  <span id="s_706" from="3997" to="3999"/>
+  <span id="s_707" from="4000" to="4009"/>
+  <span id="s_708" from="4010" to="4019"/>
+  <span id="s_709" from="4019" to="4020"/>
+  <span id="s_710" from="4021" to="4024"/>
+  <span id="s_711" from="4025" to="4028"/>
+  <span id="s_712" from="4029" to="4038"/>
+  <span id="s_713" from="4038" to="4039"/>
+  <span id="s_714" from="4040" to="4043"/>
+  <span id="s_715" from="4044" to="4047"/>
+  <span id="s_716" from="4048" to="4053"/>
+  <span id="s_717" from="4054" to="4059"/>
+  <span id="s_718" from="4060" to="4067"/>
+  <span id="s_719" from="4068" to="4072"/>
+  <span id="s_720" from="4072" to="4073"/>
+  <span id="s_721" from="4074" to="4076"/>
+  <span id="s_722" from="4077" to="4081"/>
+  <span id="s_723" from="4082" to="4085"/>
+  <span id="s_724" from="4086" to="4089"/>
+  <span id="s_725" from="4090" to="4098"/>
+  <span id="s_726" from="4098" to="4099"/>
+  <span id="s_727" from="4100" to="4103"/>
+  <span id="s_728" from="4104" to="4109"/>
+  <span id="s_729" from="4109" to="4110"/>
+  <span id="s_730" from="4111" to="4113"/>
+  <span id="s_731" from="4114" to="4118"/>
+  <span id="s_732" from="4119" to="4122"/>
+  <span id="s_733" from="4123" to="4131"/>
+  <span id="s_734" from="4132" to="4135"/>
+  <span id="s_735" from="4136" to="4144"/>
+  <span id="s_736" from="4144" to="4145"/>
+  <span id="s_737" from="4146" to="4149"/>
+  <span id="s_738" from="4150" to="4155"/>
+  <span id="s_739" from="4156" to="4160"/>
+  <span id="s_740" from="4160" to="4161"/>
+  <span id="s_741" from="4162" to="4165"/>
+  <span id="s_742" from="4166" to="4169"/>
+  <span id="s_743" from="4170" to="4179"/>
+  <span id="s_744" from="4180" to="4189"/>
+  <span id="s_745" from="4190" to="4193"/>
+  <span id="s_746" from="4194" to="4196"/>
+  <span id="s_747" from="4197" to="4207"/>
+  <span id="s_748" from="4208" to="4211"/>
+  <span id="s_749" from="4212" to="4215"/>
+  <span id="s_750" from="4216" to="4224"/>
+  <span id="s_751" from="4224" to="4225"/>
+  <span id="s_752" from="4226" to="4230"/>
+  <span id="s_753" from="4231" to="4239"/>
+  <span id="s_754" from="4240" to="4249"/>
+  <span id="s_755" from="4249" to="4250"/>
+  <span id="s_756" from="4251" to="4255"/>
+  <span id="s_757" from="4256" to="4261"/>
+  <span id="s_758" from="4262" to="4265"/>
+  <span id="s_759" from="4266" to="4283"/>
+  <span id="s_760" from="4284" to="4289"/>
+  <span id="s_761" from="4290" to="4296"/>
+  <span id="s_762" from="4296" to="4297"/>
+  <span id="s_763" from="4298" to="4307"/>
+  <span id="s_764" from="4307" to="4308"/>
+  <span id="s_765" from="4309" to="4320"/>
+  <span id="s_766" from="4321" to="4334"/>
+  <span id="s_767" from="4335" to="4340"/>
+  <span id="s_768" from="4341" to="4347"/>
+  <span id="s_769" from="4348" to="4351"/>
+  <span id="s_770" from="4351" to="4352"/>
+  <span id="s_771" from="4353" to="4362"/>
+  <span id="s_772" from="4362" to="4363"/>
+  <span id="s_773" from="4364" to="4371"/>
+  <span id="s_774" from="4372" to="4376"/>
+  <span id="s_775" from="4377" to="4379"/>
+  <span id="s_776" from="4379" to="4380"/>
+  <span id="s_777" from="4381" to="4384"/>
+  <span id="s_778" from="4385" to="4393"/>
+  <span id="s_779" from="4394" to="4399"/>
+  <span id="s_780" from="4400" to="4408"/>
+  <span id="s_781" from="4409" to="4417"/>
+  <span id="s_782" from="4418" to="4434"/>
+  <span id="s_783" from="4435" to="4438"/>
+  <span id="s_784" from="4439" to="4441"/>
+  <span id="s_785" from="4442" to="4448"/>
+  <span id="s_786" from="4448" to="4449"/>
+  <span id="s_787" from="4450" to="4453"/>
+  <span id="s_788" from="4454" to="4460"/>
+  <span id="s_789" from="4461" to="4465"/>
+  <span id="s_790" from="4466" to="4480"/>
+  <span id="s_791" from="4481" to="4490"/>
+  <span id="s_792" from="4490" to="4491"/>
+  <span id="s_793" from="4492" to="4495"/>
+  <span id="s_794" from="4496" to="4501"/>
+  <span id="s_795" from="4502" to="4505"/>
+  <span id="s_796" from="4506" to="4515"/>
+  <span id="s_797" from="4516" to="4521"/>
+  <span id="s_798" from="4522" to="4525"/>
+  <span id="s_799" from="4526" to="4532"/>
+  <span id="s_800" from="4533" to="4545"/>
+  <span id="s_801" from="4546" to="4553"/>
+  <span id="s_802" from="4554" to="4557"/>
+  <span id="s_803" from="4558" to="4570"/>
+  <span id="s_804" from="4571" to="4577"/>
+  <span id="s_805" from="4578" to="4581"/>
+  <span id="s_806" from="4582" to="4587"/>
+  <span id="s_807" from="4588" to="4593"/>
+  <span id="s_808" from="4594" to="4599"/>
+  <span id="s_809" from="4600" to="4605"/>
+  <span id="s_810" from="4606" to="4610"/>
+  <span id="s_811" from="4611" to="4617"/>
+  <span id="s_812" from="4617" to="4618"/>
+  <span id="s_813" from="4619" to="4622"/>
+  <span id="s_814" from="4623" to="4634"/>
+  <span id="s_815" from="4635" to="4642"/>
+  <span id="s_816" from="4643" to="4647"/>
+  <span id="s_817" from="4647" to="4648"/>
+  <span id="s_818" from="4649" to="4654"/>
+  <span id="s_819" from="4655" to="4658"/>
+  <span id="s_820" from="4659" to="4670"/>
+  <span id="s_821" from="4671" to="4673"/>
+  <span id="s_822" from="4674" to="4680"/>
+  <span id="s_823" from="4681" to="4688"/>
+  <span id="s_824" from="4689" to="4692"/>
+  <span id="s_825" from="4693" to="4704"/>
+  <span id="s_826" from="4705" to="4708"/>
+  <span id="s_827" from="4709" to="4726"/>
+  <span id="s_828" from="4727" to="4729"/>
+  <span id="s_829" from="4730" to="4736"/>
+  <span id="s_830" from="4737" to="4743"/>
+  <span id="s_831" from="4744" to="4753"/>
+  <span id="s_832" from="4754" to="4757"/>
+  <span id="s_833" from="4758" to="4766"/>
+  <span id="s_834" from="4767" to="4779"/>
+  <span id="s_835" from="4780" to="4786"/>
+  <span id="s_836" from="4786" to="4787"/>
+  <span id="s_837" from="4788" to="4791"/>
+  <span id="s_838" from="4792" to="4802"/>
+  <span id="s_839" from="4803" to="4807"/>
+  <span id="s_840" from="4808" to="4814"/>
+  <span id="s_841" from="4815" to="4825"/>
+  <span id="s_842" from="4826" to="4840"/>
+  <span id="s_843" from="4841" to="4848"/>
+  <span id="s_844" from="4849" to="4854"/>
+  <span id="s_845" from="4854" to="4855"/>
+  <span id="s_846" from="4856" to="4859"/>
+  <span id="s_847" from="4860" to="4863"/>
+  <span id="s_848" from="4864" to="4868"/>
+  <span id="s_849" from="4869" to="4873"/>
+  <span id="s_850" from="4874" to="4877"/>
+  <span id="s_851" from="4878" to="4885"/>
+  <span id="s_852" from="4886" to="4889"/>
+  <span id="s_853" from="4890" to="4895"/>
+  <span id="s_854" from="4896" to="4901"/>
+  <span id="s_855" from="4902" to="4905"/>
+  <span id="s_856" from="4906" to="4913"/>
+  <span id="s_857" from="4914" to="4923"/>
+  <span id="s_858" from="4924" to="4927"/>
+  <span id="s_859" from="4928" to="4938"/>
+  <span id="s_860" from="4939" to="4951"/>
+  <span id="s_861" from="4952" to="4956"/>
+  <span id="s_862" from="4956" to="4957"/>
+  <span id="s_863" from="4958" to="4961"/>
+  <span id="s_864" from="4962" to="4968"/>
+  <span id="s_865" from="4969" to="4973"/>
+  <span id="s_866" from="4974" to="4976"/>
+  <span id="s_867" from="4977" to="4979"/>
+  <span id="s_868" from="4980" to="4982"/>
+  <span id="s_869" from="4983" to="4992"/>
+  <span id="s_870" from="4993" to="4998"/>
+  <span id="s_871" from="4998" to="4999"/>
+  <span id="s_872" from="5000" to="5002"/>
+  <span id="s_873" from="5003" to="5007"/>
+  <span id="s_874" from="5008" to="5015"/>
+  <span id="s_875" from="5016" to="5024"/>
+  <span id="s_876" from="5024" to="5025"/>
+  <span id="s_877" from="5026" to="5029"/>
+  <span id="s_878" from="5030" to="5038"/>
+  <span id="s_879" from="5038" to="5039"/>
+  <span id="s_880" from="5040" to="5043"/>
+  <span id="s_881" from="5044" to="5047"/>
+  <span id="s_882" from="5048" to="5058"/>
+  <span id="s_883" from="5058" to="5059"/>
+  <span id="s_884" from="5060" to="5066"/>
+  <span id="s_885" from="5067" to="5082"/>
+  <span id="s_886" from="5082" to="5083"/>
+  <span id="s_887" from="5084" to="5088"/>
+  <span id="s_888" from="5088" to="5089"/>
+  <span id="s_889" from="5090" to="5095"/>
+  <span id="s_890" from="5096" to="5103"/>
+  <span id="s_891" from="5103" to="5104"/>
+  <span id="s_892" from="5105" to="5108"/>
+  <span id="s_893" from="5109" to="5114"/>
+  <span id="s_894" from="5115" to="5123"/>
+  <span id="s_895" from="5123" to="5124"/>
+  <span id="s_896" from="5125" to="5127"/>
+  <span id="s_897" from="5128" to="5135"/>
+  <span id="s_898" from="5136" to="5147"/>
+  <span id="s_899" from="5148" to="5158"/>
+  <span id="s_900" from="5159" to="5164"/>
+  <span id="s_901" from="5165" to="5168"/>
+  <span id="s_902" from="5169" to="5176"/>
+  <span id="s_903" from="5176" to="5177"/>
+  <span id="s_904" from="5178" to="5181"/>
+  <span id="s_905" from="5182" to="5185"/>
+  <span id="s_906" from="5186" to="5197"/>
+  <span id="s_907" from="5198" to="5202"/>
+  <span id="s_908" from="5203" to="5209"/>
+  <span id="s_909" from="5209" to="5210"/>
+  <span id="s_910" from="5211" to="5214"/>
+  <span id="s_911" from="5215" to="5223"/>
+  <span id="s_912" from="5224" to="5227"/>
+  <span id="s_913" from="5228" to="5232"/>
+  <span id="s_914" from="5233" to="5244"/>
+  <span id="s_915" from="5245" to="5250"/>
+  <span id="s_916" from="5251" to="5259"/>
+  <span id="s_917" from="5260" to="5264"/>
+  <span id="s_918" from="5264" to="5265"/>
+  <span id="s_919" from="5266" to="5269"/>
+  <span id="s_920" from="5270" to="5279"/>
+  <span id="s_921" from="5279" to="5280"/>
+  <span id="s_922" from="5281" to="5285"/>
+  <span id="s_923" from="5286" to="5288"/>
+  <span id="s_924" from="5289" to="5297"/>
+  <span id="s_925" from="5298" to="5300"/>
+  <span id="s_926" from="5301" to="5305"/>
+  <span id="s_927" from="5306" to="5312"/>
+  <span id="s_928" from="5312" to="5313"/>
+  <span id="s_929" from="5314" to="5317"/>
+  <span id="s_930" from="5318" to="5320"/>
+  <span id="s_931" from="5321" to="5327"/>
+  <span id="s_932" from="5328" to="5332"/>
+  <span id="s_933" from="5332" to="5333"/>
+  <span id="s_934" from="5334" to="5336"/>
+  <span id="s_935" from="5337" to="5343"/>
+  <span id="s_936" from="5344" to="5348"/>
+  <span id="s_937" from="5349" to="5352"/>
+  <span id="s_938" from="5353" to="5363"/>
+  <span id="s_939" from="5364" to="5372"/>
+  <span id="s_940" from="5372" to="5373"/>
+  <span id="s_941" from="5374" to="5377"/>
+  <span id="s_942" from="5378" to="5389"/>
+  <span id="s_943" from="5390" to="5393"/>
+  <span id="s_944" from="5394" to="5397"/>
+  <span id="s_945" from="5398" to="5408"/>
+  <span id="s_946" from="5409" to="5412"/>
+  <span id="s_947" from="5413" to="5420"/>
+  <span id="s_948" from="5420" to="5421"/>
+  <span id="s_949" from="5422" to="5425"/>
+  <span id="s_950" from="5426" to="5435"/>
+  <span id="s_951" from="5436" to="5439"/>
+  <span id="s_952" from="5440" to="5447"/>
+  <span id="s_953" from="5447" to="5448"/>
+  <span id="s_954" from="5449" to="5452"/>
+  <span id="s_955" from="5453" to="5465"/>
+  <span id="s_956" from="5466" to="5470"/>
+  <span id="s_957" from="5471" to="5476"/>
+  <span id="s_958" from="5476" to="5477"/>
+  <span id="s_959" from="5478" to="5481"/>
+  <span id="s_960" from="5482" to="5488"/>
+  <span id="s_961" from="5489" to="5495"/>
+  <span id="s_962" from="5496" to="5499"/>
+  <span id="s_963" from="5500" to="5503"/>
+  <span id="s_964" from="5504" to="5513"/>
+  <span id="s_965" from="5514" to="5517"/>
+  <span id="s_966" from="5518" to="5525"/>
+  <span id="s_967" from="5526" to="5529"/>
+  <span id="s_968" from="5530" to="5538"/>
+  <span id="s_969" from="5539" to="5547"/>
+  <span id="s_970" from="5548" to="5550"/>
+  <span id="s_971" from="5551" to="5565"/>
+  <span id="s_972" from="5566" to="5569"/>
+  <span id="s_973" from="5570" to="5583"/>
+  <span id="s_974" from="5583" to="5584"/>
+  <span id="s_975" from="5585" to="5589"/>
+  <span id="s_976" from="5590" to="5593"/>
+  <span id="s_977" from="5594" to="5599"/>
+  <span id="s_978" from="5600" to="5603"/>
+  <span id="s_979" from="5604" to="5611"/>
+  <span id="s_980" from="5612" to="5618"/>
+  <span id="s_981" from="5618" to="5619"/>
+  <span id="s_982" from="5620" to="5622"/>
+  <span id="s_983" from="5623" to="5628"/>
+  <span id="s_984" from="5629" to="5632"/>
+  <span id="s_985" from="5633" to="5639"/>
+  <span id="s_986" from="5640" to="5643"/>
+  <span id="s_987" from="5644" to="5647"/>
+  <span id="s_988" from="5648" to="5660"/>
+  <span id="s_989" from="5661" to="5671"/>
+  <span id="s_990" from="5671" to="5672"/>
+  <span id="s_991" from="5673" to="5683"/>
+  <span id="s_992" from="5684" to="5687"/>
+  <span id="s_993" from="5688" to="5701"/>
+  <span id="s_994" from="5702" to="5707"/>
+  <span id="s_995" from="5708" to="5716"/>
+  <span id="s_996" from="5717" to="5722"/>
+  <span id="s_997" from="5722" to="5723"/>
+  <span id="s_998" from="5724" to="5727"/>
+  <span id="s_999" from="5728" to="5732"/>
+  <span id="s_1000" from="5733" to="5736"/>
+  <span id="s_1001" from="5737" to="5740"/>
+  <span id="s_1002" from="5741" to="5746"/>
+  <span id="s_1003" from="5747" to="5753"/>
+  <span id="s_1004" from="5753" to="5754"/>
+  <span id="s_1005" from="5755" to="5758"/>
+  <span id="s_1006" from="5759" to="5761"/>
+  <span id="s_1007" from="5762" to="5771"/>
+  <span id="s_1008" from="5771" to="5772"/>
+  <span id="s_1009" from="5773" to="5777"/>
+  <span id="s_1010" from="5778" to="5782"/>
+  <span id="s_1011" from="5783" to="5791"/>
+  <span id="s_1012" from="5792" to="5794"/>
+  <span id="s_1013" from="5795" to="5801"/>
+  <span id="s_1014" from="5801" to="5802"/>
+  <span id="s_1015" from="5803" to="5806"/>
+  <span id="s_1016" from="5807" to="5811"/>
+  <span id="s_1017" from="5812" to="5816"/>
+  <span id="s_1018" from="5817" to="5819"/>
+  <span id="s_1019" from="5820" to="5825"/>
+  <span id="s_1020" from="5826" to="5831"/>
+  <span id="s_1021" from="5832" to="5835"/>
+  <span id="s_1022" from="5836" to="5846"/>
+  <span id="s_1023" from="5847" to="5856"/>
+  <span id="s_1024" from="5856" to="5857"/>
+  <span id="s_1025" from="5858" to="5864"/>
+  <span id="s_1026" from="5865" to="5868"/>
+  <span id="s_1027" from="5869" to="5874"/>
+  <span id="s_1028" from="5875" to="5881"/>
+  <span id="s_1029" from="5882" to="5888"/>
+  <span id="s_1030" from="5888" to="5889"/>
+  <span id="s_1031" from="5890" to="5901"/>
+  <span id="s_1032" from="5902" to="5910"/>
+  <span id="s_1033" from="5911" to="5917"/>
+  <span id="s_1034" from="5918" to="5920"/>
+  <span id="s_1035" from="5921" to="5924"/>
+  <span id="s_1036" from="5925" to="5930"/>
+  <span id="s_1037" from="5931" to="5936"/>
+  <span id="s_1038" from="5936" to="5937"/>
+  <span id="s_1039" from="5938" to="5940"/>
+  <span id="s_1040" from="5941" to="5944"/>
+  <span id="s_1041" from="5945" to="5953"/>
+  <span id="s_1042" from="5954" to="5960"/>
+  <span id="s_1043" from="5961" to="5970"/>
+  <span id="s_1044" from="5971" to="5980"/>
+  <span id="s_1045" from="5980" to="5981"/>
+  <span id="s_1046" from="5982" to="5986"/>
+  <span id="s_1047" from="5987" to="5992"/>
+  <span id="s_1048" from="5993" to="5996"/>
+  <span id="s_1049" from="5997" to="6002"/>
+  <span id="s_1050" from="6003" to="6009"/>
+  <span id="s_1051" from="6010" to="6013"/>
+  <span id="s_1052" from="6014" to="6022"/>
+  <span id="s_1053" from="6022" to="6023"/>
+  <span id="s_1054" from="6024" to="6026"/>
+  <span id="s_1055" from="6027" to="6030"/>
+  <span id="s_1056" from="6031" to="6038"/>
+  <span id="s_1057" from="6039" to="6042"/>
+  <span id="s_1058" from="6043" to="6051"/>
+  <span id="s_1059" from="6051" to="6052"/>
+  <span id="s_1060" from="6053" to="6056"/>
+  <span id="s_1061" from="6057" to="6070"/>
+  <span id="s_1062" from="6071" to="6080"/>
+  <span id="s_1063" from="6081" to="6087"/>
+  <span id="s_1064" from="6088" to="6091"/>
+  <span id="s_1065" from="6092" to="6100"/>
+  <span id="s_1066" from="6101" to="6104"/>
+  <span id="s_1067" from="6105" to="6111"/>
+  <span id="s_1068" from="6112" to="6118"/>
+  <span id="s_1069" from="6118" to="6119"/>
+  <span id="s_1070" from="6120" to="6123"/>
+  <span id="s_1071" from="6124" to="6127"/>
+  <span id="s_1072" from="6128" to="6136"/>
+  <span id="s_1073" from="6137" to="6140"/>
+  <span id="s_1074" from="6141" to="6145"/>
+  <span id="s_1075" from="6145" to="6146"/>
+  <span id="s_1076" from="6147" to="6150"/>
+  <span id="s_1077" from="6151" to="6154"/>
+  <span id="s_1078" from="6155" to="6161"/>
+  <span id="s_1079" from="6162" to="6170"/>
+  <span id="s_1080" from="6170" to="6171"/>
+  <span id="s_1081" from="6172" to="6175"/>
+  <span id="s_1082" from="6176" to="6180"/>
+  <span id="s_1083" from="6181" to="6190"/>
+  <span id="s_1084" from="6191" to="6193"/>
+  <span id="s_1085" from="6194" to="6200"/>
+  <span id="s_1086" from="6201" to="6206"/>
+  <span id="s_1087" from="6206" to="6207"/>
+  <span id="s_1088" from="6208" to="6210"/>
+  <span id="s_1089" from="6211" to="6219"/>
+  <span id="s_1090" from="6220" to="6224"/>
+  <span id="s_1091" from="6225" to="6229"/>
+  <span id="s_1092" from="6230" to="6234"/>
+  <span id="s_1093" from="6235" to="6240"/>
+  <span id="s_1094" from="6241" to="6247"/>
+  <span id="s_1095" from="6248" to="6250"/>
+  <span id="s_1096" from="6251" to="6254"/>
+  <span id="s_1097" from="6255" to="6260"/>
+  <span id="s_1098" from="6260" to="6261"/>
+  <span id="s_1099" from="6262" to="6265"/>
+  <span id="s_1100" from="6266" to="6268"/>
+  <span id="s_1101" from="6269" to="6276"/>
+  <span id="s_1102" from="6276" to="6277"/>
+  <span id="s_1103" from="6278" to="6281"/>
+  <span id="s_1104" from="6282" to="6290"/>
+  <span id="s_1105" from="6291" to="6293"/>
+  <span id="s_1106" from="6294" to="6297"/>
+  <span id="s_1107" from="6297" to="6298"/>
+  <span id="s_1108" from="6299" to="6302"/>
+  <span id="s_1109" from="6303" to="6305"/>
+  <span id="s_1110" from="6306" to="6310"/>
+  <span id="s_1111" from="6311" to="6314"/>
+  <span id="s_1112" from="6315" to="6319"/>
+  <span id="s_1113" from="6320" to="6326"/>
+  <span id="s_1114" from="6326" to="6327"/>
+  <span id="s_1115" from="6328" to="6332"/>
+  <span id="s_1116" from="6333" to="6339"/>
+  <span id="s_1117" from="6340" to="6343"/>
+  <span id="s_1118" from="6344" to="6347"/>
+  <span id="s_1119" from="6348" to="6362"/>
+  <span id="s_1120" from="6363" to="6366"/>
+  <span id="s_1121" from="6367" to="6370"/>
+  <span id="s_1122" from="6371" to="6378"/>
+  <span id="s_1123" from="6379" to="6382"/>
+  <span id="s_1124" from="6383" to="6394"/>
+  <span id="s_1125" from="6395" to="6406"/>
+  <span id="s_1126" from="6406" to="6407"/>
+  <span id="s_1127" from="6408" to="6411"/>
+  <span id="s_1128" from="6412" to="6415"/>
+  <span id="s_1129" from="6416" to="6422"/>
+  <span id="s_1130" from="6423" to="6427"/>
+  <span id="s_1131" from="6428" to="6430"/>
+  <span id="s_1132" from="6431" to="6437"/>
+  <span id="s_1133" from="6438" to="6444"/>
+  <span id="s_1134" from="6444" to="6445"/>
+  <span id="s_1135" from="6446" to="6448"/>
+  <span id="s_1136" from="6449" to="6455"/>
+  <span id="s_1137" from="6456" to="6459"/>
+  <span id="s_1138" from="6460" to="6471"/>
+  <span id="s_1139" from="6472" to="6481"/>
+  <span id="s_1140" from="6482" to="6485"/>
+  <span id="s_1141" from="6485" to="6486"/>
+  <span id="s_1142" from="6487" to="6490"/>
+  <span id="s_1143" from="6491" to="6494"/>
+  <span id="s_1144" from="6495" to="6501"/>
+  <span id="s_1145" from="6501" to="6502"/>
+  <span id="s_1146" from="6503" to="6508"/>
+  <span id="s_1147" from="6509" to="6516"/>
+  <span id="s_1148" from="6517" to="6521"/>
+  <span id="s_1149" from="6522" to="6525"/>
+  <span id="s_1150" from="6526" to="6538"/>
+  <span id="s_1151" from="6539" to="6542"/>
+  <span id="s_1152" from="6543" to="6552"/>
+  <span id="s_1153" from="6552" to="6553"/>
+  <span id="s_1154" from="6554" to="6560"/>
+  <span id="s_1155" from="6561" to="6564"/>
+  <span id="s_1156" from="6565" to="6570"/>
+  <span id="s_1157" from="6571" to="6576"/>
+  <span id="s_1158" from="6577" to="6580"/>
+  <span id="s_1159" from="6581" to="6584"/>
+  <span id="s_1160" from="6585" to="6599"/>
+  <span id="s_1161" from="6600" to="6609"/>
+  <span id="s_1162" from="6610" to="6618"/>
+  <span id="s_1163" from="6618" to="6619"/>
+  <span id="s_1164" from="6620" to="6628"/>
+  <span id="s_1165" from="6629" to="6634"/>
+  <span id="s_1166" from="6635" to="6638"/>
+  <span id="s_1167" from="6639" to="6654"/>
+  <span id="s_1168" from="6655" to="6660"/>
+  <span id="s_1169" from="6661" to="6664"/>
+  <span id="s_1170" from="6664" to="6665"/>
+  <span id="s_1171" from="6666" to="6669"/>
+  <span id="s_1172" from="6670" to="6673"/>
+  <span id="s_1173" from="6674" to="6686"/>
+  <span id="s_1174" from="6686" to="6687"/>
+  <span id="s_1175" from="6688" to="6689"/>
+  <span id="s_1176" from="6690" to="6700"/>
+  <span id="s_1177" from="6701" to="6707"/>
+  <span id="s_1178" from="6708" to="6715"/>
+  <span id="s_1179" from="6716" to="6724"/>
+  <span id="s_1180" from="6725" to="6727"/>
+  <span id="s_1181" from="6728" to="6730"/>
+  <span id="s_1182" from="6730" to="6731"/>
+  <span id="s_1183" from="6732" to="6737"/>
+  <span id="s_1184" from="6738" to="6743"/>
+  <span id="s_1185" from="6744" to="6747"/>
+  <span id="s_1186" from="6748" to="6751"/>
+  <span id="s_1187" from="6752" to="6759"/>
+  <span id="s_1188" from="6760" to="6766"/>
+  <span id="s_1189" from="6767" to="6769"/>
+  <span id="s_1190" from="6769" to="6770"/>
+  <span id="s_1191" from="6771" to="6774"/>
+  <span id="s_1192" from="6775" to="6778"/>
+  <span id="s_1193" from="6779" to="6783"/>
+  <span id="s_1194" from="6784" to="6793"/>
+  <span id="s_1195" from="6794" to="6800"/>
+  <span id="s_1196" from="6801" to="6807"/>
+  <span id="s_1197" from="6808" to="6812"/>
+  <span id="s_1198" from="6812" to="6813"/>
+  <span id="s_1199" from="6814" to="6817"/>
+  <span id="s_1200" from="6818" to="6820"/>
+  <span id="s_1201" from="6821" to="6825"/>
+  <span id="s_1202" from="6826" to="6831"/>
+  <span id="s_1203" from="6832" to="6836"/>
+  <span id="s_1204" from="6836" to="6837"/>
+  <span id="s_1205" from="6838" to="6841"/>
+  <span id="s_1206" from="6842" to="6845"/>
+  <span id="s_1207" from="6846" to="6863"/>
+  <span id="s_1208" from="6864" to="6876"/>
+  <span id="s_1209" from="6877" to="6882"/>
+  <span id="s_1210" from="6882" to="6883"/>
+  <span id="s_1211" from="6884" to="6887"/>
+  <span id="s_1212" from="6888" to="6890"/>
+  <span id="s_1213" from="6891" to="6897"/>
+  <span id="s_1214" from="6898" to="6906"/>
+  <span id="s_1215" from="6907" to="6910"/>
+  <span id="s_1216" from="6910" to="6911"/>
+  <span id="s_1217" from="6912" to="6915"/>
+  <span id="s_1218" from="6916" to="6918"/>
+  <span id="s_1219" from="6919" to="6923"/>
+  <span id="s_1220" from="6924" to="6930"/>
+  <span id="s_1221" from="6931" to="6936"/>
+  <span id="s_1222" from="6937" to="6946"/>
+  <span id="s_1223" from="6947" to="6951"/>
+  <span id="s_1224" from="6951" to="6952"/>
+  <span id="s_1225" from="6953" to="6956"/>
+  <span id="s_1226" from="6957" to="6962"/>
+  <span id="s_1227" from="6963" to="6968"/>
+  <span id="s_1228" from="6969" to="6972"/>
+  <span id="s_1229" from="6973" to="6980"/>
+  <span id="s_1230" from="6981" to="6987"/>
+  <span id="s_1231" from="6988" to="6995"/>
+  <span id="s_1232" from="6995" to="6996"/>
+  <span id="s_1233" from="6997" to="7000"/>
+  <span id="s_1234" from="7001" to="7007"/>
+  <span id="s_1235" from="7008" to="7011"/>
+  <span id="s_1236" from="7012" to="7019"/>
+  <span id="s_1237" from="7020" to="7025"/>
+  <span id="s_1238" from="7026" to="7036"/>
+  <span id="s_1239" from="7036" to="7037"/>
+  <span id="s_1240" from="7038" to="7043"/>
+  <span id="s_1241" from="7044" to="7052"/>
+  <span id="s_1242" from="7053" to="7056"/>
+  <span id="s_1243" from="7057" to="7065"/>
+  <span id="s_1244" from="7066" to="7077"/>
+  <span id="s_1245" from="7078" to="7083"/>
+  <span id="s_1246" from="7084" to="7088"/>
+  <span id="s_1247" from="7089" to="7094"/>
+  <span id="s_1248" from="7095" to="7101"/>
+  <span id="s_1249" from="7102" to="7118"/>
+  <span id="s_1250" from="7119" to="7126"/>
+  <span id="s_1251" from="7127" to="7133"/>
+  <span id="s_1252" from="7134" to="7141"/>
+  <span id="s_1253" from="7141" to="7142"/>
+  <span id="s_1254" from="7143" to="7145"/>
+  <span id="s_1255" from="7146" to="7153"/>
+  <span id="s_1256" from="7153" to="7154"/>
+  <span id="s_1257" from="7155" to="7159"/>
+  <span id="s_1258" from="7160" to="7163"/>
+  <span id="s_1259" from="7163" to="7164"/>
+  <span id="s_1260" from="7165" to="7171"/>
+  <span id="s_1261" from="7172" to="7176"/>
+  <span id="s_1262" from="7177" to="7184"/>
+  <span id="s_1263" from="7185" to="7196"/>
+  <span id="s_1264" from="7197" to="7204"/>
+  <span id="s_1265" from="7205" to="7217"/>
+  <span id="s_1266" from="7218" to="7228"/>
+  <span id="s_1267" from="7228" to="7229"/>
+  <span id="s_1268" from="7230" to="7233"/>
+  <span id="s_1269" from="7234" to="7237"/>
+  <span id="s_1270" from="7238" to="7242"/>
+  <span id="s_1271" from="7243" to="7248"/>
+  <span id="s_1272" from="7249" to="7254"/>
+  <span id="s_1273" from="7255" to="7264"/>
+  <span id="s_1274" from="7265" to="7269"/>
+  <span id="s_1275" from="7270" to="7279"/>
+  <span id="s_1276" from="7280" to="7283"/>
+  <span id="s_1277" from="7284" to="7294"/>
+  <span id="s_1278" from="7295" to="7310"/>
+  <span id="s_1279" from="7311" to="7316"/>
+  <span id="s_1280" from="7316" to="7317"/>
+  <span id="s_1281" from="7318" to="7332"/>
+  <span id="s_1282" from="7333" to="7336"/>
+  <span id="s_1283" from="7337" to="7340"/>
+  <span id="s_1284" from="7341" to="7344"/>
+  <span id="s_1285" from="7345" to="7356"/>
+  <span id="s_1286" from="7356" to="7357"/>
+  <span id="s_1287" from="7358" to="7361"/>
+  <span id="s_1288" from="7362" to="7371"/>
+  <span id="s_1289" from="7372" to="7380"/>
+  <span id="s_1290" from="7381" to="7384"/>
+  <span id="s_1291" from="7385" to="7392"/>
+  <span id="s_1292" from="7392" to="7393"/>
+  <span id="s_1293" from="7394" to="7397"/>
+  <span id="s_1294" from="7398" to="7405"/>
+  <span id="s_1295" from="7406" to="7416"/>
+  <span id="s_1296" from="7417" to="7420"/>
+  <span id="s_1297" from="7421" to="7424"/>
+  <span id="s_1298" from="7425" to="7429"/>
+  <span id="s_1299" from="7430" to="7435"/>
+  <span id="s_1300" from="7435" to="7436"/>
+  <span id="s_1301" from="7437" to="7440"/>
+  <span id="s_1302" from="7441" to="7453"/>
+  <span id="s_1303" from="7454" to="7461"/>
+  <span id="s_1304" from="7462" to="7471"/>
+  <span id="s_1305" from="7471" to="7472"/>
+  <span id="s_1306" from="7473" to="7485"/>
+  <span id="s_1307" from="7486" to="7495"/>
+  <span id="s_1308" from="7495" to="7496"/>
+  <span id="s_1309" from="7497" to="7500"/>
+  <span id="s_1310" from="7501" to="7508"/>
+  <span id="s_1311" from="7509" to="7520"/>
+  <span id="s_1312" from="7521" to="7530"/>
+  <span id="s_1313" from="7530" to="7531"/>
+  <span id="s_1314" from="7532" to="7535"/>
+  <span id="s_1315" from="7536" to="7547"/>
+  <span id="s_1316" from="7547" to="7548"/>
+  <span id="s_1317" from="7549" to="7552"/>
+  <span id="s_1318" from="7553" to="7565"/>
+  <span id="s_1319" from="7566" to="7568"/>
+  <span id="s_1320" from="7569" to="7575"/>
+  <span id="s_1321" from="7576" to="7581"/>
+  <span id="s_1322" from="7582" to="7585"/>
+  <span id="s_1323" from="7586" to="7590"/>
+  <span id="s_1324" from="7591" to="7603"/>
+  <span id="s_1325" from="7604" to="7617"/>
+  <span id="s_1326" from="7618" to="7621"/>
+  <span id="s_1327" from="7622" to="7633"/>
+  <span id="s_1328" from="7633" to="7634"/>
+  <span id="s_1329" from="7635" to="7638"/>
+  <span id="s_1330" from="7639" to="7645"/>
+  <span id="s_1331" from="7646" to="7654"/>
+  <span id="s_1332" from="7655" to="7660"/>
+  <span id="s_1333" from="7660" to="7661"/>
+  <span id="s_1334" from="7662" to="7665"/>
+  <span id="s_1335" from="7666" to="7669"/>
+  <span id="s_1336" from="7670" to="7677"/>
+  <span id="s_1337" from="7677" to="7678"/>
+  <span id="s_1338" from="7679" to="7681"/>
+  <span id="s_1339" from="7682" to="7686"/>
+  <span id="s_1340" from="7687" to="7696"/>
+  <span id="s_1341" from="7696" to="7697"/>
+  <span id="s_1342" from="7698" to="7701"/>
+  <span id="s_1343" from="7702" to="7709"/>
+  <span id="s_1344" from="7709" to="7710"/>
+  <span id="s_1345" from="7711" to="7714"/>
+  <span id="s_1346" from="7715" to="7717"/>
+  <span id="s_1347" from="7718" to="7721"/>
+  <span id="s_1348" from="7722" to="7727"/>
+  <span id="s_1349" from="7728" to="7736"/>
+  <span id="s_1350" from="7737" to="7745"/>
+  <span id="s_1351" from="7746" to="7748"/>
+  <span id="s_1352" from="7749" to="7752"/>
+  <span id="s_1353" from="7753" to="7757"/>
+  <span id="s_1354" from="7758" to="7765"/>
+  <span id="s_1355" from="7766" to="7771"/>
+  <span id="s_1356" from="7771" to="7772"/>
+  <span id="s_1357" from="7773" to="7776"/>
+  <span id="s_1358" from="7777" to="7781"/>
+  <span id="s_1359" from="7782" to="7788"/>
+  <span id="s_1360" from="7789" to="7794"/>
+  <span id="s_1361" from="7794" to="7795"/>
+  <span id="s_1362" from="7796" to="7800"/>
+  <span id="s_1363" from="7801" to="7803"/>
+  <span id="s_1364" from="7804" to="7809"/>
+  <span id="s_1365" from="7810" to="7812"/>
+  <span id="s_1366" from="7813" to="7818"/>
+  <span id="s_1367" from="7819" to="7825"/>
+  <span id="s_1368" from="7826" to="7831"/>
+  <span id="s_1369" from="7832" to="7838"/>
+  <span id="s_1370" from="7838" to="7839"/>
+  <span id="s_1371" from="7840" to="7843"/>
+  <span id="s_1372" from="7844" to="7855"/>
+  <span id="s_1373" from="7856" to="7864"/>
+  <span id="s_1374" from="7865" to="7868"/>
+  <span id="s_1375" from="7869" to="7873"/>
+  <span id="s_1376" from="7874" to="7888"/>
+  <span id="s_1377" from="7889" to="7899"/>
+  <span id="s_1378" from="7900" to="7910"/>
+  <span id="s_1379" from="7910" to="7911"/>
+  <span id="s_1380" from="7912" to="7915"/>
+  <span id="s_1381" from="7915" to="7916"/>
+  <span id="s_1382" from="7917" to="7925"/>
+  <span id="s_1383" from="7925" to="7926"/>
+  <span id="s_1384" from="7927" to="7934"/>
+  <span id="s_1385" from="7935" to="7944"/>
+  <span id="s_1386" from="7945" to="7953"/>
+  <span id="s_1387" from="7954" to="7957"/>
+  <span id="s_1388" from="7957" to="7958"/>
+  <span id="s_1389" from="7959" to="7962"/>
+  <span id="s_1390" from="7963" to="7974"/>
+  <span id="s_1391" from="7975" to="7980"/>
+  <span id="s_1392" from="7981" to="7984"/>
+  <span id="s_1393" from="7985" to="7988"/>
+  <span id="s_1394" from="7989" to="7997"/>
+  <span id="s_1395" from="7998" to="8000"/>
+  <span id="s_1396" from="8001" to="8006"/>
+  <span id="s_1397" from="8007" to="8011"/>
+  <span id="s_1398" from="8012" to="8020"/>
+  <span id="s_1399" from="8021" to="8030"/>
+  <span id="s_1400" from="8031" to="8034"/>
+  <span id="s_1401" from="8035" to="8038"/>
+  <span id="s_1402" from="8039" to="8042"/>
+  <span id="s_1403" from="8043" to="8052"/>
+  <span id="s_1404" from="8052" to="8053"/>
+  <span id="s_1405" from="8054" to="8057"/>
+  <span id="s_1406" from="8058" to="8061"/>
+  <span id="s_1407" from="8062" to="8076"/>
+  <span id="s_1408" from="8076" to="8077"/>
+  <span id="s_1409" from="8078" to="8085"/>
+  <span id="s_1410" from="8085" to="8086"/>
+  <span id="s_1411" from="8087" to="8091"/>
+  <span id="s_1412" from="8092" to="8095"/>
+  <span id="s_1413" from="8096" to="8105"/>
+  <span id="s_1414" from="8106" to="8109"/>
+  <span id="s_1415" from="8110" to="8116"/>
+  <span id="s_1416" from="8117" to="8120"/>
+  <span id="s_1417" from="8121" to="8124"/>
+  <span id="s_1418" from="8124" to="8125"/>
+  <span id="s_1419" from="8126" to="8131"/>
+  <span id="s_1420" from="8132" to="8137"/>
+  <span id="s_1421" from="8138" to="8140"/>
+  <span id="s_1422" from="8141" to="8143"/>
+  <span id="s_1423" from="8144" to="8147"/>
+  <span id="s_1424" from="8148" to="8151"/>
+  <span id="s_1425" from="8152" to="8156"/>
+  <span id="s_1426" from="8157" to="8163"/>
+  <span id="s_1427" from="8164" to="8172"/>
+  <span id="s_1428" from="8172" to="8173"/>
+  <span id="s_1429" from="8174" to="8184"/>
+  <span id="s_1430" from="8184" to="8185"/>
+  <span id="s_1431" from="8186" to="8190"/>
+  <span id="s_1432" from="8191" to="8193"/>
+  <span id="s_1433" from="8194" to="8202"/>
+  <span id="s_1434" from="8202" to="8203"/>
+  <span id="s_1435" from="8204" to="8212"/>
+  <span id="s_1436" from="8212" to="8213"/>
+  <span id="s_1437" from="8214" to="8218"/>
+  <span id="s_1438" from="8218" to="8219"/>
+  <span id="s_1439" from="8220" to="8226"/>
+  <span id="s_1440" from="8226" to="8227"/>
+  <span id="s_1441" from="8228" to="8236"/>
+  <span id="s_1442" from="8237" to="8240"/>
+  <span id="s_1443" from="8241" to="8247"/>
+  <span id="s_1444" from="8247" to="8248"/>
+  <span id="s_1445" from="8249" to="8255"/>
+  <span id="s_1446" from="8256" to="8262"/>
+  <span id="s_1447" from="8263" to="8276"/>
+  <span id="s_1448" from="8277" to="8280"/>
+  <span id="s_1449" from="8281" to="8285"/>
+  <span id="s_1450" from="8286" to="8288"/>
+  <span id="s_1451" from="8289" to="8297"/>
+  <span id="s_1452" from="8297" to="8298"/>
+  <span id="s_1453" from="8299" to="8302"/>
+  <span id="s_1454" from="8303" to="8315"/>
+  <span id="s_1455" from="8316" to="8323"/>
+  <span id="s_1456" from="8324" to="8331"/>
+  <span id="s_1457" from="8332" to="8336"/>
+  <span id="s_1458" from="8337" to="8340"/>
+  <span id="s_1459" from="8341" to="8345"/>
+  <span id="s_1460" from="8346" to="8348"/>
+  <span id="s_1461" from="8349" to="8352"/>
+  <span id="s_1462" from="8353" to="8357"/>
+  <span id="s_1463" from="8357" to="8358"/>
+  <span id="s_1464" from="8359" to="8370"/>
+  <span id="s_1465" from="8371" to="8375"/>
+  <span id="s_1466" from="8376" to="8380"/>
+  <span id="s_1467" from="8381" to="8386"/>
+  <span id="s_1468" from="8387" to="8393"/>
+  <span id="s_1469" from="8393" to="8394"/>
+  <span id="s_1470" from="8395" to="8399"/>
+  <span id="s_1471" from="8400" to="8403"/>
+  <span id="s_1472" from="8404" to="8409"/>
+  <span id="s_1473" from="8410" to="8414"/>
+  <span id="s_1474" from="8415" to="8419"/>
+  <span id="s_1475" from="8420" to="8424"/>
+  <span id="s_1476" from="8425" to="8430"/>
+  <span id="s_1477" from="8431" to="8437"/>
+  <span id="s_1478" from="8437" to="8438"/>
+  <span id="s_1479" from="8439" to="8441"/>
+  <span id="s_1480" from="8442" to="8448"/>
+  <span id="s_1481" from="8449" to="8452"/>
+  <span id="s_1482" from="8453" to="8460"/>
+  <span id="s_1483" from="8461" to="8465"/>
+  <span id="s_1484" from="8466" to="8471"/>
+  <span id="s_1485" from="8472" to="8476"/>
+  <span id="s_1486" from="8477" to="8481"/>
+  <span id="s_1487" from="8482" to="8489"/>
+  <span id="s_1488" from="8489" to="8490"/>
+  <span id="s_1489" from="8491" to="8493"/>
+  <span id="s_1490" from="8494" to="8497"/>
+  <span id="s_1491" from="8498" to="8501"/>
+  <span id="s_1492" from="8502" to="8511"/>
+  <span id="s_1493" from="8512" to="8517"/>
+  <span id="s_1494" from="8518" to="8523"/>
+  <span id="s_1495" from="8524" to="8529"/>
+  <span id="s_1496" from="8530" to="8540"/>
+  <span id="s_1497" from="8540" to="8541"/>
+  <span id="s_1498" from="8542" to="8544"/>
+  <span id="s_1499" from="8545" to="8555"/>
+  <span id="s_1500" from="8556" to="8559"/>
+  <span id="s_1501" from="8560" to="8565"/>
+  <span id="s_1502" from="8566" to="8569"/>
+  <span id="s_1503" from="8570" to="8580"/>
+  <span id="s_1504" from="8581" to="8584"/>
+  <span id="s_1505" from="8585" to="8592"/>
+  <span id="s_1506" from="8592" to="8593"/>
+  <span id="s_1507" from="8594" to="8597"/>
+  <span id="s_1508" from="8598" to="8604"/>
+  <span id="s_1509" from="8605" to="8608"/>
+  <span id="s_1510" from="8609" to="8612"/>
+  <span id="s_1511" from="8613" to="8621"/>
+  <span id="s_1512" from="8622" to="8630"/>
+  <span id="s_1513" from="8631" to="8638"/>
+  <span id="s_1514" from="8638" to="8639"/>
+  <span id="s_1515" from="8640" to="8643"/>
+  <span id="s_1516" from="8644" to="8646"/>
+  <span id="s_1517" from="8647" to="8658"/>
+  <span id="s_1518" from="8659" to="8664"/>
+  <span id="s_1519" from="8665" to="8668"/>
+  <span id="s_1520" from="8669" to="8680"/>
+  <span id="s_1521" from="8681" to="8685"/>
+  <span id="s_1522" from="8685" to="8686"/>
+  <span id="s_1523" from="8687" to="8693"/>
+  <span id="s_1524" from="8694" to="8697"/>
+  <span id="s_1525" from="8698" to="8700"/>
+  <span id="s_1526" from="8701" to="8706"/>
+  <span id="s_1527" from="8707" to="8710"/>
+  <span id="s_1528" from="8711" to="8714"/>
+  <span id="s_1529" from="8715" to="8724"/>
+  <span id="s_1530" from="8725" to="8728"/>
+  <span id="s_1531" from="8729" to="8738"/>
+  <span id="s_1532" from="8739" to="8745"/>
+  <span id="s_1533" from="8745" to="8746"/>
+  <span id="s_1534" from="8747" to="8751"/>
+  <span id="s_1535" from="8752" to="8757"/>
+  <span id="s_1536" from="8758" to="8761"/>
+  <span id="s_1537" from="8762" to="8770"/>
+  <span id="s_1538" from="8771" to="8775"/>
+  <span id="s_1539" from="8776" to="8781"/>
+  <span id="s_1540" from="8782" to="8788"/>
+  <span id="s_1541" from="8789" to="8791"/>
+  <span id="s_1542" from="8792" to="8799"/>
+  <span id="s_1543" from="8800" to="8806"/>
+  <span id="s_1544" from="8806" to="8807"/>
+  <span id="s_1545" from="8808" to="8814"/>
+  <span id="s_1546" from="8815" to="8818"/>
+  <span id="s_1547" from="8819" to="8824"/>
+  <span id="s_1548" from="8825" to="8828"/>
+  <span id="s_1549" from="8829" to="8841"/>
+  <span id="s_1550" from="8841" to="8842"/>
+  <span id="s_1551" from="8843" to="8852"/>
+  <span id="s_1552" from="8853" to="8857"/>
+  <span id="s_1553" from="8858" to="8868"/>
+  <span id="s_1554" from="8868" to="8869"/>
+  <span id="s_1555" from="8870" to="8887"/>
+  <span id="s_1556" from="8887" to="8888"/>
+ </spanList>
+</layer>
diff --git a/t/annotation/corpus/doc/header.xml b/t/annotation/corpus/doc/header.xml
new file mode 100644
index 0000000..7a73824
--- /dev/null
+++ b/t/annotation/corpus/doc/header.xml
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="header.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+<!DOCTYPE idsCorpus PUBLIC "-//IDS//DTD IDS-XCES 1.0//EN" "http://corpora.ids-mannheim.de/idsxces1/DTD/ids.xcesdoc.dtd">
+<idsHeader type="document" pattern="text" status="new" version="1.1" TEIform="teiHeader">
+  <fileDesc>
+    <titleStmt>
+      <dokumentSigle>Corpus/Text</dokumentSigle>
+      <d.title>Beispiel Dokument</d.title>
+    </titleStmt>
+    <publicationStmt>
+      <distributor/>
+      <pubAddress/>
+      <availability region="world">QAO-NC</availability>
+      <pubDate/>
+    </publicationStmt>
+    <sourceDesc>
+      <biblStruct>
+        <monogr>
+          <h.title type="main"/>
+          <edition>
+            <further/>
+            <kind/>
+            <appearance/>
+          </edition>
+          <imprint/>
+        </monogr>
+      </biblStruct>
+    </sourceDesc>
+  </fileDesc>
+  <profileDesc>
+    <creation>
+      <creatDate>1827-1842</creatDate>
+      <creatRef>(Erstveröffentlichung: Stuttgart ; Tübingen, 1827-1842)</creatRef>
+      <creatRefShort>(Erstv. 1827-1842)</creatRefShort>
+    </creation>
+    <textDesc>
+      <textType>Aphorismus</textType>
+      <textTypeRef>Aphorismen</textTypeRef>
+    </textDesc>
+  </profileDesc>
+</idsHeader>
diff --git a/t/annotation/corpus/header.xml b/t/annotation/corpus/header.xml
new file mode 100644
index 0000000..25a6c64
--- /dev/null
+++ b/t/annotation/corpus/header.xml
@@ -0,0 +1,297 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="header.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+<!DOCTYPE idsCorpus PUBLIC "-//IDS//DTD IDS-XCES 1.0//EN" "http://corpora.ids-mannheim.de/idsxces1/DTD/ids.xcesdoc.dtd">
+<idsHeader type="corpus" pattern="allesaußerZtg/Zschr" status="new" version="1.1" TEIform="teiHeader">
+  <fileDesc>
+    <titleStmt>
+      <korpusSigle>Corpus</korpusSigle>
+      <c.title>Beispiel-Corpus</c.title>
+    </titleStmt>
+    <publicationStmt>
+      <distributor>		Institut für Deutsche Sprache		</distributor>
+      <pubAddress>		Postfach 10 16 21, D-68016 Mannheim	</pubAddress>
+      <telephone>		+49 (0)621 1581 0			</telephone>
+      <availability region="world">QAO-NC</availability>
+      <pubDate/>
+    </publicationStmt>
+    <sourceDesc>
+      <biblFull>
+        <titleStmt>
+          <x.title/>
+        </titleStmt>
+        <editionStmt/>
+        <publicationStmt>
+          <distributor/>
+          <pubAddress/>
+          <availability region="world">QAO-NC</availability>
+          <pubDate/>
+        </publicationStmt>
+      </biblFull>
+      <biblStruct>
+        <monogr>
+          <h.title type="main">Werke von Beispiel</h.title>
+          <h.title type="sub"/>
+          <h.author>Mustermann, Max</h.author>
+          <editor>Mustermann, Monika</editor>
+          <edition>
+            <further/>
+            <kind>Hamburger Ausgabe in 14 Bänden</kind>
+            <appearance/>
+          </edition>
+          <imprint>
+            <publisher>Verlag C. H. Beck</publisher>
+            <pubDate type="year">1982</pubDate>
+            <pubDate type="month"/>
+            <pubDate type="day"/>
+	    <pubPlace key="DE">München</pubPlace>
+          </imprint>
+        </monogr>
+      </biblStruct>
+      <reference type="super" assemblage="non-automatic">Corpus Beispiel</reference>
+    </sourceDesc>
+  </fileDesc>
+  <encodingDesc>
+    <projectDesc/>
+    <samplingDecl>		In der BOT-Vorlage Abrückung aller Satzzeichen vom vorhergehenden oder nachfolgenden Wort,
+    was bei der anschließenden Konvertierung so weit wie möglich beseitigt wurde.
+    Kleinschreibung von Wörtern am Satzanfang, wenn sie auch im Satzinnern kleingeschrieben werden.
+    Expansion bzw. Alternativschreibung bei Wörtern mit Klammerung im Wortinnern (sog. Sparschreibung).
+    Alternativschreibung bei Wörtern mit klammernden Apostrophen/Anführungszeichen im Wortinnern.
+    Erweitertes Markup ohne Verwendung der gedruckten Vorlage:
+    - Umfangreiche Korrekturen am Markup der BOT-Vorlage
+    - Markierung von Listen, Tabellen, Quellen- und Verfasserangaben, Gesprächssequenzen
+    - Markierung von Textkomponenten, die den Textfluss unterbrechen, wie Fußnoten, Anmerkungen, Randtexte, Captions, Bildunterschriften
+    - Expansion der Ergänzungen durch Unterstrich bei Wortgruppen mit Ergänzungsbindestrich
+    - Markierung von Kardinal- und Ordinalzahlen in römischen Ziffern</samplingDecl>
+    <editorialDecl>
+      <transduction>		TraDuCES - Korpus-Transformationscompiler, Version 3.6.3,
+      Eric Seubert, IDS Mannheim, 5. Mai 2010
+      Optionen bei der Konvertierung:
+      - Dubletten-Modus:
+      Entfernung aller als Dubletten klassifizierten Texte.
+      - Indexierungsmodus für COSMAS II:
+      Erzeugung von übergeordneten Dokument-Referenzen, falls die
+      jeweiligen Dokumente nur einen einzigen selbstständigen Text enthalten.
+      Entfernung aller Deklarationen für Dubletten.
+      Entfernung von Texten mit Sperrvermerken.
+      Entfernung von Texten mit minimalem Inhalt.</transduction>
+      <transduction>$Id: fixPreXCES.l 1194 2008-04-30 14:16:53Z kupietz $</transduction>
+      <transduction>$Id: idsces2idsxces 1843 2011-09-13 14:52:21Z kupietz $</transduction>
+      <pagination type="yes"/>
+    </editorialDecl>
+    <tagsDecl>
+      <tagUsage gi="pb"/>
+      <tagUsage gi="date"/>
+      <tagUsage gi="measure"/>
+      <tagUsage gi="num"/>
+      <tagUsage gi="orig"/>
+      <tagUsage gi="time"/>
+    </tagsDecl>
+    <classDecl>
+      <taxonomy id="topic">
+        <h.bibl>Thementaxonomie (siehe http://www.ids-mannheim.de/kl/projekte/methoden/te.html)</h.bibl>
+        <category id="topic.fiktion">
+          <catDesc>Fiktion</catDesc>
+          <category id="topic.fiktion.vermischtes">
+            <catDesc>Fiktion:Vermischtes</catDesc>
+          </category>
+        </category>
+        <category id="topic.freizeit-unterhaltung">
+          <catDesc>Freizeit_Unterhaltung</catDesc>
+          <category id="topic.freizeit-unterhaltung.reisen">
+            <catDesc>Freizeit_Unterhaltung:Reisen</catDesc>
+          </category>
+          <category id="topic.freizeit-unterhaltung.rundfunk">
+            <catDesc>Freizeit_Unterhaltung:Rundfunk</catDesc>
+          </category>
+          <category id="topic.freizeit-unterhaltung.vereine-veranstaltungen">
+            <catDesc>Freizeit_Unterhaltung:Vereine_Veranstaltungen</catDesc>
+          </category>
+        </category>
+        <category id="topic.gesundheit-ernaehrung">
+          <catDesc>Gesundheit_Ernaehrung</catDesc>
+          <category id="topic.gesundheit-ernaehrung.ernaehrung">
+            <catDesc>Gesundheit_Ernaehrung:Ernaehrung</catDesc>
+          </category>
+          <category id="topic.gesundheit-ernaehrung.gesundheit">
+            <catDesc>Gesundheit_Ernaehrung:Gesundheit</catDesc>
+          </category>
+        </category>
+        <category id="topic.kultur">
+          <catDesc>Kultur</catDesc>
+          <category id="topic.kultur.bildende-kunst">
+            <catDesc>Kultur:Bildende Kunst</catDesc>
+          </category>
+          <category id="topic.kultur.darstellende-kunst">
+            <catDesc>Kultur:Darstellende Kunst</catDesc>
+          </category>
+          <category id="topic.kultur.film">
+            <catDesc>Kultur:Film</catDesc>
+          </category>
+          <category id="topic.kultur.literatur">
+            <catDesc>Kultur:Literatur</catDesc>
+          </category>
+          <category id="topic.kultur.mode">
+            <catDesc>Kultur:Mode</catDesc>
+          </category>
+          <category id="topic.kultur.musik">
+            <catDesc>Kultur:Musik</catDesc>
+          </category>
+        </category>
+        <category id="topic.natur-umwelt">
+          <catDesc>Natur_Umwelt</catDesc>
+          <category id="topic.natur-umwelt.garten">
+            <catDesc>Natur_Umwelt:Garten</catDesc>
+          </category>
+          <category id="topic.natur-umwelt.tiere">
+            <catDesc>Natur_Umwelt:Tiere</catDesc>
+          </category>
+          <category id="topic.natur-umwelt.wetter-klima">
+            <catDesc>Natur_Umwelt:Wetter_Klima</catDesc>
+          </category>
+        </category>
+        <category id="topic.politik">
+          <catDesc>Politik</catDesc>
+          <category id="topic.politik.ausland">
+            <catDesc>Politik:Ausland</catDesc>
+          </category>
+          <category id="topic.politik.inland">
+            <catDesc>Politik:Inland</catDesc>
+          </category>
+          <category id="topic.politik.kommunalpolitik">
+            <catDesc>Politik:Kommunalpolitik</catDesc>
+          </category>
+        </category>
+        <category id="topic.rest">
+          <catDesc>Rest</catDesc>
+          <category id="topic.rest.boersenkurse">
+            <catDesc>Rest:boersenkurse</catDesc>
+          </category>
+          <category id="topic.rest.geburt-tod-heirat">
+            <catDesc>Rest:geburt_tod_heirat</catDesc>
+          </category>
+          <category id="topic.rest.impressum">
+            <catDesc>Rest:impressum</catDesc>
+          </category>
+          <category id="topic.rest.inhaltsverzeichnisse">
+            <catDesc>Rest:inhaltsverzeichnisse</catDesc>
+          </category>
+          <category id="topic.rest.ligatabellen">
+            <catDesc>Rest:ligatabellen</catDesc>
+          </category>
+          <category id="topic.rest.tabellen">
+            <catDesc>Rest:tabellen</catDesc>
+          </category>
+          <category id="topic.rest.veranstaltungshinweise">
+            <catDesc>Rest:veranstaltungshinweise</catDesc>
+          </category>
+        </category>
+        <category id="topic.sport">
+          <catDesc>Sport</catDesc>
+          <category id="topic.sport.ballsport">
+            <catDesc>Sport:Ballsport</catDesc>
+          </category>
+          <category id="topic.sport.fussball">
+            <catDesc>Sport:Fussball</catDesc>
+          </category>
+          <category id="topic.sport.motorsport">
+            <catDesc>Sport:Motorsport</catDesc>
+          </category>
+          <category id="topic.sport.radsport">
+            <catDesc>Sport:Radsport</catDesc>
+          </category>
+          <category id="topic.sport.tennis">
+            <catDesc>Sport:Tennis</catDesc>
+          </category>
+          <category id="topic.sport.vermischtes">
+            <catDesc>Sport:Vermischtes</catDesc>
+          </category>
+          <category id="topic.sport.wintersport">
+            <catDesc>Sport:Wintersport</catDesc>
+          </category>
+        </category>
+        <category id="topic.staat-gesellschaft">
+          <catDesc>Staat_Gesellschaft</catDesc>
+          <category id="topic.staat-gesellschaft.arbeit-und-beruf">
+            <catDesc>Staat_Gesellschaft:Arbeit_und_Beruf</catDesc>
+          </category>
+          <category id="topic.staat-gesellschaft.bildung">
+            <catDesc>Staat_Gesellschaft:Bildung</catDesc>
+          </category>
+          <category id="topic.staat-gesellschaft.biographien-interviews">
+            <catDesc>Staat_Gesellschaft:Biographien_Interviews</catDesc>
+          </category>
+          <category id="topic.staat-gesellschaft.drittes-reich-rechtsextremismus">
+            <catDesc>Staat_Gesellschaft:Drittes_Reich_Rechtsextremismus</catDesc>
+          </category>
+          <category id="topic.staat-gesellschaft.familie-geschlecht">
+            <catDesc>Staat_Gesellschaft:Familie_Geschlecht</catDesc>
+          </category>
+          <category id="topic.staat-gesellschaft.kirche">
+            <catDesc>Staat_Gesellschaft:Kirche</catDesc>
+          </category>
+          <category id="topic.staat-gesellschaft.recht">
+            <catDesc>Staat_Gesellschaft:Recht</catDesc>
+          </category>
+          <category id="topic.staat-gesellschaft.tod">
+            <catDesc>Staat_Gesellschaft:Tod</catDesc>
+          </category>
+          <category id="topic.staat-gesellschaft.verbrechen">
+            <catDesc>Staat_Gesellschaft:Verbrechen</catDesc>
+          </category>
+        </category>
+        <category id="topic.technik-industrie">
+          <catDesc>Technik_Industrie</catDesc>
+          <category id="topic.technik-industrie.edv-elektronik">
+            <catDesc>Technik_Industrie:EDV_Elektronik</catDesc>
+          </category>
+          <category id="topic.technik-industrie.kfz">
+            <catDesc>Technik_Industrie:Kfz</catDesc>
+          </category>
+          <category id="topic.technik-industrie.transport-verkehr">
+            <catDesc>Technik_Industrie:Transport_Verkehr</catDesc>
+          </category>
+          <category id="topic.technik-industrie.umweltschutz">
+            <catDesc>Technik_Industrie:Umweltschutz</catDesc>
+          </category>
+          <category id="topic.technik-industrie.unfaelle">
+            <catDesc>Technik_Industrie:Unfaelle</catDesc>
+          </category>
+        </category>
+        <category id="topic.wirtschaft-finanzen">
+          <catDesc>Wirtschaft_Finanzen</catDesc>
+          <category id="topic.wirtschaft-finanzen.banken">
+            <catDesc>Wirtschaft_Finanzen:Banken</catDesc>
+          </category>
+          <category id="topic.wirtschaft-finanzen.bilanzen">
+            <catDesc>Wirtschaft_Finanzen:Bilanzen</catDesc>
+          </category>
+          <category id="topic.wirtschaft-finanzen.oeffentliche-finanzen">
+            <catDesc>Wirtschaft_Finanzen:Oeffentliche_Finanzen</catDesc>
+          </category>
+          <category id="topic.wirtschaft-finanzen.sozialprodukt">
+            <catDesc>Wirtschaft_Finanzen:Sozialprodukt</catDesc>
+          </category>
+          <category id="topic.wirtschaft-finanzen.waehrung">
+            <catDesc>Wirtschaft_Finanzen:Waehrung</catDesc>
+          </category>
+        </category>
+        <category id="topic.wissenschaft">
+          <catDesc>Wissenschaft</catDesc>
+          <category id="topic.wissenschaft.populaerwissenschaft">
+            <catDesc>Wissenschaft:Populaerwissenschaft</catDesc>
+          </category>
+        </category>
+        <category id="topic.unklassifizierbar">
+          <catDesc>Text ist thematisch nicht klassifizierbar.</catDesc>
+        </category>
+      </taxonomy>
+    </classDecl>
+  </encodingDesc>
+  <profileDesc>
+    <langUsage>
+      <language id="de" usage="100">Deutsch</language>
+    </langUsage>
+    <textDesc/>
+  </profileDesc>
+</idsHeader>
diff --git a/t/annotation/dereko_struct.t b/t/annotation/dereko_struct.t
new file mode 100644
index 0000000..8f5f18a
--- /dev/null
+++ b/t/annotation/dereko_struct.t
@@ -0,0 +1,61 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use utf8;
+use Test::More;
+use lib 't/annotation';
+use TestInit;
+use Scalar::Util qw/weaken/;
+use Data::Dumper;
+
+ok(my $tokens = TestInit::tokens('0001'), 'Parse tokens');
+
+ok($tokens->add('DeReKo', 'Structure'), 'Add Structure');
+
+my $data = $tokens->to_data->{data};
+
+like($data->{foundries}, qr!dereko/structure!, 'data');
+like($data->{layerInfos}, qr!dereko/s=spans!, 'data');
+
+# Empty element (from 0 to 0) on level 1, with TUI 2
+is($data->{stream}->[0]->[1],
+   '<>:dereko/s:idsHeader$<b>65<i>0<i>0<i>0<b>1<s>2',
+   'Empty element');
+
+
+is($data->{stream}->[0]->[5], '<>:base/s:t$<b>64<i>0<i>129<i>17<b>0', 'Text boundary');
+
+# Attributes:
+is($data->{stream}->[0]->[11],
+   '@:dereko/s:type:text$<b>17<s>2',
+   'Attribute of idsHeader');
+
+is($data->{stream}->[0]->[12],
+   '@:dereko/s:status:new$<b>17<s>2',
+   'Attribute of idsHeader');
+
+is($data->{stream}->[0]->[13],
+   '@:dereko/s:version:1.1$<b>17<s>2',
+   'Attribute of idsHeader');
+
+
+
+is($data->{stream}->[0]->[14],
+   '@:dereko/s:pattern:text$<b>17<s>2',
+   'Attribute of idsHeader');
+
+is($data->{stream}->[4]->[1],
+   '<>:dereko/s:s$<b>64<i>32<i>42<i>6<b>6<s>1',
+   'Sentence span');
+
+is($data->{stream}->[4]->[2],
+   '@:dereko/s:broken:no$<b>17<s>1<i>6',
+   'Attribute of sentence span');
+
+is($data->{stream}->[6]->[0],
+   '<>:dereko/s:pb$<b>65<i>42<i>42<i>6<b>6<s>1',
+   'Pagebreak element');
+
+done_testing;
+
+__END__
diff --git a/t/annotation/glemm_morpho.t b/t/annotation/glemm_morpho.t
new file mode 100644
index 0000000..208d9d1
--- /dev/null
+++ b/t/annotation/glemm_morpho.t
@@ -0,0 +1,36 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use utf8;
+use Test::More;
+use Scalar::Util qw/weaken/;
+use Data::Dumper;
+use lib 't/annotation';
+use TestInit;
+
+ok(my $tokens = TestInit::tokens('0001'), 'Parse tokens');
+
+ok($tokens->add('Glemm', 'Morpho'), 'Add Structure');
+
+my $data = $tokens->to_data->{data};
+
+like($data->{foundries}, qr!glemm/morpho!, 'data');
+like($data->{layerInfos}, qr!glemm/l=tokens!, 'data');
+
+is($data->{stream}->[0]->[1], '<>:base/s:t$<b>64<i>0<i>129<i>17<b>0', 'Text boundary');
+is($data->{stream}->[0]->[3], 'glemm/l:__zu', 'Lemma');
+is($data->{stream}->[1]->[1], 'glemm/l:__letzt-', 'Lemma');
+
+is($data->{stream}->[3]->[1], 'glemm/l:_+an-', 'Lemma');
+is($data->{stream}->[3]->[2], 'glemm/l:_+lass', 'Lemma');
+is($data->{stream}->[3]->[3], 'glemm/l:__Anlass', 'Lemma');
+
+is($data->{stream}->[6]->[1], 'glemm/l:_+-ung', 'Lemma');
+is($data->{stream}->[6]->[2], 'glemm/l:_+leiten', 'Lemma');
+is($data->{stream}->[6]->[3], 'glemm/l:__Leitung', 'Lemma');
+
+is($data->{stream}->[-1]->[1], 'glemm/l:__werden', 'Lemma');
+
+done_testing;
+
+__END__
diff --git a/t/annotation/koralquery.t b/t/annotation/koralquery.t
new file mode 100644
index 0000000..7193bd6
--- /dev/null
+++ b/t/annotation/koralquery.t
@@ -0,0 +1,77 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use utf8;
+use Test::More skip_all => 'Not yet implemented';
+use lib 't/annotation';
+use File::Basename 'dirname';
+use File::Spec::Functions 'catdir';
+
+my $path = catdir(dirname(__FILE__), 'corpus', 'doc', '0001');
+
+use_ok('KorAP::XML::Krill');
+
+ok(my $doc = KorAP::XML::Krill->new( path => $path . '/' ), 'Load Korap::Document');
+
+ok($doc->parse
+     ->tokenize
+       ->annotate('Base', 'Sentences')
+	 ->annotate('Base', 'Paragraphs')
+	   ->annotate('DeReKo', 'Struct'), 'Annotate');
+
+# Metdata
+is($doc->text_sigle, 'Corpus_Doc.0001', 'ID-text');
+is($doc->doc_sigle, 'Corpus_Doc', 'ID-doc');
+is($doc->corpus_sigle, 'Corpus', 'ID-corpus');
+is($doc->title, 'Beispiel Text', 'title');
+is($doc->sub_title, 'Beispiel Text Untertitel', 'title');
+
+# diag $doc->to_json;
+
+done_testing;
+__END__
+
+{
+  "@context" : "http://korap.ids-mannheim.de/ns/koral/0.4/context.jsonld",
+# Add krill context!
+  "text" : {
+    "@type" : "koral:corpus",
+    "meta" : {
+      "@type" : "koral:meta",
+      "s_sigle" : "BSP",
+      "s_id" : "BSP",
+      "t_title" : "Der Name als Text",
+      "k_keywords" : ["Some", "Keywords"],
+      "d_date" : "2015-12-03"
+    },
+    "@value" : {
+      "@type" : "koral:doc",
+      "meta" : {
+	"@type" : "koral:meta",
+	"s_sigle" : "BSP/AAA",
+	"s_id" : "AAA"
+      },
+      "@value" : {
+	"@type" : "koral:text",
+	"meta" : {
+	  "@type" : "koral:meta",
+	  "s_sigle" : "BSP/AAA/0001",
+	  "s_id" : "0001",
+	  "s_language" : "de"
+        },
+	"store" : {
+	  ...
+	},
+	"@value" : {
+	  "@type" : "krill:stream",
+	  "source" : "opennlp#tokens",
+	  "layer" : ["base/s=spans"],
+	  "primary" : "...",
+	  "name" : "tokens",
+	  "foundries": ["base","base/paragraphs","base/sentences"],
+	  "stream" : [[ ... ], [ ... ]]
+	}
+      }
+    }
+  }
+}
diff --git a/t/annotation/malt_dependency.t b/t/annotation/malt_dependency.t
new file mode 100644
index 0000000..620b0ce
--- /dev/null
+++ b/t/annotation/malt_dependency.t
@@ -0,0 +1,30 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use utf8;
+use Test::More skip_all => 'Not yet implemented';
+use Scalar::Util qw/weaken/;
+use Data::Dumper;
+use lib 't/annotation';
+use TestInit;
+
+ok(my $tokens = TestInit::tokens('0002'), 'Parse tokens');
+
+ok($tokens->add('Malt', 'dependency'), 'Add Structure');
+
+my $data = $tokens->to_data->{data};
+
+diag $data;
+
+done_testing;
+__END__
+
+
+like($data->{foundries}, qr!xip/sentences!, 'data');
+
+is($data->{stream}->[0]->[1], '-:xip/sentences$<i>1', 'Number of paragraphs');
+is($data->{stream}->[0]->[0], '-:tokens$<i>18', 'Number of tokens');
+is($data->{stream}->[0]->[2], '<>:xip/s:s$<b>64<i>0<i>129<i>17<b>0', 'Text');
+is($data->{stream}->[0]->[3], '_0$<i>0<i>3', 'Position');
+is($data->{stream}->[-1]->[0], '_17$<i>124<i>128', 'Position');
+
diff --git a/t/annotation/mate_dependency.t b/t/annotation/mate_dependency.t
new file mode 100644
index 0000000..d955ebe
--- /dev/null
+++ b/t/annotation/mate_dependency.t
@@ -0,0 +1,30 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use utf8;
+use Test::More;
+use Scalar::Util qw/weaken/;
+use Data::Dumper;
+use lib 't/annotation';
+use TestInit;
+
+ok(my $tokens = TestInit::tokens('0001'), 'Parse tokens');
+
+ok($tokens->add('Mate', 'Dependency'), 'Add Dependency');
+
+my $data = $tokens->to_data->{data}->{stream};
+
+is($data->[4]->[1], '<:mate/d:--$<b>32<i>4', '< rel 1 (unary)');
+is($data->[4]->[2], '>:mate/d:--$<b>32<i>4', '> rel 1 (unary)');
+#is($data->[4]->[8], 'mate/d:&&&$<b>128<s>1', 'token for rel 1 (unary)');
+
+is($data->[1]->[0], '>:mate/d:NK$<b>32<i>3', '> rel 2 (term-to-term)');
+#is($data->[1]->[3], 'mate/d:&&&$<b>128<s>1', '< rel 2 (term-to-term)');
+
+is($data->[3]->[1], '<:mate/d:NK$<b>32<i>1', '< rel 2 (term-to-term)');
+#is($data->[3]->[5], 'mate/d:&&&$<b>128<s>1', '< rel 2 (term-to-term)');
+
+
+done_testing;
+__END__
+
diff --git a/t/annotation/mate_morpho.t b/t/annotation/mate_morpho.t
new file mode 100644
index 0000000..736fd31
--- /dev/null
+++ b/t/annotation/mate_morpho.t
@@ -0,0 +1,38 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use utf8;
+use Test::More;
+use Scalar::Util qw/weaken/;
+use Data::Dumper;
+use lib 't/annotation';
+use TestInit;
+
+ok(my $tokens = TestInit::tokens('0001'), 'Parse tokens');
+
+ok($tokens->add('Mate', 'Morpho'), 'Add Structure');
+
+my $data = $tokens->to_data->{data};
+
+like($data->{foundries}, qr!mate/morpho!, 'data');
+like($data->{layerInfos}, qr!mate/p=tokens!, 'data');
+like($data->{layerInfos}, qr!mate/l=tokens!, 'data');
+like($data->{layerInfos}, qr!mate/m=tokens!, 'data');
+
+is($data->{stream}->[0]->[1], '<>:base/s:t$<b>64<i>0<i>129<i>17<b>0', 'Text boundary');
+is($data->{stream}->[0]->[4], 'mate/l:zu', 'POS');
+is($data->{stream}->[0]->[5], 'mate/m:case:dat', 'POS');
+is($data->{stream}->[0]->[6], 'mate/m:gender:neut', 'POS');
+is($data->{stream}->[0]->[7], 'mate/m:number:sg', 'POS');
+is($data->{stream}->[0]->[8], 'mate/p:APPRART', 'POS');
+
+is($data->{stream}->[-1]->[2], 'mate/l:werden', 'POS');
+is($data->{stream}->[-1]->[3], 'mate/m:mood:ind', 'POS');
+is($data->{stream}->[-1]->[4], 'mate/m:number:sg', 'POS');
+is($data->{stream}->[-1]->[5], 'mate/m:person:3', 'POS');
+is($data->{stream}->[-1]->[6], 'mate/m:tense:pres', 'POS');
+is($data->{stream}->[-1]->[7], 'mate/p:VAFIN', 'POS');
+
+done_testing;
+
+__END__
diff --git a/t/annotation/mate_morpho_attr.t b/t/annotation/mate_morpho_attr.t
new file mode 100644
index 0000000..b32c12c
--- /dev/null
+++ b/t/annotation/mate_morpho_attr.t
@@ -0,0 +1,37 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use utf8;
+use Test::More;
+use Scalar::Util qw/weaken/;
+use Data::Dumper;
+use lib 't/annotation';
+use TestInit;
+
+ok(my $tokens = TestInit::tokens('0001'), 'Parse tokens');
+
+ok($tokens->add('Mate', 'MorphoAttr'), 'Add Structure');
+
+my $data = $tokens->to_data->{data};
+
+like($data->{foundries}, qr!mate/morphoattr!, 'data');
+like($data->{layerInfos}, qr!mate/p=tokens!, 'data');
+like($data->{layerInfos}, qr!mate/l=tokens!, 'data');
+
+is($data->{stream}->[0]->[1], '<>:base/s:t$<b>64<i>0<i>129<i>17<b>0', 'Text boundary');
+is($data->{stream}->[0]->[2], '@:gender=neut$<b>16<s>1', 'POS');
+is($data->{stream}->[0]->[3], '@:number=sg$<b>16<s>1', 'POS');
+is($data->{stream}->[0]->[4], '@:case=dat$<b>16<s>1', 'POS');
+is($data->{stream}->[0]->[7], 'mate/l:zu', 'Lemmata');
+is($data->{stream}->[0]->[8], 'mate/p:APPRART$<b>128<s>1', 'POS');
+
+is($data->{stream}->[-1]->[0], '@:mood=ind$<b>16<s>1', 'POS');
+is($data->{stream}->[-1]->[1], '@:tense=pres$<b>16<s>1', 'POS');
+is($data->{stream}->[-1]->[2], '@:person=3$<b>16<s>1', 'POS');
+is($data->{stream}->[-1]->[3], '@:number=sg$<b>16<s>1', 'POS');
+is($data->{stream}->[-1]->[6], 'mate/l:werden', 'Lemmata');
+is($data->{stream}->[-1]->[7], 'mate/p:VAFIN$<b>128<s>1', 'POS');
+
+done_testing;
+
+__END__
diff --git a/t/annotation/meta.t b/t/annotation/meta.t
new file mode 100644
index 0000000..713d8fd
--- /dev/null
+++ b/t/annotation/meta.t
@@ -0,0 +1,58 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use utf8;
+use Test::More;
+use Scalar::Util qw/weaken/;
+use Data::Dumper;
+use lib 't/annotation';
+use TestInit;
+use File::Basename 'dirname';
+use File::Spec::Functions 'catdir';
+
+
+my $path = catdir(dirname(__FILE__), 'corpus', 'doc', '0001');
+
+ok(my $doc = KorAP::XML::Krill->new( path => $path . '/' ), 'Load Korap::Document');
+ok($doc->parse, 'Parse document');
+like($doc->path, qr!$path/!, 'Path');
+
+# Metdata
+is($doc->text_sigle, 'Corpus_Doc.0001', 'ID-text');
+is($doc->doc_sigle, 'Corpus_Doc', 'ID-doc');
+is($doc->corpus_sigle, 'Corpus', 'ID-corpus');
+
+is($doc->title, 'Beispiel Text', 'title');
+is($doc->sub_title, 'Beispiel Text Untertitel', 'title');
+is($doc->pub_date, '20010402', 'Publication date');
+is($doc->pub_place, 'Mannheim', 'Publication place');
+is($doc->author, 'Mustermann, Max', 'Author');
+
+is($doc->publisher, 'Artificial articles Inc.', 'Publisher');
+is($doc->editor, 'Monika Mustermann', 'Editor');
+is($doc->text_type, 'Zeitung: Tageszeitung', 'Text Type');
+is($doc->text_type_art, 'Bericht', 'Text Type Art');
+is($doc->text_type_ref, 'Aphorismen', 'Text Type Ref');
+ok(!$doc->text_column, 'Text Column');
+ok(!$doc->text_domain, 'Text Domain');
+is($doc->creation_date, '19990601', 'Creation Date');
+ok(!$doc->license, 'License');
+ok(!$doc->pages, 'Pages');
+ok(!$doc->file_edition_statement, 'File Edition Statement');
+ok(!$doc->bibl_edition_statement, 'Bibl Edition Statement');
+ok(!$doc->reference, 'Reference');
+is($doc->language, 'de', 'Language');
+
+is($doc->doc_title, 'Beispiel Dokument', 'Doc: title');
+ok(!$doc->doc_sub_title, 'Doc: subtitle');
+ok(!$doc->doc_editor, 'Doc: editor');
+ok(!$doc->doc_author, 'Doc: author');
+
+is($doc->corpus_title, 'Werke von Beispiel', 'Corpus: title');
+ok(!$doc->corpus_sub_title, 'Corpus: subtitle');
+is($doc->corpus_editor, 'Mustermann, Monika', 'Corpus: editor');
+is($doc->corpus_author, 'Mustermann, Max', 'Corpus: author');
+
+done_testing;
+
+__END__
diff --git a/t/annotation/opennlp_morpho.t b/t/annotation/opennlp_morpho.t
new file mode 100644
index 0000000..c8bcbb7
--- /dev/null
+++ b/t/annotation/opennlp_morpho.t
@@ -0,0 +1,59 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use utf8;
+use Test::More;
+use Scalar::Util qw/weaken/;
+use Data::Dumper;
+use lib 't/annotation';
+use TestInit;
+
+ok(my $tokens = TestInit::tokens('0001'), 'Parse tokens');
+
+is($tokens->stream->pos(0)->to_string, '[(0-3)-:tokens$<i>18|<>:base/s:t$<b>64<i>0<i>129<i>17<b>0|_0$<i>0<i>3|i:zum|s:Zum]', 'Token is correct');
+
+is($tokens->stream->pos(1)->to_string, '[(4-11)_1$<i>4<i>11|i:letzten|s:letzten]', 'Token is correct');
+
+my $i = 2;
+foreach ([12,23, 'kulturellen'],
+	 [24,30, 'Anlass'],
+	 [31,35, 'lädt'],
+	 [36,39, 'die'],
+	 [40,47, 'Leitung'],
+	 [48,51, 'des'],
+	 [52,63, 'Schulheimes'],
+	 [64,73, 'Hofbergli'],
+	 [74,77, 'ein'],
+	 [79,84, 'bevor'],
+	 [85,88, 'der'],
+	 [89,96, 'Betrieb'],
+	 [97,101, 'Ende'],
+	 [102,111, 'Schuljahr'],
+	 [112,123, 'eingestellt'],
+	 [124,128, 'wird']
+       ) {
+  is($tokens->stream->pos($i++)->to_string,
+     '[('.$_->[0].'-'.$_->[1].')'.
+       '_'.($i-1).
+	 '$<i>'.$_->[0].'<i>' . $_->[1] . '|' .
+	 'i:'.lc($_->[2]).'|s:'.$_->[2].']',
+     'Token is correct');
+};
+
+ok(!$tokens->stream->pos($i++), 'No more tokens');
+
+ok($tokens->add('OpenNLP', 'Morpho'), 'Add Structure');
+
+my $data = $tokens->to_data->{data};
+
+like($data->{foundries}, qr!opennlp/morpho!, 'data');
+is($data->{stream}->[0]->[2], '_0$<i>0<i>3', 'Position');
+is($data->{stream}->[0]->[4], 'opennlp/p:APPRART', 'POS');
+is($data->{stream}->[1]->[2], 'opennlp/p:ADJA', 'POS');
+is($data->{stream}->[2]->[2], 'opennlp/p:ADJA', 'POS');
+is($data->{stream}->[-1]->[2], 'opennlp/p:VAFIN', 'POS');
+
+done_testing;
+
+__END__
+
diff --git a/t/annotation/opennlp_sentences.t b/t/annotation/opennlp_sentences.t
new file mode 100644
index 0000000..16c8a65
--- /dev/null
+++ b/t/annotation/opennlp_sentences.t
@@ -0,0 +1,25 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use utf8;
+use Test::More;
+use Scalar::Util qw/weaken/;
+use Data::Dumper;
+use lib 't/annotation';
+use TestInit;
+
+ok(my $tokens = TestInit::tokens('0001'), 'Parse tokens');
+
+ok($tokens->add('OpenNLP', 'Sentences'), 'Add Structure');
+
+my $data = $tokens->to_data->{data};
+
+like($data->{foundries}, qr!opennlp/sentences!, 'data');
+is($data->{stream}->[0]->[0], '-:opennlp/sentences$<i>1', 'Number of Sentences');
+is($data->{stream}->[0]->[1], '-:tokens$<i>18', 'Number of tokens');
+is($data->{stream}->[0]->[3], '<>:opennlp/s:s$<b>64<i>0<i>129<i>17<b>0', 'Sentence');
+is($data->{stream}->[0]->[4], '_0$<i>0<i>3', 'Position');
+
+done_testing;
+
+__END__
diff --git a/t/annotation/primary.t b/t/annotation/primary.t
new file mode 100644
index 0000000..32431d3
--- /dev/null
+++ b/t/annotation/primary.t
@@ -0,0 +1,31 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use utf8;
+use Test::More;
+use Scalar::Util qw/weaken/;
+use Data::Dumper;
+use lib 't/annotation';
+use KorAP::XML::Krill;
+use File::Basename 'dirname';
+use File::Spec::Functions 'catdir';
+
+
+my $path = catdir(dirname(__FILE__), 'corpus', 'doc', '0001');
+
+ok(my $doc = KorAP::XML::Krill->new( path => $path . '/' ), 'Load Korap::XML::Krill');
+ok($doc->parse, 'Parse document');
+like($doc->path, qr!$path/!, 'Path');
+
+is($doc->primary->data,
+   'Zum letzten kulturellen Anlass lädt die Leitung des Schulheimes Hofbergli ein, '.
+     'bevor der Betrieb Ende Schuljahr eingestellt wird.', 'Primary data');
+
+is($doc->primary->data_length, 129, 'Primary data length');
+
+is($doc->primary->data(0,3), 'Zum', 'Get primary data');
+
+
+done_testing;
+
+__END__
diff --git a/t/annotation/tt_morpho.t b/t/annotation/tt_morpho.t
new file mode 100644
index 0000000..3ce5cc3
--- /dev/null
+++ b/t/annotation/tt_morpho.t
@@ -0,0 +1,36 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use utf8;
+use Test::More;
+use Scalar::Util qw/weaken/;
+use Data::Dumper;
+use lib 't/annotation';
+use TestInit;
+
+ok(my $tokens = TestInit::tokens('0001'), 'Parse tokens');
+
+ok($tokens->add('TreeTagger', 'Morpho'), 'Add Structure');
+
+my $data = $tokens->to_data->{data};
+
+like($data->{foundries}, qr!treetagger/morpho!, 'data');
+like($data->{layerInfos}, qr!tt/p=tokens!, 'data');
+like($data->{layerInfos}, qr!tt/l=tokens!, 'data');
+
+is($data->{stream}->[0]->[5], 'tt/l:zum$<b>129<b>255', 'POS');
+is($data->{stream}->[0]->[6], 'tt/p:APPRART$<b>129<b>255', 'POS');
+
+is($data->{stream}->[3]->[3], 'tt/l:Anlaß$<b>129<b>255', 'POS');
+is($data->{stream}->[3]->[4], 'tt/p:NN$<b>129<b>255', 'POS');
+
+is($data->{stream}->[10]->[3], 'tt/l:ein$<b>129<b>253', 'POS');
+is($data->{stream}->[10]->[4], 'tt/p:PTKVZ$<b>129<b>253', 'POS');
+
+is($data->{stream}->[-1]->[3], 'tt/l:werden$<b>129<b>255', 'POS');
+is($data->{stream}->[-1]->[4], 'tt/p:VAFIN$<b>129<b>255', 'POS');
+
+done_testing;
+
+__END__
+
diff --git a/t/annotation/tt_sentences.t b/t/annotation/tt_sentences.t
new file mode 100644
index 0000000..703f1a6
--- /dev/null
+++ b/t/annotation/tt_sentences.t
@@ -0,0 +1,28 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use utf8;
+use Test::More;
+use Scalar::Util qw/weaken/;
+use Data::Dumper;
+use lib 't/annotation';
+use TestInit;
+
+ok(my $tokens = TestInit::tokens('0001'), 'Parse tokens');
+
+ok($tokens->add('TreeTagger', 'Sentences'), 'Add Structure');
+
+my $data = $tokens->to_data->{data};
+
+#diag Dumper $data;
+
+like($data->{foundries}, qr!treetagger/sentences!, 'data');
+is($data->{stream}->[0]->[0], '-:tokens$<i>18', 'Number of tokens');
+is($data->{stream}->[0]->[1], '-:tt/sentences$<i>1', 'Number of paragraphs');
+is($data->{stream}->[0]->[3], '<>:tt/s:s$<b>64<i>0<i>130<i>17<b>0', 'Text');
+is($data->{stream}->[0]->[4], '_0$<i>0<i>3', 'Position');
+is($data->{stream}->[-1]->[0], '_17$<i>124<i>128', 'Position');
+
+done_testing;
+
+__END__
diff --git a/t/annotation/xip_constituency.t b/t/annotation/xip_constituency.t
new file mode 100644
index 0000000..026321f
--- /dev/null
+++ b/t/annotation/xip_constituency.t
@@ -0,0 +1,33 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use utf8;
+use Test::More;
+use Scalar::Util qw/weaken/;
+use Data::Dumper;
+use lib 't/annotation';
+use TestInit;
+
+ok(my $tokens = TestInit::tokens('0001'), 'Parse tokens');
+
+ok($tokens->add('XIP', 'Constituency'), 'Add Structure');
+
+my $data = $tokens->to_data->{data};
+like($data->{foundries}, qr!xip/constituency!, 'data');
+like($data->{layerInfos}, qr!xip/c=spans!, 'data');
+
+# The length includes the punct - but that doesn't matter
+is($data->{stream}->[0]->[1], '<>:xip/c:PREP$<b>64<i>0<i>3<i>1<b>3', 'Prep phrase');
+is($data->{stream}->[0]->[2], '<>:xip/c:PP$<b>64<i>0<i>30<i>4<b>2', 'pp phrase');
+is($data->{stream}->[0]->[4], '<>:xip/c:TOP$<b>64<i>0<i>129<i>17<b>0', 'top phrase');
+is($data->{stream}->[0]->[5], '<>:xip/c:MC$<b>64<i>0<i>129<i>17<b>1', 'mc phrase');
+is($data->{stream}->[-1]->[0], '<>:xip/c:VERB$<b>64<i>124<i>128<i>18<b>4', 'Noun phrase');
+
+
+done_testing;
+
+__END__
+
+
+
+
diff --git a/t/annotation/xip_dependency.t b/t/annotation/xip_dependency.t
new file mode 100644
index 0000000..1f8a169
--- /dev/null
+++ b/t/annotation/xip_dependency.t
@@ -0,0 +1,41 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use utf8;
+use Test::More skip_all => 'Not yet implemented';
+use Scalar::Util qw/weaken/;
+use Data::Dumper;
+use lib 't/annotation';
+use TestInit;
+
+ok(my $tokens = TestInit::tokens('0001'), 'Parse tokens');
+
+ok($tokens->add('XIP', 'Dependency'), 'Add Structure');
+
+my $data = $tokens->to_data->{data};
+
+
+# diag Dumper $data;
+
+done_testing;
+
+__END__
+
+
+
+like($data->{foundries}, qr!xip/morpho!, 'data');
+like($data->{layerInfos}, qr!xip/l=tokens!, 'data');
+like($data->{layerInfos}, qr!xip/p=tokens!, 'data');
+is($data->{stream}->[0]->[4], 'xip/l:zu', 'Lemma');
+is($data->{stream}->[0]->[5], 'xip/p:PREP', 'POS');
+
+is($data->{stream}->[1]->[3], 'xip/l:letzt', 'Lemma');
+is($data->{stream}->[1]->[4], 'xip/p:ADJ', 'POS');
+
+is($data->{stream}->[8]->[3], 'xip/l:\#Heim', 'Lemma (part)');
+is($data->{stream}->[8]->[4], 'xip/l:\#schulen', 'Lemma (part)');
+is($data->{stream}->[8]->[5], 'xip/l:schulen\#Heim', 'Lemma (part)');
+
+is($data->{stream}->[-1]->[3], 'xip/l:werden', 'Lemma');
+is($data->{stream}->[-1]->[4], 'xip/p:VERB', 'POS');
+
diff --git a/t/annotation/xip_morpho.t b/t/annotation/xip_morpho.t
new file mode 100644
index 0000000..7a4404c
--- /dev/null
+++ b/t/annotation/xip_morpho.t
@@ -0,0 +1,36 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use utf8;
+use Test::More;
+use Scalar::Util qw/weaken/;
+use Data::Dumper;
+use lib 't/annotation';
+use TestInit;
+
+ok(my $tokens = TestInit::tokens('0001'), 'Parse tokens');
+
+ok($tokens->add('XIP', 'Morpho'), 'Add Structure');
+
+my $data = $tokens->to_data->{data};
+
+like($data->{foundries}, qr!xip/morpho!, 'data');
+like($data->{layerInfos}, qr!xip/l=tokens!, 'data');
+like($data->{layerInfos}, qr!xip/p=tokens!, 'data');
+is($data->{stream}->[0]->[5], 'xip/l:zu', 'Lemma');
+is($data->{stream}->[0]->[6], 'xip/p:PREP', 'POS');
+
+is($data->{stream}->[1]->[3], 'xip/l:letzt', 'Lemma');
+is($data->{stream}->[1]->[4], 'xip/p:ADJ', 'POS');
+
+is($data->{stream}->[8]->[3], 'xip/l:\#Heim', 'Lemma (part)');
+is($data->{stream}->[8]->[4], 'xip/l:\#schulen', 'Lemma (part)');
+is($data->{stream}->[8]->[5], 'xip/l:schulen\#Heim', 'Lemma (part)');
+
+is($data->{stream}->[-1]->[3], 'xip/l:werden', 'Lemma');
+is($data->{stream}->[-1]->[4], 'xip/p:VERB', 'POS');
+
+done_testing;
+
+__END__
+
diff --git a/t/annotation/xip_sentences.t b/t/annotation/xip_sentences.t
new file mode 100644
index 0000000..3f2c62c
--- /dev/null
+++ b/t/annotation/xip_sentences.t
@@ -0,0 +1,26 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use utf8;
+use Test::More;
+use Scalar::Util qw/weaken/;
+use Data::Dumper;
+use lib 't/annotation';
+use TestInit;
+
+ok(my $tokens = TestInit::tokens('0001'), 'Parse tokens');
+
+ok($tokens->add('XIP', 'Sentences'), 'Add Structure');
+
+my $data = $tokens->to_data->{data};
+
+like($data->{foundries}, qr!xip/sentences!, 'data');
+
+is($data->{stream}->[0]->[0], '-:tokens$<i>18', 'Number of tokens');
+is($data->{stream}->[0]->[1], '-:xip/sentences$<i>1', 'Number of paragraphs');
+is($data->{stream}->[0]->[3], '<>:xip/s:s$<b>64<i>0<i>129<i>17<b>0', 'Text');
+is($data->{stream}->[0]->[4], '_0$<i>0<i>3', 'Position');
+is($data->{stream}->[-1]->[0], '_17$<i>124<i>128', 'Position');
+
+done_testing;
+__END__