Improved test suite, additional meta data, started corenlp constituency parser
diff --git a/Makefile.PL b/Makefile.PL
index 7ee0a7a..47450b1 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -10,21 +10,23 @@
   ABSTRACT     => 'Perl Implementation for Generating Multifoundry Lucene Indices',
   VERSION_FROM => 'lib/KorAP/Bundle.pm',
   PREREQ_PM => {
-    'Mojolicious'   => 4.51,
-    'Packed::Array' => 0.01,
-    'Log::Log4perl' => 1.42,
-    'JSON::XS'      => 3.01,
-    'Set::Scalar'   => 1.26,
-    'IO::Dir::Recursive' => 0,
-    'Benchmark'     => 0,
-    'Carp'          => 0,
-    'strict'        => 0,
-    'warnings'      => 0,
-    'utf8'          => 0,
-    'bytes'         => 0,
-    'List::MoreUtils' => 0.33
+    'Mojolicious'    => 4.51,
+    'Packed::Array'  => 0.01,
+    'Log::Log4perl'  => 1.42,
+    'JSON::XS'       => 3.01,
+    'Set::Scalar'    => 1.26,
+    'XML::Fast'      => 0.11,
+    'Try::Tiny'      => 0.21,
+    'Array::IntSpan' => 2,
+    'List::MoreUtils' => 0.33,
+    'IO::Dir::Recursive' => 0.03,
+    'Benchmark'      => 0,
+    'Carp'           => 0,
+    'strict'         => 0,
+    'warnings'       => 0,
+    'utf8'           => 0,
+    'bytes'          => 0
   },
-#  LICENSE      => 'perl',
   MIN_PERL_VERSION => '5.016',
   test => {
     TESTS => 't/*.t'
diff --git a/lib/KorAP/Document.pm b/lib/KorAP/Document.pm
index a33df14..8cb0cdd 100644
--- a/lib/KorAP/Document.pm
+++ b/lib/KorAP/Document.pm
@@ -12,10 +12,26 @@
 use Mojo::DOM;
 use Data::Dumper;
 
-our @ATTR = qw/id corpus_id pub_date
-	       title sub_title pub_place/;
+our @ATTR = qw/id
+	       corpus_id
+	       pub_date
+	       title
+	       sub_title
+	       pub_place/;
+
+our @ADVANCED_ATTR = qw/publisher
+			editor
+			text_type
+			text_type_art
+			creation_date
+			coll_title
+			coll_sub_title
+			coll_author
+			coll_editor
+			/;
+
 has 'path';
-has [@ATTR];
+has [@ATTR, @ADVANCED_ATTR];
 
 has log => sub {
   if(Log::Log4perl->initialized()) {
@@ -120,17 +136,71 @@
   my $dom = Mojo::DOM->new($file);
   my $analytic = $dom->at('analytic');
 
-  # Get title
-  my $title = $analytic->at('h\.title[type=main]');
-  $self->title($title->text) if $title;
+  if ($analytic) {
+    # Get title
+    my $title = $analytic->at('h\.title[type=main]');
+    $self->title($title->text) if $title;
 
-  # Get Subtitle
-  my $sub_title = $analytic->at('h\.title[type=sub]');
-  $self->sub_title($sub_title->text) if $sub_title;
+    # Get Subtitle
+    my $sub_title = $analytic->at('h\.title[type=sub]');
+    $self->sub_title($sub_title->text) if $sub_title;
 
-  # Get Author
-  my $author = $analytic->at('h\.author');
-  $self->author($author->all_text) if $author;
+    # Get Author
+    my $author = $analytic->at('h\.author');
+    $self->author($author->all_text) if $author;
+
+    # Get Editor
+    my $editor = $analytic->at('editor');
+    $self->editor($editor->all_text) if $editor;
+  };
+
+  # Get PubPlace
+  my $place = $dom->at('pubPlace');
+  $self->pub_place($place->all_text) if $place;
+
+  # Get Publisher
+  my $publisher = $dom->at('publisher');
+  $self->publisher($publisher->all_text) if $publisher;
+
+  my $mono = $dom->at('monogr');
+  if ($mono) {
+    # Get title
+    my $title = $mono->at('h\.title[type=main]');
+
+    # It's a monograph
+    if (!$self->title) {
+      $self->title($title->text) if $title;
+
+      # Get Subtitle
+      my $sub_title = $mono->at('h\.title[type=sub]');
+      $self->sub_title($sub_title->text) if $sub_title;
+
+    }
+    else {
+      $self->coll_title($title->text) if $title;
+
+      # Get Subtitle
+      my $sub_title = $mono->at('h\.title[type=sub]');
+      $self->coll_sub_title($sub_title->text) if $sub_title;
+    };
+
+    # Get Author
+    my $author = $mono->at('h\.author');
+    $self->coll_author($author->all_text) if $author;
+
+    # Get editor
+    my $editor = $mono->at('editor');
+    $self->coll_editor($editor->all_text) if $editor;
+  };
+
+  # Get text type
+  my $text_type = $dom->at('textDesc textType');
+  $self->text_type($text_type->all_text) if $text_type;
+
+  # Get text type
+  my $text_type_art = $dom->at('textDesc textTypeArt');
+  $self->text_type_art($text_type_art->all_text) if $text_type_art;
+
 
   # Get pubDate
   my $year = $dom->at("pubDate[type=year]");
@@ -150,6 +220,23 @@
 
   $self->pub_date($date);
 
+  # creatDate
+  my $createdate = $dom->at('creatDate');
+  if ($createdate) {
+    $createdate = $createdate->all_text;
+    if (index($createdate, '-') > -1) {
+      $self->log->warn("Creation date ranges are not supported yet");
+    }
+    else {
+      $createdate =~ s{^(\d{4})$}{$1\.00};
+      $createdate =~ s{^(\d{4})\.(\d{2})$}{$1\.$2\.00};
+      if ($createdate =~ /^\d{4}\.\d{2}\.\d{2}$/) {
+	$createdate =~ tr/\.//d;
+	$self->creation_date($createdate);
+      };
+    };
+  };
+
   # Get textClasses
   my @topic;
   $dom->find("textClass catRef")->each(
diff --git a/t/WPD/02035-substring/base/paragraph.xml b/t/A01/02035-substring/base/paragraph.xml
similarity index 100%
rename from t/WPD/02035-substring/base/paragraph.xml
rename to t/A01/02035-substring/base/paragraph.xml
diff --git a/t/WPD/02035-substring/base/sentences.xml b/t/A01/02035-substring/base/sentences.xml
similarity index 100%
rename from t/WPD/02035-substring/base/sentences.xml
rename to t/A01/02035-substring/base/sentences.xml
diff --git a/t/WPD/02035-substring/base/tokens_aggr.xml b/t/A01/02035-substring/base/tokens_aggr.xml
similarity index 100%
rename from t/WPD/02035-substring/base/tokens_aggr.xml
rename to t/A01/02035-substring/base/tokens_aggr.xml
diff --git a/t/WPD/02035-substring/base/tokens_conservative.xml b/t/A01/02035-substring/base/tokens_conservative.xml
similarity index 100%
rename from t/WPD/02035-substring/base/tokens_conservative.xml
rename to t/A01/02035-substring/base/tokens_conservative.xml
diff --git a/t/WPD/02035-substring/connexor/metadata.xml b/t/A01/02035-substring/connexor/metadata.xml
similarity index 100%
rename from t/WPD/02035-substring/connexor/metadata.xml
rename to t/A01/02035-substring/connexor/metadata.xml
diff --git a/t/WPD/02035-substring/connexor/morpho.xml b/t/A01/02035-substring/connexor/morpho.xml
similarity index 100%
rename from t/WPD/02035-substring/connexor/morpho.xml
rename to t/A01/02035-substring/connexor/morpho.xml
diff --git a/t/WPD/02035-substring/connexor/mpt.xml b/t/A01/02035-substring/connexor/mpt.xml
similarity index 100%
rename from t/WPD/02035-substring/connexor/mpt.xml
rename to t/A01/02035-substring/connexor/mpt.xml
diff --git a/t/WPD/02035-substring/connexor/phrase.xml b/t/A01/02035-substring/connexor/phrase.xml
similarity index 100%
rename from t/WPD/02035-substring/connexor/phrase.xml
rename to t/A01/02035-substring/connexor/phrase.xml
diff --git a/t/WPD/02035-substring/connexor/sentences.xml b/t/A01/02035-substring/connexor/sentences.xml
similarity index 100%
rename from t/WPD/02035-substring/connexor/sentences.xml
rename to t/A01/02035-substring/connexor/sentences.xml
diff --git a/t/WPD/02035-substring/connexor/syntax.xml b/t/A01/02035-substring/connexor/syntax.xml
similarity index 100%
rename from t/WPD/02035-substring/connexor/syntax.xml
rename to t/A01/02035-substring/connexor/syntax.xml
diff --git a/t/WPD/02035-substring/connexor/tokens.xml b/t/A01/02035-substring/connexor/tokens.xml
similarity index 100%
rename from t/WPD/02035-substring/connexor/tokens.xml
rename to t/A01/02035-substring/connexor/tokens.xml
diff --git a/t/WPD/02035-substring/corenlp/ne_dewac_175m_600.xml b/t/A01/02035-substring/corenlp/ne_dewac_175m_600.xml
similarity index 100%
rename from t/WPD/02035-substring/corenlp/ne_dewac_175m_600.xml
rename to t/A01/02035-substring/corenlp/ne_dewac_175m_600.xml
diff --git a/t/WPD/02035-substring/corenlp/ne_hgc_175m_600.xml b/t/A01/02035-substring/corenlp/ne_hgc_175m_600.xml
similarity index 100%
rename from t/WPD/02035-substring/corenlp/ne_hgc_175m_600.xml
rename to t/A01/02035-substring/corenlp/ne_hgc_175m_600.xml
diff --git a/t/WPD/02035-substring/corenlp/sentences.xml b/t/A01/02035-substring/corenlp/sentences.xml
similarity index 100%
rename from t/WPD/02035-substring/corenlp/sentences.xml
rename to t/A01/02035-substring/corenlp/sentences.xml
diff --git a/t/WPD/02035-substring/corenlp/tokens.xml b/t/A01/02035-substring/corenlp/tokens.xml
similarity index 100%
rename from t/WPD/02035-substring/corenlp/tokens.xml
rename to t/A01/02035-substring/corenlp/tokens.xml
diff --git a/t/WPD/02035-substring/data.xml b/t/A01/02035-substring/data.xml
similarity index 100%
rename from t/WPD/02035-substring/data.xml
rename to t/A01/02035-substring/data.xml
diff --git a/t/WPD/02035-substring/header.xml b/t/A01/02035-substring/header.xml
similarity index 100%
rename from t/WPD/02035-substring/header.xml
rename to t/A01/02035-substring/header.xml
diff --git a/t/WPD/02035-substring/mate/dependency.xml b/t/A01/02035-substring/mate/dependency.xml
similarity index 100%
rename from t/WPD/02035-substring/mate/dependency.xml
rename to t/A01/02035-substring/mate/dependency.xml
diff --git a/t/WPD/02035-substring/mate/morpho.xml b/t/A01/02035-substring/mate/morpho.xml
similarity index 100%
rename from t/WPD/02035-substring/mate/morpho.xml
rename to t/A01/02035-substring/mate/morpho.xml
diff --git a/t/WPD/02035-substring/mate/pipeline/one_token_per_line.txt b/t/A01/02035-substring/mate/pipeline/one_token_per_line.txt
similarity index 100%
rename from t/WPD/02035-substring/mate/pipeline/one_token_per_line.txt
rename to t/A01/02035-substring/mate/pipeline/one_token_per_line.txt
diff --git a/t/WPD/02035-substring/mate/pipeline/parsed.txt b/t/A01/02035-substring/mate/pipeline/parsed.txt
similarity index 100%
rename from t/WPD/02035-substring/mate/pipeline/parsed.txt
rename to t/A01/02035-substring/mate/pipeline/parsed.txt
diff --git a/t/WPD/02035-substring/mate/tokenSpans/number_tokenSpans.xml b/t/A01/02035-substring/mate/tokenSpans/number_tokenSpans.xml
similarity index 100%
rename from t/WPD/02035-substring/mate/tokenSpans/number_tokenSpans.xml
rename to t/A01/02035-substring/mate/tokenSpans/number_tokenSpans.xml
diff --git a/t/WPD/02035-substring/opennlp/morpho.xml b/t/A01/02035-substring/opennlp/morpho.xml
similarity index 100%
rename from t/WPD/02035-substring/opennlp/morpho.xml
rename to t/A01/02035-substring/opennlp/morpho.xml
diff --git a/t/WPD/02035-substring/opennlp/sentences.xml b/t/A01/02035-substring/opennlp/sentences.xml
similarity index 100%
rename from t/WPD/02035-substring/opennlp/sentences.xml
rename to t/A01/02035-substring/opennlp/sentences.xml
diff --git a/t/WPD/02035-substring/opennlp/tokens.xml b/t/A01/02035-substring/opennlp/tokens.xml
similarity index 100%
rename from t/WPD/02035-substring/opennlp/tokens.xml
rename to t/A01/02035-substring/opennlp/tokens.xml
diff --git a/t/WPD/02035-substring/struct/structure.xml b/t/A01/02035-substring/struct/structure.xml
similarity index 100%
rename from t/WPD/02035-substring/struct/structure.xml
rename to t/A01/02035-substring/struct/structure.xml
diff --git a/t/WPD/02035-substring/text.txt b/t/A01/02035-substring/text.txt
similarity index 100%
rename from t/WPD/02035-substring/text.txt
rename to t/A01/02035-substring/text.txt
diff --git a/t/WPD/02035-substring/tree_tagger/metadata.xml b/t/A01/02035-substring/tree_tagger/metadata.xml
similarity index 100%
rename from t/WPD/02035-substring/tree_tagger/metadata.xml
rename to t/A01/02035-substring/tree_tagger/metadata.xml
diff --git a/t/WPD/02035-substring/tree_tagger/morpho.xml b/t/A01/02035-substring/tree_tagger/morpho.xml
similarity index 100%
rename from t/WPD/02035-substring/tree_tagger/morpho.xml
rename to t/A01/02035-substring/tree_tagger/morpho.xml
diff --git a/t/WPD/02035-substring/tree_tagger/sentences.xml b/t/A01/02035-substring/tree_tagger/sentences.xml
similarity index 100%
rename from t/WPD/02035-substring/tree_tagger/sentences.xml
rename to t/A01/02035-substring/tree_tagger/sentences.xml
diff --git a/t/WPD/02035-substring/tree_tagger/tokens.xml b/t/A01/02035-substring/tree_tagger/tokens.xml
similarity index 100%
rename from t/WPD/02035-substring/tree_tagger/tokens.xml
rename to t/A01/02035-substring/tree_tagger/tokens.xml
diff --git a/t/WPD/02035-substring/xip/constituency.xml b/t/A01/02035-substring/xip/constituency.xml
similarity index 100%
rename from t/WPD/02035-substring/xip/constituency.xml
rename to t/A01/02035-substring/xip/constituency.xml
diff --git a/t/WPD/02035-substring/xip/dependency.xml b/t/A01/02035-substring/xip/dependency.xml
similarity index 100%
rename from t/WPD/02035-substring/xip/dependency.xml
rename to t/A01/02035-substring/xip/dependency.xml
diff --git a/t/WPD/02035-substring/xip/metadata.xml b/t/A01/02035-substring/xip/metadata.xml
similarity index 100%
rename from t/WPD/02035-substring/xip/metadata.xml
rename to t/A01/02035-substring/xip/metadata.xml
diff --git a/t/WPD/02035-substring/xip/morpho.xml b/t/A01/02035-substring/xip/morpho.xml
similarity index 100%
rename from t/WPD/02035-substring/xip/morpho.xml
rename to t/A01/02035-substring/xip/morpho.xml
diff --git a/t/WPD/02035-substring/xip/sentences.xml b/t/A01/02035-substring/xip/sentences.xml
similarity index 100%
rename from t/WPD/02035-substring/xip/sentences.xml
rename to t/A01/02035-substring/xip/sentences.xml
diff --git a/t/WPD/02035-substring/xip/tokens.xml b/t/A01/02035-substring/xip/tokens.xml
similarity index 100%
rename from t/WPD/02035-substring/xip/tokens.xml
rename to t/A01/02035-substring/xip/tokens.xml
diff --git a/t/WPD/02873-meta/base/paragraph.xml b/t/A01/02873-meta/base/paragraph.xml
similarity index 100%
rename from t/WPD/02873-meta/base/paragraph.xml
rename to t/A01/02873-meta/base/paragraph.xml
diff --git a/t/WPD/02873-meta/base/sentences.xml b/t/A01/02873-meta/base/sentences.xml
similarity index 100%
rename from t/WPD/02873-meta/base/sentences.xml
rename to t/A01/02873-meta/base/sentences.xml
diff --git a/t/WPD/02873-meta/base/tokens_aggr.xml b/t/A01/02873-meta/base/tokens_aggr.xml
similarity index 100%
rename from t/WPD/02873-meta/base/tokens_aggr.xml
rename to t/A01/02873-meta/base/tokens_aggr.xml
diff --git a/t/WPD/02873-meta/base/tokens_conservative.xml b/t/A01/02873-meta/base/tokens_conservative.xml
similarity index 100%
rename from t/WPD/02873-meta/base/tokens_conservative.xml
rename to t/A01/02873-meta/base/tokens_conservative.xml
diff --git a/t/WPD/02873-meta/connexor/metadata.xml b/t/A01/02873-meta/connexor/metadata.xml
similarity index 100%
rename from t/WPD/02873-meta/connexor/metadata.xml
rename to t/A01/02873-meta/connexor/metadata.xml
diff --git a/t/WPD/02873-meta/connexor/morpho.xml b/t/A01/02873-meta/connexor/morpho.xml
similarity index 100%
rename from t/WPD/02873-meta/connexor/morpho.xml
rename to t/A01/02873-meta/connexor/morpho.xml
diff --git a/t/WPD/02873-meta/connexor/mpt.xml b/t/A01/02873-meta/connexor/mpt.xml
similarity index 100%
rename from t/WPD/02873-meta/connexor/mpt.xml
rename to t/A01/02873-meta/connexor/mpt.xml
diff --git a/t/WPD/02873-meta/connexor/phrase.xml b/t/A01/02873-meta/connexor/phrase.xml
similarity index 100%
rename from t/WPD/02873-meta/connexor/phrase.xml
rename to t/A01/02873-meta/connexor/phrase.xml
diff --git a/t/WPD/02873-meta/connexor/sentences.xml b/t/A01/02873-meta/connexor/sentences.xml
similarity index 100%
rename from t/WPD/02873-meta/connexor/sentences.xml
rename to t/A01/02873-meta/connexor/sentences.xml
diff --git a/t/WPD/02873-meta/connexor/syntax.xml b/t/A01/02873-meta/connexor/syntax.xml
similarity index 100%
rename from t/WPD/02873-meta/connexor/syntax.xml
rename to t/A01/02873-meta/connexor/syntax.xml
diff --git a/t/WPD/02873-meta/connexor/tokens.xml b/t/A01/02873-meta/connexor/tokens.xml
similarity index 100%
rename from t/WPD/02873-meta/connexor/tokens.xml
rename to t/A01/02873-meta/connexor/tokens.xml
diff --git a/t/WPD/02873-meta/corenlp/ne_dewac_175m_600.xml b/t/A01/02873-meta/corenlp/ne_dewac_175m_600.xml
similarity index 100%
rename from t/WPD/02873-meta/corenlp/ne_dewac_175m_600.xml
rename to t/A01/02873-meta/corenlp/ne_dewac_175m_600.xml
diff --git a/t/WPD/02873-meta/corenlp/ne_hgc_175m_600.xml b/t/A01/02873-meta/corenlp/ne_hgc_175m_600.xml
similarity index 100%
rename from t/WPD/02873-meta/corenlp/ne_hgc_175m_600.xml
rename to t/A01/02873-meta/corenlp/ne_hgc_175m_600.xml
diff --git a/t/WPD/02873-meta/corenlp/sentences.xml b/t/A01/02873-meta/corenlp/sentences.xml
similarity index 100%
rename from t/WPD/02873-meta/corenlp/sentences.xml
rename to t/A01/02873-meta/corenlp/sentences.xml
diff --git a/t/WPD/02873-meta/corenlp/tokens.xml b/t/A01/02873-meta/corenlp/tokens.xml
similarity index 100%
rename from t/WPD/02873-meta/corenlp/tokens.xml
rename to t/A01/02873-meta/corenlp/tokens.xml
diff --git a/t/WPD/02873-meta/data.xml b/t/A01/02873-meta/data.xml
similarity index 100%
rename from t/WPD/02873-meta/data.xml
rename to t/A01/02873-meta/data.xml
diff --git a/t/WPD/02873-meta/header.xml b/t/A01/02873-meta/header.xml
similarity index 100%
rename from t/WPD/02873-meta/header.xml
rename to t/A01/02873-meta/header.xml
diff --git a/t/WPD/02873-meta/mate/dependency.xml b/t/A01/02873-meta/mate/dependency.xml
similarity index 100%
rename from t/WPD/02873-meta/mate/dependency.xml
rename to t/A01/02873-meta/mate/dependency.xml
diff --git a/t/WPD/02873-meta/mate/morpho.xml b/t/A01/02873-meta/mate/morpho.xml
similarity index 100%
rename from t/WPD/02873-meta/mate/morpho.xml
rename to t/A01/02873-meta/mate/morpho.xml
diff --git a/t/WPD/02873-meta/mate/pipeline/one_token_per_line.txt b/t/A01/02873-meta/mate/pipeline/one_token_per_line.txt
similarity index 100%
rename from t/WPD/02873-meta/mate/pipeline/one_token_per_line.txt
rename to t/A01/02873-meta/mate/pipeline/one_token_per_line.txt
diff --git a/t/WPD/02873-meta/mate/pipeline/parsed.txt b/t/A01/02873-meta/mate/pipeline/parsed.txt
similarity index 100%
rename from t/WPD/02873-meta/mate/pipeline/parsed.txt
rename to t/A01/02873-meta/mate/pipeline/parsed.txt
diff --git a/t/WPD/02873-meta/mate/tokenSpans/number_tokenSpans.xml b/t/A01/02873-meta/mate/tokenSpans/number_tokenSpans.xml
similarity index 100%
rename from t/WPD/02873-meta/mate/tokenSpans/number_tokenSpans.xml
rename to t/A01/02873-meta/mate/tokenSpans/number_tokenSpans.xml
diff --git a/t/WPD/02873-meta/opennlp/morpho.xml b/t/A01/02873-meta/opennlp/morpho.xml
similarity index 100%
rename from t/WPD/02873-meta/opennlp/morpho.xml
rename to t/A01/02873-meta/opennlp/morpho.xml
diff --git a/t/WPD/02873-meta/opennlp/sentences.xml b/t/A01/02873-meta/opennlp/sentences.xml
similarity index 100%
rename from t/WPD/02873-meta/opennlp/sentences.xml
rename to t/A01/02873-meta/opennlp/sentences.xml
diff --git a/t/WPD/02873-meta/opennlp/tokens.xml b/t/A01/02873-meta/opennlp/tokens.xml
similarity index 100%
rename from t/WPD/02873-meta/opennlp/tokens.xml
rename to t/A01/02873-meta/opennlp/tokens.xml
diff --git a/t/WPD/02873-meta/struct/structure.xml b/t/A01/02873-meta/struct/structure.xml
similarity index 100%
rename from t/WPD/02873-meta/struct/structure.xml
rename to t/A01/02873-meta/struct/structure.xml
diff --git a/t/WPD/02873-meta/text.txt b/t/A01/02873-meta/text.txt
similarity index 100%
rename from t/WPD/02873-meta/text.txt
rename to t/A01/02873-meta/text.txt
diff --git a/t/WPD/02873-meta/tree_tagger/metadata.xml b/t/A01/02873-meta/tree_tagger/metadata.xml
similarity index 100%
rename from t/WPD/02873-meta/tree_tagger/metadata.xml
rename to t/A01/02873-meta/tree_tagger/metadata.xml
diff --git a/t/WPD/02873-meta/tree_tagger/morpho.xml b/t/A01/02873-meta/tree_tagger/morpho.xml
similarity index 100%
rename from t/WPD/02873-meta/tree_tagger/morpho.xml
rename to t/A01/02873-meta/tree_tagger/morpho.xml
diff --git a/t/WPD/02873-meta/tree_tagger/sentences.xml b/t/A01/02873-meta/tree_tagger/sentences.xml
similarity index 100%
rename from t/WPD/02873-meta/tree_tagger/sentences.xml
rename to t/A01/02873-meta/tree_tagger/sentences.xml
diff --git a/t/WPD/02873-meta/tree_tagger/tokens.xml b/t/A01/02873-meta/tree_tagger/tokens.xml
similarity index 100%
rename from t/WPD/02873-meta/tree_tagger/tokens.xml
rename to t/A01/02873-meta/tree_tagger/tokens.xml
diff --git a/t/WPD/02873-meta/xip/constituency.xml b/t/A01/02873-meta/xip/constituency.xml
similarity index 100%
rename from t/WPD/02873-meta/xip/constituency.xml
rename to t/A01/02873-meta/xip/constituency.xml
diff --git a/t/WPD/02873-meta/xip/dependency.xml b/t/A01/02873-meta/xip/dependency.xml
similarity index 100%
rename from t/WPD/02873-meta/xip/dependency.xml
rename to t/A01/02873-meta/xip/dependency.xml
diff --git a/t/WPD/02873-meta/xip/metadata.xml b/t/A01/02873-meta/xip/metadata.xml
similarity index 100%
rename from t/WPD/02873-meta/xip/metadata.xml
rename to t/A01/02873-meta/xip/metadata.xml
diff --git a/t/WPD/02873-meta/xip/morpho.xml b/t/A01/02873-meta/xip/morpho.xml
similarity index 100%
rename from t/WPD/02873-meta/xip/morpho.xml
rename to t/A01/02873-meta/xip/morpho.xml
diff --git a/t/WPD/02873-meta/xip/sentences.xml b/t/A01/02873-meta/xip/sentences.xml
similarity index 100%
rename from t/WPD/02873-meta/xip/sentences.xml
rename to t/A01/02873-meta/xip/sentences.xml
diff --git a/t/WPD/02873-meta/xip/tokens.xml b/t/A01/02873-meta/xip/tokens.xml
similarity index 100%
rename from t/WPD/02873-meta/xip/tokens.xml
rename to t/A01/02873-meta/xip/tokens.xml
diff --git a/t/WPD/05663-unbalanced/base/paragraph.xml b/t/A01/05663-unbalanced/base/paragraph.xml
similarity index 100%
rename from t/WPD/05663-unbalanced/base/paragraph.xml
rename to t/A01/05663-unbalanced/base/paragraph.xml
diff --git a/t/WPD/05663-unbalanced/base/sentences.xml b/t/A01/05663-unbalanced/base/sentences.xml
similarity index 100%
rename from t/WPD/05663-unbalanced/base/sentences.xml
rename to t/A01/05663-unbalanced/base/sentences.xml
diff --git a/t/WPD/05663-unbalanced/base/tokens_aggr.xml b/t/A01/05663-unbalanced/base/tokens_aggr.xml
similarity index 100%
rename from t/WPD/05663-unbalanced/base/tokens_aggr.xml
rename to t/A01/05663-unbalanced/base/tokens_aggr.xml
diff --git a/t/WPD/05663-unbalanced/base/tokens_conservative.xml b/t/A01/05663-unbalanced/base/tokens_conservative.xml
similarity index 100%
rename from t/WPD/05663-unbalanced/base/tokens_conservative.xml
rename to t/A01/05663-unbalanced/base/tokens_conservative.xml
diff --git a/t/WPD/05663-unbalanced/connexor/metadata.xml b/t/A01/05663-unbalanced/connexor/metadata.xml
similarity index 100%
rename from t/WPD/05663-unbalanced/connexor/metadata.xml
rename to t/A01/05663-unbalanced/connexor/metadata.xml
diff --git a/t/WPD/05663-unbalanced/connexor/morpho.xml b/t/A01/05663-unbalanced/connexor/morpho.xml
similarity index 100%
rename from t/WPD/05663-unbalanced/connexor/morpho.xml
rename to t/A01/05663-unbalanced/connexor/morpho.xml
diff --git a/t/WPD/05663-unbalanced/connexor/mpt.xml b/t/A01/05663-unbalanced/connexor/mpt.xml
similarity index 100%
rename from t/WPD/05663-unbalanced/connexor/mpt.xml
rename to t/A01/05663-unbalanced/connexor/mpt.xml
diff --git a/t/WPD/05663-unbalanced/connexor/phrase.xml b/t/A01/05663-unbalanced/connexor/phrase.xml
similarity index 100%
rename from t/WPD/05663-unbalanced/connexor/phrase.xml
rename to t/A01/05663-unbalanced/connexor/phrase.xml
diff --git a/t/WPD/05663-unbalanced/connexor/sentences.xml b/t/A01/05663-unbalanced/connexor/sentences.xml
similarity index 100%
rename from t/WPD/05663-unbalanced/connexor/sentences.xml
rename to t/A01/05663-unbalanced/connexor/sentences.xml
diff --git a/t/WPD/05663-unbalanced/connexor/syntax.xml b/t/A01/05663-unbalanced/connexor/syntax.xml
similarity index 100%
rename from t/WPD/05663-unbalanced/connexor/syntax.xml
rename to t/A01/05663-unbalanced/connexor/syntax.xml
diff --git a/t/WPD/05663-unbalanced/connexor/tokens.xml b/t/A01/05663-unbalanced/connexor/tokens.xml
similarity index 100%
rename from t/WPD/05663-unbalanced/connexor/tokens.xml
rename to t/A01/05663-unbalanced/connexor/tokens.xml
diff --git a/t/WPD/05663-unbalanced/corenlp/ne_dewac_175m_600.xml b/t/A01/05663-unbalanced/corenlp/ne_dewac_175m_600.xml
similarity index 100%
rename from t/WPD/05663-unbalanced/corenlp/ne_dewac_175m_600.xml
rename to t/A01/05663-unbalanced/corenlp/ne_dewac_175m_600.xml
diff --git a/t/WPD/05663-unbalanced/corenlp/ne_hgc_175m_600.xml b/t/A01/05663-unbalanced/corenlp/ne_hgc_175m_600.xml
similarity index 100%
rename from t/WPD/05663-unbalanced/corenlp/ne_hgc_175m_600.xml
rename to t/A01/05663-unbalanced/corenlp/ne_hgc_175m_600.xml
diff --git a/t/WPD/05663-unbalanced/corenlp/sentences.xml b/t/A01/05663-unbalanced/corenlp/sentences.xml
similarity index 100%
rename from t/WPD/05663-unbalanced/corenlp/sentences.xml
rename to t/A01/05663-unbalanced/corenlp/sentences.xml
diff --git a/t/WPD/05663-unbalanced/corenlp/tokens.xml b/t/A01/05663-unbalanced/corenlp/tokens.xml
similarity index 100%
rename from t/WPD/05663-unbalanced/corenlp/tokens.xml
rename to t/A01/05663-unbalanced/corenlp/tokens.xml
diff --git a/t/WPD/05663-unbalanced/data.xml b/t/A01/05663-unbalanced/data.xml
similarity index 100%
rename from t/WPD/05663-unbalanced/data.xml
rename to t/A01/05663-unbalanced/data.xml
diff --git a/t/WPD/05663-unbalanced/header.xml b/t/A01/05663-unbalanced/header.xml
similarity index 100%
rename from t/WPD/05663-unbalanced/header.xml
rename to t/A01/05663-unbalanced/header.xml
diff --git a/t/WPD/05663-unbalanced/mate/dependency.xml b/t/A01/05663-unbalanced/mate/dependency.xml
similarity index 100%
rename from t/WPD/05663-unbalanced/mate/dependency.xml
rename to t/A01/05663-unbalanced/mate/dependency.xml
diff --git a/t/WPD/05663-unbalanced/mate/morpho.xml b/t/A01/05663-unbalanced/mate/morpho.xml
similarity index 100%
rename from t/WPD/05663-unbalanced/mate/morpho.xml
rename to t/A01/05663-unbalanced/mate/morpho.xml
diff --git a/t/WPD/05663-unbalanced/mate/pipeline/one_token_per_line.txt b/t/A01/05663-unbalanced/mate/pipeline/one_token_per_line.txt
similarity index 100%
rename from t/WPD/05663-unbalanced/mate/pipeline/one_token_per_line.txt
rename to t/A01/05663-unbalanced/mate/pipeline/one_token_per_line.txt
diff --git a/t/WPD/05663-unbalanced/mate/pipeline/parsed.txt b/t/A01/05663-unbalanced/mate/pipeline/parsed.txt
similarity index 100%
rename from t/WPD/05663-unbalanced/mate/pipeline/parsed.txt
rename to t/A01/05663-unbalanced/mate/pipeline/parsed.txt
diff --git a/t/WPD/05663-unbalanced/mate/tokenSpans/number_tokenSpans.xml b/t/A01/05663-unbalanced/mate/tokenSpans/number_tokenSpans.xml
similarity index 100%
rename from t/WPD/05663-unbalanced/mate/tokenSpans/number_tokenSpans.xml
rename to t/A01/05663-unbalanced/mate/tokenSpans/number_tokenSpans.xml
diff --git a/t/WPD/05663-unbalanced/opennlp/morpho.xml b/t/A01/05663-unbalanced/opennlp/morpho.xml
similarity index 100%
rename from t/WPD/05663-unbalanced/opennlp/morpho.xml
rename to t/A01/05663-unbalanced/opennlp/morpho.xml
diff --git a/t/WPD/05663-unbalanced/opennlp/sentences.xml b/t/A01/05663-unbalanced/opennlp/sentences.xml
similarity index 100%
rename from t/WPD/05663-unbalanced/opennlp/sentences.xml
rename to t/A01/05663-unbalanced/opennlp/sentences.xml
diff --git a/t/WPD/05663-unbalanced/opennlp/tokens.xml b/t/A01/05663-unbalanced/opennlp/tokens.xml
similarity index 100%
rename from t/WPD/05663-unbalanced/opennlp/tokens.xml
rename to t/A01/05663-unbalanced/opennlp/tokens.xml
diff --git a/t/WPD/05663-unbalanced/struct/structure.xml b/t/A01/05663-unbalanced/struct/structure.xml
similarity index 100%
rename from t/WPD/05663-unbalanced/struct/structure.xml
rename to t/A01/05663-unbalanced/struct/structure.xml
diff --git a/t/WPD/05663-unbalanced/text.txt b/t/A01/05663-unbalanced/text.txt
similarity index 100%
rename from t/WPD/05663-unbalanced/text.txt
rename to t/A01/05663-unbalanced/text.txt
diff --git a/t/WPD/05663-unbalanced/tree_tagger/metadata.xml b/t/A01/05663-unbalanced/tree_tagger/metadata.xml
similarity index 100%
rename from t/WPD/05663-unbalanced/tree_tagger/metadata.xml
rename to t/A01/05663-unbalanced/tree_tagger/metadata.xml
diff --git a/t/WPD/05663-unbalanced/tree_tagger/morpho.xml b/t/A01/05663-unbalanced/tree_tagger/morpho.xml
similarity index 100%
rename from t/WPD/05663-unbalanced/tree_tagger/morpho.xml
rename to t/A01/05663-unbalanced/tree_tagger/morpho.xml
diff --git a/t/WPD/05663-unbalanced/tree_tagger/sentences.xml b/t/A01/05663-unbalanced/tree_tagger/sentences.xml
similarity index 100%
rename from t/WPD/05663-unbalanced/tree_tagger/sentences.xml
rename to t/A01/05663-unbalanced/tree_tagger/sentences.xml
diff --git a/t/WPD/05663-unbalanced/tree_tagger/tokens.xml b/t/A01/05663-unbalanced/tree_tagger/tokens.xml
similarity index 100%
rename from t/WPD/05663-unbalanced/tree_tagger/tokens.xml
rename to t/A01/05663-unbalanced/tree_tagger/tokens.xml
diff --git a/t/WPD/05663-unbalanced/xip/constituency.xml b/t/A01/05663-unbalanced/xip/constituency.xml
similarity index 100%
rename from t/WPD/05663-unbalanced/xip/constituency.xml
rename to t/A01/05663-unbalanced/xip/constituency.xml
diff --git a/t/WPD/05663-unbalanced/xip/dependency.xml b/t/A01/05663-unbalanced/xip/dependency.xml
similarity index 100%
rename from t/WPD/05663-unbalanced/xip/dependency.xml
rename to t/A01/05663-unbalanced/xip/dependency.xml
diff --git a/t/WPD/05663-unbalanced/xip/metadata.xml b/t/A01/05663-unbalanced/xip/metadata.xml
similarity index 100%
rename from t/WPD/05663-unbalanced/xip/metadata.xml
rename to t/A01/05663-unbalanced/xip/metadata.xml
diff --git a/t/WPD/05663-unbalanced/xip/morpho.xml b/t/A01/05663-unbalanced/xip/morpho.xml
similarity index 100%
rename from t/WPD/05663-unbalanced/xip/morpho.xml
rename to t/A01/05663-unbalanced/xip/morpho.xml
diff --git a/t/WPD/05663-unbalanced/xip/sentences.xml b/t/A01/05663-unbalanced/xip/sentences.xml
similarity index 100%
rename from t/WPD/05663-unbalanced/xip/sentences.xml
rename to t/A01/05663-unbalanced/xip/sentences.xml
diff --git a/t/WPD/05663-unbalanced/xip/tokens.xml b/t/A01/05663-unbalanced/xip/tokens.xml
similarity index 100%
rename from t/WPD/05663-unbalanced/xip/tokens.xml
rename to t/A01/05663-unbalanced/xip/tokens.xml
diff --git a/t/WPD/07452-deep/base/paragraph.xml b/t/A01/07452-deep/base/paragraph.xml
similarity index 100%
rename from t/WPD/07452-deep/base/paragraph.xml
rename to t/A01/07452-deep/base/paragraph.xml
diff --git a/t/WPD/07452-deep/base/sentences.xml b/t/A01/07452-deep/base/sentences.xml
similarity index 100%
rename from t/WPD/07452-deep/base/sentences.xml
rename to t/A01/07452-deep/base/sentences.xml
diff --git a/t/WPD/07452-deep/base/tokens_aggr.xml b/t/A01/07452-deep/base/tokens_aggr.xml
similarity index 100%
rename from t/WPD/07452-deep/base/tokens_aggr.xml
rename to t/A01/07452-deep/base/tokens_aggr.xml
diff --git a/t/WPD/07452-deep/base/tokens_conservative.xml b/t/A01/07452-deep/base/tokens_conservative.xml
similarity index 100%
rename from t/WPD/07452-deep/base/tokens_conservative.xml
rename to t/A01/07452-deep/base/tokens_conservative.xml
diff --git a/t/WPD/07452-deep/connexor/metadata.xml b/t/A01/07452-deep/connexor/metadata.xml
similarity index 100%
rename from t/WPD/07452-deep/connexor/metadata.xml
rename to t/A01/07452-deep/connexor/metadata.xml
diff --git a/t/WPD/07452-deep/connexor/morpho.xml b/t/A01/07452-deep/connexor/morpho.xml
similarity index 100%
rename from t/WPD/07452-deep/connexor/morpho.xml
rename to t/A01/07452-deep/connexor/morpho.xml
diff --git a/t/WPD/07452-deep/connexor/mpt.xml b/t/A01/07452-deep/connexor/mpt.xml
similarity index 100%
rename from t/WPD/07452-deep/connexor/mpt.xml
rename to t/A01/07452-deep/connexor/mpt.xml
diff --git a/t/WPD/07452-deep/connexor/phrase.xml b/t/A01/07452-deep/connexor/phrase.xml
similarity index 100%
rename from t/WPD/07452-deep/connexor/phrase.xml
rename to t/A01/07452-deep/connexor/phrase.xml
diff --git a/t/WPD/07452-deep/connexor/sentences.xml b/t/A01/07452-deep/connexor/sentences.xml
similarity index 100%
rename from t/WPD/07452-deep/connexor/sentences.xml
rename to t/A01/07452-deep/connexor/sentences.xml
diff --git a/t/WPD/07452-deep/connexor/syntax.xml b/t/A01/07452-deep/connexor/syntax.xml
similarity index 100%
rename from t/WPD/07452-deep/connexor/syntax.xml
rename to t/A01/07452-deep/connexor/syntax.xml
diff --git a/t/WPD/07452-deep/connexor/tokens.xml b/t/A01/07452-deep/connexor/tokens.xml
similarity index 100%
rename from t/WPD/07452-deep/connexor/tokens.xml
rename to t/A01/07452-deep/connexor/tokens.xml
diff --git a/t/WPD/07452-deep/corenlp/ne_dewac_175m_600.xml b/t/A01/07452-deep/corenlp/ne_dewac_175m_600.xml
similarity index 100%
rename from t/WPD/07452-deep/corenlp/ne_dewac_175m_600.xml
rename to t/A01/07452-deep/corenlp/ne_dewac_175m_600.xml
diff --git a/t/WPD/07452-deep/corenlp/ne_hgc_175m_600.xml b/t/A01/07452-deep/corenlp/ne_hgc_175m_600.xml
similarity index 100%
rename from t/WPD/07452-deep/corenlp/ne_hgc_175m_600.xml
rename to t/A01/07452-deep/corenlp/ne_hgc_175m_600.xml
diff --git a/t/WPD/07452-deep/corenlp/sentences.xml b/t/A01/07452-deep/corenlp/sentences.xml
similarity index 100%
rename from t/WPD/07452-deep/corenlp/sentences.xml
rename to t/A01/07452-deep/corenlp/sentences.xml
diff --git a/t/WPD/07452-deep/corenlp/tokens.xml b/t/A01/07452-deep/corenlp/tokens.xml
similarity index 100%
rename from t/WPD/07452-deep/corenlp/tokens.xml
rename to t/A01/07452-deep/corenlp/tokens.xml
diff --git a/t/WPD/07452-deep/data.xml b/t/A01/07452-deep/data.xml
similarity index 100%
rename from t/WPD/07452-deep/data.xml
rename to t/A01/07452-deep/data.xml
diff --git a/t/WPD/07452-deep/header.xml b/t/A01/07452-deep/header.xml
similarity index 100%
rename from t/WPD/07452-deep/header.xml
rename to t/A01/07452-deep/header.xml
diff --git a/t/WPD/07452-deep/mate/dependency.xml b/t/A01/07452-deep/mate/dependency.xml
similarity index 100%
rename from t/WPD/07452-deep/mate/dependency.xml
rename to t/A01/07452-deep/mate/dependency.xml
diff --git a/t/WPD/07452-deep/mate/morpho.xml b/t/A01/07452-deep/mate/morpho.xml
similarity index 100%
rename from t/WPD/07452-deep/mate/morpho.xml
rename to t/A01/07452-deep/mate/morpho.xml
diff --git a/t/WPD/07452-deep/mate/pipeline/one_token_per_line.txt b/t/A01/07452-deep/mate/pipeline/one_token_per_line.txt
similarity index 100%
rename from t/WPD/07452-deep/mate/pipeline/one_token_per_line.txt
rename to t/A01/07452-deep/mate/pipeline/one_token_per_line.txt
diff --git a/t/WPD/07452-deep/mate/pipeline/parsed.txt b/t/A01/07452-deep/mate/pipeline/parsed.txt
similarity index 100%
rename from t/WPD/07452-deep/mate/pipeline/parsed.txt
rename to t/A01/07452-deep/mate/pipeline/parsed.txt
diff --git a/t/WPD/07452-deep/mate/tokenSpans/number_tokenSpans.xml b/t/A01/07452-deep/mate/tokenSpans/number_tokenSpans.xml
similarity index 100%
rename from t/WPD/07452-deep/mate/tokenSpans/number_tokenSpans.xml
rename to t/A01/07452-deep/mate/tokenSpans/number_tokenSpans.xml
diff --git a/t/WPD/07452-deep/opennlp/morpho.xml b/t/A01/07452-deep/opennlp/morpho.xml
similarity index 100%
rename from t/WPD/07452-deep/opennlp/morpho.xml
rename to t/A01/07452-deep/opennlp/morpho.xml
diff --git a/t/WPD/07452-deep/opennlp/sentences.xml b/t/A01/07452-deep/opennlp/sentences.xml
similarity index 100%
rename from t/WPD/07452-deep/opennlp/sentences.xml
rename to t/A01/07452-deep/opennlp/sentences.xml
diff --git a/t/WPD/07452-deep/opennlp/tokens.xml b/t/A01/07452-deep/opennlp/tokens.xml
similarity index 100%
rename from t/WPD/07452-deep/opennlp/tokens.xml
rename to t/A01/07452-deep/opennlp/tokens.xml
diff --git a/t/WPD/07452-deep/struct/structure.xml b/t/A01/07452-deep/struct/structure.xml
similarity index 100%
rename from t/WPD/07452-deep/struct/structure.xml
rename to t/A01/07452-deep/struct/structure.xml
diff --git a/t/WPD/07452-deep/text.txt b/t/A01/07452-deep/text.txt
similarity index 100%
rename from t/WPD/07452-deep/text.txt
rename to t/A01/07452-deep/text.txt
diff --git a/t/WPD/07452-deep/tree_tagger/metadata.xml b/t/A01/07452-deep/tree_tagger/metadata.xml
similarity index 100%
rename from t/WPD/07452-deep/tree_tagger/metadata.xml
rename to t/A01/07452-deep/tree_tagger/metadata.xml
diff --git a/t/WPD/07452-deep/tree_tagger/morpho.xml b/t/A01/07452-deep/tree_tagger/morpho.xml
similarity index 100%
rename from t/WPD/07452-deep/tree_tagger/morpho.xml
rename to t/A01/07452-deep/tree_tagger/morpho.xml
diff --git a/t/WPD/07452-deep/tree_tagger/sentences.xml b/t/A01/07452-deep/tree_tagger/sentences.xml
similarity index 100%
rename from t/WPD/07452-deep/tree_tagger/sentences.xml
rename to t/A01/07452-deep/tree_tagger/sentences.xml
diff --git a/t/WPD/07452-deep/tree_tagger/tokens.xml b/t/A01/07452-deep/tree_tagger/tokens.xml
similarity index 100%
rename from t/WPD/07452-deep/tree_tagger/tokens.xml
rename to t/A01/07452-deep/tree_tagger/tokens.xml
diff --git a/t/WPD/07452-deep/xip/constituency.xml b/t/A01/07452-deep/xip/constituency.xml
similarity index 100%
rename from t/WPD/07452-deep/xip/constituency.xml
rename to t/A01/07452-deep/xip/constituency.xml
diff --git a/t/WPD/07452-deep/xip/dependency.xml b/t/A01/07452-deep/xip/dependency.xml
similarity index 100%
rename from t/WPD/07452-deep/xip/dependency.xml
rename to t/A01/07452-deep/xip/dependency.xml
diff --git a/t/WPD/07452-deep/xip/metadata.xml b/t/A01/07452-deep/xip/metadata.xml
similarity index 100%
rename from t/WPD/07452-deep/xip/metadata.xml
rename to t/A01/07452-deep/xip/metadata.xml
diff --git a/t/WPD/07452-deep/xip/morpho.xml b/t/A01/07452-deep/xip/morpho.xml
similarity index 100%
rename from t/WPD/07452-deep/xip/morpho.xml
rename to t/A01/07452-deep/xip/morpho.xml
diff --git a/t/WPD/07452-deep/xip/sentences.xml b/t/A01/07452-deep/xip/sentences.xml
similarity index 100%
rename from t/WPD/07452-deep/xip/sentences.xml
rename to t/A01/07452-deep/xip/sentences.xml
diff --git a/t/WPD/07452-deep/xip/tokens.xml b/t/A01/07452-deep/xip/tokens.xml
similarity index 100%
rename from t/WPD/07452-deep/xip/tokens.xml
rename to t/A01/07452-deep/xip/tokens.xml
diff --git a/t/A01/13047/base/metadata.xml b/t/A01/13047/base/metadata.xml
new file mode 100644
index 0000000..5d38dae
--- /dev/null
+++ b/t/A01/13047/base/metadata.xml
@@ -0,0 +1,12 @@
+<?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="A01_APR.13047" type="foundry" xmlns="http://ids-mannheim.de/ns/KorAP">
+  <doc file="../data.xml" />
+  <foundry name="base">
+    <layer segm="para" file="paragraph.xml" name="para" id="l1" />
+    <layer segm="s" file="sentences.xml" name="sent" id="l2" />
+    <layer segm="tok" file="tokens_aggr.xml" name="aggr" id="l3" />
+    <layer segm="tok" file="tokens_conservative.xml" name="cons" id="l4" />
+  </foundry>
+</metadata>
diff --git a/t/A01/13047/base/paragraph.xml b/t/A01/13047/base/paragraph.xml
new file mode 100644
index 0000000..7e92d1b
--- /dev/null
+++ b/t/A01/13047/base/paragraph.xml
@@ -0,0 +1,10 @@
+<?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="A01_APR.13047" xmlns="http://ids-mannheim.de/ns/KorAP" version="KorAP-0.4">
+  <spanList>
+    <span from="43" to="633" />
+    <span from="665" to="1008" />
+    <span from="1051" to="1327" />
+  </spanList>
+</layer>
diff --git a/t/A01/13047/base/sentences.xml b/t/A01/13047/base/sentences.xml
new file mode 100644
index 0000000..ca1fb9c
--- /dev/null
+++ b/t/A01/13047/base/sentences.xml
@@ -0,0 +1,22 @@
+<?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="A01_APR.13047" xmlns="http://ids-mannheim.de/ns/KorAP" version="KorAP-0.4">
+  <spanList>
+    <span from="0" to="31" />
+    <span from="32" to="42" />
+    <span from="43" to="172" />
+    <span from="173" to="364" />
+    <span from="365" to="477" />
+    <span from="478" to="633" />
+    <span from="634" to="658" />
+    <span from="659" to="664" />
+    <span from="665" to="789" />
+    <span from="790" to="865" />
+    <span from="866" to="1008" />
+    <span from="1009" to="1036" />
+    <span from="1037" to="1050" />
+    <span from="1051" to="1220" />
+    <span from="1221" to="1327" />
+  </spanList>
+</layer>
diff --git a/t/A01/13047/base/tokens_aggr.xml b/t/A01/13047/base/tokens_aggr.xml
new file mode 100644
index 0000000..9233dec
--- /dev/null
+++ b/t/A01/13047/base/tokens_aggr.xml
@@ -0,0 +1,245 @@
+<?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="A01_APR.13047" 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="16" />
+    <span id="t_3" from="17" to="19" />
+    <span id="t_4" from="20" to="31" />
+    <span id="t_5" from="32" to="41" />
+    <span id="t_6" from="41" to="42" />
+    <span id="t_7" from="43" to="46" />
+    <span id="t_8" from="47" to="54" />
+    <span id="t_9" from="55" to="66" />
+    <span id="t_10" from="67" to="73" />
+    <span id="t_11" from="74" to="78" />
+    <span id="t_12" from="79" to="82" />
+    <span id="t_13" from="83" to="90" />
+    <span id="t_14" from="91" to="94" />
+    <span id="t_15" from="95" to="106" />
+    <span id="t_16" from="107" to="116" />
+    <span id="t_17" from="117" to="120" />
+    <span id="t_18" from="120" to="121" />
+    <span id="t_19" from="122" to="127" />
+    <span id="t_20" from="128" to="131" />
+    <span id="t_21" from="132" to="139" />
+    <span id="t_22" from="140" to="144" />
+    <span id="t_23" from="145" to="154" />
+    <span id="t_24" from="155" to="166" />
+    <span id="t_25" from="167" to="171" />
+    <span id="t_26" from="171" to="172" />
+    <span id="t_27" from="173" to="175" />
+    <span id="t_28" from="176" to="185" />
+    <span id="t_29" from="186" to="193" />
+    <span id="t_30" from="193" to="194" />
+    <span id="t_31" from="195" to="196" />
+    <span id="t_32" from="196" to="197" />
+    <span id="t_33" from="198" to="203" />
+    <span id="t_34" from="203" to="204" />
+    <span id="t_35" from="205" to="211" />
+    <span id="t_36" from="212" to="214" />
+    <span id="t_37" from="215" to="217" />
+    <span id="t_38" from="217" to="218" />
+    <span id="t_39" from="218" to="220" />
+    <span id="t_40" from="221" to="224" />
+    <span id="t_41" from="225" to="228" />
+    <span id="t_42" from="229" to="239" />
+    <span id="t_43" from="240" to="243" />
+    <span id="t_44" from="244" to="255" />
+    <span id="t_45" from="256" to="259" />
+    <span id="t_46" from="260" to="266" />
+    <span id="t_47" from="267" to="274" />
+    <span id="t_48" from="275" to="276" />
+    <span id="t_49" from="276" to="282" />
+    <span id="t_50" from="282" to="283" />
+    <span id="t_51" from="284" to="287" />
+    <span id="t_52" from="288" to="293" />
+    <span id="t_53" from="294" to="298" />
+    <span id="t_54" from="299" to="300" />
+    <span id="t_55" from="300" to="313" />
+    <span id="t_56" from="314" to="317" />
+    <span id="t_57" from="318" to="331" />
+    <span id="t_58" from="331" to="332" />
+    <span id="t_59" from="333" to="335" />
+    <span id="t_60" from="336" to="345" />
+    <span id="t_61" from="346" to="357" />
+    <span id="t_62" from="358" to="363" />
+    <span id="t_63" from="363" to="364" />
+    <span id="t_64" from="365" to="368" />
+    <span id="t_65" from="369" to="372" />
+    <span id="t_66" from="373" to="385" />
+    <span id="t_67" from="386" to="395" />
+    <span id="t_68" from="396" to="402" />
+    <span id="t_69" from="403" to="409" />
+    <span id="t_70" from="410" to="416" />
+    <span id="t_71" from="417" to="420" />
+    <span id="t_72" from="421" to="425" />
+    <span id="t_73" from="426" to="432" />
+    <span id="t_74" from="432" to="433" />
+    <span id="t_75" from="434" to="445" />
+    <span id="t_76" from="446" to="451" />
+    <span id="t_77" from="452" to="459" />
+    <span id="t_78" from="460" to="465" />
+    <span id="t_79" from="466" to="476" />
+    <span id="t_80" from="476" to="477" />
+    <span id="t_81" from="478" to="481" />
+    <span id="t_82" from="482" to="493" />
+    <span id="t_83" from="494" to="500" />
+    <span id="t_84" from="501" to="504" />
+    <span id="t_85" from="505" to="507" />
+    <span id="t_86" from="508" to="510" />
+    <span id="t_87" from="510" to="511" />
+    <span id="t_88" from="512" to="517" />
+    <span id="t_89" from="518" to="521" />
+    <span id="t_90" from="522" to="525" />
+    <span id="t_91" from="526" to="528" />
+    <span id="t_92" from="529" to="536" />
+    <span id="t_93" from="537" to="540" />
+    <span id="t_94" from="541" to="548" />
+    <span id="t_95" from="549" to="552" />
+    <span id="t_96" from="553" to="555" />
+    <span id="t_97" from="555" to="556" />
+    <span id="t_98" from="556" to="558" />
+    <span id="t_99" from="559" to="562" />
+    <span id="t_100" from="563" to="565" />
+    <span id="t_101" from="565" to="566" />
+    <span id="t_102" from="566" to="568" />
+    <span id="t_103" from="569" to="572" />
+    <span id="t_104" from="573" to="578" />
+    <span id="t_105" from="579" to="585" />
+    <span id="t_106" from="586" to="589" />
+    <span id="t_107" from="590" to="597" />
+    <span id="t_108" from="598" to="601" />
+    <span id="t_109" from="602" to="604" />
+    <span id="t_110" from="604" to="605" />
+    <span id="t_111" from="605" to="607" />
+    <span id="t_112" from="608" to="611" />
+    <span id="t_113" from="612" to="614" />
+    <span id="t_114" from="614" to="615" />
+    <span id="t_115" from="615" to="617" />
+    <span id="t_116" from="617" to="620" />
+    <span id="t_117" from="621" to="629" />
+    <span id="t_118" from="629" to="630" />
+    <span id="t_119" from="630" to="632" />
+    <span id="t_120" from="632" to="633" />
+    <span id="t_121" from="634" to="642" />
+    <span id="t_122" from="643" to="658" />
+    <span id="t_123" from="659" to="663" />
+    <span id="t_124" from="663" to="664" />
+    <span id="t_125" from="665" to="668" />
+    <span id="t_126" from="669" to="689" />
+    <span id="t_127" from="690" to="695" />
+    <span id="t_128" from="696" to="699" />
+    <span id="t_129" from="699" to="700" />
+    <span id="t_130" from="701" to="705" />
+    <span id="t_131" from="706" to="713" />
+    <span id="t_132" from="714" to="724" />
+    <span id="t_133" from="725" to="729" />
+    <span id="t_134" from="730" to="747" />
+    <span id="t_135" from="748" to="751" />
+    <span id="t_136" from="752" to="755" />
+    <span id="t_137" from="756" to="774" />
+    <span id="t_138" from="775" to="784" />
+    <span id="t_139" from="785" to="788" />
+    <span id="t_140" from="788" to="789" />
+    <span id="t_141" from="790" to="793" />
+    <span id="t_142" from="794" to="797" />
+    <span id="t_143" from="798" to="802" />
+    <span id="t_144" from="803" to="806" />
+    <span id="t_145" from="807" to="816" />
+    <span id="t_146" from="817" to="826" />
+    <span id="t_147" from="827" to="831" />
+    <span id="t_148" from="832" to="835" />
+    <span id="t_149" from="836" to="839" />
+    <span id="t_150" from="840" to="845" />
+    <span id="t_151" from="846" to="850" />
+    <span id="t_152" from="851" to="864" />
+    <span id="t_153" from="864" to="865" />
+    <span id="t_154" from="866" to="869" />
+    <span id="t_155" from="870" to="875" />
+    <span id="t_156" from="876" to="892" />
+    <span id="t_157" from="893" to="898" />
+    <span id="t_158" from="899" to="902" />
+    <span id="t_159" from="903" to="909" />
+    <span id="t_160" from="910" to="913" />
+    <span id="t_161" from="914" to="927" />
+    <span id="t_162" from="928" to="935" />
+    <span id="t_163" from="936" to="940" />
+    <span id="t_164" from="940" to="941" />
+    <span id="t_165" from="941" to="947" />
+    <span id="t_166" from="947" to="948" />
+    <span id="t_167" from="949" to="957" />
+    <span id="t_168" from="958" to="962" />
+    <span id="t_169" from="962" to="963" />
+    <span id="t_170" from="964" to="986" />
+    <span id="t_171" from="986" to="987" />
+    <span id="t_172" from="988" to="995" />
+    <span id="t_173" from="995" to="996" />
+    <span id="t_174" from="997" to="1004" />
+    <span id="t_175" from="1004" to="1005" />
+    <span id="t_176" from="1005" to="1007" />
+    <span id="t_177" from="1007" to="1008" />
+    <span id="t_178" from="1009" to="1025" />
+    <span id="t_179" from="1026" to="1029" />
+    <span id="t_180" from="1030" to="1036" />
+    <span id="t_181" from="1037" to="1049" />
+    <span id="t_182" from="1049" to="1050" />
+    <span id="t_183" from="1051" to="1054" />
+    <span id="t_184" from="1055" to="1056" />
+    <span id="t_185" from="1056" to="1064" />
+    <span id="t_186" from="1065" to="1070" />
+    <span id="t_187" from="1070" to="1071" />
+    <span id="t_188" from="1072" to="1076" />
+    <span id="t_189" from="1077" to="1079" />
+    <span id="t_190" from="1080" to="1085" />
+    <span id="t_191" from="1086" to="1090" />
+    <span id="t_192" from="1091" to="1094" />
+    <span id="t_193" from="1094" to="1095" />
+    <span id="t_194" from="1096" to="1098" />
+    <span id="t_195" from="1099" to="1102" />
+    <span id="t_196" from="1103" to="1109" />
+    <span id="t_197" from="1110" to="1122" />
+    <span id="t_198" from="1123" to="1129" />
+    <span id="t_199" from="1130" to="1134" />
+    <span id="t_200" from="1134" to="1135" />
+    <span id="t_201" from="1136" to="1139" />
+    <span id="t_202" from="1140" to="1143" />
+    <span id="t_203" from="1144" to="1152" />
+    <span id="t_204" from="1153" to="1156" />
+    <span id="t_205" from="1157" to="1168" />
+    <span id="t_206" from="1169" to="1177" />
+    <span id="t_207" from="1177" to="1178" />
+    <span id="t_208" from="1179" to="1182" />
+    <span id="t_209" from="1183" to="1195" />
+    <span id="t_210" from="1196" to="1199" />
+    <span id="t_211" from="1200" to="1207" />
+    <span id="t_212" from="1208" to="1214" />
+    <span id="t_213" from="1215" to="1219" />
+    <span id="t_214" from="1219" to="1220" />
+    <span id="t_215" from="1221" to="1224" />
+    <span id="t_216" from="1225" to="1237" />
+    <span id="t_217" from="1238" to="1243" />
+    <span id="t_218" from="1244" to="1247" />
+    <span id="t_219" from="1248" to="1252" />
+    <span id="t_220" from="1253" to="1258" />
+    <span id="t_221" from="1259" to="1262" />
+    <span id="t_222" from="1263" to="1268" />
+    <span id="t_223" from="1269" to="1274" />
+    <span id="t_224" from="1274" to="1275" />
+    <span id="t_225" from="1276" to="1279" />
+    <span id="t_226" from="1279" to="1280" />
+    <span id="t_227" from="1281" to="1284" />
+    <span id="t_228" from="1285" to="1287" />
+    <span id="t_229" from="1288" to="1290" />
+    <span id="t_230" from="1290" to="1291" />
+    <span id="t_231" from="1292" to="1295" />
+    <span id="t_232" from="1296" to="1310" />
+    <span id="t_233" from="1311" to="1314" />
+    <span id="t_234" from="1315" to="1323" />
+    <span id="t_235" from="1323" to="1324" />
+    <span id="t_236" from="1324" to="1326" />
+    <span id="t_237" from="1326" to="1327" />
+  </spanList>
+</layer>
diff --git a/t/A01/13047/base/tokens_conservative.xml b/t/A01/13047/base/tokens_conservative.xml
new file mode 100644
index 0000000..78b2136
--- /dev/null
+++ b/t/A01/13047/base/tokens_conservative.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 docid="A01_APR.13047" 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="16" />
+    <span id="t_3" from="17" to="19" />
+    <span id="t_4" from="20" to="31" />
+    <span id="t_5" from="32" to="41" />
+    <span id="t_6" from="41" to="42" />
+    <span id="t_7" from="43" to="46" />
+    <span id="t_8" from="47" to="54" />
+    <span id="t_9" from="55" to="66" />
+    <span id="t_10" from="67" to="73" />
+    <span id="t_11" from="74" to="78" />
+    <span id="t_12" from="79" to="82" />
+    <span id="t_13" from="83" to="90" />
+    <span id="t_14" from="91" to="94" />
+    <span id="t_15" from="95" to="106" />
+    <span id="t_16" from="107" to="116" />
+    <span id="t_17" from="117" to="120" />
+    <span id="t_18" from="120" to="121" />
+    <span id="t_19" from="122" to="127" />
+    <span id="t_20" from="128" to="131" />
+    <span id="t_21" from="132" to="139" />
+    <span id="t_22" from="140" to="144" />
+    <span id="t_23" from="145" to="154" />
+    <span id="t_24" from="155" to="166" />
+    <span id="t_25" from="167" to="171" />
+    <span id="t_26" from="171" to="172" />
+    <span id="t_27" from="173" to="175" />
+    <span id="t_28" from="176" to="185" />
+    <span id="t_29" from="186" to="193" />
+    <span id="t_30" from="193" to="194" />
+    <span id="t_31" from="195" to="196" />
+    <span id="t_32" from="196" to="197" />
+    <span id="t_33" from="198" to="203" />
+    <span id="t_34" from="203" to="204" />
+    <span id="t_35" from="205" to="211" />
+    <span id="t_36" from="212" to="214" />
+    <span id="t_37" from="215" to="220" />
+    <span id="t_38" from="221" to="224" />
+    <span id="t_39" from="225" to="228" />
+    <span id="t_40" from="229" to="239" />
+    <span id="t_41" from="240" to="243" />
+    <span id="t_42" from="244" to="255" />
+    <span id="t_43" from="256" to="259" />
+    <span id="t_44" from="260" to="266" />
+    <span id="t_45" from="267" to="274" />
+    <span id="t_46" from="275" to="276" />
+    <span id="t_47" from="276" to="282" />
+    <span id="t_48" from="282" to="283" />
+    <span id="t_49" from="284" to="287" />
+    <span id="t_50" from="288" to="293" />
+    <span id="t_51" from="294" to="298" />
+    <span id="t_52" from="299" to="300" />
+    <span id="t_53" from="300" to="313" />
+    <span id="t_54" from="314" to="317" />
+    <span id="t_55" from="318" to="331" />
+    <span id="t_56" from="331" to="332" />
+    <span id="t_57" from="333" to="335" />
+    <span id="t_58" from="336" to="345" />
+    <span id="t_59" from="346" to="357" />
+    <span id="t_60" from="358" to="363" />
+    <span id="t_61" from="363" to="364" />
+    <span id="t_62" from="365" to="368" />
+    <span id="t_63" from="369" to="372" />
+    <span id="t_64" from="373" to="385" />
+    <span id="t_65" from="386" to="395" />
+    <span id="t_66" from="396" to="402" />
+    <span id="t_67" from="403" to="409" />
+    <span id="t_68" from="410" to="416" />
+    <span id="t_69" from="417" to="420" />
+    <span id="t_70" from="421" to="425" />
+    <span id="t_71" from="426" to="432" />
+    <span id="t_72" from="432" to="433" />
+    <span id="t_73" from="434" to="445" />
+    <span id="t_74" from="446" to="451" />
+    <span id="t_75" from="452" to="459" />
+    <span id="t_76" from="460" to="465" />
+    <span id="t_77" from="466" to="476" />
+    <span id="t_78" from="476" to="477" />
+    <span id="t_79" from="478" to="481" />
+    <span id="t_80" from="482" to="493" />
+    <span id="t_81" from="494" to="500" />
+    <span id="t_82" from="501" to="504" />
+    <span id="t_83" from="505" to="507" />
+    <span id="t_84" from="508" to="510" />
+    <span id="t_85" from="510" to="511" />
+    <span id="t_86" from="512" to="517" />
+    <span id="t_87" from="518" to="521" />
+    <span id="t_88" from="522" to="525" />
+    <span id="t_89" from="526" to="528" />
+    <span id="t_90" from="529" to="536" />
+    <span id="t_91" from="537" to="540" />
+    <span id="t_92" from="541" to="548" />
+    <span id="t_93" from="549" to="552" />
+    <span id="t_94" from="553" to="558" />
+    <span id="t_95" from="559" to="562" />
+    <span id="t_96" from="563" to="568" />
+    <span id="t_97" from="569" to="572" />
+    <span id="t_98" from="573" to="578" />
+    <span id="t_99" from="579" to="585" />
+    <span id="t_100" from="586" to="589" />
+    <span id="t_101" from="590" to="597" />
+    <span id="t_102" from="598" to="601" />
+    <span id="t_103" from="602" to="607" />
+    <span id="t_104" from="608" to="611" />
+    <span id="t_105" from="612" to="620" />
+    <span id="t_106" from="621" to="632" />
+    <span id="t_107" from="632" to="633" />
+    <span id="t_108" from="634" to="642" />
+    <span id="t_109" from="643" to="658" />
+    <span id="t_110" from="659" to="663" />
+    <span id="t_111" from="663" to="664" />
+    <span id="t_112" from="665" to="668" />
+    <span id="t_113" from="669" to="689" />
+    <span id="t_114" from="690" to="695" />
+    <span id="t_115" from="696" to="699" />
+    <span id="t_116" from="699" to="700" />
+    <span id="t_117" from="701" to="705" />
+    <span id="t_118" from="706" to="713" />
+    <span id="t_119" from="714" to="724" />
+    <span id="t_120" from="725" to="729" />
+    <span id="t_121" from="730" to="747" />
+    <span id="t_122" from="748" to="751" />
+    <span id="t_123" from="752" to="755" />
+    <span id="t_124" from="756" to="774" />
+    <span id="t_125" from="775" to="784" />
+    <span id="t_126" from="785" to="788" />
+    <span id="t_127" from="788" to="789" />
+    <span id="t_128" from="790" to="793" />
+    <span id="t_129" from="794" to="797" />
+    <span id="t_130" from="798" to="802" />
+    <span id="t_131" from="803" to="806" />
+    <span id="t_132" from="807" to="816" />
+    <span id="t_133" from="817" to="826" />
+    <span id="t_134" from="827" to="831" />
+    <span id="t_135" from="832" to="835" />
+    <span id="t_136" from="836" to="839" />
+    <span id="t_137" from="840" to="845" />
+    <span id="t_138" from="846" to="850" />
+    <span id="t_139" from="851" to="864" />
+    <span id="t_140" from="864" to="865" />
+    <span id="t_141" from="866" to="869" />
+    <span id="t_142" from="870" to="875" />
+    <span id="t_143" from="876" to="892" />
+    <span id="t_144" from="893" to="898" />
+    <span id="t_145" from="899" to="902" />
+    <span id="t_146" from="903" to="909" />
+    <span id="t_147" from="910" to="913" />
+    <span id="t_148" from="914" to="927" />
+    <span id="t_149" from="928" to="935" />
+    <span id="t_150" from="936" to="947" />
+    <span id="t_151" from="947" to="948" />
+    <span id="t_152" from="949" to="957" />
+    <span id="t_153" from="958" to="962" />
+    <span id="t_154" from="962" to="963" />
+    <span id="t_155" from="964" to="986" />
+    <span id="t_156" from="986" to="987" />
+    <span id="t_157" from="988" to="995" />
+    <span id="t_158" from="995" to="996" />
+    <span id="t_159" from="997" to="1007" />
+    <span id="t_160" from="1007" to="1008" />
+    <span id="t_161" from="1009" to="1025" />
+    <span id="t_162" from="1026" to="1029" />
+    <span id="t_163" from="1030" to="1036" />
+    <span id="t_164" from="1037" to="1049" />
+    <span id="t_165" from="1049" to="1050" />
+    <span id="t_166" from="1051" to="1054" />
+    <span id="t_167" from="1055" to="1056" />
+    <span id="t_168" from="1056" to="1064" />
+    <span id="t_169" from="1065" to="1070" />
+    <span id="t_170" from="1070" to="1071" />
+    <span id="t_171" from="1072" to="1076" />
+    <span id="t_172" from="1077" to="1079" />
+    <span id="t_173" from="1080" to="1085" />
+    <span id="t_174" from="1086" to="1090" />
+    <span id="t_175" from="1091" to="1094" />
+    <span id="t_176" from="1094" to="1095" />
+    <span id="t_177" from="1096" to="1098" />
+    <span id="t_178" from="1099" to="1102" />
+    <span id="t_179" from="1103" to="1109" />
+    <span id="t_180" from="1110" to="1122" />
+    <span id="t_181" from="1123" to="1129" />
+    <span id="t_182" from="1130" to="1134" />
+    <span id="t_183" from="1134" to="1135" />
+    <span id="t_184" from="1136" to="1139" />
+    <span id="t_185" from="1140" to="1143" />
+    <span id="t_186" from="1144" to="1152" />
+    <span id="t_187" from="1153" to="1156" />
+    <span id="t_188" from="1157" to="1168" />
+    <span id="t_189" from="1169" to="1177" />
+    <span id="t_190" from="1177" to="1178" />
+    <span id="t_191" from="1179" to="1182" />
+    <span id="t_192" from="1183" to="1195" />
+    <span id="t_193" from="1196" to="1199" />
+    <span id="t_194" from="1200" to="1207" />
+    <span id="t_195" from="1208" to="1214" />
+    <span id="t_196" from="1215" to="1219" />
+    <span id="t_197" from="1219" to="1220" />
+    <span id="t_198" from="1221" to="1224" />
+    <span id="t_199" from="1225" to="1237" />
+    <span id="t_200" from="1238" to="1243" />
+    <span id="t_201" from="1244" to="1247" />
+    <span id="t_202" from="1248" to="1252" />
+    <span id="t_203" from="1253" to="1258" />
+    <span id="t_204" from="1259" to="1262" />
+    <span id="t_205" from="1263" to="1268" />
+    <span id="t_206" from="1269" to="1274" />
+    <span id="t_207" from="1274" to="1275" />
+    <span id="t_208" from="1276" to="1279" />
+    <span id="t_209" from="1279" to="1280" />
+    <span id="t_210" from="1281" to="1284" />
+    <span id="t_211" from="1285" to="1287" />
+    <span id="t_212" from="1288" to="1290" />
+    <span id="t_213" from="1290" to="1291" />
+    <span id="t_214" from="1292" to="1295" />
+    <span id="t_215" from="1296" to="1310" />
+    <span id="t_216" from="1311" to="1314" />
+    <span id="t_217" from="1315" to="1326" />
+    <span id="t_218" from="1326" to="1327" />
+  </spanList>
+</layer>
diff --git a/t/A01/13047/connexor/metadata.xml b/t/A01/13047/connexor/metadata.xml
new file mode 100644
index 0000000..e4431d0
--- /dev/null
+++ b/t/A01/13047/connexor/metadata.xml
@@ -0,0 +1,13 @@
+<?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="A01_APR.13047" type="foundry" xmlns="http://ids-mannheim.de/ns/KorAP">
+  <doc file="../data.xml" />
+  <foundry name="mpt">
+    <layer segm="tok" file="tokens.xml" name="token" id="l1" />
+    <layer segm="s" file="sentences.xml" name="sent" id="l2" />
+    <layer info="pos" file="phrase.xml" name="phrase" id="l3" />
+    <layer info="lemma pos" file="syntax.xml" name="syntax" id="l4" />
+    <layer info="pos lemma msd" file="morpho.xml" name="morph" id="l5" />
+  </foundry>
+</metadata>
diff --git a/t/A01/13047/connexor/morpho.xml b/t/A01/13047/connexor/morpho.xml
new file mode 100644
index 0000000..5c17ad3
--- /dev/null
+++ b/t/A01/13047/connexor/morpho.xml
@@ -0,0 +1,2348 @@
+<?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="A01_APR.13047">
+  <spanList>
+    <span id="s0" from="0" to="7">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">fischer</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s1" 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="pos">CC</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s2" from="12" to="16">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Kolp</f>
+            <f name="pos">N</f>
+            <f name="msd">Prop</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s3" from="17" to="18">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">in</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s4" from="18" to="19">
+      <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="s5" from="20" to="31">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">sonne hügel</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s6" from="32" to="41">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Rehetobel</f>
+            <f name="pos">N</f>
+            <f name="msd">Prop</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s7" from="41" to="42">
+      <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="s8" from="43" to="45">
+      <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="45" to="46">
+      <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="47" to="54">
+      <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="55" to="66">
+      <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="67" to="73">
+      <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="74" to="78">
+      <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="79" to="82">
+      <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="83" to="90">
+      <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="91" to="94">
+      <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="95" to="106">
+      <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="107" to="116">
+      <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="117" to="120">
+      <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="120" to="121">
+      <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="122" to="127">
+      <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="128" to="131">
+      <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="132" to="139">
+      <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="140" to="144">
+      <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="145" to="154">
+      <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="155" to="166">
+      <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="167" to="171">
+      <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="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="pos"></f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s29" from="173" to="174">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">an</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s30" from="174" to="175">
+      <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="s31" from="176" to="185">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">kommend</f>
+            <f name="pos">A</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s32" from="186" to="193">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">freitag</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s33" from="193" to="194">
+      <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="s34" from="195" to="197">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">6.</f>
+            <f name="pos">NUM</f>
+            <f name="msd">ORD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s35" from="198" to="203">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">april</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s36" from="203" to="204">
+      <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="s37" from="205" to="211">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">finden</f>
+            <f name="pos">V</f>
+            <f name="msd">IND:PRES</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s38" from="212" to="214">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">um</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s39" from="215" to="220">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">17.30</f>
+            <f name="pos">NUM</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s40" from="221" to="224">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">uhr</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s41" from="225" to="228">
+      <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="s42" from="229" to="239">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">vernissage</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s43" from="240" to="242">
+      <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="s44" from="242" to="243">
+      <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="s45" from="244" to="255">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">ausstellung</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s46" from="256" to="259">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">von</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s47" from="260" to="266">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Renata</f>
+            <f name="pos">N</f>
+            <f name="msd">Prop</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s48" from="267" to="274">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Fischer</f>
+            <f name="pos">N</f>
+            <f name="msd">Prop</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s49" from="275" to="276">
+      <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="s50" from="276" to="282">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">bild</f>
+            <f name="pos">N</f>
+            <f name="msd">PL</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s51" from="282" to="283">
+      <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="s52" from="284" to="287">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">und</f>
+            <f name="pos">CC</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s53" from="288" to="293">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Erich</f>
+            <f name="pos">N</f>
+            <f name="msd">Prop</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s54" from="294" to="298">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Kolp</f>
+            <f name="pos">N</f>
+            <f name="msd">Prop</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s55" from="299" to="300">
+      <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="s56" from="300" to="313">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">schrift bild</f>
+            <f name="pos">N</f>
+            <f name="msd">PL</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s57" from="314" to="317">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">und</f>
+            <f name="pos">CC</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s58" from="318" to="331">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">kalligrafie</f>
+            <f name="pos">N</f>
+            <f name="msd">PL</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s59" from="331" to="332">
+      <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="s60" from="333" to="334">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">in</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s61" from="334" to="335">
+      <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="s62" from="336" to="345">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">schule haus</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s63" from="346" to="357">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">sonne hügel</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s64" from="358" to="363">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">statt</f>
+            <f name="pos">CS</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s65" from="363" to="364">
+      <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="s66" from="365" to="368">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">für</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s67" from="369" to="372">
+      <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="s68" from="373" to="385">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">musikalisch</f>
+            <f name="pos">A</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s69" from="386" to="395">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">umrahmung</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s70" from="396" to="402">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">sorgen</f>
+            <f name="pos">V</f>
+            <f name="msd">IND:PRES</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s71" from="403" to="409">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Martin</f>
+            <f name="pos">N</f>
+            <f name="msd">Prop</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s72" from="410" to="416">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Skampa</f>
+            <f name="pos">N</f>
+            <f name="msd">Prop</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s73" from="417" to="420">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">und</f>
+            <f name="pos">CC</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s74" from="421" to="425">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Jiri</f>
+            <f name="pos">N</f>
+            <f name="msd">Prop</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s75" from="426" to="432">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Holena</f>
+            <f name="pos">N</f>
+            <f name="msd">Prop</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s76" from="432" to="433">
+      <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="s77" from="434" to="445">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">einführend</f>
+            <f name="pos">A</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s78" from="446" to="451">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">wort</f>
+            <f name="pos">N</f>
+            <f name="msd">PL</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s79" from="452" to="459">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">sprechen</f>
+            <f name="pos">V</f>
+            <f name="msd">IND:PRES</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s80" from="460" to="465">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Bruno</f>
+            <f name="pos">N</f>
+            <f name="msd">Prop</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s81" from="466" to="476">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Hofstetter</f>
+            <f name="pos">N</f>
+            <f name="msd">Prop</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s82" from="476" to="477">
+      <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="s83" from="478" to="481">
+      <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="s84" from="482" to="493">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">ausstellung</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s85" from="494" to="500">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">dauern</f>
+            <f name="pos">V</f>
+            <f name="msd">IND:PRES</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s86" from="501" to="504">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">bis</f>
+            <f name="pos">CS</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s87" from="505" to="506">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">an</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s88" from="506" to="507">
+      <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="s89" from="508" to="511">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">14.</f>
+            <f name="pos">NUM</f>
+            <f name="msd">ORD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s90" from="512" to="517">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">april</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s91" from="518" to="521">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">und</f>
+            <f name="pos">CC</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s92" from="522" to="525">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">sein</f>
+            <f name="pos">V</f>
+            <f name="msd">IND:PRES</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s93" from="526" to="527">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">an</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s94" from="527" to="528">
+      <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="s95" from="529" to="536">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">samstag</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s96" from="537" to="540">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">und</f>
+            <f name="pos">CC</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s97" from="541" to="548">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">sonntag</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s98" from="549" to="552">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">von</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s99" from="553" to="558">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">11.00</f>
+            <f name="pos">NUM</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s100" from="559" to="562">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">bis</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s101" from="563" to="568">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">17.00</f>
+            <f name="pos">NUM</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s102" from="569" to="572">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">uhr</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s103" from="573" to="578">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">sowie</f>
+            <f name="pos">CS</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s104" from="579" to="585">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">montag</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s105" from="586" to="589">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">bis</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s106" from="590" to="597">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">freitag</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s107" from="598" to="601">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">von</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s108" from="602" to="607">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">15.00</f>
+            <f name="pos">NUM</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s109" from="608" to="611">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">bis</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s110" from="612" to="617">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">19.00</f>
+            <f name="pos">NUM</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s111" from="617" to="620">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">uhr</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s112" from="621" to="630">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">öffnen.</f>
+            <f name="pos">V</f>
+            <f name="msd">PCP:PERF</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s113" from="630" to="632">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">pd</f>
+            <f name="pos">N</f>
+            <f name="msd">Abbr</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s114" 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="pos"></f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s115" from="634" to="642">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">mutation</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s116" from="643" to="658">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">sektion chef amt</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s117" from="659" to="663">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">wald</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s118" from="663" to="664">
+      <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="s119" from="665" to="668">
+      <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="s120" from="669" to="689">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">sicherheit direktion</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s121" from="690" to="695">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">teilen</f>
+            <f name="pos">V</f>
+            <f name="msd">IND:PRES</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s122" from="696" to="699">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">mit</f>
+            <f name="pos">ADV</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s123" from="699" to="700">
+      <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="s124" from="701" to="705">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">dass</f>
+            <f name="pos">CS</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s125" from="706" to="713">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Philipp</f>
+            <f name="pos">N</f>
+            <f name="msd">Prop</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s126" from="714" to="724">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Hengartner</f>
+            <f name="pos">N</f>
+            <f name="msd">Prop</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s127" from="725" to="729">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">sein</f>
+            <f name="pos">PRON</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s128" from="730" to="747">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">arbeit verhältnis</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s129" from="748" to="751">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">auf</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s130" from="752" to="755">
+      <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="s131" from="756" to="774">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">gemeinde verwaltung</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s132" from="775" to="784">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">kündigen</f>
+            <f name="pos">V</f>
+            <f name="msd">PCP:PERF</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s133" from="785" to="788">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">haben</f>
+            <f name="pos">V</f>
+            <f name="msd">IND:PRES</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s134" from="788" to="789">
+      <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="s135" from="790" to="793">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">für</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s136" from="794" to="797">
+      <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="s137" from="798" to="802">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">gut</f>
+            <f name="pos">A</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s138" from="803" to="806">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">und</f>
+            <f name="pos">CC</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s139" from="807" to="816">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">angenehm</f>
+            <f name="pos">A</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s140" from="817" to="826">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">mitarbeit</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s141" from="827" to="831">
+      <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="s142" from="832" to="835">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">es</f>
+            <f name="pos">PRON</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s143" from="836" to="839">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">der</f>
+            <f name="pos">PRON</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s144" from="840" to="845">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">gut</f>
+            <f name="pos">A</f>
+            <f name="msd">SUP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s145" from="846" to="850">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">dank</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s146" from="851" to="864">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">aussprechen</f>
+            <f name="pos">V</f>
+            <f name="msd">PCP:PERF</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s147" from="864" to="865">
+      <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="s148" from="866" to="868">
+      <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="s149" from="868" to="869">
+      <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="s150" from="870" to="875">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">neu</f>
+            <f name="pos">A</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s151" from="876" to="892">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">stelle inhaberin</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s152" from="893" to="898">
+      <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:PAST</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s153" from="899" to="902">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">auf</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s154" from="903" to="909">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">antrag</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s155" from="910" to="913">
+      <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="s156" from="914" to="927">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">gemeinde rat</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s157" from="928" to="935">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Rebecca</f>
+            <f name="pos">N</f>
+            <f name="msd">Prop</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s158" from="936" to="947">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Benz-Koller</f>
+            <f name="pos">N</f>
+            <f name="msd">Prop</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s159" from="947" to="948">
+      <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="s160" from="949" to="957">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">jahr gang</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s161" from="958" to="962">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">1976</f>
+            <f name="pos">NUM</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s162" from="962" to="963">
+      <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="s163" from="964" to="986">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">verwaltung angestellte</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s164" from="986" to="987">
+      <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="s165" from="988" to="995">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">berneck</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s166" from="995" to="996">
+      <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="s167" from="997" to="1005">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">wählen.</f>
+            <f name="pos">V</f>
+            <f name="msd">PCP:PERF</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s168" from="1005" to="1007">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">pd</f>
+            <f name="pos">N</f>
+            <f name="msd">Abbr</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s169" from="1007" to="1008">
+      <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="s170" from="1009" to="1025">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">aufsteckfrisuren</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s171" from="1026" to="1029">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">für</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s172" from="1030" to="1036">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">kind</f>
+            <f name="pos">N</f>
+            <f name="msd">PL</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s173" from="1037" to="1049">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">walzenhausen</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s174" from="1049" to="1050">
+      <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="s175" from="1051" to="1054">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">die</f>
+            <f name="pos">PRON</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s176" from="1055" to="1056">
+      <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="s177" from="1056" to="1064">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Müettere</f>
+            <f name="pos">N</f>
+            <f name="msd">Prop</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s178" from="1065" to="1070">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Rundi</f>
+            <f name="pos">N</f>
+            <f name="msd">Prop</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s179" from="1070" to="1071">
+      <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="s180" from="1072" to="1076">
+      <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="s181" from="1077" to="1079">
+      <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="s182" from="1080" to="1085">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">ein</f>
+            <f name="pos">DET</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s183" from="1086" to="1090">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">kurs</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s184" from="1091" to="1094">
+      <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="s185" from="1094" to="1095">
+      <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="s186" from="1096" to="1098">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">in</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s187" from="1099" to="1102">
+      <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="s188" from="1103" to="1109">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Sabine</f>
+            <f name="pos">N</f>
+            <f name="msd">Prop</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s189" from="1110" to="1122">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Schittenhelm</f>
+            <f name="pos">N</f>
+            <f name="msd">Prop</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s190" from="1123" to="1129">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">zeigen</f>
+            <f name="pos">V</f>
+            <f name="msd">INF</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s191" from="1130" to="1134">
+      <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="s192" from="1134" to="1135">
+      <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="s193" from="1136" to="1139">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">wie</f>
+            <f name="pos">ADV</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s194" from="1140" to="1143">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">man</f>
+            <f name="pos">PRON</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s195" from="1144" to="1152">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">modisch</f>
+            <f name="pos">A</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s196" from="1153" to="1156">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">und</f>
+            <f name="pos">CC</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s197" from="1157" to="1168">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">raffiniert</f>
+            <f name="pos">A</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s198" from="1169" to="1177">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">aufsteck</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s199" from="1177" to="1178">
+      <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="s200" from="1179" to="1182">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">und</f>
+            <f name="pos">CC</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s201" from="1183" to="1195">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">zopf frisur</f>
+            <f name="pos">N</f>
+            <f name="msd">PL</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s202" from="1196" to="1199">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">für</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s203" from="1200" to="1207">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">mädchen</f>
+            <f name="pos">N</f>
+            <f name="msd">PL</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s204" from="1208" to="1214">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">machen</f>
+            <f name="pos">V</f>
+            <f name="msd">INF</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s205" from="1215" to="1219">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">können</f>
+            <f name="pos">V</f>
+            <f name="msd">IND:PRES</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s206" from="1219" to="1220">
+      <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="s207" from="1221" to="1224">
+      <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="s208" from="1225" to="1237">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">anmelde frist</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s209" from="1238" to="1243">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">laufen</f>
+            <f name="pos">V</f>
+            <f name="msd">IND:PRES</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s210" from="1244" to="1247">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">nur</f>
+            <f name="pos">ADV</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s211" from="1248" to="1252">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">noch</f>
+            <f name="pos">ADV</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s212" from="1253" to="1258">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">heute</f>
+            <f name="pos">ADV</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s213" from="1259" to="1262">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">bei</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s214" from="1263" to="1268">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Julia</f>
+            <f name="pos">N</f>
+            <f name="msd">Prop</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s215" from="1269" to="1274">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Alder</f>
+            <f name="pos">N</f>
+            <f name="msd">Prop</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s216" from="1274" to="1275">
+      <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="s217" from="1276" to="1279">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Tel</f>
+            <f name="pos">N</f>
+            <f name="msd">Prop</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s218" from="1279" to="1280">
+      <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="s219" from="1281" to="1284">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">888</f>
+            <f name="pos">NUM</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s220" from="1285" to="1287">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">59</f>
+            <f name="pos">NUM</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s221" from="1288" to="1291">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">73.</f>
+            <f name="pos">NUM</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s222" from="1292" to="1295">
+      <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="s223" from="1296" to="1310">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">teil nehmer zahl</f>
+            <f name="pos">N</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s224" from="1311" to="1314">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">sein</f>
+            <f name="pos">V</f>
+            <f name="msd">IND:PRES</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s225" from="1315" to="1324">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">begrenzen.</f>
+            <f name="pos">V</f>
+            <f name="msd">PCP:PERF</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s226" from="1324" to="1326">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">pd</f>
+            <f name="pos">N</f>
+            <f name="msd">Abbr</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s227" from="1326" to="1327">
+      <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/A01/13047/connexor/mpt.xml b/t/A01/13047/connexor/mpt.xml
new file mode 100644
index 0000000..93d8653
--- /dev/null
+++ b/t/A01/13047/connexor/mpt.xml
@@ -0,0 +1,1287 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
+<cnxfdg1 language="de" version="4.8">
+<sentence>
+<np>
+<token pos="0" len="7">
+<text>Fischer</text>
+<lemma>fischer</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+</np>
+<token pos="8" len="3">
+<text>und</text>
+<lemma>und</lemma>
+<tags syntax="@CC" morpho="CC"/>
+</token>
+<np>
+<token pos="12" len="4">
+<text>Kolp</text>
+<lemma>Kolp</lemma>
+<tags syntax="@NH" morpho="N" sub1="Prop"/>
+</token>
+<token pos="17" len="1">
+<text>i</text>
+<lemma>in</lemma>
+<tags syntax="@POSTMOD" morpho="PREP"/>
+</token>
+<token pos="18" len="1">
+<text>m</text>
+<lemma>der</lemma>
+<tags syntax="@PREMOD" morpho="DET"/>
+</token>
+<token pos="20" len="12">
+<text>Sonnenhügel</text>
+<lemma>sonne hügel</lemma>
+<tags syntax="@PREMOD" morpho="N"/>
+</token>
+<token pos="33" len="9">
+<text>Rehetobel</text>
+<lemma>Rehetobel</lemma>
+<tags syntax="@NH" morpho="N" sub1="Prop"/>
+</token>
+</np>
+<token pos="42" len="1">
+<text>.</text>
+<lemma>.</lemma>
+<tags/>
+</token>
+</sentence>
+<sentence>
+<token pos="44" len="2">
+<text>Zu</text>
+<lemma>zu</lemma>
+<tags syntax="@PREMARK" morpho="PREP"/>
+</token>
+<token pos="46" len="1">
+<text>m</text>
+<lemma>der</lemma>
+<tags syntax="@PREMOD" morpho="DET"/>
+</token>
+<np>
+<token pos="48" len="7">
+<text>letzten</text>
+<lemma>letzt</lemma>
+<tags syntax="@PREMOD" morpho="A"/>
+</token>
+<token pos="56" len="11">
+<text>kulturellen</text>
+<lemma>kulturell</lemma>
+<tags syntax="@PREMOD" morpho="A"/>
+</token>
+<token pos="68" len="6">
+<text>Anlass</text>
+<lemma>anlass</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+</np>
+<token pos="75" len="5">
+<text>lädt</text>
+<lemma>laden</lemma>
+<tags syntax="@MAIN" morpho="V" sub1="IND" sub2="PRES"/>
+</token>
+<token pos="81" len="3">
+<text>die</text>
+<lemma>die</lemma>
+<tags syntax="@PREMOD" morpho="DET"/>
+</token>
+<np>
+<token pos="85" len="7">
+<text>Leitung</text>
+<lemma>leitung</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+</np>
+<token pos="93" len="3">
+<text>des</text>
+<lemma>das</lemma>
+<tags syntax="@PREMOD" morpho="DET"/>
+</token>
+<np>
+<token pos="97" len="11">
+<text>Schulheimes</text>
+<lemma>schul heim</lemma>
+<tags syntax="@PREMOD" morpho="N"/>
+</token>
+<token pos="109" len="9">
+<text>Hofbergli</text>
+<lemma>Hofbergli</lemma>
+<tags syntax="@NH" morpho="N" sub1="Prop"/>
+</token>
+</np>
+<token pos="119" len="3">
+<text>ein</text>
+<lemma>ein</lemma>
+<tags syntax="@NH" morpho="NUM"/>
+</token>
+<token pos="122" len="1">
+<text>,</text>
+<lemma>,</lemma>
+<tags/>
+</token>
+<token pos="124" len="5">
+<text>bevor</text>
+<lemma>bevor</lemma>
+<tags syntax="@PREMARK" morpho="CS"/>
+</token>
+<token pos="130" len="3">
+<text>der</text>
+<lemma>der</lemma>
+<tags syntax="@PREMOD" morpho="DET"/>
+</token>
+<np>
+<token pos="134" len="7">
+<text>Betrieb</text>
+<lemma>betrieb</lemma>
+<tags syntax="@PREMOD" morpho="N"/>
+</token>
+<token pos="142" len="4">
+<text>Ende</text>
+<lemma>ende</lemma>
+<tags syntax="@PREMOD" morpho="N"/>
+<lemma>ende</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+<token pos="147" len="9">
+<text>Schuljahr</text>
+<lemma>schule jahr</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+</np>
+<token pos="157" len="11">
+<text>eingestellt</text>
+<lemma>ein stellen</lemma>
+<tags syntax="@MAIN" morpho="V" sub1="PCP" sub2="PERF"/>
+</token>
+<token pos="169" len="4">
+<text>wird</text>
+<lemma>werden</lemma>
+<tags syntax="@AUX" morpho="V" sub1="IND" sub2="PRES"/>
+</token>
+<token pos="173" len="1">
+<text>.</text>
+<lemma>.</lemma>
+<tags/>
+</token>
+</sentence>
+<sentence>
+<token pos="175" len="1">
+<text>A</text>
+<lemma>an</lemma>
+<tags syntax="@PREMARK" morpho="PREP"/>
+</token>
+<token pos="176" len="1">
+<text>m</text>
+<lemma>der</lemma>
+<tags syntax="@PREMOD" morpho="DET"/>
+</token>
+<np>
+<token pos="178" len="9">
+<text>kommenden</text>
+<lemma>kommend</lemma>
+<tags syntax="@PREMOD" morpho="A"/>
+</token>
+<token pos="188" len="7">
+<text>Freitag</text>
+<lemma>freitag</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+</np>
+<token pos="195" len="1">
+<text>,</text>
+<lemma>,</lemma>
+<tags/>
+</token>
+<np>
+<token pos="197" len="2">
+<text>6.</text>
+<lemma>6.</lemma>
+<tags syntax="@PREMOD" morpho="NUM" sub1="ORD"/>
+</token>
+<token pos="200" len="5">
+<text>April</text>
+<lemma>april</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+</np>
+<token pos="205" len="1">
+<text>,</text>
+<lemma>,</lemma>
+<tags/>
+</token>
+<token pos="207" len="6">
+<text>findet</text>
+<lemma>finden</lemma>
+<tags syntax="@MAIN" morpho="V" sub1="IND" sub2="PRES"/>
+</token>
+<token pos="214" len="2">
+<text>um</text>
+<lemma>um</lemma>
+<tags syntax="@PREMARK" morpho="PREP"/>
+</token>
+<token pos="217" len="5">
+<text>17.30</text>
+<lemma>17.30</lemma>
+<tags syntax="@PREMOD" morpho="NUM"/>
+</token>
+<np>
+<token pos="223" len="3">
+<text>Uhr</text>
+<lemma>uhr</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+</np>
+<token pos="227" len="3">
+<text>die</text>
+<lemma>die</lemma>
+<tags syntax="@PREMOD" morpho="DET"/>
+</token>
+<np>
+<token pos="231" len="10">
+<text>Vernissage</text>
+<lemma>vernissage</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+</np>
+<token pos="242" len="2">
+<text>zu</text>
+<lemma>zu</lemma>
+<tags syntax="@PREMARK" morpho="PREP"/>
+</token>
+<token pos="244" len="1">
+<text>r</text>
+<lemma>die</lemma>
+<tags syntax="@PREMOD" morpho="DET"/>
+</token>
+<np>
+<token pos="246" len="11">
+<text>Ausstellung</text>
+<lemma>ausstellung</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+<token pos="258" len="3">
+<text>von</text>
+<lemma>von</lemma>
+<tags syntax="@POSTMOD" morpho="PREP"/>
+</token>
+<token pos="262" len="6">
+<text>Renata</text>
+<lemma>Renata</lemma>
+<tags syntax="@PREMOD" morpho="N" sub1="Prop"/>
+</token>
+<token pos="269" len="7">
+<text>Fischer</text>
+<lemma>Fischer</lemma>
+<tags syntax="@NH" morpho="N" sub1="Prop"/>
+</token>
+</np>
+<token pos="277" len="1">
+<text>(</text>
+<lemma>(</lemma>
+<tags/>
+</token>
+<np>
+<token pos="278" len="6">
+<text>Bilder</text>
+<lemma>bild</lemma>
+<tags syntax="@NH" morpho="N" sub2="PL"/>
+</token>
+</np>
+<token pos="284" len="1">
+<text>)</text>
+<lemma>)</lemma>
+<tags/>
+</token>
+<token pos="286" len="3">
+<text>und</text>
+<lemma>und</lemma>
+<tags syntax="@CC" morpho="CC"/>
+</token>
+<np>
+<token pos="290" len="5">
+<text>Erich</text>
+<lemma>Erich</lemma>
+<tags syntax="@PREMOD" morpho="N" sub1="Prop"/>
+</token>
+<token pos="296" len="4">
+<text>Kolp</text>
+<lemma>Kolp</lemma>
+<tags syntax="@NH" morpho="N" sub1="Prop"/>
+</token>
+</np>
+<token pos="301" len="1">
+<text>(</text>
+<lemma>(</lemma>
+<tags/>
+</token>
+<np>
+<token pos="302" len="13">
+<text>Schriftbilder</text>
+<lemma>schrift bild</lemma>
+<tags syntax="@NH" morpho="N" sub2="PL"/>
+</token>
+</np>
+<token pos="316" len="3">
+<text>und</text>
+<lemma>und</lemma>
+<tags syntax="@CC" morpho="CC"/>
+</token>
+<np>
+<token pos="320" len="13">
+<text>Kalligraphien</text>
+<lemma>kalligrafie</lemma>
+<tags syntax="@NH" morpho="N" sub2="PL"/>
+</token>
+</np>
+<token pos="333" len="1">
+<text>)</text>
+<lemma>)</lemma>
+<tags/>
+</token>
+<token pos="335" len="1">
+<text>i</text>
+<lemma>in</lemma>
+<tags syntax="@PREMARK" morpho="PREP"/>
+</token>
+<token pos="336" len="1">
+<text>m</text>
+<lemma>das</lemma>
+<tags syntax="@PREMOD" morpho="DET"/>
+</token>
+<np>
+<token pos="338" len="9">
+<text>Schulhaus</text>
+<lemma>schule haus</lemma>
+<tags syntax="@PREMOD" morpho="N"/>
+</token>
+<token pos="348" len="12">
+<text>Sonnenhügel</text>
+<lemma>sonne hügel</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+</np>
+<token pos="361" len="5">
+<text>statt</text>
+<lemma>statt</lemma>
+<tags syntax="@PREMARK" morpho="CS"/>
+</token>
+<token pos="366" len="1">
+<text>.</text>
+<lemma>.</lemma>
+<tags/>
+</token>
+</sentence>
+<sentence>
+<token pos="368" len="4">
+<text>Für</text>
+<lemma>für</lemma>
+<tags syntax="@PREMARK" morpho="PREP"/>
+</token>
+<token pos="373" len="3">
+<text>die</text>
+<lemma>die</lemma>
+<tags syntax="@PREMOD" morpho="DET"/>
+</token>
+<np>
+<token pos="377" len="12">
+<text>musikalische</text>
+<lemma>musikalisch</lemma>
+<tags syntax="@PREMOD" morpho="A"/>
+</token>
+<token pos="390" len="9">
+<text>Umrahmung</text>
+<lemma>umrahmung</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+</np>
+<token pos="400" len="6">
+<text>sorgen</text>
+<lemma>sorgen</lemma>
+<tags syntax="@MAIN" morpho="V" sub1="IND" sub2="PRES"/>
+</token>
+<np>
+<token pos="407" len="6">
+<text>Martin</text>
+<lemma>Martin</lemma>
+<tags syntax="@PREMOD" morpho="N" sub1="Prop"/>
+</token>
+<token pos="414" len="6">
+<text>Skampa</text>
+<lemma>Skampa</lemma>
+<tags syntax="@NH" morpho="N" sub1="Prop"/>
+</token>
+</np>
+<token pos="421" len="3">
+<text>und</text>
+<lemma>und</lemma>
+<tags syntax="@CC" morpho="CC"/>
+</token>
+<np>
+<token pos="425" len="4">
+<text>Jiri</text>
+<lemma>Jiri</lemma>
+<tags syntax="@PREMOD" morpho="N" sub1="Prop"/>
+</token>
+<token pos="430" len="6">
+<text>Holena</text>
+<lemma>Holena</lemma>
+<tags syntax="@NH" morpho="N" sub1="Prop"/>
+</token>
+</np>
+<token pos="436" len="1">
+<text>;</text>
+<lemma>;</lemma>
+<tags/>
+</token>
+</sentence>
+<sentence>
+<np>
+<token pos="438" len="12">
+<text>einführende</text>
+<lemma>einführend</lemma>
+<tags syntax="@PREMOD" morpho="A"/>
+</token>
+<token pos="451" len="5">
+<text>Worte</text>
+<lemma>wort</lemma>
+<tags syntax="@NH" morpho="N" sub2="PL"/>
+</token>
+</np>
+<token pos="457" len="7">
+<text>spricht</text>
+<lemma>sprechen</lemma>
+<tags syntax="@MAIN" morpho="V" sub1="IND" sub2="PRES"/>
+</token>
+<np>
+<token pos="465" len="5">
+<text>Bruno</text>
+<lemma>Bruno</lemma>
+<tags syntax="@PREMOD" morpho="N" sub1="Prop"/>
+</token>
+<token pos="471" len="10">
+<text>Hofstetter</text>
+<lemma>Hofstetter</lemma>
+<tags syntax="@NH" morpho="N" sub1="Prop"/>
+</token>
+</np>
+<token pos="481" len="1">
+<text>.</text>
+<lemma>.</lemma>
+<tags/>
+</token>
+</sentence>
+<sentence>
+<token pos="483" len="3">
+<text>Die</text>
+<lemma>die</lemma>
+<tags syntax="@PREMOD" morpho="DET"/>
+</token>
+<np>
+<token pos="487" len="11">
+<text>Ausstellung</text>
+<lemma>ausstellung</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+</np>
+<token pos="499" len="6">
+<text>dauert</text>
+<lemma>dauern</lemma>
+<tags syntax="@MAIN" morpho="V" sub1="IND" sub2="PRES"/>
+</token>
+<token pos="506" len="3">
+<text>bis</text>
+<lemma>bis</lemma>
+<tags syntax="@PREMARK" morpho="CS"/>
+</token>
+<token pos="510" len="1">
+<text>a</text>
+<lemma>an</lemma>
+<tags syntax="@PREMARK" morpho="PREP"/>
+</token>
+<token pos="511" len="1">
+<text>m</text>
+<lemma>der</lemma>
+<tags syntax="@PREMOD" morpho="DET"/>
+</token>
+<np>
+<token pos="513" len="3">
+<text>14.</text>
+<lemma>14.</lemma>
+<tags syntax="@PREMOD" morpho="NUM" sub1="ORD"/>
+</token>
+<token pos="517" len="5">
+<text>April</text>
+<lemma>april</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+</np>
+<token pos="523" len="3">
+<text>und</text>
+<lemma>und</lemma>
+<tags syntax="@CC" morpho="CC"/>
+</token>
+<token pos="527" len="3">
+<text>ist</text>
+<lemma>sein</lemma>
+<tags syntax="@MAIN" morpho="V" sub1="IND" sub2="PRES"/>
+</token>
+<token pos="531" len="1">
+<text>a</text>
+<lemma>an</lemma>
+<tags syntax="@PREMARK" morpho="PREP"/>
+</token>
+<token pos="532" len="1">
+<text>m</text>
+<lemma>der</lemma>
+<tags syntax="@PREMOD" morpho="DET"/>
+</token>
+<np>
+<token pos="534" len="7">
+<text>Samstag</text>
+<lemma>samstag</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+</np>
+<token pos="542" len="3">
+<text>und</text>
+<lemma>und</lemma>
+<tags syntax="@CC" morpho="CC"/>
+</token>
+<np>
+<token pos="546" len="7">
+<text>Sonntag</text>
+<lemma>sonntag</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+</np>
+<token pos="554" len="3">
+<text>von</text>
+<lemma>von</lemma>
+<tags syntax="@PREMARK" morpho="PREP"/>
+</token>
+<token pos="558" len="5">
+<text>11.00</text>
+<lemma>11.00</lemma>
+<tags syntax="@NH" morpho="NUM"/>
+</token>
+<token pos="564" len="3">
+<text>bis</text>
+<lemma>bis</lemma>
+<tags syntax="@PREMARK" morpho="PREP"/>
+</token>
+<token pos="568" len="5">
+<text>17.00</text>
+<lemma>17.00</lemma>
+<tags syntax="@PREMOD" morpho="NUM"/>
+</token>
+<np>
+<token pos="574" len="3">
+<text>Uhr</text>
+<lemma>uhr</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+</np>
+<token pos="578" len="5">
+<text>sowie</text>
+<lemma>sowie</lemma>
+<tags syntax="@PREMARK" morpho="CS"/>
+</token>
+<np>
+<token pos="584" len="6">
+<text>Montag</text>
+<lemma>montag</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+</np>
+<token pos="591" len="3">
+<text>bis</text>
+<lemma>bis</lemma>
+<tags syntax="@PREMARK" morpho="PREP"/>
+</token>
+<np>
+<token pos="595" len="7">
+<text>Freitag</text>
+<lemma>freitag</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+</np>
+<token pos="603" len="3">
+<text>von</text>
+<lemma>von</lemma>
+<tags syntax="@PREMARK" morpho="PREP"/>
+</token>
+<token pos="607" len="5">
+<text>15.00</text>
+<lemma>15.00</lemma>
+<tags syntax="@NH" morpho="NUM"/>
+</token>
+<token pos="613" len="3">
+<text>bis</text>
+<lemma>bis</lemma>
+<tags syntax="@PREMARK" morpho="PREP"/>
+</token>
+<token pos="617" len="5">
+<text>19.00</text>
+<lemma>19.00</lemma>
+<tags syntax="@PREMOD" morpho="NUM"/>
+</token>
+<np>
+<token pos="622" len="3">
+<text>Uhr</text>
+<lemma>uhr</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+</np>
+<token pos="626" len="10">
+<text>geöffnet.</text>
+<lemma>öffnen.</lemma>
+<tags syntax="@MAIN" morpho="V" sub1="PCP" sub2="PERF"/>
+</token>
+<np>
+<token pos="636" len="2">
+<text>pd</text>
+<lemma>pd</lemma>
+<tags syntax="@NH" morpho="N" sub1="Abbr"/>
+</token>
+</np>
+<token pos="638" len="1">
+<text>.</text>
+<lemma>.</lemma>
+<tags/>
+</token>
+</sentence>
+<sentence>
+<np>
+<token pos="640" len="8">
+<text>Mutation</text>
+<lemma>mutation</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+</np>
+<np>
+<token pos="649" len="15">
+<text>Sektionschefamt</text>
+<lemma>sektion chef amt</lemma>
+<tags syntax="@PREMOD" morpho="N"/>
+</token>
+<token pos="665" len="4">
+<text>Wald</text>
+<lemma>wald</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+</np>
+<token pos="669" len="1">
+<text>.</text>
+<lemma>.</lemma>
+<tags/>
+</token>
+</sentence>
+<sentence>
+<token pos="671" len="3">
+<text>Die</text>
+<lemma>die</lemma>
+<tags syntax="@PREMOD" morpho="DET"/>
+</token>
+<np>
+<token pos="675" len="20">
+<text>Sicherheitsdirektion</text>
+<lemma>sicherheit direktion</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+</np>
+<token pos="696" len="5">
+<text>teilt</text>
+<lemma>teilen</lemma>
+<tags syntax="@MAIN" morpho="V" sub1="IND" sub2="PRES"/>
+</token>
+<token pos="702" len="3">
+<text>mit</text>
+<lemma>mit</lemma>
+<tags syntax="@ADVL" morpho="ADV"/>
+</token>
+<token pos="705" len="1">
+<text>,</text>
+<lemma>,</lemma>
+<tags/>
+</token>
+<token pos="707" len="4">
+<text>dass</text>
+<lemma>dass</lemma>
+<tags syntax="@PREMARK" morpho="CS"/>
+</token>
+<np>
+<token pos="712" len="7">
+<text>Philipp</text>
+<lemma>Philipp</lemma>
+<tags syntax="@PREMOD" morpho="N" sub1="Prop"/>
+</token>
+<token pos="720" len="10">
+<text>Hengartner</text>
+<lemma>Hengartner</lemma>
+<tags syntax="@NH" morpho="N" sub1="Prop"/>
+</token>
+</np>
+<token pos="731" len="4">
+<text>sein</text>
+<lemma>sein</lemma>
+<tags syntax="@PREMOD" morpho="PRON"/>
+</token>
+<np>
+<token pos="736" len="18">
+<text>Arbeitsverhältnis</text>
+<lemma>arbeit verhältnis</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+<token pos="755" len="3">
+<text>auf</text>
+<lemma>auf</lemma>
+<tags syntax="@POSTMOD" morpho="PREP"/>
+</token>
+<token pos="759" len="3">
+<text>der</text>
+<lemma>die</lemma>
+<tags syntax="@PREMOD" morpho="DET"/>
+</token>
+<token pos="763" len="18">
+<text>Gemeindeverwaltung</text>
+<lemma>gemeinde verwaltung</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+</np>
+<token pos="782" len="10">
+<text>gekündigt</text>
+<lemma>kündigen</lemma>
+<tags syntax="@MAIN" morpho="V" sub1="PCP" sub2="PERF"/>
+</token>
+<token pos="793" len="3">
+<text>hat</text>
+<lemma>haben</lemma>
+<tags syntax="@MAIN" morpho="V" sub1="IND" sub2="PRES"/>
+</token>
+<token pos="796" len="1">
+<text>.</text>
+<lemma>.</lemma>
+<tags/>
+</token>
+</sentence>
+<sentence>
+<token pos="798" len="4">
+<text>Für</text>
+<lemma>für</lemma>
+<tags syntax="@PREMARK" morpho="PREP"/>
+</token>
+<token pos="803" len="3">
+<text>die</text>
+<lemma>die</lemma>
+<tags syntax="@PREMOD" morpho="DET"/>
+</token>
+<np>
+<token pos="807" len="4">
+<text>gute</text>
+<lemma>gut</lemma>
+<tags syntax="@PREMOD" morpho="A"/>
+</token>
+<token pos="812" len="3">
+<text>und</text>
+<lemma>und</lemma>
+<tags syntax="@CC" morpho="CC"/>
+</token>
+<token pos="816" len="9">
+<text>angenehme</text>
+<lemma>angenehm</lemma>
+<tags syntax="@PREMOD" morpho="A"/>
+</token>
+<token pos="826" len="9">
+<text>Mitarbeit</text>
+<lemma>mitarbeit</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+</np>
+<token pos="836" len="4">
+<text>wird</text>
+<lemma>werden</lemma>
+<tags syntax="@MAIN" morpho="V" sub1="IND" sub2="PRES"/>
+</token>
+<token pos="841" len="3">
+<text>ihm</text>
+<lemma>es</lemma>
+<tags syntax="@NH" morpho="PRON"/>
+</token>
+<token pos="845" len="3">
+<text>der</text>
+<lemma>der</lemma>
+<tags syntax="@PREMOD" morpho="DET"/>
+<lemma>der</lemma>
+<tags syntax="@NH" morpho="PRON"/>
+</token>
+<np>
+<token pos="849" len="5">
+<text>beste</text>
+<lemma>gut</lemma>
+<tags syntax="@PREMOD" morpho="A" sub1="SUP"/>
+</token>
+<token pos="855" len="4">
+<text>Dank</text>
+<lemma>dank</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+</np>
+<token pos="860" len="13">
+<text>ausgesprochen</text>
+<lemma>aussprechen</lemma>
+<tags syntax="@MAIN" morpho="V" sub1="PCP" sub2="PERF"/>
+</token>
+<token pos="873" len="1">
+<text>.</text>
+<lemma>.</lemma>
+<tags/>
+</token>
+</sentence>
+<sentence>
+<token pos="875" len="2">
+<text>Zu</text>
+<lemma>zu</lemma>
+<tags syntax="@PREMARK" morpho="PREP"/>
+</token>
+<token pos="877" len="1">
+<text>r</text>
+<lemma>die</lemma>
+<tags syntax="@PREMOD" morpho="DET"/>
+</token>
+<np>
+<token pos="879" len="5">
+<text>neuen</text>
+<lemma>neu</lemma>
+<tags syntax="@PREMOD" morpho="A"/>
+</token>
+<token pos="885" len="16">
+<text>Stelleninhaberin</text>
+<lemma>stelle inhaberin</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+</np>
+<token pos="902" len="5">
+<text>wurde</text>
+<lemma>werden</lemma>
+<tags syntax="@MAIN" morpho="V" sub1="IND" sub2="PAST"/>
+</token>
+<token pos="908" len="3">
+<text>auf</text>
+<lemma>auf</lemma>
+<tags syntax="@PREMARK" morpho="PREP"/>
+</token>
+<np>
+<token pos="912" len="6">
+<text>Antrag</text>
+<lemma>antrag</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+</np>
+<token pos="919" len="3">
+<text>des</text>
+<lemma>der</lemma>
+<tags syntax="@PREMOD" morpho="DET"/>
+</token>
+<np>
+<token pos="923" len="13">
+<text>Gemeinderates</text>
+<lemma>gemeinde rat</lemma>
+<tags syntax="@PREMOD" morpho="N"/>
+</token>
+<token pos="937" len="7">
+<text>Rebecca</text>
+<lemma>Rebecca</lemma>
+<tags syntax="@PREMOD" morpho="N" sub1="Prop"/>
+</token>
+<token pos="945" len="11">
+<text>Benz-Koller</text>
+<lemma>Benz-Koller</lemma>
+<tags syntax="@NH" morpho="N" sub1="Prop"/>
+</token>
+</np>
+<token pos="956" len="1">
+<text>,</text>
+<lemma>,</lemma>
+<tags/>
+</token>
+<np>
+<token pos="958" len="8">
+<text>Jahrgang</text>
+<lemma>jahr gang</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+</np>
+<token pos="967" len="4">
+<text>1976</text>
+<lemma>1976</lemma>
+<tags syntax="@NH" morpho="NUM"/>
+</token>
+<token pos="971" len="1">
+<text>,</text>
+<lemma>,</lemma>
+<tags/>
+</token>
+<np>
+<token pos="973" len="22">
+<text>Verwaltungsangestellte</text>
+<lemma>verwaltung angestellte</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+</np>
+<token pos="995" len="1">
+<text>,</text>
+<lemma>,</lemma>
+<tags/>
+</token>
+<np>
+<token pos="997" len="7">
+<text>Berneck</text>
+<lemma>berneck</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+</np>
+<token pos="1004" len="1">
+<text>,</text>
+<lemma>,</lemma>
+<tags/>
+</token>
+<token pos="1006" len="9">
+<text>gewählt.</text>
+<lemma>wählen.</lemma>
+<tags syntax="@MAIN" morpho="V" sub1="PCP" sub2="PERF"/>
+</token>
+<np>
+<token pos="1015" len="2">
+<text>pd</text>
+<lemma>pd</lemma>
+<tags syntax="@NH" morpho="N" sub1="Abbr"/>
+</token>
+</np>
+<token pos="1017" len="1">
+<text>.</text>
+<lemma>.</lemma>
+<tags/>
+</token>
+</sentence>
+<sentence>
+<np>
+<token pos="1019" len="16">
+<text>Aufsteckfrisuren</text>
+<lemma>aufsteckfrisuren</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+<token pos="1036" len="4">
+<text>für</text>
+<lemma>für</lemma>
+<tags syntax="@POSTMOD" morpho="PREP"/>
+</token>
+<token pos="1041" len="6">
+<text>Kinder</text>
+<lemma>kind</lemma>
+<tags syntax="@NH" morpho="N" sub2="PL"/>
+</token>
+</np>
+<np>
+<token pos="1048" len="12">
+<text>Walzenhausen</text>
+<lemma>walzenhausen</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+</np>
+<token pos="1060" len="1">
+<text>.</text>
+<lemma>.</lemma>
+<tags/>
+</token>
+</sentence>
+<sentence>
+<token pos="1062" len="3">
+<text>Die</text>
+<lemma>die</lemma>
+<tags syntax="@NH" morpho="PRON"/>
+</token>
+<token pos="1066" len="2">
+<text>&quot;</text>
+<lemma>&quot;</lemma>
+<tags/>
+</token>
+<np>
+<token pos="1068" len="9">
+<text>Müettere</text>
+<lemma>Müettere</lemma>
+<tags syntax="@PREMOD" morpho="N" sub1="Prop"/>
+</token>
+<token pos="1078" len="5">
+<text>Rundi</text>
+<lemma>Rundi</lemma>
+<tags syntax="@NH" morpho="N" sub1="Prop"/>
+</token>
+</np>
+<token pos="1083" len="2">
+<text>&quot;</text>
+<lemma>&quot;</lemma>
+<tags/>
+</token>
+<token pos="1086" len="5">
+<text>lädt</text>
+<lemma>laden</lemma>
+<tags syntax="@MAIN" morpho="V" sub1="IND" sub2="PRES"/>
+</token>
+<token pos="1092" len="2">
+<text>zu</text>
+<lemma>zu</lemma>
+<tags syntax="@PREMARK" morpho="PREP"/>
+</token>
+<token pos="1095" len="5">
+<text>einem</text>
+<lemma>ein</lemma>
+<tags syntax="@PREMOD" morpho="DET"/>
+</token>
+<np>
+<token pos="1101" len="4">
+<text>Kurs</text>
+<lemma>kurs</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+</np>
+<token pos="1106" len="3">
+<text>ein</text>
+<lemma>ein</lemma>
+<tags syntax="@NH" morpho="NUM"/>
+</token>
+<token pos="1109" len="1">
+<text>,</text>
+<lemma>,</lemma>
+<tags/>
+</token>
+<token pos="1111" len="2">
+<text>in</text>
+<lemma>in</lemma>
+<tags syntax="@PREMARK" morpho="PREP"/>
+</token>
+<token pos="1114" len="3">
+<text>dem</text>
+<lemma>der</lemma>
+<tags syntax="@PREMOD" morpho="DET"/>
+</token>
+<np>
+<token pos="1118" len="6">
+<text>Sabine</text>
+<lemma>Sabine</lemma>
+<tags syntax="@PREMOD" morpho="N" sub1="Prop"/>
+</token>
+<token pos="1125" len="12">
+<text>Schittenhelm</text>
+<lemma>Schittenhelm</lemma>
+<tags syntax="@NH" morpho="N" sub1="Prop"/>
+</token>
+</np>
+<token pos="1138" len="6">
+<text>zeigen</text>
+<lemma>zeigen</lemma>
+<tags syntax="@MAIN" morpho="V" sub1="INF"/>
+</token>
+<token pos="1145" len="4">
+<text>wird</text>
+<lemma>werden</lemma>
+<tags syntax="@AUX" morpho="V" sub1="IND" sub2="PRES"/>
+</token>
+<token pos="1149" len="1">
+<text>,</text>
+<lemma>,</lemma>
+<tags/>
+</token>
+<token pos="1151" len="3">
+<text>wie</text>
+<lemma>wie</lemma>
+<tags syntax="@ADVL" morpho="ADV"/>
+</token>
+<token pos="1155" len="3">
+<text>man</text>
+<lemma>man</lemma>
+<tags syntax="@NH" morpho="PRON"/>
+</token>
+<np>
+<token pos="1159" len="8">
+<text>modische</text>
+<lemma>modisch</lemma>
+<tags syntax="@PREMOD" morpho="A"/>
+</token>
+<token pos="1168" len="3">
+<text>und</text>
+<lemma>und</lemma>
+<tags syntax="@CC" morpho="CC"/>
+</token>
+<token pos="1172" len="11">
+<text>raffinierte</text>
+<lemma>raffiniert</lemma>
+<tags syntax="@PREMOD" morpho="A"/>
+</token>
+<token pos="1184" len="8">
+<text>Aufsteck</text>
+<lemma>aufsteck</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+</np>
+<token pos="1192" len="1">
+<text>-</text>
+<lemma>-</lemma>
+<tags/>
+</token>
+<token pos="1194" len="3">
+<text>und</text>
+<lemma>und</lemma>
+<tags syntax="@CC" morpho="CC"/>
+</token>
+<np>
+<token pos="1198" len="12">
+<text>Zopffrisuren</text>
+<lemma>zopf frisur</lemma>
+<tags syntax="@NH" morpho="N" sub2="PL"/>
+</token>
+<token pos="1211" len="4">
+<text>für</text>
+<lemma>für</lemma>
+<tags syntax="@POSTMOD" morpho="PREP"/>
+</token>
+<token pos="1216" len="8">
+<text>Mädchen</text>
+<lemma>mädchen</lemma>
+<tags syntax="@NH" morpho="N" sub2="PL"/>
+</token>
+</np>
+<token pos="1225" len="6">
+<text>machen</text>
+<lemma>machen</lemma>
+<tags syntax="@MAIN" morpho="V" sub1="INF"/>
+</token>
+<token pos="1232" len="4">
+<text>kann</text>
+<lemma>können</lemma>
+<tags syntax="@AUX" morpho="V" sub1="IND" sub2="PRES"/>
+</token>
+<token pos="1236" len="1">
+<text>.</text>
+<lemma>.</lemma>
+<tags/>
+</token>
+</sentence>
+<sentence>
+<token pos="1238" len="3">
+<text>Die</text>
+<lemma>die</lemma>
+<tags syntax="@PREMOD" morpho="DET"/>
+</token>
+<np>
+<token pos="1242" len="12">
+<text>Anmeldefrist</text>
+<lemma>anmelde frist</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+</np>
+<token pos="1255" len="6">
+<text>läuft</text>
+<lemma>laufen</lemma>
+<tags syntax="@MAIN" morpho="V" sub1="IND" sub2="PRES"/>
+</token>
+<token pos="1262" len="3">
+<text>nur</text>
+<lemma>nur</lemma>
+<tags syntax="@ADVL" morpho="ADV"/>
+</token>
+<token pos="1266" len="4">
+<text>noch</text>
+<lemma>noch</lemma>
+<tags syntax="@ADVL" morpho="ADV"/>
+</token>
+<token pos="1271" len="5">
+<text>heute</text>
+<lemma>heute</lemma>
+<tags syntax="@ADVL" morpho="ADV"/>
+</token>
+<token pos="1277" len="3">
+<text>bei</text>
+<lemma>bei</lemma>
+<tags syntax="@PREMARK" morpho="PREP"/>
+</token>
+<np>
+<token pos="1281" len="5">
+<text>Julia</text>
+<lemma>Julia</lemma>
+<tags syntax="@PREMOD" morpho="N" sub1="Prop"/>
+</token>
+<token pos="1287" len="5">
+<text>Alder</text>
+<lemma>Alder</lemma>
+<tags syntax="@NH" morpho="N" sub1="Prop"/>
+</token>
+</np>
+<token pos="1292" len="1">
+<text>,</text>
+<lemma>,</lemma>
+<tags/>
+</token>
+<np>
+<token pos="1294" len="3">
+<text>Tel</text>
+<lemma>Tel</lemma>
+<tags syntax="@NH" morpho="N" sub1="Prop"/>
+</token>
+</np>
+<token pos="1297" len="1">
+<text>.</text>
+<lemma>.</lemma>
+<tags/>
+</token>
+</sentence>
+<sentence>
+<token pos="1299" len="3">
+<text>888</text>
+<lemma>888</lemma>
+<tags syntax="@NH" morpho="NUM"/>
+</token>
+<token pos="1303" len="2">
+<text>59</text>
+<lemma>59</lemma>
+<tags syntax="@NH" morpho="NUM"/>
+</token>
+<token pos="1306" len="3">
+<text>73.</text>
+<lemma>73.</lemma>
+<tags syntax="@PREMOD" morpho="NUM"/>
+</token>
+<token pos="1310" len="3">
+<text>Die</text>
+<lemma>die</lemma>
+<tags syntax="@PREMOD" morpho="DET"/>
+</token>
+<np>
+<token pos="1314" len="14">
+<text>Teilnehmerzahl</text>
+<lemma>teil nehmer zahl</lemma>
+<tags syntax="@NH" morpho="N"/>
+</token>
+</np>
+<token pos="1329" len="3">
+<text>ist</text>
+<lemma>sein</lemma>
+<tags syntax="@AUX" morpho="V" sub1="IND" sub2="PRES"/>
+</token>
+<token pos="1333" len="9">
+<text>begrenzt.</text>
+<lemma>begrenzen.</lemma>
+<tags syntax="@MAIN" morpho="V" sub1="PCP" sub2="PERF"/>
+</token>
+<np>
+<token pos="1342" len="2">
+<text>pd</text>
+<lemma>pd</lemma>
+<tags syntax="@NH" morpho="N" sub1="Abbr"/>
+</token>
+</np>
+<token pos="1344" len="1">
+<text>.</text>
+<lemma>.</lemma>
+<tags/>
+</token>
+</sentence>
+</cnxfdg1>
diff --git a/t/A01/13047/connexor/phrase.xml b/t/A01/13047/connexor/phrase.xml
new file mode 100644
index 0000000..8b6eaab
--- /dev/null
+++ b/t/A01/13047/connexor/phrase.xml
@@ -0,0 +1,287 @@
+<?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="A01_APR.13047">
+  <spanList>
+    <span from="0" to="7">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="12" to="41">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="47" to="73">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="83" to="90">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="95" to="116">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="132" to="154">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="176" to="193">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="195" to="203">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="221" to="224">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="229" to="239">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="244" to="274">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="276" to="282">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="288" to="298">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="300" to="313">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="318" to="331">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="336" to="357">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="373" to="395">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="403" to="416">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="421" to="432">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="434" to="451">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="460" to="476">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="482" to="493">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="508" to="517">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="529" to="536">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="541" to="548">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="569" to="572">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="579" to="585">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="590" to="597">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="617" to="620">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="630" to="632">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="634" to="642">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="643" to="663">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="669" to="689">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="706" to="724">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="730" to="774">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="798" to="826">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="840" to="850">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="870" to="892">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="903" to="909">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="914" to="947">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="949" to="957">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="964" to="986">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="988" to="995">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="1005" to="1007">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="1009" to="1036">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="1037" to="1049">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="1056" to="1070">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="1086" to="1090">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="1103" to="1122">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="1144" to="1177">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="1183" to="1207">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="1225" to="1237">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="1263" to="1274">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="1276" to="1279">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="1296" to="1310">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="pos">np</f>
+      </fs>
+    </span>
+    <span from="1324" to="1326">
+      <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/A01/13047/connexor/sentences.xml b/t/A01/13047/connexor/sentences.xml
new file mode 100644
index 0000000..519b460
--- /dev/null
+++ b/t/A01/13047/connexor/sentences.xml
@@ -0,0 +1,21 @@
+<?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="A01_APR.13047">
+  <spanList>
+    <span from="0" to="42" />
+    <span from="43" to="172" />
+    <span from="173" to="364" />
+    <span from="365" to="433" />
+    <span from="434" to="477" />
+    <span from="478" to="633" />
+    <span from="634" to="664" />
+    <span from="665" to="789" />
+    <span from="790" to="865" />
+    <span from="866" to="1008" />
+    <span from="1009" to="1050" />
+    <span from="1051" to="1220" />
+    <span from="1221" to="1280" />
+    <span from="1281" to="1327" />
+  </spanList>
+</layer>
diff --git a/t/A01/13047/connexor/syntax.xml b/t/A01/13047/connexor/syntax.xml
new file mode 100644
index 0000000..a89ce57
--- /dev/null
+++ b/t/A01/13047/connexor/syntax.xml
@@ -0,0 +1,2287 @@
+<?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="A01_APR.13047">
+  <spanList>
+    <span id="s0" from="0" to="7">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">fischer</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s1" from="8" to="11">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">und</f>
+            <f name="pos">@CC</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s2" from="12" to="16">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Kolp</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s3" from="17" to="18">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">in</f>
+            <f name="pos">@POSTMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s4" from="18" to="19">
+      <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="s5" from="20" to="31">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">sonne hügel</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s6" from="32" to="41">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Rehetobel</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s7" from="41" to="42">
+      <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="s8" from="43" to="45">
+      <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="45" to="46">
+      <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="47" to="54">
+      <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="55" to="66">
+      <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="67" to="73">
+      <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="74" to="78">
+      <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="79" to="82">
+      <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="83" to="90">
+      <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="91" to="94">
+      <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="95" to="106">
+      <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="107" to="116">
+      <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="117" to="120">
+      <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="120" to="121">
+      <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="122" to="127">
+      <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="128" to="131">
+      <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="132" to="139">
+      <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="140" to="144">
+      <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="145" to="154">
+      <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="155" to="166">
+      <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="167" to="171">
+      <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>
+    <span id="s28" from="171" to="172">
+      <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="s29" from="173" to="174">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">an</f>
+            <f name="pos">@PREMARK</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s30" from="174" to="175">
+      <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="s31" from="176" to="185">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">kommend</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s32" from="186" to="193">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">freitag</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s33" from="193" to="194">
+      <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="s34" from="195" to="197">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">6.</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s35" from="198" to="203">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">april</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s36" from="203" to="204">
+      <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="s37" from="205" to="211">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">finden</f>
+            <f name="pos">@MAIN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s38" from="212" to="214">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">um</f>
+            <f name="pos">@PREMARK</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s39" from="215" to="220">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">17.30</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s40" from="221" to="224">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">uhr</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s41" from="225" to="228">
+      <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="s42" from="229" to="239">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">vernissage</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s43" from="240" to="242">
+      <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="s44" from="242" to="243">
+      <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="s45" from="244" to="255">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">ausstellung</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s46" from="256" to="259">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">von</f>
+            <f name="pos">@POSTMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s47" from="260" to="266">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Renata</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s48" from="267" to="274">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Fischer</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s49" from="275" to="276">
+      <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="s50" from="276" to="282">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">bild</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s51" from="282" to="283">
+      <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="s52" from="284" to="287">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">und</f>
+            <f name="pos">@CC</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s53" from="288" to="293">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Erich</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s54" from="294" to="298">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Kolp</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s55" from="299" to="300">
+      <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="s56" from="300" to="313">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">schrift bild</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s57" from="314" to="317">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">und</f>
+            <f name="pos">@CC</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s58" from="318" to="331">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">kalligrafie</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s59" from="331" to="332">
+      <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="s60" from="333" to="334">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">in</f>
+            <f name="pos">@PREMARK</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s61" from="334" to="335">
+      <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="s62" from="336" to="345">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">schule haus</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s63" from="346" to="357">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">sonne hügel</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s64" from="358" to="363">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">statt</f>
+            <f name="pos">@PREMARK</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s65" from="363" to="364">
+      <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="s66" from="365" to="368">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">für</f>
+            <f name="pos">@PREMARK</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s67" from="369" to="372">
+      <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="s68" from="373" to="385">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">musikalisch</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s69" from="386" to="395">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">umrahmung</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s70" from="396" to="402">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">sorgen</f>
+            <f name="pos">@MAIN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s71" from="403" to="409">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Martin</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s72" from="410" to="416">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Skampa</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s73" from="417" to="420">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">und</f>
+            <f name="pos">@CC</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s74" from="421" to="425">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Jiri</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s75" from="426" to="432">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Holena</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s76" from="432" to="433">
+      <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="s77" from="434" to="445">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">einführend</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s78" from="446" to="451">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">wort</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s79" from="452" to="459">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">sprechen</f>
+            <f name="pos">@MAIN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s80" from="460" to="465">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Bruno</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s81" from="466" to="476">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Hofstetter</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s82" from="476" to="477">
+      <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="s83" from="478" to="481">
+      <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="s84" from="482" to="493">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">ausstellung</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s85" from="494" to="500">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">dauern</f>
+            <f name="pos">@MAIN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s86" from="501" to="504">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">bis</f>
+            <f name="pos">@PREMARK</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s87" from="505" to="506">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">an</f>
+            <f name="pos">@PREMARK</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s88" from="506" to="507">
+      <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="s89" from="508" to="511">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">14.</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s90" from="512" to="517">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">april</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s91" from="518" to="521">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">und</f>
+            <f name="pos">@CC</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s92" from="522" to="525">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">sein</f>
+            <f name="pos">@MAIN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s93" from="526" to="527">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">an</f>
+            <f name="pos">@PREMARK</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s94" from="527" to="528">
+      <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="s95" from="529" to="536">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">samstag</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s96" from="537" to="540">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">und</f>
+            <f name="pos">@CC</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s97" from="541" to="548">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">sonntag</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s98" from="549" to="552">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">von</f>
+            <f name="pos">@PREMARK</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s99" from="553" to="558">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">11.00</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s100" from="559" to="562">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">bis</f>
+            <f name="pos">@PREMARK</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s101" from="563" to="568">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">17.00</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s102" from="569" to="572">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">uhr</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s103" from="573" to="578">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">sowie</f>
+            <f name="pos">@PREMARK</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s104" from="579" to="585">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">montag</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s105" from="586" to="589">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">bis</f>
+            <f name="pos">@PREMARK</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s106" from="590" to="597">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">freitag</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s107" from="598" to="601">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">von</f>
+            <f name="pos">@PREMARK</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s108" from="602" to="607">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">15.00</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s109" from="608" to="611">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">bis</f>
+            <f name="pos">@PREMARK</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s110" from="612" to="617">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">19.00</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s111" from="617" to="620">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">uhr</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s112" from="621" to="630">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">öffnen.</f>
+            <f name="pos">@MAIN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s113" from="630" to="632">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">pd</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s114" from="632" to="633">
+      <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="s115" from="634" to="642">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">mutation</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s116" from="643" to="658">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">sektion chef amt</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s117" from="659" to="663">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">wald</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s118" from="663" to="664">
+      <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="s119" from="665" to="668">
+      <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="s120" from="669" to="689">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">sicherheit direktion</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s121" from="690" to="695">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">teilen</f>
+            <f name="pos">@MAIN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s122" from="696" to="699">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">mit</f>
+            <f name="pos">@ADVL</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s123" from="699" to="700">
+      <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="s124" from="701" to="705">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">dass</f>
+            <f name="pos">@PREMARK</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s125" from="706" to="713">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Philipp</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s126" from="714" to="724">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Hengartner</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s127" from="725" to="729">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">sein</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s128" from="730" to="747">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">arbeit verhältnis</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s129" from="748" to="751">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">auf</f>
+            <f name="pos">@POSTMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s130" from="752" to="755">
+      <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="s131" from="756" to="774">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">gemeinde verwaltung</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s132" from="775" to="784">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">kündigen</f>
+            <f name="pos">@MAIN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s133" from="785" to="788">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">haben</f>
+            <f name="pos">@MAIN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s134" from="788" to="789">
+      <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="s135" from="790" to="793">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">für</f>
+            <f name="pos">@PREMARK</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s136" from="794" to="797">
+      <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="s137" from="798" to="802">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">gut</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s138" from="803" to="806">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">und</f>
+            <f name="pos">@CC</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s139" from="807" to="816">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">angenehm</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s140" from="817" to="826">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">mitarbeit</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s141" from="827" to="831">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">werden</f>
+            <f name="pos">@MAIN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s142" from="832" to="835">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">es</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s143" from="836" to="839">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">der</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s144" from="840" to="845">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">gut</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s145" from="846" to="850">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">dank</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s146" from="851" to="864">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">aussprechen</f>
+            <f name="pos">@MAIN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s147" from="864" to="865">
+      <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="s148" from="866" to="868">
+      <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="s149" from="868" to="869">
+      <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="s150" from="870" to="875">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">neu</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s151" from="876" to="892">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">stelle inhaberin</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s152" from="893" to="898">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">werden</f>
+            <f name="pos">@MAIN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s153" from="899" to="902">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">auf</f>
+            <f name="pos">@PREMARK</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s154" from="903" to="909">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">antrag</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s155" from="910" to="913">
+      <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="s156" from="914" to="927">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">gemeinde rat</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s157" from="928" to="935">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Rebecca</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s158" from="936" to="947">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Benz-Koller</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s159" from="947" to="948">
+      <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="s160" from="949" to="957">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">jahr gang</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s161" from="958" to="962">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">1976</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s162" from="962" to="963">
+      <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="s163" from="964" to="986">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">verwaltung angestellte</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s164" from="986" to="987">
+      <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="s165" from="988" to="995">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">berneck</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s166" from="995" to="996">
+      <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="s167" from="997" to="1005">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">wählen.</f>
+            <f name="pos">@MAIN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s168" from="1005" to="1007">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">pd</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s169" from="1007" to="1008">
+      <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="s170" from="1009" to="1025">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">aufsteckfrisuren</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s171" from="1026" to="1029">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">für</f>
+            <f name="pos">@POSTMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s172" from="1030" to="1036">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">kind</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s173" from="1037" to="1049">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">walzenhausen</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s174" from="1049" to="1050">
+      <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="s175" from="1051" to="1054">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">die</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s176" from="1055" to="1056">
+      <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="s177" from="1056" to="1064">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Müettere</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s178" from="1065" to="1070">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Rundi</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s179" from="1070" to="1071">
+      <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="s180" from="1072" to="1076">
+      <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="s181" from="1077" to="1079">
+      <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="s182" from="1080" to="1085">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">ein</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s183" from="1086" to="1090">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">kurs</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s184" from="1091" to="1094">
+      <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="s185" from="1094" to="1095">
+      <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="s186" from="1096" to="1098">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">in</f>
+            <f name="pos">@PREMARK</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s187" from="1099" to="1102">
+      <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="s188" from="1103" to="1109">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Sabine</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s189" from="1110" to="1122">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Schittenhelm</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s190" from="1123" to="1129">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">zeigen</f>
+            <f name="pos">@MAIN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s191" from="1130" to="1134">
+      <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>
+    <span id="s192" from="1134" to="1135">
+      <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="s193" from="1136" to="1139">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">wie</f>
+            <f name="pos">@ADVL</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s194" from="1140" to="1143">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">man</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s195" from="1144" to="1152">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">modisch</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s196" from="1153" to="1156">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">und</f>
+            <f name="pos">@CC</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s197" from="1157" to="1168">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">raffiniert</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s198" from="1169" to="1177">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">aufsteck</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s199" from="1177" to="1178">
+      <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="s200" from="1179" to="1182">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">und</f>
+            <f name="pos">@CC</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s201" from="1183" to="1195">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">zopf frisur</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s202" from="1196" to="1199">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">für</f>
+            <f name="pos">@POSTMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s203" from="1200" to="1207">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">mädchen</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s204" from="1208" to="1214">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">machen</f>
+            <f name="pos">@MAIN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s205" from="1215" to="1219">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">können</f>
+            <f name="pos">@AUX</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s206" from="1219" to="1220">
+      <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="s207" from="1221" to="1224">
+      <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="s208" from="1225" to="1237">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">anmelde frist</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s209" from="1238" to="1243">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">laufen</f>
+            <f name="pos">@MAIN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s210" from="1244" to="1247">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">nur</f>
+            <f name="pos">@ADVL</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s211" from="1248" to="1252">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">noch</f>
+            <f name="pos">@ADVL</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s212" from="1253" to="1258">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">heute</f>
+            <f name="pos">@ADVL</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s213" from="1259" to="1262">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">bei</f>
+            <f name="pos">@PREMARK</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s214" from="1263" to="1268">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Julia</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s215" from="1269" to="1274">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Alder</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s216" from="1274" to="1275">
+      <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="s217" from="1276" to="1279">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Tel</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s218" from="1279" to="1280">
+      <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="s219" from="1281" to="1284">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">888</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s220" from="1285" to="1287">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">59</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s221" from="1288" to="1291">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">73.</f>
+            <f name="pos">@PREMOD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s222" from="1292" to="1295">
+      <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="s223" from="1296" to="1310">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">teil nehmer zahl</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s224" from="1311" to="1314">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">sein</f>
+            <f name="pos">@AUX</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s225" from="1315" to="1324">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">begrenzen.</f>
+            <f name="pos">@MAIN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s226" from="1324" to="1326">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">pd</f>
+            <f name="pos">@NH</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s227" from="1326" to="1327">
+      <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>
+  </spanList>
+</layer>
diff --git a/t/A01/13047/connexor/tokens.xml b/t/A01/13047/connexor/tokens.xml
new file mode 100644
index 0000000..fb12b17
--- /dev/null
+++ b/t/A01/13047/connexor/tokens.xml
@@ -0,0 +1,235 @@
+<?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="A01_APR.13047">
+  <spanList>
+    <span id="t_0" from="0" to="7" />
+    <span id="t_1" from="8" to="11" />
+    <span id="t_2" from="12" to="16" />
+    <span id="t_3" from="17" to="18" />
+    <span id="t_4" from="18" to="19" />
+    <span id="t_5" from="20" to="31" />
+    <span id="t_6" from="32" to="41" />
+    <span id="t_7" from="41" to="42" />
+    <span id="t_8" from="43" to="45" />
+    <span id="t_9" from="45" to="46" />
+    <span id="t_10" from="47" to="54" />
+    <span id="t_11" from="55" to="66" />
+    <span id="t_12" from="67" to="73" />
+    <span id="t_13" from="74" to="78" />
+    <span id="t_14" from="79" to="82" />
+    <span id="t_15" from="83" to="90" />
+    <span id="t_16" from="91" to="94" />
+    <span id="t_17" from="95" to="106" />
+    <span id="t_18" from="107" to="116" />
+    <span id="t_19" from="117" to="120" />
+    <span id="t_20" from="120" to="121" />
+    <span id="t_21" from="122" to="127" />
+    <span id="t_22" from="128" to="131" />
+    <span id="t_23" from="132" to="139" />
+    <span id="t_24" from="140" to="144" />
+    <span id="t_25" from="145" to="154" />
+    <span id="t_26" from="155" to="166" />
+    <span id="t_27" from="167" to="171" />
+    <span id="t_28" from="171" to="172" />
+    <span id="t_29" from="173" to="174" />
+    <span id="t_30" from="174" to="175" />
+    <span id="t_31" from="176" to="185" />
+    <span id="t_32" from="186" to="193" />
+    <span id="t_33" from="193" to="194" />
+    <span id="t_34" from="195" to="197" />
+    <span id="t_35" from="198" to="203" />
+    <span id="t_36" from="203" to="204" />
+    <span id="t_37" from="205" to="211" />
+    <span id="t_38" from="212" to="214" />
+    <span id="t_39" from="215" to="220" />
+    <span id="t_40" from="221" to="224" />
+    <span id="t_41" from="225" to="228" />
+    <span id="t_42" from="229" to="239" />
+    <span id="t_43" from="240" to="242" />
+    <span id="t_44" from="242" to="243" />
+    <span id="t_45" from="244" to="255" />
+    <span id="t_46" from="256" to="259" />
+    <span id="t_47" from="260" to="266" />
+    <span id="t_48" from="267" to="274" />
+    <span id="t_49" from="275" to="276" />
+    <span id="t_50" from="276" to="282" />
+    <span id="t_51" from="282" to="283" />
+    <span id="t_52" from="284" to="287" />
+    <span id="t_53" from="288" to="293" />
+    <span id="t_54" from="294" to="298" />
+    <span id="t_55" from="299" to="300" />
+    <span id="t_56" from="300" to="313" />
+    <span id="t_57" from="314" to="317" />
+    <span id="t_58" from="318" to="331" />
+    <span id="t_59" from="331" to="332" />
+    <span id="t_60" from="333" to="334" />
+    <span id="t_61" from="334" to="335" />
+    <span id="t_62" from="336" to="345" />
+    <span id="t_63" from="346" to="357" />
+    <span id="t_64" from="358" to="363" />
+    <span id="t_65" from="363" to="364" />
+    <span id="t_66" from="365" to="368" />
+    <span id="t_67" from="369" to="372" />
+    <span id="t_68" from="373" to="385" />
+    <span id="t_69" from="386" to="395" />
+    <span id="t_70" from="396" to="402" />
+    <span id="t_71" from="403" to="409" />
+    <span id="t_72" from="410" to="416" />
+    <span id="t_73" from="417" to="420" />
+    <span id="t_74" from="421" to="425" />
+    <span id="t_75" from="426" to="432" />
+    <span id="t_76" from="432" to="433" />
+    <span id="t_77" from="434" to="445" />
+    <span id="t_78" from="446" to="451" />
+    <span id="t_79" from="452" to="459" />
+    <span id="t_80" from="460" to="465" />
+    <span id="t_81" from="466" to="476" />
+    <span id="t_82" from="476" to="477" />
+    <span id="t_83" from="478" to="481" />
+    <span id="t_84" from="482" to="493" />
+    <span id="t_85" from="494" to="500" />
+    <span id="t_86" from="501" to="504" />
+    <span id="t_87" from="505" to="506" />
+    <span id="t_88" from="506" to="507" />
+    <span id="t_89" from="508" to="511" />
+    <span id="t_90" from="512" to="517" />
+    <span id="t_91" from="518" to="521" />
+    <span id="t_92" from="522" to="525" />
+    <span id="t_93" from="526" to="527" />
+    <span id="t_94" from="527" to="528" />
+    <span id="t_95" from="529" to="536" />
+    <span id="t_96" from="537" to="540" />
+    <span id="t_97" from="541" to="548" />
+    <span id="t_98" from="549" to="552" />
+    <span id="t_99" from="553" to="558" />
+    <span id="t_100" from="559" to="562" />
+    <span id="t_101" from="563" to="568" />
+    <span id="t_102" from="569" to="572" />
+    <span id="t_103" from="573" to="578" />
+    <span id="t_104" from="579" to="585" />
+    <span id="t_105" from="586" to="589" />
+    <span id="t_106" from="590" to="597" />
+    <span id="t_107" from="598" to="601" />
+    <span id="t_108" from="602" to="607" />
+    <span id="t_109" from="608" to="611" />
+    <span id="t_110" from="612" to="617" />
+    <span id="t_111" from="617" to="620" />
+    <span id="t_112" from="621" to="630" />
+    <span id="t_113" from="630" to="632" />
+    <span id="t_114" from="632" to="633" />
+    <span id="t_115" from="634" to="642" />
+    <span id="t_116" from="643" to="658" />
+    <span id="t_117" from="659" to="663" />
+    <span id="t_118" from="663" to="664" />
+    <span id="t_119" from="665" to="668" />
+    <span id="t_120" from="669" to="689" />
+    <span id="t_121" from="690" to="695" />
+    <span id="t_122" from="696" to="699" />
+    <span id="t_123" from="699" to="700" />
+    <span id="t_124" from="701" to="705" />
+    <span id="t_125" from="706" to="713" />
+    <span id="t_126" from="714" to="724" />
+    <span id="t_127" from="725" to="729" />
+    <span id="t_128" from="730" to="747" />
+    <span id="t_129" from="748" to="751" />
+    <span id="t_130" from="752" to="755" />
+    <span id="t_131" from="756" to="774" />
+    <span id="t_132" from="775" to="784" />
+    <span id="t_133" from="785" to="788" />
+    <span id="t_134" from="788" to="789" />
+    <span id="t_135" from="790" to="793" />
+    <span id="t_136" from="794" to="797" />
+    <span id="t_137" from="798" to="802" />
+    <span id="t_138" from="803" to="806" />
+    <span id="t_139" from="807" to="816" />
+    <span id="t_140" from="817" to="826" />
+    <span id="t_141" from="827" to="831" />
+    <span id="t_142" from="832" to="835" />
+    <span id="t_143" from="836" to="839" />
+    <span id="t_144" from="840" to="845" />
+    <span id="t_145" from="846" to="850" />
+    <span id="t_146" from="851" to="864" />
+    <span id="t_147" from="864" to="865" />
+    <span id="t_148" from="866" to="868" />
+    <span id="t_149" from="868" to="869" />
+    <span id="t_150" from="870" to="875" />
+    <span id="t_151" from="876" to="892" />
+    <span id="t_152" from="893" to="898" />
+    <span id="t_153" from="899" to="902" />
+    <span id="t_154" from="903" to="909" />
+    <span id="t_155" from="910" to="913" />
+    <span id="t_156" from="914" to="927" />
+    <span id="t_157" from="928" to="935" />
+    <span id="t_158" from="936" to="947" />
+    <span id="t_159" from="947" to="948" />
+    <span id="t_160" from="949" to="957" />
+    <span id="t_161" from="958" to="962" />
+    <span id="t_162" from="962" to="963" />
+    <span id="t_163" from="964" to="986" />
+    <span id="t_164" from="986" to="987" />
+    <span id="t_165" from="988" to="995" />
+    <span id="t_166" from="995" to="996" />
+    <span id="t_167" from="997" to="1005" />
+    <span id="t_168" from="1005" to="1007" />
+    <span id="t_169" from="1007" to="1008" />
+    <span id="t_170" from="1009" to="1025" />
+    <span id="t_171" from="1026" to="1029" />
+    <span id="t_172" from="1030" to="1036" />
+    <span id="t_173" from="1037" to="1049" />
+    <span id="t_174" from="1049" to="1050" />
+    <span id="t_175" from="1051" to="1054" />
+    <span id="t_176" from="1055" to="1056" />
+    <span id="t_177" from="1056" to="1064" />
+    <span id="t_178" from="1065" to="1070" />
+    <span id="t_179" from="1070" to="1071" />
+    <span id="t_180" from="1072" to="1076" />
+    <span id="t_181" from="1077" to="1079" />
+    <span id="t_182" from="1080" to="1085" />
+    <span id="t_183" from="1086" to="1090" />
+    <span id="t_184" from="1091" to="1094" />
+    <span id="t_185" from="1094" to="1095" />
+    <span id="t_186" from="1096" to="1098" />
+    <span id="t_187" from="1099" to="1102" />
+    <span id="t_188" from="1103" to="1109" />
+    <span id="t_189" from="1110" to="1122" />
+    <span id="t_190" from="1123" to="1129" />
+    <span id="t_191" from="1130" to="1134" />
+    <span id="t_192" from="1134" to="1135" />
+    <span id="t_193" from="1136" to="1139" />
+    <span id="t_194" from="1140" to="1143" />
+    <span id="t_195" from="1144" to="1152" />
+    <span id="t_196" from="1153" to="1156" />
+    <span id="t_197" from="1157" to="1168" />
+    <span id="t_198" from="1169" to="1177" />
+    <span id="t_199" from="1177" to="1178" />
+    <span id="t_200" from="1179" to="1182" />
+    <span id="t_201" from="1183" to="1195" />
+    <span id="t_202" from="1196" to="1199" />
+    <span id="t_203" from="1200" to="1207" />
+    <span id="t_204" from="1208" to="1214" />
+    <span id="t_205" from="1215" to="1219" />
+    <span id="t_206" from="1219" to="1220" />
+    <span id="t_207" from="1221" to="1224" />
+    <span id="t_208" from="1225" to="1237" />
+    <span id="t_209" from="1238" to="1243" />
+    <span id="t_210" from="1244" to="1247" />
+    <span id="t_211" from="1248" to="1252" />
+    <span id="t_212" from="1253" to="1258" />
+    <span id="t_213" from="1259" to="1262" />
+    <span id="t_214" from="1263" to="1268" />
+    <span id="t_215" from="1269" to="1274" />
+    <span id="t_216" from="1274" to="1275" />
+    <span id="t_217" from="1276" to="1279" />
+    <span id="t_218" from="1279" to="1280" />
+    <span id="t_219" from="1281" to="1284" />
+    <span id="t_220" from="1285" to="1287" />
+    <span id="t_221" from="1288" to="1291" />
+    <span id="t_222" from="1292" to="1295" />
+    <span id="t_223" from="1296" to="1310" />
+    <span id="t_224" from="1311" to="1314" />
+    <span id="t_225" from="1315" to="1324" />
+    <span id="t_226" from="1324" to="1326" />
+    <span id="t_227" from="1326" to="1327" />
+  </spanList>
+</layer>
diff --git a/t/A01/13047/corenlp/constituency.xml b/t/A01/13047/corenlp/constituency.xml
new file mode 100644
index 0000000..37a40db
--- /dev/null
+++ b/t/A01/13047/corenlp/constituency.xml
@@ -0,0 +1,2050 @@
+<?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_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_n30" from="122" to="171">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">S</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s2_n31"/>
+         <rel label="dominates" target="s2_n33"/>
+         <rel label="dominates" target="s2_n38"/>
+         <rel label="dominates" uri="morpho.xml#s2_n46"/>
+      </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>
+      <span id="s2_n33" from="128" to="139">
+         <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_n34"/>
+         <rel label="dominates" uri="morpho.xml#s2_n36"/>
+      </span>
+      <span id="s2_n34" from="128" to="131">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ART</f>
+         </fs>
+      </span>
+      <span id="s2_n36" from="132" to="139">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s2_n38" from="140" to="166">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">VP</f>
+         </fs>
+         <rel label="dominates" target="s2_n39"/>
+         <rel label="dominates" uri="morpho.xml#s2_n44"/>
+      </span>
+      <span id="s2_n39" from="140" to="154">
+         <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_n40"/>
+         <rel label="dominates" uri="morpho.xml#s2_n42"/>
+      </span>
+      <span id="s2_n40" from="140" to="144">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s2_n42" from="145" to="154">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s2_n44" from="155" to="166">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">VVPP</f>
+         </fs>
+      </span>
+      <span id="s2_n46" from="167" to="171">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">VAFIN</f>
+         </fs>
+      </span>
+      <span id="s2_n48" from="171" to="172">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">$.</f>
+         </fs>
+      </span>
+      <span id="s3_n1" from="173" to="197">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ROOT</f>
+         </fs>
+         <rel label="dominates" target="s3_n2"/>
+      </span>
+      <span id="s3_n2" from="173" to="197">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">S</f>
+         </fs>
+         <rel label="dominates" target="s3_n3"/>
+         <rel label="dominates" target="s3_n8"/>
+         <rel label="dominates" uri="morpho.xml#s3_n15"/>
+      </span>
+      <span id="s3_n3" from="173" to="185">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">PP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s3_n4"/>
+         <rel label="dominates" uri="morpho.xml#s3_n6"/>
+      </span>
+      <span id="s3_n4" from="173" to="175">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">APPRART</f>
+         </fs>
+      </span>
+      <span id="s3_n6" from="176" to="185">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ADJA</f>
+         </fs>
+      </span>
+      <span id="s3_n8" from="186" to="196">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NP-OA</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s3_n9"/>
+         <rel label="dominates" uri="morpho.xml#s3_n11"/>
+         <rel label="dominates" uri="morpho.xml#s3_n13"/>
+      </span>
+      <span id="s3_n9" from="186" to="193">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s3_n11" from="193" to="194">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">$,</f>
+         </fs>
+      </span>
+      <span id="s3_n13" from="195" to="196">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">CARD</f>
+         </fs>
+      </span>
+      <span id="s3_n15" from="196" to="197">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">$.</f>
+         </fs>
+      </span>
+      <span id="s4_n1" from="198" to="364">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ROOT</f>
+         </fs>
+         <rel label="dominates" target="s4_n2"/>
+      </span>
+      <span id="s4_n2" from="198" to="364">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">S</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s4_n3"/>
+         <rel label="dominates" uri="morpho.xml#s4_n5"/>
+         <rel label="dominates" uri="morpho.xml#s4_n7"/>
+         <rel label="dominates" target="s4_n9"/>
+         <rel label="dominates" target="s4_n67"/>
+         <rel label="dominates" uri="morpho.xml#s4_n74"/>
+         <rel label="dominates" uri="morpho.xml#s4_n76"/>
+      </span>
+      <span id="s4_n3" from="198" to="203">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s4_n5" from="203" to="204">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">$,</f>
+         </fs>
+      </span>
+      <span id="s4_n7" from="205" to="211">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">VVFIN</f>
+         </fs>
+      </span>
+      <span id="s4_n9" from="212" to="332">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">CNP-OA</f>
+         </fs>
+         <rel label="dominates" target="s4_n10"/>
+      </span>
+      <span id="s4_n10" from="212" to="332">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NP</f>
+         </fs>
+         <rel label="dominates" target="s4_n11"/>
+         <rel label="dominates" uri="morpho.xml#s4_n65"/>
+      </span>
+      <span id="s4_n11" from="212" to="331">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">AVP</f>
+         </fs>
+         <rel label="dominates" target="s4_n12"/>
+         <rel label="dominates" target="s4_n24"/>
+      </span>
+      <span id="s4_n12" from="212" to="239">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">PP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s4_n13"/>
+         <rel label="dominates" uri="morpho.xml#s4_n15"/>
+         <rel label="dominates" uri="morpho.xml#s4_n17"/>
+         <rel label="dominates" target="s4_n19"/>
+      </span>
+      <span id="s4_n13" from="212" to="214">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">APPR</f>
+         </fs>
+      </span>
+      <span id="s4_n15" from="215" to="220">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">CARD</f>
+         </fs>
+      </span>
+      <span id="s4_n17" from="221" to="224">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s4_n19" from="225" to="239">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s4_n20"/>
+         <rel label="dominates" uri="morpho.xml#s4_n22"/>
+      </span>
+      <span id="s4_n20" from="225" to="228">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ART</f>
+         </fs>
+      </span>
+      <span id="s4_n22" from="229" to="239">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s4_n24" from="240" to="331">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">PP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s4_n25"/>
+         <rel label="dominates" uri="morpho.xml#s4_n27"/>
+         <rel label="dominates" target="s4_n29"/>
+      </span>
+      <span id="s4_n25" from="240" to="243">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">APPRART</f>
+         </fs>
+      </span>
+      <span id="s4_n27" from="244" to="255">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s4_n29" from="256" to="331">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NP</f>
+         </fs>
+         <rel label="dominates" target="s4_n30"/>
+         <rel label="dominates" target="s4_n38"/>
+      </span>
+      <span id="s4_n30" from="256" to="274">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">PP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s4_n31"/>
+         <rel label="dominates" target="s4_n33"/>
+      </span>
+      <span id="s4_n31" from="256" to="259">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">APPR</f>
+         </fs>
+      </span>
+      <span id="s4_n33" from="260" to="274">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">MPN</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s4_n34"/>
+         <rel label="dominates" uri="morpho.xml#s4_n36"/>
+      </span>
+      <span id="s4_n34" from="260" to="266">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NE</f>
+         </fs>
+      </span>
+      <span id="s4_n36" from="267" to="274">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NE</f>
+         </fs>
+      </span>
+      <span id="s4_n38" from="275" to="331">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">CNP</f>
+         </fs>
+         <rel label="dominates" target="s4_n39"/>
+         <rel label="dominates" uri="morpho.xml#s4_n61"/>
+         <rel label="dominates" uri="morpho.xml#s4_n63"/>
+      </span>
+      <span id="s4_n39" from="275" to="313">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NP</f>
+         </fs>
+         <rel label="dominates" target="s4_n40"/>
+         <rel label="dominates" target="s4_n45"/>
+      </span>
+      <span id="s4_n40" from="275" to="282">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">CNP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s4_n41"/>
+         <rel label="dominates" uri="morpho.xml#s4_n43"/>
+      </span>
+      <span id="s4_n41" from="275" to="276">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">TRUNC</f>
+         </fs>
+      </span>
+      <span id="s4_n43" from="276" to="282">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s4_n45" from="282" to="313">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NP</f>
+         </fs>
+         <rel label="dominates" target="s4_n46"/>
+         <rel label="dominates" target="s4_n56"/>
+      </span>
+      <span id="s4_n46" from="282" to="298">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">CNP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s4_n47"/>
+         <rel label="dominates" uri="morpho.xml#s4_n49"/>
+         <rel label="dominates" target="s4_n51"/>
+      </span>
+      <span id="s4_n47" from="282" to="283">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">TRUNC</f>
+         </fs>
+      </span>
+      <span id="s4_n49" from="284" to="287">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">KON</f>
+         </fs>
+      </span>
+      <span id="s4_n51" from="288" to="298">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s4_n52"/>
+         <rel label="dominates" uri="morpho.xml#s4_n54"/>
+      </span>
+      <span id="s4_n52" from="288" to="293">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NE</f>
+         </fs>
+      </span>
+      <span id="s4_n54" from="294" to="298">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NE</f>
+         </fs>
+      </span>
+      <span id="s4_n56" from="299" to="313">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s4_n57"/>
+         <rel label="dominates" uri="morpho.xml#s4_n59"/>
+      </span>
+      <span id="s4_n57" from="299" to="300">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">TRUNC</f>
+         </fs>
+      </span>
+      <span id="s4_n59" from="300" to="313">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s4_n61" from="314" to="317">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">KON</f>
+         </fs>
+      </span>
+      <span id="s4_n63" from="318" to="331">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s4_n65" from="331" to="332">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">TRUNC</f>
+         </fs>
+      </span>
+      <span id="s4_n67" from="333" to="357">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">PP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s4_n68"/>
+         <rel label="dominates" uri="morpho.xml#s4_n70"/>
+         <rel label="dominates" uri="morpho.xml#s4_n72"/>
+      </span>
+      <span id="s4_n68" from="333" to="335">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">APPRART</f>
+         </fs>
+      </span>
+      <span id="s4_n70" from="336" to="345">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s4_n72" from="346" to="357">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s4_n74" from="358" to="363">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">PTKVZ</f>
+         </fs>
+      </span>
+      <span id="s4_n76" from="363" to="364">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">$.</f>
+         </fs>
+      </span>
+      <span id="s5_n1" from="365" to="477">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ROOT</f>
+         </fs>
+         <rel label="dominates" target="s5_n2"/>
+      </span>
+      <span id="s5_n2" from="365" to="477">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">CS</f>
+         </fs>
+         <rel label="dominates" target="s5_n3"/>
+         <rel label="dominates" uri="morpho.xml#s5_n28"/>
+         <rel label="dominates" target="s5_n30"/>
+         <rel label="dominates" uri="morpho.xml#s5_n43"/>
+      </span>
+      <span id="s5_n3" from="365" to="432">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">S</f>
+         </fs>
+         <rel label="dominates" target="s5_n4"/>
+         <rel label="dominates" uri="morpho.xml#s5_n13"/>
+         <rel label="dominates" target="s5_n15"/>
+      </span>
+      <span id="s5_n4" from="365" to="395">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">PP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s5_n5"/>
+         <rel label="dominates" uri="morpho.xml#s5_n7"/>
+         <rel label="dominates" uri="morpho.xml#s5_n9"/>
+         <rel label="dominates" uri="morpho.xml#s5_n11"/>
+      </span>
+      <span id="s5_n5" from="365" to="368">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">APPR</f>
+         </fs>
+      </span>
+      <span id="s5_n7" from="369" to="372">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ART</f>
+         </fs>
+      </span>
+      <span id="s5_n9" from="373" to="385">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ADJA</f>
+         </fs>
+      </span>
+      <span id="s5_n11" from="386" to="395">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s5_n13" from="396" to="402">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">VVFIN</f>
+         </fs>
+      </span>
+      <span id="s5_n15" from="403" to="432">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">CNP-SB</f>
+         </fs>
+         <rel label="dominates" target="s5_n16"/>
+         <rel label="dominates" uri="morpho.xml#s5_n21"/>
+         <rel label="dominates" target="s5_n23"/>
+      </span>
+      <span id="s5_n16" from="403" to="416">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">MPN</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s5_n17"/>
+         <rel label="dominates" uri="morpho.xml#s5_n19"/>
+      </span>
+      <span id="s5_n17" from="403" to="409">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NE</f>
+         </fs>
+      </span>
+      <span id="s5_n19" from="410" to="416">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NE</f>
+         </fs>
+      </span>
+      <span id="s5_n21" from="417" to="420">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">KON</f>
+         </fs>
+      </span>
+      <span id="s5_n23" from="421" to="432">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">MPN</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s5_n24"/>
+         <rel label="dominates" uri="morpho.xml#s5_n26"/>
+      </span>
+      <span id="s5_n24" from="421" to="425">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NE</f>
+         </fs>
+      </span>
+      <span id="s5_n26" from="426" to="432">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NE</f>
+         </fs>
+      </span>
+      <span id="s5_n28" from="432" to="433">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">$.</f>
+         </fs>
+      </span>
+      <span id="s5_n30" from="434" to="476">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">S</f>
+         </fs>
+         <rel label="dominates" target="s5_n31"/>
+         <rel label="dominates" uri="morpho.xml#s5_n36"/>
+         <rel label="dominates" target="s5_n38"/>
+      </span>
+      <span id="s5_n31" from="434" to="451">
+         <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#s5_n32"/>
+         <rel label="dominates" uri="morpho.xml#s5_n34"/>
+      </span>
+      <span id="s5_n32" from="434" to="445">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ADJA</f>
+         </fs>
+      </span>
+      <span id="s5_n34" from="446" to="451">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s5_n36" from="452" to="459">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">VVFIN</f>
+         </fs>
+      </span>
+      <span id="s5_n38" from="460" to="476">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">MPN</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s5_n39"/>
+         <rel label="dominates" uri="morpho.xml#s5_n41"/>
+      </span>
+      <span id="s5_n39" from="460" to="465">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NE</f>
+         </fs>
+      </span>
+      <span id="s5_n41" from="466" to="476">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NE</f>
+         </fs>
+      </span>
+      <span id="s5_n43" from="476" to="477">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">$.</f>
+         </fs>
+      </span>
+      <span id="s6_n1" from="478" to="511">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ROOT</f>
+         </fs>
+         <rel label="dominates" target="s6_n2"/>
+      </span>
+      <span id="s6_n2" from="478" to="511">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">S</f>
+         </fs>
+         <rel label="dominates" target="s6_n3"/>
+         <rel label="dominates" uri="morpho.xml#s6_n8"/>
+         <rel label="dominates" target="s6_n10"/>
+         <rel label="dominates" uri="morpho.xml#s6_n18"/>
+      </span>
+      <span id="s6_n3" from="478" to="493">
+         <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#s6_n4"/>
+         <rel label="dominates" uri="morpho.xml#s6_n6"/>
+      </span>
+      <span id="s6_n4" from="478" to="481">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ART</f>
+         </fs>
+      </span>
+      <span id="s6_n6" from="482" to="493">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s6_n8" from="494" to="500">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">VVFIN</f>
+         </fs>
+      </span>
+      <span id="s6_n10" from="501" to="510">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">VP</f>
+         </fs>
+         <rel label="dominates" target="s6_n11"/>
+      </span>
+      <span id="s6_n11" from="501" to="510">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">PP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s6_n12"/>
+         <rel label="dominates" uri="morpho.xml#s6_n14"/>
+         <rel label="dominates" uri="morpho.xml#s6_n16"/>
+      </span>
+      <span id="s6_n12" from="501" to="504">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">APPR</f>
+         </fs>
+      </span>
+      <span id="s6_n14" from="505" to="507">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">APPRART</f>
+         </fs>
+      </span>
+      <span id="s6_n16" from="508" to="510">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">CARD</f>
+         </fs>
+      </span>
+      <span id="s6_n18" from="510" to="511">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">$.</f>
+         </fs>
+      </span>
+      <span id="s7_n1" from="512" to="633">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ROOT</f>
+         </fs>
+         <rel label="dominates" target="s7_n2"/>
+      </span>
+      <span id="s7_n2" from="512" to="633">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">CS</f>
+         </fs>
+         <rel label="dominates" target="s7_n3"/>
+         <rel label="dominates" uri="morpho.xml#s7_n7"/>
+         <rel label="dominates" target="s7_n9"/>
+         <rel label="dominates" uri="morpho.xml#s7_n60"/>
+      </span>
+      <span id="s7_n3" from="512" to="517">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">S</f>
+         </fs>
+         <rel label="dominates" target="s7_n4"/>
+      </span>
+      <span id="s7_n4" from="512" to="517">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s7_n5"/>
+      </span>
+      <span id="s7_n5" from="512" to="517">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s7_n7" from="518" to="521">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">KON</f>
+         </fs>
+      </span>
+      <span id="s7_n9" from="522" to="632">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">S</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s7_n10"/>
+         <rel label="dominates" target="s7_n12"/>
+      </span>
+      <span id="s7_n10" from="522" to="525">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">VAFIN</f>
+         </fs>
+      </span>
+      <span id="s7_n12" from="526" to="632">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">VP</f>
+         </fs>
+         <rel label="dominates" target="s7_n13"/>
+         <rel label="dominates" target="s7_n18"/>
+         <rel label="dominates" uri="morpho.xml#s7_n58"/>
+      </span>
+      <span id="s7_n13" from="526" to="536">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">PP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s7_n14"/>
+         <rel label="dominates" uri="morpho.xml#s7_n16"/>
+      </span>
+      <span id="s7_n14" from="526" to="528">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">APPRART</f>
+         </fs>
+      </span>
+      <span id="s7_n16" from="529" to="536">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s7_n18" from="537" to="620">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">CNP-OA</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s7_n19"/>
+         <rel label="dominates" target="s7_n21"/>
+         <rel label="dominates" uri="morpho.xml#s7_n36"/>
+         <rel label="dominates" target="s7_n38"/>
+      </span>
+      <span id="s7_n19" from="537" to="540">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">KON</f>
+         </fs>
+      </span>
+      <span id="s7_n21" from="541" to="572">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s7_n22"/>
+         <rel label="dominates" target="s7_n24"/>
+      </span>
+      <span id="s7_n22" from="541" to="548">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s7_n24" from="549" to="572">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">PP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s7_n25"/>
+         <rel label="dominates" target="s7_n27"/>
+         <rel label="dominates" uri="morpho.xml#s7_n34"/>
+      </span>
+      <span id="s7_n25" from="549" to="552">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">APPR</f>
+         </fs>
+      </span>
+      <span id="s7_n27" from="553" to="568">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">CAP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s7_n28"/>
+         <rel label="dominates" uri="morpho.xml#s7_n30"/>
+         <rel label="dominates" uri="morpho.xml#s7_n32"/>
+      </span>
+      <span id="s7_n28" from="553" to="558">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">CARD</f>
+         </fs>
+      </span>
+      <span id="s7_n30" from="559" to="562">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">APPR</f>
+         </fs>
+      </span>
+      <span id="s7_n32" from="563" to="568">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">CARD</f>
+         </fs>
+      </span>
+      <span id="s7_n34" from="569" to="572">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s7_n36" from="573" to="578">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">KON</f>
+         </fs>
+      </span>
+      <span id="s7_n38" from="579" to="620">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s7_n39"/>
+         <rel label="dominates" target="s7_n41"/>
+      </span>
+      <span id="s7_n39" from="579" to="585">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s7_n41" from="586" to="620">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">PP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s7_n42"/>
+         <rel label="dominates" uri="morpho.xml#s7_n44"/>
+         <rel label="dominates" target="s7_n46"/>
+      </span>
+      <span id="s7_n42" from="586" to="589">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">APPR</f>
+         </fs>
+      </span>
+      <span id="s7_n44" from="590" to="597">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s7_n46" from="598" to="620">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">PP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s7_n47"/>
+         <rel label="dominates" target="s7_n49"/>
+         <rel label="dominates" uri="morpho.xml#s7_n56"/>
+      </span>
+      <span id="s7_n47" from="598" to="601">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">APPR</f>
+         </fs>
+      </span>
+      <span id="s7_n49" from="602" to="617">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">CAP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s7_n50"/>
+         <rel label="dominates" uri="morpho.xml#s7_n52"/>
+         <rel label="dominates" uri="morpho.xml#s7_n54"/>
+      </span>
+      <span id="s7_n50" from="602" to="607">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">CARD</f>
+         </fs>
+      </span>
+      <span id="s7_n52" from="608" to="611">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">APPR</f>
+         </fs>
+      </span>
+      <span id="s7_n54" from="612" to="617">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">CARD</f>
+         </fs>
+      </span>
+      <span id="s7_n56" from="617" to="620">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s7_n58" from="621" to="632">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">VVPP</f>
+         </fs>
+      </span>
+      <span id="s7_n60" from="632" to="633">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">$.</f>
+         </fs>
+      </span>
+      <span id="s8_n1" from="634" to="664">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ROOT</f>
+         </fs>
+         <rel label="dominates" target="s8_n2"/>
+      </span>
+      <span id="s8_n2" from="634" to="664">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s8_n3"/>
+         <rel label="dominates" target="s8_n5"/>
+         <rel label="dominates" uri="morpho.xml#s8_n10"/>
+      </span>
+      <span id="s8_n3" from="634" to="642">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s8_n5" from="643" to="663">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s8_n6"/>
+         <rel label="dominates" uri="morpho.xml#s8_n8"/>
+      </span>
+      <span id="s8_n6" from="643" to="658">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s8_n8" from="659" to="663">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s8_n10" from="663" to="664">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">$.</f>
+         </fs>
+      </span>
+      <span id="s9_n1" from="665" to="789">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ROOT</f>
+         </fs>
+         <rel label="dominates" target="s9_n2"/>
+      </span>
+      <span id="s9_n2" from="665" to="789">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">S</f>
+         </fs>
+         <rel label="dominates" target="s9_n3"/>
+         <rel label="dominates" uri="morpho.xml#s9_n8"/>
+         <rel label="dominates" uri="morpho.xml#s9_n10"/>
+         <rel label="dominates" uri="morpho.xml#s9_n12"/>
+         <rel label="dominates" target="s9_n14"/>
+         <rel label="dominates" uri="morpho.xml#s9_n39"/>
+      </span>
+      <span id="s9_n3" from="665" to="689">
+         <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#s9_n4"/>
+         <rel label="dominates" uri="morpho.xml#s9_n6"/>
+      </span>
+      <span id="s9_n4" from="665" to="668">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ART</f>
+         </fs>
+      </span>
+      <span id="s9_n6" from="669" to="689">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s9_n8" from="690" to="695">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">VVFIN</f>
+         </fs>
+      </span>
+      <span id="s9_n10" from="696" to="699">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">PTKVZ</f>
+         </fs>
+      </span>
+      <span id="s9_n12" from="699" to="700">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">$,</f>
+         </fs>
+      </span>
+      <span id="s9_n14" from="701" to="788">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">S</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s9_n15"/>
+         <rel label="dominates" target="s9_n17"/>
+         <rel label="dominates" target="s9_n22"/>
+         <rel label="dominates" uri="morpho.xml#s9_n37"/>
+      </span>
+      <span id="s9_n15" from="701" to="705">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">KOUS</f>
+         </fs>
+      </span>
+      <span id="s9_n17" from="706" to="724">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">MPN-SB</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s9_n18"/>
+         <rel label="dominates" uri="morpho.xml#s9_n20"/>
+      </span>
+      <span id="s9_n18" from="706" to="713">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NE</f>
+         </fs>
+      </span>
+      <span id="s9_n20" from="714" to="724">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NE</f>
+         </fs>
+      </span>
+      <span id="s9_n22" from="725" to="784">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">VP</f>
+         </fs>
+         <rel label="dominates" target="s9_n23"/>
+         <rel label="dominates" target="s9_n28"/>
+         <rel label="dominates" uri="morpho.xml#s9_n35"/>
+      </span>
+      <span id="s9_n23" from="725" to="747">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NP-OA</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s9_n24"/>
+         <rel label="dominates" uri="morpho.xml#s9_n26"/>
+      </span>
+      <span id="s9_n24" from="725" to="729">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">PPOSAT</f>
+         </fs>
+      </span>
+      <span id="s9_n26" from="730" to="747">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s9_n28" from="748" to="774">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">PP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s9_n29"/>
+         <rel label="dominates" uri="morpho.xml#s9_n31"/>
+         <rel label="dominates" uri="morpho.xml#s9_n33"/>
+      </span>
+      <span id="s9_n29" from="748" to="751">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">APPR</f>
+         </fs>
+      </span>
+      <span id="s9_n31" from="752" to="755">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ART</f>
+         </fs>
+      </span>
+      <span id="s9_n33" from="756" to="774">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s9_n35" from="775" to="784">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">VVPP</f>
+         </fs>
+      </span>
+      <span id="s9_n37" from="785" to="788">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">VAFIN</f>
+         </fs>
+      </span>
+      <span id="s9_n39" from="788" to="789">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">$.</f>
+         </fs>
+      </span>
+      <span id="s10_n1" from="790" to="865">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ROOT</f>
+         </fs>
+         <rel label="dominates" target="s10_n2"/>
+      </span>
+      <span id="s10_n2" from="790" to="865">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">S</f>
+         </fs>
+         <rel label="dominates" target="s10_n3"/>
+         <rel label="dominates" uri="morpho.xml#s10_n17"/>
+         <rel label="dominates" uri="morpho.xml#s10_n19"/>
+         <rel label="dominates" target="s10_n21"/>
+         <rel label="dominates" target="s10_n28"/>
+         <rel label="dominates" uri="morpho.xml#s10_n31"/>
+      </span>
+      <span id="s10_n3" from="790" to="826">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">PP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s10_n4"/>
+         <rel label="dominates" uri="morpho.xml#s10_n6"/>
+         <rel label="dominates" target="s10_n8"/>
+         <rel label="dominates" uri="morpho.xml#s10_n15"/>
+      </span>
+      <span id="s10_n4" from="790" to="793">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">APPR</f>
+         </fs>
+      </span>
+      <span id="s10_n6" from="794" to="797">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ART</f>
+         </fs>
+      </span>
+      <span id="s10_n8" from="798" to="816">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">CAP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s10_n9"/>
+         <rel label="dominates" uri="morpho.xml#s10_n11"/>
+         <rel label="dominates" uri="morpho.xml#s10_n13"/>
+      </span>
+      <span id="s10_n9" from="798" to="802">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ADJA</f>
+         </fs>
+      </span>
+      <span id="s10_n11" from="803" to="806">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">KON</f>
+         </fs>
+      </span>
+      <span id="s10_n13" from="807" to="816">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ADJA</f>
+         </fs>
+      </span>
+      <span id="s10_n15" from="817" to="826">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s10_n17" from="827" to="831">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">VAFIN</f>
+         </fs>
+      </span>
+      <span id="s10_n19" from="832" to="835">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">PPER</f>
+         </fs>
+      </span>
+      <span id="s10_n21" from="836" to="850">
+         <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#s10_n22"/>
+         <rel label="dominates" uri="morpho.xml#s10_n24"/>
+         <rel label="dominates" uri="morpho.xml#s10_n26"/>
+      </span>
+      <span id="s10_n22" from="836" to="839">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ART</f>
+         </fs>
+      </span>
+      <span id="s10_n24" from="840" to="845">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ADJA</f>
+         </fs>
+      </span>
+      <span id="s10_n26" from="846" to="850">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s10_n28" from="851" to="864">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">VP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s10_n29"/>
+      </span>
+      <span id="s10_n29" from="851" to="864">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">VVPP</f>
+         </fs>
+      </span>
+      <span id="s10_n31" from="864" to="865">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">$.</f>
+         </fs>
+      </span>
+      <span id="s11_n1" from="866" to="1008">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ROOT</f>
+         </fs>
+         <rel label="dominates" target="s11_n2"/>
+      </span>
+      <span id="s11_n2" from="866" to="1008">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">S</f>
+         </fs>
+         <rel label="dominates" target="s11_n3"/>
+         <rel label="dominates" uri="morpho.xml#s11_n10"/>
+         <rel label="dominates" target="s11_n12"/>
+         <rel label="dominates" target="s11_n22"/>
+         <rel label="dominates" uri="morpho.xml#s11_n44"/>
+         <rel label="dominates" target="s11_n46"/>
+         <rel label="dominates" uri="morpho.xml#s11_n49"/>
+      </span>
+      <span id="s11_n3" from="866" to="892">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">PP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s11_n4"/>
+         <rel label="dominates" uri="morpho.xml#s11_n6"/>
+         <rel label="dominates" uri="morpho.xml#s11_n8"/>
+      </span>
+      <span id="s11_n4" from="866" to="869">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">APPRART</f>
+         </fs>
+      </span>
+      <span id="s11_n6" from="870" to="875">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ADJA</f>
+         </fs>
+      </span>
+      <span id="s11_n8" from="876" to="892">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s11_n10" from="893" to="898">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">VAFIN</f>
+         </fs>
+      </span>
+      <span id="s11_n12" from="899" to="927">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">PP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s11_n13"/>
+         <rel label="dominates" uri="morpho.xml#s11_n15"/>
+         <rel label="dominates" target="s11_n17"/>
+      </span>
+      <span id="s11_n13" from="899" to="902">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">APPR</f>
+         </fs>
+      </span>
+      <span id="s11_n15" from="903" to="909">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s11_n17" from="910" to="927">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s11_n18"/>
+         <rel label="dominates" uri="morpho.xml#s11_n20"/>
+      </span>
+      <span id="s11_n18" from="910" to="913">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ART</f>
+         </fs>
+      </span>
+      <span id="s11_n20" from="914" to="927">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s11_n22" from="928" to="995">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NP-SB</f>
+         </fs>
+         <rel label="dominates" target="s11_n23"/>
+         <rel label="dominates" uri="morpho.xml#s11_n28"/>
+         <rel label="dominates" target="s11_n30"/>
+      </span>
+      <span id="s11_n23" from="928" to="947">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">MPN</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s11_n24"/>
+         <rel label="dominates" uri="morpho.xml#s11_n26"/>
+      </span>
+      <span id="s11_n24" from="928" to="935">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NE</f>
+         </fs>
+      </span>
+      <span id="s11_n26" from="936" to="947">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NE</f>
+         </fs>
+      </span>
+      <span id="s11_n28" from="947" to="948">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">$,</f>
+         </fs>
+      </span>
+      <span id="s11_n30" from="949" to="995">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">CNP</f>
+         </fs>
+         <rel label="dominates" target="s11_n31"/>
+         <rel label="dominates" uri="morpho.xml#s11_n36"/>
+         <rel label="dominates" uri="morpho.xml#s11_n38"/>
+         <rel label="dominates" uri="morpho.xml#s11_n40"/>
+         <rel label="dominates" uri="morpho.xml#s11_n42"/>
+      </span>
+      <span id="s11_n31" from="949" to="962">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s11_n32"/>
+         <rel label="dominates" uri="morpho.xml#s11_n34"/>
+      </span>
+      <span id="s11_n32" from="949" to="957">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s11_n34" from="958" to="962">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">CARD</f>
+         </fs>
+      </span>
+      <span id="s11_n36" from="962" to="963">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">$,</f>
+         </fs>
+      </span>
+      <span id="s11_n38" from="964" to="986">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s11_n40" from="986" to="987">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">$,</f>
+         </fs>
+      </span>
+      <span id="s11_n42" from="988" to="995">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s11_n44" from="995" to="996">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">$,</f>
+         </fs>
+      </span>
+      <span id="s11_n46" from="997" to="1007">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">VP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s11_n47"/>
+      </span>
+      <span id="s11_n47" from="997" to="1007">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">VVPP</f>
+         </fs>
+      </span>
+      <span id="s11_n49" from="1007" to="1008">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">$.</f>
+         </fs>
+      </span>
+      <span id="s12_n1" from="1009" to="1050">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ROOT</f>
+         </fs>
+         <rel label="dominates" target="s12_n2"/>
+      </span>
+      <span id="s12_n2" from="1009" to="1050">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">VP</f>
+         </fs>
+         <rel label="dominates" target="s12_n3"/>
+         <rel label="dominates" uri="morpho.xml#s12_n11"/>
+         <rel label="dominates" uri="morpho.xml#s12_n13"/>
+      </span>
+      <span id="s12_n3" from="1009" to="1036">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NP-OA</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s12_n4"/>
+         <rel label="dominates" target="s12_n6"/>
+      </span>
+      <span id="s12_n4" from="1009" to="1025">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s12_n6" from="1026" to="1036">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">PP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s12_n7"/>
+         <rel label="dominates" uri="morpho.xml#s12_n9"/>
+      </span>
+      <span id="s12_n7" from="1026" to="1029">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">APPR</f>
+         </fs>
+      </span>
+      <span id="s12_n9" from="1030" to="1036">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s12_n11" from="1037" to="1049">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">VVINF</f>
+         </fs>
+      </span>
+      <span id="s12_n13" from="1049" to="1050">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">$.</f>
+         </fs>
+      </span>
+      <span id="s13_n1" from="1051" to="1220">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ROOT</f>
+         </fs>
+         <rel label="dominates" target="s13_n2"/>
+      </span>
+      <span id="s13_n2" from="1051" to="1220">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">S</f>
+         </fs>
+         <rel label="dominates" target="s13_n3"/>
+         <rel label="dominates" uri="morpho.xml#s13_n15"/>
+         <rel label="dominates" target="s13_n17"/>
+         <rel label="dominates" uri="morpho.xml#s13_n24"/>
+         <rel label="dominates" uri="morpho.xml#s13_n26"/>
+         <rel label="dominates" target="s13_n28"/>
+         <rel label="dominates" uri="morpho.xml#s13_n80"/>
+      </span>
+      <span id="s13_n3" from="1051" to="1071">
+         <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#s13_n4"/>
+         <rel label="dominates" uri="morpho.xml#s13_n6"/>
+         <rel label="dominates" target="s13_n8"/>
+      </span>
+      <span id="s13_n4" from="1051" to="1054">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ART</f>
+         </fs>
+      </span>
+      <span id="s13_n6" from="1055" to="1056">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s13_n8" from="1056" to="1071">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">MPN</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s13_n9"/>
+         <rel label="dominates" uri="morpho.xml#s13_n11"/>
+         <rel label="dominates" uri="morpho.xml#s13_n13"/>
+      </span>
+      <span id="s13_n9" from="1056" to="1064">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NE</f>
+         </fs>
+      </span>
+      <span id="s13_n11" from="1065" to="1070">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NE</f>
+         </fs>
+      </span>
+      <span id="s13_n13" from="1070" to="1071">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NE</f>
+         </fs>
+      </span>
+      <span id="s13_n15" from="1072" to="1076">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">VVFIN</f>
+         </fs>
+      </span>
+      <span id="s13_n17" from="1077" to="1090">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">PP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s13_n18"/>
+         <rel label="dominates" uri="morpho.xml#s13_n20"/>
+         <rel label="dominates" uri="morpho.xml#s13_n22"/>
+      </span>
+      <span id="s13_n18" from="1077" to="1079">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">APPR</f>
+         </fs>
+      </span>
+      <span id="s13_n20" from="1080" to="1085">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ART</f>
+         </fs>
+      </span>
+      <span id="s13_n22" from="1086" to="1090">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s13_n24" from="1091" to="1094">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">PTKVZ</f>
+         </fs>
+      </span>
+      <span id="s13_n26" from="1094" to="1095">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">$,</f>
+         </fs>
+      </span>
+      <span id="s13_n28" from="1096" to="1219">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">S</f>
+         </fs>
+         <rel label="dominates" target="s13_n29"/>
+         <rel label="dominates" uri="morpho.xml#s13_n42"/>
+         <rel label="dominates" uri="morpho.xml#s13_n44"/>
+         <rel label="dominates" target="s13_n46"/>
+      </span>
+      <span id="s13_n29" from="1096" to="1129">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">VP</f>
+         </fs>
+         <rel label="dominates" target="s13_n30"/>
+         <rel label="dominates" uri="morpho.xml#s13_n40"/>
+      </span>
+      <span id="s13_n30" from="1096" to="1122">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">PP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s13_n31"/>
+         <rel label="dominates" uri="morpho.xml#s13_n33"/>
+         <rel label="dominates" target="s13_n35"/>
+      </span>
+      <span id="s13_n31" from="1096" to="1098">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">APPR</f>
+         </fs>
+      </span>
+      <span id="s13_n33" from="1099" to="1102">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ART</f>
+         </fs>
+      </span>
+      <span id="s13_n35" from="1103" to="1122">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">MPN</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s13_n36"/>
+         <rel label="dominates" uri="morpho.xml#s13_n38"/>
+      </span>
+      <span id="s13_n36" from="1103" to="1109">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NE</f>
+         </fs>
+      </span>
+      <span id="s13_n38" from="1110" to="1122">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NE</f>
+         </fs>
+      </span>
+      <span id="s13_n40" from="1123" to="1129">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">VVINF</f>
+         </fs>
+      </span>
+      <span id="s13_n42" from="1130" to="1134">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">VAFIN</f>
+         </fs>
+      </span>
+      <span id="s13_n44" from="1134" to="1135">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">$,</f>
+         </fs>
+      </span>
+      <span id="s13_n46" from="1136" to="1219">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">S-SB</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s13_n47"/>
+         <rel label="dominates" target="s13_n49"/>
+         <rel label="dominates" target="s13_n62"/>
+         <rel label="dominates" uri="morpho.xml#s13_n78"/>
+      </span>
+      <span id="s13_n47" from="1136" to="1139">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">PWAV</f>
+         </fs>
+      </span>
+      <span id="s13_n49" from="1140" to="1177">
+         <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#s13_n50"/>
+         <rel label="dominates" target="s13_n52"/>
+      </span>
+      <span id="s13_n50" from="1140" to="1143">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">PIS</f>
+         </fs>
+      </span>
+      <span id="s13_n52" from="1144" to="1177">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NP</f>
+         </fs>
+         <rel label="dominates" target="s13_n53"/>
+         <rel label="dominates" uri="morpho.xml#s13_n60"/>
+      </span>
+      <span id="s13_n53" from="1144" to="1168">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">CAP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s13_n54"/>
+         <rel label="dominates" uri="morpho.xml#s13_n56"/>
+         <rel label="dominates" uri="morpho.xml#s13_n58"/>
+      </span>
+      <span id="s13_n54" from="1144" to="1152">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ADJA</f>
+         </fs>
+      </span>
+      <span id="s13_n56" from="1153" to="1156">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">KON</f>
+         </fs>
+      </span>
+      <span id="s13_n58" from="1157" to="1168">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ADJA</f>
+         </fs>
+      </span>
+      <span id="s13_n60" from="1169" to="1177">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s13_n62" from="1177" to="1214">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">VP</f>
+         </fs>
+         <rel label="dominates" target="s13_n63"/>
+         <rel label="dominates" uri="morpho.xml#s13_n76"/>
+      </span>
+      <span id="s13_n63" from="1177" to="1207">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NP-OA</f>
+         </fs>
+         <rel label="dominates" target="s13_n64"/>
+         <rel label="dominates" target="s13_n71"/>
+      </span>
+      <span id="s13_n64" from="1177" to="1195">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">CNP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s13_n65"/>
+         <rel label="dominates" uri="morpho.xml#s13_n67"/>
+         <rel label="dominates" uri="morpho.xml#s13_n69"/>
+      </span>
+      <span id="s13_n65" from="1177" to="1178">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">$(</f>
+         </fs>
+      </span>
+      <span id="s13_n67" from="1179" to="1182">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">KON</f>
+         </fs>
+      </span>
+      <span id="s13_n69" from="1183" to="1195">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s13_n71" from="1196" to="1207">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">PP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s13_n72"/>
+         <rel label="dominates" uri="morpho.xml#s13_n74"/>
+      </span>
+      <span id="s13_n72" from="1196" to="1199">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">APPR</f>
+         </fs>
+      </span>
+      <span id="s13_n74" from="1200" to="1207">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s13_n76" from="1208" to="1214">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">VVINF</f>
+         </fs>
+      </span>
+      <span id="s13_n78" from="1215" to="1219">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">VMFIN</f>
+         </fs>
+      </span>
+      <span id="s13_n80" from="1219" to="1220">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">$.</f>
+         </fs>
+      </span>
+      <span id="s14_n1" from="1221" to="1291">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ROOT</f>
+         </fs>
+         <rel label="dominates" target="s14_n2"/>
+      </span>
+      <span id="s14_n2" from="1221" to="1291">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">S</f>
+         </fs>
+         <rel label="dominates" target="s14_n3"/>
+         <rel label="dominates" uri="morpho.xml#s14_n8"/>
+         <rel label="dominates" uri="morpho.xml#s14_n10"/>
+         <rel label="dominates" uri="morpho.xml#s14_n12"/>
+         <rel label="dominates" uri="morpho.xml#s14_n14"/>
+         <rel label="dominates" target="s14_n16"/>
+         <rel label="dominates" uri="morpho.xml#s14_n36"/>
+      </span>
+      <span id="s14_n3" from="1221" to="1237">
+         <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#s14_n4"/>
+         <rel label="dominates" uri="morpho.xml#s14_n6"/>
+      </span>
+      <span id="s14_n4" from="1221" to="1224">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ART</f>
+         </fs>
+      </span>
+      <span id="s14_n6" from="1225" to="1237">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s14_n8" from="1238" to="1243">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">VVFIN</f>
+         </fs>
+      </span>
+      <span id="s14_n10" from="1244" to="1247">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ADV</f>
+         </fs>
+      </span>
+      <span id="s14_n12" from="1248" to="1252">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ADV</f>
+         </fs>
+      </span>
+      <span id="s14_n14" from="1253" to="1258">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ADV</f>
+         </fs>
+      </span>
+      <span id="s14_n16" from="1259" to="1290">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">PP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s14_n17"/>
+         <rel label="dominates" target="s14_n19"/>
+         <rel label="dominates" uri="morpho.xml#s14_n24"/>
+         <rel label="dominates" target="s14_n26"/>
+      </span>
+      <span id="s14_n17" from="1259" to="1262">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">APPR</f>
+         </fs>
+      </span>
+      <span id="s14_n19" from="1263" to="1274">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">MPN</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s14_n20"/>
+         <rel label="dominates" uri="morpho.xml#s14_n22"/>
+      </span>
+      <span id="s14_n20" from="1263" to="1268">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NE</f>
+         </fs>
+      </span>
+      <span id="s14_n22" from="1269" to="1274">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NE</f>
+         </fs>
+      </span>
+      <span id="s14_n24" from="1274" to="1275">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">$,</f>
+         </fs>
+      </span>
+      <span id="s14_n26" from="1276" to="1290">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NP</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s14_n27"/>
+         <rel label="dominates" target="s14_n29"/>
+      </span>
+      <span id="s14_n27" from="1276" to="1280">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s14_n29" from="1281" to="1290">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NM</f>
+         </fs>
+         <rel label="dominates" uri="morpho.xml#s14_n30"/>
+         <rel label="dominates" uri="morpho.xml#s14_n32"/>
+         <rel label="dominates" uri="morpho.xml#s14_n34"/>
+      </span>
+      <span id="s14_n30" from="1281" to="1284">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">CARD</f>
+         </fs>
+      </span>
+      <span id="s14_n32" from="1285" to="1287">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">CARD</f>
+         </fs>
+      </span>
+      <span id="s14_n34" from="1288" to="1290">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">CARD</f>
+         </fs>
+      </span>
+      <span id="s14_n36" from="1290" to="1291">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">$.</f>
+         </fs>
+      </span>
+      <span id="s15_n1" from="1292" to="1327">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ROOT</f>
+         </fs>
+         <rel label="dominates" target="s15_n2"/>
+      </span>
+      <span id="s15_n2" from="1292" to="1327">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">S</f>
+         </fs>
+         <rel label="dominates" target="s15_n3"/>
+         <rel label="dominates" uri="morpho.xml#s15_n8"/>
+         <rel label="dominates" uri="morpho.xml#s15_n10"/>
+         <rel label="dominates" uri="morpho.xml#s15_n12"/>
+      </span>
+      <span id="s15_n3" from="1292" to="1310">
+         <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#s15_n4"/>
+         <rel label="dominates" uri="morpho.xml#s15_n6"/>
+      </span>
+      <span id="s15_n4" from="1292" to="1295">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ART</f>
+         </fs>
+      </span>
+      <span id="s15_n6" from="1296" to="1310">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">NN</f>
+         </fs>
+      </span>
+      <span id="s15_n8" from="1311" to="1314">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">VAFIN</f>
+         </fs>
+      </span>
+      <span id="s15_n10" from="1315" to="1326">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">ADJD</f>
+         </fs>
+      </span>
+      <span id="s15_n12" from="1326" to="1327">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+            <f name="const">$.</f>
+         </fs>
+      </span>
+   </spanList>
+</layer>
diff --git a/t/A01/13047/corenlp/metadata.xml b/t/A01/13047/corenlp/metadata.xml
new file mode 100644
index 0000000..2836625
--- /dev/null
+++ b/t/A01/13047/corenlp/metadata.xml
@@ -0,0 +1,10 @@
+<?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="A01_APR.13047" type="foundry" xmlns="http://ids-mannheim.de/ns/KorAP">
+  <doc file="../data.xml" />
+  <foundry name="corenlp">
+    <layer segm="tok" file="tokens.xml" name="token" id="l1" />
+    <layer segm="s" file="sentences.xml" name="sent" id="l2" />
+  </foundry>
+</metadata>
diff --git a/t/A01/13047/corenlp/morpho.xml b/t/A01/13047/corenlp/morpho.xml
new file mode 100644
index 0000000..50c50e1
--- /dev/null
+++ b/t/A01/13047/corenlp/morpho.xml
@@ -0,0 +1,1978 @@
+<?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">
+         <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="s1_n6" from="8" to="11">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">KON</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s1_n8" from="12" to="16">
+         <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="s1_n11" from="17" to="19">
+         <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="s1_n13" from="20" to="31">
+         <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="s1_n15" from="32" to="41">
+         <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="s1_n17" from="41" to="42">
+         <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_n4" from="43" to="46">
+         <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="47" to="54">
+         <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_n8" from="55" to="66">
+         <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="67" to="73">
+         <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="74" to="78">
+         <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="79" to="82">
+         <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="83" to="90">
+         <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="91" to="94">
+         <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="95" to="106">
+         <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="107" to="116">
+         <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="117" to="120">
+         <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="120" to="121">
+         <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="122" to="127">
+         <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="128" to="131">
+         <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="132" to="139">
+         <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="140" to="144">
+         <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="145" to="154">
+         <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="155" to="166">
+         <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="167" to="171">
+         <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="171" to="172">
+         <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="s3_n4" from="173" to="175">
+         <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="s3_n6" from="176" to="185">
+         <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="s3_n9" from="186" to="193">
+         <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="s3_n11" from="193" to="194">
+         <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="s3_n13" from="195" to="196">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">CARD</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s3_n15" from="196" to="197">
+         <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="s4_n3" from="198" to="203">
+         <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="s4_n5" from="203" to="204">
+         <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="s4_n7" from="205" to="211">
+         <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="s4_n13" from="212" to="214">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">APPR</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s4_n15" from="215" to="220">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">CARD</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s4_n17" from="221" to="224">
+         <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="s4_n20" from="225" to="228">
+         <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="s4_n22" from="229" to="239">
+         <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="s4_n25" from="240" to="243">
+         <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="s4_n27" from="244" to="255">
+         <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="s4_n31" from="256" to="259">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">APPR</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s4_n34" from="260" to="266">
+         <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="s4_n36" from="267" to="274">
+         <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="s4_n41" from="275" to="276">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">TRUNC</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s4_n43" from="276" to="282">
+         <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="s4_n47" from="282" to="283">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">TRUNC</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s4_n49" from="284" to="287">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">KON</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s4_n52" from="288" to="293">
+         <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="s4_n54" from="294" to="298">
+         <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="s4_n57" from="299" to="300">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">TRUNC</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s4_n59" from="300" to="313">
+         <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="s4_n61" from="314" to="317">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">KON</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s4_n63" from="318" to="331">
+         <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="s4_n65" from="331" to="332">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">TRUNC</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s4_n68" from="333" to="335">
+         <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="s4_n70" from="336" to="345">
+         <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="s4_n72" from="346" to="357">
+         <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="s4_n74" from="358" to="363">
+         <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="s4_n76" from="363" to="364">
+         <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="s5_n5" from="365" to="368">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">APPR</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s5_n7" from="369" to="372">
+         <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="s5_n9" from="373" to="385">
+         <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="s5_n11" from="386" to="395">
+         <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="s5_n13" from="396" to="402">
+         <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="s5_n17" from="403" to="409">
+         <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="s5_n19" from="410" to="416">
+         <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="s5_n21" from="417" to="420">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">KON</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s5_n24" from="421" to="425">
+         <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="s5_n26" from="426" to="432">
+         <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="s5_n28" from="432" to="433">
+         <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="s5_n32" from="434" to="445">
+         <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="s5_n34" from="446" to="451">
+         <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="s5_n36" from="452" to="459">
+         <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="s5_n39" from="460" to="465">
+         <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="s5_n41" from="466" to="476">
+         <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="s5_n43" from="476" to="477">
+         <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="s6_n4" from="478" to="481">
+         <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="s6_n6" from="482" to="493">
+         <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="s6_n8" from="494" to="500">
+         <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="s6_n12" from="501" to="504">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">APPR</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s6_n14" from="505" to="507">
+         <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="s6_n16" from="508" to="510">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">CARD</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s6_n18" from="510" to="511">
+         <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="s7_n5" from="512" to="517">
+         <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="s7_n7" from="518" to="521">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">KON</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s7_n10" from="522" to="525">
+         <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="s7_n14" from="526" to="528">
+         <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="s7_n16" from="529" to="536">
+         <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="s7_n19" from="537" to="540">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">KON</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s7_n22" from="541" to="548">
+         <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="s7_n25" from="549" to="552">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">APPR</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s7_n28" from="553" to="558">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">CARD</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s7_n30" from="559" to="562">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">APPR</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s7_n32" from="563" to="568">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">CARD</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s7_n34" from="569" to="572">
+         <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="s7_n36" from="573" to="578">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">KON</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s7_n39" from="579" to="585">
+         <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="s7_n42" from="586" to="589">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">APPR</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s7_n44" from="590" to="597">
+         <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="s7_n47" from="598" to="601">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">APPR</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s7_n50" from="602" to="607">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">CARD</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s7_n52" from="608" to="611">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">APPR</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s7_n54" from="612" to="617">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">CARD</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s7_n56" from="617" to="620">
+         <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="s7_n58" from="621" to="632">
+         <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="s7_n60" from="632" to="633">
+         <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="s8_n3" from="634" to="642">
+         <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="s8_n6" from="643" to="658">
+         <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="s8_n8" from="659" to="663">
+         <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="s8_n10" from="663" to="664">
+         <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="s9_n4" from="665" to="668">
+         <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="s9_n6" from="669" to="689">
+         <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="s9_n8" from="690" to="695">
+         <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="s9_n10" from="696" to="699">
+         <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="s9_n12" from="699" to="700">
+         <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="s9_n15" from="701" to="705">
+         <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="s9_n18" from="706" to="713">
+         <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="s9_n20" from="714" to="724">
+         <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="s9_n24" from="725" to="729">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">PPOSAT</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s9_n26" from="730" to="747">
+         <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="s9_n29" from="748" to="751">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">APPR</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s9_n31" from="752" to="755">
+         <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="s9_n33" from="756" to="774">
+         <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="s9_n35" from="775" to="784">
+         <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="s9_n37" from="785" to="788">
+         <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="s9_n39" from="788" to="789">
+         <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="s10_n4" from="790" to="793">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">APPR</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s10_n6" from="794" to="797">
+         <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="s10_n9" from="798" to="802">
+         <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="s10_n11" from="803" to="806">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">KON</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s10_n13" from="807" to="816">
+         <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="s10_n15" from="817" to="826">
+         <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="s10_n17" from="827" to="831">
+         <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="s10_n19" from="832" to="835">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">PPER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s10_n22" from="836" to="839">
+         <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="s10_n24" from="840" to="845">
+         <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="s10_n26" from="846" to="850">
+         <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="s10_n29" from="851" to="864">
+         <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="s10_n31" from="864" to="865">
+         <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="s11_n4" from="866" to="869">
+         <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="s11_n6" from="870" to="875">
+         <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="s11_n8" from="876" to="892">
+         <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="s11_n10" from="893" to="898">
+         <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="s11_n13" from="899" to="902">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">APPR</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s11_n15" from="903" to="909">
+         <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="s11_n18" from="910" to="913">
+         <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="s11_n20" from="914" to="927">
+         <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="s11_n24" from="928" to="935">
+         <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="s11_n26" from="936" to="947">
+         <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="s11_n28" from="947" to="948">
+         <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="s11_n32" from="949" to="957">
+         <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="s11_n34" from="958" to="962">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">CARD</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s11_n36" from="962" to="963">
+         <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="s11_n38" from="964" to="986">
+         <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="s11_n40" from="986" to="987">
+         <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="s11_n42" from="988" to="995">
+         <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="s11_n44" from="995" to="996">
+         <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="s11_n47" from="997" to="1007">
+         <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="s11_n49" from="1007" to="1008">
+         <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="s12_n4" from="1009" to="1025">
+         <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="s12_n7" from="1026" to="1029">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">APPR</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s12_n9" from="1030" to="1036">
+         <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="s12_n11" from="1037" to="1049">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">VVINF</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s12_n13" from="1049" to="1050">
+         <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="s13_n4" from="1051" to="1054">
+         <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="s13_n6" from="1055" to="1056">
+         <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="s13_n9" from="1056" to="1064">
+         <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="s13_n11" from="1065" to="1070">
+         <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="s13_n13" from="1070" to="1071">
+         <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="s13_n15" from="1072" to="1076">
+         <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="s13_n18" from="1077" to="1079">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">APPR</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s13_n20" from="1080" to="1085">
+         <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="s13_n22" from="1086" to="1090">
+         <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="s13_n24" from="1091" to="1094">
+         <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="s13_n26" from="1094" to="1095">
+         <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="s13_n31" from="1096" to="1098">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">APPR</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s13_n33" from="1099" to="1102">
+         <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="s13_n36" from="1103" to="1109">
+         <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="s13_n38" from="1110" to="1122">
+         <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="s13_n40" from="1123" to="1129">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">VVINF</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s13_n42" from="1130" to="1134">
+         <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="s13_n44" from="1134" to="1135">
+         <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="s13_n47" from="1136" to="1139">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">PWAV</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s13_n50" from="1140" to="1143">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">PIS</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s13_n54" from="1144" to="1152">
+         <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="s13_n56" from="1153" to="1156">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">KON</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s13_n58" from="1157" to="1168">
+         <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="s13_n60" from="1169" to="1177">
+         <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="s13_n65" from="1177" to="1178">
+         <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="s13_n67" from="1179" to="1182">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">KON</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s13_n69" from="1183" to="1195">
+         <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="s13_n72" from="1196" to="1199">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">APPR</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s13_n74" from="1200" to="1207">
+         <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="s13_n76" from="1208" to="1214">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">VVINF</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s13_n78" from="1215" to="1219">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">VMFIN</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s13_n80" from="1219" to="1220">
+         <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="s14_n4" from="1221" to="1224">
+         <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="s14_n6" from="1225" to="1237">
+         <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="s14_n8" from="1238" to="1243">
+         <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="s14_n10" from="1244" to="1247">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">ADV</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s14_n12" from="1248" to="1252">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">ADV</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s14_n14" from="1253" to="1258">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">ADV</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s14_n17" from="1259" to="1262">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">APPR</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s14_n20" from="1263" to="1268">
+         <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="s14_n22" from="1269" to="1274">
+         <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="s14_n24" from="1274" to="1275">
+         <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="s14_n27" from="1276" to="1280">
+         <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="s14_n30" from="1281" to="1284">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">CARD</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s14_n32" from="1285" to="1287">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">CARD</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s14_n34" from="1288" to="1290">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">CARD</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s14_n36" from="1290" to="1291">
+         <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="s15_n4" from="1292" to="1295">
+         <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="s15_n6" from="1296" to="1310">
+         <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="s15_n8" from="1311" to="1314">
+         <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="s15_n10" from="1315" to="1326">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">ADJD</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s15_n12" from="1326" to="1327">
+         <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/A01/13047/corenlp/ne_dewac_175m_600.xml b/t/A01/13047/corenlp/ne_dewac_175m_600.xml
new file mode 100644
index 0000000..a535bb6
--- /dev/null
+++ b/t/A01/13047/corenlp/ne_dewac_175m_600.xml
@@ -0,0 +1,223 @@
+<?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="s_0" from="0" to="7">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-PER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_18" from="107" to="116">
+         <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>
+      <span id="s_46" from="260" to="266">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-PER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_47" from="267" to="274">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-PER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_52" from="288" to="293">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-PER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_53" from="294" to="298">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-PER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_60" from="336" to="345">
+         <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>
+      <span id="s_61" from="346" to="353">
+         <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>
+      <span id="s_71" from="403" to="409">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-PER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_72" from="410" to="416">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-PER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_74" from="421" to="425">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-PER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_75" from="426" to="432">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-PER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_81" from="460" to="465">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-PER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_82" from="466" to="476">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-PER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_125" from="706" to="713">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-PER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_126" from="714" to="724">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-PER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_159" from="928" to="935">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-PER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_160" from="936" to="947">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-PER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_167" from="988" to="995">
+         <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>
+      <span id="s_176" from="1037" to="1049">
+         <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>
+      <span id="s_191" from="1103" to="1109">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-PER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_192" from="1110" to="1122">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-PER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_220" from="1263" to="1268">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-PER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_221" from="1269" to="1274">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-PER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+   </spanList>
+</layer>
diff --git a/t/A01/13047/corenlp/ne_hgc_175m_600.xml b/t/A01/13047/corenlp/ne_hgc_175m_600.xml
new file mode 100644
index 0000000..d4b5590
--- /dev/null
+++ b/t/A01/13047/corenlp/ne_hgc_175m_600.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="A01_APR.13047" version="KorAP-0.4">
+   <spanList>
+      <span id="s_0" from="0" to="7">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-PER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_18" from="107" to="116">
+         <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>
+      <span id="s_46" from="260" to="266">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-PER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_47" from="267" to="274">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-PER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_52" from="288" to="293">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-PER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_53" from="294" to="298">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-PER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_71" from="403" to="409">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-PER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_72" from="410" to="416">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-PER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_74" from="421" to="425">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-PER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_75" from="426" to="432">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-PER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_81" from="460" to="465">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-PER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_82" from="466" to="476">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-PER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_125" from="706" to="713">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-PER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_126" from="714" to="724">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-PER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_159" from="928" to="935">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-PER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_167" from="988" to="995">
+         <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>
+      <span id="s_191" from="1103" to="1109">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-PER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_192" from="1110" to="1122">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-PER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_220" from="1263" to="1268">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-PER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_221" from="1269" to="1274">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="ne">
+            <f name="ne">
+               <fs>
+                  <f name="ent">I-PER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+   </spanList>
+</layer>
diff --git a/t/A01/13047/corenlp/sentences.xml b/t/A01/13047/corenlp/sentences.xml
new file mode 100644
index 0000000..5757736
--- /dev/null
+++ b/t/A01/13047/corenlp/sentences.xml
@@ -0,0 +1,22 @@
+<?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 from="0" to="42"/>
+      <span from="43" to="172"/>
+      <span from="173" to="197"/>
+      <span from="198" to="364"/>
+      <span from="365" to="477"/>
+      <span from="478" to="511"/>
+      <span from="512" to="633"/>
+      <span from="634" to="664"/>
+      <span from="665" to="789"/>
+      <span from="790" to="865"/>
+      <span from="866" to="1008"/>
+      <span from="1009" to="1050"/>
+      <span from="1051" to="1220"/>
+      <span from="1221" to="1291"/>
+      <span from="1292" to="1327"/>
+   </spanList>
+</layer>
diff --git a/t/A01/13047/corenlp/tokens.xml b/t/A01/13047/corenlp/tokens.xml
new file mode 100644
index 0000000..78f562b
--- /dev/null
+++ b/t/A01/13047/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/A01/13047/data.xml b/t/A01/13047/data.xml
new file mode 100644
index 0000000..29eab58
--- /dev/null
+++ b/t/A01/13047/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="A01_APR.13047" xmlns="http://ids-mannheim.de/ns/KorAP">
+  <metadata file="metadata.xml" />
+  <text>Fischer und Kolp im Sonnenhügel Rehetobel. Zum letzten kulturellen Anlass lädt die Leitung des Schulheimes Hofbergli ein, bevor der Betrieb Ende Schuljahr eingestellt wird. Am kommenden Freitag, 6. April, findet um 17.30 Uhr die Vernissage zur Ausstellung von Renata Fischer (Bilder) und Erich Kolp (Schriftbilder und Kalligraphien) im Schulhaus Sonnenhügel statt. Für die musikalische Umrahmung sorgen Martin Skampa und Jiri Holena; einführende Worte spricht Bruno Hofstetter. Die Ausstellung dauert bis am 14. April und ist am Samstag und Sonntag von 11.00 bis 17.00 Uhr sowie Montag bis Freitag von 15.00 bis 19.00Uhr geöffnet.pd. Mutation Sektionschefamt Wald. Die Sicherheitsdirektion teilt mit, dass Philipp Hengartner sein Arbeitsverhältnis auf der Gemeindeverwaltung gekündigt hat. Für die gute und angenehme Mitarbeit wird ihm der beste Dank ausgesprochen. Zur neuen Stelleninhaberin wurde auf Antrag des Gemeinderates Rebecca Benz-Koller, Jahrgang 1976, Verwaltungsangestellte, Berneck, gewählt.pd. Aufsteckfrisuren für Kinder Walzenhausen. Die «Müettere Rundi» lädt zu einem Kurs ein, in dem Sabine Schittenhelm zeigen wird, wie man modische und raffinierte Aufsteck- und Zopffrisuren für Mädchen machen kann. Die Anmeldefrist läuft nur noch heute bei Julia Alder, Tel. 888 59 73. Die Teilnehmerzahl ist begrenzt.pd.</text>
+</raw_text>
diff --git a/t/A01/13047/header.xml b/t/A01/13047/header.xml
new file mode 100644
index 0000000..c47d0b7
--- /dev/null
+++ b/t/A01/13047/header.xml
@@ -0,0 +1,65 @@
+<?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>A01/APR.13047</textSigle>
+            <t.title assemblage="regular">A01/APR.13047 St. Galler Tagblatt, 02.04.2001, Ressort: AT-VOR (Abk.); Fischer und Kolp im Sonnenhügel</t.title>
+          </titleStmt>
+          <publicationStmt>
+            <distributor/>
+            <pubAddress/>
+            <availability region="world" status="unknown"/>
+            <pubDate/>
+          </publicationStmt>
+          <sourceDesc>
+            <biblStruct>
+              <analytic>
+                <h.title type="main">Fischer und Kolp im Sonnenhügel</h.title>
+                <h.author/>
+                <imprint/>
+                <biblScope type="pp"/>
+                <biblScope type="suppl"/>
+                <biblScope type="suppltitle"/>
+                <biblNote n="1"/>
+              </analytic>
+              <monogr>
+                <h.title type="main"/>
+                <imprint>
+                  <pubDate type="year">2001</pubDate>
+                  <pubDate type="month">04</pubDate>
+                  <pubDate type="day">02</pubDate>
+                </imprint>
+                <biblScope type="issue"/>
+                <biblScope type="issueplace"/>
+              </monogr>
+            </biblStruct>
+            <reference type="complete" assemblage="regular">A01/APR.13047 St. Galler Tagblatt, [Tageszeitung], 02.04.2001, Jg. 57. Originalressort: AT-VOR (Abk.); Fischer und Kolp im Sonnenhügel, [Bericht]</reference>
+            <reference type="short" assemblage="regular">A01/APR.13047 St. Galler Tagblatt, 02.04.2001</reference>
+          </sourceDesc>
+        </fileDesc>
+        <encodingDesc>
+          <samplingDecl/>
+          <tagsDecl>
+            <tagUsage gi="p" occurs="1"/>
+            <tagUsage gi="s" occurs="12"/>
+          </tagsDecl>
+        </encodingDesc>
+        <profileDesc>
+          <creation>
+            <creatDate>2001.04.02</creatDate>
+          </creation>
+          <textClass>
+            <catRef n="1" target="topic.freizeit-unterhaltung.vereine-veranstaltungen" scheme="topic"/>
+            <h.keywords>
+              <keyTerm/>
+            </h.keywords>
+          </textClass>
+          <textDesc>
+            <textTypeArt>Bericht</textTypeArt>
+            <textDomain/>
+            <column>AT-VOR (Abk.)</column>
+          </textDesc>
+        </profileDesc>
+      </idsHeader>
diff --git a/t/A01/13047/mate/dependency.xml b/t/A01/13047/mate/dependency.xml
new file mode 100644
index 0000000..7779f78
--- /dev/null
+++ b/t/A01/13047/mate/dependency.xml
@@ -0,0 +1 @@
+<?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/KorA" version="KorA-0.2" docid="A01_APR.13047"><spanList><span from="0" to="7"><rel label="--" type="unary"></rel></span><span from="8" to="11"><rel label="CD"><span from="0" to="7"></span></rel></span><span from="12" to="16"><rel label="CJ"><span from="8" to="11"></span></rel></span><span from="17" to="19"><rel label="MNR"><span from="0" to="7"></span></rel></span><span from="20" to="31"><rel label="NK"><span from="17" to="19"></span></rel></span><span from="32" to="41"><rel label="NK"><span from="20" to="31"></span></rel></span><span from="41" to="42"><rel label="--"><span from="32" to="41"></span></rel></span><span from="43" to="46"><rel label="MO"><span from="74" to="78"></span></rel></span><span from="47" to="54"><rel label="NK"><span from="67" to="73"></span></rel></span><span from="55" to="66"><rel label="NK"><span from="67" to="73"></span></rel></span><span from="67" to="73"><rel label="NK"><span from="43" to="46"></span></rel></span><span from="74" to="78"><rel label="--" type="unary"></rel></span><span from="79" to="82"><rel label="NK"><span from="83" to="90"></span></rel></span><span from="83" to="90"><rel label="SB"><span from="74" to="78"></span></rel></span><span from="91" to="94"><rel label="NK"><span from="95" to="106"></span></rel></span><span from="95" to="106"><rel label="AG"><span from="83" to="90"></span></rel></span><span from="107" to="116"><rel label="NK"><span from="95" to="106"></span></rel></span><span from="117" to="120"><rel label="SVP"><span from="74" to="78"></span></rel></span><span from="120" to="121"><rel label="--"><span from="117" to="120"></span></rel></span><span from="122" to="127"><rel label="CP"><span from="167" to="171"></span></rel></span><span from="128" to="131"><rel label="NK"><span from="132" to="139"></span></rel></span><span from="132" to="139"><rel label="SB"><span from="167" to="171"></span></rel></span><span from="140" to="144"><rel label="OA"><span from="155" to="166"></span></rel></span><span from="145" to="154"><rel label="NK"><span from="140" to="144"></span></rel></span><span from="155" to="166"><rel label="OC"><span from="167" to="171"></span></rel></span><span from="167" to="171"><rel label="MO"><span from="74" to="78"></span></rel></span><span from="171" to="172"><rel label="--"><span from="167" to="171"></span></rel></span><span from="173" to="175"><rel label="PM"><span from="176" to="185"></span></rel></span><span from="176" to="185"><rel label="NK"><span from="186" to="193"></span></rel></span><span from="186" to="193"><rel label="SB"><span from="205" to="211"></span></rel></span><span from="193" to="194"><rel label="--"><span from="186" to="193"></span></rel></span><span from="195" to="197"><rel label="NK"><span from="198" to="203"></span></rel></span><span from="198" to="203"><rel label="CJ"><span from="186" to="193"></span></rel></span><span from="203" to="204"><rel label="--"><span from="198" to="203"></span></rel></span><span from="205" to="211"><rel label="--" type="unary"></rel></span><span from="212" to="214"><rel label="MO"><span from="205" to="211"></span></rel></span><span from="215" to="220"><rel label="NK"><span from="221" to="224"></span></rel></span><span from="221" to="224"><rel label="NK"><span from="212" to="214"></span></rel></span><span from="225" to="228"><rel label="NK"><span from="229" to="239"></span></rel></span><span from="229" to="239"><rel label="OA"><span from="205" to="211"></span></rel></span><span from="240" to="243"><rel label="MNR"><span from="229" to="239"></span></rel></span><span from="244" to="255"><rel label="NK"><span from="240" to="243"></span></rel></span><span from="256" to="259"><rel label="PG"><span from="244" to="255"></span></rel></span><span from="260" to="266"><rel label="PNC"><span from="267" to="274"></span></rel></span><span from="267" to="274"><rel label="NK"><span from="256" to="259"></span></rel></span><span from="275" to="276"><rel label="--"><span from="267" to="274"></span></rel></span><span from="276" to="282"><rel label="PAR"><span from="267" to="274"></span></rel></span><span from="282" to="283"><rel label="--"><span from="276" to="282"></span></rel></span><span from="284" to="287"><rel label="CD"><span from="267" to="274"></span></rel></span><span from="288" to="293"><rel label="PNC"><span from="294" to="298"></span></rel></span><span from="294" to="298"><rel label="CJ"><span from="284" to="287"></span></rel></span><span from="299" to="300"><rel label="--"><span from="294" to="298"></span></rel></span><span from="300" to="313"><rel label="APP"><span from="294" to="298"></span></rel></span><span from="314" to="317"><rel label="CD"><span from="300" to="313"></span></rel></span><span from="318" to="331"><rel label="CJ"><span from="314" to="317"></span></rel></span><span from="331" to="332"><rel label="--"><span from="318" to="331"></span></rel></span><span from="333" to="335"><rel label="MNR"><span from="294" to="298"></span></rel></span><span from="336" to="345"><rel label="NK"><span from="333" to="335"></span></rel></span><span from="346" to="357"><rel label="NK"><span from="336" to="345"></span></rel></span><span from="358" to="363"><rel label="SVP"><span from="205" to="211"></span></rel></span><span from="363" to="364"><rel label="--"><span from="358" to="363"></span></rel></span><span from="365" to="368"><rel label="OP"><span from="396" to="402"></span></rel></span><span from="369" to="372"><rel label="NK"><span from="386" to="395"></span></rel></span><span from="373" to="385"><rel label="NK"><span from="386" to="395"></span></rel></span><span from="386" to="395"><rel label="NK"><span from="365" to="368"></span></rel></span><span from="396" to="402"><rel label="--" type="unary"></rel></span><span from="403" to="409"><rel label="PNC"><span from="410" to="416"></span></rel></span><span from="410" to="416"><rel label="SB"><span from="396" to="402"></span></rel></span><span from="417" to="420"><rel label="CD"><span from="410" to="416"></span></rel></span><span from="421" to="425"><rel label="PNC"><span from="426" to="432"></span></rel></span><span from="426" to="432"><rel label="CJ"><span from="417" to="420"></span></rel></span><span from="432" to="433"><rel label="--"><span from="426" to="432"></span></rel></span><span from="434" to="445"><rel label="NK"><span from="446" to="451"></span></rel></span><span from="446" to="451"><rel label="SB"><span from="452" to="459"></span></rel></span><span from="452" to="459"><rel label="CJ"><span from="396" to="402"></span></rel></span><span from="460" to="465"><rel label="PNC"><span from="466" to="476"></span></rel></span><span from="466" to="476"><rel label="MO"><span from="452" to="459"></span></rel></span><span from="476" to="477"><rel label="--"><span from="466" to="476"></span></rel></span><span from="478" to="481"><rel label="NK"><span from="482" to="493"></span></rel></span><span from="482" to="493"><rel label="SB"><span from="494" to="500"></span></rel></span><span from="494" to="500"><rel label="--" type="unary"></rel></span><span from="501" to="504"><rel label="AC"><span from="505" to="507"></span></rel></span><span from="505" to="507"><rel label="MO"><span from="494" to="500"></span></rel></span><span from="508" to="511"><rel label="NK"><span from="512" to="517"></span></rel></span><span from="512" to="517"><rel label="NK"><span from="505" to="507"></span></rel></span><span from="518" to="521"><rel label="CD"><span from="494" to="500"></span></rel></span><span from="522" to="525"><rel label="CJ"><span from="518" to="521"></span></rel></span><span from="526" to="528"><rel label="MO"><span from="621" to="629"></span></rel></span><span from="529" to="536"><rel label="NK"><span from="526" to="528"></span></rel></span><span from="537" to="540"><rel label="CD"><span from="529" to="536"></span></rel></span><span from="541" to="548"><rel label="CJ"><span from="537" to="540"></span></rel></span><span from="549" to="552"><rel label="MO"><span from="559" to="562"></span></rel></span><span from="553" to="558"><rel label="NK"><span from="549" to="552"></span></rel></span><span from="559" to="562"><rel label="MO"><span from="621" to="629"></span></rel></span><span from="563" to="568"><rel label="NK"><span from="569" to="572"></span></rel></span><span from="569" to="572"><rel label="NK"><span from="559" to="562"></span></rel></span><span from="573" to="578"><rel label="CD"><span from="569" to="572"></span></rel></span><span from="579" to="585"><rel label="CJ"><span from="573" to="578"></span></rel></span><span from="586" to="589"><rel label="MO"><span from="621" to="629"></span></rel></span><span from="590" to="597"><rel label="NK"><span from="586" to="589"></span></rel></span><span from="598" to="601"><rel label="MO"><span from="608" to="611"></span></rel></span><span from="602" to="607"><rel label="NK"><span from="598" to="601"></span></rel></span><span from="608" to="611"><rel label="MO"><span from="621" to="629"></span></rel></span><span from="612" to="620"><rel label="NK"><span from="608" to="611"></span></rel></span><span from="621" to="629"><rel label="PD"><span from="522" to="525"></span></rel></span><span from="629" to="632"><rel label="SB"><span from="621" to="629"></span></rel></span><span from="632" to="633"><rel label="--"><span from="629" to="632"></span></rel></span><span from="634" to="642"><rel label="--" type="unary"></rel></span><span from="643" to="658"><rel label="PNC"><span from="659" to="663"></span></rel></span><span from="659" to="663"><rel label="NK"><span from="634" to="642"></span></rel></span><span from="663" to="664"><rel label="--"><span from="659" to="663"></span></rel></span><span from="665" to="668"><rel label="NK"><span from="669" to="689"></span></rel></span><span from="669" to="689"><rel label="SB"><span from="690" to="695"></span></rel></span><span from="690" to="695"><rel label="--" type="unary"></rel></span><span from="696" to="699"><rel label="SVP"><span from="690" to="695"></span></rel></span><span from="699" to="700"><rel label="--"><span from="696" to="699"></span></rel></span><span from="701" to="705"><rel label="CP"><span from="785" to="788"></span></rel></span><span from="706" to="713"><rel label="PNC"><span from="714" to="724"></span></rel></span><span from="714" to="724"><rel label="SB"><span from="785" to="788"></span></rel></span><span from="725" to="729"><rel label="NK"><span from="730" to="747"></span></rel></span><span from="730" to="747"><rel label="DA"><span from="775" to="784"></span></rel></span><span from="748" to="751"><rel label="MO"><span from="775" to="784"></span></rel></span><span from="752" to="755"><rel label="NK"><span from="756" to="774"></span></rel></span><span from="756" to="774"><rel label="NK"><span from="748" to="751"></span></rel></span><span from="775" to="784"><rel label="OC"><span from="785" to="788"></span></rel></span><span from="785" to="788"><rel label="OC"><span from="690" to="695"></span></rel></span><span from="788" to="789"><rel label="--"><span from="785" to="788"></span></rel></span><span from="790" to="793"><rel label="MO"><span from="851" to="864"></span></rel></span><span from="794" to="797"><rel label="NK"><span from="817" to="826"></span></rel></span><span from="798" to="802"><rel label="NK"><span from="817" to="826"></span></rel></span><span from="803" to="806"><rel label="CD"><span from="798" to="802"></span></rel></span><span from="807" to="816"><rel label="CJ"><span from="803" to="806"></span></rel></span><span from="817" to="826"><rel label="NK"><span from="790" to="793"></span></rel></span><span from="827" to="831"><rel label="--" type="unary"></rel></span><span from="832" to="835"><rel label="DA"><span from="851" to="864"></span></rel></span><span from="836" to="839"><rel label="NK"><span from="846" to="850"></span></rel></span><span from="840" to="845"><rel label="NK"><span from="846" to="850"></span></rel></span><span from="846" to="850"><rel label="SB"><span from="827" to="831"></span></rel></span><span from="851" to="864"><rel label="OC"><span from="827" to="831"></span></rel></span><span from="864" to="865"><rel label="--"><span from="851" to="864"></span></rel></span><span from="866" to="869"><rel label="MO"><span from="893" to="898"></span></rel></span><span from="870" to="875"><rel label="NK"><span from="876" to="892"></span></rel></span><span from="876" to="892"><rel label="NK"><span from="866" to="869"></span></rel></span><span from="893" to="898"><rel label="--" type="unary"></rel></span><span from="899" to="902"><rel label="MO"><span from="997" to="1004"></span></rel></span><span from="903" to="909"><rel label="NK"><span from="899" to="902"></span></rel></span><span from="910" to="913"><rel label="NK"><span from="914" to="927"></span></rel></span><span from="914" to="927"><rel label="AG"><span from="903" to="909"></span></rel></span><span from="928" to="935"><rel label="PNC"><span from="936" to="947"></span></rel></span><span from="936" to="947"><rel label="NK"><span from="914" to="927"></span></rel></span><span from="947" to="948"><rel label="--"><span from="936" to="947"></span></rel></span><span from="949" to="957"><rel label="APP"><span from="914" to="927"></span></rel></span><span from="958" to="962"><rel label="NK"><span from="949" to="957"></span></rel></span><span from="962" to="963"><rel label="--"><span from="958" to="962"></span></rel></span><span from="964" to="986"><rel label="CJ"><span from="949" to="957"></span></rel></span><span from="986" to="987"><rel label="--"><span from="964" to="986"></span></rel></span><span from="988" to="995"><rel label="CJ"><span from="964" to="986"></span></rel></span><span from="995" to="996"><rel label="--"><span from="988" to="995"></span></rel></span><span from="997" to="1004"><rel label="OC"><span from="893" to="898"></span></rel></span><span from="1004" to="1007"><rel label="MO"><span from="997" to="1004"></span></rel></span><span from="1007" to="1008"><rel label="--"><span from="1004" to="1007"></span></rel></span><span from="1009" to="1025"><rel label="--" type="unary"></rel></span><span from="1026" to="1029"><rel label="MNR"><span from="1009" to="1025"></span></rel></span><span from="1030" to="1036"><rel label="NK"><span from="1026" to="1029"></span></rel></span><span from="1037" to="1049"><rel label="NK"><span from="1030" to="1036"></span></rel></span><span from="1049" to="1050"><rel label="--"><span from="1037" to="1049"></span></rel></span><span from="1051" to="1054"><rel label="NK"><span from="1065" to="1071"></span></rel></span><span from="1055" to="1064"><rel label="NK"><span from="1065" to="1071"></span></rel></span><span from="1065" to="1071"><rel label="SB"><span from="1072" to="1076"></span></rel></span><span from="1072" to="1076"><rel label="--" type="unary"></rel></span><span from="1077" to="1079"><rel label="MO"><span from="1072" to="1076"></span></rel></span><span from="1080" to="1085"><rel label="NK"><span from="1086" to="1090"></span></rel></span><span from="1086" to="1090"><rel label="NK"><span from="1077" to="1079"></span></rel></span><span from="1091" to="1094"><rel label="SVP"><span from="1072" to="1076"></span></rel></span><span from="1094" to="1095"><rel label="--"><span from="1091" to="1094"></span></rel></span><span from="1096" to="1098"><rel label="MO"><span from="1123" to="1129"></span></rel></span><span from="1099" to="1102"><rel label="NK"><span from="1096" to="1098"></span></rel></span><span from="1103" to="1109"><rel label="PNC"><span from="1110" to="1122"></span></rel></span><span from="1110" to="1122"><rel label="OA"><span from="1123" to="1129"></span></rel></span><span from="1123" to="1129"><rel label="OC"><span from="1130" to="1134"></span></rel></span><span from="1130" to="1134"><rel label="OC"><span from="1086" to="1090"></span></rel></span><span from="1134" to="1135"><rel label="--"><span from="1130" to="1134"></span></rel></span><span from="1136" to="1139"><rel label="MO"><span from="1215" to="1219"></span></rel></span><span from="1140" to="1143"><rel label="SB"><span from="1215" to="1219"></span></rel></span><span from="1144" to="1152"><rel label="MO"><span from="1215" to="1219"></span></rel></span><span from="1153" to="1156"><rel label="CD"><span from="1144" to="1152"></span></rel></span><span from="1157" to="1168"><rel label="CJ"><span from="1153" to="1156"></span></rel></span><span from="1169" to="1178"><rel label="CJ"><span from="1179" to="1182"></span></rel></span><span from="1179" to="1182"><rel label="CD"><span from="1183" to="1195"></span></rel></span><span from="1183" to="1195"><rel label="OA"><span from="1208" to="1214"></span></rel></span><span from="1196" to="1199"><rel label="MNR"><span from="1183" to="1195"></span></rel></span><span from="1200" to="1207"><rel label="NK"><span from="1196" to="1199"></span></rel></span><span from="1208" to="1214"><rel label="OC"><span from="1215" to="1219"></span></rel></span><span from="1215" to="1219"><rel label="OC"><span from="1123" to="1129"></span></rel></span><span from="1219" to="1220"><rel label="--"><span from="1215" to="1219"></span></rel></span><span from="1221" to="1224"><rel label="NK"><span from="1225" to="1237"></span></rel></span><span from="1225" to="1237"><rel label="SB"><span from="1238" to="1243"></span></rel></span><span from="1238" to="1243"><rel label="--" type="unary"></rel></span><span from="1244" to="1247"><rel label="MO"><span from="1253" to="1258"></span></rel></span><span from="1248" to="1252"><rel label="MO"><span from="1253" to="1258"></span></rel></span><span from="1253" to="1258"><rel label="MO"><span from="1238" to="1243"></span></rel></span><span from="1259" to="1262"><rel label="MO"><span from="1238" to="1243"></span></rel></span><span from="1263" to="1268"><rel label="PNC"><span from="1269" to="1274"></span></rel></span><span from="1269" to="1274"><rel label="NK"><span from="1259" to="1262"></span></rel></span><span from="1274" to="1275"><rel label="--"><span from="1269" to="1274"></span></rel></span><span from="1276" to="1279"><rel label="NK"><span from="1288" to="1291"></span></rel></span><span from="1279" to="1280"><rel label="--"><span from="1276" to="1279"></span></rel></span><span from="1281" to="1284"><rel label="NMC"><span from="1288" to="1291"></span></rel></span><span from="1285" to="1287"><rel label="NMC"><span from="1288" to="1291"></span></rel></span><span from="1288" to="1291"><rel label="CJ"><span from="1269" to="1274"></span></rel></span><span from="1292" to="1295"><rel label="NK"><span from="1296" to="1310"></span></rel></span><span from="1296" to="1310"><rel label="SB"><span from="1311" to="1314"></span></rel></span><span from="1311" to="1314"><rel label="--" type="unary"></rel></span><span from="1315" to="1323"><rel label="PD"><span from="1311" to="1314"></span></rel></span><span from="1323" to="1326"><rel label="MO"><span from="1315" to="1323"></span></rel></span><span from="1326" to="1327"><rel label="--"><span from="1323" to="1326"></span></rel></span></spanList></layer>
\ No newline at end of file
diff --git a/t/A01/13047/mate/metadata.xml b/t/A01/13047/mate/metadata.xml
new file mode 100644
index 0000000..e39f6ba
--- /dev/null
+++ b/t/A01/13047/mate/metadata.xml
@@ -0,0 +1,10 @@
+<?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="A01_APR.13047" type="foundry" xmlns="http://ids-mannheim.de/ns/KorAP">
+  <doc file="../data.xml" />
+  <foundry name="opennlp">
+    <layer info="rel" file="dependency.xml" name="syntax-dep" id="l1" />
+    <layer info="pos lemma" file="morpho.xml" name="morph" id="l2" />
+  </foundry>
+</metadata>
diff --git a/t/A01/13047/mate/morpho.xml b/t/A01/13047/mate/morpho.xml
new file mode 100644
index 0000000..3eae764
--- /dev/null
+++ b/t/A01/13047/mate/morpho.xml
@@ -0,0 +1 @@
+<?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="A01_APR.13047"><spanList><span id="s1_1" from="0" to="7"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">fischer</f><f name="pos">NE</f><f name="msd">case=nom|number=sg|gender=*</f></fs></f></fs></span><span id="s1_2" 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="pos">KON</f><f name="msd">_</f></fs></f></fs></span><span id="s1_3" from="12" to="16"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">kolp</f><f name="pos">NE</f><f name="msd">case=nom|number=sg|gender=*</f></fs></f></fs></span><span id="s1_4" from="17" to="19"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">in</f><f name="pos">APPRART</f><f name="msd">case=dat|number=sg|gender=masc</f></fs></f></fs></span><span id="s1_5" from="20" to="31"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">sonnenhügel</f><f name="pos">NN</f><f name="msd">case=dat|number=sg|gender=masc</f></fs></f></fs></span><span id="s1_6" from="32" to="41"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">rehetobel</f><f name="pos">NE</f><f name="msd">case=nom|number=sg|gender=*</f></fs></f></fs></span><span id="s1_7" from="41" to="42"><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 id="s2_1" from="43" to="46"><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 id="s2_2" from="47" to="54"><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 id="s2_3" from="55" to="66"><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 id="s2_4" from="67" to="73"><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 id="s2_5" from="74" to="78"><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 id="s2_6" from="79" to="82"><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 id="s2_7" from="83" to="90"><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 id="s2_8" from="91" to="94"><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 id="s2_9" from="95" to="106"><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 id="s2_10" from="107" to="116"><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 id="s2_11" from="117" to="120"><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 id="s2_12" from="120" to="121"><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 id="s2_13" from="122" to="127"><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 id="s2_14" from="128" to="131"><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 id="s2_15" from="132" to="139"><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 id="s2_16" from="140" to="144"><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 id="s2_17" from="145" to="154"><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 id="s2_18" from="155" to="166"><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 id="s2_19" from="167" to="171"><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><span id="s2_20" 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="pos">$.</f><f name="msd">_</f></fs></f></fs></span><span id="s3_1" from="173" to="175"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">an</f><f name="pos">APPRART</f><f name="msd">case=dat|number=sg|gender=masc</f></fs></f></fs></span><span id="s3_2" from="176" to="185"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">kommend</f><f name="pos">ADJA</f><f name="msd">case=dat|number=sg|gender=masc|degree=pos</f></fs></f></fs></span><span id="s3_3" from="186" to="193"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">freitag</f><f name="pos">NN</f><f name="msd">case=dat|number=sg|gender=masc</f></fs></f></fs></span><span id="s3_4" from="193" to="194"><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 id="s3_5" from="195" to="197"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">6.</f><f name="pos">ADJA</f><f name="msd">case=dat|number=sg|gender=masc|degree=pos</f></fs></f></fs></span><span id="s3_6" from="198" to="203"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">april</f><f name="pos">NN</f><f name="msd">case=dat|number=sg|gender=masc</f></fs></f></fs></span><span id="s3_7" from="203" to="204"><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 id="s3_8" from="205" to="211"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">finden</f><f name="pos">VVFIN</f><f name="msd">number=sg|person=3|tense=pres|mood=ind</f></fs></f></fs></span><span id="s3_9" from="212" to="214"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">um</f><f name="pos">APPR</f><f name="msd">_</f></fs></f></fs></span><span id="s3_10" from="215" to="220"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">17.30</f><f name="pos">CARD</f><f name="msd">_</f></fs></f></fs></span><span id="s3_11" from="221" to="224"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">uhr</f><f name="pos">NN</f><f name="msd">case=acc|number=sg|gender=fem</f></fs></f></fs></span><span id="s3_12" from="225" to="228"><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 id="s3_13" from="229" to="239"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">vernissage</f><f name="pos">NN</f><f name="msd">case=acc|number=sg|gender=fem</f></fs></f></fs></span><span id="s3_14" from="240" to="243"><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=fem</f></fs></f></fs></span><span id="s3_15" from="244" to="255"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">ausstellung</f><f name="pos">NN</f><f name="msd">case=dat|number=sg|gender=fem</f></fs></f></fs></span><span id="s3_16" from="256" to="259"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">von</f><f name="pos">APPR</f><f name="msd">_</f></fs></f></fs></span><span id="s3_17" from="260" to="266"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">renata</f><f name="pos">NE</f><f name="msd">case=*|number=*|gender=*</f></fs></f></fs></span><span id="s3_18" from="267" to="274"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">fischer</f><f name="pos">NE</f><f name="msd">case=dat|number=sg|gender=*</f></fs></f></fs></span><span id="s3_19" from="275" to="276"><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 id="s3_20" from="276" to="282"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">bild</f><f name="pos">NN</f><f name="msd">case=nom|number=pl|gender=neut</f></fs></f></fs></span><span id="s3_21" from="282" to="283"><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 id="s3_22" from="284" to="287"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">und</f><f name="pos">KON</f><f name="msd">_</f></fs></f></fs></span><span id="s3_23" from="288" to="293"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">erich</f><f name="pos">NE</f><f name="msd">case=nom|number=sg|gender=masc</f></fs></f></fs></span><span id="s3_24" from="294" to="298"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">kolp</f><f name="pos">NE</f><f name="msd">case=nom|number=sg|gender=masc</f></fs></f></fs></span><span id="s3_25" from="299" to="300"><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 id="s3_26" from="300" to="313"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">schriftbild</f><f name="pos">NN</f><f name="msd">case=acc|number=pl|gender=neut</f></fs></f></fs></span><span id="s3_27" from="314" to="317"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">und</f><f name="pos">KON</f><f name="msd">_</f></fs></f></fs></span><span id="s3_28" from="318" to="331"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">kalligraphie</f><f name="pos">NN</f><f name="msd">case=acc|number=pl|gender=fem</f></fs></f></fs></span><span id="s3_29" from="331" to="332"><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 id="s3_30" from="333" to="335"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">in</f><f name="pos">APPRART</f><f name="msd">case=dat|number=sg|gender=neut</f></fs></f></fs></span><span id="s3_31" from="336" to="345"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">schulhaus</f><f name="pos">NN</f><f name="msd">case=dat|number=sg|gender=neut</f></fs></f></fs></span><span id="s3_32" from="346" to="357"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">sonnenhügel</f><f name="pos">NE</f><f name="msd">case=nom|number=sg|gender=*</f></fs></f></fs></span><span id="s3_33" from="358" to="363"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">statt</f><f name="pos">PTKVZ</f><f name="msd">_</f></fs></f></fs></span><span id="s3_34" from="363" to="364"><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 id="s4_1" from="365" to="368"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">für</f><f name="pos">APPR</f><f name="msd">_</f></fs></f></fs></span><span id="s4_2" from="369" to="372"><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 id="s4_3" from="373" to="385"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">musikalisch</f><f name="pos">ADJA</f><f name="msd">case=acc|number=sg|gender=fem|degree=pos</f></fs></f></fs></span><span id="s4_4" from="386" to="395"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">umrahmung</f><f name="pos">NN</f><f name="msd">case=acc|number=sg|gender=fem</f></fs></f></fs></span><span id="s4_5" from="396" to="402"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">sorgen</f><f name="pos">VVFIN</f><f name="msd">number=pl|person=3|tense=pres|mood=ind</f></fs></f></fs></span><span id="s4_6" from="403" to="409"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">martin</f><f name="pos">NE</f><f name="msd">case=nom|number=sg|gender=masc</f></fs></f></fs></span><span id="s4_7" from="410" to="416"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">skampa</f><f name="pos">NE</f><f name="msd">case=nom|number=sg|gender=masc</f></fs></f></fs></span><span id="s4_8" from="417" to="420"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">und</f><f name="pos">KON</f><f name="msd">_</f></fs></f></fs></span><span id="s4_9" from="421" to="425"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">jiri</f><f name="pos">NE</f><f name="msd">case=nom|number=sg|gender=masc</f></fs></f></fs></span><span id="s4_10" from="426" to="432"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">holena</f><f name="pos">NE</f><f name="msd">case=nom|number=sg|gender=masc</f></fs></f></fs></span><span id="s4_11" from="432" to="433"><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 id="s4_12" from="434" to="445"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">einführend</f><f name="pos">ADJA</f><f name="msd">case=nom|number=sg|gender=masc|degree=pos</f></fs></f></fs></span><span id="s4_13" from="446" to="451"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">wort</f><f name="pos">NN</f><f name="msd">case=nom|number=sg|gender=masc</f></fs></f></fs></span><span id="s4_14" from="452" to="459"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">sprechen</f><f name="pos">VVFIN</f><f name="msd">number=sg|person=3|tense=pres|mood=ind</f></fs></f></fs></span><span id="s4_15" from="460" to="465"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">bruno</f><f name="pos">NE</f><f name="msd">case=nom|number=sg|gender=masc</f></fs></f></fs></span><span id="s4_16" from="466" to="476"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">hofstetter</f><f name="pos">NE</f><f name="msd">case=nom|number=sg|gender=masc</f></fs></f></fs></span><span id="s4_17" from="476" to="477"><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 id="s5_1" from="478" to="481"><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=fem</f></fs></f></fs></span><span id="s5_2" from="482" to="493"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">ausstellung</f><f name="pos">NN</f><f name="msd">case=nom|number=sg|gender=fem</f></fs></f></fs></span><span id="s5_3" from="494" to="500"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">dauern</f><f name="pos">VVFIN</f><f name="msd">number=sg|person=3|tense=pres|mood=ind</f></fs></f></fs></span><span id="s5_4" from="501" to="504"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">bis</f><f name="pos">APPR</f><f name="msd">_</f></fs></f></fs></span><span id="s5_5" from="505" to="507"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">an</f><f name="pos">APPRART</f><f name="msd">case=dat|number=sg|gender=masc</f></fs></f></fs></span><span id="s5_6" from="508" to="511"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">14.</f><f name="pos">ADJA</f><f name="msd">case=dat|number=sg|gender=masc|degree=pos</f></fs></f></fs></span><span id="s5_7" from="512" to="517"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">april</f><f name="pos">NN</f><f name="msd">case=dat|number=sg|gender=masc</f></fs></f></fs></span><span id="s5_8" from="518" to="521"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">und</f><f name="pos">KON</f><f name="msd">_</f></fs></f></fs></span><span id="s5_9" from="522" to="525"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">sein</f><f name="pos">VAFIN</f><f name="msd">number=sg|person=3|tense=pres|mood=ind</f></fs></f></fs></span><span id="s5_10" from="526" to="528"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">an</f><f name="pos">APPRART</f><f name="msd">case=dat|number=sg|gender=masc</f></fs></f></fs></span><span id="s5_11" from="529" to="536"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">samstag</f><f name="pos">NN</f><f name="msd">case=dat|number=sg|gender=masc</f></fs></f></fs></span><span id="s5_12" from="537" to="540"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">und</f><f name="pos">KON</f><f name="msd">_</f></fs></f></fs></span><span id="s5_13" from="541" to="548"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">sonntag</f><f name="pos">NN</f><f name="msd">case=dat|number=sg|gender=masc</f></fs></f></fs></span><span id="s5_14" from="549" to="552"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">von</f><f name="pos">APPR</f><f name="msd">_</f></fs></f></fs></span><span id="s5_15" from="553" to="558"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">11.00</f><f name="pos">CARD</f><f name="msd">_</f></fs></f></fs></span><span id="s5_16" from="559" to="562"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">bis</f><f name="pos">APPR</f><f name="msd">_</f></fs></f></fs></span><span id="s5_17" from="563" to="568"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">17.00</f><f name="pos">CARD</f><f name="msd">_</f></fs></f></fs></span><span id="s5_18" from="569" to="572"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">uhr</f><f name="pos">NN</f><f name="msd">case=*|number=*|gender=fem</f></fs></f></fs></span><span id="s5_19" from="573" to="578"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">sowie</f><f name="pos">KON</f><f name="msd">_</f></fs></f></fs></span><span id="s5_20" from="579" to="585"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">montag</f><f name="pos">NN</f><f name="msd">case=acc|number=sg|gender=masc</f></fs></f></fs></span><span id="s5_21" from="586" to="589"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">bis</f><f name="pos">APPR</f><f name="msd">_</f></fs></f></fs></span><span id="s5_22" from="590" to="597"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">freitag</f><f name="pos">NN</f><f name="msd">case=acc|number=sg|gender=masc</f></fs></f></fs></span><span id="s5_23" from="598" to="601"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">von</f><f name="pos">APPR</f><f name="msd">_</f></fs></f></fs></span><span id="s5_24" from="602" to="607"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">15.00</f><f name="pos">CARD</f><f name="msd">_</f></fs></f></fs></span><span id="s5_25" from="608" to="611"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">bis</f><f name="pos">APPR</f><f name="msd">_</f></fs></f></fs></span><span id="s5_26" from="612" to="620"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">19.00uhr</f><f name="pos">CARD</f><f name="msd">_</f></fs></f></fs></span><span id="s5_27" from="621" to="629"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">öffnen</f><f name="pos">VVPP</f><f name="msd">_</f></fs></f></fs></span><span id="s5_28" from="629" to="632"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">.pd</f><f name="pos">NE</f><f name="msd">_</f></fs></f></fs></span><span id="s5_29" 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="pos">$.</f><f name="msd">_</f></fs></f></fs></span><span id="s6_1" from="634" to="642"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">mutation</f><f name="pos">NN</f><f name="msd">case=nom|number=sg|gender=fem</f></fs></f></fs></span><span id="s6_2" from="643" to="658"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">sektionschefamt</f><f name="pos">NN</f><f name="msd">case=nom|number=sg|gender=fem</f></fs></f></fs></span><span id="s6_3" from="659" to="663"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">wald</f><f name="pos">NN</f><f name="msd">case=nom|number=sg|gender=fem</f></fs></f></fs></span><span id="s6_4" from="663" to="664"><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 id="s7_1" from="665" to="668"><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=fem</f></fs></f></fs></span><span id="s7_2" from="669" to="689"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">sicherheitsdirektion</f><f name="pos">NN</f><f name="msd">case=nom|number=sg|gender=fem</f></fs></f></fs></span><span id="s7_3" from="690" to="695"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">teilen</f><f name="pos">VVFIN</f><f name="msd">number=sg|person=3|tense=pres|mood=ind</f></fs></f></fs></span><span id="s7_4" from="696" to="699"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">mit</f><f name="pos">PTKVZ</f><f name="msd">_</f></fs></f></fs></span><span id="s7_5" from="699" to="700"><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 id="s7_6" from="701" to="705"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">dass</f><f name="pos">KOUS</f><f name="msd">_</f></fs></f></fs></span><span id="s7_7" from="706" to="713"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">philipp</f><f name="pos">NE</f><f name="msd">case=nom|number=sg|gender=masc</f></fs></f></fs></span><span id="s7_8" from="714" to="724"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">hengartner</f><f name="pos">NE</f><f name="msd">case=nom|number=sg|gender=masc</f></fs></f></fs></span><span id="s7_9" from="725" to="729"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">sein</f><f name="pos">PPOSAT</f><f name="msd">case=acc|number=sg|gender=neut</f></fs></f></fs></span><span id="s7_10" from="730" to="747"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">arbeitsverhältnis</f><f name="pos">NN</f><f name="msd">case=acc|number=sg|gender=neut</f></fs></f></fs></span><span id="s7_11" from="748" to="751"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">auf</f><f name="pos">APPR</f><f name="msd">_</f></fs></f></fs></span><span id="s7_12" from="752" to="755"><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=dat|number=sg|gender=fem</f></fs></f></fs></span><span id="s7_13" from="756" to="774"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">gemeindeverwaltung</f><f name="pos">NN</f><f name="msd">case=dat|number=sg|gender=fem</f></fs></f></fs></span><span id="s7_14" from="775" to="784"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">kündigen</f><f name="pos">VVPP</f><f name="msd">_</f></fs></f></fs></span><span id="s7_15" from="785" to="788"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">haben</f><f name="pos">VAFIN</f><f name="msd">number=sg|person=3|tense=pres|mood=ind</f></fs></f></fs></span><span id="s7_16" from="788" to="789"><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 id="s8_1" from="790" to="793"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">für</f><f name="pos">APPR</f><f name="msd">_</f></fs></f></fs></span><span id="s8_2" from="794" to="797"><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 id="s8_3" from="798" to="802"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">gut</f><f name="pos">ADJA</f><f name="msd">case=acc|number=sg|gender=fem|degree=pos</f></fs></f></fs></span><span id="s8_4" from="803" to="806"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">und</f><f name="pos">KON</f><f name="msd">_</f></fs></f></fs></span><span id="s8_5" from="807" to="816"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">angenehm</f><f name="pos">ADJA</f><f name="msd">case=acc|number=sg|gender=fem|degree=pos</f></fs></f></fs></span><span id="s8_6" from="817" to="826"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">mitarbeit</f><f name="pos">NN</f><f name="msd">case=acc|number=sg|gender=fem</f></fs></f></fs></span><span id="s8_7" from="827" to="831"><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><span id="s8_8" from="832" to="835"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">ihm</f><f name="pos">PPER</f><f name="msd">case=dat|number=sg|gender=*|person=3</f></fs></f></fs></span><span id="s8_9" from="836" to="839"><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 id="s8_10" from="840" to="845"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">gut</f><f name="pos">ADJA</f><f name="msd">case=nom|number=sg|gender=masc|degree=sup</f></fs></f></fs></span><span id="s8_11" from="846" to="850"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">dank</f><f name="pos">NN</f><f name="msd">case=nom|number=sg|gender=masc</f></fs></f></fs></span><span id="s8_12" from="851" to="864"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">aussprechen</f><f name="pos">VVPP</f><f name="msd">_</f></fs></f></fs></span><span id="s8_13" from="864" to="865"><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 id="s9_1" from="866" to="869"><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=fem</f></fs></f></fs></span><span id="s9_2" from="870" to="875"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">neu</f><f name="pos">ADJA</f><f name="msd">case=dat|number=sg|gender=fem|degree=pos</f></fs></f></fs></span><span id="s9_3" from="876" to="892"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">stelleninhaberin</f><f name="pos">NN</f><f name="msd">case=dat|number=sg|gender=fem</f></fs></f></fs></span><span id="s9_4" from="893" to="898"><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=past|mood=ind</f></fs></f></fs></span><span id="s9_5" from="899" to="902"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">auf</f><f name="pos">APPR</f><f name="msd">_</f></fs></f></fs></span><span id="s9_6" from="903" to="909"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">antrag</f><f name="pos">NN</f><f name="msd">case=acc|number=sg|gender=masc</f></fs></f></fs></span><span id="s9_7" from="910" to="913"><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=masc</f></fs></f></fs></span><span id="s9_8" from="914" to="927"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">gemeinderat</f><f name="pos">NN</f><f name="msd">case=gen|number=sg|gender=masc</f></fs></f></fs></span><span id="s9_9" from="928" to="935"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">rebecca</f><f name="pos">NE</f><f name="msd">case=nom|number=sg|gender=masc</f></fs></f></fs></span><span id="s9_10" from="936" to="947"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">benz-koller</f><f name="pos">NE</f><f name="msd">case=nom|number=sg|gender=masc</f></fs></f></fs></span><span id="s9_11" from="947" to="948"><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 id="s9_12" from="949" to="957"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">jahrgang</f><f name="pos">NN</f><f name="msd">case=nom|number=sg|gender=masc</f></fs></f></fs></span><span id="s9_13" from="958" to="962"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">1976</f><f name="pos">CARD</f><f name="msd">_</f></fs></f></fs></span><span id="s9_14" from="962" to="963"><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 id="s9_15" from="964" to="986"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">verwaltungsangestellte</f><f name="pos">NN</f><f name="msd">case=acc|number=pl|gender=*</f></fs></f></fs></span><span id="s9_16" from="986" to="987"><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 id="s9_17" from="988" to="995"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">berneck</f><f name="pos">NE</f><f name="msd">case=nom|number=sg|gender=neut</f></fs></f></fs></span><span id="s9_18" from="995" to="996"><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 id="s9_19" from="997" to="1004"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">wählen</f><f name="pos">VVPP</f><f name="msd">_</f></fs></f></fs></span><span id="s9_20" from="1004" to="1007"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">.pd</f><f name="pos">NE</f><f name="msd">_</f></fs></f></fs></span><span id="s9_21" from="1007" to="1008"><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 id="s10_1" from="1009" to="1025"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">aufsteckfrisur</f><f name="pos">NN</f><f name="msd">case=nom|number=pl|gender=fem</f></fs></f></fs></span><span id="s10_2" from="1026" to="1029"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">für</f><f name="pos">APPR</f><f name="msd">_</f></fs></f></fs></span><span id="s10_3" from="1030" to="1036"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">kind</f><f name="pos">NN</f><f name="msd">case=acc|number=pl|gender=neut</f></fs></f></fs></span><span id="s10_4" from="1037" to="1049"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">walzenhausen</f><f name="pos">NE</f><f name="msd">case=acc|number=pl|gender=neut</f></fs></f></fs></span><span id="s10_5" from="1049" to="1050"><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 id="s11_1" from="1051" to="1054"><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=fem</f></fs></f></fs></span><span id="s11_2" from="1055" to="1064"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">«müetter</f><f name="pos">ADJA</f><f name="msd">case=nom|number=sg|gender=fem|degree=pos</f></fs></f></fs></span><span id="s11_3" from="1065" to="1071"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">rundi»</f><f name="pos">NN</f><f name="msd">case=nom|number=sg|gender=fem</f></fs></f></fs></span><span id="s11_4" from="1072" to="1076"><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 id="s11_5" from="1077" to="1079"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">zu</f><f name="pos">APPR</f><f name="msd">_</f></fs></f></fs></span><span id="s11_6" from="1080" to="1085"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">ein</f><f name="pos">ART</f><f name="msd">case=dat|number=sg|gender=masc</f></fs></f></fs></span><span id="s11_7" from="1086" to="1090"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">kurs</f><f name="pos">NN</f><f name="msd">case=dat|number=sg|gender=masc</f></fs></f></fs></span><span id="s11_8" from="1091" to="1094"><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 id="s11_9" from="1094" to="1095"><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 id="s11_10" from="1096" to="1098"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">in</f><f name="pos">APPR</f><f name="msd">_</f></fs></f></fs></span><span id="s11_11" from="1099" to="1102"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">der</f><f name="pos">PRELS</f><f name="msd">case=dat|number=sg|gender=neut</f></fs></f></fs></span><span id="s11_12" from="1103" to="1109"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">sabine</f><f name="pos">NE</f><f name="msd">case=nom|number=sg|gender=fem</f></fs></f></fs></span><span id="s11_13" from="1110" to="1122"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">schittenhelm</f><f name="pos">NE</f><f name="msd">case=nom|number=sg|gender=fem</f></fs></f></fs></span><span id="s11_14" from="1123" to="1129"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">zeigen</f><f name="pos">VVINF</f><f name="msd">_</f></fs></f></fs></span><span id="s11_15" from="1130" to="1134"><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><span id="s11_16" from="1134" to="1135"><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 id="s11_17" from="1136" to="1139"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">wie</f><f name="pos">PWAV</f><f name="msd">_</f></fs></f></fs></span><span id="s11_18" from="1140" to="1143"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">man</f><f name="pos">PIS</f><f name="msd">case=nom|number=sg|gender=*</f></fs></f></fs></span><span id="s11_19" from="1144" to="1152"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">modisch</f><f name="pos">ADJA</f><f name="msd">number=sg|person=3|tense=pres|mood=subj</f></fs></f></fs></span><span id="s11_20" from="1153" to="1156"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">und</f><f name="pos">KON</f><f name="msd">_</f></fs></f></fs></span><span id="s11_21" from="1157" to="1168"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">raffiniert</f><f name="pos">ADJA</f><f name="msd">case=nom|number=sg|gender=masc|degree=pos</f></fs></f></fs></span><span id="s11_22" from="1169" to="1178"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">aufsteck</f><f name="pos">TRUNC</f><f name="msd">_</f></fs></f></fs></span><span id="s11_23" from="1179" to="1182"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">und</f><f name="pos">KON</f><f name="msd">_</f></fs></f></fs></span><span id="s11_24" from="1183" to="1195"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">zopffrisur</f><f name="pos">NN</f><f name="msd">case=acc|number=pl|gender=fem</f></fs></f></fs></span><span id="s11_25" from="1196" to="1199"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">für</f><f name="pos">APPR</f><f name="msd">_</f></fs></f></fs></span><span id="s11_26" from="1200" to="1207"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">mädchen</f><f name="pos">NN</f><f name="msd">case=acc|number=pl|gender=neut</f></fs></f></fs></span><span id="s11_27" from="1208" to="1214"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">machen</f><f name="pos">VVINF</f><f name="msd">_</f></fs></f></fs></span><span id="s11_28" from="1215" to="1219"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">können</f><f name="pos">VMFIN</f><f name="msd">number=sg|person=3|tense=pres|mood=ind</f></fs></f></fs></span><span id="s11_29" from="1219" to="1220"><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 id="s12_1" from="1221" to="1224"><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=fem</f></fs></f></fs></span><span id="s12_2" from="1225" to="1237"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">anmeldefrist</f><f name="pos">NN</f><f name="msd">case=nom|number=sg|gender=fem</f></fs></f></fs></span><span id="s12_3" from="1238" to="1243"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">laufen</f><f name="pos">VVFIN</f><f name="msd">number=sg|person=3|tense=pres|mood=ind</f></fs></f></fs></span><span id="s12_4" from="1244" to="1247"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">nur</f><f name="pos">ADV</f><f name="msd">_</f></fs></f></fs></span><span id="s12_5" from="1248" to="1252"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">noch</f><f name="pos">ADV</f><f name="msd">_</f></fs></f></fs></span><span id="s12_6" from="1253" to="1258"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">heute</f><f name="pos">ADV</f><f name="msd">_</f></fs></f></fs></span><span id="s12_7" from="1259" to="1262"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">bei</f><f name="pos">APPR</f><f name="msd">_</f></fs></f></fs></span><span id="s12_8" from="1263" to="1268"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">julia</f><f name="pos">NE</f><f name="msd">case=dat|number=sg|gender=neut</f></fs></f></fs></span><span id="s12_9" from="1269" to="1274"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">alder</f><f name="pos">NE</f><f name="msd">case=dat|number=sg|gender=neut</f></fs></f></fs></span><span id="s12_10" from="1274" to="1275"><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 id="s12_11" from="1276" to="1279"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">tel</f><f name="pos">NE</f><f name="msd">case=nom|number=sg|gender=*</f></fs></f></fs></span><span id="s12_12" from="1279" to="1280"><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 id="s12_13" from="1281" to="1284"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">888</f><f name="pos">CARD</f><f name="msd">_</f></fs></f></fs></span><span id="s12_14" from="1285" to="1287"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">59</f><f name="pos">CARD</f><f name="msd">_</f></fs></f></fs></span><span id="s12_15" from="1288" to="1291"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">73.</f><f name="pos">CARD</f><f name="msd">_</f></fs></f></fs></span><span id="s13_1" from="1292" to="1295"><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=fem</f></fs></f></fs></span><span id="s13_2" from="1296" to="1310"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">teilnehmerzahl</f><f name="pos">NN</f><f name="msd">case=nom|number=sg|gender=fem</f></fs></f></fs></span><span id="s13_3" from="1311" to="1314"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">sein</f><f name="pos">VAFIN</f><f name="msd">number=sg|person=3|tense=pres|mood=ind</f></fs></f></fs></span><span id="s13_4" from="1315" to="1323"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">begrenzen</f><f name="pos">VVPP</f><f name="msd">_</f></fs></f></fs></span><span id="s13_5" from="1323" to="1326"><fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"><f name="lex"><fs><f name="lemma">.pd</f><f name="pos">NE</f><f name="msd">_</f></fs></f></fs></span><span id="s13_6" from="1326" to="1327"><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></spanList></layer>
\ No newline at end of file
diff --git a/t/A01/13047/mate/pipeline/one_token_per_line.txt b/t/A01/13047/mate/pipeline/one_token_per_line.txt
new file mode 100644
index 0000000..ccc09c2
--- /dev/null
+++ b/t/A01/13047/mate/pipeline/one_token_per_line.txt
@@ -0,0 +1,229 @@
+
+1	Fischer	_	_	_	_	_	_	_	_	_	_	_	_	_
+2	und	_	_	_	_	_	_	_	_	_	_	_	_	_
+3	Kolp	_	_	_	_	_	_	_	_	_	_	_	_	_
+4	im	_	_	_	_	_	_	_	_	_	_	_	_	_
+5	Sonnenhügel	_	_	_	_	_	_	_	_	_	_	_	_	_
+6	Rehetobel	_	_	_	_	_	_	_	_	_	_	_	_	_
+7	.	_	_	_	_	_	_	_	_	_	_	_	_	_
+
+1	Zum	_	_	_	_	_	_	_	_	_	_	_	_	_
+2	letzten	_	_	_	_	_	_	_	_	_	_	_	_	_
+3	kulturellen	_	_	_	_	_	_	_	_	_	_	_	_	_
+4	Anlass	_	_	_	_	_	_	_	_	_	_	_	_	_
+5	lädt	_	_	_	_	_	_	_	_	_	_	_	_	_
+6	die	_	_	_	_	_	_	_	_	_	_	_	_	_
+7	Leitung	_	_	_	_	_	_	_	_	_	_	_	_	_
+8	des	_	_	_	_	_	_	_	_	_	_	_	_	_
+9	Schulheimes	_	_	_	_	_	_	_	_	_	_	_	_	_
+10	Hofbergli	_	_	_	_	_	_	_	_	_	_	_	_	_
+11	ein	_	_	_	_	_	_	_	_	_	_	_	_	_
+12	,	_	_	_	_	_	_	_	_	_	_	_	_	_
+13	bevor	_	_	_	_	_	_	_	_	_	_	_	_	_
+14	der	_	_	_	_	_	_	_	_	_	_	_	_	_
+15	Betrieb	_	_	_	_	_	_	_	_	_	_	_	_	_
+16	Ende	_	_	_	_	_	_	_	_	_	_	_	_	_
+17	Schuljahr	_	_	_	_	_	_	_	_	_	_	_	_	_
+18	eingestellt	_	_	_	_	_	_	_	_	_	_	_	_	_
+19	wird	_	_	_	_	_	_	_	_	_	_	_	_	_
+20	.	_	_	_	_	_	_	_	_	_	_	_	_	_
+
+1	Am	_	_	_	_	_	_	_	_	_	_	_	_	_
+2	kommenden	_	_	_	_	_	_	_	_	_	_	_	_	_
+3	Freitag	_	_	_	_	_	_	_	_	_	_	_	_	_
+4	,	_	_	_	_	_	_	_	_	_	_	_	_	_
+5	6.	_	_	_	_	_	_	_	_	_	_	_	_	_
+6	April	_	_	_	_	_	_	_	_	_	_	_	_	_
+7	,	_	_	_	_	_	_	_	_	_	_	_	_	_
+8	findet	_	_	_	_	_	_	_	_	_	_	_	_	_
+9	um	_	_	_	_	_	_	_	_	_	_	_	_	_
+10	17.30	_	_	_	_	_	_	_	_	_	_	_	_	_
+11	Uhr	_	_	_	_	_	_	_	_	_	_	_	_	_
+12	die	_	_	_	_	_	_	_	_	_	_	_	_	_
+13	Vernissage	_	_	_	_	_	_	_	_	_	_	_	_	_
+14	zur	_	_	_	_	_	_	_	_	_	_	_	_	_
+15	Ausstellung	_	_	_	_	_	_	_	_	_	_	_	_	_
+16	von	_	_	_	_	_	_	_	_	_	_	_	_	_
+17	Renata	_	_	_	_	_	_	_	_	_	_	_	_	_
+18	Fischer	_	_	_	_	_	_	_	_	_	_	_	_	_
+19	(	_	_	_	_	_	_	_	_	_	_	_	_	_
+20	Bilder	_	_	_	_	_	_	_	_	_	_	_	_	_
+21	)	_	_	_	_	_	_	_	_	_	_	_	_	_
+22	und	_	_	_	_	_	_	_	_	_	_	_	_	_
+23	Erich	_	_	_	_	_	_	_	_	_	_	_	_	_
+24	Kolp	_	_	_	_	_	_	_	_	_	_	_	_	_
+25	(	_	_	_	_	_	_	_	_	_	_	_	_	_
+26	Schriftbilder	_	_	_	_	_	_	_	_	_	_	_	_	_
+27	und	_	_	_	_	_	_	_	_	_	_	_	_	_
+28	Kalligraphien	_	_	_	_	_	_	_	_	_	_	_	_	_
+29	)	_	_	_	_	_	_	_	_	_	_	_	_	_
+30	im	_	_	_	_	_	_	_	_	_	_	_	_	_
+31	Schulhaus	_	_	_	_	_	_	_	_	_	_	_	_	_
+32	Sonnenhügel	_	_	_	_	_	_	_	_	_	_	_	_	_
+33	statt	_	_	_	_	_	_	_	_	_	_	_	_	_
+34	.	_	_	_	_	_	_	_	_	_	_	_	_	_
+
+1	Für	_	_	_	_	_	_	_	_	_	_	_	_	_
+2	die	_	_	_	_	_	_	_	_	_	_	_	_	_
+3	musikalische	_	_	_	_	_	_	_	_	_	_	_	_	_
+4	Umrahmung	_	_	_	_	_	_	_	_	_	_	_	_	_
+5	sorgen	_	_	_	_	_	_	_	_	_	_	_	_	_
+6	Martin	_	_	_	_	_	_	_	_	_	_	_	_	_
+7	Skampa	_	_	_	_	_	_	_	_	_	_	_	_	_
+8	und	_	_	_	_	_	_	_	_	_	_	_	_	_
+9	Jiri	_	_	_	_	_	_	_	_	_	_	_	_	_
+10	Holena	_	_	_	_	_	_	_	_	_	_	_	_	_
+11	;	_	_	_	_	_	_	_	_	_	_	_	_	_
+12	einführende	_	_	_	_	_	_	_	_	_	_	_	_	_
+13	Worte	_	_	_	_	_	_	_	_	_	_	_	_	_
+14	spricht	_	_	_	_	_	_	_	_	_	_	_	_	_
+15	Bruno	_	_	_	_	_	_	_	_	_	_	_	_	_
+16	Hofstetter	_	_	_	_	_	_	_	_	_	_	_	_	_
+17	.	_	_	_	_	_	_	_	_	_	_	_	_	_
+
+1	Die	_	_	_	_	_	_	_	_	_	_	_	_	_
+2	Ausstellung	_	_	_	_	_	_	_	_	_	_	_	_	_
+3	dauert	_	_	_	_	_	_	_	_	_	_	_	_	_
+4	bis	_	_	_	_	_	_	_	_	_	_	_	_	_
+5	am	_	_	_	_	_	_	_	_	_	_	_	_	_
+6	14.	_	_	_	_	_	_	_	_	_	_	_	_	_
+7	April	_	_	_	_	_	_	_	_	_	_	_	_	_
+8	und	_	_	_	_	_	_	_	_	_	_	_	_	_
+9	ist	_	_	_	_	_	_	_	_	_	_	_	_	_
+10	am	_	_	_	_	_	_	_	_	_	_	_	_	_
+11	Samstag	_	_	_	_	_	_	_	_	_	_	_	_	_
+12	und	_	_	_	_	_	_	_	_	_	_	_	_	_
+13	Sonntag	_	_	_	_	_	_	_	_	_	_	_	_	_
+14	von	_	_	_	_	_	_	_	_	_	_	_	_	_
+15	11.00	_	_	_	_	_	_	_	_	_	_	_	_	_
+16	bis	_	_	_	_	_	_	_	_	_	_	_	_	_
+17	17.00	_	_	_	_	_	_	_	_	_	_	_	_	_
+18	Uhr	_	_	_	_	_	_	_	_	_	_	_	_	_
+19	sowie	_	_	_	_	_	_	_	_	_	_	_	_	_
+20	Montag	_	_	_	_	_	_	_	_	_	_	_	_	_
+21	bis	_	_	_	_	_	_	_	_	_	_	_	_	_
+22	Freitag	_	_	_	_	_	_	_	_	_	_	_	_	_
+23	von	_	_	_	_	_	_	_	_	_	_	_	_	_
+24	15.00	_	_	_	_	_	_	_	_	_	_	_	_	_
+25	bis	_	_	_	_	_	_	_	_	_	_	_	_	_
+26	19.00Uhr	_	_	_	_	_	_	_	_	_	_	_	_	_
+27	geöffnet	_	_	_	_	_	_	_	_	_	_	_	_	_
+28	.pd	_	_	_	_	_	_	_	_	_	_	_	_	_
+29	.	_	_	_	_	_	_	_	_	_	_	_	_	_
+
+1	Mutation	_	_	_	_	_	_	_	_	_	_	_	_	_
+2	Sektionschefamt	_	_	_	_	_	_	_	_	_	_	_	_	_
+3	Wald	_	_	_	_	_	_	_	_	_	_	_	_	_
+4	.	_	_	_	_	_	_	_	_	_	_	_	_	_
+
+1	Die	_	_	_	_	_	_	_	_	_	_	_	_	_
+2	Sicherheitsdirektion	_	_	_	_	_	_	_	_	_	_	_	_	_
+3	teilt	_	_	_	_	_	_	_	_	_	_	_	_	_
+4	mit	_	_	_	_	_	_	_	_	_	_	_	_	_
+5	,	_	_	_	_	_	_	_	_	_	_	_	_	_
+6	dass	_	_	_	_	_	_	_	_	_	_	_	_	_
+7	Philipp	_	_	_	_	_	_	_	_	_	_	_	_	_
+8	Hengartner	_	_	_	_	_	_	_	_	_	_	_	_	_
+9	sein	_	_	_	_	_	_	_	_	_	_	_	_	_
+10	Arbeitsverhältnis	_	_	_	_	_	_	_	_	_	_	_	_	_
+11	auf	_	_	_	_	_	_	_	_	_	_	_	_	_
+12	der	_	_	_	_	_	_	_	_	_	_	_	_	_
+13	Gemeindeverwaltung	_	_	_	_	_	_	_	_	_	_	_	_	_
+14	gekündigt	_	_	_	_	_	_	_	_	_	_	_	_	_
+15	hat	_	_	_	_	_	_	_	_	_	_	_	_	_
+16	.	_	_	_	_	_	_	_	_	_	_	_	_	_
+
+1	Für	_	_	_	_	_	_	_	_	_	_	_	_	_
+2	die	_	_	_	_	_	_	_	_	_	_	_	_	_
+3	gute	_	_	_	_	_	_	_	_	_	_	_	_	_
+4	und	_	_	_	_	_	_	_	_	_	_	_	_	_
+5	angenehme	_	_	_	_	_	_	_	_	_	_	_	_	_
+6	Mitarbeit	_	_	_	_	_	_	_	_	_	_	_	_	_
+7	wird	_	_	_	_	_	_	_	_	_	_	_	_	_
+8	ihm	_	_	_	_	_	_	_	_	_	_	_	_	_
+9	der	_	_	_	_	_	_	_	_	_	_	_	_	_
+10	beste	_	_	_	_	_	_	_	_	_	_	_	_	_
+11	Dank	_	_	_	_	_	_	_	_	_	_	_	_	_
+12	ausgesprochen	_	_	_	_	_	_	_	_	_	_	_	_	_
+13	.	_	_	_	_	_	_	_	_	_	_	_	_	_
+
+1	Zur	_	_	_	_	_	_	_	_	_	_	_	_	_
+2	neuen	_	_	_	_	_	_	_	_	_	_	_	_	_
+3	Stelleninhaberin	_	_	_	_	_	_	_	_	_	_	_	_	_
+4	wurde	_	_	_	_	_	_	_	_	_	_	_	_	_
+5	auf	_	_	_	_	_	_	_	_	_	_	_	_	_
+6	Antrag	_	_	_	_	_	_	_	_	_	_	_	_	_
+7	des	_	_	_	_	_	_	_	_	_	_	_	_	_
+8	Gemeinderates	_	_	_	_	_	_	_	_	_	_	_	_	_
+9	Rebecca	_	_	_	_	_	_	_	_	_	_	_	_	_
+10	Benz-Koller	_	_	_	_	_	_	_	_	_	_	_	_	_
+11	,	_	_	_	_	_	_	_	_	_	_	_	_	_
+12	Jahrgang	_	_	_	_	_	_	_	_	_	_	_	_	_
+13	1976	_	_	_	_	_	_	_	_	_	_	_	_	_
+14	,	_	_	_	_	_	_	_	_	_	_	_	_	_
+15	Verwaltungsangestellte	_	_	_	_	_	_	_	_	_	_	_	_	_
+16	,	_	_	_	_	_	_	_	_	_	_	_	_	_
+17	Berneck	_	_	_	_	_	_	_	_	_	_	_	_	_
+18	,	_	_	_	_	_	_	_	_	_	_	_	_	_
+19	gewählt	_	_	_	_	_	_	_	_	_	_	_	_	_
+20	.pd	_	_	_	_	_	_	_	_	_	_	_	_	_
+21	.	_	_	_	_	_	_	_	_	_	_	_	_	_
+
+1	Aufsteckfrisuren	_	_	_	_	_	_	_	_	_	_	_	_	_
+2	für	_	_	_	_	_	_	_	_	_	_	_	_	_
+3	Kinder	_	_	_	_	_	_	_	_	_	_	_	_	_
+4	Walzenhausen	_	_	_	_	_	_	_	_	_	_	_	_	_
+5	.	_	_	_	_	_	_	_	_	_	_	_	_	_
+
+1	Die	_	_	_	_	_	_	_	_	_	_	_	_	_
+2	«Müettere	_	_	_	_	_	_	_	_	_	_	_	_	_
+3	Rundi»	_	_	_	_	_	_	_	_	_	_	_	_	_
+4	lädt	_	_	_	_	_	_	_	_	_	_	_	_	_
+5	zu	_	_	_	_	_	_	_	_	_	_	_	_	_
+6	einem	_	_	_	_	_	_	_	_	_	_	_	_	_
+7	Kurs	_	_	_	_	_	_	_	_	_	_	_	_	_
+8	ein	_	_	_	_	_	_	_	_	_	_	_	_	_
+9	,	_	_	_	_	_	_	_	_	_	_	_	_	_
+10	in	_	_	_	_	_	_	_	_	_	_	_	_	_
+11	dem	_	_	_	_	_	_	_	_	_	_	_	_	_
+12	Sabine	_	_	_	_	_	_	_	_	_	_	_	_	_
+13	Schittenhelm	_	_	_	_	_	_	_	_	_	_	_	_	_
+14	zeigen	_	_	_	_	_	_	_	_	_	_	_	_	_
+15	wird	_	_	_	_	_	_	_	_	_	_	_	_	_
+16	,	_	_	_	_	_	_	_	_	_	_	_	_	_
+17	wie	_	_	_	_	_	_	_	_	_	_	_	_	_
+18	man	_	_	_	_	_	_	_	_	_	_	_	_	_
+19	modische	_	_	_	_	_	_	_	_	_	_	_	_	_
+20	und	_	_	_	_	_	_	_	_	_	_	_	_	_
+21	raffinierte	_	_	_	_	_	_	_	_	_	_	_	_	_
+22	Aufsteck-	_	_	_	_	_	_	_	_	_	_	_	_	_
+23	und	_	_	_	_	_	_	_	_	_	_	_	_	_
+24	Zopffrisuren	_	_	_	_	_	_	_	_	_	_	_	_	_
+25	für	_	_	_	_	_	_	_	_	_	_	_	_	_
+26	Mädchen	_	_	_	_	_	_	_	_	_	_	_	_	_
+27	machen	_	_	_	_	_	_	_	_	_	_	_	_	_
+28	kann	_	_	_	_	_	_	_	_	_	_	_	_	_
+29	.	_	_	_	_	_	_	_	_	_	_	_	_	_
+
+1	Die	_	_	_	_	_	_	_	_	_	_	_	_	_
+2	Anmeldefrist	_	_	_	_	_	_	_	_	_	_	_	_	_
+3	läuft	_	_	_	_	_	_	_	_	_	_	_	_	_
+4	nur	_	_	_	_	_	_	_	_	_	_	_	_	_
+5	noch	_	_	_	_	_	_	_	_	_	_	_	_	_
+6	heute	_	_	_	_	_	_	_	_	_	_	_	_	_
+7	bei	_	_	_	_	_	_	_	_	_	_	_	_	_
+8	Julia	_	_	_	_	_	_	_	_	_	_	_	_	_
+9	Alder	_	_	_	_	_	_	_	_	_	_	_	_	_
+10	,	_	_	_	_	_	_	_	_	_	_	_	_	_
+11	Tel	_	_	_	_	_	_	_	_	_	_	_	_	_
+12	.	_	_	_	_	_	_	_	_	_	_	_	_	_
+13	888	_	_	_	_	_	_	_	_	_	_	_	_	_
+14	59	_	_	_	_	_	_	_	_	_	_	_	_	_
+15	73.	_	_	_	_	_	_	_	_	_	_	_	_	_
+
+1	Die	_	_	_	_	_	_	_	_	_	_	_	_	_
+2	Teilnehmerzahl	_	_	_	_	_	_	_	_	_	_	_	_	_
+3	ist	_	_	_	_	_	_	_	_	_	_	_	_	_
+4	begrenzt	_	_	_	_	_	_	_	_	_	_	_	_	_
+5	.pd	_	_	_	_	_	_	_	_	_	_	_	_	_
+6	.	_	_	_	_	_	_	_	_	_	_	_	_	_
diff --git a/t/A01/13047/mate/pipeline/parsed.txt b/t/A01/13047/mate/pipeline/parsed.txt
new file mode 100644
index 0000000..18d46be
--- /dev/null
+++ b/t/A01/13047/mate/pipeline/parsed.txt
@@ -0,0 +1,229 @@
+1	Fischer	_	fischer	_	NE	_	case=nom|number=sg|gender=*	-1	0	_	--	_	_
+2	und	_	und	_	KON	_	_	-1	1	_	CD	_	_
+3	Kolp	_	kolp	_	NE	_	case=nom|number=sg|gender=*	-1	2	_	CJ	_	_
+4	im	_	in	_	APPRART	_	case=dat|number=sg|gender=masc	-1	1	_	MNR	_	_
+5	Sonnenhügel	_	sonnenhügel	_	NN	_	case=dat|number=sg|gender=masc	-1	4	_	NK	_	_
+6	Rehetobel	_	rehetobel	_	NE	_	case=nom|number=sg|gender=*	-1	5	_	NK	_	_
+7	.	_	--	_	$.	_	_	-1	6	_	--	_	_
+
+1	Zum	_	zu	_	APPRART	_	case=dat|number=sg|gender=neut	-1	5	_	MO	_	_
+2	letzten	_	letzter	_	ADJA	_	case=dat|number=sg|gender=neut|degree=pos	-1	4	_	NK	_	_
+3	kulturellen	_	kulturell	_	ADJA	_	case=gen|number=sg|gender=neut|degree=pos	-1	4	_	NK	_	_
+4	Anlass	_	anlass	_	NN	_	case=gen|number=sg|gender=neut	-1	1	_	NK	_	_
+5	lädt	_	laden	_	VVFIN	_	number=sg|person=3|tense=pres|mood=ind	-1	0	_	--	_	_
+6	die	_	der	_	ART	_	case=acc|number=sg|gender=fem	-1	7	_	NK	_	_
+7	Leitung	_	leitung	_	NN	_	case=acc|number=sg|gender=fem	-1	5	_	SB	_	_
+8	des	_	der	_	ART	_	case=gen|number=sg|gender=neut	-1	9	_	NK	_	_
+9	Schulheimes	_	schulheime	_	NN	_	case=gen|number=sg|gender=neut	-1	7	_	AG	_	_
+10	Hofbergli	_	hofbergli	_	NE	_	case=nom|number=sg|gender=*	-1	9	_	NK	_	_
+11	ein	_	ein	_	PTKVZ	_	_	-1	5	_	SVP	_	_
+12	,	_	--	_	$,	_	_	-1	11	_	--	_	_
+13	bevor	_	bevor	_	KOUS	_	_	-1	19	_	CP	_	_
+14	der	_	der	_	ART	_	case=nom|number=sg|gender=masc	-1	15	_	NK	_	_
+15	Betrieb	_	betrieb	_	NN	_	case=nom|number=sg|gender=masc	-1	19	_	SB	_	_
+16	Ende	_	ende	_	NN	_	case=*|number=sg|gender=neut	-1	18	_	OA	_	_
+17	Schuljahr	_	schuljahr	_	NN	_	case=*|number=sg|gender=masc	-1	16	_	NK	_	_
+18	eingestellt	_	einstellen	_	VVPP	_	_	-1	19	_	OC	_	_
+19	wird	_	werden	_	VAFIN	_	number=sg|person=3|tense=pres|mood=ind	-1	5	_	MO	_	_
+20	.	_	--	_	$.	_	_	-1	19	_	--	_	_
+
+1	Am	_	an	_	APPRART	_	case=dat|number=sg|gender=masc	-1	2	_	PM	_	_
+2	kommenden	_	kommend	_	ADJA	_	case=dat|number=sg|gender=masc|degree=pos	-1	3	_	NK	_	_
+3	Freitag	_	freitag	_	NN	_	case=dat|number=sg|gender=masc	-1	8	_	SB	_	_
+4	,	_	--	_	$,	_	_	-1	3	_	--	_	_
+5	6.	_	6.	_	ADJA	_	case=dat|number=sg|gender=masc|degree=pos	-1	6	_	NK	_	_
+6	April	_	april	_	NN	_	case=dat|number=sg|gender=masc	-1	3	_	CJ	_	_
+7	,	_	--	_	$,	_	_	-1	6	_	--	_	_
+8	findet	_	finden	_	VVFIN	_	number=sg|person=3|tense=pres|mood=ind	-1	0	_	--	_	_
+9	um	_	um	_	APPR	_	_	-1	8	_	MO	_	_
+10	17.30	_	17.30	_	CARD	_	_	-1	11	_	NK	_	_
+11	Uhr	_	uhr	_	NN	_	case=acc|number=sg|gender=fem	-1	9	_	NK	_	_
+12	die	_	der	_	ART	_	case=acc|number=sg|gender=fem	-1	13	_	NK	_	_
+13	Vernissage	_	vernissage	_	NN	_	case=acc|number=sg|gender=fem	-1	8	_	OA	_	_
+14	zur	_	zu	_	APPRART	_	case=dat|number=sg|gender=fem	-1	13	_	MNR	_	_
+15	Ausstellung	_	ausstellung	_	NN	_	case=dat|number=sg|gender=fem	-1	14	_	NK	_	_
+16	von	_	von	_	APPR	_	_	-1	15	_	PG	_	_
+17	Renata	_	renata	_	NE	_	case=*|number=*|gender=*	-1	18	_	PNC	_	_
+18	Fischer	_	fischer	_	NE	_	case=dat|number=sg|gender=*	-1	16	_	NK	_	_
+19	(	_	--	_	$(	_	_	-1	18	_	--	_	_
+20	Bilder	_	bild	_	NN	_	case=nom|number=pl|gender=neut	-1	18	_	PAR	_	_
+21	)	_	--	_	$(	_	_	-1	20	_	--	_	_
+22	und	_	und	_	KON	_	_	-1	18	_	CD	_	_
+23	Erich	_	erich	_	NE	_	case=nom|number=sg|gender=masc	-1	24	_	PNC	_	_
+24	Kolp	_	kolp	_	NE	_	case=nom|number=sg|gender=masc	-1	22	_	CJ	_	_
+25	(	_	--	_	$(	_	_	-1	24	_	--	_	_
+26	Schriftbilder	_	schriftbild	_	NN	_	case=acc|number=pl|gender=neut	-1	24	_	APP	_	_
+27	und	_	und	_	KON	_	_	-1	26	_	CD	_	_
+28	Kalligraphien	_	kalligraphie	_	NN	_	case=acc|number=pl|gender=fem	-1	27	_	CJ	_	_
+29	)	_	--	_	$(	_	_	-1	28	_	--	_	_
+30	im	_	in	_	APPRART	_	case=dat|number=sg|gender=neut	-1	24	_	MNR	_	_
+31	Schulhaus	_	schulhaus	_	NN	_	case=dat|number=sg|gender=neut	-1	30	_	NK	_	_
+32	Sonnenhügel	_	sonnenhügel	_	NE	_	case=nom|number=sg|gender=*	-1	31	_	NK	_	_
+33	statt	_	statt	_	PTKVZ	_	_	-1	8	_	SVP	_	_
+34	.	_	--	_	$.	_	_	-1	33	_	--	_	_
+
+1	Für	_	für	_	APPR	_	_	-1	5	_	OP	_	_
+2	die	_	der	_	ART	_	case=acc|number=sg|gender=fem	-1	4	_	NK	_	_
+3	musikalische	_	musikalisch	_	ADJA	_	case=acc|number=sg|gender=fem|degree=pos	-1	4	_	NK	_	_
+4	Umrahmung	_	umrahmung	_	NN	_	case=acc|number=sg|gender=fem	-1	1	_	NK	_	_
+5	sorgen	_	sorgen	_	VVFIN	_	number=pl|person=3|tense=pres|mood=ind	-1	0	_	--	_	_
+6	Martin	_	martin	_	NE	_	case=nom|number=sg|gender=masc	-1	7	_	PNC	_	_
+7	Skampa	_	skampa	_	NE	_	case=nom|number=sg|gender=masc	-1	5	_	SB	_	_
+8	und	_	und	_	KON	_	_	-1	7	_	CD	_	_
+9	Jiri	_	jiri	_	NE	_	case=nom|number=sg|gender=masc	-1	10	_	PNC	_	_
+10	Holena	_	holena	_	NE	_	case=nom|number=sg|gender=masc	-1	8	_	CJ	_	_
+11	;	_	--	_	$.	_	_	-1	10	_	--	_	_
+12	einführende	_	einführend	_	ADJA	_	case=nom|number=sg|gender=masc|degree=pos	-1	13	_	NK	_	_
+13	Worte	_	wort	_	NN	_	case=nom|number=sg|gender=masc	-1	14	_	SB	_	_
+14	spricht	_	sprechen	_	VVFIN	_	number=sg|person=3|tense=pres|mood=ind	-1	5	_	CJ	_	_
+15	Bruno	_	bruno	_	NE	_	case=nom|number=sg|gender=masc	-1	16	_	PNC	_	_
+16	Hofstetter	_	hofstetter	_	NE	_	case=nom|number=sg|gender=masc	-1	14	_	MO	_	_
+17	.	_	--	_	$.	_	_	-1	16	_	--	_	_
+
+1	Die	_	der	_	ART	_	case=nom|number=sg|gender=fem	-1	2	_	NK	_	_
+2	Ausstellung	_	ausstellung	_	NN	_	case=nom|number=sg|gender=fem	-1	3	_	SB	_	_
+3	dauert	_	dauern	_	VVFIN	_	number=sg|person=3|tense=pres|mood=ind	-1	0	_	--	_	_
+4	bis	_	bis	_	APPR	_	_	-1	5	_	AC	_	_
+5	am	_	an	_	APPRART	_	case=dat|number=sg|gender=masc	-1	3	_	MO	_	_
+6	14.	_	14.	_	ADJA	_	case=dat|number=sg|gender=masc|degree=pos	-1	7	_	NK	_	_
+7	April	_	april	_	NN	_	case=dat|number=sg|gender=masc	-1	5	_	NK	_	_
+8	und	_	und	_	KON	_	_	-1	3	_	CD	_	_
+9	ist	_	sein	_	VAFIN	_	number=sg|person=3|tense=pres|mood=ind	-1	8	_	CJ	_	_
+10	am	_	an	_	APPRART	_	case=dat|number=sg|gender=masc	-1	27	_	MO	_	_
+11	Samstag	_	samstag	_	NN	_	case=dat|number=sg|gender=masc	-1	10	_	NK	_	_
+12	und	_	und	_	KON	_	_	-1	11	_	CD	_	_
+13	Sonntag	_	sonntag	_	NN	_	case=dat|number=sg|gender=masc	-1	12	_	CJ	_	_
+14	von	_	von	_	APPR	_	_	-1	16	_	MO	_	_
+15	11.00	_	11.00	_	CARD	_	_	-1	14	_	NK	_	_
+16	bis	_	bis	_	APPR	_	_	-1	27	_	MO	_	_
+17	17.00	_	17.00	_	CARD	_	_	-1	18	_	NK	_	_
+18	Uhr	_	uhr	_	NN	_	case=*|number=*|gender=fem	-1	16	_	NK	_	_
+19	sowie	_	sowie	_	KON	_	_	-1	18	_	CD	_	_
+20	Montag	_	montag	_	NN	_	case=acc|number=sg|gender=masc	-1	19	_	CJ	_	_
+21	bis	_	bis	_	APPR	_	_	-1	27	_	MO	_	_
+22	Freitag	_	freitag	_	NN	_	case=acc|number=sg|gender=masc	-1	21	_	NK	_	_
+23	von	_	von	_	APPR	_	_	-1	25	_	MO	_	_
+24	15.00	_	15.00	_	CARD	_	_	-1	23	_	NK	_	_
+25	bis	_	bis	_	APPR	_	_	-1	27	_	MO	_	_
+26	19.00Uhr	_	19.00uhr	_	CARD	_	_	-1	25	_	NK	_	_
+27	geöffnet	_	öffnen	_	VVPP	_	_	-1	9	_	PD	_	_
+28	.pd	_	.pd	_	NE	_	_	-1	27	_	SB	_	_
+29	.	_	--	_	$.	_	_	-1	28	_	--	_	_
+
+1	Mutation	_	mutation	_	NN	_	case=nom|number=sg|gender=fem	-1	0	_	--	_	_
+2	Sektionschefamt	_	sektionschefamt	_	NN	_	case=nom|number=sg|gender=fem	-1	3	_	PNC	_	_
+3	Wald	_	wald	_	NN	_	case=nom|number=sg|gender=fem	-1	1	_	NK	_	_
+4	.	_	--	_	$.	_	_	-1	3	_	--	_	_
+
+1	Die	_	der	_	ART	_	case=nom|number=sg|gender=fem	-1	2	_	NK	_	_
+2	Sicherheitsdirektion	_	sicherheitsdirektion	_	NN	_	case=nom|number=sg|gender=fem	-1	3	_	SB	_	_
+3	teilt	_	teilen	_	VVFIN	_	number=sg|person=3|tense=pres|mood=ind	-1	0	_	--	_	_
+4	mit	_	mit	_	PTKVZ	_	_	-1	3	_	SVP	_	_
+5	,	_	--	_	$,	_	_	-1	4	_	--	_	_
+6	dass	_	dass	_	KOUS	_	_	-1	15	_	CP	_	_
+7	Philipp	_	philipp	_	NE	_	case=nom|number=sg|gender=masc	-1	8	_	PNC	_	_
+8	Hengartner	_	hengartner	_	NE	_	case=nom|number=sg|gender=masc	-1	15	_	SB	_	_
+9	sein	_	sein	_	PPOSAT	_	case=acc|number=sg|gender=neut	-1	10	_	NK	_	_
+10	Arbeitsverhältnis	_	arbeitsverhältnis	_	NN	_	case=acc|number=sg|gender=neut	-1	14	_	DA	_	_
+11	auf	_	auf	_	APPR	_	_	-1	14	_	MO	_	_
+12	der	_	der	_	ART	_	case=dat|number=sg|gender=fem	-1	13	_	NK	_	_
+13	Gemeindeverwaltung	_	gemeindeverwaltung	_	NN	_	case=dat|number=sg|gender=fem	-1	11	_	NK	_	_
+14	gekündigt	_	kündigen	_	VVPP	_	_	-1	15	_	OC	_	_
+15	hat	_	haben	_	VAFIN	_	number=sg|person=3|tense=pres|mood=ind	-1	3	_	OC	_	_
+16	.	_	--	_	$.	_	_	-1	15	_	--	_	_
+
+1	Für	_	für	_	APPR	_	_	-1	12	_	MO	_	_
+2	die	_	der	_	ART	_	case=acc|number=sg|gender=fem	-1	6	_	NK	_	_
+3	gute	_	gut	_	ADJA	_	case=acc|number=sg|gender=fem|degree=pos	-1	6	_	NK	_	_
+4	und	_	und	_	KON	_	_	-1	3	_	CD	_	_
+5	angenehme	_	angenehm	_	ADJA	_	case=acc|number=sg|gender=fem|degree=pos	-1	4	_	CJ	_	_
+6	Mitarbeit	_	mitarbeit	_	NN	_	case=acc|number=sg|gender=fem	-1	1	_	NK	_	_
+7	wird	_	werden	_	VAFIN	_	number=sg|person=3|tense=pres|mood=ind	-1	0	_	--	_	_
+8	ihm	_	ihm	_	PPER	_	case=dat|number=sg|gender=*|person=3	-1	12	_	DA	_	_
+9	der	_	der	_	ART	_	case=nom|number=sg|gender=masc	-1	11	_	NK	_	_
+10	beste	_	gut	_	ADJA	_	case=nom|number=sg|gender=masc|degree=sup	-1	11	_	NK	_	_
+11	Dank	_	dank	_	NN	_	case=nom|number=sg|gender=masc	-1	7	_	SB	_	_
+12	ausgesprochen	_	aussprechen	_	VVPP	_	_	-1	7	_	OC	_	_
+13	.	_	--	_	$.	_	_	-1	12	_	--	_	_
+
+1	Zur	_	zu	_	APPRART	_	case=dat|number=sg|gender=fem	-1	4	_	MO	_	_
+2	neuen	_	neu	_	ADJA	_	case=dat|number=sg|gender=fem|degree=pos	-1	3	_	NK	_	_
+3	Stelleninhaberin	_	stelleninhaberin	_	NN	_	case=dat|number=sg|gender=fem	-1	1	_	NK	_	_
+4	wurde	_	werden	_	VAFIN	_	number=sg|person=3|tense=past|mood=ind	-1	0	_	--	_	_
+5	auf	_	auf	_	APPR	_	_	-1	19	_	MO	_	_
+6	Antrag	_	antrag	_	NN	_	case=acc|number=sg|gender=masc	-1	5	_	NK	_	_
+7	des	_	der	_	ART	_	case=gen|number=sg|gender=masc	-1	8	_	NK	_	_
+8	Gemeinderates	_	gemeinderat	_	NN	_	case=gen|number=sg|gender=masc	-1	6	_	AG	_	_
+9	Rebecca	_	rebecca	_	NE	_	case=nom|number=sg|gender=masc	-1	10	_	PNC	_	_
+10	Benz-Koller	_	benz-koller	_	NE	_	case=nom|number=sg|gender=masc	-1	8	_	NK	_	_
+11	,	_	--	_	$,	_	_	-1	10	_	--	_	_
+12	Jahrgang	_	jahrgang	_	NN	_	case=nom|number=sg|gender=masc	-1	8	_	APP	_	_
+13	1976	_	1976	_	CARD	_	_	-1	12	_	NK	_	_
+14	,	_	--	_	$,	_	_	-1	13	_	--	_	_
+15	Verwaltungsangestellte	_	verwaltungsangestellte	_	NN	_	case=acc|number=pl|gender=*	-1	12	_	CJ	_	_
+16	,	_	--	_	$,	_	_	-1	15	_	--	_	_
+17	Berneck	_	berneck	_	NE	_	case=nom|number=sg|gender=neut	-1	15	_	CJ	_	_
+18	,	_	--	_	$,	_	_	-1	17	_	--	_	_
+19	gewählt	_	wählen	_	VVPP	_	_	-1	4	_	OC	_	_
+20	.pd	_	.pd	_	NE	_	_	-1	19	_	MO	_	_
+21	.	_	--	_	$.	_	_	-1	20	_	--	_	_
+
+1	Aufsteckfrisuren	_	aufsteckfrisur	_	NN	_	case=nom|number=pl|gender=fem	-1	0	_	--	_	_
+2	für	_	für	_	APPR	_	_	-1	1	_	MNR	_	_
+3	Kinder	_	kind	_	NN	_	case=acc|number=pl|gender=neut	-1	2	_	NK	_	_
+4	Walzenhausen	_	walzenhausen	_	NE	_	case=acc|number=pl|gender=neut	-1	3	_	NK	_	_
+5	.	_	--	_	$.	_	_	-1	4	_	--	_	_
+
+1	Die	_	der	_	ART	_	case=nom|number=sg|gender=fem	-1	3	_	NK	_	_
+2	«Müettere	_	«müetter	_	ADJA	_	case=nom|number=sg|gender=fem|degree=pos	-1	3	_	NK	_	_
+3	Rundi»	_	rundi»	_	NN	_	case=nom|number=sg|gender=fem	-1	4	_	SB	_	_
+4	lädt	_	laden	_	VVFIN	_	number=sg|person=3|tense=pres|mood=ind	-1	0	_	--	_	_
+5	zu	_	zu	_	APPR	_	_	-1	4	_	MO	_	_
+6	einem	_	ein	_	ART	_	case=dat|number=sg|gender=masc	-1	7	_	NK	_	_
+7	Kurs	_	kurs	_	NN	_	case=dat|number=sg|gender=masc	-1	5	_	NK	_	_
+8	ein	_	ein	_	PTKVZ	_	_	-1	4	_	SVP	_	_
+9	,	_	--	_	$,	_	_	-1	8	_	--	_	_
+10	in	_	in	_	APPR	_	_	-1	14	_	MO	_	_
+11	dem	_	der	_	PRELS	_	case=dat|number=sg|gender=neut	-1	10	_	NK	_	_
+12	Sabine	_	sabine	_	NE	_	case=nom|number=sg|gender=fem	-1	13	_	PNC	_	_
+13	Schittenhelm	_	schittenhelm	_	NE	_	case=nom|number=sg|gender=fem	-1	14	_	OA	_	_
+14	zeigen	_	zeigen	_	VVINF	_	_	-1	15	_	OC	_	_
+15	wird	_	werden	_	VAFIN	_	number=sg|person=3|tense=pres|mood=ind	-1	7	_	OC	_	_
+16	,	_	--	_	$,	_	_	-1	15	_	--	_	_
+17	wie	_	wie	_	PWAV	_	_	-1	28	_	MO	_	_
+18	man	_	man	_	PIS	_	case=nom|number=sg|gender=*	-1	28	_	SB	_	_
+19	modische	_	modisch	_	ADJA	_	number=sg|person=3|tense=pres|mood=subj	-1	28	_	MO	_	_
+20	und	_	und	_	KON	_	_	-1	19	_	CD	_	_
+21	raffinierte	_	raffiniert	_	ADJA	_	case=nom|number=sg|gender=masc|degree=pos	-1	20	_	CJ	_	_
+22	Aufsteck-	_	aufsteck	_	TRUNC	_	_	-1	23	_	CJ	_	_
+23	und	_	und	_	KON	_	_	-1	24	_	CD	_	_
+24	Zopffrisuren	_	zopffrisur	_	NN	_	case=acc|number=pl|gender=fem	-1	27	_	OA	_	_
+25	für	_	für	_	APPR	_	_	-1	24	_	MNR	_	_
+26	Mädchen	_	mädchen	_	NN	_	case=acc|number=pl|gender=neut	-1	25	_	NK	_	_
+27	machen	_	machen	_	VVINF	_	_	-1	28	_	OC	_	_
+28	kann	_	können	_	VMFIN	_	number=sg|person=3|tense=pres|mood=ind	-1	14	_	OC	_	_
+29	.	_	--	_	$.	_	_	-1	28	_	--	_	_
+
+1	Die	_	der	_	ART	_	case=nom|number=sg|gender=fem	-1	2	_	NK	_	_
+2	Anmeldefrist	_	anmeldefrist	_	NN	_	case=nom|number=sg|gender=fem	-1	3	_	SB	_	_
+3	läuft	_	laufen	_	VVFIN	_	number=sg|person=3|tense=pres|mood=ind	-1	0	_	--	_	_
+4	nur	_	nur	_	ADV	_	_	-1	6	_	MO	_	_
+5	noch	_	noch	_	ADV	_	_	-1	6	_	MO	_	_
+6	heute	_	heute	_	ADV	_	_	-1	3	_	MO	_	_
+7	bei	_	bei	_	APPR	_	_	-1	3	_	MO	_	_
+8	Julia	_	julia	_	NE	_	case=dat|number=sg|gender=neut	-1	9	_	PNC	_	_
+9	Alder	_	alder	_	NE	_	case=dat|number=sg|gender=neut	-1	7	_	NK	_	_
+10	,	_	--	_	$,	_	_	-1	9	_	--	_	_
+11	Tel	_	tel	_	NE	_	case=nom|number=sg|gender=*	-1	15	_	NK	_	_
+12	.	_	--	_	$.	_	_	-1	11	_	--	_	_
+13	888	_	888	_	CARD	_	_	-1	15	_	NMC	_	_
+14	59	_	59	_	CARD	_	_	-1	15	_	NMC	_	_
+15	73.	_	73.	_	CARD	_	_	-1	9	_	CJ	_	_
+
+1	Die	_	der	_	ART	_	case=nom|number=sg|gender=fem	-1	2	_	NK	_	_
+2	Teilnehmerzahl	_	teilnehmerzahl	_	NN	_	case=nom|number=sg|gender=fem	-1	3	_	SB	_	_
+3	ist	_	sein	_	VAFIN	_	number=sg|person=3|tense=pres|mood=ind	-1	0	_	--	_	_
+4	begrenzt	_	begrenzen	_	VVPP	_	_	-1	3	_	PD	_	_
+5	.pd	_	.pd	_	NE	_	_	-1	4	_	MO	_	_
+6	.	_	--	_	$.	_	_	-1	5	_	--	_	_
+
diff --git a/t/A01/13047/mate/tokenSpans/number_tokenSpans.xml b/t/A01/13047/mate/tokenSpans/number_tokenSpans.xml
new file mode 100644
index 0000000..5f776ab
--- /dev/null
+++ b/t/A01/13047/mate/tokenSpans/number_tokenSpans.xml
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><article><token number="1" start="0" end="7"></token><token number="2" start="8" end="11"></token><token number="3" start="12" end="16"></token><token number="4" start="17" end="19"></token><token number="5" start="20" end="31"></token><token number="6" start="32" end="41"></token><token number="7" start="41" end="42"></token><token number="1" start="43" end="46"></token><token number="2" start="47" end="54"></token><token number="3" start="55" end="66"></token><token number="4" start="67" end="73"></token><token number="5" start="74" end="78"></token><token number="6" start="79" end="82"></token><token number="7" start="83" end="90"></token><token number="8" start="91" end="94"></token><token number="9" start="95" end="106"></token><token number="10" start="107" end="116"></token><token number="11" start="117" end="120"></token><token number="12" start="120" end="121"></token><token number="13" start="122" end="127"></token><token number="14" start="128" end="131"></token><token number="15" start="132" end="139"></token><token number="16" start="140" end="144"></token><token number="17" start="145" end="154"></token><token number="18" start="155" end="166"></token><token number="19" start="167" end="171"></token><token number="20" start="171" end="172"></token><token number="1" start="173" end="175"></token><token number="2" start="176" end="185"></token><token number="3" start="186" end="193"></token><token number="4" start="193" end="194"></token><token number="5" start="195" end="197"></token><token number="6" start="198" end="203"></token><token number="7" start="203" end="204"></token><token number="8" start="205" end="211"></token><token number="9" start="212" end="214"></token><token number="10" start="215" end="220"></token><token number="11" start="221" end="224"></token><token number="12" start="225" end="228"></token><token number="13" start="229" end="239"></token><token number="14" start="240" end="243"></token><token number="15" start="244" end="255"></token><token number="16" start="256" end="259"></token><token number="17" start="260" end="266"></token><token number="18" start="267" end="274"></token><token number="19" start="275" end="276"></token><token number="20" start="276" end="282"></token><token number="21" start="282" end="283"></token><token number="22" start="284" end="287"></token><token number="23" start="288" end="293"></token><token number="24" start="294" end="298"></token><token number="25" start="299" end="300"></token><token number="26" start="300" end="313"></token><token number="27" start="314" end="317"></token><token number="28" start="318" end="331"></token><token number="29" start="331" end="332"></token><token number="30" start="333" end="335"></token><token number="31" start="336" end="345"></token><token number="32" start="346" end="357"></token><token number="33" start="358" end="363"></token><token number="34" start="363" end="364"></token><token number="1" start="365" end="368"></token><token number="2" start="369" end="372"></token><token number="3" start="373" end="385"></token><token number="4" start="386" end="395"></token><token number="5" start="396" end="402"></token><token number="6" start="403" end="409"></token><token number="7" start="410" end="416"></token><token number="8" start="417" end="420"></token><token number="9" start="421" end="425"></token><token number="10" start="426" end="432"></token><token number="11" start="432" end="433"></token><token number="12" start="434" end="445"></token><token number="13" start="446" end="451"></token><token number="14" start="452" end="459"></token><token number="15" start="460" end="465"></token><token number="16" start="466" end="476"></token><token number="17" start="476" end="477"></token><token number="1" start="478" end="481"></token><token number="2" start="482" end="493"></token><token number="3" start="494" end="500"></token><token number="4" start="501" end="504"></token><token number="5" start="505" end="507"></token><token number="6" start="508" end="511"></token><token number="7" start="512" end="517"></token><token number="8" start="518" end="521"></token><token number="9" start="522" end="525"></token><token number="10" start="526" end="528"></token><token number="11" start="529" end="536"></token><token number="12" start="537" end="540"></token><token number="13" start="541" end="548"></token><token number="14" start="549" end="552"></token><token number="15" start="553" end="558"></token><token number="16" start="559" end="562"></token><token number="17" start="563" end="568"></token><token number="18" start="569" end="572"></token><token number="19" start="573" end="578"></token><token number="20" start="579" end="585"></token><token number="21" start="586" end="589"></token><token number="22" start="590" end="597"></token><token number="23" start="598" end="601"></token><token number="24" start="602" end="607"></token><token number="25" start="608" end="611"></token><token number="26" start="612" end="620"></token><token number="27" start="621" end="629"></token><token number="28" start="629" end="632"></token><token number="29" start="632" end="633"></token><token number="1" start="634" end="642"></token><token number="2" start="643" end="658"></token><token number="3" start="659" end="663"></token><token number="4" start="663" end="664"></token><token number="1" start="665" end="668"></token><token number="2" start="669" end="689"></token><token number="3" start="690" end="695"></token><token number="4" start="696" end="699"></token><token number="5" start="699" end="700"></token><token number="6" start="701" end="705"></token><token number="7" start="706" end="713"></token><token number="8" start="714" end="724"></token><token number="9" start="725" end="729"></token><token number="10" start="730" end="747"></token><token number="11" start="748" end="751"></token><token number="12" start="752" end="755"></token><token number="13" start="756" end="774"></token><token number="14" start="775" end="784"></token><token number="15" start="785" end="788"></token><token number="16" start="788" end="789"></token><token number="1" start="790" end="793"></token><token number="2" start="794" end="797"></token><token number="3" start="798" end="802"></token><token number="4" start="803" end="806"></token><token number="5" start="807" end="816"></token><token number="6" start="817" end="826"></token><token number="7" start="827" end="831"></token><token number="8" start="832" end="835"></token><token number="9" start="836" end="839"></token><token number="10" start="840" end="845"></token><token number="11" start="846" end="850"></token><token number="12" start="851" end="864"></token><token number="13" start="864" end="865"></token><token number="1" start="866" end="869"></token><token number="2" start="870" end="875"></token><token number="3" start="876" end="892"></token><token number="4" start="893" end="898"></token><token number="5" start="899" end="902"></token><token number="6" start="903" end="909"></token><token number="7" start="910" end="913"></token><token number="8" start="914" end="927"></token><token number="9" start="928" end="935"></token><token number="10" start="936" end="947"></token><token number="11" start="947" end="948"></token><token number="12" start="949" end="957"></token><token number="13" start="958" end="962"></token><token number="14" start="962" end="963"></token><token number="15" start="964" end="986"></token><token number="16" start="986" end="987"></token><token number="17" start="988" end="995"></token><token number="18" start="995" end="996"></token><token number="19" start="997" end="1004"></token><token number="20" start="1004" end="1007"></token><token number="21" start="1007" end="1008"></token><token number="1" start="1009" end="1025"></token><token number="2" start="1026" end="1029"></token><token number="3" start="1030" end="1036"></token><token number="4" start="1037" end="1049"></token><token number="5" start="1049" end="1050"></token><token number="1" start="1051" end="1054"></token><token number="2" start="1055" end="1064"></token><token number="3" start="1065" end="1071"></token><token number="4" start="1072" end="1076"></token><token number="5" start="1077" end="1079"></token><token number="6" start="1080" end="1085"></token><token number="7" start="1086" end="1090"></token><token number="8" start="1091" end="1094"></token><token number="9" start="1094" end="1095"></token><token number="10" start="1096" end="1098"></token><token number="11" start="1099" end="1102"></token><token number="12" start="1103" end="1109"></token><token number="13" start="1110" end="1122"></token><token number="14" start="1123" end="1129"></token><token number="15" start="1130" end="1134"></token><token number="16" start="1134" end="1135"></token><token number="17" start="1136" end="1139"></token><token number="18" start="1140" end="1143"></token><token number="19" start="1144" end="1152"></token><token number="20" start="1153" end="1156"></token><token number="21" start="1157" end="1168"></token><token number="22" start="1169" end="1178"></token><token number="23" start="1179" end="1182"></token><token number="24" start="1183" end="1195"></token><token number="25" start="1196" end="1199"></token><token number="26" start="1200" end="1207"></token><token number="27" start="1208" end="1214"></token><token number="28" start="1215" end="1219"></token><token number="29" start="1219" end="1220"></token><token number="1" start="1221" end="1224"></token><token number="2" start="1225" end="1237"></token><token number="3" start="1238" end="1243"></token><token number="4" start="1244" end="1247"></token><token number="5" start="1248" end="1252"></token><token number="6" start="1253" end="1258"></token><token number="7" start="1259" end="1262"></token><token number="8" start="1263" end="1268"></token><token number="9" start="1269" end="1274"></token><token number="10" start="1274" end="1275"></token><token number="11" start="1276" end="1279"></token><token number="12" start="1279" end="1280"></token><token number="13" start="1281" end="1284"></token><token number="14" start="1285" end="1287"></token><token number="15" start="1288" end="1291"></token><token number="1" start="1292" end="1295"></token><token number="2" start="1296" end="1310"></token><token number="3" start="1311" end="1314"></token><token number="4" start="1315" end="1323"></token><token number="5" start="1323" end="1326"></token><token number="6" start="1326" end="1327"></token></article>
\ No newline at end of file
diff --git a/t/A01/13047/metadata.xml b/t/A01/13047/metadata.xml
new file mode 100644
index 0000000..88d07d0
--- /dev/null
+++ b/t/A01/13047/metadata.xml
@@ -0,0 +1,13 @@
+<?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="A01_APR.13047" type="document" xmlns="http://ids-mannheim.de/ns/KorAP">
+  <doc file="data.xml" />
+  <foundry name="corenlp" path="corenlp" />
+  <foundry name="base" path="base" />
+  <foundry name="opennlp" path="opennlp" />
+  <foundry name="mpt" path="connexor" restricted="1" />
+  <foundry name="xip" path="xip" restricted="1" />
+  <foundry name="tt" path="tree_tagger" />
+  <foundry name="mate" path="mate" />
+</metadata>
diff --git a/t/A01/13047/opennlp/morpho.xml b/t/A01/13047/opennlp/morpho.xml
new file mode 100644
index 0000000..a47a5d0
--- /dev/null
+++ b/t/A01/13047/opennlp/morpho.xml
@@ -0,0 +1,1948 @@
+<?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="s_0" from="0" to="7">
+         <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_1" from="8" to="11">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">KON</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_2" from="12" to="16">
+         <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_3" from="17" to="19">
+         <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_4" from="20" to="31">
+         <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_5" from="32" to="41">
+         <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_6" from="41" to="42">
+         <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_7" from="43" to="46">
+         <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="47" to="54">
+         <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="55" to="66">
+         <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="67" to="73">
+         <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="74" to="78">
+         <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="79" to="82">
+         <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="83" to="90">
+         <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="91" to="94">
+         <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="95" to="106">
+         <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="107" to="116">
+         <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="117" to="120">
+         <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="120" to="121">
+         <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="122" to="127">
+         <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="128" to="131">
+         <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="132" to="139">
+         <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="140" to="144">
+         <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="145" to="154">
+         <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="155" to="166">
+         <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="167" to="171">
+         <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="171" to="172">
+         <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_27" from="173" to="175">
+         <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_28" from="176" to="185">
+         <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_29" from="186" to="193">
+         <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_30" from="193" to="194">
+         <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_31" from="195" to="197">
+         <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_32" from="198" to="203">
+         <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_33" from="203" to="204">
+         <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_34" from="205" to="211">
+         <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_35" from="212" to="214">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">APPR</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_36" from="215" to="220">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">CARD</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_37" from="221" to="224">
+         <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_38" from="225" to="228">
+         <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_39" from="229" to="239">
+         <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_40" from="240" to="243">
+         <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_41" from="244" to="255">
+         <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_42" from="256" to="259">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">APPR</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_43" from="260" to="266">
+         <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_44" from="267" to="274">
+         <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_45" from="275" to="276">
+         <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_46" from="276" to="282">
+         <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_47" from="282" to="283">
+         <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_48" from="284" to="287">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">KON</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_49" from="288" to="293">
+         <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_50" from="294" to="298">
+         <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_51" from="299" to="300">
+         <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_52" from="300" to="313">
+         <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_53" from="314" to="317">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">KON</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_54" from="318" to="331">
+         <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_55" from="331" to="332">
+         <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_56" from="333" to="335">
+         <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_57" from="336" to="345">
+         <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_58" from="346" to="357">
+         <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_59" from="358" to="363">
+         <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_60" from="363" to="364">
+         <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_61" from="365" to="368">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">APPR</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_62" from="369" to="372">
+         <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_63" from="373" to="385">
+         <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_64" from="386" to="395">
+         <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_65" from="396" to="402">
+         <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_66" from="403" to="409">
+         <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_67" from="410" to="416">
+         <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_68" from="417" to="420">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">KON</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_69" from="421" to="425">
+         <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_70" from="426" to="432">
+         <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_71" from="432" to="433">
+         <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_72" from="434" to="445">
+         <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_73" from="446" to="451">
+         <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_74" from="452" to="459">
+         <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_75" from="460" to="465">
+         <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_76" from="466" to="476">
+         <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_77" from="476" to="477">
+         <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_78" from="478" to="481">
+         <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_79" from="482" to="493">
+         <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_80" from="494" to="500">
+         <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_81" from="501" to="504">
+         <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_82" from="505" to="507">
+         <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_83" from="508" to="511">
+         <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_84" from="512" to="517">
+         <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_85" from="518" to="521">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">KON</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_86" from="522" to="525">
+         <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_87" from="526" to="528">
+         <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_88" from="529" to="536">
+         <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_89" from="537" to="540">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">KON</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_90" from="541" to="548">
+         <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_91" from="549" to="552">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">APPR</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_92" from="553" to="558">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">CARD</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_93" from="559" to="562">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">APPR</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_94" from="563" to="568">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">CARD</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_95" from="569" to="572">
+         <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_96" from="573" to="578">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">KON</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_97" from="579" to="585">
+         <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_98" from="586" to="589">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">APPR</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_99" from="590" to="597">
+         <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_100" from="598" to="601">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">APPR</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_101" from="602" to="607">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">CARD</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_102" from="608" to="611">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">APPR</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_103" from="612" to="620">
+         <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_104" from="621" to="629">
+         <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_105" from="629" to="632">
+         <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_106" from="632" to="633">
+         <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_107" from="634" to="642">
+         <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_108" from="643" to="658">
+         <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_109" from="659" to="663">
+         <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_110" from="663" to="664">
+         <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_111" from="665" to="668">
+         <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_112" from="669" to="689">
+         <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_113" from="690" to="695">
+         <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_114" from="696" to="699">
+         <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_115" from="699" to="700">
+         <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_116" from="701" to="705">
+         <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_117" from="706" to="713">
+         <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_118" from="714" to="724">
+         <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_119" from="725" to="729">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">PPOSAT</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_120" from="730" to="747">
+         <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_121" from="748" to="751">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">APPR</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_122" from="752" to="755">
+         <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_123" from="756" to="774">
+         <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_124" from="775" to="784">
+         <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_125" from="785" to="788">
+         <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_126" from="788" to="789">
+         <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_127" from="790" to="793">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">APPR</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_128" from="794" to="797">
+         <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_129" from="798" to="802">
+         <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_130" from="803" to="806">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">KON</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_131" from="807" to="816">
+         <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_132" from="817" to="826">
+         <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_133" from="827" to="831">
+         <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_134" from="832" to="835">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">PPER</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_135" from="836" to="839">
+         <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_136" from="840" to="845">
+         <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_137" from="846" to="850">
+         <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_138" from="851" to="864">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">ADJD</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_139" from="864" to="865">
+         <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_140" from="866" to="869">
+         <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_141" from="870" to="875">
+         <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_142" from="876" to="892">
+         <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_143" from="893" to="898">
+         <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_144" from="899" to="902">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">APPR</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_145" from="903" to="909">
+         <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_146" from="910" to="913">
+         <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_147" from="914" to="927">
+         <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_148" from="928" to="935">
+         <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_149" from="936" to="947">
+         <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_150" from="947" to="948">
+         <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_151" from="949" to="957">
+         <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_152" from="958" to="962">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">CARD</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_153" from="962" to="963">
+         <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_154" from="964" to="986">
+         <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_155" from="986" to="987">
+         <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_156" from="988" to="995">
+         <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_157" from="995" to="996">
+         <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_158" from="997" to="1004">
+         <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_159" from="1004" to="1007">
+         <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_160" from="1007" to="1008">
+         <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_161" from="1009" to="1025">
+         <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_162" from="1026" to="1029">
+         <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_163" from="1030" to="1036">
+         <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_164" from="1037" to="1049">
+         <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_165" from="1049" to="1050">
+         <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_166" from="1051" to="1054">
+         <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_167" from="1055" to="1064">
+         <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_168" from="1065" to="1071">
+         <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_169" from="1072" to="1076">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">ADV</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_170" from="1077" to="1079">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">APPR</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_171" from="1080" to="1085">
+         <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_172" from="1086" to="1090">
+         <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_173" from="1091" to="1094">
+         <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_174" from="1094" to="1095">
+         <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_175" from="1096" to="1098">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">APPR</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_176" from="1099" to="1102">
+         <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_177" from="1103" to="1109">
+         <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_178" from="1110" to="1122">
+         <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_179" from="1123" to="1129">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">VVINF</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_180" from="1130" to="1134">
+         <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_181" from="1134" to="1135">
+         <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_182" from="1136" to="1139">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">PWAV</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_183" from="1140" to="1143">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">PIS</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_184" from="1144" to="1152">
+         <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_185" from="1153" to="1156">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">KON</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_186" from="1157" to="1168">
+         <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_187" from="1169" to="1178">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">TRUNC</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_188" from="1179" to="1182">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">KON</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_189" from="1183" to="1195">
+         <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_190" from="1196" to="1199">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">APPR</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_191" from="1200" to="1207">
+         <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_192" from="1208" to="1214">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">VVINF</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_193" from="1215" to="1219">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">VMFIN</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_194" from="1219" to="1220">
+         <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_195" from="1221" to="1224">
+         <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_196" from="1225" to="1237">
+         <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_197" from="1238" to="1243">
+         <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_198" from="1244" to="1247">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">ADV</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_199" from="1248" to="1252">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">ADV</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_200" from="1253" to="1258">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">ADV</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_201" from="1259" to="1262">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">APPR</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_202" from="1263" to="1268">
+         <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_203" from="1269" to="1274">
+         <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_204" from="1274" to="1275">
+         <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_205" from="1276" to="1279">
+         <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_206" from="1279" to="1280">
+         <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_207" from="1281" to="1284">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">CARD</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_208" from="1285" to="1287">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">CARD</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_209" from="1288" to="1291">
+         <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_210" from="1292" to="1295">
+         <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_211" from="1296" to="1310">
+         <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_212" from="1311" to="1314">
+         <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_213" from="1315" to="1323">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">ADJD</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_214" from="1323" to="1326">
+         <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+            <f name="lex">
+               <fs>
+                  <f name="pos">ADJD</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="s_215" from="1326" to="1327">
+         <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/A01/13047/opennlp/sentences.xml b/t/A01/13047/opennlp/sentences.xml
new file mode 100644
index 0000000..442351a
--- /dev/null
+++ b/t/A01/13047/opennlp/sentences.xml
@@ -0,0 +1,17 @@
+<?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 from="0" to="42"/>
+      <span from="43" to="172"/>
+      <span from="173" to="364"/>
+      <span from="365" to="477"/>
+      <span from="478" to="633"/>
+      <span from="634" to="664"/>
+      <span from="665" to="789"/>
+      <span from="790" to="865"/>
+      <span from="866" to="1008"/>
+      <span from="1009" to="1050"/>
+      <span from="1051" to="1220"/>
+      <span from="1221" to="1291"/>
+      <span from="1292" to="1327"/>
+   </spanList>
+</layer>
diff --git a/t/A01/13047/opennlp/tokens.xml b/t/A01/13047/opennlp/tokens.xml
new file mode 100644
index 0000000..85a24f8
--- /dev/null
+++ b/t/A01/13047/opennlp/tokens.xml
@@ -0,0 +1,220 @@
+<?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="s_0" from="0" to="7"/>
+      <span id="s_1" from="8" to="11"/>
+      <span id="s_2" from="12" to="16"/>
+      <span id="s_3" from="17" to="19"/>
+      <span id="s_4" from="20" to="31"/>
+      <span id="s_5" from="32" to="41"/>
+      <span id="s_6" from="41" to="42"/>
+      <span id="s_7" from="43" to="46"/>
+      <span id="s_8" from="47" to="54"/>
+      <span id="s_9" from="55" to="66"/>
+      <span id="s_10" from="67" to="73"/>
+      <span id="s_11" from="74" to="78"/>
+      <span id="s_12" from="79" to="82"/>
+      <span id="s_13" from="83" to="90"/>
+      <span id="s_14" from="91" to="94"/>
+      <span id="s_15" from="95" to="106"/>
+      <span id="s_16" from="107" to="116"/>
+      <span id="s_17" from="117" to="120"/>
+      <span id="s_18" from="120" to="121"/>
+      <span id="s_19" from="122" to="127"/>
+      <span id="s_20" from="128" to="131"/>
+      <span id="s_21" from="132" to="139"/>
+      <span id="s_22" from="140" to="144"/>
+      <span id="s_23" from="145" to="154"/>
+      <span id="s_24" from="155" to="166"/>
+      <span id="s_25" from="167" to="171"/>
+      <span id="s_26" from="171" to="172"/>
+      <span id="s_27" from="173" to="175"/>
+      <span id="s_28" from="176" to="185"/>
+      <span id="s_29" from="186" to="193"/>
+      <span id="s_30" from="193" to="194"/>
+      <span id="s_31" from="195" to="197"/>
+      <span id="s_32" from="198" to="203"/>
+      <span id="s_33" from="203" to="204"/>
+      <span id="s_34" from="205" to="211"/>
+      <span id="s_35" from="212" to="214"/>
+      <span id="s_36" from="215" to="220"/>
+      <span id="s_37" from="221" to="224"/>
+      <span id="s_38" from="225" to="228"/>
+      <span id="s_39" from="229" to="239"/>
+      <span id="s_40" from="240" to="243"/>
+      <span id="s_41" from="244" to="255"/>
+      <span id="s_42" from="256" to="259"/>
+      <span id="s_43" from="260" to="266"/>
+      <span id="s_44" from="267" to="274"/>
+      <span id="s_45" from="275" to="276"/>
+      <span id="s_46" from="276" to="282"/>
+      <span id="s_47" from="282" to="283"/>
+      <span id="s_48" from="284" to="287"/>
+      <span id="s_49" from="288" to="293"/>
+      <span id="s_50" from="294" to="298"/>
+      <span id="s_51" from="299" to="300"/>
+      <span id="s_52" from="300" to="313"/>
+      <span id="s_53" from="314" to="317"/>
+      <span id="s_54" from="318" to="331"/>
+      <span id="s_55" from="331" to="332"/>
+      <span id="s_56" from="333" to="335"/>
+      <span id="s_57" from="336" to="345"/>
+      <span id="s_58" from="346" to="357"/>
+      <span id="s_59" from="358" to="363"/>
+      <span id="s_60" from="363" to="364"/>
+      <span id="s_61" from="365" to="368"/>
+      <span id="s_62" from="369" to="372"/>
+      <span id="s_63" from="373" to="385"/>
+      <span id="s_64" from="386" to="395"/>
+      <span id="s_65" from="396" to="402"/>
+      <span id="s_66" from="403" to="409"/>
+      <span id="s_67" from="410" to="416"/>
+      <span id="s_68" from="417" to="420"/>
+      <span id="s_69" from="421" to="425"/>
+      <span id="s_70" from="426" to="432"/>
+      <span id="s_71" from="432" to="433"/>
+      <span id="s_72" from="434" to="445"/>
+      <span id="s_73" from="446" to="451"/>
+      <span id="s_74" from="452" to="459"/>
+      <span id="s_75" from="460" to="465"/>
+      <span id="s_76" from="466" to="476"/>
+      <span id="s_77" from="476" to="477"/>
+      <span id="s_78" from="478" to="481"/>
+      <span id="s_79" from="482" to="493"/>
+      <span id="s_80" from="494" to="500"/>
+      <span id="s_81" from="501" to="504"/>
+      <span id="s_82" from="505" to="507"/>
+      <span id="s_83" from="508" to="511"/>
+      <span id="s_84" from="512" to="517"/>
+      <span id="s_85" from="518" to="521"/>
+      <span id="s_86" from="522" to="525"/>
+      <span id="s_87" from="526" to="528"/>
+      <span id="s_88" from="529" to="536"/>
+      <span id="s_89" from="537" to="540"/>
+      <span id="s_90" from="541" to="548"/>
+      <span id="s_91" from="549" to="552"/>
+      <span id="s_92" from="553" to="558"/>
+      <span id="s_93" from="559" to="562"/>
+      <span id="s_94" from="563" to="568"/>
+      <span id="s_95" from="569" to="572"/>
+      <span id="s_96" from="573" to="578"/>
+      <span id="s_97" from="579" to="585"/>
+      <span id="s_98" from="586" to="589"/>
+      <span id="s_99" from="590" to="597"/>
+      <span id="s_100" from="598" to="601"/>
+      <span id="s_101" from="602" to="607"/>
+      <span id="s_102" from="608" to="611"/>
+      <span id="s_103" from="612" to="620"/>
+      <span id="s_104" from="621" to="629"/>
+      <span id="s_105" from="629" to="632"/>
+      <span id="s_106" from="632" to="633"/>
+      <span id="s_107" from="634" to="642"/>
+      <span id="s_108" from="643" to="658"/>
+      <span id="s_109" from="659" to="663"/>
+      <span id="s_110" from="663" to="664"/>
+      <span id="s_111" from="665" to="668"/>
+      <span id="s_112" from="669" to="689"/>
+      <span id="s_113" from="690" to="695"/>
+      <span id="s_114" from="696" to="699"/>
+      <span id="s_115" from="699" to="700"/>
+      <span id="s_116" from="701" to="705"/>
+      <span id="s_117" from="706" to="713"/>
+      <span id="s_118" from="714" to="724"/>
+      <span id="s_119" from="725" to="729"/>
+      <span id="s_120" from="730" to="747"/>
+      <span id="s_121" from="748" to="751"/>
+      <span id="s_122" from="752" to="755"/>
+      <span id="s_123" from="756" to="774"/>
+      <span id="s_124" from="775" to="784"/>
+      <span id="s_125" from="785" to="788"/>
+      <span id="s_126" from="788" to="789"/>
+      <span id="s_127" from="790" to="793"/>
+      <span id="s_128" from="794" to="797"/>
+      <span id="s_129" from="798" to="802"/>
+      <span id="s_130" from="803" to="806"/>
+      <span id="s_131" from="807" to="816"/>
+      <span id="s_132" from="817" to="826"/>
+      <span id="s_133" from="827" to="831"/>
+      <span id="s_134" from="832" to="835"/>
+      <span id="s_135" from="836" to="839"/>
+      <span id="s_136" from="840" to="845"/>
+      <span id="s_137" from="846" to="850"/>
+      <span id="s_138" from="851" to="864"/>
+      <span id="s_139" from="864" to="865"/>
+      <span id="s_140" from="866" to="869"/>
+      <span id="s_141" from="870" to="875"/>
+      <span id="s_142" from="876" to="892"/>
+      <span id="s_143" from="893" to="898"/>
+      <span id="s_144" from="899" to="902"/>
+      <span id="s_145" from="903" to="909"/>
+      <span id="s_146" from="910" to="913"/>
+      <span id="s_147" from="914" to="927"/>
+      <span id="s_148" from="928" to="935"/>
+      <span id="s_149" from="936" to="947"/>
+      <span id="s_150" from="947" to="948"/>
+      <span id="s_151" from="949" to="957"/>
+      <span id="s_152" from="958" to="962"/>
+      <span id="s_153" from="962" to="963"/>
+      <span id="s_154" from="964" to="986"/>
+      <span id="s_155" from="986" to="987"/>
+      <span id="s_156" from="988" to="995"/>
+      <span id="s_157" from="995" to="996"/>
+      <span id="s_158" from="997" to="1004"/>
+      <span id="s_159" from="1004" to="1007"/>
+      <span id="s_160" from="1007" to="1008"/>
+      <span id="s_161" from="1009" to="1025"/>
+      <span id="s_162" from="1026" to="1029"/>
+      <span id="s_163" from="1030" to="1036"/>
+      <span id="s_164" from="1037" to="1049"/>
+      <span id="s_165" from="1049" to="1050"/>
+      <span id="s_166" from="1051" to="1054"/>
+      <span id="s_167" from="1055" to="1064"/>
+      <span id="s_168" from="1065" to="1071"/>
+      <span id="s_169" from="1072" to="1076"/>
+      <span id="s_170" from="1077" to="1079"/>
+      <span id="s_171" from="1080" to="1085"/>
+      <span id="s_172" from="1086" to="1090"/>
+      <span id="s_173" from="1091" to="1094"/>
+      <span id="s_174" from="1094" to="1095"/>
+      <span id="s_175" from="1096" to="1098"/>
+      <span id="s_176" from="1099" to="1102"/>
+      <span id="s_177" from="1103" to="1109"/>
+      <span id="s_178" from="1110" to="1122"/>
+      <span id="s_179" from="1123" to="1129"/>
+      <span id="s_180" from="1130" to="1134"/>
+      <span id="s_181" from="1134" to="1135"/>
+      <span id="s_182" from="1136" to="1139"/>
+      <span id="s_183" from="1140" to="1143"/>
+      <span id="s_184" from="1144" to="1152"/>
+      <span id="s_185" from="1153" to="1156"/>
+      <span id="s_186" from="1157" to="1168"/>
+      <span id="s_187" from="1169" to="1178"/>
+      <span id="s_188" from="1179" to="1182"/>
+      <span id="s_189" from="1183" to="1195"/>
+      <span id="s_190" from="1196" to="1199"/>
+      <span id="s_191" from="1200" to="1207"/>
+      <span id="s_192" from="1208" to="1214"/>
+      <span id="s_193" from="1215" to="1219"/>
+      <span id="s_194" from="1219" to="1220"/>
+      <span id="s_195" from="1221" to="1224"/>
+      <span id="s_196" from="1225" to="1237"/>
+      <span id="s_197" from="1238" to="1243"/>
+      <span id="s_198" from="1244" to="1247"/>
+      <span id="s_199" from="1248" to="1252"/>
+      <span id="s_200" from="1253" to="1258"/>
+      <span id="s_201" from="1259" to="1262"/>
+      <span id="s_202" from="1263" to="1268"/>
+      <span id="s_203" from="1269" to="1274"/>
+      <span id="s_204" from="1274" to="1275"/>
+      <span id="s_205" from="1276" to="1279"/>
+      <span id="s_206" from="1279" to="1280"/>
+      <span id="s_207" from="1281" to="1284"/>
+      <span id="s_208" from="1285" to="1287"/>
+      <span id="s_209" from="1288" to="1291"/>
+      <span id="s_210" from="1292" to="1295"/>
+      <span id="s_211" from="1296" to="1310"/>
+      <span id="s_212" from="1311" to="1314"/>
+      <span id="s_213" from="1315" to="1323"/>
+      <span id="s_214" from="1323" to="1326"/>
+      <span id="s_215" from="1326" to="1327"/>
+   </spanList>
+</layer>
diff --git a/t/A01/13047/struct/structure.xml b/t/A01/13047/struct/structure.xml
new file mode 100644
index 0000000..2ef6178
--- /dev/null
+++ b/t/A01/13047/struct/structure.xml
@@ -0,0 +1,309 @@
+<?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="A01_APR.13047" xmlns="http://ids-mannheim.de/ns/KorAP" version="KorAP-0.4">
+  <spanList>
+    <span id="s0" from="0" to="1327">
+      <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">
+      <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="1327">
+      <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">
+      <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="1327">
+      <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="1327">
+      <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">
+      <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">
+      <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">
+      <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">
+      <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="s10" from="43" to="633">
+      <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="633">
+      <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="172">
+      <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="s13" from="173" to="364">
+      <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="s14" from="365" to="477">
+      <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="s15" from="478" to="633">
+      <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="s16" from="634" to="1008">
+      <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="s17" from="634" to="658">
+      <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="s18" from="634" to="658">
+      <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="s19" from="659" to="664">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">byline</f>
+      </fs>
+    </span>
+    <span id="s20" from="659" to="664">
+      <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="s21" from="665" to="1008">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">p</f>
+      </fs>
+    </span>
+    <span id="s22" from="665" to="789">
+      <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="s23" from="790" to="865">
+      <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="s24" from="866" to="1008">
+      <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="s25" from="1009" to="1327">
+      <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="s26" from="1009" to="1036">
+      <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="s27" from="1009" to="1036">
+      <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="s28" from="1037" to="1050">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">byline</f>
+      </fs>
+    </span>
+    <span id="s29" from="1037" to="1050">
+      <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="s30" from="1051" to="1327">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">p</f>
+      </fs>
+    </span>
+    <span id="s31" from="1051" to="1220">
+      <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="s32" from="1221" to="1327">
+      <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="s33" from="1327" to="1327">
+      <fs type="struct" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="name">back</f>
+      </fs>
+    </span>
+  </spanList>
+</layer>
diff --git a/t/A01/13047/text.txt b/t/A01/13047/text.txt
new file mode 100644
index 0000000..5115c25
--- /dev/null
+++ b/t/A01/13047/text.txt
@@ -0,0 +1 @@
+Fischer und Kolp im Sonnenhügel Rehetobel. Zum letzten kulturellen Anlass lädt die Leitung des Schulheimes Hofbergli ein, bevor der Betrieb Ende Schuljahr eingestellt wird. Am kommenden Freitag, 6. April, findet um 17.30 Uhr die Vernissage zur Ausstellung von Renata Fischer (Bilder) und Erich Kolp (Schriftbilder und Kalligraphien) im Schulhaus Sonnenhügel statt. Für die musikalische Umrahmung sorgen Martin Skampa und Jiri Holena; einführende Worte spricht Bruno Hofstetter. Die Ausstellung dauert bis am 14. April und ist am Samstag und Sonntag von 11.00 bis 17.00 Uhr sowie Montag bis Freitag von 15.00 bis 19.00Uhr geöffnet.pd. Mutation Sektionschefamt Wald. Die Sicherheitsdirektion teilt mit, dass Philipp Hengartner sein Arbeitsverhältnis auf der Gemeindeverwaltung gekündigt hat. Für die gute und angenehme Mitarbeit wird ihm der beste Dank ausgesprochen. Zur neuen Stelleninhaberin wurde auf Antrag des Gemeinderates Rebecca Benz-Koller, Jahrgang 1976, Verwaltungsangestellte, Berneck, gewählt.pd. Aufsteckfrisuren für Kinder Walzenhausen. Die «Müettere Rundi» lädt zu einem Kurs ein, in dem Sabine Schittenhelm zeigen wird, wie man modische und raffinierte Aufsteck- und Zopffrisuren für Mädchen machen kann. Die Anmeldefrist läuft nur noch heute bei Julia Alder, Tel. 888 59 73. Die Teilnehmerzahl ist begrenzt.pd.
\ No newline at end of file
diff --git a/t/A01/13047/tree_tagger/metadata.xml b/t/A01/13047/tree_tagger/metadata.xml
new file mode 100644
index 0000000..4c14338
--- /dev/null
+++ b/t/A01/13047/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="A01_APR.13047" 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/A01/13047/tree_tagger/morpho.xml b/t/A01/13047/tree_tagger/morpho.xml
new file mode 100644
index 0000000..010ffdb
--- /dev/null
+++ b/t/A01/13047/tree_tagger/morpho.xml
@@ -0,0 +1,2539 @@
+<?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="A01_APR.13047">
+  <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">Fischer</f>
+            <f name="certainty">0.994370</f>
+            <f name="ctag">NE</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="16">
+      <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.790283</f>
+            <f name="ctag">NE</f>
+          </fs>
+        </f>
+        <f name="lex">
+          <fs>
+            <f name="lemma">UNKNOWN</f>
+            <f name="certainty">0.209717</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_3" from="17" to="19">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">im</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">APPRART</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_4" from="20" to="31">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Sonnenhügel</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_5" from="32" to="41">
+      <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.943613</f>
+            <f name="ctag">NE</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_6" from="41" to="42">
+      <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="43" to="46">
+      <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 id="s_8" from="47" to="54">
+      <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_9" from="55" to="66">
+      <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 id="s_10" from="67" to="73">
+      <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 id="s_11" from="74" to="78">
+      <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 id="s_12" from="79" to="82">
+      <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 id="s_13" from="83" to="90">
+      <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 id="s_14" from="91" to="94">
+      <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_15" from="95" to="106">
+      <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 id="s_16" from="107" to="116">
+      <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 id="s_17" from="117" to="120">
+      <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 id="s_18" from="120" to="121">
+      <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_19" from="122" to="127">
+      <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 id="s_20" from="128" to="131">
+      <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 id="s_21" from="132" to="139">
+      <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 id="s_22" from="140" to="144">
+      <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 id="s_23" from="145" to="154">
+      <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 id="s_24" from="155" to="166">
+      <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 id="s_25" from="167" to="171">
+      <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_26" 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_27" from="173" to="175">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">am</f>
+            <f name="certainty">0.990135</f>
+            <f name="ctag">APPRART</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_28" from="176" to="185">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">kommend</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">ADJA</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_29" from="186" to="193">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Freitag</f>
+            <f name="certainty">0.998676</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_30" from="193" to="194">
+      <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_31" from="195" to="197">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">6.</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">ADJA</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_32" from="198" to="203">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">April</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_33" from="203" to="204">
+      <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_34" from="205" to="211">
+      <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.999976</f>
+            <f name="ctag">VVFIN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_35" from="212" to="214">
+      <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.988773</f>
+            <f name="ctag">APPR</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_36" from="215" to="220">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">@card@</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">CARD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_37" from="221" to="224">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Uhr</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_38" from="225" to="228">
+      <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.998627</f>
+            <f name="ctag">ART</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_39" from="229" to="239">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Vernissage</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_40" from="240" to="243">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">zur</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">APPRART</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_41" from="244" to="255">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Ausstellung</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_42" from="256" to="259">
+      <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.996728</f>
+            <f name="ctag">APPR</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_43" from="260" to="266">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Renata</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NE</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_44" from="267" to="274">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Fischer</f>
+            <f name="certainty">0.999533</f>
+            <f name="ctag">NE</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_45" from="275" to="276">
+      <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="276" to="282">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Bild</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_47" from="282" to="283">
+      <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_48" from="284" to="287">
+      <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_49" from="288" to="293">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Erich</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NE</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_50" from="294" to="298">
+      <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.991902</f>
+            <f name="ctag">NE</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_51" from="299" to="300">
+      <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_52" from="300" to="313">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Schriftbild</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_53" from="314" to="317">
+      <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_54" from="318" to="331">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Kalligraphie</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_55" from="331" to="332">
+      <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_56" from="333" to="335">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">im</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">APPRART</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_57" from="336" to="345">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Schulhaus</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_58" from="346" to="357">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Sonnenhügel</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_59" from="358" to="363">
+      <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.997391</f>
+            <f name="ctag">PTKVZ</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_60" from="363" to="364">
+      <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_61" from="365" to="368">
+      <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_62" from="369" to="372">
+      <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.999158</f>
+            <f name="ctag">ART</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_63" from="373" to="385">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">musikalisch</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">ADJA</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_64" from="386" to="395">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Umrahmung</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_65" from="396" to="402">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">sorgen</f>
+            <f name="certainty">0.895363</f>
+            <f name="ctag">VVFIN</f>
+          </fs>
+        </f>
+        <f name="lex">
+          <fs>
+            <f name="lemma">sorgen</f>
+            <f name="certainty">0.104637</f>
+            <f name="ctag">VVINF</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_66" from="403" to="409">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Martin</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NE</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_67" from="410" to="416">
+      <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.989970</f>
+            <f name="ctag">NE</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_68" from="417" to="420">
+      <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_69" from="421" to="425">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Jiri</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NE</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_70" from="426" to="432">
+      <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.947131</f>
+            <f name="ctag">NE</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_71" from="432" to="433">
+      <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_72" from="434" to="445">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">einführend</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">ADJA</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_73" from="446" to="451">
+      <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_74" from="452" to="459">
+      <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">VVFIN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_75" from="460" to="465">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Bruno</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NE</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_76" from="466" to="476">
+      <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.995832</f>
+            <f name="ctag">NE</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_77" from="476" to="477">
+      <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_78" from="478" to="481">
+      <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.996900</f>
+            <f name="ctag">ART</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_79" from="482" to="493">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Ausstellung</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_80" from="494" to="500">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">dauern</f>
+            <f name="certainty">0.999690</f>
+            <f name="ctag">VVFIN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_81" from="501" to="504">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">bis</f>
+            <f name="certainty">0.575236</f>
+            <f name="ctag">APPR</f>
+          </fs>
+        </f>
+        <f name="lex">
+          <fs>
+            <f name="lemma">bis</f>
+            <f name="certainty">0.384771</f>
+            <f name="ctag">KON</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_82" from="505" to="507">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">am</f>
+            <f name="certainty">0.990760</f>
+            <f name="ctag">APPRART</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_83" from="508" to="511">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">14.</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">ADJA</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_84" from="512" to="517">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">April</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_85" from="518" to="521">
+      <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_86" from="522" to="525">
+      <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_87" from="526" to="528">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">am</f>
+            <f name="certainty">0.989657</f>
+            <f name="ctag">APPRART</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_88" from="529" to="536">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Samstag</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_89" from="537" to="540">
+      <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_90" from="541" to="548">
+      <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.982945</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_91" from="549" to="552">
+      <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.999754</f>
+            <f name="ctag">APPR</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_92" from="553" to="558">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">@card@</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">CARD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_93" from="559" to="562">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">bis</f>
+            <f name="certainty">0.793874</f>
+            <f name="ctag">APPR</f>
+          </fs>
+        </f>
+        <f name="lex">
+          <fs>
+            <f name="lemma">bis</f>
+            <f name="certainty">0.202318</f>
+            <f name="ctag">KON</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_94" from="563" to="568">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">@card@</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">CARD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_95" from="569" to="572">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Uhr</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_96" from="573" to="578">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">sowie</f>
+            <f name="certainty">0.999994</f>
+            <f name="ctag">KON</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_97" from="579" to="585">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Montag</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_98" from="586" to="589">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">bis</f>
+            <f name="certainty">0.752518</f>
+            <f name="ctag">APPR</f>
+          </fs>
+        </f>
+        <f name="lex">
+          <fs>
+            <f name="lemma">bis</f>
+            <f name="certainty">0.246045</f>
+            <f name="ctag">KON</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_99" from="590" to="597">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Freitag</f>
+            <f name="certainty">0.989125</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_100" from="598" to="601">
+      <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.999770</f>
+            <f name="ctag">APPR</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_101" from="602" to="607">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">@card@</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">CARD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_102" from="608" to="611">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">bis</f>
+            <f name="certainty">0.522536</f>
+            <f name="ctag">APPR</f>
+          </fs>
+        </f>
+        <f name="lex">
+          <fs>
+            <f name="lemma">bis</f>
+            <f name="certainty">0.471828</f>
+            <f name="ctag">KON</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_103" from="612" to="620">
+      <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.995135</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_104" from="621" to="629">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">öffnen</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">VVPP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_105" from="629" to="630">
+      <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_106" from="630" to="632">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">pd</f>
+            <f name="certainty">0.847084</f>
+            <f name="ctag">NE</f>
+          </fs>
+        </f>
+        <f name="lex">
+          <fs>
+            <f name="lemma">pd</f>
+            <f name="certainty">0.115084</f>
+            <f name="ctag">XY</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_107" 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_108" from="634" to="642">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Mutation</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_109" from="643" to="658">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Sektionschefamt</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_110" from="659" to="663">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Wald</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_111" from="663" to="664">
+      <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="665" to="668">
+      <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.996900</f>
+            <f name="ctag">ART</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_113" from="669" to="689">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Sicherheitsdirektion</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_114" from="690" to="695">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">teilen</f>
+            <f name="certainty">0.999690</f>
+            <f name="ctag">VVFIN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_115" from="696" to="699">
+      <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.867766</f>
+            <f name="ctag">PTKVZ</f>
+          </fs>
+        </f>
+        <f name="lex">
+          <fs>
+            <f name="lemma">mit</f>
+            <f name="certainty">0.132234</f>
+            <f name="ctag">APPR</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_116" from="699" to="700">
+      <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_117" from="701" to="705">
+      <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_118" from="706" to="713">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Philipp</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NE</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_119" from="714" to="724">
+      <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.991979</f>
+            <f name="ctag">NE</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_120" from="725" to="729">
+      <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.831063</f>
+            <f name="ctag">PPOSAT</f>
+          </fs>
+        </f>
+        <f name="lex">
+          <fs>
+            <f name="lemma">sein</f>
+            <f name="certainty">0.168937</f>
+            <f name="ctag">VAINF</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_121" from="730" to="747">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Arbeitsverhältnis</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_122" from="748" to="751">
+      <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.994678</f>
+            <f name="ctag">APPR</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_123" from="752" to="755">
+      <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.999692</f>
+            <f name="ctag">ART</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_124" from="756" to="774">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Gemeindeverwaltung</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_125" from="775" to="784">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">kündigen</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">VVPP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_126" from="785" to="788">
+      <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_127" from="788" to="789">
+      <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_128" from="790" to="793">
+      <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_129" from="794" to="797">
+      <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.999158</f>
+            <f name="ctag">ART</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_130" from="798" to="802">
+      <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_131" from="803" to="806">
+      <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_132" from="807" to="816">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">angenehm</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">ADJA</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_133" from="817" to="826">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Mitarbeit</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_134" from="827" to="831">
+      <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_135" from="832" to="835">
+      <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_136" from="836" to="839">
+      <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.999101</f>
+            <f name="ctag">ART</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_137" from="840" to="845">
+      <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_138" from="846" to="850">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Dank</f>
+            <f name="certainty">0.991133</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_139" from="851" to="864">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">aussprechen</f>
+            <f name="certainty">0.961267</f>
+            <f name="ctag">VVPP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_140" from="864" to="865">
+      <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_141" from="866" to="869">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">zur</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">APPRART</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_142" from="870" to="875">
+      <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_143" from="876" to="892">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Stelleninhaberin</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_144" from="893" to="898">
+      <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_145" from="899" to="902">
+      <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.978403</f>
+            <f name="ctag">APPR</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_146" from="903" to="909">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Antrag</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_147" from="910" to="913">
+      <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_148" from="914" to="927">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Gemeinderat</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_149" from="928" to="935">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Rebecca</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NE</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_150" from="936" to="947">
+      <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.607240</f>
+            <f name="ctag">NE</f>
+          </fs>
+        </f>
+        <f name="lex">
+          <fs>
+            <f name="lemma">UNKNOWN</f>
+            <f name="certainty">0.391693</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_151" from="947" to="948">
+      <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_152" from="949" to="957">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Jahrgang</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_153" from="958" to="962">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">1976</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">CARD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_154" from="962" to="963">
+      <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_155" from="964" to="986">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Verwaltungsangestellte</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_156" from="986" to="987">
+      <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_157" from="988" to="995">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Berneck</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NE</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_158" from="995" to="996">
+      <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="997" to="1004">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">wählen</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">VVPP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_160" from="1004" to="1005">
+      <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_161" from="1005" to="1007">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">pd</f>
+            <f name="certainty">0.847084</f>
+            <f name="ctag">NE</f>
+          </fs>
+        </f>
+        <f name="lex">
+          <fs>
+            <f name="lemma">pd</f>
+            <f name="certainty">0.115084</f>
+            <f name="ctag">XY</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_162" from="1007" to="1008">
+      <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="1009" to="1025">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Aufsteckfrisur</f>
+            <f name="certainty">0.944479</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_164" from="1026" to="1029">
+      <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_165" from="1030" to="1036">
+      <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_166" from="1037" to="1049">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Walzenhausen</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_167" from="1049" to="1050">
+      <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_168" from="1051" to="1054">
+      <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.965808</f>
+            <f name="ctag">ART</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_169" from="1055" to="1056">
+      <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_170" from="1056" to="1064">
+      <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.985319</f>
+            <f name="ctag">NE</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_171" from="1065" to="1070">
+      <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.991382</f>
+            <f name="ctag">NE</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_172" from="1070" to="1071">
+      <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_173" from="1072" to="1076">
+      <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 id="s_174" from="1077" to="1079">
+      <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.912020</f>
+            <f name="ctag">APPR</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_175" from="1080" to="1085">
+      <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.999072</f>
+            <f name="ctag">ART</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_176" from="1086" to="1090">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Kurs</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_177" from="1091" to="1094">
+      <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.985013</f>
+            <f name="ctag">PTKVZ</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_178" from="1094" to="1095">
+      <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="1096" to="1098">
+      <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_180" from="1099" to="1102">
+      <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.996442</f>
+            <f name="ctag">ART</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_181" from="1103" to="1109">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Sabine</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NE</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_182" from="1110" to="1122">
+      <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.977335</f>
+            <f name="ctag">NE</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_183" from="1123" to="1129">
+      <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.623150</f>
+            <f name="ctag">VVFIN</f>
+          </fs>
+        </f>
+        <f name="lex">
+          <fs>
+            <f name="lemma">zeigen</f>
+            <f name="certainty">0.376850</f>
+            <f name="ctag">VVINF</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_184" from="1130" to="1134">
+      <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_185" from="1134" to="1135">
+      <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_186" from="1136" to="1139">
+      <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.830185</f>
+            <f name="ctag">KOUS</f>
+          </fs>
+        </f>
+        <f name="lex">
+          <fs>
+            <f name="lemma">wie</f>
+            <f name="certainty">0.165213</f>
+            <f name="ctag">KOKOM</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_187" from="1140" to="1143">
+      <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_188" from="1144" to="1152">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">modisch</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">ADJA</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_189" from="1153" to="1156">
+      <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_190" from="1157" to="1168">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">raffiniert</f>
+            <f name="certainty">0.734158</f>
+            <f name="ctag">ADJA</f>
+          </fs>
+        </f>
+        <f name="lex">
+          <fs>
+            <f name="lemma">raffinieren</f>
+            <f name="certainty">0.265842</f>
+            <f name="ctag">VVFIN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_191" from="1169" to="1178">
+      <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.896563</f>
+            <f name="ctag">TRUNC</f>
+          </fs>
+        </f>
+        <f name="lex">
+          <fs>
+            <f name="lemma">UNKNOWN</f>
+            <f name="certainty">0.102464</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_192" from="1179" to="1182">
+      <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_193" from="1183" to="1195">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Zopffrisur</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_194" from="1196" to="1199">
+      <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_195" from="1200" to="1207">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Mädchen</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_196" from="1208" to="1214">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">machen</f>
+            <f name="certainty">0.983381</f>
+            <f name="ctag">VVINF</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_197" from="1215" to="1219">
+      <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_198" from="1219" to="1220">
+      <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_199" from="1221" to="1224">
+      <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.996900</f>
+            <f name="ctag">ART</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_200" from="1225" to="1237">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Anmeldefrist</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_201" from="1238" to="1243">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">laufen</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">VVFIN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_202" from="1244" to="1247">
+      <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_203" from="1248" to="1252">
+      <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.996029</f>
+            <f name="ctag">ADV</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_204" from="1253" to="1258">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">heute</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">ADV</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_205" from="1259" to="1262">
+      <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.998882</f>
+            <f name="ctag">APPR</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_206" from="1263" to="1268">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Julia</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NE</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_207" from="1269" to="1274">
+      <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.994350</f>
+            <f name="ctag">NE</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_208" from="1274" to="1275">
+      <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_209" from="1276" to="1280">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Tel.</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_210" from="1281" to="1284">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">@card@</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">CARD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_211" from="1285" to="1287">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">59</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">CARD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_212" from="1288" to="1291">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">@ord@</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">ADJA</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_213" from="1292" to="1295">
+      <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.998766</f>
+            <f name="ctag">ART</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_214" from="1296" to="1310">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Teilnehmerzahl</f>
+            <f name="certainty">1.000000</f>
+            <f name="ctag">NN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_215" from="1311" to="1314">
+      <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_216" from="1315" to="1323">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">begrenzt</f>
+            <f name="certainty">0.973605</f>
+            <f name="ctag">ADJD</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_217" from="1323" to="1324">
+      <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_218" from="1324" to="1326">
+      <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
+        <f name="lex">
+          <fs>
+            <f name="lemma">pd</f>
+            <f name="certainty">0.847084</f>
+            <f name="ctag">NE</f>
+          </fs>
+        </f>
+        <f name="lex">
+          <fs>
+            <f name="lemma">pd</f>
+            <f name="certainty">0.115084</f>
+            <f name="ctag">XY</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s_219" from="1326" to="1327">
+      <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/A01/13047/tree_tagger/sentences.xml b/t/A01/13047/tree_tagger/sentences.xml
new file mode 100644
index 0000000..cc45766
--- /dev/null
+++ b/t/A01/13047/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="A01_APR.13047">
+  <spanList>
+    <span from="0" to="1327" />
+  </spanList>
+</layer>
diff --git a/t/A01/13047/tree_tagger/tokens.xml b/t/A01/13047/tree_tagger/tokens.xml
new file mode 100644
index 0000000..f23c68b
--- /dev/null
+++ b/t/A01/13047/tree_tagger/tokens.xml
@@ -0,0 +1,227 @@
+<?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="A01_APR.13047">
+  <spanList>
+    <span id="s_0" from="0" to="7" />
+    <span id="s_1" from="8" to="11" />
+    <span id="s_2" from="12" to="16" />
+    <span id="s_3" from="17" to="19" />
+    <span id="s_4" from="20" to="31" />
+    <span id="s_5" from="32" to="41" />
+    <span id="s_6" from="41" to="42" />
+    <span id="s_7" from="43" to="46" />
+    <span id="s_8" from="47" to="54" />
+    <span id="s_9" from="55" to="66" />
+    <span id="s_10" from="67" to="73" />
+    <span id="s_11" from="74" to="78" />
+    <span id="s_12" from="79" to="82" />
+    <span id="s_13" from="83" to="90" />
+    <span id="s_14" from="91" to="94" />
+    <span id="s_15" from="95" to="106" />
+    <span id="s_16" from="107" to="116" />
+    <span id="s_17" from="117" to="120" />
+    <span id="s_18" from="120" to="121" />
+    <span id="s_19" from="122" to="127" />
+    <span id="s_20" from="128" to="131" />
+    <span id="s_21" from="132" to="139" />
+    <span id="s_22" from="140" to="144" />
+    <span id="s_23" from="145" to="154" />
+    <span id="s_24" from="155" to="166" />
+    <span id="s_25" from="167" to="171" />
+    <span id="s_26" from="171" to="172" />
+    <span id="s_27" from="173" to="175" />
+    <span id="s_28" from="176" to="185" />
+    <span id="s_29" from="186" to="193" />
+    <span id="s_30" from="193" to="194" />
+    <span id="s_31" from="195" to="197" />
+    <span id="s_32" from="198" to="203" />
+    <span id="s_33" from="203" to="204" />
+    <span id="s_34" from="205" to="211" />
+    <span id="s_35" from="212" to="214" />
+    <span id="s_36" from="215" to="220" />
+    <span id="s_37" from="221" to="224" />
+    <span id="s_38" from="225" to="228" />
+    <span id="s_39" from="229" to="239" />
+    <span id="s_40" from="240" to="243" />
+    <span id="s_41" from="244" to="255" />
+    <span id="s_42" from="256" to="259" />
+    <span id="s_43" from="260" to="266" />
+    <span id="s_44" from="267" to="274" />
+    <span id="s_45" from="275" to="276" />
+    <span id="s_46" from="276" to="282" />
+    <span id="s_47" from="282" to="283" />
+    <span id="s_48" from="284" to="287" />
+    <span id="s_49" from="288" to="293" />
+    <span id="s_50" from="294" to="298" />
+    <span id="s_51" from="299" to="300" />
+    <span id="s_52" from="300" to="313" />
+    <span id="s_53" from="314" to="317" />
+    <span id="s_54" from="318" to="331" />
+    <span id="s_55" from="331" to="332" />
+    <span id="s_56" from="333" to="335" />
+    <span id="s_57" from="336" to="345" />
+    <span id="s_58" from="346" to="357" />
+    <span id="s_59" from="358" to="363" />
+    <span id="s_60" from="363" to="364" />
+    <span id="s_61" from="365" to="368" />
+    <span id="s_62" from="369" to="372" />
+    <span id="s_63" from="373" to="385" />
+    <span id="s_64" from="386" to="395" />
+    <span id="s_65" from="396" to="402" />
+    <span id="s_66" from="403" to="409" />
+    <span id="s_67" from="410" to="416" />
+    <span id="s_68" from="417" to="420" />
+    <span id="s_69" from="421" to="425" />
+    <span id="s_70" from="426" to="432" />
+    <span id="s_71" from="432" to="433" />
+    <span id="s_72" from="434" to="445" />
+    <span id="s_73" from="446" to="451" />
+    <span id="s_74" from="452" to="459" />
+    <span id="s_75" from="460" to="465" />
+    <span id="s_76" from="466" to="476" />
+    <span id="s_77" from="476" to="477" />
+    <span id="s_78" from="478" to="481" />
+    <span id="s_79" from="482" to="493" />
+    <span id="s_80" from="494" to="500" />
+    <span id="s_81" from="501" to="504" />
+    <span id="s_82" from="505" to="507" />
+    <span id="s_83" from="508" to="511" />
+    <span id="s_84" from="512" to="517" />
+    <span id="s_85" from="518" to="521" />
+    <span id="s_86" from="522" to="525" />
+    <span id="s_87" from="526" to="528" />
+    <span id="s_88" from="529" to="536" />
+    <span id="s_89" from="537" to="540" />
+    <span id="s_90" from="541" to="548" />
+    <span id="s_91" from="549" to="552" />
+    <span id="s_92" from="553" to="558" />
+    <span id="s_93" from="559" to="562" />
+    <span id="s_94" from="563" to="568" />
+    <span id="s_95" from="569" to="572" />
+    <span id="s_96" from="573" to="578" />
+    <span id="s_97" from="579" to="585" />
+    <span id="s_98" from="586" to="589" />
+    <span id="s_99" from="590" to="597" />
+    <span id="s_100" from="598" to="601" />
+    <span id="s_101" from="602" to="607" />
+    <span id="s_102" from="608" to="611" />
+    <span id="s_103" from="612" to="620" />
+    <span id="s_104" from="621" to="629" />
+    <span id="s_105" from="629" to="630" />
+    <span id="s_106" from="630" to="632" />
+    <span id="s_107" from="632" to="633" />
+    <span id="s_108" from="634" to="642" />
+    <span id="s_109" from="643" to="658" />
+    <span id="s_110" from="659" to="663" />
+    <span id="s_111" from="663" to="664" />
+    <span id="s_112" from="665" to="668" />
+    <span id="s_113" from="669" to="689" />
+    <span id="s_114" from="690" to="695" />
+    <span id="s_115" from="696" to="699" />
+    <span id="s_116" from="699" to="700" />
+    <span id="s_117" from="701" to="705" />
+    <span id="s_118" from="706" to="713" />
+    <span id="s_119" from="714" to="724" />
+    <span id="s_120" from="725" to="729" />
+    <span id="s_121" from="730" to="747" />
+    <span id="s_122" from="748" to="751" />
+    <span id="s_123" from="752" to="755" />
+    <span id="s_124" from="756" to="774" />
+    <span id="s_125" from="775" to="784" />
+    <span id="s_126" from="785" to="788" />
+    <span id="s_127" from="788" to="789" />
+    <span id="s_128" from="790" to="793" />
+    <span id="s_129" from="794" to="797" />
+    <span id="s_130" from="798" to="802" />
+    <span id="s_131" from="803" to="806" />
+    <span id="s_132" from="807" to="816" />
+    <span id="s_133" from="817" to="826" />
+    <span id="s_134" from="827" to="831" />
+    <span id="s_135" from="832" to="835" />
+    <span id="s_136" from="836" to="839" />
+    <span id="s_137" from="840" to="845" />
+    <span id="s_138" from="846" to="850" />
+    <span id="s_139" from="851" to="864" />
+    <span id="s_140" from="864" to="865" />
+    <span id="s_141" from="866" to="869" />
+    <span id="s_142" from="870" to="875" />
+    <span id="s_143" from="876" to="892" />
+    <span id="s_144" from="893" to="898" />
+    <span id="s_145" from="899" to="902" />
+    <span id="s_146" from="903" to="909" />
+    <span id="s_147" from="910" to="913" />
+    <span id="s_148" from="914" to="927" />
+    <span id="s_149" from="928" to="935" />
+    <span id="s_150" from="936" to="947" />
+    <span id="s_151" from="947" to="948" />
+    <span id="s_152" from="949" to="957" />
+    <span id="s_153" from="958" to="962" />
+    <span id="s_154" from="962" to="963" />
+    <span id="s_155" from="964" to="986" />
+    <span id="s_156" from="986" to="987" />
+    <span id="s_157" from="988" to="995" />
+    <span id="s_158" from="995" to="996" />
+    <span id="s_159" from="997" to="1004" />
+    <span id="s_160" from="1004" to="1005" />
+    <span id="s_161" from="1005" to="1007" />
+    <span id="s_162" from="1007" to="1008" />
+    <span id="s_163" from="1009" to="1025" />
+    <span id="s_164" from="1026" to="1029" />
+    <span id="s_165" from="1030" to="1036" />
+    <span id="s_166" from="1037" to="1049" />
+    <span id="s_167" from="1049" to="1050" />
+    <span id="s_168" from="1051" to="1054" />
+    <span id="s_169" from="1055" to="1056" />
+    <span id="s_170" from="1056" to="1064" />
+    <span id="s_171" from="1065" to="1070" />
+    <span id="s_172" from="1070" to="1071" />
+    <span id="s_173" from="1072" to="1076" />
+    <span id="s_174" from="1077" to="1079" />
+    <span id="s_175" from="1080" to="1085" />
+    <span id="s_176" from="1086" to="1090" />
+    <span id="s_177" from="1091" to="1094" />
+    <span id="s_178" from="1094" to="1095" />
+    <span id="s_179" from="1096" to="1098" />
+    <span id="s_180" from="1099" to="1102" />
+    <span id="s_181" from="1103" to="1109" />
+    <span id="s_182" from="1110" to="1122" />
+    <span id="s_183" from="1123" to="1129" />
+    <span id="s_184" from="1130" to="1134" />
+    <span id="s_185" from="1134" to="1135" />
+    <span id="s_186" from="1136" to="1139" />
+    <span id="s_187" from="1140" to="1143" />
+    <span id="s_188" from="1144" to="1152" />
+    <span id="s_189" from="1153" to="1156" />
+    <span id="s_190" from="1157" to="1168" />
+    <span id="s_191" from="1169" to="1178" />
+    <span id="s_192" from="1179" to="1182" />
+    <span id="s_193" from="1183" to="1195" />
+    <span id="s_194" from="1196" to="1199" />
+    <span id="s_195" from="1200" to="1207" />
+    <span id="s_196" from="1208" to="1214" />
+    <span id="s_197" from="1215" to="1219" />
+    <span id="s_198" from="1219" to="1220" />
+    <span id="s_199" from="1221" to="1224" />
+    <span id="s_200" from="1225" to="1237" />
+    <span id="s_201" from="1238" to="1243" />
+    <span id="s_202" from="1244" to="1247" />
+    <span id="s_203" from="1248" to="1252" />
+    <span id="s_204" from="1253" to="1258" />
+    <span id="s_205" from="1259" to="1262" />
+    <span id="s_206" from="1263" to="1268" />
+    <span id="s_207" from="1269" to="1274" />
+    <span id="s_208" from="1274" to="1275" />
+    <span id="s_209" from="1276" to="1280" />
+    <span id="s_210" from="1281" to="1284" />
+    <span id="s_211" from="1285" to="1287" />
+    <span id="s_212" from="1288" to="1291" />
+    <span id="s_213" from="1292" to="1295" />
+    <span id="s_214" from="1296" to="1310" />
+    <span id="s_215" from="1311" to="1314" />
+    <span id="s_216" from="1315" to="1323" />
+    <span id="s_217" from="1323" to="1324" />
+    <span id="s_218" from="1324" to="1326" />
+    <span id="s_219" from="1326" to="1327" />
+  </spanList>
+</layer>
diff --git a/t/A01/13047/xip/constituency.xml b/t/A01/13047/xip/constituency.xml
new file mode 100644
index 0000000..d5339c0
--- /dev/null
+++ b/t/A01/13047/xip/constituency.xml
@@ -0,0 +1,2759 @@
+<?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="A01_APR.13047">
+  <spanList>
+    <span id="s1_n14" from="0" to="43">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">TOP</f>
+      </fs>
+      <rel label="dominates" target="s1_n19" />
+      <rel label="dominates" uri="morpho.xml#s1_n2" />
+      <rel label="dominates" target="s1_n20" />
+      <rel label="dominates" target="s1_n23" />
+      <rel label="dominates" target="s1_n22" />
+      <rel label="dominates" uri="morpho.xml#s1_n12" />
+    </span>
+    <span id="s1_n19" from="0" to="7">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s1_n15" />
+    </span>
+    <span id="s1_n15" from="0" to="7">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s1_n0" />
+    </span>
+    <span id="s1_n0" from="0" to="7">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s1_n2" from="8" to="11">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">CONJ</f>
+      </fs>
+    </span>
+    <span id="s1_n20" from="12" to="16">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s1_n16" />
+    </span>
+    <span id="s1_n16" from="12" to="16">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s1_n4" />
+    </span>
+    <span id="s1_n4" from="12" to="16">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s1_n23" from="17" to="32">
+      <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_n6" />
+      <rel label="dominates" target="s1_n21" />
+    </span>
+    <span id="s1_n6" from="17" to="19">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PREP</f>
+      </fs>
+    </span>
+    <span id="s1_n21" from="20" to="32">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s1_n17" />
+    </span>
+    <span id="s1_n17" from="20" to="32">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s1_n8" />
+    </span>
+    <span id="s1_n8" from="20" to="32">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s1_n22" from="33" 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_n18" />
+    </span>
+    <span id="s1_n18" from="33" to="42">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s1_n10" />
+    </span>
+    <span id="s1_n10" from="33" to="42">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s1_n12" from="42" to="43">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PUNCT</f>
+      </fs>
+    </span>
+    <span id="s2_n40" from="44" to="174">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">TOP</f>
+      </fs>
+      <rel label="dominates" target="s2_n60" />
+    </span>
+    <span id="s2_n60" from="44" to="174">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <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 id="s2_n57" from="44" to="74">
+      <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_n0" />
+      <rel label="dominates" target="s2_n53" />
+    </span>
+    <span id="s2_n0" from="44" to="47">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PREP</f>
+      </fs>
+    </span>
+    <span id="s2_n53" from="48" to="74">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s2_n43" />
+    </span>
+    <span id="s2_n43" from="48" to="74">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <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 id="s2_n41" from="48" to="55">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">AP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s2_n2" />
+    </span>
+    <span id="s2_n2" from="48" to="55">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">ADJ</f>
+      </fs>
+    </span>
+    <span id="s2_n42" from="56" to="67">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">AP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s2_n4" />
+    </span>
+    <span id="s2_n4" from="56" to="67">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">ADJ</f>
+      </fs>
+    </span>
+    <span id="s2_n6" from="68" to="74">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s2_n8" from="75" to="80">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">VERB</f>
+      </fs>
+    </span>
+    <span id="s2_n50" from="81" to="92">
+      <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_n10" />
+      <rel label="dominates" target="s2_n44" />
+    </span>
+    <span id="s2_n10" from="81" to="84">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">DET</f>
+      </fs>
+    </span>
+    <span id="s2_n44" from="85" to="92">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s2_n12" />
+    </span>
+    <span id="s2_n12" from="85" to="92">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s2_n51" from="93" to="108">
+      <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_n14" />
+      <rel label="dominates" target="s2_n45" />
+    </span>
+    <span id="s2_n14" from="93" to="96">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">DET</f>
+      </fs>
+    </span>
+    <span id="s2_n45" from="97" to="108">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s2_n16" />
+    </span>
+    <span id="s2_n16" from="97" to="108">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s2_n54" from="109" to="118">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s2_n46" />
+    </span>
+    <span id="s2_n46" from="109" to="118">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s2_n18" />
+    </span>
+    <span id="s2_n18" from="109" to="118">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s2_n20" from="119" to="122">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PTCL</f>
+      </fs>
+    </span>
+    <span id="s2_n59" from="122" to="174">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <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 id="s2_n22" from="122" to="123">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PUNCT</f>
+      </fs>
+    </span>
+    <span id="s2_n58" from="124" to="173">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <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 id="s2_n24" from="124" to="129">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">CONJ</f>
+      </fs>
+    </span>
+    <span id="s2_n52" from="130" to="141">
+      <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_n26" />
+      <rel label="dominates" target="s2_n47" />
+    </span>
+    <span id="s2_n26" from="130" to="133">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">DET</f>
+      </fs>
+    </span>
+    <span id="s2_n47" from="134" to="141">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s2_n28" />
+    </span>
+    <span id="s2_n28" from="134" to="141">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s2_n55" from="142" to="146">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s2_n48" />
+    </span>
+    <span id="s2_n48" from="142" to="146">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s2_n30" />
+    </span>
+    <span id="s2_n30" from="142" to="146">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s2_n56" from="147" to="156">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s2_n49" />
+    </span>
+    <span id="s2_n49" from="147" to="156">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s2_n32" />
+    </span>
+    <span id="s2_n32" from="147" to="156">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s2_n34" from="157" to="168">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">VERB</f>
+      </fs>
+    </span>
+    <span id="s2_n36" from="169" to="173">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">VERB</f>
+      </fs>
+    </span>
+    <span id="s2_n38" from="173" to="174">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PUNCT</f>
+      </fs>
+    </span>
+    <span id="s3_n68" from="175" to="367">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">TOP</f>
+      </fs>
+      <rel label="dominates" target="s3_n106" />
+      <rel label="dominates" target="s3_n88" />
+      <rel label="dominates" uri="morpho.xml#s3_n12" />
+      <rel label="dominates" target="s3_n105" />
+      <rel label="dominates" uri="morpho.xml#s3_n66" />
+    </span>
+    <span id="s3_n106" from="175" to="196">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">INS</f>
+      </fs>
+      <rel label="dominates" target="s3_n98" />
+      <rel label="dominates" uri="morpho.xml#s3_n6" />
+    </span>
+    <span id="s3_n98" from="175" to="195">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s3_n0" />
+      <rel label="dominates" target="s3_n87" />
+    </span>
+    <span id="s3_n0" from="175" to="177">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PREP</f>
+      </fs>
+    </span>
+    <span id="s3_n87" from="178" to="195">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s3_n74" />
+    </span>
+    <span id="s3_n74" from="178" to="195">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" target="s3_n73" />
+      <rel label="dominates" uri="morpho.xml#s3_n4" />
+    </span>
+    <span id="s3_n73" from="178" to="187">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">AP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s3_n2" />
+    </span>
+    <span id="s3_n2" from="178" to="187">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">ADJ</f>
+      </fs>
+    </span>
+    <span id="s3_n4" from="188" to="195">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s3_n6" from="195" to="196">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PUNCT</f>
+      </fs>
+    </span>
+    <span id="s3_n88" from="197" to="205">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s3_n75" />
+    </span>
+    <span id="s3_n75" from="197" to="205">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" target="s3_n70" />
+    </span>
+    <span id="s3_n70" from="197" to="205">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s3_n8" />
+      <rel label="dominates" uri="morpho.xml#s3_n10" />
+    </span>
+    <span id="s3_n8" from="197" to="199">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NUM</f>
+      </fs>
+    </span>
+    <span id="s3_n10" from="200" to="205">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s3_n12" from="205" to="206">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PUNCT</f>
+      </fs>
+    </span>
+    <span id="s3_n105" from="207" to="366">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">MC</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s3_n14" />
+      <rel label="dominates" target="s3_n99" />
+      <rel label="dominates" target="s3_n86" />
+      <rel label="dominates" target="s3_n100" />
+      <rel label="dominates" target="s3_n101" />
+      <rel label="dominates" target="s3_n103" />
+      <rel label="dominates" uri="morpho.xml#s3_n42" />
+      <rel label="dominates" target="s3_n93" />
+      <rel label="dominates" target="s3_n104" />
+      <rel label="dominates" target="s3_n102" />
+      <rel label="dominates" target="s3_n97" />
+      <rel label="dominates" uri="morpho.xml#s3_n64" />
+    </span>
+    <span id="s3_n14" from="207" to="213">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">VERB</f>
+      </fs>
+    </span>
+    <span id="s3_n99" from="214" to="226">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s3_n16" />
+      <rel label="dominates" target="s3_n89" />
+    </span>
+    <span id="s3_n16" from="214" to="216">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PREP</f>
+      </fs>
+    </span>
+    <span id="s3_n89" from="217" to="226">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s3_n76" />
+    </span>
+    <span id="s3_n76" from="217" to="226">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" target="s3_n69" />
+    </span>
+    <span id="s3_n69" from="217" to="226">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s3_n18" />
+      <rel label="dominates" uri="morpho.xml#s3_n20" />
+    </span>
+    <span id="s3_n18" from="217" to="222">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NUM</f>
+      </fs>
+    </span>
+    <span id="s3_n20" from="223" to="226">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s3_n86" from="227" to="241">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s3_n22" />
+      <rel label="dominates" target="s3_n77" />
+    </span>
+    <span id="s3_n22" from="227" to="230">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">DET</f>
+      </fs>
+    </span>
+    <span id="s3_n77" from="231" to="241">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s3_n24" />
+    </span>
+    <span id="s3_n24" from="231" to="241">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s3_n100" from="242" to="257">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s3_n26" />
+      <rel label="dominates" target="s3_n90" />
+    </span>
+    <span id="s3_n26" from="242" to="245">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PREP</f>
+      </fs>
+    </span>
+    <span id="s3_n90" from="246" to="257">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s3_n78" />
+    </span>
+    <span id="s3_n78" from="246" to="257">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s3_n28" />
+    </span>
+    <span id="s3_n28" from="246" to="257">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s3_n101" from="258" to="276">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s3_n30" />
+      <rel label="dominates" target="s3_n91" />
+    </span>
+    <span id="s3_n30" from="258" to="261">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PREP</f>
+      </fs>
+    </span>
+    <span id="s3_n91" from="262" to="276">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s3_n79" />
+    </span>
+    <span id="s3_n79" from="262" to="276">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" target="s3_n71" />
+    </span>
+    <span id="s3_n71" from="262" to="276">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s3_n32" />
+      <rel label="dominates" uri="morpho.xml#s3_n34" />
+    </span>
+    <span id="s3_n32" from="262" to="268">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s3_n34" from="269" to="276">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s3_n103" from="277" to="285">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">INS</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s3_n36" />
+      <rel label="dominates" target="s3_n92" />
+      <rel label="dominates" uri="morpho.xml#s3_n40" />
+    </span>
+    <span id="s3_n36" from="277" to="278">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PUNCT</f>
+      </fs>
+    </span>
+    <span id="s3_n92" from="278" to="284">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s3_n80" />
+    </span>
+    <span id="s3_n80" from="278" to="284">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s3_n38" />
+    </span>
+    <span id="s3_n38" from="278" to="284">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s3_n40" from="284" to="285">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PUNCT</f>
+      </fs>
+    </span>
+    <span id="s3_n42" from="286" to="289">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">CONJ</f>
+      </fs>
+    </span>
+    <span id="s3_n93" from="290" to="300">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s3_n81" />
+    </span>
+    <span id="s3_n81" from="290" to="300">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" target="s3_n72" />
+    </span>
+    <span id="s3_n72" from="290" to="300">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s3_n44" />
+      <rel label="dominates" uri="morpho.xml#s3_n46" />
+    </span>
+    <span id="s3_n44" from="290" to="295">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s3_n46" from="296" to="300">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s3_n104" from="301" to="334">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">INS</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s3_n48" />
+      <rel label="dominates" target="s3_n94" />
+      <rel label="dominates" uri="morpho.xml#s3_n52" />
+      <rel label="dominates" target="s3_n95" />
+      <rel label="dominates" uri="morpho.xml#s3_n56" />
+    </span>
+    <span id="s3_n48" from="301" to="302">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PUNCT</f>
+      </fs>
+    </span>
+    <span id="s3_n94" from="302" to="315">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s3_n82" />
+    </span>
+    <span id="s3_n82" from="302" to="315">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s3_n50" />
+    </span>
+    <span id="s3_n50" from="302" to="315">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s3_n52" from="316" to="319">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">CONJ</f>
+      </fs>
+    </span>
+    <span id="s3_n95" from="320" to="333">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s3_n83" />
+    </span>
+    <span id="s3_n83" from="320" to="333">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s3_n54" />
+    </span>
+    <span id="s3_n54" from="320" to="333">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s3_n56" from="333" to="334">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PUNCT</f>
+      </fs>
+    </span>
+    <span id="s3_n102" from="335" to="347">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s3_n58" />
+      <rel label="dominates" target="s3_n96" />
+    </span>
+    <span id="s3_n58" from="335" to="337">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PREP</f>
+      </fs>
+    </span>
+    <span id="s3_n96" from="338" to="347">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s3_n84" />
+    </span>
+    <span id="s3_n84" from="338" to="347">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s3_n60" />
+    </span>
+    <span id="s3_n60" from="338" to="347">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s3_n97" from="348" to="360">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s3_n85" />
+    </span>
+    <span id="s3_n85" from="348" to="360">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s3_n62" />
+    </span>
+    <span id="s3_n62" from="348" to="360">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s3_n64" from="361" to="366">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PTCL</f>
+      </fs>
+    </span>
+    <span id="s3_n66" from="366" to="367">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PUNCT</f>
+      </fs>
+    </span>
+    <span id="s4_n22" from="368" to="437">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">TOP</f>
+      </fs>
+      <rel label="dominates" target="s4_n33" />
+      <rel label="dominates" uri="morpho.xml#s4_n20" />
+    </span>
+    <span id="s4_n33" from="368" to="436">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">MC</f>
+      </fs>
+      <rel label="dominates" target="s4_n32" />
+      <rel label="dominates" uri="morpho.xml#s4_n8" />
+      <rel label="dominates" target="s4_n30" />
+      <rel label="dominates" uri="morpho.xml#s4_n14" />
+      <rel label="dominates" target="s4_n31" />
+    </span>
+    <span id="s4_n32" from="368" to="399">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s4_n0" />
+      <rel label="dominates" target="s4_n29" />
+    </span>
+    <span id="s4_n0" from="368" to="372">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PREP</f>
+      </fs>
+    </span>
+    <span id="s4_n29" from="373" to="399">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s4_n2" />
+      <rel label="dominates" target="s4_n26" />
+    </span>
+    <span id="s4_n2" from="373" to="376">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">DET</f>
+      </fs>
+    </span>
+    <span id="s4_n26" from="377" to="399">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" target="s4_n25" />
+      <rel label="dominates" uri="morpho.xml#s4_n6" />
+    </span>
+    <span id="s4_n25" from="377" to="389">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">AP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s4_n4" />
+    </span>
+    <span id="s4_n4" from="377" to="389">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">ADJ</f>
+      </fs>
+    </span>
+    <span id="s4_n6" from="390" to="399">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s4_n8" from="400" to="406">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">VERB</f>
+      </fs>
+    </span>
+    <span id="s4_n30" from="407" to="420">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s4_n27" />
+    </span>
+    <span id="s4_n27" from="407" to="420">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" target="s4_n23" />
+    </span>
+    <span id="s4_n23" from="407" to="420">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s4_n10" />
+      <rel label="dominates" uri="morpho.xml#s4_n12" />
+    </span>
+    <span id="s4_n10" from="407" to="413">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s4_n12" from="414" to="420">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s4_n14" from="421" to="424">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">CONJ</f>
+      </fs>
+    </span>
+    <span id="s4_n31" from="425" to="436">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s4_n28" />
+    </span>
+    <span id="s4_n28" from="425" to="436">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" target="s4_n24" />
+    </span>
+    <span id="s4_n24" from="425" to="436">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s4_n16" />
+      <rel label="dominates" uri="morpho.xml#s4_n18" />
+    </span>
+    <span id="s4_n16" from="425" to="429">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s4_n18" from="430" to="436">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s4_n20" from="436" to="437">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PUNCT</f>
+      </fs>
+    </span>
+    <span id="s5_n12" from="438" to="482">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">TOP</f>
+      </fs>
+      <rel label="dominates" target="s5_n19" />
+      <rel label="dominates" uri="morpho.xml#s5_n10" />
+    </span>
+    <span id="s5_n19" from="438" to="481">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">MC</f>
+      </fs>
+      <rel label="dominates" target="s5_n17" />
+      <rel label="dominates" uri="morpho.xml#s5_n4" />
+      <rel label="dominates" target="s5_n18" />
+    </span>
+    <span id="s5_n17" from="438" to="456">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s5_n15" />
+    </span>
+    <span id="s5_n15" from="438" to="456">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" target="s5_n14" />
+      <rel label="dominates" uri="morpho.xml#s5_n2" />
+    </span>
+    <span id="s5_n14" from="438" to="450">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">AP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s5_n0" />
+    </span>
+    <span id="s5_n0" from="438" to="450">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">ADJ</f>
+      </fs>
+    </span>
+    <span id="s5_n2" from="451" to="456">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s5_n4" from="457" to="464">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">VERB</f>
+      </fs>
+    </span>
+    <span id="s5_n18" from="465" to="481">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s5_n16" />
+    </span>
+    <span id="s5_n16" from="465" to="481">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" target="s5_n13" />
+    </span>
+    <span id="s5_n13" from="465" to="481">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s5_n6" />
+      <rel label="dominates" uri="morpho.xml#s5_n8" />
+    </span>
+    <span id="s5_n6" from="465" to="470">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s5_n8" from="471" to="481">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s5_n10" from="481" to="482">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PUNCT</f>
+      </fs>
+    </span>
+    <span id="s6_n56" from="483" to="639">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">TOP</f>
+      </fs>
+      <rel label="dominates" target="s6_n92" />
+      <rel label="dominates" uri="morpho.xml#s6_n6" />
+      <rel label="dominates" target="s6_n93" />
+      <rel label="dominates" uri="morpho.xml#s6_n54" />
+    </span>
+    <span id="s6_n92" from="483" to="505">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">MC</f>
+      </fs>
+      <rel label="dominates" target="s6_n74" />
+      <rel label="dominates" uri="morpho.xml#s6_n4" />
+    </span>
+    <span id="s6_n74" from="483" to="498">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s6_n0" />
+      <rel label="dominates" target="s6_n63" />
+    </span>
+    <span id="s6_n0" from="483" to="486">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">DET</f>
+      </fs>
+    </span>
+    <span id="s6_n63" from="487" to="498">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s6_n2" />
+    </span>
+    <span id="s6_n2" from="487" to="498">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s6_n4" from="499" to="505">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">VERB</f>
+      </fs>
+    </span>
+    <span id="s6_n6" from="506" to="509">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PREP</f>
+      </fs>
+    </span>
+    <span id="s6_n93" from="510" to="638">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">MC</f>
+      </fs>
+      <rel label="dominates" target="s6_n85" />
+      <rel label="dominates" uri="morpho.xml#s6_n14" />
+      <rel label="dominates" uri="morpho.xml#s6_n16" />
+      <rel label="dominates" target="s6_n86" />
+      <rel label="dominates" uri="morpho.xml#s6_n22" />
+      <rel label="dominates" target="s6_n77" />
+      <rel label="dominates" target="s6_n87" />
+      <rel label="dominates" target="s6_n88" />
+      <rel label="dominates" uri="morpho.xml#s6_n36" />
+      <rel label="dominates" target="s6_n80" />
+      <rel label="dominates" target="s6_n89" />
+      <rel label="dominates" target="s6_n90" />
+      <rel label="dominates" target="s6_n91" />
+      <rel label="dominates" target="s6_n84" />
+    </span>
+    <span id="s6_n85" from="510" to="522">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s6_n8" />
+      <rel label="dominates" target="s6_n75" />
+    </span>
+    <span id="s6_n8" from="510" to="512">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PREP</f>
+      </fs>
+    </span>
+    <span id="s6_n75" from="513" to="522">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s6_n64" />
+    </span>
+    <span id="s6_n64" from="513" to="522">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" target="s6_n61" />
+    </span>
+    <span id="s6_n61" from="513" to="522">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s6_n10" />
+      <rel label="dominates" uri="morpho.xml#s6_n12" />
+    </span>
+    <span id="s6_n10" from="513" to="516">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NUM</f>
+      </fs>
+    </span>
+    <span id="s6_n12" from="517" to="522">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s6_n14" from="523" to="526">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">CONJ</f>
+      </fs>
+    </span>
+    <span id="s6_n16" from="527" to="530">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">VERB</f>
+      </fs>
+    </span>
+    <span id="s6_n86" from="531" to="541">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s6_n18" />
+      <rel label="dominates" target="s6_n76" />
+    </span>
+    <span id="s6_n18" from="531" to="533">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PREP</f>
+      </fs>
+    </span>
+    <span id="s6_n76" from="534" to="541">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s6_n65" />
+    </span>
+    <span id="s6_n65" from="534" to="541">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s6_n20" />
+    </span>
+    <span id="s6_n20" from="534" to="541">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s6_n22" from="542" to="545">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">CONJ</f>
+      </fs>
+    </span>
+    <span id="s6_n77" from="546" to="553">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s6_n66" />
+    </span>
+    <span id="s6_n66" from="546" to="553">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s6_n24" />
+    </span>
+    <span id="s6_n24" from="546" to="553">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s6_n87" from="554" to="563">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s6_n26" />
+      <rel label="dominates" target="s6_n78" />
+    </span>
+    <span id="s6_n26" from="554" to="557">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PREP</f>
+      </fs>
+    </span>
+    <span id="s6_n78" from="558" to="563">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s6_n67" />
+    </span>
+    <span id="s6_n67" from="558" to="563">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" target="s6_n57" />
+    </span>
+    <span id="s6_n57" from="558" to="563">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s6_n28" />
+    </span>
+    <span id="s6_n28" from="558" to="563">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NUM</f>
+      </fs>
+    </span>
+    <span id="s6_n88" from="564" to="577">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s6_n30" />
+      <rel label="dominates" target="s6_n79" />
+    </span>
+    <span id="s6_n30" from="564" to="567">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PREP</f>
+      </fs>
+    </span>
+    <span id="s6_n79" from="568" to="577">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s6_n68" />
+    </span>
+    <span id="s6_n68" from="568" to="577">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" target="s6_n58" />
+    </span>
+    <span id="s6_n58" from="568" to="577">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s6_n32" />
+      <rel label="dominates" uri="morpho.xml#s6_n34" />
+    </span>
+    <span id="s6_n32" from="568" to="573">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NUM</f>
+      </fs>
+    </span>
+    <span id="s6_n34" from="574" to="577">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s6_n36" from="578" to="583">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">CONJ</f>
+      </fs>
+    </span>
+    <span id="s6_n80" from="584" to="590">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s6_n69" />
+    </span>
+    <span id="s6_n69" from="584" to="590">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s6_n38" />
+    </span>
+    <span id="s6_n38" from="584" to="590">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s6_n89" from="591" to="602">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s6_n40" />
+      <rel label="dominates" target="s6_n81" />
+    </span>
+    <span id="s6_n40" from="591" to="594">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PREP</f>
+      </fs>
+    </span>
+    <span id="s6_n81" from="595" to="602">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s6_n70" />
+    </span>
+    <span id="s6_n70" from="595" to="602">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s6_n42" />
+    </span>
+    <span id="s6_n42" from="595" to="602">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s6_n90" from="603" to="612">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s6_n44" />
+      <rel label="dominates" target="s6_n82" />
+    </span>
+    <span id="s6_n44" from="603" to="606">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PREP</f>
+      </fs>
+    </span>
+    <span id="s6_n82" from="607" to="612">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s6_n71" />
+    </span>
+    <span id="s6_n71" from="607" to="612">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" target="s6_n59" />
+    </span>
+    <span id="s6_n59" from="607" to="612">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s6_n46" />
+    </span>
+    <span id="s6_n46" from="607" to="612">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NUM</f>
+      </fs>
+    </span>
+    <span id="s6_n91" from="613" to="625">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s6_n48" />
+      <rel label="dominates" target="s6_n83" />
+    </span>
+    <span id="s6_n48" from="613" to="616">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PREP</f>
+      </fs>
+    </span>
+    <span id="s6_n83" from="617" to="625">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s6_n72" />
+    </span>
+    <span id="s6_n72" from="617" to="625">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" target="s6_n60" />
+    </span>
+    <span id="s6_n60" from="617" to="625">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s6_n50" />
+    </span>
+    <span id="s6_n50" from="617" to="625">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NUM</f>
+      </fs>
+    </span>
+    <span id="s6_n84" from="626" to="638">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s6_n73" />
+    </span>
+    <span id="s6_n73" from="626" to="638">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" target="s6_n62" />
+    </span>
+    <span id="s6_n62" from="626" to="638">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s6_n52" />
+    </span>
+    <span id="s6_n52" from="626" to="638">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">SYMBOL</f>
+      </fs>
+    </span>
+    <span id="s6_n54" from="638" to="639">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PUNCT</f>
+      </fs>
+    </span>
+    <span id="s7_n8" from="640" to="670">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">TOP</f>
+      </fs>
+      <rel label="dominates" target="s7_n12" />
+      <rel label="dominates" target="s7_n13" />
+      <rel label="dominates" target="s7_n14" />
+      <rel label="dominates" uri="morpho.xml#s7_n6" />
+    </span>
+    <span id="s7_n12" from="640" to="648">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s7_n9" />
+    </span>
+    <span id="s7_n9" from="640" to="648">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s7_n0" />
+    </span>
+    <span id="s7_n0" from="640" to="648">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s7_n13" from="649" to="664">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s7_n10" />
+    </span>
+    <span id="s7_n10" from="649" to="664">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s7_n2" />
+    </span>
+    <span id="s7_n2" from="649" to="664">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s7_n14" from="665" to="669">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s7_n11" />
+    </span>
+    <span id="s7_n11" from="665" to="669">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s7_n4" />
+    </span>
+    <span id="s7_n4" from="665" to="669">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s7_n6" from="669" to="670">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PUNCT</f>
+      </fs>
+    </span>
+    <span id="s8_n32" from="671" to="797">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">TOP</f>
+      </fs>
+      <rel label="dominates" target="s8_n45" />
+    </span>
+    <span id="s8_n45" from="671" to="797">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">MC</f>
+      </fs>
+      <rel label="dominates" target="s8_n38" />
+      <rel label="dominates" uri="morpho.xml#s8_n4" />
+      <rel label="dominates" uri="morpho.xml#s8_n6" />
+      <rel label="dominates" target="s8_n44" />
+    </span>
+    <span id="s8_n38" from="671" to="695">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s8_n0" />
+      <rel label="dominates" target="s8_n34" />
+    </span>
+    <span id="s8_n0" from="671" to="674">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">DET</f>
+      </fs>
+    </span>
+    <span id="s8_n34" from="675" to="695">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s8_n2" />
+    </span>
+    <span id="s8_n2" from="675" to="695">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s8_n4" from="696" to="701">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">VERB</f>
+      </fs>
+    </span>
+    <span id="s8_n6" from="702" to="705">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PTCL</f>
+      </fs>
+    </span>
+    <span id="s8_n44" from="705" to="797">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">INS</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s8_n8" />
+      <rel label="dominates" target="s8_n43" />
+      <rel label="dominates" uri="morpho.xml#s8_n30" />
+    </span>
+    <span id="s8_n8" from="705" to="706">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PUNCT</f>
+      </fs>
+    </span>
+    <span id="s8_n43" from="707" to="796">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">SC</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s8_n10" />
+      <rel label="dominates" target="s8_n41" />
+      <rel label="dominates" target="s8_n39" />
+      <rel label="dominates" target="s8_n42" />
+      <rel label="dominates" uri="morpho.xml#s8_n26" />
+      <rel label="dominates" uri="morpho.xml#s8_n28" />
+    </span>
+    <span id="s8_n10" from="707" to="711">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">CONJ</f>
+      </fs>
+    </span>
+    <span id="s8_n41" from="712" to="730">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s8_n35" />
+    </span>
+    <span id="s8_n35" from="712" to="730">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" target="s8_n33" />
+    </span>
+    <span id="s8_n33" from="712" to="730">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s8_n12" />
+      <rel label="dominates" uri="morpho.xml#s8_n14" />
+    </span>
+    <span id="s8_n12" from="712" to="719">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s8_n14" from="720" to="730">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s8_n39" from="731" to="754">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s8_n16" />
+      <rel label="dominates" target="s8_n36" />
+    </span>
+    <span id="s8_n16" from="731" to="735">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">DET</f>
+      </fs>
+    </span>
+    <span id="s8_n36" from="736" to="754">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s8_n18" />
+    </span>
+    <span id="s8_n18" from="736" to="754">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s8_n42" from="755" to="781">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s8_n20" />
+      <rel label="dominates" target="s8_n40" />
+    </span>
+    <span id="s8_n20" from="755" to="758">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PREP</f>
+      </fs>
+    </span>
+    <span id="s8_n40" from="759" to="781">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s8_n22" />
+      <rel label="dominates" target="s8_n37" />
+    </span>
+    <span id="s8_n22" from="759" to="762">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">DET</f>
+      </fs>
+    </span>
+    <span id="s8_n37" from="763" to="781">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s8_n24" />
+    </span>
+    <span id="s8_n24" from="763" to="781">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s8_n26" from="782" to="792">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">VERB</f>
+      </fs>
+    </span>
+    <span id="s8_n28" from="793" to="796">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">VERB</f>
+      </fs>
+    </span>
+    <span id="s8_n30" from="796" to="797">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PUNCT</f>
+      </fs>
+    </span>
+    <span id="s9_n26" from="798" to="874">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">TOP</f>
+      </fs>
+      <rel label="dominates" target="s9_n36" />
+      <rel label="dominates" uri="morpho.xml#s9_n24" />
+    </span>
+    <span id="s9_n36" from="798" to="873">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">MC</f>
+      </fs>
+      <rel label="dominates" target="s9_n35" />
+      <rel label="dominates" uri="morpho.xml#s9_n12" />
+      <rel label="dominates" target="s9_n34" />
+      <rel label="dominates" target="s9_n33" />
+      <rel label="dominates" uri="morpho.xml#s9_n22" />
+    </span>
+    <span id="s9_n35" from="798" to="835">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s9_n0" />
+      <rel label="dominates" target="s9_n32" />
+    </span>
+    <span id="s9_n0" from="798" to="802">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PREP</f>
+      </fs>
+    </span>
+    <span id="s9_n32" from="803" to="835">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s9_n2" />
+      <rel label="dominates" target="s9_n30" />
+    </span>
+    <span id="s9_n2" from="803" to="806">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">DET</f>
+      </fs>
+    </span>
+    <span id="s9_n30" from="807" to="835">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" target="s9_n27" />
+      <rel label="dominates" uri="morpho.xml#s9_n6" />
+      <rel label="dominates" target="s9_n28" />
+      <rel label="dominates" uri="morpho.xml#s9_n10" />
+    </span>
+    <span id="s9_n27" from="807" to="811">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">AP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s9_n4" />
+    </span>
+    <span id="s9_n4" from="807" to="811">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">ADJ</f>
+      </fs>
+    </span>
+    <span id="s9_n6" from="812" to="815">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">CONJ</f>
+      </fs>
+    </span>
+    <span id="s9_n28" from="816" to="825">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">AP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s9_n8" />
+    </span>
+    <span id="s9_n8" from="816" to="825">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">ADJ</f>
+      </fs>
+    </span>
+    <span id="s9_n10" from="826" to="835">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s9_n12" from="836" to="840">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">VERB</f>
+      </fs>
+    </span>
+    <span id="s9_n34" from="841" to="844">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s9_n14" />
+    </span>
+    <span id="s9_n14" from="841" to="844">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PRON</f>
+      </fs>
+    </span>
+    <span id="s9_n33" from="845" to="859">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s9_n16" />
+      <rel label="dominates" target="s9_n31" />
+    </span>
+    <span id="s9_n16" from="845" to="848">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">DET</f>
+      </fs>
+    </span>
+    <span id="s9_n31" from="849" to="859">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" target="s9_n29" />
+      <rel label="dominates" uri="morpho.xml#s9_n20" />
+    </span>
+    <span id="s9_n29" from="849" to="854">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">AP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s9_n18" />
+    </span>
+    <span id="s9_n18" from="849" to="854">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">ADJ</f>
+      </fs>
+    </span>
+    <span id="s9_n20" from="855" to="859">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s9_n22" from="860" to="873">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">VERB</f>
+      </fs>
+    </span>
+    <span id="s9_n24" from="873" to="874">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PUNCT</f>
+      </fs>
+    </span>
+    <span id="s10_n40" from="875" to="1018">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">TOP</f>
+      </fs>
+      <rel label="dominates" target="s10_n67" />
+      <rel label="dominates" uri="morpho.xml#s10_n38" />
+    </span>
+    <span id="s10_n67" from="875" to="1017">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">MC</f>
+      </fs>
+      <rel label="dominates" target="s10_n63" />
+      <rel label="dominates" uri="morpho.xml#s10_n6" />
+      <rel label="dominates" target="s10_n64" />
+      <rel label="dominates" target="s10_n54" />
+      <rel label="dominates" target="s10_n57" />
+      <rel label="dominates" target="s10_n65" />
+      <rel label="dominates" target="s10_n60" />
+      <rel label="dominates" target="s10_n66" />
+      <rel label="dominates" target="s10_n62" />
+    </span>
+    <span id="s10_n63" from="875" to="901">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s10_n0" />
+      <rel label="dominates" target="s10_n55" />
+    </span>
+    <span id="s10_n0" from="875" to="878">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PREP</f>
+      </fs>
+    </span>
+    <span id="s10_n55" from="879" to="901">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s10_n45" />
+    </span>
+    <span id="s10_n45" from="879" to="901">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" target="s10_n43" />
+      <rel label="dominates" uri="morpho.xml#s10_n4" />
+    </span>
+    <span id="s10_n43" from="879" to="884">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">AP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s10_n2" />
+    </span>
+    <span id="s10_n2" from="879" to="884">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">ADJ</f>
+      </fs>
+    </span>
+    <span id="s10_n4" from="885" to="901">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s10_n6" from="902" to="907">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">VERB</f>
+      </fs>
+    </span>
+    <span id="s10_n64" from="908" to="918">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s10_n8" />
+      <rel label="dominates" target="s10_n56" />
+    </span>
+    <span id="s10_n8" from="908" to="911">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PREP</f>
+      </fs>
+    </span>
+    <span id="s10_n56" from="912" to="918">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s10_n46" />
+    </span>
+    <span id="s10_n46" from="912" to="918">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s10_n10" />
+    </span>
+    <span id="s10_n10" from="912" to="918">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s10_n54" from="919" to="936">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s10_n12" />
+      <rel label="dominates" target="s10_n47" />
+    </span>
+    <span id="s10_n12" from="919" to="922">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">DET</f>
+      </fs>
+    </span>
+    <span id="s10_n47" from="923" to="936">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s10_n14" />
+    </span>
+    <span id="s10_n14" from="923" to="936">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s10_n57" from="937" to="956">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s10_n48" />
+    </span>
+    <span id="s10_n48" from="937" to="956">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" target="s10_n41" />
+    </span>
+    <span id="s10_n41" from="937" to="956">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s10_n16" />
+      <rel label="dominates" uri="morpho.xml#s10_n18" />
+    </span>
+    <span id="s10_n16" from="937" to="944">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s10_n18" from="945" to="956">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s10_n65" from="956" to="972">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">INS</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s10_n20" />
+      <rel label="dominates" target="s10_n58" />
+      <rel label="dominates" target="s10_n59" />
+      <rel label="dominates" uri="morpho.xml#s10_n26" />
+    </span>
+    <span id="s10_n20" from="956" to="957">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PUNCT</f>
+      </fs>
+    </span>
+    <span id="s10_n58" from="958" to="966">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s10_n49" />
+    </span>
+    <span id="s10_n49" from="958" to="966">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s10_n22" />
+    </span>
+    <span id="s10_n22" from="958" to="966">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s10_n59" from="967" to="971">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s10_n50" />
+    </span>
+    <span id="s10_n50" from="967" to="971">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" target="s10_n44" />
+    </span>
+    <span id="s10_n44" from="967" to="971">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NUM</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s10_n24" />
+    </span>
+    <span id="s10_n24" from="967" to="971">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NUM</f>
+      </fs>
+    </span>
+    <span id="s10_n26" from="971" to="972">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PUNCT</f>
+      </fs>
+    </span>
+    <span id="s10_n60" from="973" to="995">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s10_n51" />
+    </span>
+    <span id="s10_n51" from="973" to="995">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s10_n28" />
+    </span>
+    <span id="s10_n28" from="973" to="995">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s10_n66" from="995" to="1005">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">INS</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s10_n30" />
+      <rel label="dominates" target="s10_n61" />
+      <rel label="dominates" uri="morpho.xml#s10_n34" />
+    </span>
+    <span id="s10_n30" from="995" to="996">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PUNCT</f>
+      </fs>
+    </span>
+    <span id="s10_n61" from="997" to="1004">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s10_n52" />
+    </span>
+    <span id="s10_n52" from="997" to="1004">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s10_n32" />
+    </span>
+    <span id="s10_n32" from="997" to="1004">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s10_n34" from="1004" to="1005">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PUNCT</f>
+      </fs>
+    </span>
+    <span id="s10_n62" from="1006" to="1017">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s10_n53" />
+    </span>
+    <span id="s10_n53" from="1006" to="1017">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" target="s10_n42" />
+    </span>
+    <span id="s10_n42" from="1006" to="1017">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s10_n36" />
+    </span>
+    <span id="s10_n36" from="1006" to="1017">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">SYMBOL</f>
+      </fs>
+    </span>
+    <span id="s10_n38" from="1017" to="1018">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PUNCT</f>
+      </fs>
+    </span>
+    <span id="s11_n10" from="1019" to="1061">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">TOP</f>
+      </fs>
+      <rel label="dominates" target="s11_n14" />
+      <rel label="dominates" target="s11_n17" />
+      <rel label="dominates" target="s11_n16" />
+      <rel label="dominates" uri="morpho.xml#s11_n8" />
+    </span>
+    <span id="s11_n14" from="1019" to="1035">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s11_n11" />
+    </span>
+    <span id="s11_n11" from="1019" to="1035">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s11_n0" />
+    </span>
+    <span id="s11_n0" from="1019" to="1035">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s11_n17" from="1036" to="1047">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s11_n2" />
+      <rel label="dominates" target="s11_n15" />
+    </span>
+    <span id="s11_n2" from="1036" to="1040">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PREP</f>
+      </fs>
+    </span>
+    <span id="s11_n15" from="1041" to="1047">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s11_n12" />
+    </span>
+    <span id="s11_n12" from="1041" to="1047">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s11_n4" />
+    </span>
+    <span id="s11_n4" from="1041" to="1047">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s11_n16" from="1048" to="1060">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s11_n13" />
+    </span>
+    <span id="s11_n13" from="1048" to="1060">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s11_n6" />
+    </span>
+    <span id="s11_n6" from="1048" to="1060">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s11_n8" from="1060" to="1061">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PUNCT</f>
+      </fs>
+    </span>
+    <span id="s12_n64" from="1062" to="1237">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">TOP</f>
+      </fs>
+      <rel label="dominates" target="s12_n86" />
+      <rel label="dominates" uri="morpho.xml#s12_n22" />
+      <rel label="dominates" target="s12_n87" />
+    </span>
+    <span id="s12_n86" from="1062" to="1109">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">MC</f>
+      </fs>
+      <rel label="dominates" target="s12_n75" />
+      <rel label="dominates" uri="morpho.xml#s12_n10" />
+      <rel label="dominates" uri="morpho.xml#s12_n12" />
+      <rel label="dominates" target="s12_n81" />
+      <rel label="dominates" uri="morpho.xml#s12_n20" />
+    </span>
+    <span id="s12_n75" from="1062" to="1084">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s12_n0" />
+      <rel label="dominates" uri="morpho.xml#s12_n2" />
+      <rel label="dominates" uri="morpho.xml#s12_n4" />
+      <rel label="dominates" target="s12_n70" />
+    </span>
+    <span id="s12_n0" from="1062" to="1065">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">DET</f>
+      </fs>
+    </span>
+    <span id="s12_n2" from="1066" to="1067">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">ADV</f>
+      </fs>
+    </span>
+    <span id="s12_n4" from="1067" to="1068">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PUNCT</f>
+      </fs>
+    </span>
+    <span id="s12_n70" from="1068" to="1084">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" target="s12_n66" />
+    </span>
+    <span id="s12_n66" from="1068" to="1084">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s12_n6" />
+      <rel label="dominates" uri="morpho.xml#s12_n8" />
+    </span>
+    <span id="s12_n6" from="1068" to="1077">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s12_n8" from="1078" to="1084">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s12_n10" from="1084" to="1085">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PUNCT</f>
+      </fs>
+    </span>
+    <span id="s12_n12" from="1086" to="1091">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">VERB</f>
+      </fs>
+    </span>
+    <span id="s12_n81" from="1092" to="1105">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s12_n14" />
+      <rel label="dominates" target="s12_n76" />
+    </span>
+    <span id="s12_n14" from="1092" to="1094">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PREP</f>
+      </fs>
+    </span>
+    <span id="s12_n76" from="1095" to="1105">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s12_n16" />
+      <rel label="dominates" target="s12_n71" />
+    </span>
+    <span id="s12_n16" from="1095" to="1100">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">DET</f>
+      </fs>
+    </span>
+    <span id="s12_n71" from="1101" to="1105">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s12_n18" />
+    </span>
+    <span id="s12_n18" from="1101" to="1105">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s12_n20" from="1106" to="1109">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PTCL</f>
+      </fs>
+    </span>
+    <span id="s12_n22" from="1109" to="1110">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PUNCT</f>
+      </fs>
+    </span>
+    <span id="s12_n87" from="1111" to="1237">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">MC</f>
+      </fs>
+      <rel label="dominates" target="s12_n82" />
+      <rel label="dominates" uri="morpho.xml#s12_n32" />
+      <rel label="dominates" uri="morpho.xml#s12_n34" />
+      <rel label="dominates" target="s12_n85" />
+    </span>
+    <span id="s12_n82" from="1111" to="1137">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s12_n24" />
+      <rel label="dominates" target="s12_n77" />
+    </span>
+    <span id="s12_n24" from="1111" to="1113">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PREP</f>
+      </fs>
+    </span>
+    <span id="s12_n77" from="1114" to="1137">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s12_n26" />
+      <rel label="dominates" target="s12_n72" />
+    </span>
+    <span id="s12_n26" from="1114" to="1117">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">DET</f>
+      </fs>
+    </span>
+    <span id="s12_n72" from="1118" to="1137">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" target="s12_n67" />
+    </span>
+    <span id="s12_n67" from="1118" to="1137">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s12_n28" />
+      <rel label="dominates" uri="morpho.xml#s12_n30" />
+    </span>
+    <span id="s12_n28" from="1118" to="1124">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s12_n30" from="1125" to="1137">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s12_n32" from="1138" to="1144">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">VERB</f>
+      </fs>
+    </span>
+    <span id="s12_n34" from="1145" to="1149">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">VERB</f>
+      </fs>
+    </span>
+    <span id="s12_n85" from="1149" to="1237">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">INS</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s12_n36" />
+      <rel label="dominates" target="s12_n84" />
+      <rel label="dominates" uri="morpho.xml#s12_n62" />
+    </span>
+    <span id="s12_n36" from="1149" to="1150">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PUNCT</f>
+      </fs>
+    </span>
+    <span id="s12_n84" from="1151" to="1236">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">SC</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s12_n38" />
+      <rel label="dominates" target="s12_n78" />
+      <rel label="dominates" target="s12_n79" />
+      <rel label="dominates" target="s12_n83" />
+      <rel label="dominates" uri="morpho.xml#s12_n58" />
+      <rel label="dominates" uri="morpho.xml#s12_n60" />
+    </span>
+    <span id="s12_n38" from="1151" to="1154">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">ADV</f>
+      </fs>
+    </span>
+    <span id="s12_n78" from="1155" to="1158">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s12_n40" />
+    </span>
+    <span id="s12_n40" from="1155" to="1158">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PRON</f>
+      </fs>
+    </span>
+    <span id="s12_n79" from="1159" to="1210">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s12_n73" />
+    </span>
+    <span id="s12_n73" from="1159" to="1210">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" target="s12_n68" />
+      <rel label="dominates" uri="morpho.xml#s12_n44" />
+      <rel label="dominates" target="s12_n69" />
+      <rel label="dominates" target="s12_n65" />
+    </span>
+    <span id="s12_n68" from="1159" to="1167">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">AP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s12_n42" />
+    </span>
+    <span id="s12_n42" from="1159" to="1167">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">ADJ</f>
+      </fs>
+    </span>
+    <span id="s12_n44" from="1168" to="1171">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">CONJ</f>
+      </fs>
+    </span>
+    <span id="s12_n69" from="1172" to="1183">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">AP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s12_n46" />
+    </span>
+    <span id="s12_n46" from="1172" to="1183">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">ADJ</f>
+      </fs>
+    </span>
+    <span id="s12_n65" from="1184" to="1210">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s12_n48" />
+      <rel label="dominates" uri="morpho.xml#s12_n50" />
+      <rel label="dominates" uri="morpho.xml#s12_n52" />
+    </span>
+    <span id="s12_n48" from="1184" to="1193">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">TRUNC</f>
+      </fs>
+    </span>
+    <span id="s12_n50" from="1194" to="1197">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">CONJ</f>
+      </fs>
+    </span>
+    <span id="s12_n52" from="1198" to="1210">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s12_n83" from="1211" to="1224">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s12_n54" />
+      <rel label="dominates" target="s12_n80" />
+    </span>
+    <span id="s12_n54" from="1211" to="1215">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PREP</f>
+      </fs>
+    </span>
+    <span id="s12_n80" from="1216" to="1224">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s12_n74" />
+    </span>
+    <span id="s12_n74" from="1216" to="1224">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s12_n56" />
+    </span>
+    <span id="s12_n56" from="1216" to="1224">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s12_n58" from="1225" to="1231">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">VERB</f>
+      </fs>
+    </span>
+    <span id="s12_n60" from="1232" to="1236">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">VERB</f>
+      </fs>
+    </span>
+    <span id="s12_n62" from="1236" to="1237">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PUNCT</f>
+      </fs>
+    </span>
+    <span id="s13_n28" from="1238" to="1309">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">TOP</f>
+      </fs>
+      <rel label="dominates" target="s13_n45" />
+      <rel label="dominates" target="s13_n46" />
+    </span>
+    <span id="s13_n45" from="1238" to="1292">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">MC</f>
+      </fs>
+      <rel label="dominates" target="s13_n38" />
+      <rel label="dominates" uri="morpho.xml#s13_n4" />
+      <rel label="dominates" uri="morpho.xml#s13_n6" />
+      <rel label="dominates" uri="morpho.xml#s13_n8" />
+      <rel label="dominates" uri="morpho.xml#s13_n10" />
+      <rel label="dominates" target="s13_n44" />
+    </span>
+    <span id="s13_n38" from="1238" to="1254">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s13_n0" />
+      <rel label="dominates" target="s13_n32" />
+    </span>
+    <span id="s13_n0" from="1238" to="1241">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">DET</f>
+      </fs>
+    </span>
+    <span id="s13_n32" from="1242" to="1254">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s13_n2" />
+    </span>
+    <span id="s13_n2" from="1242" to="1254">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s13_n4" from="1255" to="1261">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">VERB</f>
+      </fs>
+    </span>
+    <span id="s13_n6" from="1262" to="1265">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">ADV</f>
+      </fs>
+    </span>
+    <span id="s13_n8" from="1266" to="1270">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">ADV</f>
+      </fs>
+    </span>
+    <span id="s13_n10" from="1271" to="1276">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">ADV</f>
+      </fs>
+    </span>
+    <span id="s13_n44" from="1277" to="1292">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s13_n12" />
+      <rel label="dominates" target="s13_n39" />
+    </span>
+    <span id="s13_n12" from="1277" to="1280">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PREP</f>
+      </fs>
+    </span>
+    <span id="s13_n39" from="1281" to="1292">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s13_n33" />
+    </span>
+    <span id="s13_n33" from="1281" to="1292">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" target="s13_n29" />
+    </span>
+    <span id="s13_n29" from="1281" to="1292">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s13_n14" />
+      <rel label="dominates" uri="morpho.xml#s13_n16" />
+    </span>
+    <span id="s13_n14" from="1281" to="1286">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s13_n16" from="1287" to="1292">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s13_n46" from="1292" to="1309">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">INS</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s13_n18" />
+      <rel label="dominates" target="s13_n40" />
+      <rel label="dominates" target="s13_n41" />
+      <rel label="dominates" target="s13_n42" />
+      <rel label="dominates" target="s13_n43" />
+    </span>
+    <span id="s13_n18" from="1292" to="1293">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PUNCT</f>
+      </fs>
+    </span>
+    <span id="s13_n40" from="1294" to="1298">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s13_n34" />
+    </span>
+    <span id="s13_n34" from="1294" to="1298">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s13_n20" />
+    </span>
+    <span id="s13_n20" from="1294" to="1298">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s13_n41" from="1299" to="1302">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s13_n35" />
+    </span>
+    <span id="s13_n35" from="1299" to="1302">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" target="s13_n30" />
+    </span>
+    <span id="s13_n30" from="1299" to="1302">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NUM</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s13_n22" />
+    </span>
+    <span id="s13_n22" from="1299" to="1302">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NUM</f>
+      </fs>
+    </span>
+    <span id="s13_n42" from="1303" to="1305">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s13_n36" />
+    </span>
+    <span id="s13_n36" from="1303" to="1305">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" target="s13_n31" />
+    </span>
+    <span id="s13_n31" from="1303" to="1305">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NUM</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s13_n24" />
+    </span>
+    <span id="s13_n24" from="1303" to="1305">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NUM</f>
+      </fs>
+    </span>
+    <span id="s13_n43" from="1306" to="1309">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s13_n37" />
+    </span>
+    <span id="s13_n37" from="1306" to="1309">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s13_n26" />
+    </span>
+    <span id="s13_n26" from="1306" to="1309">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NUM</f>
+      </fs>
+    </span>
+    <span id="s14_n10" from="1310" to="1345">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">TOP</f>
+      </fs>
+      <rel label="dominates" target="s14_n16" />
+      <rel label="dominates" uri="morpho.xml#s14_n8" />
+    </span>
+    <span id="s14_n16" from="1310" to="1344">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">MC</f>
+      </fs>
+      <rel label="dominates" target="s14_n14" />
+      <rel label="dominates" uri="morpho.xml#s14_n4" />
+      <rel label="dominates" target="s14_n15" />
+    </span>
+    <span id="s14_n14" from="1310" to="1328">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s14_n0" />
+      <rel label="dominates" target="s14_n12" />
+    </span>
+    <span id="s14_n0" from="1310" to="1313">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">DET</f>
+      </fs>
+    </span>
+    <span id="s14_n12" from="1314" to="1328">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s14_n2" />
+    </span>
+    <span id="s14_n2" from="1314" to="1328">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+    </span>
+    <span id="s14_n4" from="1329" to="1332">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">VERB</f>
+      </fs>
+    </span>
+    <span id="s14_n15" from="1333" to="1344">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NP</f>
+      </fs>
+      <rel label="dominates" target="s14_n13" />
+    </span>
+    <span id="s14_n13" from="1333" to="1344">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NPA</f>
+      </fs>
+      <rel label="dominates" target="s14_n11" />
+    </span>
+    <span id="s14_n11" from="1333" to="1344">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">NOUN</f>
+      </fs>
+      <rel label="dominates" uri="morpho.xml#s14_n6" />
+    </span>
+    <span id="s14_n6" from="1333" to="1344">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">SYMBOL</f>
+      </fs>
+    </span>
+    <span id="s14_n8" from="1344" to="1345">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="node">
+        <f name="const">PUNCT</f>
+      </fs>
+    </span>
+  </spanList>
+</layer>
diff --git a/t/A01/13047/xip/dependency.xml b/t/A01/13047/xip/dependency.xml
new file mode 100644
index 0000000..e9140bd
--- /dev/null
+++ b/t/A01/13047/xip/dependency.xml
@@ -0,0 +1,708 @@
+<?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="A01_APR.13047">
+  <spanList>
+    <span id="s1_n0" from="0" to="7">
+      <rel label="THEMA" type="unary" />
+    </span>
+    <span id="s1_n2" from="8" to="11">
+      <rel label="COORD">
+        <span from="0" to="7" />
+      </rel>
+      <rel label="COORD">
+        <span from="12" to="16" />
+      </rel>
+    </span>
+    <span id="s1_n4" from="12" to="16">
+      <rel label="THEMA" type="unary" />
+    </span>
+    <span id="s1_n23" from="17" to="32">
+      <rel label="NMOD">
+        <span from="12" to="16" />
+      </rel>
+    </span>
+    <span id="s1_n10" from="33" to="42">
+      <rel label="NMOD">
+        <span from="20" to="32" />
+      </rel>
+    </span>
+    <span id="s2_n57" from="44" to="74">
+      <rel label="VMOD">
+        <span from="75" to="80" />
+      </rel>
+    </span>
+    <span id="s2_n2" from="48" to="55">
+      <rel label="NMOD">
+        <span from="68" to="74" />
+      </rel>
+    </span>
+    <span id="s2_n4" from="56" to="67">
+      <rel label="NMOD">
+        <span from="68" to="74" />
+      </rel>
+    </span>
+    <span id="s2_n8" from="75" to="80">
+      <rel label="VMAIN" type="unary" />
+    </span>
+    <span id="s2_n10" from="81" to="84">
+      <rel label="DETERM">
+        <span from="85" to="92" />
+      </rel>
+    </span>
+    <span id="s2_n12" from="85" to="92">
+      <rel label="SUBJ">
+        <span from="75" to="80" />
+      </rel>
+    </span>
+    <span id="s2_n14" from="93" to="96">
+      <rel label="DETERM">
+        <span from="97" to="108" />
+      </rel>
+    </span>
+    <span id="s2_n16" from="97" to="108">
+      <rel label="NMOD">
+        <span from="85" to="92" />
+      </rel>
+    </span>
+    <span id="s2_n18" from="109" to="118">
+      <rel label="NMOD">
+        <span from="97" to="108" />
+      </rel>
+    </span>
+    <span id="s2_n20" from="119" to="122">
+      <rel label="VPREF">
+        <span from="75" to="80" />
+      </rel>
+    </span>
+    <span id="s2_n24" from="124" to="129">
+      <rel label="CONNECT">
+        <span from="157" to="168" />
+      </rel>
+    </span>
+    <span id="s2_n26" from="130" to="133">
+      <rel label="DETERM">
+        <span from="134" to="141" />
+      </rel>
+    </span>
+    <span id="s2_n28" from="134" to="141">
+      <rel label="SUBJ">
+        <span from="157" to="168" />
+      </rel>
+    </span>
+    <span id="s2_n30" from="142" to="146">
+      <rel label="OBJ">
+        <span from="157" to="168" />
+      </rel>
+    </span>
+    <span id="s2_n32" from="147" to="156">
+      <rel label="OBJ">
+        <span from="157" to="168" />
+      </rel>
+    </span>
+    <span id="s2_n34" from="157" to="168">
+      <rel label="AUXIL">
+        <span from="169" to="173" />
+      </rel>
+      <rel label="VMAIN" type="unary" />
+    </span>
+    <span id="s3_n2" from="178" to="187">
+      <rel label="NMOD">
+        <span from="188" to="195" />
+      </rel>
+    </span>
+    <span id="s3_n4" from="188" to="195">
+      <rel label="DATE" type="unary" />
+    </span>
+    <span id="s3_n70" from="197" to="205">
+      <rel label="DATE" type="unary" />
+      <rel label="THEMA" type="unary" />
+    </span>
+    <span id="s3_n14" from="207" to="213">
+      <rel label="VMAIN" type="unary" />
+    </span>
+    <span id="s3_n99" from="214" to="226">
+      <rel label="VMOD">
+        <span from="207" to="213" />
+      </rel>
+    </span>
+    <span id="s3_n69" from="217" to="226">
+      <rel label="TIME" type="unary" />
+    </span>
+    <span id="s3_n22" from="227" to="230">
+      <rel label="DETERM">
+        <span from="231" to="241" />
+      </rel>
+    </span>
+    <span id="s3_n24" from="231" to="241">
+      <rel label="SUBJ">
+        <span from="207" to="213" />
+      </rel>
+    </span>
+    <span id="s3_n100" from="242" to="257">
+      <rel label="VMOD">
+        <span from="207" to="213" />
+      </rel>
+    </span>
+    <span id="s3_n101" from="258" to="276">
+      <rel label="VMOD">
+        <span from="207" to="213" />
+      </rel>
+    </span>
+    <span id="s3_n71" from="262" to="276">
+      <rel label="PERSON" type="unary" />
+    </span>
+    <span id="s3_n72" from="290" to="300">
+      <rel label="OBJ">
+        <span from="207" to="213" />
+      </rel>
+      <rel label="PERSON" type="unary" />
+    </span>
+    <span id="s3_n52" from="316" to="319">
+      <rel label="COORD">
+        <span from="302" to="315" />
+      </rel>
+      <rel label="COORD">
+        <span from="320" to="333" />
+      </rel>
+    </span>
+    <span id="s3_n102" from="335" to="347">
+      <rel label="VMOD">
+        <span from="207" to="213" />
+      </rel>
+    </span>
+    <span id="s3_n62" from="348" to="360">
+      <rel label="OBJ">
+        <span from="207" to="213" />
+      </rel>
+    </span>
+    <span id="s3_n64" from="361" to="366">
+      <rel label="VPREF">
+        <span from="207" to="213" />
+      </rel>
+    </span>
+    <span id="s4_n32" from="368" to="399">
+      <rel label="VMOD">
+        <span from="400" to="406" />
+      </rel>
+    </span>
+    <span id="s4_n2" from="373" to="376">
+      <rel label="DETERM">
+        <span from="390" to="399" />
+      </rel>
+    </span>
+    <span id="s4_n4" from="377" to="389">
+      <rel label="NMOD">
+        <span from="390" to="399" />
+      </rel>
+    </span>
+    <span id="s4_n8" from="400" to="406">
+      <rel label="VMAIN" type="unary" />
+    </span>
+    <span id="s4_n23" from="407" to="420">
+      <rel label="PERSON" type="unary" />
+      <rel label="SUBJ">
+        <span from="400" to="406" />
+      </rel>
+    </span>
+    <span id="s4_n14" from="421" to="424">
+      <rel label="COORD">
+        <span from="407" to="420" />
+      </rel>
+      <rel label="COORD">
+        <span from="425" to="436" />
+      </rel>
+    </span>
+    <span id="s4_n24" from="425" to="436">
+      <rel label="PERSON" type="unary" />
+      <rel label="SUBJ">
+        <span from="400" to="406" />
+      </rel>
+    </span>
+    <span id="s5_n0" from="438" to="450">
+      <rel label="NMOD">
+        <span from="451" to="456" />
+      </rel>
+    </span>
+    <span id="s5_n2" from="451" to="456">
+      <rel label="OBJ">
+        <span from="457" to="464" />
+      </rel>
+    </span>
+    <span id="s5_n4" from="457" to="464">
+      <rel label="VMAIN" type="unary" />
+    </span>
+    <span id="s5_n13" from="465" to="481">
+      <rel label="PERSON" type="unary" />
+      <rel label="SUBJ">
+        <span from="457" to="464" />
+      </rel>
+    </span>
+    <span id="s6_n0" from="483" to="486">
+      <rel label="DETERM">
+        <span from="487" to="498" />
+      </rel>
+    </span>
+    <span id="s6_n2" from="487" to="498">
+      <rel label="SUBJ">
+        <span from="499" to="505" />
+      </rel>
+    </span>
+    <span id="s6_n4" from="499" to="505">
+      <rel label="VMAIN" type="unary" />
+    </span>
+    <span id="s6_n85" from="510" to="522">
+      <rel label="VMOD">
+        <span from="527" to="530" />
+      </rel>
+    </span>
+    <span id="s6_n61" from="513" to="522">
+      <rel label="DATE" type="unary" />
+    </span>
+    <span id="s6_n16" from="527" to="530">
+      <rel label="VMAIN" type="unary" />
+    </span>
+    <span id="s6_n86" from="531" to="541">
+      <rel label="VMOD">
+        <span from="527" to="530" />
+      </rel>
+    </span>
+    <span id="s6_n20" from="534" to="541">
+      <rel label="DATE" type="unary" />
+    </span>
+    <span id="s6_n22" from="542" to="545">
+      <rel label="COORD">
+        <span from="534" to="541" />
+      </rel>
+      <rel label="COORD">
+        <span from="546" to="553" />
+      </rel>
+    </span>
+    <span id="s6_n77" from="546" to="553">
+      <rel label="VMOD">
+        <span from="527" to="530" />
+      </rel>
+    </span>
+    <span id="s6_n24" from="546" to="553">
+      <rel label="DATE" type="unary" />
+      <rel label="PRED">
+        <span from="527" to="530" />
+      </rel>
+    </span>
+    <span id="s6_n87" from="554" to="563">
+      <rel label="VMOD">
+        <span from="527" to="530" />
+      </rel>
+    </span>
+    <span id="s6_n57" from="558" to="563">
+      <rel label="TIME" type="unary" />
+    </span>
+    <span id="s6_n88" from="564" to="577">
+      <rel label="VMOD">
+        <span from="527" to="530" />
+      </rel>
+    </span>
+    <span id="s6_n58" from="568" to="577">
+      <rel label="TIME" type="unary" />
+    </span>
+    <span id="s6_n36" from="578" to="583">
+      <rel label="COORD">
+        <span from="568" to="577" />
+      </rel>
+      <rel label="COORD">
+        <span from="584" to="590" />
+      </rel>
+    </span>
+    <span id="s6_n80" from="584" to="590">
+      <rel label="VMOD">
+        <span from="527" to="530" />
+      </rel>
+    </span>
+    <span id="s6_n38" from="584" to="590">
+      <rel label="DATE" type="unary" />
+      <rel label="PRED">
+        <span from="527" to="530" />
+      </rel>
+    </span>
+    <span id="s6_n89" from="591" to="602">
+      <rel label="VMOD">
+        <span from="527" to="530" />
+      </rel>
+    </span>
+    <span id="s6_n42" from="595" to="602">
+      <rel label="DATE" type="unary" />
+    </span>
+    <span id="s6_n90" from="603" to="612">
+      <rel label="VMOD">
+        <span from="527" to="530" />
+      </rel>
+    </span>
+    <span id="s6_n59" from="607" to="612">
+      <rel label="TIME" type="unary" />
+    </span>
+    <span id="s6_n91" from="613" to="625">
+      <rel label="VMOD">
+        <span from="527" to="530" />
+      </rel>
+    </span>
+    <span id="s6_n60" from="617" to="625">
+      <rel label="TIME" type="unary" />
+    </span>
+    <span id="s6_n62" from="626" to="638">
+      <rel label="SUBJ">
+        <span from="527" to="530" />
+      </rel>
+    </span>
+    <span id="s7_n0" from="640" to="648">
+      <rel label="THEMA" type="unary" />
+    </span>
+    <span id="s7_n2" from="649" to="664">
+      <rel label="THEMA" type="unary" />
+    </span>
+    <span id="s7_n4" from="665" to="669">
+      <rel label="NMOD">
+        <span from="649" to="664" />
+      </rel>
+    </span>
+    <span id="s8_n0" from="671" to="674">
+      <rel label="DETERM">
+        <span from="675" to="695" />
+      </rel>
+    </span>
+    <span id="s8_n2" from="675" to="695">
+      <rel label="SUBJ">
+        <span from="696" to="701" />
+      </rel>
+    </span>
+    <span id="s8_n4" from="696" to="701">
+      <rel label="VMAIN" type="unary" />
+    </span>
+    <span id="s8_n6" from="702" to="705">
+      <rel label="VPREF">
+        <span from="696" to="701" />
+      </rel>
+    </span>
+    <span id="s8_n10" from="707" to="711">
+      <rel label="CONNECT">
+        <span from="782" to="792" />
+      </rel>
+    </span>
+    <span id="s8_n33" from="712" to="730">
+      <rel label="PERSON" type="unary" />
+      <rel label="SUBJ">
+        <span from="782" to="792" />
+      </rel>
+    </span>
+    <span id="s8_n16" from="731" to="735">
+      <rel label="DETERM">
+        <span from="736" to="754" />
+      </rel>
+    </span>
+    <span id="s8_n18" from="736" to="754">
+      <rel label="OBJ">
+        <span from="782" to="792" />
+      </rel>
+    </span>
+    <span id="s8_n42" from="755" to="781">
+      <rel label="VMOD">
+        <span from="782" to="792" />
+      </rel>
+    </span>
+    <span id="s8_n22" from="759" to="762">
+      <rel label="DETERM">
+        <span from="763" to="781" />
+      </rel>
+    </span>
+    <span id="s8_n26" from="782" to="792">
+      <rel label="AUXIL">
+        <span from="793" to="796" />
+      </rel>
+      <rel label="VMAIN" type="unary" />
+    </span>
+    <span id="s9_n35" from="798" to="835">
+      <rel label="VMOD">
+        <span from="860" to="873" />
+      </rel>
+    </span>
+    <span id="s9_n2" from="803" to="806">
+      <rel label="DETERM">
+        <span from="826" to="835" />
+      </rel>
+    </span>
+    <span id="s9_n4" from="807" to="811">
+      <rel label="NMOD">
+        <span from="826" to="835" />
+      </rel>
+    </span>
+    <span id="s9_n6" from="812" to="815">
+      <rel label="COORD">
+        <span from="807" to="811" />
+      </rel>
+      <rel label="COORD">
+        <span from="816" to="825" />
+      </rel>
+    </span>
+    <span id="s9_n8" from="816" to="825">
+      <rel label="NMOD">
+        <span from="826" to="835" />
+      </rel>
+    </span>
+    <span id="s9_n14" from="841" to="844">
+      <rel label="OBJ">
+        <span from="860" to="873" />
+      </rel>
+    </span>
+    <span id="s9_n16" from="845" to="848">
+      <rel label="DETERM">
+        <span from="855" to="859" />
+      </rel>
+    </span>
+    <span id="s9_n18" from="849" to="854">
+      <rel label="NMOD">
+        <span from="855" to="859" />
+      </rel>
+    </span>
+    <span id="s9_n20" from="855" to="859">
+      <rel label="SUBJ">
+        <span from="860" to="873" />
+      </rel>
+    </span>
+    <span id="s9_n22" from="860" to="873">
+      <rel label="AUXIL">
+        <span from="836" to="840" />
+      </rel>
+      <rel label="VMAIN" type="unary" />
+    </span>
+    <span id="s10_n63" from="875" to="901">
+      <rel label="VMOD">
+        <span from="902" to="907" />
+      </rel>
+    </span>
+    <span id="s10_n2" from="879" to="884">
+      <rel label="NMOD">
+        <span from="885" to="901" />
+      </rel>
+    </span>
+    <span id="s10_n6" from="902" to="907">
+      <rel label="VMAIN" type="unary" />
+    </span>
+    <span id="s10_n64" from="908" to="918">
+      <rel label="VMOD">
+        <span from="902" to="907" />
+      </rel>
+    </span>
+    <span id="s10_n12" from="919" to="922">
+      <rel label="DETERM">
+        <span from="923" to="936" />
+      </rel>
+    </span>
+    <span id="s10_n14" from="923" to="936">
+      <rel label="NMOD">
+        <span from="912" to="918" />
+      </rel>
+    </span>
+    <span id="s10_n41" from="937" to="956">
+      <rel label="NMOD">
+        <span from="923" to="936" />
+      </rel>
+      <rel label="PERSON" type="unary" />
+    </span>
+    <span id="s10_n24" from="967" to="971">
+      <rel label="DATE" type="unary" />
+      <rel label="NMOD">
+        <span from="958" to="966" />
+      </rel>
+    </span>
+    <span id="s10_n28" from="973" to="995">
+      <rel label="SUBJ">
+        <span from="902" to="907" />
+      </rel>
+    </span>
+    <span id="s10_n42" from="1006" to="1017">
+      <rel label="PRED">
+        <span from="902" to="907" />
+      </rel>
+    </span>
+    <span id="s11_n0" from="1019" to="1035">
+      <rel label="THEMA" type="unary" />
+    </span>
+    <span id="s11_n17" from="1036" to="1047">
+      <rel label="NMOD">
+        <span from="1019" to="1035" />
+      </rel>
+    </span>
+    <span id="s11_n6" from="1048" to="1060">
+      <rel label="THEMA" type="unary" />
+    </span>
+    <span id="s12_n0" from="1062" to="1065">
+      <rel label="DETERM">
+        <span from="1068" to="1084" />
+      </rel>
+    </span>
+    <span id="s12_n66" from="1068" to="1084">
+      <rel label="PERSON" type="unary" />
+      <rel label="SUBJ">
+        <span from="1086" to="1091" />
+      </rel>
+    </span>
+    <span id="s12_n12" from="1086" to="1091">
+      <rel label="VMAIN" type="unary" />
+    </span>
+    <span id="s12_n81" from="1092" to="1105">
+      <rel label="VMOD">
+        <span from="1086" to="1091" />
+      </rel>
+    </span>
+    <span id="s12_n16" from="1095" to="1100">
+      <rel label="DETERM">
+        <span from="1101" to="1105" />
+      </rel>
+    </span>
+    <span id="s12_n20" from="1106" to="1109">
+      <rel label="VPREF">
+        <span from="1086" to="1091" />
+      </rel>
+    </span>
+    <span id="s12_n82" from="1111" to="1137">
+      <rel label="VMOD">
+        <span from="1138" to="1144" />
+      </rel>
+    </span>
+    <span id="s12_n26" from="1114" to="1117">
+      <rel label="DETERM">
+        <span from="1118" to="1137" />
+      </rel>
+    </span>
+    <span id="s12_n67" from="1118" to="1137">
+      <rel label="PERSON" type="unary" />
+    </span>
+    <span id="s12_n32" from="1138" to="1144">
+      <rel label="AUXIL">
+        <span from="1145" to="1149" />
+      </rel>
+      <rel label="VMAIN" type="unary" />
+    </span>
+    <span id="s12_n38" from="1151" to="1154">
+      <rel label="CONNECT">
+        <span from="1225" to="1231" />
+      </rel>
+    </span>
+    <span id="s12_n40" from="1155" to="1158">
+      <rel label="SUBJ">
+        <span from="1225" to="1231" />
+      </rel>
+    </span>
+    <span id="s12_n42" from="1159" to="1167">
+      <rel label="NMOD">
+        <span from="1198" to="1210" />
+      </rel>
+    </span>
+    <span id="s12_n44" from="1168" to="1171">
+      <rel label="COORD">
+        <span from="1159" to="1167" />
+      </rel>
+      <rel label="COORD">
+        <span from="1172" to="1183" />
+      </rel>
+    </span>
+    <span id="s12_n46" from="1172" to="1183">
+      <rel label="NMOD">
+        <span from="1198" to="1210" />
+      </rel>
+    </span>
+    <span id="s12_n50" from="1194" to="1197">
+      <rel label="COORD">
+        <span from="1184" to="1193" />
+      </rel>
+      <rel label="COORD">
+        <span from="1198" to="1210" />
+      </rel>
+    </span>
+    <span id="s12_n52" from="1198" to="1210">
+      <rel label="OBJ">
+        <span from="1225" to="1231" />
+      </rel>
+      <rel label="TRUNC">
+        <span from="1184" to="1193" />
+      </rel>
+    </span>
+    <span id="s12_n83" from="1211" to="1224">
+      <rel label="VMOD">
+        <span from="1225" to="1231" />
+      </rel>
+    </span>
+    <span id="s12_n58" from="1225" to="1231">
+      <rel label="MODAL">
+        <span from="1232" to="1236" />
+      </rel>
+      <rel label="VMAIN" type="unary" />
+    </span>
+    <span id="s13_n0" from="1238" to="1241">
+      <rel label="DETERM">
+        <span from="1242" to="1254" />
+      </rel>
+    </span>
+    <span id="s13_n2" from="1242" to="1254">
+      <rel label="SUBJ">
+        <span from="1255" to="1261" />
+      </rel>
+    </span>
+    <span id="s13_n4" from="1255" to="1261">
+      <rel label="VMAIN" type="unary" />
+    </span>
+    <span id="s13_n6" from="1262" to="1265">
+      <rel label="NMOD">
+        <span from="1281" to="1292" />
+      </rel>
+    </span>
+    <span id="s13_n8" from="1266" to="1270">
+      <rel label="VMOD">
+        <span from="1255" to="1261" />
+      </rel>
+    </span>
+    <span id="s13_n10" from="1271" to="1276">
+      <rel label="VMOD">
+        <span from="1255" to="1261" />
+      </rel>
+    </span>
+    <span id="s13_n44" from="1277" to="1292">
+      <rel label="VMOD">
+        <span from="1255" to="1261" />
+      </rel>
+    </span>
+    <span id="s13_n29" from="1281" to="1292">
+      <rel label="PERSON" type="unary" />
+    </span>
+    <span id="s13_n22" from="1299" to="1302">
+      <rel label="DATE" type="unary" />
+      <rel label="NMOD">
+        <span from="1294" to="1298" />
+      </rel>
+    </span>
+    <span id="s13_n24" from="1303" to="1305">
+      <rel label="DATE" type="unary" />
+      <rel label="NMOD">
+        <span from="1299" to="1302" />
+      </rel>
+      <rel label="TIME" type="unary" />
+    </span>
+    <span id="s14_n0" from="1310" to="1313">
+      <rel label="DETERM">
+        <span from="1314" to="1328" />
+      </rel>
+    </span>
+    <span id="s14_n2" from="1314" to="1328">
+      <rel label="SUBJ">
+        <span from="1329" to="1332" />
+      </rel>
+    </span>
+    <span id="s14_n4" from="1329" to="1332">
+      <rel label="VMAIN" type="unary" />
+    </span>
+    <span id="s14_n11" from="1333" to="1344">
+      <rel label="PRED">
+        <span from="1329" to="1332" />
+      </rel>
+    </span>
+  </spanList>
+</layer>
diff --git a/t/A01/13047/xip/metadata.xml b/t/A01/13047/xip/metadata.xml
new file mode 100644
index 0000000..ce1b942
--- /dev/null
+++ b/t/A01/13047/xip/metadata.xml
@@ -0,0 +1,13 @@
+<?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="A01_APR.13047" type="foundry" xmlns="http://ids-mannheim.de/ns/KorAP">
+  <doc file="../data.xml" />
+  <foundry name="xip">
+    <layer segm="tok" file="tokens.xml" name="token" id="l1" />
+    <layer segm="s" file="sentences.xml" name="sent" id="l2" />
+    <layer info="const" file="constituency.xml" name="syntax-const" id="l3" />
+    <layer info="rel" file="dependency.xml" name="syntax-dep" id="l4" />
+    <layer info="pos lemma" file="morpho.xml" name="morph" id="l5" />
+  </foundry>
+</metadata>
diff --git a/t/A01/13047/xip/morpho.xml b/t/A01/13047/xip/morpho.xml
new file mode 100644
index 0000000..772ffab
--- /dev/null
+++ b/t/A01/13047/xip/morpho.xml
@@ -0,0 +1,2157 @@
+<?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="A01_APR.13047">
+  <spanList>
+    <span id="s1_n0" from="0" to="7">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Fischer</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s1_n2" from="8" to="11">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">und</f>
+            <f name="pos">CONJ</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s1_n4" from="12" to="16">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Kolp</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s1_n6" from="17" to="19">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">in</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s1_n8" from="20" to="32">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">sonnen#Hügel</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s1_n10" from="33" to="42">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Rehetobel</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s1_n12" from="42" to="43">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">.</f>
+            <f name="pos">PUNCT</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s2_n0" from="44" to="47">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">zu</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s2_n2" from="48" to="55">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">letzt</f>
+            <f name="pos">ADJ</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s2_n4" from="56" to="67">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">kulturell</f>
+            <f name="pos">ADJ</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s2_n6" from="68" to="74">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Anlass</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s2_n8" from="75" to="80">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">=laden</f>
+            <f name="pos">VERB</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s2_n10" from="81" to="84">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">die</f>
+            <f name="pos">DET</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s2_n12" from="85" to="92">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Leitung</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s2_n14" from="93" to="96">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">der</f>
+            <f name="pos">DET</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s2_n16" from="97" to="108">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">schulen#Heim</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s2_n18" from="109" to="118">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Hofbergli</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s2_n20" from="119" to="122">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">ein</f>
+            <f name="pos">PTCL</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s2_n22" from="122" to="123">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">,</f>
+            <f name="pos">PUNCT</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s2_n24" from="124" to="129">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">bevor</f>
+            <f name="pos">CONJ</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s2_n26" from="130" to="133">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">der</f>
+            <f name="pos">DET</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s2_n28" from="134" to="141">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Betrieb</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s2_n30" from="142" to="146">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Ende</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s2_n32" from="147" to="156">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">schulen#Jahr</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s2_n34" from="157" to="168">
+      <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">VERB</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s2_n36" from="169" to="173">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">werden</f>
+            <f name="pos">VERB</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s2_n38" from="173" to="174">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">.</f>
+            <f name="pos">PUNCT</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s3_n0" from="175" to="177">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">an</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s3_n2" from="178" to="187">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">kommen</f>
+            <f name="pos">ADJ</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s3_n4" from="188" to="195">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Freitag</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s3_n6" from="195" to="196">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">,</f>
+            <f name="pos">PUNCT</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s3_n8" from="197" to="199">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">6.</f>
+            <f name="pos">NUM</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s3_n10" from="200" to="205">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">April</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s3_n12" from="205" to="206">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">,</f>
+            <f name="pos">PUNCT</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s3_n14" from="207" to="213">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">=finden</f>
+            <f name="pos">VERB</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s3_n16" from="214" to="216">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">um</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s3_n18" from="217" to="222">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">17.30</f>
+            <f name="pos">NUM</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s3_n20" from="223" to="226">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Uhr</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s3_n22" from="227" to="230">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">die</f>
+            <f name="pos">DET</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s3_n24" from="231" to="241">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Vernissage</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s3_n26" from="242" to="245">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">zu</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s3_n28" from="246" to="257">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Ausstellung</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s3_n30" from="258" to="261">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">von</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s3_n32" from="262" to="268">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Renata</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s3_n34" from="269" to="276">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Fischer</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s3_n36" from="277" to="278">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">(</f>
+            <f name="pos">PUNCT</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s3_n38" from="278" to="284">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Bild</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s3_n40" from="284" to="285">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">)</f>
+            <f name="pos">PUNCT</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s3_n42" from="286" to="289">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">und</f>
+            <f name="pos">CONJ</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s3_n44" from="290" to="295">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Erich</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s3_n46" from="296" to="300">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Kolp</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s3_n48" from="301" to="302">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">(</f>
+            <f name="pos">PUNCT</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s3_n50" from="302" to="315">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Schrift#Bilder</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s3_n52" from="316" to="319">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">und</f>
+            <f name="pos">CONJ</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s3_n54" from="320" to="333">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Kalligraphie</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s3_n56" from="333" to="334">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">)</f>
+            <f name="pos">PUNCT</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s3_n58" from="335" to="337">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">in</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s3_n60" from="338" to="347">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">schulen#Haus</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s3_n62" from="348" to="360">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">sonnen#Hügel</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s3_n64" from="361" to="366">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">statt</f>
+            <f name="pos">PTCL</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s3_n66" from="366" to="367">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">.</f>
+            <f name="pos">PUNCT</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s4_n0" from="368" to="372">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">für</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s4_n2" from="373" to="376">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">die</f>
+            <f name="pos">DET</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s4_n4" from="377" to="389">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">musikalisch</f>
+            <f name="pos">ADJ</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s4_n6" from="390" to="399">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Umrahmung</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s4_n8" from="400" to="406">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">sorgen</f>
+            <f name="pos">VERB</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s4_n10" from="407" to="413">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Martin</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s4_n12" from="414" to="420">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Skampa</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s4_n14" from="421" to="424">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">und</f>
+            <f name="pos">CONJ</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s4_n16" from="425" to="429">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Jiri</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s4_n18" from="430" to="436">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Holena</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s4_n20" from="436" to="437">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">;</f>
+            <f name="pos">PUNCT</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s5_n0" from="438" to="450">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">ein=führen</f>
+            <f name="pos">ADJ</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s5_n2" from="451" to="456">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Wort</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s5_n4" from="457" to="464">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">sprechen</f>
+            <f name="pos">VERB</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s5_n6" from="465" to="470">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Bruno</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s5_n8" from="471" to="481">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Hofstetter</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s5_n10" from="481" to="482">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">.</f>
+            <f name="pos">PUNCT</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s6_n0" from="483" to="486">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">die</f>
+            <f name="pos">DET</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s6_n2" from="487" to="498">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Ausstellung</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s6_n4" from="499" to="505">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">dauern</f>
+            <f name="pos">VERB</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s6_n6" from="506" to="509">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">bis</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s6_n8" from="510" to="512">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">an</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s6_n10" from="513" to="516">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">14.</f>
+            <f name="pos">NUM</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s6_n12" from="517" to="522">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">April</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s6_n14" from="523" to="526">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">und</f>
+            <f name="pos">CONJ</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s6_n16" from="527" to="530">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">sein</f>
+            <f name="pos">VERB</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s6_n18" from="531" to="533">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">an</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s6_n20" from="534" to="541">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Samstag</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s6_n22" from="542" to="545">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">und</f>
+            <f name="pos">CONJ</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s6_n24" from="546" to="553">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Sonntag</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s6_n26" from="554" to="557">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">von</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s6_n28" from="558" to="563">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">11.00</f>
+            <f name="pos">NUM</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s6_n30" from="564" to="567">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">bis</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s6_n32" from="568" to="573">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">17.00</f>
+            <f name="pos">NUM</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s6_n34" from="574" to="577">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Uhr</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s6_n36" from="578" to="583">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">sowie</f>
+            <f name="pos">CONJ</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s6_n38" from="584" to="590">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Montag</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s6_n40" from="591" to="594">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">bis</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s6_n42" from="595" to="602">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Freitag</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s6_n44" from="603" to="606">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">von</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s6_n46" from="607" to="612">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">15.00</f>
+            <f name="pos">NUM</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s6_n48" from="613" to="616">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">bis</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s6_n50" from="617" to="625">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">19.00Uhr</f>
+            <f name="pos">NUM</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s6_n52" from="626" to="638">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">geöffnet.pd</f>
+            <f name="pos">SYMBOL</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s6_n54" from="638" to="639">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">.</f>
+            <f name="pos">PUNCT</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s7_n0" from="640" to="648">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Mutation</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s7_n2" from="649" to="664">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Sektion/s#Chef#Amt</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s7_n4" from="665" to="669">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Wald</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s7_n6" from="669" to="670">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">.</f>
+            <f name="pos">PUNCT</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s8_n0" from="671" to="674">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">die</f>
+            <f name="pos">DET</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s8_n2" from="675" to="695">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Sicherheit/s#Direktion</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s8_n4" from="696" to="701">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">=teilen</f>
+            <f name="pos">VERB</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s8_n6" from="702" to="705">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">mit</f>
+            <f name="pos">PTCL</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s8_n8" from="705" to="706">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">,</f>
+            <f name="pos">PUNCT</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s8_n10" from="707" to="711">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">dass</f>
+            <f name="pos">CONJ</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s8_n12" from="712" to="719">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Philipp</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s8_n14" from="720" to="730">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Hengartner</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s8_n16" from="731" to="735">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">sein</f>
+            <f name="pos">DET</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s8_n18" from="736" to="754">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Arbeit/s#Verhältnis</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s8_n20" from="755" to="758">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">auf</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s8_n22" from="759" to="762">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">der</f>
+            <f name="pos">DET</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s8_n24" from="763" to="781">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Gemeinde#Verwaltung</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s8_n26" from="782" to="792">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">kündigen</f>
+            <f name="pos">VERB</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s8_n28" from="793" to="796">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">haben</f>
+            <f name="pos">VERB</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s8_n30" from="796" to="797">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">.</f>
+            <f name="pos">PUNCT</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s9_n0" from="798" to="802">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">für</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s9_n2" from="803" to="806">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">die</f>
+            <f name="pos">DET</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s9_n4" from="807" to="811">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">gut</f>
+            <f name="pos">ADJ</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s9_n6" from="812" to="815">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">und</f>
+            <f name="pos">CONJ</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s9_n8" from="816" to="825">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">angenehm</f>
+            <f name="pos">ADJ</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s9_n10" from="826" to="835">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Mitarbeit</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s9_n12" from="836" to="840">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">werden</f>
+            <f name="pos">VERB</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s9_n14" from="841" to="844">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">er</f>
+            <f name="pos">PRON</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s9_n16" from="845" to="848">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">der</f>
+            <f name="pos">DET</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s9_n18" from="849" to="854">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">gut</f>
+            <f name="pos">ADJ</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s9_n20" from="855" to="859">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Dank</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s9_n22" from="860" to="873">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">aus=sprechen</f>
+            <f name="pos">VERB</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s9_n24" from="873" to="874">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">.</f>
+            <f name="pos">PUNCT</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s10_n0" from="875" to="878">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">zu</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s10_n2" from="879" to="884">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">neu</f>
+            <f name="pos">ADJ</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s10_n4" from="885" to="901">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">stellen#Inhaberin</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s10_n6" from="902" to="907">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">werden</f>
+            <f name="pos">VERB</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s10_n8" from="908" to="911">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">auf</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s10_n10" from="912" to="918">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Antrag</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s10_n12" from="919" to="922">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">der</f>
+            <f name="pos">DET</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s10_n14" from="923" to="936">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Gemeinde#Rat</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s10_n16" from="937" to="944">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Rebecca</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s10_n18" from="945" to="956">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">benzen-Koller</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s10_n20" from="956" to="957">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">,</f>
+            <f name="pos">PUNCT</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s10_n22" from="958" to="966">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Jahrgang</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s10_n24" from="967" to="971">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">1976</f>
+            <f name="pos">NUM</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s10_n26" from="971" to="972">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">,</f>
+            <f name="pos">PUNCT</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s10_n28" from="973" to="995">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Verwaltung/s#Angestellte</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s10_n30" from="995" to="996">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">,</f>
+            <f name="pos">PUNCT</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s10_n32" from="997" to="1004">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Bern#Eck</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s10_n34" from="1004" to="1005">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">,</f>
+            <f name="pos">PUNCT</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s10_n36" from="1006" to="1017">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">gewählt.pd</f>
+            <f name="pos">SYMBOL</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s10_n38" from="1017" to="1018">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">.</f>
+            <f name="pos">PUNCT</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s11_n0" from="1019" to="1035">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">auf=stecken#Frisur</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s11_n2" from="1036" to="1040">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">für</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s11_n4" from="1041" to="1047">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Kinder</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s11_n6" from="1048" to="1060">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">walzen#hausen</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s11_n8" from="1060" to="1061">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">.</f>
+            <f name="pos">PUNCT</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s12_n0" from="1062" to="1065">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">die</f>
+            <f name="pos">DET</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s12_n2" from="1066" to="1067">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">â</f>
+            <f name="pos">ADV</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s12_n4" from="1067" to="1068">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">«</f>
+            <f name="pos">PUNCT</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s12_n6" from="1068" to="1077">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Müettere</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s12_n8" from="1078" to="1084">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">RundiÂ</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s12_n10" from="1084" to="1085">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">»</f>
+            <f name="pos">PUNCT</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s12_n12" from="1086" to="1091">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">=laden</f>
+            <f name="pos">VERB</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s12_n14" from="1092" to="1094">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">zu</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s12_n16" from="1095" to="1100">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">ein</f>
+            <f name="pos">DET</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s12_n18" from="1101" to="1105">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Kurs</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s12_n20" from="1106" to="1109">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">ein</f>
+            <f name="pos">PTCL</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s12_n22" from="1109" to="1110">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">,</f>
+            <f name="pos">PUNCT</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s12_n24" from="1111" to="1113">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">in</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s12_n26" from="1114" to="1117">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">der</f>
+            <f name="pos">DET</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s12_n28" from="1118" to="1124">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Sabine</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s12_n30" from="1125" to="1137">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Schittenhelm</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s12_n32" from="1138" to="1144">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">zeigen</f>
+            <f name="pos">VERB</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s12_n34" from="1145" to="1149">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">werden</f>
+            <f name="pos">VERB</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s12_n36" from="1149" to="1150">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">,</f>
+            <f name="pos">PUNCT</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s12_n38" from="1151" to="1154">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">wie</f>
+            <f name="pos">ADV</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s12_n40" from="1155" to="1158">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">man</f>
+            <f name="pos">PRON</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s12_n42" from="1159" to="1167">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">modisch</f>
+            <f name="pos">ADJ</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s12_n44" from="1168" to="1171">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">und</f>
+            <f name="pos">CONJ</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s12_n46" from="1172" to="1183">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">raffinieren</f>
+            <f name="pos">ADJ</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s12_n48" from="1184" to="1193">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">auf=stecken</f>
+            <f name="pos">TRUNC</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s12_n50" from="1194" to="1197">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">und</f>
+            <f name="pos">CONJ</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s12_n52" from="1198" to="1210">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Zopf#Frisur</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s12_n54" from="1211" to="1215">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">für</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s12_n56" from="1216" to="1224">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Mädchen</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s12_n58" from="1225" to="1231">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">machen</f>
+            <f name="pos">VERB</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s12_n60" from="1232" to="1236">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">können</f>
+            <f name="pos">VERB</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s12_n62" from="1236" to="1237">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">.</f>
+            <f name="pos">PUNCT</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s13_n0" from="1238" to="1241">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">die</f>
+            <f name="pos">DET</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s13_n2" from="1242" to="1254">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">an=melden/e#Frist</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s13_n4" from="1255" to="1261">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">laufen</f>
+            <f name="pos">VERB</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s13_n6" from="1262" to="1265">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">nur</f>
+            <f name="pos">ADV</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s13_n8" from="1266" to="1270">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">noch</f>
+            <f name="pos">ADV</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s13_n10" from="1271" to="1276">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">heute</f>
+            <f name="pos">ADV</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s13_n12" from="1277" to="1280">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">bei</f>
+            <f name="pos">PREP</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s13_n14" from="1281" to="1286">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Julia</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s13_n16" from="1287" to="1292">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Alder</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s13_n18" from="1292" to="1293">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">,</f>
+            <f name="pos">PUNCT</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s13_n20" from="1294" to="1298">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Tel.</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s13_n22" from="1299" to="1302">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">888</f>
+            <f name="pos">NUM</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s13_n24" from="1303" to="1305">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">59</f>
+            <f name="pos">NUM</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s13_n26" from="1306" to="1309">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">73.</f>
+            <f name="pos">NUM</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s14_n0" from="1310" to="1313">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">die</f>
+            <f name="pos">DET</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s14_n2" from="1314" to="1328">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">Teilnehmer#Zahl</f>
+            <f name="pos">NOUN</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s14_n4" from="1329" to="1332">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">sein</f>
+            <f name="pos">VERB</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s14_n6" from="1333" to="1344">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">begrenzt.pd</f>
+            <f name="pos">SYMBOL</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+    <span id="s14_n8" from="1344" to="1345">
+      <fs xmlns="http://www.tei-c.org/ns/1.0" type="lex">
+        <f name="lex">
+          <fs>
+            <f name="lemma">.</f>
+            <f name="pos">PUNCT</f>
+          </fs>
+        </f>
+      </fs>
+    </span>
+  </spanList>
+</layer>
diff --git a/t/A01/13047/xip/sentences.xml b/t/A01/13047/xip/sentences.xml
new file mode 100644
index 0000000..9ed3ddd
--- /dev/null
+++ b/t/A01/13047/xip/sentences.xml
@@ -0,0 +1,21 @@
+<?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="A01_APR.13047">
+  <spanList>
+    <span from="0" to="43" />
+    <span from="44" to="174" />
+    <span from="175" to="367" />
+    <span from="368" to="437" />
+    <span from="438" to="482" />
+    <span from="483" to="639" />
+    <span from="640" to="670" />
+    <span from="671" to="797" />
+    <span from="798" to="874" />
+    <span from="875" to="1018" />
+    <span from="1019" to="1061" />
+    <span from="1062" to="1237" />
+    <span from="1238" to="1309" />
+    <span from="1310" to="1345" />
+  </spanList>
+</layer>
diff --git a/t/A01/13047/xip/tokens.xml b/t/A01/13047/xip/tokens.xml
new file mode 100644
index 0000000..12f57ef
--- /dev/null
+++ b/t/A01/13047/xip/tokens.xml
@@ -0,0 +1,222 @@
+<?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="A01_APR.13047">
+  <spanList>
+    <span id="s1_n0" from="0" to="7" />
+    <span id="s1_n2" from="8" to="11" />
+    <span id="s1_n4" from="12" to="16" />
+    <span id="s1_n6" from="17" to="19" />
+    <span id="s1_n8" from="20" to="32" />
+    <span id="s1_n10" from="33" to="42" />
+    <span id="s1_n12" from="42" to="43" />
+    <span id="s2_n0" from="44" to="47" />
+    <span id="s2_n2" from="48" to="55" />
+    <span id="s2_n4" from="56" to="67" />
+    <span id="s2_n6" from="68" to="74" />
+    <span id="s2_n8" from="75" to="80" />
+    <span id="s2_n10" from="81" to="84" />
+    <span id="s2_n12" from="85" to="92" />
+    <span id="s2_n14" from="93" to="96" />
+    <span id="s2_n16" from="97" to="108" />
+    <span id="s2_n18" from="109" to="118" />
+    <span id="s2_n20" from="119" to="122" />
+    <span id="s2_n22" from="122" to="123" />
+    <span id="s2_n24" from="124" to="129" />
+    <span id="s2_n26" from="130" to="133" />
+    <span id="s2_n28" from="134" to="141" />
+    <span id="s2_n30" from="142" to="146" />
+    <span id="s2_n32" from="147" to="156" />
+    <span id="s2_n34" from="157" to="168" />
+    <span id="s2_n36" from="169" to="173" />
+    <span id="s2_n38" from="173" to="174" />
+    <span id="s3_n0" from="175" to="177" />
+    <span id="s3_n2" from="178" to="187" />
+    <span id="s3_n4" from="188" to="195" />
+    <span id="s3_n6" from="195" to="196" />
+    <span id="s3_n8" from="197" to="199" />
+    <span id="s3_n10" from="200" to="205" />
+    <span id="s3_n12" from="205" to="206" />
+    <span id="s3_n14" from="207" to="213" />
+    <span id="s3_n16" from="214" to="216" />
+    <span id="s3_n18" from="217" to="222" />
+    <span id="s3_n20" from="223" to="226" />
+    <span id="s3_n22" from="227" to="230" />
+    <span id="s3_n24" from="231" to="241" />
+    <span id="s3_n26" from="242" to="245" />
+    <span id="s3_n28" from="246" to="257" />
+    <span id="s3_n30" from="258" to="261" />
+    <span id="s3_n32" from="262" to="268" />
+    <span id="s3_n34" from="269" to="276" />
+    <span id="s3_n36" from="277" to="278" />
+    <span id="s3_n38" from="278" to="284" />
+    <span id="s3_n40" from="284" to="285" />
+    <span id="s3_n42" from="286" to="289" />
+    <span id="s3_n44" from="290" to="295" />
+    <span id="s3_n46" from="296" to="300" />
+    <span id="s3_n48" from="301" to="302" />
+    <span id="s3_n50" from="302" to="315" />
+    <span id="s3_n52" from="316" to="319" />
+    <span id="s3_n54" from="320" to="333" />
+    <span id="s3_n56" from="333" to="334" />
+    <span id="s3_n58" from="335" to="337" />
+    <span id="s3_n60" from="338" to="347" />
+    <span id="s3_n62" from="348" to="360" />
+    <span id="s3_n64" from="361" to="366" />
+    <span id="s3_n66" from="366" to="367" />
+    <span id="s4_n0" from="368" to="372" />
+    <span id="s4_n2" from="373" to="376" />
+    <span id="s4_n4" from="377" to="389" />
+    <span id="s4_n6" from="390" to="399" />
+    <span id="s4_n8" from="400" to="406" />
+    <span id="s4_n10" from="407" to="413" />
+    <span id="s4_n12" from="414" to="420" />
+    <span id="s4_n14" from="421" to="424" />
+    <span id="s4_n16" from="425" to="429" />
+    <span id="s4_n18" from="430" to="436" />
+    <span id="s4_n20" from="436" to="437" />
+    <span id="s5_n0" from="438" to="450" />
+    <span id="s5_n2" from="451" to="456" />
+    <span id="s5_n4" from="457" to="464" />
+    <span id="s5_n6" from="465" to="470" />
+    <span id="s5_n8" from="471" to="481" />
+    <span id="s5_n10" from="481" to="482" />
+    <span id="s6_n0" from="483" to="486" />
+    <span id="s6_n2" from="487" to="498" />
+    <span id="s6_n4" from="499" to="505" />
+    <span id="s6_n6" from="506" to="509" />
+    <span id="s6_n8" from="510" to="512" />
+    <span id="s6_n10" from="513" to="516" />
+    <span id="s6_n12" from="517" to="522" />
+    <span id="s6_n14" from="523" to="526" />
+    <span id="s6_n16" from="527" to="530" />
+    <span id="s6_n18" from="531" to="533" />
+    <span id="s6_n20" from="534" to="541" />
+    <span id="s6_n22" from="542" to="545" />
+    <span id="s6_n24" from="546" to="553" />
+    <span id="s6_n26" from="554" to="557" />
+    <span id="s6_n28" from="558" to="563" />
+    <span id="s6_n30" from="564" to="567" />
+    <span id="s6_n32" from="568" to="573" />
+    <span id="s6_n34" from="574" to="577" />
+    <span id="s6_n36" from="578" to="583" />
+    <span id="s6_n38" from="584" to="590" />
+    <span id="s6_n40" from="591" to="594" />
+    <span id="s6_n42" from="595" to="602" />
+    <span id="s6_n44" from="603" to="606" />
+    <span id="s6_n46" from="607" to="612" />
+    <span id="s6_n48" from="613" to="616" />
+    <span id="s6_n50" from="617" to="625" />
+    <span id="s6_n52" from="626" to="638" />
+    <span id="s6_n54" from="638" to="639" />
+    <span id="s7_n0" from="640" to="648" />
+    <span id="s7_n2" from="649" to="664" />
+    <span id="s7_n4" from="665" to="669" />
+    <span id="s7_n6" from="669" to="670" />
+    <span id="s8_n0" from="671" to="674" />
+    <span id="s8_n2" from="675" to="695" />
+    <span id="s8_n4" from="696" to="701" />
+    <span id="s8_n6" from="702" to="705" />
+    <span id="s8_n8" from="705" to="706" />
+    <span id="s8_n10" from="707" to="711" />
+    <span id="s8_n12" from="712" to="719" />
+    <span id="s8_n14" from="720" to="730" />
+    <span id="s8_n16" from="731" to="735" />
+    <span id="s8_n18" from="736" to="754" />
+    <span id="s8_n20" from="755" to="758" />
+    <span id="s8_n22" from="759" to="762" />
+    <span id="s8_n24" from="763" to="781" />
+    <span id="s8_n26" from="782" to="792" />
+    <span id="s8_n28" from="793" to="796" />
+    <span id="s8_n30" from="796" to="797" />
+    <span id="s9_n0" from="798" to="802" />
+    <span id="s9_n2" from="803" to="806" />
+    <span id="s9_n4" from="807" to="811" />
+    <span id="s9_n6" from="812" to="815" />
+    <span id="s9_n8" from="816" to="825" />
+    <span id="s9_n10" from="826" to="835" />
+    <span id="s9_n12" from="836" to="840" />
+    <span id="s9_n14" from="841" to="844" />
+    <span id="s9_n16" from="845" to="848" />
+    <span id="s9_n18" from="849" to="854" />
+    <span id="s9_n20" from="855" to="859" />
+    <span id="s9_n22" from="860" to="873" />
+    <span id="s9_n24" from="873" to="874" />
+    <span id="s10_n0" from="875" to="878" />
+    <span id="s10_n2" from="879" to="884" />
+    <span id="s10_n4" from="885" to="901" />
+    <span id="s10_n6" from="902" to="907" />
+    <span id="s10_n8" from="908" to="911" />
+    <span id="s10_n10" from="912" to="918" />
+    <span id="s10_n12" from="919" to="922" />
+    <span id="s10_n14" from="923" to="936" />
+    <span id="s10_n16" from="937" to="944" />
+    <span id="s10_n18" from="945" to="956" />
+    <span id="s10_n20" from="956" to="957" />
+    <span id="s10_n22" from="958" to="966" />
+    <span id="s10_n24" from="967" to="971" />
+    <span id="s10_n26" from="971" to="972" />
+    <span id="s10_n28" from="973" to="995" />
+    <span id="s10_n30" from="995" to="996" />
+    <span id="s10_n32" from="997" to="1004" />
+    <span id="s10_n34" from="1004" to="1005" />
+    <span id="s10_n36" from="1006" to="1017" />
+    <span id="s10_n38" from="1017" to="1018" />
+    <span id="s11_n0" from="1019" to="1035" />
+    <span id="s11_n2" from="1036" to="1040" />
+    <span id="s11_n4" from="1041" to="1047" />
+    <span id="s11_n6" from="1048" to="1060" />
+    <span id="s11_n8" from="1060" to="1061" />
+    <span id="s12_n0" from="1062" to="1065" />
+    <span id="s12_n2" from="1066" to="1067" />
+    <span id="s12_n4" from="1067" to="1068" />
+    <span id="s12_n6" from="1068" to="1077" />
+    <span id="s12_n8" from="1078" to="1084" />
+    <span id="s12_n10" from="1084" to="1085" />
+    <span id="s12_n12" from="1086" to="1091" />
+    <span id="s12_n14" from="1092" to="1094" />
+    <span id="s12_n16" from="1095" to="1100" />
+    <span id="s12_n18" from="1101" to="1105" />
+    <span id="s12_n20" from="1106" to="1109" />
+    <span id="s12_n22" from="1109" to="1110" />
+    <span id="s12_n24" from="1111" to="1113" />
+    <span id="s12_n26" from="1114" to="1117" />
+    <span id="s12_n28" from="1118" to="1124" />
+    <span id="s12_n30" from="1125" to="1137" />
+    <span id="s12_n32" from="1138" to="1144" />
+    <span id="s12_n34" from="1145" to="1149" />
+    <span id="s12_n36" from="1149" to="1150" />
+    <span id="s12_n38" from="1151" to="1154" />
+    <span id="s12_n40" from="1155" to="1158" />
+    <span id="s12_n42" from="1159" to="1167" />
+    <span id="s12_n44" from="1168" to="1171" />
+    <span id="s12_n46" from="1172" to="1183" />
+    <span id="s12_n48" from="1184" to="1193" />
+    <span id="s12_n50" from="1194" to="1197" />
+    <span id="s12_n52" from="1198" to="1210" />
+    <span id="s12_n54" from="1211" to="1215" />
+    <span id="s12_n56" from="1216" to="1224" />
+    <span id="s12_n58" from="1225" to="1231" />
+    <span id="s12_n60" from="1232" to="1236" />
+    <span id="s12_n62" from="1236" to="1237" />
+    <span id="s13_n0" from="1238" to="1241" />
+    <span id="s13_n2" from="1242" to="1254" />
+    <span id="s13_n4" from="1255" to="1261" />
+    <span id="s13_n6" from="1262" to="1265" />
+    <span id="s13_n8" from="1266" to="1270" />
+    <span id="s13_n10" from="1271" to="1276" />
+    <span id="s13_n12" from="1277" to="1280" />
+    <span id="s13_n14" from="1281" to="1286" />
+    <span id="s13_n16" from="1287" to="1292" />
+    <span id="s13_n18" from="1292" to="1293" />
+    <span id="s13_n20" from="1294" to="1298" />
+    <span id="s13_n22" from="1299" to="1302" />
+    <span id="s13_n24" from="1303" to="1305" />
+    <span id="s13_n26" from="1306" to="1309" />
+    <span id="s14_n0" from="1310" to="1313" />
+    <span id="s14_n2" from="1314" to="1328" />
+    <span id="s14_n4" from="1329" to="1332" />
+    <span id="s14_n6" from="1333" to="1344" />
+    <span id="s14_n8" from="1344" to="1345" />
+  </spanList>
+</layer>
diff --git a/t/meta.t b/t/meta.t
new file mode 100644
index 0000000..716bb8e
--- /dev/null
+++ b/t/meta.t
@@ -0,0 +1,267 @@
+#!/usr/bin/env perl
+# source ~/perl5/perlbrew/etc/bashrc
+# perlbrew switch perl-blead@korap
+use strict;
+use warnings;
+use utf8;
+use Test::More;
+use Benchmark ':hireswallclock';
+use lib 'lib', '../lib';
+
+use File::Basename 'dirname';
+use File::Spec::Functions 'catdir';
+
+use_ok('KorAP::Document');
+
+# WPD/00001
+my $path = catdir(dirname(__FILE__), 'WPD/00001');
+ok(my $doc = KorAP::Document->new( path => $path . '/' ), 'Load Korap::Document');
+is($doc->path, $path . '/', 'Path');
+
+ok($doc = KorAP::Document->new( path => $path ), 'Load Korap::Document');
+is($doc->path, $path . '/', 'Path');
+
+ok($doc->parse, 'Parse document');
+
+# Metdata
+is($doc->title, 'A', 'title');
+ok(!$doc->sub_title, 'subTitle');
+is($doc->id, 'WPD_AAA.00001', 'ID');
+is($doc->corpus_id, 'WPD', 'corpusID');
+is($doc->pub_date, '20050328', 'pubDate');
+is($doc->pub_place, 'URL:http://de.wikipedia.org', 'pubPlace');
+is($doc->text_class->[0], 'freizeit-unterhaltung', 'TextClass');
+is($doc->text_class->[1], 'reisen', 'TextClass');
+is($doc->text_class->[2], 'wissenschaft', 'TextClass');
+is($doc->text_class->[3], 'populaerwissenschaft', 'TextClass');
+ok(!$doc->text_class->[4], 'TextClass');
+is($doc->author->[0], 'Ruru', 'author');
+is($doc->author->[1], 'Jens.Ol', 'author');
+is($doc->author->[2], 'Aglarech', 'author');
+ok(!$doc->author->[3], 'author');
+
+# Additional information
+ok(!$doc->editor, 'Editor');
+is($doc->publisher, 'Wikipedia', 'Publisher');
+is($doc->creation_date, '20050000', 'Creation date');
+is($doc->coll_title, 'Wikipedia', 'Collection title');
+is($doc->coll_sub_title, 'Die freie Enzyklopädie', 'Collection subtitle');
+is($doc->coll_editor, 'wikipedia.org', 'Collection editor');
+ok(!$doc->coll_author, 'Collection author');
+ok(!$doc->text_type, 'No text_type');
+ok(!$doc->text_type_art, 'text_type art');
+
+# BRZ13/00001
+$path = catdir(dirname(__FILE__), 'BRZ13/00001');
+ok($doc = KorAP::Document->new( path => $path . '/' ), 'Load Korap::Document');
+
+ok($doc->parse, 'Parse document');
+is($doc->title, 'Sexueller Missbrauch –„Das schreiende Kind steckt noch tief in mir“', 'title');
+ok(!$doc->sub_title, 'subTitle');
+is($doc->id, 'BRZ13_APR.00001', 'ID');
+is($doc->corpus_id, 'BRZ13', 'corpusID');
+is($doc->pub_date, '20130402', 'pubDate');
+is($doc->pub_place, 'Braunschweig', 'pubPlace');
+is($doc->text_class->[0], 'staat-gesellschaft', 'TextClass');
+is($doc->text_class->[1], 'familie-geschlecht', 'TextClass');
+ok(!$doc->text_class->[2], 'TextClass');
+ok(!$doc->author->[0], 'author');
+
+# Additional information
+ok(!$doc->editor, 'Editor');
+is($doc->publisher, 'Braunschweiger Zeitungsverlag, Druckhaus Albert Limbach GmbH & Co. KG', 'Publisher');
+is($doc->creation_date, '20130402', 'Creation date');
+is($doc->coll_title, 'Braunschweiger Zeitung', 'Collection title');
+ok(!$doc->coll_sub_title, 'Collection subtitle');
+ok(!$doc->coll_editor, 'Collection editor');
+ok(!$doc->coll_author, 'Collection author');
+is($doc->text_type, 'Zeitung: Tageszeitung', 'text_type');
+ok(!$doc->text_type_art, 'text_type art');
+
+# A01/13047
+$path = catdir(dirname(__FILE__), 'A01/13047');
+ok($doc = KorAP::Document->new( path => $path . '/' ), 'Load Korap::Document');
+
+ok($doc->parse, 'Parse document');
+is($doc->title, 'Fischer und Kolp im Sonnenhügel', 'title');
+ok(!$doc->sub_title, 'subTitle');
+is($doc->id, 'A01_APR.13047', 'ID');
+is($doc->corpus_id, 'A01', 'corpusID');
+is($doc->pub_date, '20010402', 'pubDate');
+ok(!$doc->pub_place, 'pubPlace');
+is($doc->text_class->[0], 'freizeit-unterhaltung', 'TextClass');
+is($doc->text_class->[1], 'vereine-veranstaltungen', 'TextClass');
+ok(!$doc->text_class->[2], 'TextClass');
+ok(!$doc->author->[0], 'author');
+
+
+# Additional information
+ok(!$doc->editor, 'Editor');
+ok(!$doc->publisher, 'Publisher');
+is($doc->creation_date, '20010402', 'Creation date');
+ok(!$doc->coll_title, 'Collection title');
+ok(!$doc->coll_sub_title, 'Collection subtitle');
+ok(!$doc->coll_editor, 'Collection editor');
+ok(!$doc->coll_author, 'Collection author');
+ok(!$doc->text_type, 'text_type');
+is($doc->text_type_art, 'Bericht', 'text_type art');
+
+
+# ERL/0001
+$path = catdir(dirname(__FILE__), 'ERL/00001');
+ok($doc = KorAP::Document->new( path => $path . '/' ), 'Load Korap::Document');
+
+ok($doc->parse, 'Parse document');
+is($doc->title, 'Amtsblatt des Landesbezirks Baden [diverse Erlasse]', 'title');
+ok(!$doc->sub_title, 'subTitle');
+is($doc->id, 'MK2_ERL.00001', 'ID');
+is($doc->corpus_id, 'MK2', 'corpusID');
+is($doc->pub_date, '00000000', 'pubDate');
+is($doc->pub_place, 'Karlsruhe', 'pubPlace');
+is($doc->text_class->[0], 'politik', 'TextClass');
+is($doc->text_class->[1], 'kommunalpolitik', 'TextClass');
+ok(!$doc->text_class->[2], 'TextClass');
+ok(!$doc->author->[0], 'author');
+
+# Additional information
+ok(!$doc->editor, 'Editor');
+is($doc->publisher, 'Badenia Verlag und Druckerei', 'Publisher');
+ok(!$doc->creation_date, 'Creation date');
+diag 'Non-acceptance of creation date ranges is temporary';
+ok(!$doc->coll_title, 'Collection title');
+ok(!$doc->coll_sub_title, 'Collection subtitle');
+ok(!$doc->coll_editor, 'Collection editor');
+ok(!$doc->coll_author, 'Collection author');
+is($doc->text_type, 'Erlass', 'text_type');
+ok(!$doc->text_type_art, 'text_type art');
+
+
+# A01/02035-substring
+$path = catdir(dirname(__FILE__), 'A01/02035-substring');
+ok($doc = KorAP::Document->new( path => $path . '/' ), 'Load Korap::Document');
+
+ok($doc->parse, 'Parse document');
+ok(!$doc->title, 'title');
+ok(!$doc->sub_title, 'subTitle');
+is($doc->id, 'A00_JAN.02035', 'ID');
+is($doc->corpus_id, 'A00', 'corpusID');
+is($doc->pub_date, '20000111', 'pubDate');
+ok(!$doc->pub_place, 'pubPlace');
+is($doc->text_class->[0], 'sport', 'TextClass');
+is($doc->text_class->[1], 'ballsport', 'TextClass');
+ok(!$doc->text_class->[2], 'TextClass');
+ok(!$doc->author->[0], 'author');
+
+# Additional information
+ok(!$doc->editor, 'Editor');
+ok(!$doc->publisher, 'Publisher');
+is($doc->creation_date, "20000111", 'Creation date');
+ok(!$doc->coll_title, 'Collection title');
+ok(!$doc->coll_sub_title, 'Collection subtitle');
+ok(!$doc->coll_editor, 'Collection editor');
+ok(!$doc->coll_author, 'Collection author');
+ok(!$doc->text_type, 'text_type');
+is($doc->text_type_art, 'Bericht', 'text_type art');
+
+
+# A01/02873-meta
+$path = catdir(dirname(__FILE__), 'A01/02873-meta');
+ok($doc = KorAP::Document->new( path => $path . '/' ), 'Load Korap::Document');
+
+ok($doc->parse, 'Parse document');
+is($doc->title, 'Tradition und Moderne', 'title');
+ok(!$doc->sub_title, 'subTitle');
+is($doc->id, 'A00_JAN.02873', 'ID');
+is($doc->corpus_id, 'A00', 'corpusID');
+is($doc->pub_date, '20000113', 'pubDate');
+ok(!$doc->pub_place, 'pubPlace');
+is($doc->text_class->[0], 'kultur', 'TextClass');
+is($doc->text_class->[1], 'film', 'TextClass');
+ok(!$doc->text_class->[2], 'TextClass');
+ok(!$doc->author->[0], 'author');
+
+# Additional information
+ok(!$doc->editor, 'Editor');
+ok(!$doc->publisher, 'Publisher');
+is($doc->creation_date, "20000113", 'Creation date');
+ok(!$doc->coll_title, 'Collection title');
+ok(!$doc->coll_sub_title, 'Collection subtitle');
+ok(!$doc->coll_editor, 'Collection editor');
+ok(!$doc->coll_author, 'Collection author');
+ok(!$doc->text_type, 'text_type');
+is($doc->text_type_art, 'Bericht', 'text_type art');
+
+
+# A01/05663-unbalanced
+$path = catdir(dirname(__FILE__), 'A01/05663-unbalanced');
+ok($doc = KorAP::Document->new( path => $path . '/' ), 'Load Korap::Document');
+
+ok($doc->parse, 'Parse document');
+is($doc->title, 'Mehr Arbeitslose im Dezember', 'title');
+ok(!$doc->sub_title, 'subTitle');
+is($doc->id, 'A00_JAN.05663', 'ID');
+is($doc->corpus_id, 'A00', 'corpusID');
+is($doc->pub_date, '20000124', 'pubDate');
+ok(!$doc->pub_place, 'pubPlace');
+is($doc->text_class->[0], 'gesundheit-ernaehrung', 'TextClass');
+is($doc->text_class->[1], 'gesundheit', 'TextClass');
+ok(!$doc->text_class->[2], 'TextClass');
+ok(!$doc->author->[0], 'author');
+
+# Additional information
+ok(!$doc->editor, 'Editor');
+ok(!$doc->publisher, 'Publisher');
+is($doc->creation_date, "20000124", 'Creation date');
+ok(!$doc->coll_title, 'Collection title');
+ok(!$doc->coll_sub_title, 'Collection subtitle');
+ok(!$doc->coll_editor, 'Collection editor');
+ok(!$doc->coll_author, 'Collection author');
+ok(!$doc->text_type, 'text_type');
+is($doc->text_type_art, 'Bericht', 'text_type art');
+
+
+
+# A01/07452-deep
+$path = catdir(dirname(__FILE__), 'A01/07452-deep');
+ok($doc = KorAP::Document->new( path => $path . '/' ), 'Load Korap::Document');
+
+ok($doc->parse, 'Parse document');
+is($doc->title, 'Wil im Dezember 1999', 'title');
+ok(!$doc->sub_title, 'subTitle');
+is($doc->id, 'A00_JAN.07452', 'ID');
+is($doc->corpus_id, 'A00', 'corpusID');
+is($doc->pub_date, '20000129', 'pubDate');
+ok(!$doc->pub_place, 'pubPlace');
+is($doc->text_class->[0], 'politik', 'TextClass');
+is($doc->text_class->[1], 'kommunalpolitik', 'TextClass');
+ok(!$doc->text_class->[2], 'TextClass');
+ok(!$doc->author->[0], 'author');
+
+# Additional information
+ok(!$doc->editor, 'Editor');
+ok(!$doc->publisher, 'Publisher');
+is($doc->creation_date, "20000129", 'Creation date');
+ok(!$doc->coll_title, 'Collection title');
+ok(!$doc->coll_sub_title, 'Collection subtitle');
+ok(!$doc->coll_editor, 'Collection editor');
+ok(!$doc->coll_author, 'Collection author');
+ok(!$doc->text_type, 'text_type');
+is($doc->text_type_art, 'Bericht', 'text_type art');
+
+
+
+done_testing;
+__END__
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/t/transform.t b/t/transform.t
index 89fd638..e3f04fc 100644
--- a/t/transform.t
+++ b/t/transform.t
@@ -1,4 +1,6 @@
 #!/usr/bin/env perl
+# source ~/perl5/perlbrew/etc/bashrc
+# perlbrew switch perl-blead@korap
 use strict;
 use warnings;
 use utf8;
@@ -6,6 +8,9 @@
 use Benchmark ':hireswallclock';
 use lib 'lib', '../lib';
 
+use File::Basename 'dirname';
+use File::Spec::Functions 'catdir';
+
 use_ok('KorAP::Document');
 
 my @layers;
@@ -42,7 +47,7 @@
 push(@layers, ['XIP', 'Sentences']);
 
 
-my $path = 'WPD/00001';
+my $path = catdir(dirname(__FILE__), 'WPD/00001');
 ok(my $doc = KorAP::Document->new( path => $path . '/' ), 'Load Korap::Document');
 is($doc->path, $path . '/', 'Path');
 
@@ -58,7 +63,7 @@
 is($doc->id, 'WPD_AAA.00001', 'ID');
 is($doc->corpus_id, 'WPD', 'corpusID');
 is($doc->pub_date, '20050328', 'pubDate');
-ok(!$doc->pub_place, 'pubPlace');
+is($doc->pub_place, 'URL:http://de.wikipedia.org', 'pubPlace');
 is($doc->text_class->[0], 'freizeit-unterhaltung', 'TextClass');
 is($doc->text_class->[1], 'reisen', 'TextClass');
 is($doc->text_class->[2], 'wissenschaft', 'TextClass');
@@ -81,7 +86,7 @@
 ), 'New Tokenizer');
 ok($tokens->parse, 'Parse');
 
-is($tokens->path, 'WPD/00001/', 'Path');
+is($tokens->path, $path . '/', 'Path');
 is($tokens->foundry, 'OpenNLP', 'Foundry');
 is($tokens->doc->id, 'WPD_AAA.00001', 'Doc id');
 is($tokens->should, 1068, 'Should');
@@ -99,13 +104,13 @@
 # Add sentences
 ok($tokens->add('Base', 'Sentences'), 'Add Sentences');
 
-is($tokens->stream->pos(0)->to_string, '[(0-1)s:A|i:a|_0#0-1|-:tokens$<i>923|mate/p:XY|<>:base/s#0-74$<i>13|<>:base/t#0-6083$<i>923|-:sentences$<i>96]', 'Startinfo');
+is($tokens->stream->pos(0)->to_string, '[(0-1)s:A|i:a|_0#0-1|-:tokens$<i>923|mate/p:XY|<>:base/s#0-74$<i>13|<>:base/text#0-6083$<i>923|-:sentences$<i>96]', 'Startinfo');
 
 foreach (@layers) {
   ok($tokens->add(@$_), 'Add '. join(', ', @$_));
 };
 
-is($tokens->stream->pos(0)->to_string, '[(0-1)s:A|i:a|_0#0-1|-:tokens$<i>923|mate/p:XY|<>:base/s#0-74$<i>13|<>:base/t#0-6083$<i>923|-:sentences$<i>96|<>:base/para#0-224$<i>34|-:paragraphs$<i>76|opennlp/p:NE|<>:opennlp/s#0-74$<i>13|<>:corenlp/s#0-6$<i>2|cnx/l:A|cnx/p:N|cnx/syn:@NH|<>:cnx/s#0-74$<i>13|tt/l:A|tt/p:NN|tt/l:A|tt/p:FM|<>:tt/s#0-6083$<i>923|>:mate/d:PNC$<i>2|xip/p:SYMBOL|xip/l:A|<>:xip/c:TOP#0-74$<i>13|<>:xip/c:MC#0-73$<i>13<b>1|>:xip/d:SUBJ$<i>3|<:xip/d:COORD$<i>1|<>:xip/s#0-74$<i>13]', 'Startinfo');
+is($tokens->stream->pos(0)->to_string, '[(0-1)s:A|i:a|_0#0-1|-:tokens$<i>923|mate/p:XY|<>:base/s#0-74$<i>13|<>:base/text#0-6083$<i>923|-:sentences$<i>96|<>:base/para#0-224$<i>34|-:paragraphs$<i>76|opennlp/p:NE|<>:opennlp/s#0-74$<i>13|<>:corenlp/s#0-6$<i>2|cnx/l:A|cnx/p:N|cnx/syn:@NH|<>:cnx/s#0-74$<i>13|tt/l:A|tt/p:NN|tt/l:A|tt/p:FM|<>:tt/s#0-6083$<i>923|>:mate/d:PNC$<i>2|xip/p:SYMBOL|xip/l:A|<>:xip/c:TOP#0-74$<i>13|<>:xip/c:MC#0-73$<i>13<b>1|>:xip/d:SUBJ$<i>3|<:xip/d:COORD$<i>1|<>:xip/s#0-74$<i>13]', 'Startinfo');
 
 
 is($tokens->stream->pos(118)->to_string,